]>
Commit | Line | Data |
---|---|---|
fb896a32 DE |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/cocoa/window.mm | |
3 | // Purpose: wxWindowCocoa | |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2002/12/26 | |
8d8d3633 | 7 | // RCS-ID: $Id$ |
fb896a32 | 8 | // Copyright: (c) 2002 David Elliott |
8d8d3633 | 9 | // Licence: wxWidgets licence |
fb896a32 DE |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
449c5673 | 12 | #include "wx/wxprec.h" |
da80ae71 | 13 | |
449c5673 DE |
14 | #ifndef WX_PRECOMP |
15 | #include "wx/log.h" | |
16 | #include "wx/window.h" | |
4db3c8ac | 17 | #include "wx/dc.h" |
ca5db7b2 | 18 | #include "wx/utils.h" |
449c5673 | 19 | #endif //WX_PRECOMP |
da80ae71 | 20 | |
e73ae747 | 21 | #include "wx/tooltip.h" |
fb896a32 | 22 | |
7fc77f30 | 23 | #include "wx/cocoa/autorelease.h" |
26191790 | 24 | #include "wx/cocoa/string.h" |
7fc77f30 | 25 | |
829a2e95 | 26 | #include "wx/cocoa/objc/NSView.h" |
69dbb709 | 27 | #import <AppKit/NSEvent.h> |
816c52cf DE |
28 | #import <AppKit/NSScrollView.h> |
29 | #import <AppKit/NSColor.h> | |
30 | #import <AppKit/NSClipView.h> | |
dc5bcaef | 31 | #import <Foundation/NSException.h> |
67d2dac8 DE |
32 | #import <AppKit/NSApplication.h> |
33 | #import <AppKit/NSWindow.h> | |
dc5bcaef | 34 | |
75e4856b DE |
35 | // Turn this on to paint green over the dummy views for debugging |
36 | #undef WXCOCOA_FILL_DUMMY_VIEW | |
37 | ||
38 | #ifdef WXCOCOA_FILL_DUMMY_VIEW | |
39 | #import <AppKit/NSBezierPath.h> | |
40 | #endif //def WXCOCOA_FILL_DUMMY_VIEW | |
41 | ||
5dc47140 DE |
42 | // A category for methods that are only present in Panther's SDK |
43 | @interface NSView(wxNSViewPrePantherCompatibility) | |
44 | - (void)getRectsBeingDrawn:(const NSRect **)rects count:(int *)count; | |
45 | @end | |
46 | ||
ee022549 DE |
47 | NSPoint CocoaTransformNSViewBoundsToWx(NSView *nsview, NSPoint pointBounds) |
48 | { | |
49 | wxCHECK_MSG(nsview, pointBounds, wxT("Need to have a Cocoa view to do translation")); | |
50 | if([nsview isFlipped]) | |
51 | return pointBounds; | |
52 | NSRect ourBounds = [nsview bounds]; | |
53 | return NSMakePoint | |
54 | ( pointBounds.x | |
55 | , ourBounds.size.height - pointBounds.y | |
56 | ); | |
57 | } | |
58 | ||
59 | NSRect CocoaTransformNSViewBoundsToWx(NSView *nsview, NSRect rectBounds) | |
60 | { | |
61 | wxCHECK_MSG(nsview, rectBounds, wxT("Need to have a Cocoa view to do translation")); | |
62 | if([nsview isFlipped]) | |
63 | return rectBounds; | |
64 | NSRect ourBounds = [nsview bounds]; | |
65 | return NSMakeRect | |
66 | ( rectBounds.origin.x | |
67 | , ourBounds.size.height - (rectBounds.origin.y + rectBounds.size.height) | |
68 | , rectBounds.size.width | |
69 | , rectBounds.size.height | |
70 | ); | |
71 | } | |
72 | ||
73 | NSPoint CocoaTransformNSViewWxToBounds(NSView *nsview, NSPoint pointWx) | |
74 | { | |
75 | wxCHECK_MSG(nsview, pointWx, wxT("Need to have a Cocoa view to do translation")); | |
76 | if([nsview isFlipped]) | |
77 | return pointWx; | |
78 | NSRect ourBounds = [nsview bounds]; | |
79 | return NSMakePoint | |
80 | ( pointWx.x | |
81 | , ourBounds.size.height - pointWx.y | |
82 | ); | |
83 | } | |
84 | ||
85 | NSRect CocoaTransformNSViewWxToBounds(NSView *nsview, NSRect rectWx) | |
86 | { | |
87 | wxCHECK_MSG(nsview, rectWx, wxT("Need to have a Cocoa view to do translation")); | |
88 | if([nsview isFlipped]) | |
89 | return rectWx; | |
90 | NSRect ourBounds = [nsview bounds]; | |
91 | return NSMakeRect | |
92 | ( rectWx.origin.x | |
93 | , ourBounds.size.height - (rectWx.origin.y + rectWx.size.height) | |
94 | , rectWx.size.width | |
95 | , rectWx.size.height | |
96 | ); | |
97 | } | |
98 | ||
a82b8141 DE |
99 | // ======================================================================== |
100 | // wxWindowCocoaHider | |
101 | // ======================================================================== | |
102 | class wxWindowCocoaHider: protected wxCocoaNSView | |
103 | { | |
104 | DECLARE_NO_COPY_CLASS(wxWindowCocoaHider) | |
105 | public: | |
106 | wxWindowCocoaHider(wxWindow *owner); | |
107 | virtual ~wxWindowCocoaHider(); | |
108 | inline WX_NSView GetNSView() { return m_dummyNSView; } | |
109 | protected: | |
110 | wxWindowCocoa *m_owner; | |
111 | WX_NSView m_dummyNSView; | |
112 | virtual void Cocoa_FrameChanged(void); | |
75e4856b DE |
113 | #ifdef WXCOCOA_FILL_DUMMY_VIEW |
114 | virtual bool Cocoa_drawRect(const NSRect& rect); | |
115 | #endif //def WXCOCOA_FILL_DUMMY_VIEW | |
a82b8141 DE |
116 | private: |
117 | wxWindowCocoaHider(); | |
118 | }; | |
119 | ||
816c52cf | 120 | // ======================================================================== |
f298b203 | 121 | // wxWindowCocoaScrollView |
816c52cf | 122 | // ======================================================================== |
f298b203 | 123 | class wxWindowCocoaScrollView: protected wxCocoaNSView |
816c52cf | 124 | { |
f298b203 | 125 | DECLARE_NO_COPY_CLASS(wxWindowCocoaScrollView) |
816c52cf | 126 | public: |
f298b203 DE |
127 | wxWindowCocoaScrollView(wxWindow *owner); |
128 | virtual ~wxWindowCocoaScrollView(); | |
816c52cf DE |
129 | inline WX_NSScrollView GetNSScrollView() { return m_cocoaNSScrollView; } |
130 | void ClientSizeToSize(int &width, int &height); | |
131 | void DoGetClientSize(int *x, int *y) const; | |
132 | void Encapsulate(); | |
133 | void Unencapsulate(); | |
134 | protected: | |
135 | wxWindowCocoa *m_owner; | |
136 | WX_NSScrollView m_cocoaNSScrollView; | |
137 | virtual void Cocoa_FrameChanged(void); | |
138 | private: | |
f298b203 | 139 | wxWindowCocoaScrollView(); |
816c52cf DE |
140 | }; |
141 | ||
75e4856b DE |
142 | // ======================================================================== |
143 | // wxDummyNSView | |
144 | // ======================================================================== | |
145 | @interface wxDummyNSView : NSView | |
146 | - (NSView *)hitTest:(NSPoint)aPoint; | |
147 | @end | |
148 | ||
149 | @implementation wxDummyNSView : NSView | |
150 | - (NSView *)hitTest:(NSPoint)aPoint | |
151 | { | |
152 | return nil; | |
153 | } | |
154 | ||
155 | @end | |
156 | ||
a82b8141 DE |
157 | // ======================================================================== |
158 | // wxWindowCocoaHider | |
159 | // ======================================================================== | |
160 | wxWindowCocoaHider::wxWindowCocoaHider(wxWindow *owner) | |
161 | : m_owner(owner) | |
162 | { | |
163 | wxASSERT(owner); | |
164 | wxASSERT(owner->GetNSViewForHiding()); | |
75e4856b | 165 | m_dummyNSView = [[wxDummyNSView alloc] |
a82b8141 | 166 | initWithFrame:[owner->GetNSViewForHiding() frame]]; |
75e4856b | 167 | [m_dummyNSView setAutoresizingMask: [owner->GetNSViewForHiding() autoresizingMask]]; |
a82b8141 DE |
168 | AssociateNSView(m_dummyNSView); |
169 | } | |
170 | ||
171 | wxWindowCocoaHider::~wxWindowCocoaHider() | |
172 | { | |
173 | DisassociateNSView(m_dummyNSView); | |
174 | [m_dummyNSView release]; | |
175 | } | |
176 | ||
177 | void wxWindowCocoaHider::Cocoa_FrameChanged(void) | |
178 | { | |
179 | // Keep the real window in synch with the dummy | |
180 | wxASSERT(m_dummyNSView); | |
181 | [m_owner->GetNSViewForHiding() setFrame:[m_dummyNSView frame]]; | |
182 | } | |
183 | ||
5558135c | 184 | |
75e4856b DE |
185 | #ifdef WXCOCOA_FILL_DUMMY_VIEW |
186 | bool wxWindowCocoaHider::Cocoa_drawRect(const NSRect& rect) | |
187 | { | |
188 | NSBezierPath *bezpath = [NSBezierPath bezierPathWithRect:rect]; | |
189 | [[NSColor greenColor] set]; | |
190 | [bezpath stroke]; | |
191 | [bezpath fill]; | |
192 | return true; | |
193 | } | |
194 | #endif //def WXCOCOA_FILL_DUMMY_VIEW | |
195 | ||
816c52cf DE |
196 | // ======================================================================== |
197 | // wxFlippedNSClipView | |
198 | // ======================================================================== | |
199 | @interface wxFlippedNSClipView : NSClipView | |
200 | - (BOOL)isFlipped; | |
201 | @end | |
202 | ||
203 | @implementation wxFlippedNSClipView : NSClipView | |
204 | - (BOOL)isFlipped | |
205 | { | |
206 | return YES; | |
207 | } | |
208 | ||
209 | @end | |
210 | ||
211 | // ======================================================================== | |
f298b203 | 212 | // wxWindowCocoaScrollView |
816c52cf | 213 | // ======================================================================== |
f298b203 | 214 | wxWindowCocoaScrollView::wxWindowCocoaScrollView(wxWindow *owner) |
816c52cf DE |
215 | : m_owner(owner) |
216 | { | |
a9861c57 | 217 | wxAutoNSAutoreleasePool pool; |
816c52cf DE |
218 | wxASSERT(owner); |
219 | wxASSERT(owner->GetNSView()); | |
220 | m_cocoaNSScrollView = [[NSScrollView alloc] | |
221 | initWithFrame:[owner->GetNSView() frame]]; | |
222 | AssociateNSView(m_cocoaNSScrollView); | |
223 | ||
224 | /* Replace the default NSClipView with a flipped one. This ensures | |
225 | scrolling is "pinned" to the top-left instead of bottom-right. */ | |
226 | NSClipView *flippedClip = [[wxFlippedNSClipView alloc] | |
227 | initWithFrame: [[m_cocoaNSScrollView contentView] frame]]; | |
228 | [m_cocoaNSScrollView setContentView:flippedClip]; | |
229 | [flippedClip release]; | |
230 | ||
231 | [m_cocoaNSScrollView setBackgroundColor: [NSColor windowBackgroundColor]]; | |
232 | [m_cocoaNSScrollView setHasHorizontalScroller: YES]; | |
233 | [m_cocoaNSScrollView setHasVerticalScroller: YES]; | |
234 | Encapsulate(); | |
235 | } | |
236 | ||
f298b203 | 237 | void wxWindowCocoaScrollView::Encapsulate() |
816c52cf | 238 | { |
6f2ec3c3 DE |
239 | // Set the scroll view autoresizingMask to match the current NSView |
240 | [m_cocoaNSScrollView setAutoresizingMask: [m_owner->GetNSView() autoresizingMask]]; | |
241 | [m_owner->GetNSView() setAutoresizingMask: NSViewNotSizable]; | |
816c52cf DE |
242 | // NOTE: replaceSubView will cause m_cocaNSView to be released |
243 | // except when it hasn't been added into an NSView hierarchy in which | |
244 | // case it doesn't need to be and this should work out to a no-op | |
245 | m_owner->CocoaReplaceView(m_owner->GetNSView(), m_cocoaNSScrollView); | |
246 | // The NSView is still retained by owner | |
247 | [m_cocoaNSScrollView setDocumentView: m_owner->GetNSView()]; | |
248 | // Now it's also retained by the NSScrollView | |
249 | } | |
250 | ||
f298b203 | 251 | void wxWindowCocoaScrollView::Unencapsulate() |
816c52cf DE |
252 | { |
253 | [m_cocoaNSScrollView setDocumentView: nil]; | |
254 | m_owner->CocoaReplaceView(m_cocoaNSScrollView, m_owner->GetNSView()); | |
6f2ec3c3 DE |
255 | if(![[m_owner->GetNSView() superview] isFlipped]) |
256 | [m_owner->GetNSView() setAutoresizingMask: NSViewMinYMargin]; | |
816c52cf DE |
257 | } |
258 | ||
f298b203 | 259 | wxWindowCocoaScrollView::~wxWindowCocoaScrollView() |
816c52cf DE |
260 | { |
261 | DisassociateNSView(m_cocoaNSScrollView); | |
262 | [m_cocoaNSScrollView release]; | |
263 | } | |
264 | ||
f298b203 | 265 | void wxWindowCocoaScrollView::ClientSizeToSize(int &width, int &height) |
816c52cf DE |
266 | { |
267 | NSSize frameSize = [NSScrollView | |
268 | frameSizeForContentSize: NSMakeSize(width,height) | |
269 | hasHorizontalScroller: [m_cocoaNSScrollView hasHorizontalScroller] | |
270 | hasVerticalScroller: [m_cocoaNSScrollView hasVerticalScroller] | |
271 | borderType: [m_cocoaNSScrollView borderType]]; | |
e9cece45 VZ |
272 | width = (int)frameSize.width; |
273 | height = (int)frameSize.height; | |
816c52cf DE |
274 | } |
275 | ||
f298b203 | 276 | void wxWindowCocoaScrollView::DoGetClientSize(int *x, int *y) const |
816c52cf DE |
277 | { |
278 | NSSize nssize = [m_cocoaNSScrollView contentSize]; | |
279 | if(x) | |
e9cece45 | 280 | *x = (int)nssize.width; |
816c52cf | 281 | if(y) |
e9cece45 | 282 | *y = (int)nssize.height; |
816c52cf DE |
283 | } |
284 | ||
f298b203 | 285 | void wxWindowCocoaScrollView::Cocoa_FrameChanged(void) |
816c52cf | 286 | { |
48580976 | 287 | wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_FrameChanged")); |
816c52cf DE |
288 | wxSizeEvent event(m_owner->GetSize(), m_owner->GetId()); |
289 | event.SetEventObject(m_owner); | |
290 | m_owner->GetEventHandler()->ProcessEvent(event); | |
291 | } | |
292 | ||
a82b8141 DE |
293 | // ======================================================================== |
294 | // wxWindowCocoa | |
295 | // ======================================================================== | |
fb896a32 DE |
296 | // normally the base classes aren't included, but wxWindow is special |
297 | #ifdef __WXUNIVERSAL__ | |
298 | IMPLEMENT_ABSTRACT_CLASS(wxWindowCocoa, wxWindowBase) | |
299 | #else | |
300 | IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase) | |
301 | #endif | |
302 | ||
303 | BEGIN_EVENT_TABLE(wxWindowCocoa, wxWindowBase) | |
304 | END_EVENT_TABLE() | |
305 | ||
b9505233 DE |
306 | wxWindow *wxWindowCocoa::sm_capturedWindow = NULL; |
307 | ||
fb896a32 DE |
308 | // Constructor |
309 | void wxWindowCocoa::Init() | |
310 | { | |
fb896a32 | 311 | m_cocoaNSView = NULL; |
a82b8141 | 312 | m_cocoaHider = NULL; |
f298b203 | 313 | m_wxCocoaScrollView = NULL; |
8d8d3633 WS |
314 | m_isBeingDeleted = false; |
315 | m_isInPaint = false; | |
fb896a32 DE |
316 | } |
317 | ||
318 | // Constructor | |
319 | bool wxWindow::Create(wxWindow *parent, wxWindowID winid, | |
320 | const wxPoint& pos, | |
321 | const wxSize& size, | |
322 | long style, | |
323 | const wxString& name) | |
324 | { | |
325 | if(!CreateBase(parent,winid,pos,size,style,wxDefaultValidator,name)) | |
326 | return false; | |
327 | ||
328 | // TODO: create the window | |
fb896a32 | 329 | m_cocoaNSView = NULL; |
829a2e95 | 330 | SetNSView([[WXNSView alloc] initWithFrame: MakeDefaultNSRect(size)]); |
fb896a32 DE |
331 | [m_cocoaNSView release]; |
332 | ||
333 | if (m_parent) | |
334 | { | |
335 | m_parent->AddChild(this); | |
336 | m_parent->CocoaAddChild(this); | |
6d034f7d | 337 | SetInitialFrameRect(pos,size); |
fb896a32 DE |
338 | } |
339 | ||
8d8d3633 | 340 | return true; |
fb896a32 DE |
341 | } |
342 | ||
343 | // Destructor | |
344 | wxWindow::~wxWindow() | |
345 | { | |
7fc77f30 | 346 | wxAutoNSAutoreleasePool pool; |
fb896a32 DE |
347 | DestroyChildren(); |
348 | ||
065e208e | 349 | // Make sure our parent (in the wxWidgets sense) is our superview |
6ba13ca4 DE |
350 | // before we go removing from it. |
351 | if(m_parent && m_parent->GetNSView()==[GetNSViewForSuperview() superview]) | |
352 | CocoaRemoveFromParent(); | |
a82b8141 | 353 | delete m_cocoaHider; |
f298b203 | 354 | delete m_wxCocoaScrollView; |
9c85202a DE |
355 | if(m_cocoaNSView) |
356 | SendDestroyEvent(); | |
fb896a32 DE |
357 | SetNSView(NULL); |
358 | } | |
359 | ||
360 | void wxWindowCocoa::CocoaAddChild(wxWindowCocoa *child) | |
361 | { | |
a82b8141 DE |
362 | NSView *childView = child->GetNSViewForSuperview(); |
363 | ||
364 | wxASSERT(childView); | |
365 | [m_cocoaNSView addSubview: childView]; | |
366 | child->m_isShown = !m_cocoaHider; | |
fb896a32 DE |
367 | } |
368 | ||
369 | void wxWindowCocoa::CocoaRemoveFromParent(void) | |
370 | { | |
a82b8141 | 371 | [GetNSViewForSuperview() removeFromSuperview]; |
fb896a32 DE |
372 | } |
373 | ||
374 | void wxWindowCocoa::SetNSView(WX_NSView cocoaNSView) | |
375 | { | |
376 | bool need_debug = cocoaNSView || m_cocoaNSView; | |
48580976 | 377 | if(need_debug) wxLogTrace(wxTRACE_COCOA_RetainRelease,wxT("wxWindowCocoa=%p::SetNSView [m_cocoaNSView=%p retainCount]=%d"),this,m_cocoaNSView,[m_cocoaNSView retainCount]); |
bac6f234 | 378 | DisassociateNSView(m_cocoaNSView); |
fb896a32 DE |
379 | [cocoaNSView retain]; |
380 | [m_cocoaNSView release]; | |
381 | m_cocoaNSView = cocoaNSView; | |
bac6f234 | 382 | AssociateNSView(m_cocoaNSView); |
48580976 | 383 | if(need_debug) wxLogTrace(wxTRACE_COCOA_RetainRelease,wxT("wxWindowCocoa=%p::SetNSView [cocoaNSView=%p retainCount]=%d"),this,cocoaNSView,[cocoaNSView retainCount]); |
fb896a32 DE |
384 | } |
385 | ||
a82b8141 DE |
386 | WX_NSView wxWindowCocoa::GetNSViewForSuperview() const |
387 | { | |
388 | return m_cocoaHider | |
389 | ? m_cocoaHider->GetNSView() | |
f298b203 DE |
390 | : m_wxCocoaScrollView |
391 | ? m_wxCocoaScrollView->GetNSScrollView() | |
816c52cf | 392 | : m_cocoaNSView; |
a82b8141 DE |
393 | } |
394 | ||
395 | WX_NSView wxWindowCocoa::GetNSViewForHiding() const | |
396 | { | |
f298b203 DE |
397 | return m_wxCocoaScrollView |
398 | ? m_wxCocoaScrollView->GetNSScrollView() | |
816c52cf | 399 | : m_cocoaNSView; |
a82b8141 DE |
400 | } |
401 | ||
34c9978d DE |
402 | NSPoint wxWindowCocoa::CocoaTransformBoundsToWx(NSPoint pointBounds) |
403 | { | |
404 | // TODO: Handle scrolling offset | |
ee022549 | 405 | return CocoaTransformNSViewBoundsToWx(GetNSView(), pointBounds); |
34c9978d DE |
406 | } |
407 | ||
408 | NSRect wxWindowCocoa::CocoaTransformBoundsToWx(NSRect rectBounds) | |
409 | { | |
410 | // TODO: Handle scrolling offset | |
ee022549 | 411 | return CocoaTransformNSViewBoundsToWx(GetNSView(), rectBounds); |
34c9978d DE |
412 | } |
413 | ||
414 | NSPoint wxWindowCocoa::CocoaTransformWxToBounds(NSPoint pointWx) | |
415 | { | |
416 | // TODO: Handle scrolling offset | |
ee022549 | 417 | return CocoaTransformNSViewWxToBounds(GetNSView(), pointWx); |
34c9978d DE |
418 | } |
419 | ||
420 | NSRect wxWindowCocoa::CocoaTransformWxToBounds(NSRect rectWx) | |
421 | { | |
422 | // TODO: Handle scrolling offset | |
ee022549 | 423 | return CocoaTransformNSViewWxToBounds(GetNSView(), rectWx); |
34c9978d DE |
424 | } |
425 | ||
4db3c8ac DE |
426 | WX_NSAffineTransform wxWindowCocoa::CocoaGetWxToBoundsTransform() |
427 | { | |
428 | // TODO: Handle scrolling offset | |
429 | NSAffineTransform *transform = wxDC::CocoaGetWxToBoundsTransform([GetNSView() isFlipped], [GetNSView() bounds].size.height); | |
430 | return transform; | |
431 | } | |
432 | ||
8ea5271e DE |
433 | bool wxWindowCocoa::Cocoa_drawRect(const NSRect &rect) |
434 | { | |
48580976 | 435 | wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_drawRect")); |
55c5be5e DE |
436 | // Recursion can happen if the event loop runs from within the paint |
437 | // handler. For instance, if an assertion dialog is shown. | |
438 | // FIXME: This seems less than ideal. | |
439 | if(m_isInPaint) | |
440 | { | |
2b030203 | 441 | wxLogDebug(wxT("Paint event recursion!")); |
55c5be5e DE |
442 | return false; |
443 | } | |
8d8d3633 | 444 | m_isInPaint = true; |
dc5bcaef DE |
445 | |
446 | // Set m_updateRegion | |
447 | const NSRect *rects = ▭ // The bounding box of the region | |
448 | int countRects = 1; | |
449 | // Try replacing the larger rectangle with a list of smaller ones: | |
5dc47140 DE |
450 | if ([GetNSView() respondsToSelector:@selector(getRectsBeingDrawn:count:)]) |
451 | [GetNSView() getRectsBeingDrawn:&rects count:&countRects]; | |
34c9978d DE |
452 | |
453 | NSRect *transformedRects = (NSRect*)malloc(sizeof(NSRect)*countRects); | |
454 | for(int i=0; i<countRects; i++) | |
455 | { | |
456 | transformedRects[i] = CocoaTransformBoundsToWx(rects[i]); | |
457 | } | |
458 | m_updateRegion = wxRegion(transformedRects,countRects); | |
459 | free(transformedRects); | |
dc5bcaef | 460 | |
8ea5271e DE |
461 | wxPaintEvent event(m_windowId); |
462 | event.SetEventObject(this); | |
55c5be5e | 463 | bool ret = GetEventHandler()->ProcessEvent(event); |
8d8d3633 | 464 | m_isInPaint = false; |
55c5be5e | 465 | return ret; |
8ea5271e DE |
466 | } |
467 | ||
69dbb709 DE |
468 | void wxWindowCocoa::InitMouseEvent(wxMouseEvent& event, WX_NSEvent cocoaEvent) |
469 | { | |
2b030203 | 470 | wxASSERT_MSG([m_cocoaNSView window]==[cocoaEvent window],wxT("Mouse event for different NSWindow")); |
34c9978d DE |
471 | // Mouse events happen at the NSWindow level so we need to convert |
472 | // into our bounds coordinates then convert to wx coordinates. | |
a82b8141 | 473 | NSPoint cocoaPoint = [m_cocoaNSView convertPoint:[(NSEvent*)cocoaEvent locationInWindow] fromView:nil]; |
34c9978d DE |
474 | NSPoint pointWx = CocoaTransformBoundsToWx(cocoaPoint); |
475 | // FIXME: Should we be adjusting for client area origin? | |
69dbb709 | 476 | const wxPoint &clientorigin = GetClientAreaOrigin(); |
34c9978d DE |
477 | event.m_x = (wxCoord)pointWx.x - clientorigin.x; |
478 | event.m_y = (wxCoord)pointWx.y - clientorigin.y; | |
69dbb709 DE |
479 | |
480 | event.m_shiftDown = [cocoaEvent modifierFlags] & NSShiftKeyMask; | |
481 | event.m_controlDown = [cocoaEvent modifierFlags] & NSControlKeyMask; | |
482 | event.m_altDown = [cocoaEvent modifierFlags] & NSAlternateKeyMask; | |
483 | event.m_metaDown = [cocoaEvent modifierFlags] & NSCommandKeyMask; | |
484 | ||
485 | // TODO: set timestamp? | |
486 | event.SetEventObject(this); | |
487 | event.SetId(GetId()); | |
488 | } | |
489 | ||
490 | bool wxWindowCocoa::Cocoa_mouseMoved(WX_NSEvent theEvent) | |
491 | { | |
492 | wxMouseEvent event(wxEVT_MOTION); | |
493 | InitMouseEvent(event,theEvent); | |
48580976 | 494 | wxLogTrace(wxTRACE_COCOA,wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y); |
69dbb709 DE |
495 | return GetEventHandler()->ProcessEvent(event); |
496 | } | |
497 | ||
498 | bool wxWindowCocoa::Cocoa_mouseEntered(WX_NSEvent theEvent) | |
499 | { | |
500 | return false; | |
501 | } | |
502 | ||
503 | bool wxWindowCocoa::Cocoa_mouseExited(WX_NSEvent theEvent) | |
504 | { | |
505 | return false; | |
506 | } | |
507 | ||
508 | bool wxWindowCocoa::Cocoa_mouseDown(WX_NSEvent theEvent) | |
509 | { | |
510 | wxMouseEvent event([theEvent clickCount]<2?wxEVT_LEFT_DOWN:wxEVT_LEFT_DCLICK); | |
511 | InitMouseEvent(event,theEvent); | |
48580976 | 512 | wxLogTrace(wxTRACE_COCOA,wxT("Mouse Down @%d,%d num clicks=%d"),event.m_x,event.m_y,[theEvent clickCount]); |
69dbb709 DE |
513 | return GetEventHandler()->ProcessEvent(event); |
514 | } | |
515 | ||
516 | bool wxWindowCocoa::Cocoa_mouseDragged(WX_NSEvent theEvent) | |
517 | { | |
518 | wxMouseEvent event(wxEVT_MOTION); | |
519 | InitMouseEvent(event,theEvent); | |
520 | event.m_leftDown = true; | |
48580976 | 521 | wxLogTrace(wxTRACE_COCOA,wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y); |
69dbb709 DE |
522 | return GetEventHandler()->ProcessEvent(event); |
523 | } | |
524 | ||
525 | bool wxWindowCocoa::Cocoa_mouseUp(WX_NSEvent theEvent) | |
526 | { | |
527 | wxMouseEvent event(wxEVT_LEFT_UP); | |
528 | InitMouseEvent(event,theEvent); | |
48580976 | 529 | wxLogTrace(wxTRACE_COCOA,wxT("Mouse Up @%d,%d"),event.m_x,event.m_y); |
69dbb709 DE |
530 | return GetEventHandler()->ProcessEvent(event); |
531 | } | |
532 | ||
533 | bool wxWindowCocoa::Cocoa_rightMouseDown(WX_NSEvent theEvent) | |
534 | { | |
eafde5c7 DE |
535 | wxMouseEvent event([theEvent clickCount]<2?wxEVT_RIGHT_DOWN:wxEVT_RIGHT_DCLICK); |
536 | InitMouseEvent(event,theEvent); | |
537 | wxLogDebug(wxT("Mouse Down @%d,%d num clicks=%d"),event.m_x,event.m_y,[theEvent clickCount]); | |
538 | return GetEventHandler()->ProcessEvent(event); | |
69dbb709 DE |
539 | } |
540 | ||
541 | bool wxWindowCocoa::Cocoa_rightMouseDragged(WX_NSEvent theEvent) | |
542 | { | |
eafde5c7 DE |
543 | wxMouseEvent event(wxEVT_MOTION); |
544 | InitMouseEvent(event,theEvent); | |
545 | event.m_rightDown = true; | |
546 | wxLogDebug(wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y); | |
547 | return GetEventHandler()->ProcessEvent(event); | |
69dbb709 DE |
548 | } |
549 | ||
550 | bool wxWindowCocoa::Cocoa_rightMouseUp(WX_NSEvent theEvent) | |
551 | { | |
eafde5c7 DE |
552 | wxMouseEvent event(wxEVT_RIGHT_UP); |
553 | InitMouseEvent(event,theEvent); | |
554 | wxLogDebug(wxT("Mouse Up @%d,%d"),event.m_x,event.m_y); | |
555 | return GetEventHandler()->ProcessEvent(event); | |
69dbb709 DE |
556 | } |
557 | ||
558 | bool wxWindowCocoa::Cocoa_otherMouseDown(WX_NSEvent theEvent) | |
559 | { | |
560 | return false; | |
561 | } | |
562 | ||
563 | bool wxWindowCocoa::Cocoa_otherMouseDragged(WX_NSEvent theEvent) | |
564 | { | |
565 | return false; | |
566 | } | |
567 | ||
568 | bool wxWindowCocoa::Cocoa_otherMouseUp(WX_NSEvent theEvent) | |
569 | { | |
570 | return false; | |
571 | } | |
572 | ||
fb896a32 DE |
573 | void wxWindowCocoa::Cocoa_FrameChanged(void) |
574 | { | |
48580976 | 575 | wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_FrameChanged")); |
fb896a32 DE |
576 | wxSizeEvent event(GetSize(), m_windowId); |
577 | event.SetEventObject(this); | |
578 | GetEventHandler()->ProcessEvent(event); | |
579 | } | |
580 | ||
5558135c RN |
581 | bool wxWindowCocoa::Cocoa_resetCursorRects() |
582 | { | |
583 | if(!m_cursor.GetNSCursor()) | |
584 | return false; | |
8d8d3633 WS |
585 | |
586 | [GetNSView() addCursorRect: [GetNSView() visibleRect] cursor: m_cursor.GetNSCursor()]; | |
587 | ||
5558135c RN |
588 | return true; |
589 | } | |
590 | ||
fb896a32 DE |
591 | bool wxWindow::Close(bool force) |
592 | { | |
cc6f960f DE |
593 | // The only reason this function exists is that it is virtual and |
594 | // wxTopLevelWindowCocoa will override it. | |
595 | return wxWindowBase::Close(force); | |
fb896a32 DE |
596 | } |
597 | ||
a82b8141 DE |
598 | void wxWindow::CocoaReplaceView(WX_NSView oldView, WX_NSView newView) |
599 | { | |
600 | [[oldView superview] replaceSubview:oldView with:newView]; | |
601 | } | |
602 | ||
47a8a4d5 | 603 | void wxWindow::DoEnable(bool enable) |
adb4816c | 604 | { |
47a8a4d5 | 605 | CocoaSetEnabled(enable); |
adb4816c DE |
606 | } |
607 | ||
fb896a32 DE |
608 | bool wxWindow::Show(bool show) |
609 | { | |
7fc77f30 | 610 | wxAutoNSAutoreleasePool pool; |
fb896a32 DE |
611 | // If the window is marked as visible, then it shouldn't have a dummy view |
612 | // If the window is marked hidden, then it should have a dummy view | |
addbdd29 | 613 | // wxSpinCtrl (generic) abuses m_isShown, don't use it for any logic |
2b030203 | 614 | // wxASSERT_MSG( (m_isShown && !m_dummyNSView) || (!m_isShown && m_dummyNSView),wxT("wxWindow: m_isShown does not agree with m_dummyNSView")); |
fb896a32 | 615 | // Return false if there isn't a window to show or hide |
a82b8141 DE |
616 | NSView *cocoaView = GetNSViewForHiding(); |
617 | if(!cocoaView) | |
fb896a32 | 618 | return false; |
fb896a32 DE |
619 | if(show) |
620 | { | |
addbdd29 | 621 | // If state isn't changing, return false |
a82b8141 | 622 | if(!m_cocoaHider) |
addbdd29 | 623 | return false; |
a82b8141 DE |
624 | CocoaReplaceView(m_cocoaHider->GetNSView(), cocoaView); |
625 | wxASSERT(![m_cocoaHider->GetNSView() superview]); | |
626 | delete m_cocoaHider; | |
627 | m_cocoaHider = NULL; | |
628 | wxASSERT([cocoaView superview]); | |
fb896a32 DE |
629 | } |
630 | else | |
631 | { | |
addbdd29 | 632 | // If state isn't changing, return false |
a82b8141 | 633 | if(m_cocoaHider) |
addbdd29 | 634 | return false; |
a82b8141 DE |
635 | m_cocoaHider = new wxWindowCocoaHider(this); |
636 | // NOTE: replaceSubview:with will cause m_cocaNSView to be | |
637 | // (auto)released which balances out addSubview | |
638 | CocoaReplaceView(cocoaView, m_cocoaHider->GetNSView()); | |
fb896a32 | 639 | // m_coocaNSView is now only retained by us |
a82b8141 DE |
640 | wxASSERT([m_cocoaHider->GetNSView() superview]); |
641 | wxASSERT(![cocoaView superview]); | |
fb896a32 | 642 | } |
a6b4ff2e DE |
643 | m_isShown = show; |
644 | return true; | |
fb896a32 DE |
645 | } |
646 | ||
647 | void wxWindowCocoa::DoSetSize(int x, int y, int width, int height, int sizeFlags) | |
648 | { | |
9879fa84 | 649 | wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoSetSizeWindow(%d,%d,%d,%d,Auto: %s%s)"),this,x,y,width,height,(sizeFlags&wxSIZE_AUTO_WIDTH)?"W":".",sizeFlags&wxSIZE_AUTO_HEIGHT?"H":"."); |
fb896a32 DE |
650 | int currentX, currentY; |
651 | int currentW, currentH; | |
652 | DoGetPosition(¤tX, ¤tY); | |
653 | DoGetSize(¤tW, ¤tH); | |
654 | if((x==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE)) | |
655 | x=currentX; | |
656 | if((y==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE)) | |
657 | y=currentY; | |
658 | ||
659 | AdjustForParentClientOrigin(x,y,sizeFlags); | |
660 | ||
8d8d3633 | 661 | wxSize size(wxDefaultSize); |
fb896a32 DE |
662 | |
663 | if((width==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE)) | |
664 | { | |
665 | if(sizeFlags&wxSIZE_AUTO_WIDTH) | |
666 | { | |
667 | size=DoGetBestSize(); | |
668 | width=size.x; | |
669 | } | |
670 | else | |
671 | width=currentW; | |
672 | } | |
673 | if((height==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE)) | |
674 | { | |
675 | if(sizeFlags&wxSIZE_AUTO_HEIGHT) | |
676 | { | |
677 | if(size.x==-1) | |
678 | size=DoGetBestSize(); | |
679 | height=size.y; | |
680 | } | |
681 | else | |
682 | height=currentH; | |
683 | } | |
684 | DoMoveWindow(x,y,width,height); | |
685 | } | |
686 | ||
1e151594 | 687 | #if wxUSE_TOOLTIPS |
26191790 RN |
688 | |
689 | void wxWindowCocoa::DoSetToolTip( wxToolTip *tip ) | |
690 | { | |
691 | wxWindowBase::DoSetToolTip(tip); | |
692 | ||
26191790 RN |
693 | if ( m_tooltip ) |
694 | { | |
695 | m_tooltip->SetWindow((wxWindow *)this); | |
26191790 RN |
696 | } |
697 | } | |
698 | ||
1e151594 RN |
699 | #endif |
700 | ||
fb896a32 DE |
701 | void wxWindowCocoa::DoMoveWindow(int x, int y, int width, int height) |
702 | { | |
bed6fe0c | 703 | wxAutoNSAutoreleasePool pool; |
9879fa84 | 704 | wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoMoveWindow(%d,%d,%d,%d)"),this,x,y,width,height); |
fb896a32 | 705 | |
a82b8141 | 706 | NSView *nsview = GetNSViewForSuperview(); |
d449cf47 | 707 | NSView *superview = [nsview superview]; |
fb896a32 | 708 | |
34c9978d DE |
709 | wxCHECK_RET(GetParent(), wxT("Window can only be placed correctly when it has a parent")); |
710 | ||
711 | NSRect oldFrameRect = [nsview frame]; | |
712 | NSRect newFrameRect = GetParent()->CocoaTransformWxToBounds(NSMakeRect(x,y,width,height)); | |
713 | [nsview setFrame:newFrameRect]; | |
b915b805 | 714 | // Be sure to redraw the parent to reflect the changed position |
34c9978d DE |
715 | [superview setNeedsDisplayInRect:oldFrameRect]; |
716 | [superview setNeedsDisplayInRect:newFrameRect]; | |
fb896a32 DE |
717 | } |
718 | ||
d139c3a8 DE |
719 | void wxWindowCocoa::SetInitialFrameRect(const wxPoint& pos, const wxSize& size) |
720 | { | |
721 | NSView *nsview = GetNSViewForSuperview(); | |
722 | NSView *superview = [nsview superview]; | |
2b030203 | 723 | wxCHECK_RET(superview,wxT("NSView does not have a superview")); |
34c9978d | 724 | wxCHECK_RET(GetParent(), wxT("Window can only be placed correctly when it has a parent")); |
d139c3a8 DE |
725 | NSRect frameRect = [nsview frame]; |
726 | if(size.x!=-1) | |
727 | frameRect.size.width = size.x; | |
728 | if(size.y!=-1) | |
729 | frameRect.size.height = size.y; | |
730 | frameRect.origin.x = pos.x; | |
34c9978d | 731 | frameRect.origin.y = pos.y; |
c5bd9191 DE |
732 | // Tell Cocoa to change the margin between the bottom of the superview |
733 | // and the bottom of the control. Keeps the control pinned to the top | |
065e208e | 734 | // of its superview so that its position in the wxWidgets coordinate |
c5bd9191 DE |
735 | // system doesn't change. |
736 | if(![superview isFlipped]) | |
737 | [nsview setAutoresizingMask: NSViewMinYMargin]; | |
6f2ec3c3 DE |
738 | // MUST set the mask before setFrame: which can generate a size event |
739 | // and cause a scroller to be added! | |
34c9978d | 740 | frameRect = GetParent()->CocoaTransformWxToBounds(frameRect); |
6f2ec3c3 | 741 | [nsview setFrame: frameRect]; |
d139c3a8 DE |
742 | } |
743 | ||
fb896a32 DE |
744 | // Get total size |
745 | void wxWindow::DoGetSize(int *w, int *h) const | |
746 | { | |
a82b8141 | 747 | NSRect cocoaRect = [GetNSViewForSuperview() frame]; |
fb896a32 DE |
748 | if(w) |
749 | *w=(int)cocoaRect.size.width; | |
750 | if(h) | |
751 | *h=(int)cocoaRect.size.height; | |
9879fa84 | 752 | wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoGetSize = (%d,%d)"),this,(int)cocoaRect.size.width,(int)cocoaRect.size.height); |
fb896a32 DE |
753 | } |
754 | ||
755 | void wxWindow::DoGetPosition(int *x, int *y) const | |
756 | { | |
a82b8141 | 757 | NSView *nsview = GetNSViewForSuperview(); |
fb896a32 | 758 | |
576a1544 | 759 | NSRect cocoaRect = [nsview frame]; |
34c9978d | 760 | NSRect rectWx = GetParent()->CocoaTransformBoundsToWx(cocoaRect); |
fb896a32 | 761 | if(x) |
34c9978d | 762 | *x=(int)rectWx.origin.x; |
fb896a32 | 763 | if(y) |
34c9978d | 764 | *y=(int)rectWx.origin.y; |
9879fa84 | 765 | wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoGetPosition = (%d,%d)"),this,(int)cocoaRect.origin.x,(int)cocoaRect.origin.y); |
fb896a32 DE |
766 | } |
767 | ||
768 | WXWidget wxWindow::GetHandle() const | |
769 | { | |
770 | return m_cocoaNSView; | |
771 | } | |
772 | ||
f7e98dee RN |
773 | wxWindow* wxWindow::GetWxWindow() const |
774 | { | |
775 | return (wxWindow*) this; | |
776 | } | |
777 | ||
ddf7346a DE |
778 | void wxWindow::Refresh(bool eraseBack, const wxRect *rect) |
779 | { | |
780 | [m_cocoaNSView setNeedsDisplay:YES]; | |
781 | } | |
782 | ||
fb896a32 DE |
783 | void wxWindow::SetFocus() |
784 | { | |
67d2dac8 DE |
785 | if([GetNSView() acceptsFirstResponder]) |
786 | [[GetNSView() window] makeFirstResponder: GetNSView()]; | |
fb896a32 DE |
787 | } |
788 | ||
789 | void wxWindow::DoCaptureMouse() | |
790 | { | |
791 | // TODO | |
b9505233 | 792 | sm_capturedWindow = this; |
fb896a32 DE |
793 | } |
794 | ||
795 | void wxWindow::DoReleaseMouse() | |
796 | { | |
797 | // TODO | |
b9505233 | 798 | sm_capturedWindow = NULL; |
fb896a32 DE |
799 | } |
800 | ||
801 | void wxWindow::DoScreenToClient(int *x, int *y) const | |
802 | { | |
803 | // TODO | |
804 | } | |
805 | ||
806 | void wxWindow::DoClientToScreen(int *x, int *y) const | |
807 | { | |
808 | // TODO | |
809 | } | |
810 | ||
811 | // Get size *available for subwindows* i.e. excluding menu bar etc. | |
812 | void wxWindow::DoGetClientSize(int *x, int *y) const | |
813 | { | |
48580976 | 814 | wxLogTrace(wxTRACE_COCOA,wxT("DoGetClientSize:")); |
f298b203 DE |
815 | if(m_wxCocoaScrollView) |
816 | m_wxCocoaScrollView->DoGetClientSize(x,y); | |
816c52cf DE |
817 | else |
818 | wxWindowCocoa::DoGetSize(x,y); | |
fb896a32 DE |
819 | } |
820 | ||
821 | void wxWindow::DoSetClientSize(int width, int height) | |
822 | { | |
48580976 | 823 | wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("DoSetClientSize=(%d,%d)"),width,height); |
f298b203 DE |
824 | if(m_wxCocoaScrollView) |
825 | m_wxCocoaScrollView->ClientSizeToSize(width,height); | |
e08efb8d DE |
826 | CocoaSetWxWindowSize(width,height); |
827 | } | |
828 | ||
829 | void wxWindow::CocoaSetWxWindowSize(int width, int height) | |
830 | { | |
8d8d3633 WS |
831 | wxWindowCocoa::DoSetSize(wxDefaultCoord,wxDefaultCoord,width,height,wxSIZE_USE_EXISTING); |
832 | } | |
833 | ||
834 | void wxWindow::SetLabel(const wxString& WXUNUSED(label)) | |
835 | { | |
ba64d0b6 | 836 | // Intentional no-op. |
8d8d3633 WS |
837 | } |
838 | ||
839 | wxString wxWindow::GetLabel() const | |
840 | { | |
ba64d0b6 DE |
841 | // General Get/Set of labels is implemented in wxControlBase |
842 | wxLogDebug(wxT("wxWindow::GetLabel: Should be overridden if needed.")); | |
8d8d3633 | 843 | return wxEmptyString; |
fb896a32 DE |
844 | } |
845 | ||
846 | int wxWindow::GetCharHeight() const | |
847 | { | |
848 | // TODO | |
849 | return 0; | |
850 | } | |
851 | ||
852 | int wxWindow::GetCharWidth() const | |
853 | { | |
854 | // TODO | |
855 | return 0; | |
856 | } | |
857 | ||
858 | void wxWindow::GetTextExtent(const wxString& string, int *x, int *y, | |
859 | int *descent, int *externalLeading, const wxFont *theFont) const | |
860 | { | |
861 | // TODO | |
862 | } | |
863 | ||
fb896a32 DE |
864 | // Coordinates relative to the window |
865 | void wxWindow::WarpPointer (int x_pos, int y_pos) | |
866 | { | |
867 | // TODO | |
868 | } | |
869 | ||
870 | int wxWindow::GetScrollPos(int orient) const | |
871 | { | |
872 | // TODO | |
873 | return 0; | |
874 | } | |
875 | ||
876 | // This now returns the whole range, not just the number | |
877 | // of positions that we can scroll. | |
878 | int wxWindow::GetScrollRange(int orient) const | |
879 | { | |
880 | // TODO | |
881 | return 0; | |
882 | } | |
883 | ||
884 | int wxWindow::GetScrollThumb(int orient) const | |
885 | { | |
886 | // TODO | |
887 | return 0; | |
888 | } | |
889 | ||
890 | void wxWindow::SetScrollPos(int orient, int pos, bool refresh) | |
891 | { | |
892 | // TODO | |
893 | } | |
894 | ||
816c52cf DE |
895 | void wxWindow::CocoaCreateNSScrollView() |
896 | { | |
f298b203 | 897 | if(!m_wxCocoaScrollView) |
816c52cf | 898 | { |
f298b203 | 899 | m_wxCocoaScrollView = new wxWindowCocoaScrollView(this); |
816c52cf DE |
900 | } |
901 | } | |
902 | ||
fb896a32 DE |
903 | // New function that will replace some of the above. |
904 | void wxWindow::SetScrollbar(int orient, int pos, int thumbVisible, | |
905 | int range, bool refresh) | |
906 | { | |
e08efb8d | 907 | CocoaCreateNSScrollView(); |
fb896a32 DE |
908 | // TODO |
909 | } | |
910 | ||
911 | // Does a physical scroll | |
912 | void wxWindow::ScrollWindow(int dx, int dy, const wxRect *rect) | |
913 | { | |
914 | // TODO | |
915 | } | |
916 | ||
816c52cf DE |
917 | void wxWindow::DoSetVirtualSize( int x, int y ) |
918 | { | |
919 | wxWindowBase::DoSetVirtualSize(x,y); | |
920 | CocoaCreateNSScrollView(); | |
921 | [m_cocoaNSView setFrameSize:NSMakeSize(m_virtualSize.x,m_virtualSize.y)]; | |
922 | } | |
923 | ||
fb896a32 DE |
924 | bool wxWindow::SetFont(const wxFont& font) |
925 | { | |
926 | // TODO | |
8d8d3633 | 927 | return true; |
fb896a32 DE |
928 | } |
929 | ||
4328a6ba DE |
930 | static int CocoaRaiseWindowCompareFunction(id first, id second, void *target) |
931 | { | |
932 | // first should be ordered higher | |
933 | if(first==target) | |
934 | return NSOrderedDescending; | |
935 | // second should be ordered higher | |
936 | if(second==target) | |
937 | return NSOrderedAscending; | |
938 | return NSOrderedSame; | |
939 | } | |
940 | ||
fb896a32 DE |
941 | // Raise the window to the top of the Z order |
942 | void wxWindow::Raise() | |
943 | { | |
4328a6ba | 944 | // wxAutoNSAutoreleasePool pool; |
a82b8141 | 945 | NSView *nsview = GetNSViewForSuperview(); |
4328a6ba DE |
946 | [[nsview superview] sortSubviewsUsingFunction: |
947 | CocoaRaiseWindowCompareFunction | |
948 | context: nsview]; | |
949 | } | |
950 | ||
951 | static int CocoaLowerWindowCompareFunction(id first, id second, void *target) | |
952 | { | |
953 | // first should be ordered lower | |
954 | if(first==target) | |
955 | return NSOrderedAscending; | |
956 | // second should be ordered lower | |
957 | if(second==target) | |
958 | return NSOrderedDescending; | |
959 | return NSOrderedSame; | |
fb896a32 DE |
960 | } |
961 | ||
962 | // Lower the window to the bottom of the Z order | |
963 | void wxWindow::Lower() | |
964 | { | |
4328a6ba DE |
965 | NSView *nsview = GetNSViewForSuperview(); |
966 | [[nsview superview] sortSubviewsUsingFunction: | |
967 | CocoaLowerWindowCompareFunction | |
968 | context: nsview]; | |
fb896a32 DE |
969 | } |
970 | ||
971 | bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y) | |
972 | { | |
8d8d3633 | 973 | return false; |
fb896a32 DE |
974 | } |
975 | ||
976 | // Get the window with the focus | |
dcb68102 | 977 | wxWindow *wxWindowBase::DoFindFocus() |
fb896a32 | 978 | { |
67d2dac8 DE |
979 | // Basically we are somewhat emulating the responder chain here except |
980 | // we are only loking for the first responder in the key window or | |
981 | // upon failing to find one if the main window is different we look | |
982 | // for the first responder in the main window. | |
983 | ||
984 | // Note that the firstResponder doesn't necessarily have to be an | |
985 | // NSView but wxCocoaNSView::GetFromCocoa() will simply return | |
986 | // NULL unless it finds its argument in its hash map. | |
987 | ||
988 | wxCocoaNSView *win; | |
989 | ||
990 | NSWindow *keyWindow = [[NSApplication sharedApplication] keyWindow]; | |
9151dcec | 991 | win = wxCocoaNSView::GetFromCocoa(static_cast<NSView*>([keyWindow firstResponder])); |
67d2dac8 DE |
992 | if(win) |
993 | return win->GetWxWindow(); | |
994 | ||
995 | NSWindow *mainWindow = [[NSApplication sharedApplication] keyWindow]; | |
996 | if(mainWindow == keyWindow) | |
f7e98dee | 997 | return NULL; |
9151dcec | 998 | win = wxCocoaNSView::GetFromCocoa(static_cast<NSView*>([mainWindow firstResponder])); |
67d2dac8 DE |
999 | if(win) |
1000 | return win->GetWxWindow(); | |
1001 | ||
1002 | return NULL; | |
fb896a32 DE |
1003 | } |
1004 | ||
1005 | /* static */ wxWindow *wxWindowBase::GetCapture() | |
1006 | { | |
1007 | // TODO | |
b9505233 | 1008 | return wxWindowCocoa::sm_capturedWindow; |
fb896a32 DE |
1009 | } |
1010 | ||
1011 | wxWindow *wxGetActiveWindow() | |
1012 | { | |
1013 | // TODO | |
1014 | return NULL; | |
1015 | } | |
1016 | ||
7c9428ab DE |
1017 | wxPoint wxGetMousePosition() |
1018 | { | |
1019 | // TODO | |
1020 | return wxDefaultPosition; | |
1021 | } | |
1022 | ||
ca5db7b2 WS |
1023 | wxMouseState wxGetMouseState() |
1024 | { | |
1025 | wxMouseState ms; | |
1026 | // TODO | |
1027 | return ms; | |
1028 | } | |
1029 | ||
7c9428ab DE |
1030 | wxWindow* wxFindWindowAtPointer(wxPoint& pt) |
1031 | { | |
1032 | pt = wxGetMousePosition(); | |
1033 | return NULL; | |
1034 | } |