X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1987af7e9f5685198b0c19e2326eebf7e56b7834..695237bccd652c60deba347117ba5ab32067880c:/include/wx/menu.h diff --git a/include/wx/menu.h b/include/wx/menu.h index 599326cb18..e3521afa2c 100644 --- a/include/wx/menu.h +++ b/include/wx/menu.h @@ -35,6 +35,21 @@ class WXDLLEXPORT wxMenuItem; WX_DECLARE_LIST(wxMenu, wxMenuList); WX_DECLARE_LIST(wxMenuItem, wxMenuItemList); +// ---------------------------------------------------------------------------- +// conditional compilation +// ---------------------------------------------------------------------------- + +// having callbacks in menus is a wxWin 1.6x feature which should be replaced +// with event tables in wxWin 2.xx code - however provide it because many +// people like it a lot by default +#ifndef wxUSE_MENU_CALLBACK + #if WXWIN_COMPATIBILITY_2 + #define wxUSE_MENU_CALLBACK 1 + #else + #define wxUSE_MENU_CALLBACK 0 + #endif // WXWIN_COMPATIBILITY_2 +#endif // !defined(wxUSE_MENU_CALLBACK) + // ---------------------------------------------------------------------------- // wxMenu // ---------------------------------------------------------------------------- @@ -57,9 +72,6 @@ public: // menu construction // ----------------- - // append a separator to the menu - void AppendSeparator() { Append(wxID_SEPARATOR, wxEmptyString); } - // append a normal item to the menu void Append(int id, const wxString& text, @@ -69,6 +81,9 @@ public: DoAppend(wxMenuItem::New((wxMenu *)this, id, text, help, isCheckable)); } + // append a separator to the menu + void AppendSeparator() { Append(wxID_SEPARATOR, wxEmptyString); } + // append a submenu void Append(int id, const wxString& text, @@ -175,12 +190,15 @@ public: { return FindItem(itemId, itemMenu); } wxList& GetItems() const { return (wxList &)m_items; } +#endif // WXWIN_COMPATIBILITY +#if wxUSE_MENU_CALLBACK // wxWin 1.6x compatible menu event handling wxFunction GetCallback() const { return m_callback; } void Callback(const wxFunction func) { m_callback = func; } + wxFunction m_callback; -#endif // WXWIN_COMPATIBILITY +#endif // wxUSE_MENU_CALLBACK // unlike FindItem(), this function doesn't recurse but only looks through // our direct children and also may return the index of the found child if