- 论坛徽章:
- 0
|
在unix下面编写界面,menu,form,通常是用curses来编写。如果你的应用系统在sco openserver下面,还可以通过scosh来编写一些简单的界面。
scosh -- menu-driven SCO Shell with calendar, mail, and calculator
Syntax
======
scosh [ -v ] [ calendar | email | calculator ]
Description
===========
SCO Shell is a menu-driven shell, including calendar, calculator and
electronic mail applications. The calendar is a distributed application
suitable for workgroup coordination across a network.
Startup
+++++++
The command scosh executes the script /usr/bin/scosh, which initializes the
curses(S) and terminfo(M) based screen handling and invokes the desktop.
scosh reads the environment variable OALIB to locate the path to its support
files and binaries; these are located in /usr/lib/scosh/* by default.
man scosh 可以得到更详细的信息。
大家看/usr/lib/scosh/opadm/oakillany
480# cat oakillany
:
# @(#) oakillany 25.1 92/09/25
#
# Copyright (C) 1990-1992 The Santa Cruz Operation, Inc.
# All Rights Reserved.
# The information in this file is provided for the exclusive use of
# the licensees of The Santa Cruz Operation, Inc. Such users have the
# right to use, modify, and incorporate this code into other products
# for purposes authorized by the license agreement provided they include
# this notice and the associated copyright notice with any such product.
# The information in this file is provided "AS IS" without warranty.
#
OALIB=${OALIB-"/usr/lib/scosh"}
PATH=$OALIB/utilbin PATH
# run ourself thru oash
eval oainit 2>;/dev/null || (oash $0; kill $$)
. `findfile shell_strs`
EscWasHit() {
oadeinit
rm -f $TEMP
exit
}
TEMP=/tmp/fm1$$
sh -c "ps -fe" >; $TEMP
#OAKILL1="Select program to kill"
wmopen 1 13 74 3 2 #打开一个窗口
wmtitle "$OAKILL1" #设置窗口标题
wmmessage -r "$PRESSRET"
pp -f $TEMP
rm -f $TEMP
[ "$PP_NUM" -eq -1 ] && EscWasHit
set $PP_ITEM; Pid=$2
#OAKILL2="Type of Signal"
#OAKILL3="2 - Interrupt"
#OAKILL4="4 - Terminate"
#OAKILL5="9 - Unconditional"
# The length of the box (num of columns) used to display the strings
# OAKILL3, OAKILL4, OAKILL5.
# The title of the box is OAKILL2.
#KILL_NUMCOLS=30
wmopen 2 5 $KILL_NUMCOLS 15 10
wmtitle "$OAKILL2"
wmmessage -r "$PRESSRET"
pp "$OAKILL3" "$OAKILL4" "$OAKILL5"
[ "$PP_NUM" -eq -1 ] && EscWasHit
set $PP_ITEM; SigNum=$1
eval kill -$SigNum $Pid 2>;$TEMP || {
wmove 1
wmmessage -r "$USEARROW"
scan -e"$EOFMSG" $TEMP
}
rm -f $TEMP
oadeinit |
|