/////////////////////////////////////////////////////////////////////////////
// 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
class WXDLLEXPORT wxMDIClientWindow;
class WXDLLEXPORT wxMDIChildFrame;
+#if wxUSE_MDI_WIDGETS
+class XsMDICanvas;
+class wxXsMDIWindow;
+#endif
+
class WXDLLEXPORT wxMDIParentFrame: public wxFrame
{
DECLARE_DYNAMIC_CLASS(wxMDIParentFrame)
// 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
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()
};
// 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
~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()
};