30 #ifndef MACVENTURE_WINDOWS_H 31 #define MACVENTURE_WINDOWS_H 33 #include "common/rect.h" 34 #include "common/str.h" 35 #include "common/array.h" 41 enum WindowReference {
44 kCommandsWindow = 0x80,
45 kMainGameWindow = 0x81,
46 kOutConsoleWindow = 0x82,
89 WindowReference refcon;
102 uint16 rightScrollbarWidth;
103 uint16 bottomScrollbarHeight;
106 leftOffset(l), topOffset(t), rightOffset(r), bottomOffset(b), rightScrollbarWidth(0), bottomScrollbarHeight(0) {}
108 BorderBounds(uint16 l, uint16 t, uint16 r, uint16 b, uint16 rs, uint16 bs) :
109 leftOffset(l), topOffset(t), rightOffset(r), bottomOffset(b), rightScrollbarWidth(rs), bottomScrollbarHeight(bs) {}
Definition: container.h:38