version 1.2 | | version 1.3 |
---|
| | |
| | |
typedef struct { | | typedef struct { |
Widget w; | | Widget w; |
char *name; | | const char *name; |
unsigned long flags; | | unsigned long flags; |
} ArchFlagsRec; | | } ArchFlagsRec; |
| | |
| | |
* Function interface | | * Function interface |
*/ | | */ |
extern App AppCreate ( XtAppContext appCon, String displayString, XtResource resources[], Cardinal resourcesNum, XrmOptionDescRec *options, Cardinal optionsNum, int *argc, char *argv[] ); | | extern App AppCreate ( XtAppContext appCon, String displayString, XtResource resources[], Cardinal resourcesNum, XrmOptionDescRec *options, Cardinal optionsNum, int *argc, char *argv[] ); |
extern void AppDestroy ( App self ); | | |
extern void AppUpdate ( App self ); | | extern void AppUpdate ( App self ); |
extern void AppSelectSet ( App self, Edit edit, XRectangle rect ); | | extern void AppSelectSet ( App self, Edit edit, XRectangle rect ); |
extern void AppSelectUnset ( App self ); | | extern void AppSelectUnset ( App self ); |
extern void AppItemSet ( App self, Edit edit, object *obj, int wallSet ); | | extern void AppItemSet ( App self, Edit edit, object *obj, int wallSet ); |
extern char PixelFromAlias ( char *name ); | | |
extern void InitializeColors ( Display *dpy ); | | |
extern Edit AppEditInsert ( App self, String path, EditType type ); | | |
extern void AppEditAttach ( App self, Edit edit ); | | |
extern void AppEditDeattach ( App self, Edit edit ); | | extern void AppEditDeattach ( App self, Edit edit ); |
| | |
#endif /* _App_h */ | | #endif /* _App_h */ |