File: UxTranSh.h

package info (click to toggle)
eso-midas 13.09pl1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 147,516 kB
  • ctags: 57,237
  • sloc: ansic: 364,554; sh: 6,936; makefile: 6,194; pascal: 535; perl: 40; awk: 36; sed: 14
file content (25 lines) | stat: -rw-r--r-- 758 bytes parent folder | download | duplicates (7)
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
/* @(#)UxTranSh.h	17.1 (ESO-IPG) 01/25/02 17:26:03 */
#ifndef UXTransientShell_INCLUDED
#define UXTransientShell_INCLUDED

#include "X11/Shell.h"

#ifdef DESIGN_TIME
#include "UxVendSh.h"

#ifndef UxGetTransientFor
extern binptr UxP_TransientShellRD_transientFor;
#define UxGetTransientFor(sw) \
        UxGET_string(sw,UxP_TransientShellRD_transientFor,"transientFor")
#define UxPutTransientFor(sw,val) \
        UxPUT_string(sw,UxP_TransientShellRD_transientFor,"transientFor",val)
#endif

extern Class_t UxC_transientShell;
#define UxCreateTransientShell(name,parent) \
        UxCreateSwidget(UxC_transientShell,name,parent)
#else
#define UxCreateTransientShell(name,parent) \
        UxCreateSwidget(name,transientShellWidgetClass,parent)
#endif
#endif