]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/mdi.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
19 #include "wx/object.h"
21 #include "wx/control.h"
24 #include "wx/toolbar.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 class wxMDIParentFrame
;
31 class wxMDIClientWindow
;
32 class wxMDIChildFrame
;
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 extern const char* wxFrameNameStr
;
39 extern const char* wxStatusLineNameStr
;
41 //-----------------------------------------------------------------------------
43 //-----------------------------------------------------------------------------
45 class wxMDIParentFrame
: public wxFrame
47 DECLARE_DYNAMIC_CLASS(wxMDIParentFrame
)
49 friend class wxMDIChildFrame
;
53 wxMDIParentFrame(void);
54 wxMDIParentFrame( wxWindow
*parent
,
55 wxWindowID id
, const wxString
& title
,
56 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
57 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
58 const wxString
& name
= wxFrameNameStr
);
59 ~wxMDIParentFrame(void);
60 bool Create( wxWindow
*parent
,
61 wxWindowID id
, const wxString
& title
,
62 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
63 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
64 const wxString
& name
= wxFrameNameStr
);
67 void GetClientSize(int *width
, int *height
) const;
68 wxMDIChildFrame
*GetActiveChild(void) const;
70 wxMDIClientWindow
*GetClientWindow(void) const;
71 virtual wxMDIClientWindow
*OnCreateClient(void);
73 virtual void Cascade(void) {};
74 virtual void Tile(void) {};
75 virtual void ArrangeIcons(void) {};
76 virtual void ActivateNext(void);
77 virtual void ActivatePrevious(void);
79 void OnActivate( wxActivateEvent
& event
);
80 void OnSysColourChanged( wxSysColourChangedEvent
& event
);
84 wxMDIChildFrame
*m_currentChild
;
86 void SetMDIMenuBar( wxMenuBar
*menu_bar
);
87 virtual void GtkOnSize( int x
, int y
, int width
, int height
);
91 wxMDIClientWindow
*m_clientWindow
;
92 bool m_parentFrameActive
;
97 //-----------------------------------------------------------------------------
99 //-----------------------------------------------------------------------------
101 class wxMDIChildFrame
: public wxFrame
103 DECLARE_DYNAMIC_CLASS(wxMDIChildFrame
)
107 wxMDIChildFrame(void);
108 wxMDIChildFrame( wxMDIParentFrame
*parent
,
109 wxWindowID id
, const wxString
& title
,
110 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
111 long style
= wxDEFAULT_FRAME_STYLE
, const wxString
& name
= wxFrameNameStr
);
112 ~wxMDIChildFrame(void);
113 bool Create( wxMDIParentFrame
*parent
,
114 wxWindowID id
, const wxString
& title
,
115 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
116 long style
= wxDEFAULT_FRAME_STYLE
, const wxString
& name
= wxFrameNameStr
);
118 virtual void SetMenuBar( wxMenuBar
*menu_bar
);
119 virtual wxMenuBar
*GetMenuBar();
121 virtual void GetClientSize( int *width
, int *height
) const;
122 virtual void AddChild( wxWindow
*child
);
124 virtual void Activate(void);
127 virtual wxStatusBar
* CreateStatusBar( int WXUNUSED(number
)=1, long WXUNUSED(style
)=1,
128 wxWindowID
WXUNUSED(id
)=1, const wxString
& WXUNUSED(name
)=WXSTRINGCAST NULL
) {return (wxStatusBar
*)NULL
; }
129 virtual wxStatusBar
*GetStatusBar() { return (wxStatusBar
*)NULL
; }
130 virtual void SetStatusText( const wxString
&WXUNUSED(text
), int WXUNUSED(number
) ) {}
131 virtual void SetStatusWidths( int WXUNUSED(n
), int *WXUNUSED(width
) ) {}
134 virtual void SetSizeHints( int WXUNUSED(minW
), int WXUNUSED(minH
), int WXUNUSED(maxW
),
135 int WXUNUSED(maxH
), int WXUNUSED(incW
) ) {}
138 virtual wxToolBar
* CreateToolBar( long WXUNUSED(style
), wxWindowID
WXUNUSED(id
),
139 const wxString
& WXUNUSED(name
) ) { return (wxToolBar
*)NULL
; }
140 virtual wxToolBar
*GetToolBar() { return (wxToolBar
*)NULL
; }
143 void SetIcon( const wxIcon
&icon
) { m_icon
= icon
; }
146 void SetTitle( const wxString
&title
) { m_title
= title
; }
147 wxString
GetTitle() const { return m_title
; }
150 virtual void Maximize(void) {}
151 virtual void Restore(void) {}
153 void OnActivate( wxActivateEvent
&event
);
157 wxMenuBar
*m_menuBar
;
161 GtkNotebookPage
*m_page
;
163 DECLARE_EVENT_TABLE()
166 //-----------------------------------------------------------------------------
168 //-----------------------------------------------------------------------------
170 class wxMDIClientWindow
: public wxWindow
172 DECLARE_DYNAMIC_CLASS(wxMDIClientWindow
)
176 wxMDIClientWindow(void);
177 wxMDIClientWindow( wxMDIParentFrame
*parent
, long style
= 0 );
178 ~wxMDIClientWindow(void);
179 virtual bool CreateClient( wxMDIParentFrame
*parent
, long style
= wxVSCROLL
| wxHSCROLL
);