-// ----------------------------------------------------------------------------
-// constants
-// ----------------------------------------------------------------------------
-
-// wxListbook styles
-enum
-{
- // default alignment: left everywhere except Mac where it is top
- wxLB_DEFAULT = 0,
-
- // put the list control to the left/right/top/bottom of the page area
- wxLB_TOP = 0x1,
- wxLB_BOTTOM = 0x2,
- wxLB_LEFT = 0x4,
- wxLB_RIGHT = 0x8,
-
- // the mask which can be used to extract the alignment from the style
- wxLB_ALIGN_MASK = 0xf
-};
-