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
|
/* $XConsortium: ComboBox4.c /main/5 1995/07/15 21:03:14 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
*/
#include <testlib.h>
#define NITEMS 40
#define VITEMS 20
void
main (int argc, char **argv)
{
Widget Parent;
Widget ComboBox;
int n,i;
Arg args[MAX_ARGS];
XmString TempLabelString, ItemList[NITEMS];
static char *CharItems[] = {
"Item1",
"btest1",
"btest1b",
"btest2",
"btest3",
"decor00",
"decor01",
"decor02",
"decor03",
"decor04",
"decor05",
"decor06",
"decor07",
"decor08",
"decor09",
"func00",
"func01",
"func02",
"func03",
"func04",
"func05",
"func06",
"func07",
"func08",
"func09",
"func10",
"func11",
"func12",
"func13",
"func14",
"iplac00",
"iplac01",
"iplac02",
"iplac05",
"menu00",
"menu04",
"mtest1",
"parse00",
"prop00",
"rstest1"
};
CommonTestInit(argc, argv);
/* Create a ComboBox */
if (UserData == NULL)
{
printf ("Usage: ComboBox4 -u <comboBoxType>\n");
exit(0);
}
n=0;
Parent = XmCreateFrame (Shell1, "Parent",args,n);
XtManageChild (Parent);
/* Set the comboBoxType of ComboBox based on the flag passed by the user. */
n=0;
if (strcmp (UserData, "COMBO_BOX") == 0)
{
XtSetArg(args[n], XmNcomboBoxType, XmCOMBO_BOX); n++;
}
else
if (strcmp (UserData, "DROP_DOWN_COMBO_BOX") == 0)
{
XtSetArg(args[n], XmNcomboBoxType, XmDROP_DOWN_COMBO_BOX); n++;
}
if (strcmp (UserData, "DROP_DOWN_LIST") == 0)
{
XtSetArg(args[n], XmNcomboBoxType, XmDROP_DOWN_LIST); n++;
}
ComboBox = XmCreateComboBox (Parent, "ComboBox", args, n);
XtManageChild (ComboBox);
XtRealizeWidget (Shell1);
/* Create the list */
for (i=0; i<NITEMS; i++)
{
TempLabelString = XmStringCreate(CharItems[i],
XmSTRING_DEFAULT_CHARSET);
ItemList[i] = TempLabelString;
}
/* Set values on the List Component of the ComboBox. */
n = 0;
XtSetArg(args[n], XmNlistSpacing, 5); n++;
XtSetArg(args[n], XmNlistMarginWidth, 2); n++;
XtSetArg(args[n], XmNlistMarginHeight, 2); n++;
XtSetArg(args[n], XmNitems, ItemList); n++;
XtSetArg(args[n], XmNitemCount, NITEMS); n++;
XtSetArg(args[n], XmNvisibleItemCount, VITEMS); n++;
if (XtNameToWidget (ComboBox,"*List") != NULL)
XtSetValues (XtNameToWidget(ComboBox,"*List"),args,n);
CommonPause();
n = 0;
XtSetArg(args[n], XmNautoShowCursorPosition, True); n++;
XtSetArg(args[n], XmNcursorPosition, 5); n++;
XtSetArg(args[n], XmNeditMode, XmSINGLE_LINE_EDIT); n++;
XtSetArg(args[n], XmNmarginHeight, 20); n++;
XtSetArg(args[n], XmNmarginWidth, 20); n++;
XtSetArg (args[n], XmNresizeWidth, True); n++;
XtSetValues (XtNameToWidget(ComboBox,"Text"),args,n);
CommonPause();
/* Add an Item */
TempLabelString = XmStringCreate ("ExtraItem", XmSTRING_DEFAULT_CHARSET);
XmListAddItem (XtNameToWidget(ComboBox,"*List"), TempLabelString, NITEMS+1);
XmStringFree (TempLabelString);
CommonPause();
/* Test for XmComboBoxUpdate */
TempLabelString = XmStringCreate ("Item1", XmSTRING_DEFAULT_CHARSET);
XmListSelectItem (XtNameToWidget(ComboBox,"*List"), TempLabelString,False);
XmComboBoxUpdate (ComboBox);
XmStringFree (TempLabelString);
CommonPause();
CommonPause();
XtAppMainLoop(app_context);
}
|