- statbarMenu->Append(StatusBar_SetFields, "&Set field count\tCtrl-C",
- "Set the number of status bar fields");
- statbarMenu->Append(StatusBar_Toggle, "&Toggle Status Bar",
- "Toggle the status bar display", true);
- statbarMenu->Append(StatusBar_Recreate, "&Recreate\tCtrl-R",
- "Toggle status bar format");
+ statbarMenu->Append(StatusBar_SetFields, _T("&Set field count\tCtrl-C"),
+ _T("Set the number of status bar fields"));
+
+ wxMenu *statbarStyleMenu = new wxMenu;
+ statbarStyleMenu->Append(StatusBar_SetStyleNormal, _T("&Normal"), _T("Sets the style of the first field to normal (sunken) look"), true);
+ statbarStyleMenu->Append(StatusBar_SetStyleFlat, _T("&Flat"), _T("Sets the style of the first field to flat look"), true);
+ statbarStyleMenu->Append(StatusBar_SetStyleRaised, _T("&Raised"), _T("Sets the style of the first field to raised look"), true);
+ statbarMenu->Append(StatusBar_SetStyle, _T("Field style"), statbarStyleMenu);
+
+ statbarMenu->Append(StatusBar_ResetFieldsWidth, _T("Reset field widths"),
+ _T("Sets all fields to the same width"));
+ statbarMenu->AppendSeparator();
+
+ statbarMenu->Append(StatusBar_Toggle, _T("&Toggle Status Bar"),
+ _T("Toggle the status bar display"), true);
+ statbarMenu->Append(StatusBar_Recreate, _T("&Recreate\tCtrl-R"),
+ _T("Toggle status bar format"));