1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
# $XConsortium: Command2.scr /main/6 1995/07/17 20:37:23 drk $
#
# Motif
#
# Copyright (c) 1987-2012, The Open Group. All rights reserved.
#
# These libraries and programs are free software; you can
# redistribute them and/or modify them under the terms of the GNU
# Lesser General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# These libraries and programs are distributed in the hope that
# they will be useful, but WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with these librararies and programs; if not, write
# to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
# Floor, Boston, MA 02110-1301 USA
#
#
# HISTORY
#
# OSF/Motif: @(#)Command2.scr 1.2 92/01/28
# A client window will appear containing a command widget.
CompareVisual command
# Move the pointer into the client window.
LocatePointer command
# Press the return key. Three X Toolkit warnings will be
# printed into the xterm window. These warnings refer to
# command widget resources which were set incorrectly.
ClickKey KReturn
CompareVisual command
# Type a command into the command area and press the return
# key. An X Toolkit warning will be printed into the xterm
# window. This warning is caused by an attempt to fetch a
# nonexistent child of the command widget.
LocatePointer command RSelectionText
ClickMB Btn1
InputString "Hello"
ClickKey KReturn
CompareVisual command
# C)
Continue
# Move the pointer into the client window.
# Type a command into the command area and press the return key.
# Two X Toolkit warnings will be printed into the xterm window.
# These warnings are caused by attempts to replace the command
# string with bad strings.
LocatePointer command
ClickKey KTab
ClickKey KReturn
CompareVisual command
# Type a command into the command area and press the return key.
# The history list will move up two lines, but no error message
# will be displayed below the history list. This behavior is
# caused by attempts to display bad error strings.
# During one of the last two actions, scroll bars
# will have appeared around the list.
LocatePointer command RSelectionText
ClickMB Btn1
InputString "Goodbye"
ClickKey KReturn
CompareVisual command
# Type a character into the command area. An X Toolkit warning
# will be printed into the xterm window. This warning is caused
# by an attempt to append a bad string to the command string.
LocatePointer command RSelectionText
ClickMB Btn1
ClickKey Ka
CompareVisual command
# E)
Exit
|