- wxMenuItem* FindMenuItemById(int itemid) const
- { return FindItem(itemid); }
- wxMenuItem* FindItemForId(int itemid, wxMenu **menu = NULL) const
- { return FindItem(itemid, menu); }
-#endif // WXWIN_COMPATIBILITY
+ virtual bool CanBeOutsideClientArea() const { return true; }
+
+#if WXWIN_COMPATIBILITY_2_8
+ // get or change the label of the menu at given position
+ // Deprecated in favour of SetMenuLabel
+ wxDEPRECATED( void SetLabelTop(size_t pos, const wxString& label) );
+ // Deprecated in favour of GetMenuLabelText
+ wxDEPRECATED( wxString GetLabelTop(size_t pos) const );
+#endif