- statbarMenu->Append(StatusBar_ResetFieldsWidth, _T("Reset field widths"),
- _T("Sets all fields to the same width"));
+ wxMenu *statbarPaneStyleMenu = new wxMenu;
+ statbarPaneStyleMenu->AppendCheckItem
+ (
+ StatusBar_SetPaneStyleNormal,
+ wxT("&Normal"),
+ wxT("Sets the style of the first field to normal (sunken) look")
+ );
+ statbarPaneStyleMenu->AppendCheckItem
+ (
+ StatusBar_SetPaneStyleFlat,
+ wxT("&Flat"),
+ wxT("Sets the style of the first field to flat look")
+ );
+ statbarPaneStyleMenu->AppendCheckItem
+ (
+ StatusBar_SetPaneStyleRaised,
+ wxT("&Raised"),
+ wxT("Sets the style of the first field to raised look")
+ );
+ statbarMenu->Append(StatusBar_SetPaneStyle, wxT("Field style"),
+ statbarPaneStyleMenu);
+
+ statbarMenu->Append(StatusBar_ResetFieldsWidth, wxT("Reset field widths"),
+ wxT("Sets all fields to the same width"));
+ statbarMenu->Append(StatusBar_ShowFieldsRect,
+ wxT("Sho&w field rectangles\tCtrl-W"),
+ wxT("Visually show field rectangles"));