1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/nonownedwnd_osx.cpp
3 // Purpose: implementation of wxNonOwnedWindow
4 // Author: Stefan Csomor
7 // Copyright: (c) Stefan Csomor 2008
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
16 #include "wx/dcmemory.h"
20 #include "wx/hashmap.h"
21 #include "wx/evtloop.h"
22 #include "wx/tooltip.h"
23 #include "wx/nonownedwnd.h"
25 #include "wx/osx/private.h"
26 #include "wx/settings.h"
29 #if wxUSE_SYSTEM_OPTIONS
30 #include "wx/sysopt.h"
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
37 // trace mask for activation tracing messages
38 #define TRACE_ACTIVATE "activation"
40 wxWindow
* g_MacLastWindow
= NULL
;
42 clock_t wxNonOwnedWindow::s_lastFlush
= 0;
44 // unified title and toolbar constant - not in Tiger headers, so we duplicate it here
45 #define kWindowUnifiedTitleAndToolbarAttribute (1 << 7)
47 // ---------------------------------------------------------------------------
48 // wxWindowMac utility functions
49 // ---------------------------------------------------------------------------
51 WX_DECLARE_HASH_MAP(WXWindow
, wxNonOwnedWindowImpl
*, wxPointerHash
, wxPointerEqual
, MacWindowMap
);
53 static MacWindowMap wxWinMacWindowList
;
55 wxNonOwnedWindow
* wxNonOwnedWindow::GetFromWXWindow( WXWindow win
)
57 wxNonOwnedWindowImpl
* impl
= wxNonOwnedWindowImpl::FindFromWXWindow(win
);
59 return ( impl
!= NULL
? impl
->GetWXPeer() : NULL
) ;
62 wxNonOwnedWindowImpl
* wxNonOwnedWindowImpl::FindFromWXWindow (WXWindow window
)
64 MacWindowMap::iterator node
= wxWinMacWindowList
.find(window
);
66 return (node
== wxWinMacWindowList
.end()) ? NULL
: node
->second
;
69 void wxNonOwnedWindowImpl::RemoveAssociations( wxNonOwnedWindowImpl
* impl
)
71 MacWindowMap::iterator it
;
72 for ( it
= wxWinMacWindowList
.begin(); it
!= wxWinMacWindowList
.end(); ++it
)
74 if ( it
->second
== impl
)
76 wxWinMacWindowList
.erase(it
);
82 void wxNonOwnedWindowImpl::Associate( WXWindow window
, wxNonOwnedWindowImpl
*impl
)
84 // adding NULL WindowRef is (first) surely a result of an error and
86 wxCHECK_RET( window
!= (WXWindow
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
88 wxWinMacWindowList
[window
] = impl
;
91 // ----------------------------------------------------------------------------
92 // wxNonOwnedWindow creation
93 // ----------------------------------------------------------------------------
95 IMPLEMENT_ABSTRACT_CLASS( wxNonOwnedWindowImpl
, wxObject
)
97 wxNonOwnedWindow
*wxNonOwnedWindow::s_macDeactivateWindow
= NULL
;
99 void wxNonOwnedWindow::Init()
102 m_isNativeWindowWrapper
= false;
105 bool wxNonOwnedWindow::Create(wxWindow
*parent
,
107 const wxPoint
& posOrig
,
108 const wxSize
& sizeOrig
,
110 const wxString
& name
)
112 m_windowStyle
= style
;
116 m_windowId
= id
== -1 ? NewControlId() : id
;
117 m_windowStyle
= style
;
120 // use the appropriate defaults for the position and size if necessary
121 wxSize
size(sizeOrig
);
122 if ( !size
.IsFullySpecified() )
123 size
.SetDefaults(wxTopLevelWindow::GetDefaultSize());
125 wxPoint
pos(posOrig
);
126 if ( !pos
.IsFullySpecified() )
128 wxRect rectWin
= wxRect(size
).CentreIn(wxGetClientDisplayRect());
130 // The size of the window is often not really known yet, TLWs are often
131 // created with some small initial size and later are fitted to contain
132 // their children so centering the window will show it too much to the
133 // right and bottom, adjust for it by putting it more to the left and
138 pos
.SetDefaults(rectWin
.GetPosition());
142 m_nowpeer
= wxNonOwnedWindowImpl::CreateNonOwnedWindow
146 style
, GetExtraStyle(),
149 wxNonOwnedWindowImpl::Associate( m_nowpeer
->GetWXWindow() , m_nowpeer
) ;
150 SetPeer(wxWidgetImpl::CreateContentView(this));
152 DoSetWindowVariant( m_windowVariant
) ;
154 wxWindowCreateEvent
event(this);
155 HandleWindowEvent(event
);
157 SetBackgroundColour(wxSystemSettings::GetColour( wxSYS_COLOUR_3DFACE
));
160 parent
->AddChild(this);
165 bool wxNonOwnedWindow::Create(wxWindow
*parent
, WXWindow nativeWindow
)
168 parent
->AddChild(this);
170 SubclassWin(nativeWindow
);
175 void wxNonOwnedWindow::SubclassWin(WXWindow nativeWindow
)
177 wxASSERT_MSG( !m_isNativeWindowWrapper
, wxT("subclassing window twice?") );
178 wxASSERT_MSG( m_nowpeer
== NULL
, wxT("window already was created") );
180 m_nowpeer
= wxNonOwnedWindowImpl::CreateNonOwnedWindow(this, GetParent(), nativeWindow
);
181 m_isNativeWindowWrapper
= true;
182 wxNonOwnedWindowImpl::Associate( m_nowpeer
->GetWXWindow() , m_nowpeer
) ;
183 SetPeer(wxWidgetImpl::CreateContentView(this));
186 void wxNonOwnedWindow::UnsubclassWin()
188 wxASSERT_MSG( m_isNativeWindowWrapper
, wxT("window was not subclassed") );
191 GetParent()->RemoveChild(this);
193 wxNonOwnedWindowImpl::RemoveAssociations(m_nowpeer
) ;
196 m_isNativeWindowWrapper
= false;
200 wxNonOwnedWindow::~wxNonOwnedWindow()
204 wxNonOwnedWindowImpl::RemoveAssociations(m_nowpeer
) ;
210 // avoid dangling refs
211 if ( s_macDeactivateWindow
== this )
212 s_macDeactivateWindow
= NULL
;
215 bool wxNonOwnedWindow::Destroy()
219 return wxWindow::Destroy();
222 void wxNonOwnedWindow::WillBeDestroyed()
225 m_nowpeer
->WillBeDestroyed();
228 // ----------------------------------------------------------------------------
229 // wxNonOwnedWindow misc
230 // ----------------------------------------------------------------------------
232 bool wxNonOwnedWindow::OSXShowWithEffect(bool show
,
236 // Cocoa code needs to manage window visibility on its own and so calls
237 // wxWindow::Show() as needed but if we already changed the internal
238 // visibility flag here, Show() would do nothing, so avoid doing it
240 if ( !wxWindow::Show(show
) )
244 if ( effect
== wxSHOW_EFFECT_NONE
||
245 !m_nowpeer
|| !m_nowpeer
->ShowWithEffect(show
, effect
, timeout
) )
250 // as apps expect a size event to occur when the window is shown,
251 // generate one when it is shown with effect too
253 wxSizeEvent
event(GetSize(), m_windowId
);
254 event
.SetEventObject(this);
255 HandleWindowEvent(event
);
261 wxPoint
wxNonOwnedWindow::GetClientAreaOrigin() const
263 int left
, top
, width
, height
;
264 m_nowpeer
->GetContentArea(left
, top
, width
, height
);
265 return wxPoint(left
, top
);
268 bool wxNonOwnedWindow::SetBackgroundColour(const wxColour
& c
)
270 if ( !wxWindow::SetBackgroundColour(c
) && m_hasBgCol
)
273 if ( GetBackgroundStyle() != wxBG_STYLE_CUSTOM
)
276 return m_nowpeer
->SetBackgroundColour(c
);
281 void wxNonOwnedWindow::SetWindowStyleFlag(long flags
)
283 if (flags
== GetWindowStyleFlag())
286 wxWindow::SetWindowStyleFlag(flags
);
289 m_nowpeer
->SetWindowStyleFlag(flags
);
292 // Raise the window to the top of the Z order
293 void wxNonOwnedWindow::Raise()
298 // Lower the window to the bottom of the Z order
299 void wxNonOwnedWindow::Lower()
304 void wxNonOwnedWindow::HandleActivated( double timestampsec
, bool didActivate
)
306 MacActivate( (int) (timestampsec
* 1000) , didActivate
);
307 wxActivateEvent
wxevent(wxEVT_ACTIVATE
, didActivate
, GetId());
308 wxevent
.SetTimestamp( (int) (timestampsec
* 1000) );
309 wxevent
.SetEventObject(this);
310 HandleWindowEvent(wxevent
);
313 void wxNonOwnedWindow::HandleResized( double timestampsec
)
316 wxSizeEvent
wxevent( GetSize() , GetId());
317 wxevent
.SetTimestamp( (int) (timestampsec
* 1000) );
318 wxevent
.SetEventObject( this );
319 HandleWindowEvent(wxevent
);
320 // we have to inform some controls that have to reset things
321 // relative to the toplevel window (e.g. OpenGL buffers)
322 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
325 void wxNonOwnedWindow::HandleResizing( double WXUNUSED(timestampsec
), wxRect
* rect
)
329 // this is a EVT_SIZING not a EVT_SIZE type !
330 wxSizeEvent
wxevent( r
, GetId() ) ;
331 wxevent
.SetEventObject( this ) ;
332 if ( HandleWindowEvent(wxevent
) )
333 r
= wxevent
.GetRect() ;
335 if ( GetMaxWidth() != -1 && r
.GetWidth() > GetMaxWidth() )
336 r
.SetWidth( GetMaxWidth() ) ;
337 if ( GetMaxHeight() != -1 && r
.GetHeight() > GetMaxHeight() )
338 r
.SetHeight( GetMaxHeight() ) ;
339 if ( GetMinWidth() != -1 && r
.GetWidth() < GetMinWidth() )
340 r
.SetWidth( GetMinWidth() ) ;
341 if ( GetMinHeight() != -1 && r
.GetHeight() < GetMinHeight() )
342 r
.SetHeight( GetMinHeight() ) ;
345 // TODO actuall this is too early, in case the window extents are adjusted
346 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
349 void wxNonOwnedWindow::HandleMoved( double timestampsec
)
351 wxMoveEvent
wxevent( GetPosition() , GetId());
352 wxevent
.SetTimestamp( (int) (timestampsec
* 1000) );
353 wxevent
.SetEventObject( this );
354 HandleWindowEvent(wxevent
);
357 void wxNonOwnedWindow::MacDelayedDeactivation(long timestamp
)
359 if (s_macDeactivateWindow
)
361 wxLogTrace(TRACE_ACTIVATE
,
362 wxT("Doing delayed deactivation of %p"),
363 s_macDeactivateWindow
);
365 s_macDeactivateWindow
->MacActivate(timestamp
, false);
369 void wxNonOwnedWindow::MacActivate( long timestamp
, bool WXUNUSED(inIsActivating
) )
371 wxLogTrace(TRACE_ACTIVATE
, wxT("TopLevel=%p::MacActivate"), this);
373 if (s_macDeactivateWindow
== this)
374 s_macDeactivateWindow
= NULL
;
376 MacDelayedDeactivation(timestamp
);
379 bool wxNonOwnedWindow::Show(bool show
)
381 if ( !wxWindow::Show(show
) )
385 m_nowpeer
->Show(show
);
389 // because apps expect a size event to occur at this moment
391 wxSizeEvent
event(GetSize() , m_windowId
);
392 event
.SetEventObject(this);
393 HandleWindowEvent(event
);
399 bool wxNonOwnedWindow::SetTransparent(wxByte alpha
)
401 return m_nowpeer
->SetTransparent(alpha
);
405 bool wxNonOwnedWindow::CanSetTransparent()
407 return m_nowpeer
->CanSetTransparent();
411 void wxNonOwnedWindow::SetExtraStyle(long exStyle
)
413 if ( GetExtraStyle() == exStyle
)
416 wxWindow::SetExtraStyle( exStyle
) ;
419 m_nowpeer
->SetExtraStyle(exStyle
);
422 bool wxNonOwnedWindow::SetBackgroundStyle(wxBackgroundStyle style
)
424 if ( !wxWindow::SetBackgroundStyle(style
) )
427 return m_nowpeer
? m_nowpeer
->SetBackgroundStyle(style
) : true;
430 void wxNonOwnedWindow::DoMoveWindow(int x
, int y
, int width
, int height
)
432 if ( m_nowpeer
== NULL
)
435 m_cachedClippedRectValid
= false ;
437 m_nowpeer
->MoveWindow(x
, y
, width
, height
);
438 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
441 void wxNonOwnedWindow::DoGetPosition( int *x
, int *y
) const
443 if ( m_nowpeer
== NULL
)
447 m_nowpeer
->GetPosition(x1
, y1
);
455 void wxNonOwnedWindow::DoGetSize( int *width
, int *height
) const
457 if ( m_nowpeer
== NULL
)
462 m_nowpeer
->GetSize(w
, h
);
470 void wxNonOwnedWindow::DoGetClientSize( int *width
, int *height
) const
472 if ( m_nowpeer
== NULL
)
476 // under iphone with a translucent status bar the m_nowpeer returns the
477 // inner area, while the content area extends under the translucent
478 // status bar, therefore we use the content view's area
479 #ifdef __WXOSX_IPHONE__
480 GetPeer()->GetContentArea(left
, top
, w
, h
);
482 m_nowpeer
->GetContentArea(left
, top
, w
, h
);
491 void wxNonOwnedWindow::WindowWasPainted()
493 s_lastFlush
= clock();
496 void wxNonOwnedWindow::Update()
498 if ( clock() - s_lastFlush
> CLOCKS_PER_SEC
/ 30 )
500 s_lastFlush
= clock();
505 WXWindow
wxNonOwnedWindow::GetWXWindow() const
507 return m_nowpeer
? m_nowpeer
->GetWXWindow() : NULL
;
510 // ---------------------------------------------------------------------------
511 // Shape implementation
512 // ---------------------------------------------------------------------------
514 bool wxNonOwnedWindow::DoClearShape()
518 wxSize sz
= GetClientSize();
519 wxRegion
region(0, 0, sz
.x
, sz
.y
);
521 return m_nowpeer
->SetShape(region
);
524 bool wxNonOwnedWindow::DoSetRegionShape(const wxRegion
& region
)
528 return m_nowpeer
->SetShape(region
);
531 #if wxUSE_GRAPHICS_CONTEXT
533 #include "wx/scopedptr.h"
535 bool wxNonOwnedWindow::DoSetPathShape(const wxGraphicsPath
& path
)
539 // Convert the path to wxRegion by rendering the path on a window-sized
540 // bitmap, creating a mask from it and finally creating the region from
542 wxBitmap
bmp(GetSize());
546 dc
.SetBackground(*wxBLACK
);
549 wxScopedPtr
<wxGraphicsContext
> context(wxGraphicsContext::Create(dc
));
550 context
->SetBrush(*wxWHITE
);
551 context
->FillPath(m_shapePath
);
554 bmp
.SetMask(new wxMask(bmp
, *wxBLACK
));
556 return DoSetRegionShape(wxRegion(bmp
));
559 #endif // wxUSE_GRAPHICS_CONTEXT