X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4fabb57533169f2f75367e0d120c762518548890..e0543d2a7000693be84cd8bb5cfa3a85b1ad457c:/include/wx/motif/frame.h diff --git a/include/wx/motif/frame.h b/include/wx/motif/frame.h index 945ecbc5a8..91b6567d8e 100644 --- a/include/wx/motif/frame.h +++ b/include/wx/motif/frame.h @@ -114,12 +114,14 @@ public: const wxString& name); // Create toolbar +#if wxUSE_TOOLBAR virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1, const wxString& name = wxToolBarNameStr); virtual wxToolBar *OnCreateToolBar(long style, wxWindowID id, const wxString& name); // If made known to the frame, the frame will manage it automatically. virtual void SetToolBar(wxToolBar *toolbar) ; virtual wxToolBar *GetToolBar() const ; virtual void PositionToolBar(); +#endif // wxUSE_TOOLBAR // Set status line text virtual void SetStatusText(const wxString& text, int number = 0); @@ -143,6 +145,10 @@ public: // Compatibility inline bool Iconized() const { return IsIconized(); } + // Is the frame maximized? Returns FALSE under Motif (but TRUE for + // wxMDIChildFrame due to the tabbed implementation). + virtual bool IsMaximized(void) const ; + virtual void Maximize(bool maximize); // Responds to colour changes @@ -184,7 +190,10 @@ protected: wxIcon m_icon; bool m_iconized; static bool m_useNativeStatusBar; + +#if wxUSE_TOOLBAR wxToolBar * m_frameToolBar ; +#endif // wxUSE_TOOLBAR //// Motif-specific