File indexing completed on 2025-01-18 10:15:26
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023 #ifndef _XmMainWindowP_h
0024 #define _XmMainWindowP_h
0025
0026 #include <Xm/MainW.h>
0027 #include <Xm/ScrolledWP.h>
0028 #include <Xm/SeparatoG.h>
0029
0030 #ifdef __cplusplus
0031 extern "C" {
0032 #endif
0033
0034
0035 #define DEFAULT_HEIGHT 20
0036 #define DEFAULT_WIDTH 20
0037
0038
0039 typedef struct _XmMainWindowConstraintPart
0040 {
0041 char unused;
0042 } XmMainWindowConstraintPart, * XmMainWindowConstraint;
0043
0044
0045
0046 typedef struct {
0047 XtPointer extension;
0048 } XmMainWindowClassPart;
0049
0050
0051
0052
0053
0054
0055 typedef struct _XmMainWindowClassRec {
0056 CoreClassPart core_class;
0057 CompositeClassPart composite_class;
0058 ConstraintClassPart constraint_class;
0059 XmManagerClassPart manager_class;
0060 XmScrolledWindowClassPart swindow_class;
0061 XmMainWindowClassPart mwindow_class;
0062 } XmMainWindowClassRec;
0063
0064 externalref XmMainWindowClassRec xmMainWindowClassRec;
0065
0066
0067
0068
0069
0070
0071 typedef struct {
0072
0073
0074 Dimension AreaWidth,AreaHeight;
0075 Dimension margin_width,margin_height;
0076 Widget CommandWindow;
0077 Widget MenuBar;
0078 Widget Message;
0079 unsigned char CommandLoc;
0080 XmSeparatorGadget Sep1,Sep2,Sep3;
0081 Boolean ManagingSep;
0082 Boolean ShowSep;
0083
0084 } XmMainWindowPart;
0085
0086
0087
0088
0089
0090
0091
0092
0093 typedef struct _XmMainWindowRec {
0094 CorePart core;
0095 CompositePart composite;
0096 ConstraintPart constraint;
0097 XmManagerPart manager;
0098 XmScrolledWindowPart swindow;
0099 XmMainWindowPart mwindow;
0100 } XmMainWindowRec;
0101
0102
0103
0104
0105
0106
0107
0108
0109 #ifdef __cplusplus
0110 }
0111 #endif
0112
0113 #endif
0114