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
|
/* @(#)UxApplSh.h 17.1 (ESO-IPG) 01/25/02 17:25:58 */
#ifndef UXApplicationShell_INCLUDED
#define UXApplicationShell_INCLUDED
#include "X11/Shell.h"
#ifdef DESIGN_TIME
#include "UxTopSh.h"
#ifndef UxGetArgv
extern binptr UxP_ApplicationShellRD_argv;
#define UxGetArgv(sw) \
UxGET_stringTable(sw,UxP_ApplicationShellRD_argv,"argv")
#define UxPutArgv(sw,val) \
UxPUT_stringTable(sw,UxP_ApplicationShellRD_argv,"argv",val)
#endif
#ifndef UxGetArgc
extern binptr UxP_ApplicationShellRD_argc;
#define UxGetArgc(sw) \
UxGET_int(sw,UxP_ApplicationShellRD_argc,"argc")
#define UxPutArgc(sw,val) \
UxPUT_int(sw,UxP_ApplicationShellRD_argc,"argc",val)
#endif
extern Class_t UxC_applicationShell;
#define UxCreateApplicationShell(name,parent) \
UxCreateSwidget(UxC_applicationShell,name,parent)
#else
#define UxCreateApplicationShell(name,parent) \
UxCreateSwidget(name,applicationShellWidgetClass,parent)
#endif
#endif
|