91 ExpandBottomRight = 8,
92 ExpandTop = ExpandTopLeft|ExpandTopRight,
93 ExpandBottom = ExpandBottomLeft|ExpandBottomRight,
94 ExpandLeft = ExpandTopLeft|ExpandBottomLeft,
95 ExpandRight = ExpandTopRight|ExpandBottomRight,
96 ExpandAll = ExpandLeft|ExpandRight
101 ID_EXPAND_TOP=ID_EXPAND_NONE+ExpandTop,
102 ID_EXPAND_BOTTOM=ID_EXPAND_NONE+ExpandBottom,
103 ID_EXPAND_LEFT=ID_EXPAND_NONE+ExpandLeft,
104 ID_EXPAND_RIGHT=ID_EXPAND_NONE+ExpandRight,
105 ID_EXPAND_TOPLEFT=ID_EXPAND_NONE+ExpandTopLeft,
106 ID_EXPAND_TOPRIGHT=ID_EXPAND_NONE+ExpandTopRight,
107 ID_EXPAND_BOTTOMLEFT=ID_EXPAND_NONE+ExpandBottomLeft,
108 ID_EXPAND_BOTTOMRIGHT=ID_EXPAND_NONE+ExpandBottomRight,
109 ID_EXPAND_ALL=ID_EXPAND_NONE+ExpandAll,
133 FXint getHSplit()
const {
return fhor; }
136 FXint getVSplit()
const {
return fver; }
142 void setVSplit(
FXint s);
145 virtual void layout();
148 virtual FXint getDefaultWidth();
151 virtual FXint getDefaultHeight();
154 FXuint getSplitterStyle()
const;
157 void setSplitterStyle(
FXuint style);
160 void setBarSize(
FXint bs);
163 FXint getBarSize()
const {
return barsize; }
169 FXuint getExpanded()
const;
172 virtual void save(
FXStream& store)
const;
Base class for all windows.
Definition: FXWindow.h:115
Definition: FXWindow.h:241
unsigned int FXuint
Definition: fxdefs.h:396
FXuint FXSelector
Association key.
Definition: FXObject.h:53
#define FXAPI
Definition: fxdefs.h:122
Base composite.
Definition: FXComposite.h:35
A stream is a way to serialize data and objects into a byte stream.
Definition: FXStream.h:99
Track continuously during split.
Definition: FX4Splitter.h:38
Definition: FX4Splitter.h:31
int FXint
Definition: fxdefs.h:397
Expand all children.
Definition: FX4Splitter.h:85
Object is the base class for all objects in FOX; in order to receive messages from the user interface...
Definition: FXObject.h:166
unsigned char FXuchar
Definition: fxdefs.h:392
Definition: FX4Splitter.h:39
#define FXDECLARE(classname)
Macro to set up class declaration.
Definition: FXObject.h:92
The four-way splitter is a layout manager which manages four children like four panes in a window...
Definition: FX4Splitter.h:62