+ // prepend a check item
+ void PrependCheckItem(int itemid,
+ const wxString& text,
+ const wxString& help = wxEmptyString)
+ {
+ InsertCheckItem(0u, itemid, text, help);
+ }
+
+ // prepend a radio item
+ void PrependRadioItem(int itemid,
+ const wxString& text,
+ const wxString& help = wxEmptyString)
+ {
+ InsertRadioItem(0u, itemid, text, help);
+ }
+
+ // prepend a submenu
+ void Prepend(int itemid,