]>
Commit | Line | Data |
---|---|---|
e9576ca5 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: frame.cpp | |
e766c8a9 | 3 | // Purpose: wxFrameMac |
e9576ca5 SC |
4 | // Author: AUTHOR |
5 | // Modified by: | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "frame.h" | |
14 | #endif | |
15 | ||
16 | #include "wx/frame.h" | |
03e11df5 | 17 | #include "wx/statusbr.h" |
e9576ca5 SC |
18 | #include "wx/toolbar.h" |
19 | #include "wx/menuitem.h" | |
20 | #include "wx/menu.h" | |
21 | #include "wx/dcclient.h" | |
22 | #include "wx/dialog.h" | |
23 | #include "wx/settings.h" | |
24 | #include "wx/app.h" | |
25 | ||
519cb848 SC |
26 | #include <wx/mac/uma.h> |
27 | ||
e9576ca5 SC |
28 | extern wxList wxModelessWindows; |
29 | extern wxList wxPendingDelete; | |
30 | ||
2f1ae414 | 31 | #if !USE_SHARED_LIBRARY |
e766c8a9 SC |
32 | BEGIN_EVENT_TABLE(wxFrameMac, wxFrameBase) |
33 | // EVT_SIZE(wxFrameMac::OnSize) | |
34 | EVT_ACTIVATE(wxFrameMac::OnActivate) | |
35 | // EVT_MENU_HIGHLIGHT_ALL(wxFrameMac::OnMenuHighlight) | |
36 | EVT_SYS_COLOUR_CHANGED(wxFrameMac::OnSysColourChanged) | |
37 | // EVT_IDLE(wxFrameMac::OnIdle) | |
38 | // EVT_CLOSE(wxFrameMac::OnCloseWindow) | |
e9576ca5 SC |
39 | END_EVENT_TABLE() |
40 | ||
e766c8a9 SC |
41 | IMPLEMENT_DYNAMIC_CLASS(wxFrameMac, wxWindow) |
42 | #endif | |
43 | #ifndef __WXUNIVERSAL__ | |
44 | IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxFrameMac) | |
2f1ae414 | 45 | #endif |
e9576ca5 SC |
46 | |
47 | #if wxUSE_NATIVE_STATUSBAR | |
e766c8a9 | 48 | bool wxFrameMac::m_useNativeStatusBar = TRUE; |
e9576ca5 | 49 | #else |
e766c8a9 | 50 | bool wxFrameMac::m_useNativeStatusBar = FALSE; |
e9576ca5 SC |
51 | #endif |
52 | ||
2f1ae414 SC |
53 | #define WX_MAC_STATUSBAR_HEIGHT 15 |
54 | // ---------------------------------------------------------------------------- | |
55 | // creation/destruction | |
56 | // ---------------------------------------------------------------------------- | |
57 | ||
e766c8a9 | 58 | void wxFrameMac::Init() |
e9576ca5 | 59 | { |
0a67a93b SC |
60 | m_frameMenuBar = NULL; |
61 | ||
62 | #if wxUSE_TOOLBAR | |
63 | m_frameToolBar = NULL ; | |
64 | #endif | |
65 | m_frameStatusBar = NULL; | |
66 | m_winLastFocused = NULL ; | |
67 | ||
2f1ae414 SC |
68 | m_iconized = FALSE; |
69 | ||
70 | #if wxUSE_TOOLTIPS | |
71 | m_hwndToolTip = 0; | |
519cb848 | 72 | #endif |
2f1ae414 | 73 | } |
e7549107 | 74 | |
e766c8a9 | 75 | wxPoint wxFrameMac::GetClientAreaOrigin() const |
2f1ae414 SC |
76 | { |
77 | // on mac we are at position -1,-1 with the control | |
78 | wxPoint pt(0, 0); | |
79 | ||
80 | #if wxUSE_TOOLBAR | |
81 | if ( GetToolBar() ) | |
82 | { | |
83 | int w, h; | |
84 | GetToolBar()->GetSize(& w, & h); | |
85 | ||
86 | if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL ) | |
87 | { | |
88 | pt.x += w - 1; | |
89 | } | |
90 | else | |
91 | { | |
92 | pt.y += h - 1 ; | |
93 | } | |
94 | } | |
95 | #endif // wxUSE_TOOLBAR | |
96 | ||
97 | return pt; | |
e9576ca5 SC |
98 | } |
99 | ||
e766c8a9 | 100 | bool wxFrameMac::Create(wxWindow *parent, |
e9576ca5 SC |
101 | wxWindowID id, |
102 | const wxString& title, | |
103 | const wxPoint& pos, | |
104 | const wxSize& size, | |
105 | long style, | |
106 | const wxString& name) | |
107 | { | |
e9576ca5 SC |
108 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE)); |
109 | ||
110 | if ( id > -1 ) | |
111 | m_windowId = id; | |
112 | else | |
113 | m_windowId = (int)NewControlId(); | |
114 | ||
115 | if (parent) parent->AddChild(this); | |
116 | ||
2f1ae414 SC |
117 | if (!parent) |
118 | wxTopLevelWindows.Append(this); | |
519cb848 | 119 | |
2f1ae414 SC |
120 | MacCreateRealWindow( title, pos , size , MacRemoveBordersFromStyle(style) , name ) ; |
121 | ||
122 | m_macWindowData->m_macWindowBackgroundTheme = kThemeBrushDocumentWindowBackground ; | |
519cb848 | 123 | |
2f1ae414 | 124 | wxModelessWindows.Append(this); |
519cb848 | 125 | |
519cb848 | 126 | return TRUE; |
e9576ca5 SC |
127 | } |
128 | ||
e766c8a9 | 129 | wxFrameMac::~wxFrameMac() |
e9576ca5 | 130 | { |
2f1ae414 | 131 | m_isBeingDeleted = TRUE; |
e9576ca5 SC |
132 | wxTopLevelWindows.DeleteObject(this); |
133 | ||
2f1ae414 | 134 | DeleteAllBars(); |
e9576ca5 SC |
135 | |
136 | /* Check if it's the last top-level window */ | |
137 | ||
138 | if (wxTheApp && (wxTopLevelWindows.Number() == 0)) | |
139 | { | |
140 | wxTheApp->SetTopWindow(NULL); | |
141 | ||
142 | if (wxTheApp->GetExitOnFrameDelete()) | |
143 | { | |
519cb848 | 144 | wxTheApp->ExitMainLoop() ; |
e9576ca5 SC |
145 | } |
146 | } | |
147 | ||
148 | wxModelessWindows.DeleteObject(this); | |
149 | } | |
150 | ||
e9576ca5 | 151 | |
e766c8a9 | 152 | bool wxFrameMac::Enable(bool enable) |
e9576ca5 | 153 | { |
2f1ae414 SC |
154 | if ( !wxWindow::Enable(enable) ) |
155 | return FALSE; | |
e9576ca5 | 156 | |
2f1ae414 SC |
157 | if ( m_frameMenuBar && m_frameMenuBar == wxMenuBar::MacGetInstalledMenuBar() ) |
158 | { | |
159 | for ( int i = 0 ; i < m_frameMenuBar->GetMenuCount() ; ++ i ) | |
160 | { | |
161 | m_frameMenuBar->EnableTop( i , enable ) ; | |
162 | } | |
163 | } | |
164 | ||
165 | return TRUE; | |
166 | } | |
e9576ca5 | 167 | // Equivalent to maximize/restore in Windows |
e766c8a9 | 168 | void wxFrameMac::Maximize(bool maximize) |
e9576ca5 SC |
169 | { |
170 | // TODO | |
171 | } | |
172 | ||
e766c8a9 | 173 | bool wxFrameMac::IsIconized() const |
e9576ca5 SC |
174 | { |
175 | // TODO | |
176 | return FALSE; | |
177 | } | |
178 | ||
e766c8a9 | 179 | void wxFrameMac::Iconize(bool iconize) |
2f1ae414 SC |
180 | { |
181 | // TODO | |
182 | } | |
183 | ||
e9576ca5 | 184 | // Is the frame maximized? |
e766c8a9 | 185 | bool wxFrameMac::IsMaximized(void) const |
e9576ca5 SC |
186 | { |
187 | // TODO | |
188 | return FALSE; | |
189 | } | |
190 | ||
e766c8a9 | 191 | void wxFrameMac::Restore() |
2f1ae414 SC |
192 | { |
193 | // TODO | |
194 | } | |
195 | ||
e766c8a9 | 196 | void wxFrameMac::SetIcon(const wxIcon& icon) |
e9576ca5 | 197 | { |
2f1ae414 | 198 | wxFrameBase::SetIcon(icon); |
e9576ca5 SC |
199 | } |
200 | ||
e766c8a9 | 201 | wxStatusBar *wxFrameMac::OnCreateStatusBar(int number, long style, wxWindowID id, |
e9576ca5 SC |
202 | const wxString& name) |
203 | { | |
204 | wxStatusBar *statusBar = NULL; | |
205 | ||
5b781a67 SC |
206 | statusBar = new wxStatusBar(this, id, |
207 | style, name); | |
208 | statusBar->SetSize( 100 , 15 ) ; | |
e9576ca5 SC |
209 | statusBar->SetFieldsCount(number); |
210 | return statusBar; | |
211 | } | |
212 | ||
e766c8a9 | 213 | void wxFrameMac::PositionStatusBar() |
e9576ca5 | 214 | { |
519cb848 SC |
215 | if (m_frameStatusBar ) |
216 | { | |
e9576ca5 SC |
217 | int w, h; |
218 | GetClientSize(&w, &h); | |
219 | int sw, sh; | |
220 | m_frameStatusBar->GetSize(&sw, &sh); | |
221 | ||
222 | // Since we wish the status bar to be directly under the client area, | |
223 | // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS. | |
5b781a67 | 224 | m_frameStatusBar->SetSize(0, h, w, sh); |
519cb848 | 225 | } |
e9576ca5 SC |
226 | } |
227 | ||
e9576ca5 | 228 | // Responds to colour changes, and passes event on to children. |
e766c8a9 | 229 | void wxFrameMac::OnSysColourChanged(wxSysColourChangedEvent& event) |
e9576ca5 SC |
230 | { |
231 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE)); | |
232 | Refresh(); | |
233 | ||
234 | if ( m_frameStatusBar ) | |
235 | { | |
236 | wxSysColourChangedEvent event2; | |
237 | event2.SetEventObject( m_frameStatusBar ); | |
238 | m_frameStatusBar->ProcessEvent(event2); | |
239 | } | |
240 | ||
241 | // Propagate the event to the non-top-level children | |
242 | wxWindow::OnSysColourChanged(event); | |
243 | } | |
244 | ||
e9576ca5 SC |
245 | |
246 | // Default activation behaviour - set the focus for the first child | |
247 | // subwindow found. | |
e766c8a9 | 248 | void wxFrameMac::OnActivate(wxActivateEvent& event) |
e9576ca5 | 249 | { |
2f1ae414 | 250 | if ( !event.GetActive() ) |
e9576ca5 | 251 | { |
7810c95b SC |
252 | // remember the last focused child |
253 | m_winLastFocused = FindFocus(); | |
254 | while ( m_winLastFocused ) | |
255 | { | |
256 | if ( GetChildren().Find(m_winLastFocused) ) | |
257 | break; | |
258 | ||
259 | m_winLastFocused = m_winLastFocused->GetParent(); | |
260 | } | |
261 | ||
2f1ae414 | 262 | event.Skip(); |
e9576ca5 | 263 | } |
7810c95b SC |
264 | else |
265 | { | |
266 | /* | |
2f1ae414 SC |
267 | for ( wxWindowList::Node *node = GetChildren().GetFirst(); |
268 | node; | |
269 | node = node->GetNext() ) | |
e9576ca5 | 270 | { |
2f1ae414 SC |
271 | // FIXME all this is totally bogus - we need to do the same as wxPanel, |
272 | // but how to do it without duplicating the code? | |
e9576ca5 | 273 | |
2f1ae414 SC |
274 | // restore focus |
275 | wxWindow *child = node->GetData(); | |
e9576ca5 | 276 | |
7810c95b | 277 | if ( !child->IsTopLevel() && child->AcceptsFocus() |
519cb848 | 278 | #if wxUSE_TOOLBAR |
2f1ae414 SC |
279 | && !wxDynamicCast(child, wxToolBar) |
280 | #endif // wxUSE_TOOLBAR | |
281 | #if wxUSE_STATUSBAR | |
282 | && !wxDynamicCast(child, wxStatusBar) | |
283 | #endif // wxUSE_STATUSBAR | |
284 | ) | |
e9576ca5 | 285 | { |
2f1ae414 | 286 | child->SetFocus(); |
41f38f4d | 287 | break; |
e9576ca5 SC |
288 | } |
289 | } | |
7810c95b SC |
290 | */ |
291 | wxSetFocusToChild(this, &m_winLastFocused); | |
292 | ||
293 | if ( m_frameMenuBar != NULL ) | |
294 | { | |
295 | m_frameMenuBar->MacInstallMenuBar() ; | |
296 | } | |
297 | } | |
e9576ca5 SC |
298 | } |
299 | ||
e766c8a9 | 300 | void wxFrameMac::DoGetClientSize(int *x, int *y) const |
e9576ca5 | 301 | { |
7c74e7fe | 302 | wxWindow::DoGetClientSize( x , y ) ; |
519cb848 | 303 | |
2f1ae414 | 304 | #if wxUSE_STATUSBAR |
9453cf2b | 305 | if ( GetStatusBar() && y ) |
519cb848 SC |
306 | { |
307 | int statusX, statusY; | |
308 | GetStatusBar()->GetClientSize(&statusX, &statusY); | |
5b781a67 | 309 | *y -= statusY; |
519cb848 | 310 | } |
2f1ae414 | 311 | #endif // wxUSE_STATUSBAR |
519cb848 SC |
312 | |
313 | wxPoint pt(GetClientAreaOrigin()); | |
9453cf2b SC |
314 | if ( y ) |
315 | *y -= pt.y; | |
316 | if ( x ) | |
317 | *x -= pt.x; | |
e9576ca5 SC |
318 | } |
319 | ||
e766c8a9 | 320 | void wxFrameMac::DoSetClientSize(int clientwidth, int clientheight) |
e9576ca5 | 321 | { |
519cb848 SC |
322 | int currentclientwidth , currentclientheight ; |
323 | int currentwidth , currentheight ; | |
324 | ||
325 | GetClientSize( ¤tclientwidth , ¤tclientheight ) ; | |
326 | GetSize( ¤twidth , ¤theight ) ; | |
327 | ||
328 | // find the current client size | |
329 | ||
330 | // Find the difference between the entire window (title bar and all) | |
331 | // and the client area; add this to the new client size to move the | |
332 | // window | |
333 | ||
334 | DoSetSize( -1 , -1 , currentwidth + clientwidth - currentclientwidth , | |
335 | currentheight + clientheight - currentclientheight , wxSIZE_USE_EXISTING ) ; | |
e9576ca5 SC |
336 | } |
337 | ||
519cb848 SC |
338 | |
339 | #if wxUSE_TOOLBAR | |
e766c8a9 | 340 | wxToolBar* wxFrameMac::CreateToolBar(long style, wxWindowID id, const wxString& name) |
e9576ca5 | 341 | { |
2f1ae414 | 342 | if ( wxFrameBase::CreateToolBar(style, id, name) ) |
e9576ca5 | 343 | { |
e9576ca5 | 344 | PositionToolBar(); |
e9576ca5 | 345 | } |
e9576ca5 | 346 | |
2f1ae414 | 347 | return m_frameToolBar; |
e9576ca5 SC |
348 | } |
349 | ||
e766c8a9 | 350 | void wxFrameMac::PositionToolBar() |
e9576ca5 SC |
351 | { |
352 | int cw, ch; | |
353 | ||
2f1ae414 SC |
354 | cw = m_width ; |
355 | ch = m_height ; | |
e9576ca5 SC |
356 | |
357 | if ( GetStatusBar() ) | |
358 | { | |
359 | int statusX, statusY; | |
360 | GetStatusBar()->GetClientSize(&statusX, &statusY); | |
361 | ch -= statusY; | |
362 | } | |
363 | ||
364 | if (GetToolBar()) | |
365 | { | |
366 | int tw, th; | |
367 | GetToolBar()->GetSize(& tw, & th); | |
368 | ||
369 | if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL) | |
370 | { | |
371 | // Use the 'real' position. wxSIZE_NO_ADJUSTMENTS | |
372 | // means, pretend we don't have toolbar/status bar, so we | |
373 | // have the original client size. | |
2f1ae414 | 374 | GetToolBar()->SetSize(-1, -1, tw, ch + 2 , wxSIZE_NO_ADJUSTMENTS | wxSIZE_ALLOW_MINUS_ONE ); |
e9576ca5 SC |
375 | } |
376 | else | |
377 | { | |
378 | // Use the 'real' position | |
2f1ae414 | 379 | GetToolBar()->SetSize(-1, -1, cw + 2, th, wxSIZE_NO_ADJUSTMENTS | wxSIZE_ALLOW_MINUS_ONE ); |
e9576ca5 SC |
380 | } |
381 | } | |
382 | } | |
519cb848 | 383 | #endif |