blob: 2ddd950d83cef224849751756574d9fa72bd6003 (
plain) (
blame)
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
|
/* Generated by wbuild from "RowCol.w"
** (generator version $Revision: 2.0 $ of $Date: 93/07/06 16:08:04 $)
*/
#ifndef _XfwfRowColP_H_
#define _XfwfRowColP_H_
#include "BoardP.h"
#include "RowCol.h"
typedef void (*layout_Proc)(
#if NeedFunctionPrototypes
Widget,int
#endif
);
#define XtInherit_layout ((layout_Proc) _XtInherit)
typedef struct {
/* methods */
layout_Proc layout;
/* class variables */
} XfwfRowColClassPart;
typedef struct _XfwfRowColClassRec {
CoreClassPart core_class;
CompositeClassPart composite_class;
XfwfCommonClassPart xfwfCommon_class;
XfwfFrameClassPart xfwfFrame_class;
XfwfBoardClassPart xfwfBoard_class;
XfwfRowColClassPart xfwfRowCol_class;
} XfwfRowColClassRec;
typedef struct {
/* resources */
Boolean storeByRow;
int rows;
int columns;
Alignment alignment;
Boolean shrinkToFit;
/* private state */
Dimension max_width;
Dimension max_height;
} XfwfRowColPart;
typedef struct _XfwfRowColRec {
CorePart core;
CompositePart composite;
XfwfCommonPart xfwfCommon;
XfwfFramePart xfwfFrame;
XfwfBoardPart xfwfBoard;
XfwfRowColPart xfwfRowCol;
} XfwfRowColRec;
externalref XfwfRowColClassRec xfwfRowColClassRec;
#endif /* _XfwfRowColP_H_ */
|