36.7. 各种技巧

36.7.1. 更强大的脚本的思路

36.7.2. 组件

如果能够从 shell 脚本调用 X-Windows 组件就好了。碰巧存在几个声称可以做到这一点的软件包,即 XscriptXmenuwidtools。前两个似乎不再维护。幸运的是,仍然可以在这里获取 widtools

Caution

widtools(组件工具)软件包需要安装 XForms 库。此外,在典型的 Linux 系统上构建软件包之前,需要对 Makefile 进行一些明智的编辑。最后,提供的六个组件中有三个不起作用(实际上,会段错误)。

dialog 工具系列提供了一种从 shell 脚本调用“dialog”组件的方法。原始的 dialog 实用程序在文本控制台中工作,但其后继者 gdialogXdialogkdialog 使用基于 X-Windows 的组件集。

示例 36-22. 从 shell 脚本调用的组件

#!/bin/bash
# dialog.sh: Using 'gdialog' widgets.

# Must have 'gdialog' installed on your system to run this script.
# Or, you can replace all instance of 'gdialog' below with 'kdialog' ...
# Version 1.1 (corrected 04/05/05)

# This script was inspired by the following article.
#     "Scripting for X Productivity," by Marco Fioretti,
#      LINUX JOURNAL, Issue 113, September 2003, pp. 86-9.
# Thank you, all you good people at LJ.


# Input error in dialog box.
E_INPUT=85
# Dimensions of display, input widgets.
HEIGHT=50
WIDTH=60

# Output file name (constructed out of script name).
OUTFILE=$0.output

# Display this script in a text widget.
gdialog --title "Displaying: $0" --textbox $0 $HEIGHT $WIDTH



# Now, we'll try saving input in a file.
echo -n "VARIABLE=" > $OUTFILE
gdialog --title "User Input" --inputbox "Enter variable, please:" \
$HEIGHT $WIDTH 2>> $OUTFILE


if [ "$?" -eq 0 ]
# It's good practice to check exit status.
then
  echo "Executed \"dialog box\" without errors."
else
  echo "Error(s) in \"dialog box\" execution."
        # Or, clicked on "Cancel", instead of "OK" button.
  rm $OUTFILE
  exit $E_INPUT
fi



# Now, we'll retrieve and display the saved variable.
. $OUTFILE   # 'Source' the saved file.
echo "The variable input in the \"input box\" was: "$VARIABLE""


rm $OUTFILE  # Clean up by removing the temp file.
             # Some applications may need to retain this file.

exit $?

# Exercise: Rewrite this script using the 'zenity' widget set.

xmessage 命令是弹出一个消息/查询窗口的简单方法。例如

xmessage Fatal error in script! -button exit

组件竞赛中的最新条目是 zenity。此实用程序弹出 GTK+ 对话框组件和窗口,并且在脚本中运行良好。

get_info ()
{
  zenity --entry       #  Pops up query window . . .
                       #+ and prints user entry to stdout.

                       #  Also try the --calendar and --scale options.
}

answer=$( get_info )   #  Capture stdout in $answer variable.

echo "User entered: "$answer""

有关使用组件进行脚本编写的其他方法,请尝试 TkwishTcl 衍生品)、PerlTk(带有 Tk 扩展的 Perl)、tksh(带有 Tk 扩展的 ksh)、XForms4Perl(带有 XForms 扩展的 Perl)、Gtk-Perl(带有 Gtk 扩展的 Perl)或 PyQt(带有 Qt 扩展的 Python)。