X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/449c567346a1b3937e532cd87aac007faad76b04..cc402e6431b66a8eb7d567caa55a1bece42902b7:/src/cocoa/dcclient.mm diff --git a/src/cocoa/dcclient.mm b/src/cocoa/dcclient.mm index fe3ec9eb85..2f2f8ddf59 100644 --- a/src/cocoa/dcclient.mm +++ b/src/cocoa/dcclient.mm @@ -30,28 +30,66 @@ IMPLEMENT_DYNAMIC_CLASS(wxWindowDC, wxDC) wxWindowDC::wxWindowDC(void) : m_window(NULL) +, m_lockedNSView(NULL) { }; wxWindowDC::wxWindowDC( wxWindow *window ) : m_window(window) +, m_lockedNSView(NULL) { - wxFAIL_MSG("non-client window DC's are not supported"); + wxLogDebug(wxT("non-client window DC's are not supported, oh well")); }; wxWindowDC::~wxWindowDC(void) { + CocoaUnwindStackAndLoseFocus(); }; +bool wxWindowDC::CocoaLockFocusOnNSView(WX_NSView nsview) +{ + if([nsview lockFocusIfCanDraw]) + { + sm_cocoaDCStack.Insert(this); + m_cocoaFlipped = [nsview isFlipped]; + m_cocoaHeight = [nsview bounds].size.height; + CocoaApplyTransformations(); + m_lockedNSView = nsview; + return true; + } + wxLogDebug(wxT("focus lock failed!")); + return false; +} + +bool wxWindowDC::CocoaUnlockFocusOnNSView() +{ + [[m_lockedNSView window] flushWindow]; + [m_lockedNSView unlockFocus]; + m_lockedNSView = NULL; + return true; +} + +bool wxWindowDC::CocoaLockFocus() +{ + wxLogTrace(wxTRACE_COCOA,wxT("Locking focus on wxWindowDC=%p, NSView=%p"),this, m_window->GetNonClientNSView()); + return CocoaLockFocusOnNSView(m_window->GetNonClientNSView()); +} + +bool wxWindowDC::CocoaUnlockFocus() +{ + wxLogTrace(wxTRACE_COCOA,wxT("Unlocking focus on wxWindowDC=%p, NSView=%p"),this, m_window->GetNonClientNSView()); + return CocoaUnlockFocusOnNSView(); +} + void wxWindowDC::Clear() { - wxASSERT(m_window); + if(!CocoaTakeFocus()) return; NSGraphicsContext *context = [NSGraphicsContext currentContext]; [context saveGraphicsState]; [m_backgroundBrush.GetNSColor() set]; - [NSBezierPath fillRect:[m_window->GetNSView() bounds]]; + [NSBezierPath fillRect:[m_lockedNSView bounds]]; [context restoreGraphicsState]; } @@ -77,25 +115,14 @@ wxClientDC::~wxClientDC(void) bool wxClientDC::CocoaLockFocus() { - wxLogDebug("Locking focus on wxClientDC=%p, NSView=%p",this, m_window->GetNSView()); - if([m_window->GetNSView() lockFocusIfCanDraw]) - { - sm_cocoaDCStack.Insert(this); - m_cocoaFlipped = [m_window->GetNSView() isFlipped]; - m_cocoaHeight = [m_window->GetNSView() bounds].size.height; - CocoaApplyTransformations(); - return true; - } - wxLogDebug("focus lock failed!"); - return false; + wxLogTrace(wxTRACE_COCOA,wxT("Locking focus on wxClientDC=%p, NSView=%p"),this, m_window->GetNSView()); + return CocoaLockFocusOnNSView(m_window->GetNSView()); } bool wxClientDC::CocoaUnlockFocus() { - wxLogDebug("Unlocking focus on wxClientDC=%p, NSView=%p",this, m_window->GetNSView()); - [[m_window->GetNSView() window] flushWindow]; - [m_window->GetNSView() unlockFocus]; - return true; + wxLogTrace(wxTRACE_COCOA,wxT("Unlocking focus on wxClientDC=%p, NSView=%p"),this, m_window->GetNSView()); + return CocoaUnlockFocusOnNSView(); } /* @@ -110,8 +137,9 @@ wxPaintDC::wxPaintDC(void) wxPaintDC::wxPaintDC( wxWindow *window ) { m_window = window; - wxASSERT_MSG([NSView focusView]==window->GetNSView(), "PaintDC's NSView does not have focus. Please use wxPaintDC only as the first DC created in a paint handler"); + wxASSERT_MSG([NSView focusView]==window->GetNSView(), wxT("PaintDC's NSView does not have focus. Please use wxPaintDC only as the first DC created in a paint handler")); sm_cocoaDCStack.Insert(this); + m_lockedNSView = window->GetNSView(); m_cocoaFlipped = [window->GetNSView() isFlipped]; m_cocoaHeight = [window->GetNSView() bounds].size.height; CocoaApplyTransformations(); @@ -124,7 +152,7 @@ wxPaintDC::~wxPaintDC(void) bool wxPaintDC::CocoaLockFocus() { - wxFAIL_MSG("wxPaintDC cannot be asked to lock focus!"); + wxFAIL_MSG(wxT("wxPaintDC cannot be asked to lock focus!")); return false; }