X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b6dbb09746f8f5ee0549a2ff39ae0ac4c725898..4259a48e0b5799e015061f8e649ab54ad2d9dc7f:/include/wx/motif/mdi.h diff --git a/include/wx/motif/mdi.h b/include/wx/motif/mdi.h index fa1db5314c..b843dc4e60 100644 --- a/include/wx/motif/mdi.h +++ b/include/wx/motif/mdi.h @@ -1,8 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: mdi.h // Purpose: MDI (Multiple Document Interface) classes. -// This doesn't have to be implemented just like Windows, -// it could be a tabbed design as in wxGTK. // Author: Julian Smart // Modified by: // Created: 17/09/98 @@ -26,6 +24,11 @@ WXDLLEXPORT_DATA(extern const char*) wxStatusLineNameStr; class WXDLLEXPORT wxMDIClientWindow; class WXDLLEXPORT wxMDIChildFrame; +#if wxUSE_MDI_WIDGETS +class XsMDICanvas; +class wxXsMDIWindow; +#endif + class WXDLLEXPORT wxMDIParentFrame: public wxFrame { DECLARE_DYNAMIC_CLASS(wxMDIParentFrame) @@ -66,7 +69,7 @@ public: // toolbar(s), don't call SetToolBar. void GetClientSize(int *width, int *height) const; - // Get the active MDI child window (Windows only) + // Get the active MDI child window wxMDIChildFrame *GetActiveChild() const ; // Get the client window @@ -83,10 +86,13 @@ public: virtual void ActivateNext(); virtual void ActivatePrevious(); +// Implementation + inline void SetActiveChild(wxMDIChildFrame* child) { m_activeChild = child; } + protected: - // TODO maybe have this member - wxMDIClientWindow *m_clientWindow; + wxMDIClientWindow* m_clientWindow; + wxMDIChildFrame* m_activeChild; DECLARE_EVENT_TABLE() }; @@ -120,13 +126,35 @@ public: // Set menu bar void SetMenuBar(wxMenuBar *menu_bar); + void SetTitle(const wxString& title); void SetClientSize(int width, int height); + void GetClientSize(int *width, int *height) const; + void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); + void GetSize(int *width, int *height) const; void GetPosition(int *x, int *y) const ; + // Set icon + virtual void SetIcon(const wxIcon& icon); + // MDI operations virtual void Maximize(); + inline void Minimize() { Iconize(TRUE); }; + virtual void Iconize(bool iconize); virtual void Restore(); virtual void Activate(); + virtual bool IsIconized() const ; + + bool Show(bool show); + void BuildClientArea(WXWidget parent); + inline WXWidget GetTopWidget() const { return m_mainWidget; }; +#if wxUSE_MDI_WIDGETS + inline wxXsMDIWindow *GetMDIWindow() const { return m_mdiWindow; }; +#endif + virtual void OnRaise(); + virtual void OnLower(); + +protected: + wxXsMDIWindow* m_mdiWindow ; }; /* The client window is a child of the parent MDI frame, and itself @@ -149,14 +177,32 @@ class WXDLLEXPORT wxMDIClientWindow: public wxWindow ~wxMDIClientWindow(); + void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); + void SetClientSize(int width, int height); + void GetClientSize(int *width, int *height) const; + + void GetSize(int *width, int *height) const ; + void GetPosition(int *x, int *y) const ; + + // Note: this is virtual, to allow overridden behaviour. virtual bool CreateClient(wxMDIParentFrame *parent, long style = wxVSCROLL | wxHSCROLL); // Explicitly call default scroll behaviour void OnScroll(wxScrollEvent& event); +#if wxUSE_MDI_WIDGETS + inline XsMDICanvas* GetMDICanvas() const { return m_mdiCanvas; } + WXWidget GetTopWidget() const { return m_topWidget; } +#endif + protected: +#if wxUSE_MDI_WIDGETS + XsMDICanvas* m_mdiCanvas; + WXWidget m_topWidget; +#endif + DECLARE_EVENT_TABLE() };