-// ----------------------------------------------------------------------------
-// constants
-// ----------------------------------------------------------------------------
-
-// wxChoicebook styles
-enum
-{
- // default alignment: top everywhere
- wxCHB_DEFAULT = 0,
-
- // put the choice control to the left/right/top/bottom of the page area
- wxCHB_TOP = 0x1,
- wxCHB_BOTTOM = 0x2,
- wxCHB_LEFT = 0x4,
- wxCHB_RIGHT = 0x8,
-
- // the mask which can be used to extract the alignment from the style
- wxCHB_ALIGN_MASK = 0xf
-};
-