tutorials:bash_scripting:part2
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
tutorials:bash_scripting:part2 [2012/02/24 09:05] – created admin | tutorials:bash_scripting:part2 [2017/10/12 21:58] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | part2 | + | //**3. Adding a GUI interface to a bash script**// |
+ | |||
+ | ---- | ||
+ | GUI interfaces can be used with bash scripts. The script below uses //Zenity// to provide a GUI dialog for selecting an image to convert to .pdf, a second GUI dialog for naming and saving the newly created .pdf file and a third offering the option to delete the image file used to create the .pdf file. | ||
+ | |||
+ | <code bash> | ||
+ | # | ||
+ | ############################################################ | ||
+ | # con2pdf-gui | ||
+ | # Intended to convert scanned document to pdf document | ||
+ | # and provides gui interface for file selection. | ||
+ | # requires awk | ||
+ | # requires convert (from ImageMagick) | ||
+ | # requires dirname | ||
+ | # requires zenity to create gui file selection dialogs | ||
+ | # zenity requires GTK+ | ||
+ | ############################################################ | ||
+ | |||
+ | |||
+ | input_file=`zenity --file-selection --title=" | ||
+ | |||
+ | if [ $? -eq 1 ]; then | ||
+ | exit | ||
+ | fi | ||
+ | |||
+ | working_dir=$(dirname $input_file) | ||
+ | |||
+ | cd $working_dir | ||
+ | |||
+ | output_file=`zenity --file-selection --save --title=" | ||
+ | |||
+ | if [ $? -eq 1 ]; then | ||
+ | exit | ||
+ | fi | ||
+ | |||
+ | convert $input_file $output_file | ||
+ | |||
+ | zenity --question --text=" | ||
+ | |||
+ | case $? in | ||
+ | 0) rm $input_file;; | ||
+ | |||
+ | 1) exit;; | ||
+ | esac | ||
+ | |||
+ | # end of script | ||
+ | </ | ||
+ | |||
+ | This script could be run by clicking an icon on a desktop and since the interface is GUI there would be no need to open a terminal. | ||
+ | |||
+ | < | ||
+ | input_file=`zenity --file-selection --title " | ||
+ | </ | ||
+ | |||
+ | The first line of this script uses a zenity command within two backticks to assign a file to the variable // | ||
+ | |||
+ | The script //con2pdf// in Section 1 either converted an image to a .pdf if a target image file was entered after the command //con2pdf// or it printed out the usage message and then returned to the command prompt if no target file was entered. However, in the //zenity// file selection dialog there are two user options, select a file or **Cancel**. It is necessary after this zenity command executes to check the exit code to see if the user has hit *Cancel* in which case the exit code would be 1. The following if statement should look familiar. | ||
+ | |||
+ | <code bash> | ||
+ | if [ $? -eq 1 ]; then | ||
+ | exit | ||
+ | fi | ||
+ | </ | ||
+ | |||
+ | If a file has been selected and the user has pressed **OK** the script will continue on to the next line after the if statement This line creates the variable // | ||
+ | |||
+ | <code bash> | ||
+ | working_dir=$(dirname $input_file) | ||
+ | |||
+ | cd $working_dir | ||
+ | </ | ||
+ | |||
+ | Next the script creates a variable, // | ||
+ | |||
+ | Another if statement is required in case the user hits the *Cancel* button. | ||
+ | |||
+ | <code bash> | ||
+ | output_file=`zenity --file-selection --save --title=" | ||
+ | |||
+ | if [ $? -eq 1 ]; then | ||
+ | exit | ||
+ | fi | ||
+ | </ | ||
+ | |||
+ | The convert command is exactly the same as in the previous script. | ||
+ | |||
+ | <code bash> | ||
+ | convert $input_file $output_file | ||
+ | </ | ||
+ | |||
+ | However, in this script provides the option of deleting the image file after the .pdf file has been created. | ||
+ | |||
+ | <code bash> | ||
+ | zenity --question --text=" | ||
+ | |||
+ | case $? in | ||
+ | 0) rm $input_file;; | ||
+ | |||
+ | 1) exit;; | ||
+ | esac | ||
+ | </ | ||
+ | |||
+ | The //zenity --guestion// | ||
+ | |||
+ | A case statement follows which evaluates the exit code and will either delete the file or exit the script accordingly. Case statements are handy for this type of task and are generally used instead of if statements when multiple options may be involved. Note the syntax as well as that a case statement must close with //esac//. | ||
+ | |||
+ | ---- | ||
+ | //There are other GUI dialog programs. KDE has //kdialog// which is based on the Qt toolkit, there is also //dialog//, // | ||
+ | |||
+ | In the next section I'' | ||
+ | ---- | ||
+ | **Cheers!** |
tutorials/bash_scripting/part2.1330034746.txt.gz · Last modified: 2017/10/12 21:58 (external edit)