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
|
/* $XConsortium: SpinBox2.dat /main/4 1995/07/17 10:22:30 drk $ */
/*
* (c) Copyright 1989, 1990, 1991, 1992, 1993 OPEN SOFTWARE FOUNDATION, INC.
* ALL RIGHTS RESERVED
* 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
*/
#) This test verifies the default translations for SpinBox.
#) A SpinBox with a numeric TextField child should appear on your screen.
The valid values for the TextField child are 1, 4, 7, 10.
The current value displayed should be 7.
#) Press MB1 on the right-pointing arrow. The SpinBox should be visually
armed ( the right-pointing arrow appears depressed ).
#) Release MB1. The value in the NUMERIC child should be incremented from
7 to 10. Verify that the following messages are displayed to the terminal:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_NEXT
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_NEXT
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
#) Press MB1 on the left-pointing arrow. The SpinBox should be visually
armed ( the left-pointing arrow appears depressed ).
#) Release MB1. The value in the NUMERIC child should be decremented from
10 to 7. Verify that the following messages are displayed to the terminal:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_PRIOR
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_PRIOR
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
C)
#) Click osfBeginData. The value in the NUMERIC child should change to
the first value, 1. Verify the following messages are displayed:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_FIRST
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_FIRST
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
#) Click osfEndData. The value in the NUMERIC child should change to
the last value, 10. Verify the following messages are displayed:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_LAST
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_LAST
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
C)
@) An XmNmodifyVerifyCallback has been added to test whether the SpinBox
has attempted to increment/decrement passed the maximum/minimum value.
#) Click MB1 on the right-pointing arrow button to increment value
passed the maximum. The doit field of the XmSpinBoxCallbackStruct
will be set to False and the value of the text field will not be changed.
Verify that the following messages are displayed:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_NEXT
@) crossed_boundary = True
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
#) Click MB1 on the right-pointing arrow button again. This time the
doit field of the XmSpinBoxCallbackStruct will be set to True and
the SpinBox will display the minimum value of 1.
Verify that the following messages are displayed:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_NEXT
@) crossed_boundary = True
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_NEXT
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
#) Click MB1 on the left-pointing arrow button to decrement the value passed
the minimum. The doit field will be set to False and the value will
not be changed.
Verify that the following messages are displayed:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_PRIOR
@) crossed_boundary = True
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
#) Click MB1 on the left-pointing arrow button again. This time the
doit field will be set to True and the SpinBox will display the
maximum value of 10.
Verify that the following messages are displayed:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_PRIOR
@) crossed_boundary = True
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_PRIOR
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
C)
@) An XmNmodifyVerifyCallback has been added which will assign a value to
the position field of the XmSpinBoxCallbackStruct.
#) Click MB1 on the right-pointing arrow button to increase the value
passed the maximum. The doit field will be set to True and position
field will be set to the position before the maximum.
Verify that the value displayed is 7 and that the following messages
are displayed to the terminal.
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_NEXT
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_NEXT
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
#) Click MB1 on the left-pointing arrow button to decrease the value
passed the minimum. The doit field will be set to True and position
field will be set to the maximum position.
Verify that the value displayed is 10 and that the following messages
are displayed to the terminal.
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_PRIOR
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_PRIOR
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
C)
#) Click KLeft. The value in the NUMERIC child should go to 7.
Verify the following messages are displayed:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_PRIOR
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_PRIOR
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
#) Click KUp. The value in the NUMERIC child should go to 4.
Verify the following messages are displayed:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_PRIOR
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_PRIOR
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
#) Click KRight. The value in the NUMERIC child should go to 7.
Verify the following messages are displayed:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_NEXT
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_NEXT
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
#) Click KDown. The value in the NUMERIC child should go to 10.
Verify the following messages are displayed:
@) XmNmodifyVerifyCallback invoked, reason = XmCR_SPIN_NEXT
@) XmNvalueChangedCallback invoked, reason = XmCR_SPIN_NEXT
@) XmNvalueChangedCallback invoked, reason = XmCR_OK
C)
E)
|