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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
|
# $XConsortium: OptionMenu5.scr /main/4 1995/07/17 20:27:21 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
#
# You should see a set of six buttons, an option menu labeled "Label/LabelG
# Menu Items", and two toggle buttons. You should see the initial value of
# the option menu be the string "Label Gadget", the first item in the menu.
# /* BUG! fix this by the end of the bug */
CompareVisual form
# Pop up the option menu. The set of items should be "Label Gadget", "Label",
# "Push Button Gadget", "Push Button", "Toggle Button Gadget", "Toggle Button".
# The labels correspond to the items' widget classes.
# (These values were set programmatically on the widgets after the menu was
# created and realized and before any user interaction occurred.)
LocatePointer option_menu ROptionButton
PressMB Btn1
CompareVisual pulldown
ReleaseMB Btn1
# Pop the menu back down.
Continue
# Now confirm that the values shown by the menu items can be changed,
# whether they are echoed by the XmOptionButtonGadget or not.
# Select any of the buttons on the left which say "Change pulldown entry #n".
# This changes the XmNlabelString of the corresponding item in the menu.
# The XmNlabelString for the pulldown is set to one of set of strings that
# indicates how many times you have done this ("1st in series", "second in
# series" -- items of different length), modulo the number of strings.
LocatePointer entry0
ClickMB Btn1
LocatePointer option_menu ROptionButton
PressMB Btn1
CompareVisual pulldown
ReleaseMB Btn1
# Pop up the option menu. Confirm that the item has changed.
Continue
# Do the following for each of the selectable items in the
# menu (the "Push Button Gadget",
# "Push Button", "Toggle Button Gadget", "Toggle Button") in order
# to make sure that changing the menu item which is currently displayed
# as the option's choice # results in the XmOptionButtonGadget changing:
# Choose the item from the menu so that it is currently selected and displayed.
# Choose the corresponding button "Change pulldown entry #n".
# The XmNlabelString for the pulldown is set to one of set of strings that
# indicates its place in the sequence.
LocatePointer option_menu ROptionButton
PressMB Btn1
LocatePointer label
ReleaseMB Btn1
LocatePointer entry1
ClickMB Btn1
CompareVisual option_menu
LocatePointer option_menu ROptionButton
PressMB Btn1
LocatePointer pbg
ReleaseMB Btn1
LocatePointer entry2
ClickMB Btn1
CompareVisual option_menu
LocatePointer option_menu ROptionButton
PressMB Btn1
LocatePointer pb
ReleaseMB Btn1
LocatePointer entry3
ClickMB Btn1
CompareVisual option_menu
Continue
# Now confirm that changing the value of menu-item changes the displayed
# value in the XmOptionButtonGadget even when the menu it insensitive.
# Change the sensitivity of the option menu to false by pressing the
# toggle button so labeled.
# /* BUG! the option menu should appear grayed out, like it does on start-up */
# Choose the button "Change pulldown entry #n" corresponding to the
# menu item currently being displayed.
# Confirm that the display of the XmOptionButtonGadget immediately reflects
# a new value.
# Change the menu to be sensitive again.
LocatePointer sensitivity
ClickMB Btn1
LocatePointer option_menu ROptionButton
PressMB Btn1
LocatePointer tbg
ReleaseMB Btn1
LocatePointer entry4
ClickMB Btn1
CompareVisual option_menu
LocatePointer option_menu ROptionButton
PressMB Btn1
LocatePointer tb
ReleaseMB Btn1
LocatePointer entry5
ClickMB Btn1
CompareVisual option_menu
# Confirm that the display of the XmOptionButtonGadget immediately reflects
# a new value.
# Change the menu to be sensitive again.
LocatePointer sensitivity
ClickMB Btn1
Continue
# This test also confirms that menu items with the XmNlabelType of XmPIXMAP
# behave similarly.
# The initial value of XmNlabelPixmap for each entry is the target bitmap.
# As you change the pulldown entries, the XmNlabelPixmap resource is set to
# one of a set of pixmaps, in sequence:
# star opendot black boxes icon xlogo16 xlogo32 wide_weave
# Set the XmNlabelType of the menu-items to XmPIXMAP by pressing the toggle
# so labeled.
# Confirm that the XmOptionButtonGadget changes type immediately to display
# the XmNlabelPixmap of the currently-selected menu-item.
# /* BUG! the size of the XmOptionButtonGadget is not reset until an item is
# selected. See CascadeBG.c`Redisplay and CascadeBG.c`position_cascade */
# Repeat this test until this point.
LocatePointer labelType
ClickMB Btn1
LocatePointer option_menu ROptionButton
PressMB Btn1
LocatePointer label
ReleaseMB Btn1
LocatePointer entry1
ClickMB Btn1
CompareVisual option_menu
LocatePointer option_menu ROptionButton
PressMB Btn1
LocatePointer pbg
ReleaseMB Btn1
LocatePointer entry2
ClickMB Btn1
CompareVisual option_menu
LocatePointer option_menu ROptionButton
PressMB Btn1
LocatePointer pb
ReleaseMB Btn1
LocatePointer entry3
ClickMB Btn1
CompareVisual option_menu
LocatePointer sensitivity
ClickMB Btn1
LocatePointer option_menu ROptionButton
PressMB Btn1
LocatePointer tbg
ReleaseMB Btn1
LocatePointer entry4
ClickMB Btn1
CompareVisual option_menu
LocatePointer option_menu ROptionButton
PressMB Btn1
LocatePointer tb
ReleaseMB Btn1
LocatePointer entry5
ClickMB Btn1
CompareVisual option_menu
LocatePointer sensitivity
ClickMB Btn1
Continue
Exit
|