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
|
/*
* 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
*/
#ifdef REV_INFO
#ifndef lint
static char rcsid[] = "$TOG: FileSelect1.c /main/10 1999/05/28 15:45:39 jff $"
#endif
#endif
/*
* (c) Copyright 1987, 1988, 1989 HEWLETT-PACKARD COMPANY */
#include <testlib.h>
#include <unistd.h>
#define TARGET_DIR "/tmp/FS/fourteencharac/fourteencharac/fourteencharac/"
static void GoneCB();
static void OkApplyHelpCB();
Widget FileSelectionBox1;
void main(argc, argv)
int argc;
char **argv;
{
register int n;
Arg args[MAX_ARGS];
XmString tcs, tcs2;
Widget CancelW, filelist;
/* Ensure target directory for FSB is set up properly */
if ( access(TARGET_DIR,F_OK | R_OK) ) {
printf("Target directory %s is not set up\n",TARGET_DIR);
exit(1);
}
CommonTestInit(argc, argv);
n = 0;
XtSetArg(args[n], XmNwidth, 400); n++;
XtSetArg(args[n], XmNheight, 300); n++;
XtSetValues(Shell1, args, n);
XtRealizeWidget(Shell1);
tcs = XmStringCreateSimple(TARGET_DIR);
tcs2 = XmStringCreateSimple("b*");
n = 0;
XtSetArg(args[n], XmNdirMask, tcs); n++;
XtSetArg(args[n], XmNdirSpec, NULL); n++;
XtSetArg(args[n], XmNpattern, tcs2); n++;
FileSelectionBox1 = XmCreateFileSelectionBox(Shell1,
"FileSelectionBox1", args, n);
XtManageChild(FileSelectionBox1);
XmStringFree(tcs);
XmStringFree(tcs2);
/* change some resources */
tcs = XmStringLtoRCreate("Look For:", XmSTRING_DEFAULT_CHARSET);
n = 0;
XtSetArg(args[n], XmNwidth, 350); n++;
XtSetArg(args[n], XmNheight, 300); n++;
XtSetArg(args[n], XmNresizePolicy, XmRESIZE_NONE); n++;
XtSetArg(args[n], XmNfilterLabelString, tcs); n++;
XtSetValues(FileSelectionBox1, args, n);
XmStringFree(tcs);
/* add a callback to the Cancel button to destroy the world */
CancelW = XmFileSelectionBoxGetChild(FileSelectionBox1,
XmDIALOG_CANCEL_BUTTON);
XtAddCallback(CancelW,XmNactivateCallback, GoneCB, NULL);
CommonPause();
CommonPause();
CommonPause();
CommonPause();
CommonPause();
XtAddCallback(FileSelectionBox1, XmNokCallback, OkApplyHelpCB, NULL);
XtAddCallback(FileSelectionBox1, XmNhelpCallback, OkApplyHelpCB, NULL);
XtAddCallback(FileSelectionBox1, XmNapplyCallback, OkApplyHelpCB, NULL);
CommonPause();
/* Test for CR 4269 */
/* This test originally used MallocEnable, MallocLeakInfo and
* MallocDisable to determine memory leaks.
*/
n = 0;
XtSetArg(args[n], XmNinitialResourcesPersistent, False); n++;
XtSetArg(args[n], XmNallowShellResize, True); n++;
XtSetValues(Shell1, args, n);
n = 0;
XtSetArg(args[n], XmNinitialResourcesPersistent, False); n++;
XtSetValues(FileSelectionBox1, args, n);
filelist = XmFileSelectionBoxGetChild(FileSelectionBox1, XmDIALOG_LIST);
XmListSelectPos(filelist, 1, True);
XmListDeselectPos(filelist, 1);
CommonPause();
/* End Test for CR 4269 */
/* Begin Test for Pir2161 */
tcs = XmStringCreateSimple("/tmp/FS/");
n = 0;
XtSetArg(args[n], XmNdirMask, tcs); n++;
XtSetValues(FileSelectionBox1, args, n);
XmStringFree(tcs);
CommonPause();
/* End Test for Pir2161 */
/* Test for Pir 4110 */
n = 0;
XtSetArg(args[n], XmNkeyboardFocusPolicy, XmPOINTER); n++;
XtSetValues(Shell1, args, n);
/* End Test for Pir 4110 */
CommonPause();
XtAppMainLoop(app_context);
}
static void GoneCB(w, client_data, call_data )
Widget w;
XtPointer client_data;
XtPointer call_data;
{
/* callback for when user clicks the cancel button */
Widget dad;
dad = XtParent(w); /* get parent of cancel button */
XtDestroyWidget(dad); /* and parent */
}
static void OkApplyHelpCB(w, client_data, call_data)
Widget w;
XtPointer client_data;
XtPointer call_data;
{
/* callback for Ok, Apply, or Help button */
int reason;
reason = ((XmFileSelectionBoxCallbackStruct *)call_data)->reason;
switch (reason) {
case XmCR_OK:
printf("Ok Callback triggered: reason XmCR_OK\n");
break;
case XmCR_HELP:
printf("Help Callback triggered: reason XmCR_HELP\n");
break;
case XmCR_APPLY:
printf("Apply Callback triggered: reason XmCR_APPLY\n");
break;
default: printf("Invalid reason\n");
break;
}
}
|