]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
f6bcfd97 | 2 | // Name: gtk/mdi.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
58614078 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
f6bcfd97 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifndef __MDIH__ | |
12 | #define __MDIH__ | |
13 | ||
14 | #ifdef __GNUG__ | |
15 | #pragma interface | |
16 | #endif | |
17 | ||
18 | #include "wx/defs.h" | |
19 | #include "wx/object.h" | |
20 | #include "wx/list.h" | |
21 | #include "wx/control.h" | |
22 | #include "wx/panel.h" | |
23 | #include "wx/frame.h" | |
716b7364 | 24 | #include "wx/toolbar.h" |
c801d85f KB |
25 | |
26 | //----------------------------------------------------------------------------- | |
27 | // classes | |
28 | //----------------------------------------------------------------------------- | |
29 | ||
30 | class wxMDIParentFrame; | |
31 | class wxMDIClientWindow; | |
32 | class wxMDIChildFrame; | |
33 | ||
34 | //----------------------------------------------------------------------------- | |
35 | // global data | |
36 | //----------------------------------------------------------------------------- | |
37 | ||
3b90345b OK |
38 | extern const wxChar* wxFrameNameStr; |
39 | extern const wxChar* wxStatusLineNameStr; | |
c801d85f KB |
40 | |
41 | //----------------------------------------------------------------------------- | |
42 | // wxMDIParentFrame | |
43 | //----------------------------------------------------------------------------- | |
44 | ||
45 | class wxMDIParentFrame: public wxFrame | |
46 | { | |
ab2b3dd4 | 47 | public: |
f6bcfd97 BP |
48 | wxMDIParentFrame() { Init(); } |
49 | wxMDIParentFrame(wxWindow *parent, | |
50 | wxWindowID id, | |
51 | const wxString& title, | |
52 | const wxPoint& pos = wxDefaultPosition, | |
53 | const wxSize& size = wxDefaultSize, | |
54 | long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL, | |
55 | const wxString& name = wxFrameNameStr) | |
56 | { | |
57 | Init(); | |
58 | ||
59 | (void)Create(parent, id, title, pos, size, style, name); | |
60 | } | |
61 | ||
40d432c4 | 62 | ~wxMDIParentFrame(); |
8487f887 | 63 | bool Create( wxWindow *parent, |
40d432c4 VZ |
64 | wxWindowID id, |
65 | const wxString& title, | |
66 | const wxPoint& pos = wxDefaultPosition, | |
67 | const wxSize& size = wxDefaultSize, | |
68 | long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL, | |
69 | const wxString& name = wxFrameNameStr ); | |
c801d85f | 70 | |
ab2b3dd4 | 71 | wxMDIChildFrame *GetActiveChild() const; |
f6bcfd97 BP |
72 | |
73 | wxMDIClientWindow *GetClientWindow() const; | |
ab2b3dd4 | 74 | virtual wxMDIClientWindow *OnCreateClient(); |
f6bcfd97 | 75 | |
ab2b3dd4 RR |
76 | virtual void Cascade() {} |
77 | virtual void Tile() {} | |
78 | virtual void ArrangeIcons() {} | |
79 | virtual void ActivateNext(); | |
80 | virtual void ActivatePrevious(); | |
716b7364 | 81 | |
f6bcfd97 | 82 | // implementation |
ab2b3dd4 RR |
83 | |
84 | wxMDIClientWindow *m_clientWindow; | |
85 | bool m_justInserted; | |
86 | ||
716b7364 | 87 | virtual void GtkOnSize( int x, int y, int width, int height ); |
ab2b3dd4 | 88 | virtual void OnInternalIdle(); |
f6bcfd97 BP |
89 | |
90 | protected: | |
91 | void Init(); | |
92 | ||
885df446 VZ |
93 | virtual void DoGetClientSize(int *width, int *height) const; |
94 | ||
8487f887 RR |
95 | private: |
96 | friend class wxMDIChildFrame; | |
f6bcfd97 | 97 | |
8487f887 | 98 | DECLARE_DYNAMIC_CLASS(wxMDIParentFrame) |
c801d85f KB |
99 | }; |
100 | ||
101 | //----------------------------------------------------------------------------- | |
102 | // wxMDIChildFrame | |
103 | //----------------------------------------------------------------------------- | |
104 | ||
cf4219e7 | 105 | class wxMDIChildFrame: public wxFrame |
c801d85f | 106 | { |
8487f887 | 107 | public: |
ab2b3dd4 | 108 | wxMDIChildFrame(); |
c801d85f | 109 | wxMDIChildFrame( wxMDIParentFrame *parent, |
885df446 VZ |
110 | wxWindowID id, |
111 | const wxString& title, | |
112 | const wxPoint& pos = wxDefaultPosition, | |
113 | const wxSize& size = wxDefaultSize, | |
114 | long style = wxDEFAULT_FRAME_STYLE, | |
115 | const wxString& name = wxFrameNameStr ); | |
116 | ||
117 | virtual ~wxMDIChildFrame(); | |
c801d85f | 118 | bool Create( wxMDIParentFrame *parent, |
885df446 VZ |
119 | wxWindowID id, |
120 | const wxString& title, | |
121 | const wxPoint& pos = wxDefaultPosition, | |
122 | const wxSize& size = wxDefaultSize, | |
123 | long style = wxDEFAULT_FRAME_STYLE, | |
124 | const wxString& name = wxFrameNameStr ); | |
f6bcfd97 | 125 | |
8487f887 RR |
126 | virtual void SetMenuBar( wxMenuBar *menu_bar ); |
127 | virtual wxMenuBar *GetMenuBar() const; | |
c801d85f | 128 | |
8487f887 | 129 | virtual void AddChild( wxWindowBase *child ); |
debe6624 | 130 | |
8487f887 | 131 | virtual void Activate(); |
f6bcfd97 | 132 | |
dcf924a3 | 133 | #if wxUSE_STATUSBAR |
cf4219e7 | 134 | // no status bars |
8487f887 | 135 | virtual wxStatusBar* CreateStatusBar( int WXUNUSED(number) = 1, |
f6bcfd97 | 136 | long WXUNUSED(style) = 1, |
e90c1d2a VZ |
137 | wxWindowID WXUNUSED(id) = 1, |
138 | const wxString& WXUNUSED(name) = wxEmptyString) | |
8487f887 | 139 | { return (wxStatusBar*)NULL; } |
e90c1d2a | 140 | |
8487f887 RR |
141 | virtual wxStatusBar *GetStatusBar() const { return (wxStatusBar*)NULL; } |
142 | virtual void SetStatusText( const wxString &WXUNUSED(text), int WXUNUSED(number)=0 ) {} | |
143 | virtual void SetStatusWidths( int WXUNUSED(n), const int WXUNUSED(widths_field)[] ) {} | |
dcf924a3 | 144 | #endif |
cf4219e7 RR |
145 | |
146 | // no size hints | |
4f9db74e VZ |
147 | virtual void SetSizeHints( int WXUNUSED(minW), |
148 | int WXUNUSED(minH), | |
149 | int WXUNUSED(maxW) = -1, | |
150 | int WXUNUSED(maxH) = -1, | |
151 | int WXUNUSED(incW) = -1, | |
152 | int WXUNUSED(incH) = -1) {} | |
f6bcfd97 | 153 | |
dcf924a3 | 154 | #if wxUSE_TOOLBAR |
cf4219e7 | 155 | // no toolbar bars |
885df446 VZ |
156 | virtual wxToolBar* CreateToolBar( long WXUNUSED(style), |
157 | wxWindowID WXUNUSED(id), | |
158 | const wxString& WXUNUSED(name) ) | |
159 | { return (wxToolBar*)NULL; } | |
8487f887 | 160 | virtual wxToolBar *GetToolBar() const { return (wxToolBar*)NULL; } |
dcf924a3 | 161 | #endif |
f6bcfd97 | 162 | |
cf4219e7 | 163 | // no icon |
f618020a MB |
164 | void SetIcon( const wxIcon &icon ) { m_icons = wxIconBundle( icon ); } |
165 | void SetIcons( const wxIconBundle &icons ) { m_icons = icons; } | |
f6bcfd97 BP |
166 | |
167 | // no title | |
168 | void SetTitle( const wxString &title ); | |
8487f887 | 169 | wxString GetTitle() const { return m_title; } |
f6bcfd97 | 170 | |
cf4219e7 | 171 | // no maximize etc |
8487f887 RR |
172 | virtual void Maximize( bool WXUNUSED(maximize) ) {} |
173 | virtual void Restore() {} | |
f6bcfd97 | 174 | |
8487f887 | 175 | virtual bool IsTopLevel() const { return FALSE; } |
f6bcfd97 BP |
176 | |
177 | void OnActivate( wxActivateEvent& event ); | |
178 | void OnMenuHighlight( wxMenuEvent& event ); | |
179 | ||
180 | // implementation | |
181 | ||
716b7364 | 182 | wxMenuBar *m_menuBar; |
716b7364 | 183 | GtkNotebookPage *m_page; |
ab2b3dd4 | 184 | bool m_justInserted; |
f6bcfd97 | 185 | |
885df446 VZ |
186 | protected: |
187 | virtual void DoGetClientSize( int *width, int *height ) const; | |
188 | ||
8487f887 | 189 | private: |
f6bcfd97 | 190 | DECLARE_EVENT_TABLE() |
8487f887 | 191 | DECLARE_DYNAMIC_CLASS(wxMDIChildFrame) |
c801d85f KB |
192 | }; |
193 | ||
194 | //----------------------------------------------------------------------------- | |
195 | // wxMDIClientWindow | |
196 | //----------------------------------------------------------------------------- | |
197 | ||
198 | class wxMDIClientWindow: public wxWindow | |
199 | { | |
ab2b3dd4 | 200 | public: |
fd9811b1 | 201 | wxMDIClientWindow(); |
debe6624 | 202 | wxMDIClientWindow( wxMDIParentFrame *parent, long style = 0 ); |
fd9811b1 | 203 | ~wxMDIClientWindow(); |
debe6624 | 204 | virtual bool CreateClient( wxMDIParentFrame *parent, long style = wxVSCROLL | wxHSCROLL ); |
8487f887 RR |
205 | |
206 | private: | |
207 | DECLARE_DYNAMIC_CLASS(wxMDIClientWindow) | |
c801d85f KB |
208 | }; |
209 | ||
210 | #endif // __MDIH__ | |
211 |