+ statbarMenu->Append(StatusBar_SetTexts, _T("&Set field text\tCtrl-T"),
+ _T("Set the text to display for each status bar field"));
+ statbarMenu->Append(StatusBar_SetFont, _T("&Set field font\tCtrl-F"),
+ _T("Set the font to use for rendering 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();
+