]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/frame.cpp
#ifed wxLog occurrences
[wxWidgets.git] / src / mac / carbon / frame.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: frame.cpp
0d53fc34 3// Purpose: wxFrame
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
d497dca4 26#include "wx/mac/uma.h"
519cb848 27
fe08e597 28extern wxWindowList wxModelessWindows;
e9576ca5
SC
29extern wxList wxPendingDelete;
30
2f1ae414 31#if !USE_SHARED_LIBRARY
0d53fc34
VS
32BEGIN_EVENT_TABLE(wxFrame, wxFrameBase)
33 EVT_ACTIVATE(wxFrame::OnActivate)
34 // EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight)
35 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged)
36// EVT_IDLE(wxFrame::OnIdle)
37// EVT_CLOSE(wxFrame::OnCloseWindow)
e9576ca5
SC
38END_EVENT_TABLE()
39
ac0fa9ef 40IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxTopLevelWindow)
2f1ae414 41#endif
e9576ca5
SC
42
43#if wxUSE_NATIVE_STATUSBAR
0d53fc34 44bool wxFrame::m_useNativeStatusBar = TRUE;
e9576ca5 45#else
0d53fc34 46bool wxFrame::m_useNativeStatusBar = FALSE;
e9576ca5
SC
47#endif
48
2f1ae414
SC
49#define WX_MAC_STATUSBAR_HEIGHT 15
50// ----------------------------------------------------------------------------
51// creation/destruction
52// ----------------------------------------------------------------------------
53
0d53fc34 54void wxFrame::Init()
e9576ca5 55{
0a67a93b
SC
56 m_frameMenuBar = NULL;
57
58#if wxUSE_TOOLBAR
59 m_frameToolBar = NULL ;
60#endif
61 m_frameStatusBar = NULL;
62 m_winLastFocused = NULL ;
63
2f1ae414
SC
64 m_iconized = FALSE;
65
66#if wxUSE_TOOLTIPS
67 m_hwndToolTip = 0;
519cb848 68#endif
2f1ae414 69}
e7549107 70
0d53fc34 71wxPoint wxFrame::GetClientAreaOrigin() const
2f1ae414
SC
72{
73 // on mac we are at position -1,-1 with the control
74 wxPoint pt(0, 0);
75
76#if wxUSE_TOOLBAR
77 if ( GetToolBar() )
78 {
79 int w, h;
80 GetToolBar()->GetSize(& w, & h);
81
82 if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL )
83 {
84 pt.x += w - 1;
85 }
86 else
87 {
88 pt.y += h - 1 ;
89 }
90 }
91#endif // wxUSE_TOOLBAR
92
93 return pt;
e9576ca5
SC
94}
95
0d53fc34 96bool wxFrame::Create(wxWindow *parent,
e9576ca5
SC
97 wxWindowID id,
98 const wxString& title,
99 const wxPoint& pos,
100 const wxSize& size,
101 long style,
102 const wxString& name)
103{
a756f210 104 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
e9576ca5 105
a15eb0a5
SC
106 if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style, name) )
107 return FALSE;
519cb848 108
2f1ae414
SC
109 MacCreateRealWindow( title, pos , size , MacRemoveBordersFromStyle(style) , name ) ;
110
4159f685 111 m_macWindowBackgroundTheme = kThemeBrushDocumentWindowBackground ;
e4086560 112 SetThemeWindowBackground( (WindowRef) m_macWindow , m_macWindowBackgroundTheme , false ) ;
519cb848 113
2f1ae414 114 wxModelessWindows.Append(this);
519cb848 115
519cb848 116 return TRUE;
e9576ca5
SC
117}
118
0d53fc34 119wxFrame::~wxFrame()
e9576ca5 120{
2f1ae414 121 m_isBeingDeleted = TRUE;
e9576ca5 122
2f1ae414 123 DeleteAllBars();
e9576ca5 124
e9576ca5
SC
125}
126
e9576ca5 127
0d53fc34 128bool wxFrame::Enable(bool enable)
e9576ca5 129{
2f1ae414
SC
130 if ( !wxWindow::Enable(enable) )
131 return FALSE;
e9576ca5 132
2f1ae414
SC
133 if ( m_frameMenuBar && m_frameMenuBar == wxMenuBar::MacGetInstalledMenuBar() )
134 {
3340066a
SC
135 int iMaxMenu = m_frameMenuBar->GetMenuCount();
136 for ( int i = 0 ; i < iMaxMenu ; ++ i )
2f1ae414
SC
137 {
138 m_frameMenuBar->EnableTop( i , enable ) ;
139 }
140 }
141
142 return TRUE;
143}
e9576ca5 144
0d53fc34 145wxStatusBar *wxFrame::OnCreateStatusBar(int number, long style, wxWindowID id,
e9576ca5
SC
146 const wxString& name)
147{
148 wxStatusBar *statusBar = NULL;
149
5b781a67
SC
150 statusBar = new wxStatusBar(this, id,
151 style, name);
152 statusBar->SetSize( 100 , 15 ) ;
e9576ca5
SC
153 statusBar->SetFieldsCount(number);
154 return statusBar;
155}
156
0d53fc34 157void wxFrame::PositionStatusBar()
e9576ca5 158{
519cb848
SC
159 if (m_frameStatusBar )
160 {
e9576ca5
SC
161 int w, h;
162 GetClientSize(&w, &h);
163 int sw, sh;
164 m_frameStatusBar->GetSize(&sw, &sh);
165
166 // Since we wish the status bar to be directly under the client area,
167 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
5b781a67 168 m_frameStatusBar->SetSize(0, h, w, sh);
519cb848 169 }
e9576ca5
SC
170}
171
e9576ca5 172// Responds to colour changes, and passes event on to children.
0d53fc34 173void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
e9576ca5 174{
a756f210 175 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
e9576ca5
SC
176 Refresh();
177
178 if ( m_frameStatusBar )
179 {
180 wxSysColourChangedEvent event2;
181 event2.SetEventObject( m_frameStatusBar );
182 m_frameStatusBar->ProcessEvent(event2);
183 }
184
185 // Propagate the event to the non-top-level children
186 wxWindow::OnSysColourChanged(event);
187}
188
e9576ca5
SC
189
190// Default activation behaviour - set the focus for the first child
191// subwindow found.
0d53fc34 192void wxFrame::OnActivate(wxActivateEvent& event)
e9576ca5 193{
2f1ae414 194 if ( !event.GetActive() )
e9576ca5 195 {
a15eb0a5 196 // remember the last focused child if it is our child
7810c95b 197 m_winLastFocused = FindFocus();
a15eb0a5
SC
198
199 // so we NULL it out if it's a child from some other frame
200 wxWindow *win = m_winLastFocused;
201 while ( win )
7810c95b 202 {
a15eb0a5
SC
203 if ( win->IsTopLevel() )
204 {
205 if ( win != this )
206 {
207 m_winLastFocused = NULL;
208 }
209
7810c95b 210 break;
a15eb0a5 211 }
7810c95b 212
a15eb0a5 213 win = win->GetParent();
7810c95b
SC
214 }
215
2f1ae414 216 event.Skip();
e9576ca5 217 }
7810c95b
SC
218 else
219 {
a15eb0a5
SC
220 // restore focus to the child which was last focused
221 wxWindow *parent = m_winLastFocused ? m_winLastFocused->GetParent()
222 : NULL;
223 if ( !parent )
e9576ca5 224 {
a15eb0a5 225 parent = this;
e9576ca5 226 }
a15eb0a5
SC
227
228 wxSetFocusToChild(parent, &m_winLastFocused);
7810c95b
SC
229
230 if ( m_frameMenuBar != NULL )
231 {
232 m_frameMenuBar->MacInstallMenuBar() ;
233 }
2b5f62a0
VZ
234 else if (wxTheApp->GetTopWindow() && wxTheApp->GetTopWindow()->IsKindOf(CLASSINFO(wxFrame)))
235 {
236 // Trying toplevel frame menbar
237 if( ((wxFrame*)wxTheApp->GetTopWindow())->GetMenuBar() )
238 ((wxFrame*)wxTheApp->GetTopWindow())->GetMenuBar()->MacInstallMenuBar();
239 }
7810c95b 240 }
e9576ca5
SC
241}
242
2b5f62a0
VZ
243void wxFrame::DetachMenuBar()
244{
245 if ( m_frameMenuBar )
246 {
247 m_frameMenuBar->UnsetInvokingWindow();
248 }
249
250 wxFrameBase::DetachMenuBar();
251}
252
253void wxFrame::AttachMenuBar( wxMenuBar *menuBar )
254{
255 wxFrameBase::AttachMenuBar(menuBar);
256
257 if (m_frameMenuBar)
258 {
259 m_frameMenuBar->SetInvokingWindow( this );
260 }
261}
262
0d53fc34 263void wxFrame::DoGetClientSize(int *x, int *y) const
e9576ca5 264{
7c74e7fe 265 wxWindow::DoGetClientSize( x , y ) ;
519cb848 266
2f1ae414 267#if wxUSE_STATUSBAR
9453cf2b 268 if ( GetStatusBar() && y )
519cb848
SC
269 {
270 int statusX, statusY;
271 GetStatusBar()->GetClientSize(&statusX, &statusY);
5b781a67 272 *y -= statusY;
519cb848 273 }
2f1ae414 274#endif // wxUSE_STATUSBAR
519cb848
SC
275
276 wxPoint pt(GetClientAreaOrigin());
9453cf2b
SC
277 if ( y )
278 *y -= pt.y;
279 if ( x )
280 *x -= pt.x;
e9576ca5
SC
281}
282
0d53fc34 283void wxFrame::DoSetClientSize(int clientwidth, int clientheight)
e9576ca5 284{
519cb848
SC
285 int currentclientwidth , currentclientheight ;
286 int currentwidth , currentheight ;
287
288 GetClientSize( &currentclientwidth , &currentclientheight ) ;
289 GetSize( &currentwidth , &currentheight ) ;
290
291 // find the current client size
292
293 // Find the difference between the entire window (title bar and all)
294 // and the client area; add this to the new client size to move the
295 // window
296
297 DoSetSize( -1 , -1 , currentwidth + clientwidth - currentclientwidth ,
298 currentheight + clientheight - currentclientheight , wxSIZE_USE_EXISTING ) ;
e9576ca5
SC
299}
300
519cb848
SC
301
302#if wxUSE_TOOLBAR
0d53fc34 303wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name)
e9576ca5 304{
2f1ae414 305 if ( wxFrameBase::CreateToolBar(style, id, name) )
e9576ca5 306 {
e9576ca5 307 PositionToolBar();
e9576ca5 308 }
e9576ca5 309
2f1ae414 310 return m_frameToolBar;
e9576ca5
SC
311}
312
0d53fc34 313void wxFrame::PositionToolBar()
e9576ca5
SC
314{
315 int cw, ch;
316
2f1ae414
SC
317 cw = m_width ;
318 ch = m_height ;
e9576ca5
SC
319
320 if ( GetStatusBar() )
321 {
322 int statusX, statusY;
323 GetStatusBar()->GetClientSize(&statusX, &statusY);
324 ch -= statusY;
325 }
326
327 if (GetToolBar())
328 {
329 int tw, th;
330 GetToolBar()->GetSize(& tw, & th);
331
332 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL)
333 {
334 // Use the 'real' position. wxSIZE_NO_ADJUSTMENTS
335 // means, pretend we don't have toolbar/status bar, so we
336 // have the original client size.
2f1ae414 337 GetToolBar()->SetSize(-1, -1, tw, ch + 2 , wxSIZE_NO_ADJUSTMENTS | wxSIZE_ALLOW_MINUS_ONE );
e9576ca5
SC
338 }
339 else
340 {
341 // Use the 'real' position
2f1ae414 342 GetToolBar()->SetSize(-1, -1, cw + 2, th, wxSIZE_NO_ADJUSTMENTS | wxSIZE_ALLOW_MINUS_ONE );
e9576ca5
SC
343 }
344 }
345}
519cb848 346#endif