]>
Commit | Line | Data |
---|---|---|
fb896a32 | 1 | ///////////////////////////////////////////////////////////////////////////// |
76b49cf4 | 2 | // Name: src/cocoa/frame.mm |
fb896a32 DE |
3 | // Purpose: wxFrame |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2003/03/16 | |
1c4e8f38 | 7 | // RCS-ID: $Id$ |
fb896a32 | 8 | // Copyright: (c) 2003 David Elliott |
526954c5 | 9 | // Licence: wxWindows licence |
fb896a32 DE |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
26785f01 | 12 | #include "wx/wxprec.h" |
76b49cf4 WS |
13 | |
14 | #include "wx/frame.h" | |
15 | ||
26785f01 DE |
16 | #ifndef WX_PRECOMP |
17 | #include "wx/log.h" | |
18 | #include "wx/app.h" | |
26785f01 DE |
19 | #include "wx/menu.h" |
20 | #include "wx/toolbar.h" | |
21 | #include "wx/statusbr.h" | |
22 | #endif // WX_PRECOMP | |
23 | ||
7fc77f30 | 24 | #include "wx/cocoa/autorelease.h" |
24c7767f | 25 | #include "wx/cocoa/mbarman.h" |
7fc77f30 | 26 | |
fb896a32 DE |
27 | #import <AppKit/NSWindow.h> |
28 | #import <AppKit/NSApplication.h> | |
448cbf1d | 29 | #import <AppKit/NSView.h> |
205fef01 | 30 | #import <AppKit/NSMenuItem.h> |
fb896a32 DE |
31 | |
32 | // wxFrame | |
33 | ||
34 | BEGIN_EVENT_TABLE(wxFrame, wxFrameBase) | |
35 | END_EVENT_TABLE() | |
36 | ||
fb896a32 DE |
37 | void wxFrame::Init() |
38 | { | |
448cbf1d | 39 | m_frameNSView = nil; |
fb896a32 DE |
40 | } |
41 | ||
42 | bool wxFrame::Create(wxWindow *parent, | |
43 | wxWindowID winid, | |
44 | const wxString& title, | |
45 | const wxPoint& pos, | |
46 | const wxSize& size, | |
47 | long style, | |
48 | const wxString& name) | |
49 | { | |
50 | bool rt = wxTopLevelWindow::Create(parent,winid,title,pos,size,style,name); | |
51 | ||
52 | return rt; | |
53 | } | |
54 | ||
55 | wxFrame::~wxFrame() | |
56 | { | |
448cbf1d | 57 | [m_frameNSView release]; |
fb896a32 DE |
58 | } |
59 | ||
205fef01 DE |
60 | // ------------------------------------------------------------------- |
61 | // Menubar | |
fb896a32 DE |
62 | void wxFrame::AttachMenuBar(wxMenuBar *mbar) |
63 | { | |
64 | wxFrameBase::AttachMenuBar(mbar); | |
243f5c2d | 65 | wxMenuBarManager::GetInstance()->UpdateMenuBar(); |
fb896a32 DE |
66 | } |
67 | ||
68 | void wxFrame::DetachMenuBar() | |
69 | { | |
fb896a32 | 70 | wxFrameBase::DetachMenuBar(); |
243f5c2d | 71 | wxMenuBarManager::GetInstance()->UpdateMenuBar(); |
fb896a32 DE |
72 | } |
73 | ||
24c7767f | 74 | void wxFrame::SetMenuBar(wxMenuBar *menubar) |
fb896a32 | 75 | { |
24c7767f DE |
76 | if ( menubar == GetMenuBar() ) |
77 | { | |
78 | // nothing to do | |
79 | return; | |
80 | } | |
81 | ||
82 | wxFrameBase::DetachMenuBar(); | |
83 | wxFrameBase::AttachMenuBar(menubar); | |
243f5c2d | 84 | wxMenuBarManager::GetInstance()->UpdateMenuBar(); |
fb896a32 DE |
85 | } |
86 | ||
8ded703d | 87 | wxMenuBar* wxFrame::GetAppMenuBar(wxCocoaNSWindow *win) |
3e84f98f DE |
88 | { |
89 | if(GetMenuBar()) | |
90 | return GetMenuBar(); | |
8ded703d | 91 | return wxFrameBase::GetAppMenuBar(win); |
3e84f98f DE |
92 | } |
93 | ||
205fef01 DE |
94 | void wxFrame::CocoaDelegate_wxMenuItemAction(WX_NSMenuItem menuItem) |
95 | { | |
96 | wxLogTrace(wxTRACE_COCOA,wxT("wxFrame::wxMenuItemAction")); | |
97 | wxMenuItem *item = wxMenuItem::GetFromCocoa(menuItem); | |
98 | wxCHECK_RET(item,wxT("wxMenuItemAction received but no wxMenuItem exists!")); | |
99 | ||
100 | wxMenu *menu = item->GetMenu(); | |
101 | wxCHECK_RET(menu,wxT("wxMenuItemAction received but wxMenuItem is not in a wxMenu!")); | |
102 | ||
103 | // Since we're handling the delegate messages there's a very good chance | |
104 | // we'll receive a menu action from an item with a nil target. | |
105 | wxMenuBar *menubar = menu->GetMenuBar(); | |
106 | if(menubar) | |
107 | { | |
108 | wxFrame *frame = menubar->GetFrame(); | |
109 | wxASSERT_MSG(frame==this, wxT("Received wxMenuItemAction in NSWindow delegate from a menu item attached to a different frame.")); | |
110 | frame->ProcessCommand(item->GetId()); | |
111 | } | |
112 | else | |
113 | wxLogDebug(wxT("Received wxMenuItemAction in NSWindow delegate from an unknown menu item.")); | |
114 | } | |
115 | ||
116 | bool wxFrame::CocoaDelegate_validateMenuItem(WX_NSMenuItem menuItem) | |
117 | { | |
118 | SEL itemAction = [menuItem action]; | |
119 | if(itemAction == @selector(wxMenuItemAction:)) | |
120 | { | |
121 | wxMenuItem *item = wxMenuItem::GetFromCocoa(menuItem); | |
122 | wxCHECK_MSG(item,false,wxT("validateMenuItem received but no wxMenuItem exists!")); | |
123 | // TODO: do more sanity checking | |
124 | return item->IsEnabled(); | |
125 | } | |
126 | // TODO: else if cut/copy/paste | |
127 | wxLogDebug(wxT("Asked to validate an unknown menu item")); | |
128 | return false; | |
129 | } | |
130 | ||
131 | // ------------------------------------------------------------------- | |
132 | // Origin/Size | |
fb896a32 DE |
133 | wxPoint wxFrame::GetClientAreaOrigin() const |
134 | { | |
135 | return wxPoint(0,0); | |
136 | } | |
137 | ||
e08efb8d | 138 | void wxFrame::CocoaSetWxWindowSize(int width, int height) |
a58a6614 | 139 | { |
e08efb8d | 140 | if(m_frameStatusBar) |
a58a6614 | 141 | height += m_frameStatusBar->GetSize().y; |
26785f01 | 142 | #if wxUSE_TOOLBAR |
e08efb8d DE |
143 | if(m_frameToolBar) |
144 | height += m_frameToolBar->GetSize().y; | |
26785f01 | 145 | #endif //wxUSE_TOOLBAR |
e08efb8d | 146 | wxTopLevelWindow::CocoaSetWxWindowSize(width,height); |
a58a6614 DE |
147 | } |
148 | ||
205fef01 | 149 | // ------------------------------------------------------------------- |
514e7b7b DE |
150 | WX_NSView wxFrame::GetNonClientNSView() |
151 | { | |
152 | if(m_frameNSView) | |
153 | return m_frameNSView; | |
154 | return GetNSViewForSuperview(); | |
155 | } | |
156 | ||
448cbf1d DE |
157 | void wxFrame::CocoaReplaceView(WX_NSView oldView, WX_NSView newView) |
158 | { | |
159 | // If we have the additional toolbar/statbar view, then the | |
160 | // default replaceSubview will work. Otherwise, the old view | |
161 | // should be the content view and should be replaced that way | |
162 | if(m_frameNSView) | |
163 | wxWindow::CocoaReplaceView(oldView, newView); | |
164 | else | |
165 | wxTopLevelWindow::CocoaReplaceView(oldView, newView); | |
166 | } | |
167 | ||
168 | void wxFrame::UpdateFrameNSView() | |
169 | { | |
170 | if(!m_frameNSView) | |
829a2e95 | 171 | { // NOTE: We only need a plain NSView here since we don't associate it with ourselves. |
448cbf1d DE |
172 | m_frameNSView = [[NSView alloc] initWithFrame:[[m_cocoaNSWindow contentView] frame]]; |
173 | [m_cocoaNSWindow setContentView: m_frameNSView]; | |
174 | [m_frameNSView addSubview:m_cocoaNSView]; | |
175 | } | |
176 | NSRect frameRect = [m_frameNSView frame]; | |
177 | float tbarheight = 0.0; | |
26785f01 | 178 | #if wxUSE_TOOLBAR |
448cbf1d DE |
179 | if(m_frameToolBar) |
180 | { | |
181 | NSView *tbarNSView = m_frameToolBar->GetNSViewForSuperview(); | |
9de6df96 DE |
182 | // If the toolbar doesn't have a superview then set it to our |
183 | // content view. | |
448cbf1d DE |
184 | if(![tbarNSView superview]) |
185 | [m_frameNSView addSubview: tbarNSView]; | |
6613dc3f DE |
186 | // Do this after addSubView so that SetSize can work |
187 | m_frameToolBar->SetSize(m_frameToolBar->DoGetBestSize()); | |
448cbf1d DE |
188 | NSRect tbarRect = [tbarNSView frame]; |
189 | tbarRect.size.width = frameRect.size.width; | |
190 | tbarRect.origin.x = 0.0; | |
191 | tbarRect.origin.y = frameRect.size.height - tbarRect.size.height; | |
192 | [tbarNSView setFrame:tbarRect]; | |
193 | // width expands, bottom margin expands | |
194 | [tbarNSView setAutoresizingMask: NSViewWidthSizable|NSViewMinYMargin]; | |
195 | tbarheight = tbarRect.size.height; | |
196 | } | |
26785f01 | 197 | #endif //wxUSE_TOOLBAR |
448cbf1d DE |
198 | float sbarheight = 0.0; |
199 | if(m_frameStatusBar) | |
200 | { | |
201 | NSView *sbarNSView = m_frameStatusBar->GetNSViewForSuperview(); | |
202 | if(![sbarNSView superview]) | |
203 | [m_frameNSView addSubview: sbarNSView]; | |
204 | NSRect sbarRect = [sbarNSView frame]; | |
205 | sbarRect.size.width = frameRect.size.width; | |
206 | sbarRect.origin.x = 0.0; | |
207 | sbarRect.origin.y = 0.0; | |
208 | [sbarNSView setFrame:sbarRect]; | |
209 | // width expands, top margin expands | |
210 | [sbarNSView setAutoresizingMask: NSViewWidthSizable|NSViewMaxYMargin]; | |
211 | sbarheight = sbarRect.size.height; | |
212 | } | |
48580976 | 213 | wxLogTrace(wxTRACE_COCOA,wxT("frame height=%f, tbar=%f, sbar=%f"),frameRect.size.height,tbarheight,sbarheight); |
448cbf1d DE |
214 | NSRect innerRect = [m_cocoaNSView frame]; |
215 | innerRect.size.height = frameRect.size.height - tbarheight - sbarheight; | |
216 | innerRect.origin.y = sbarheight; | |
217 | [m_cocoaNSView setFrame:innerRect]; | |
218 | [m_cocoaNSView setAutoresizingMask: NSViewWidthSizable|NSViewHeightSizable]; | |
219 | // Don't let the frame get smaller than the toolbar+statusbar height | |
220 | NSRect frameMinRect = [NSWindow frameRectForContentRect: | |
221 | NSMakeRect(0.0,0.0,0.0,tbarheight+sbarheight) | |
222 | styleMask: [m_cocoaNSWindow styleMask]]; | |
223 | [m_cocoaNSWindow setMinSize:frameMinRect.size]; | |
224 | } | |
225 | ||
226 | void wxFrame::SetStatusBar(wxStatusBar *statusbar) | |
227 | { | |
228 | if(m_frameStatusBar) | |
229 | { | |
230 | [m_frameStatusBar->GetNSViewForSuperview() removeFromSuperview]; | |
c5bd9191 | 231 | [m_frameStatusBar->GetNSViewForSuperview() setAutoresizingMask: NSViewMinYMargin]; |
448cbf1d | 232 | if(m_frameStatusBar->GetParent()) |
26785f01 | 233 | m_frameStatusBar->GetParent()->CocoaAddChild(m_frameStatusBar); |
448cbf1d DE |
234 | } |
235 | m_frameStatusBar = statusbar; | |
236 | if(m_frameStatusBar) | |
237 | { | |
238 | m_frameStatusBar->CocoaRemoveFromParent(); | |
239 | } | |
240 | UpdateFrameNSView(); | |
241 | } | |
242 | ||
243 | wxStatusBar* wxFrame::CreateStatusBar(int number, | |
244 | long style, | |
245 | wxWindowID winid, | |
246 | const wxString& name) | |
a58a6614 | 247 | { |
e1f4ff6d | 248 | wxAutoNSAutoreleasePool pool; |
448cbf1d DE |
249 | wxFrameBase::CreateStatusBar(number,style,winid,name); |
250 | if(m_frameStatusBar) | |
251 | { | |
252 | m_frameStatusBar->CocoaRemoveFromParent(); | |
253 | } | |
254 | UpdateFrameNSView(); | |
255 | return m_frameStatusBar; | |
256 | } | |
a58a6614 | 257 | |
26785f01 | 258 | #if wxUSE_TOOLBAR |
448cbf1d DE |
259 | void wxFrame::SetToolBar(wxToolBar *toolbar) |
260 | { | |
261 | if(m_frameToolBar) | |
262 | { | |
6613dc3f | 263 | m_frameToolBar->SetOwningFrame(NULL); |
448cbf1d | 264 | [m_frameToolBar->GetNSViewForSuperview() removeFromSuperview]; |
c5bd9191 | 265 | [m_frameToolBar->GetNSViewForSuperview() setAutoresizingMask: NSViewMinYMargin]; |
448cbf1d DE |
266 | if(m_frameToolBar->GetParent()) |
267 | m_frameToolBar->GetParent()->CocoaAddChild(m_frameToolBar); | |
268 | } | |
269 | m_frameToolBar = toolbar; | |
270 | if(m_frameToolBar) | |
271 | { | |
272 | m_frameToolBar->CocoaRemoveFromParent(); | |
6613dc3f | 273 | m_frameToolBar->SetOwningFrame(this); |
448cbf1d DE |
274 | } |
275 | UpdateFrameNSView(); | |
276 | } | |
a58a6614 | 277 | |
448cbf1d DE |
278 | wxToolBar* wxFrame::CreateToolBar(long style, |
279 | wxWindowID winid, | |
280 | const wxString& name) | |
281 | { | |
e1f4ff6d | 282 | wxAutoNSAutoreleasePool pool; |
9de6df96 | 283 | return wxFrameBase::CreateToolBar(style,winid,name); |
448cbf1d | 284 | } |
26785f01 | 285 | #endif // wxUSE_TOOLBAR |
a58a6614 | 286 | |
448cbf1d DE |
287 | void wxFrame::PositionStatusBar() |
288 | { | |
a58a6614 | 289 | } |