X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/46499442ee90e45da35a42223330573cda3017d5..0371a6914315f283371985bb751fb37504dd63d8:/include/wx/msw/frame.h diff --git a/include/wx/msw/frame.h b/include/wx/msw/frame.h index 64e30f3e9b..722f4bf695 100644 --- a/include/wx/msw/frame.h +++ b/include/wx/msw/frame.h @@ -68,6 +68,7 @@ public: bool Show(bool show); + void DetachMenuBar(); // Set menu bar void SetMenuBar(wxMenuBar *menu_bar); virtual wxMenuBar *GetMenuBar() const; @@ -78,10 +79,14 @@ public: // process menu command: returns TRUE if processed bool ProcessCommand(int id); + // make the window modal (all other windows unresponsive) + virtual void MakeModal(bool modal = TRUE); + // Set icon virtual void SetIcon(const wxIcon& icon); // Toolbar +#if wxUSE_TOOLBAR virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT, wxWindowID id = -1, const wxString& name = wxToolBarNameStr); @@ -92,7 +97,9 @@ public: virtual wxToolBar *GetToolBar() const { return m_frameToolBar; } virtual void PositionToolBar(); +#endif // wxUSE_TOOLBAR +#if wxUSE_STATUSBAR // Status bar virtual wxStatusBar* CreateStatusBar(int number = 1, long style = wxST_SIZEGRIP, @@ -118,6 +125,7 @@ public: // TODO: should this go into a wxFrameworkSettings class perhaps? static void UseNativeStatusBar(bool useNative) { m_useNativeStatusBar = useNative; }; static bool UsesNativeStatusBar() { return m_useNativeStatusBar; }; +#endif // wxUSE_STATUSBAR // Iconize virtual void Iconize(bool iconize); @@ -153,8 +161,8 @@ public: bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control); bool HandleMenuSelect(WXWORD nItem, WXWORD nFlags, WXHMENU hMenu); - bool MSWCreate(int id, wxWindow *parent, const char *wclass, - wxWindow *wx_win, const char *title, + bool MSWCreate(int id, wxWindow *parent, const wxChar *wclass, + wxWindow *wx_win, const wxChar *title, int x, int y, int width, int height, long style); // tooltip management @@ -169,9 +177,6 @@ protected: virtual void DoGetSize(int *width, int *height) const; virtual void DoGetPosition(int *x, int *y) const; - virtual void DoSetSize(int x, int y, - int width, int height, - int sizeFlags = wxSIZE_AUTO); virtual void DoSetClientSize(int width, int height); // a plug in for MDI frame classes which need to do something special when @@ -188,13 +193,19 @@ protected: long MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam); wxMenuBar * m_frameMenuBar; - wxStatusBar * m_frameStatusBar; wxIcon m_icon; bool m_iconized; WXHICON m_defaultIcon; - wxToolBar * m_frameToolBar; + +#if wxUSE_STATUSBAR + wxStatusBar * m_frameStatusBar; static bool m_useNativeStatusBar; +#endif // wxUSE_STATUSBAR + +#if wxUSE_TOOLBAR + wxToolBar * m_frameToolBar; +#endif // wxUSE_TOOLBAR private: #if wxUSE_TOOLTIPS