- int orient = wxTB_HORIZONTAL;
- if ( (style & (wxBK_LEFT | wxBK_RIGHT)) != 0)
- orient = wxTB_VERTICAL;
+ int tbFlags = wxTB_TEXT | wxTB_FLAT | wxBORDER_NONE;
+ if ( (style & (wxBK_LEFT | wxBK_RIGHT)) != 0 )
+ tbFlags |= wxTB_VERTICAL;
+ else
+ tbFlags |= wxTB_HORIZONTAL;
+
+ if ( style & wxTBK_HORZ_LAYOUT )
+ tbFlags |= wxTB_HORZ_LAYOUT;