X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4a539480fb18ad17e1d4bacdaca414b255b417c1..da0766ab2ae2357cd4dc111415731ee85aa45984:/include/wx/motif/menu.h diff --git a/include/wx/motif/menu.h b/include/wx/motif/menu.h index c50ae78653..8e4a45a853 100644 --- a/include/wx/motif/menu.h +++ b/include/wx/motif/menu.h @@ -12,8 +12,8 @@ #ifndef _WX_MOTIF_MENU_H_ #define _WX_MOTIF_MENU_H_ -#ifdef __GNUG__ - #pragma interface "menu.h" +#if defined(__GNUG__) && !defined(__APPLE__) +#pragma interface "menu.h" #endif #include "wx/colour.h" @@ -31,69 +31,70 @@ public: // ctors & dtor wxMenu(const wxString& title, long style = 0) : wxMenuBase(title, style) { Init(); } - + wxMenu(long style = 0) : wxMenuBase(style) { Init(); } - + virtual ~wxMenu(); - + // implement base class virtuals virtual bool DoAppend(wxMenuItem *item); virtual bool DoInsert(size_t pos, wxMenuItem *item); virtual wxMenuItem *DoRemove(wxMenuItem *item); - + virtual void Break(); - + virtual void SetTitle(const wxString& title); - + bool ProcessCommand(wxCommandEvent& event); - + wxMenu(const wxString& title, const wxFunction func) : wxMenuBase(title) { Init(); - + Callback(func); } - + //// Motif-specific WXWidget GetButtonWidget() const { return m_buttonWidget; } void SetButtonWidget(WXWidget buttonWidget) { m_buttonWidget = buttonWidget; } - + WXWidget GetMainWidget() const { return m_menuWidget; } - + int GetId() const { return m_menuId; } void SetId(int id) { m_menuId = id; } - + void SetMenuBar(wxMenuBar* menuBar) { m_menuBar = menuBar; } wxMenuBar* GetMenuBar() const { return m_menuBar; } - + void CreatePopup(WXWidget logicalParent, int x, int y); void DestroyPopup(); void ShowPopup(int x, int y); void HidePopup(); - + WXWidget CreateMenu(wxMenuBar *menuBar, WXWidget parent, wxMenu *topMenu, - const wxString& title = wxEmptyString, - bool isPulldown = FALSE); - + const wxString& title = wxEmptyString, + bool isPulldown = FALSE); + // For popups, need to destroy, then recreate menu for a different (or // possibly same) window, since the parent may change. void DestroyMenu(bool full); WXWidget FindMenuItem(int id, wxMenuItem **it = NULL) const; - + const wxColour& GetBackgroundColour() const { return m_backgroundColour; } const wxColour& GetForegroundColour() const { return m_foregroundColour; } const wxFont& GetFont() const { return m_font; } - + void SetBackgroundColour(const wxColour& colour); void SetForegroundColour(const wxColour& colour); void SetFont(const wxFont& colour); void ChangeFont(bool keepOriginalSize = FALSE); - + WXWidget GetHandle() const { return m_menuWidget; } - + bool IsTearOff() const { return (m_style & wxMENU_TEAROFF) != 0; } + void DestroyWidgetAndDetach(); public: // Motif-specific data int m_numColumns; @@ -106,11 +107,11 @@ public: wxColour m_foregroundColour; wxColour m_backgroundColour; wxFont m_font; - + private: // common code for both constructors: void Init(); - + DECLARE_DYNAMIC_CLASS(wxMenu) }; @@ -125,59 +126,59 @@ public: wxMenuBar(long WXUNUSED(style)) { Init(); } wxMenuBar(int n, wxMenu *menus[], const wxString titles[]); virtual ~wxMenuBar(); - + // implement base class (pure) virtuals // ------------------------------------ - + virtual bool Append( wxMenu *menu, const wxString &title ); virtual bool Insert(size_t pos, wxMenu *menu, const wxString& title); virtual wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title); virtual wxMenu *Remove(size_t pos); - + virtual int FindMenuItem(const wxString& menuString, - const wxString& itemString) const; + const wxString& itemString) const; virtual wxMenuItem* FindItem( int id, wxMenu **menu = NULL ) const; - + virtual void EnableTop( size_t pos, bool flag ); virtual void SetLabelTop( size_t pos, const wxString& label ); virtual wxString GetLabelTop( size_t pos ) const; - + // implementation only from now on // ------------------------------- - + wxFrame* GetMenuBarFrame() const { return m_menuBarFrame; } void SetMenuBarFrame(wxFrame* frame) { m_menuBarFrame = frame; } WXWidget GetMainWidget() const { return m_mainWidget; } void SetMainWidget(WXWidget widget) { m_mainWidget = widget; } - + // Create menubar bool CreateMenuBar(wxFrame* frame); - + // Destroy menubar, but keep data structures intact so we can recreate it. bool DestroyMenuBar(); - + const wxColour& GetBackgroundColour() const { return m_backgroundColour; } const wxColour& GetForegroundColour() const { return m_foregroundColour; } const wxFont& GetFont() const { return m_font; } - + virtual bool SetBackgroundColour(const wxColour& colour); virtual bool SetForegroundColour(const wxColour& colour); virtual bool SetFont(const wxFont& colour); void ChangeFont(bool keepOriginalSize = FALSE); - + public: // common part of all ctors void Init(); - + wxArrayString m_titles; wxFrame *m_menuBarFrame; - + WXWidget m_mainWidget; - + wxColour m_foregroundColour; wxColour m_backgroundColour; wxFont m_font; - + DECLARE_DYNAMIC_CLASS(wxMenuBar) };