2 * Acess2 Window Manager (AxWin2)
7 #include <axwin2/axwin.h>
10 typedef struct sAxWin_Element tElement;
11 typedef struct sTab tTab;
12 typedef struct sApplication tApplication;
21 tElement *NextSibling;
23 // User modifiable attributes
24 short PaddingL, PaddingR;
25 short PaddingT, PaddingB;
30 short FixedWith; // Fixed Long Size attribute (height)
31 short FixedCross; // Fixed Cross Size attribute (width)
35 // -- Attributes maitained by the element code
36 // Not touched by the user
37 short MinWith; // Minimum long size
38 short MinCross; // Minimum cross size
42 short CachedX, CachedY;
43 short CachedW, CachedH;
53 tMessages_Handle_Callback *SendMessage;