1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/dfb/toplevel.cpp
3 // Purpose: Top level window, abstraction of wxFrame and wxDialog
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2006 REA Elektronik GmbH
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
14 #include "wx/toplevel.h"
18 #include "wx/dynarray.h"
21 #include "wx/hashmap.h"
22 #include "wx/evtloop.h"
23 #include "wx/dfb/private.h"
25 #define TRACE_EVENTS _T("events")
26 #define TRACE_PAINT _T("paint")
28 // ============================================================================
30 // ============================================================================
32 // mapping of DirectFB windows to wxTLWs:
33 WX_DECLARE_HASH_MAP(DFBWindowID
, wxTopLevelWindowDFB
*,
34 wxIntegerHash
, wxIntegerEqual
,
36 static wxDfbWindowsMap gs_dfbWindowsMap
;
38 // ============================================================================
40 // ============================================================================
42 struct wxDfbPaintRequest
44 wxDfbPaintRequest(const wxRect
& rect
, bool eraseBackground
)
45 : m_rect(rect
), m_eraseBackground(eraseBackground
) {}
46 wxDfbPaintRequest(const wxDfbPaintRequest
& r
)
47 : m_rect(r
.m_rect
), m_eraseBackground(r
.m_eraseBackground
) {}
50 bool m_eraseBackground
;
53 WX_DEFINE_ARRAY_PTR(wxDfbPaintRequest
*, wxDfbQueuedPaintRequests
);
55 // ============================================================================
56 // wxTopLevelWindowDFB
57 // ============================================================================
59 // ----------------------------------------------------------------------------
60 // creation & destruction
61 // ----------------------------------------------------------------------------
63 void wxTopLevelWindowDFB::Init()
66 m_isMaximized
= false;
67 m_fsIsShowing
= false;
70 m_toPaint
= new wxDfbQueuedPaintRequests
;
73 bool wxTopLevelWindowDFB::Create(wxWindow
*parent
,
75 const wxString
& title
,
76 const wxPoint
& posOrig
,
77 const wxSize
& sizeOrig
,
83 // always create a frame of some reasonable, even if arbitrary, size (at
84 // least for MSW compatibility)
85 wxSize
size(sizeOrig
);
86 if ( size
.x
== wxDefaultCoord
|| size
.y
== wxDefaultCoord
)
88 wxSize sizeDefault
= GetDefaultSize();
89 if ( size
.x
== wxDefaultCoord
)
90 size
.x
= sizeDefault
.x
;
91 if ( size
.y
== wxDefaultCoord
)
92 size
.y
= sizeDefault
.y
;
96 if ( pos
.x
== wxDefaultCoord
)
98 if ( pos
.y
== wxDefaultCoord
)
101 // create DirectFB window:
102 wxIDirectFBDisplayLayerPtr layer
= wxDfbGetDisplayLayer();
103 wxCHECK_MSG( layer
, false, _T("no display layer") );
105 DFBWindowDescription desc
;
106 desc
.flags
= (DFBWindowDescriptionFlags
)
108 DWDESC_WIDTH
| DWDESC_HEIGHT
| DWDESC_POSX
| DWDESC_POSY
);
109 desc
.caps
= DWCAPS_DOUBLEBUFFER
;
113 desc
.height
= size
.y
;
114 m_dfbwin
= layer
->CreateWindow(&desc
);
118 // add the new TLW to DFBWindowID->wxTLW map:
120 if ( !m_dfbwin
->GetID(&winid
) )
122 gs_dfbWindowsMap
[winid
] = this;
124 // TLWs are created initially hidden:
125 if ( !m_dfbwin
->SetOpacity(wxALPHA_TRANSPARENT
) )
128 wxWindow::Create(NULL
, id
, pos
, size
, style
, name
);
132 parent
->AddChild(this);
134 wxTopLevelWindows
.Append(this);
137 if ( style
& (wxSTAY_ON_TOP
| wxPOPUP_WINDOW
) )
139 m_dfbwin
->SetStackingClass(DWSC_UPPER
);
142 // direct events in this window to the global event buffer:
143 m_dfbwin
->AttachEventBuffer(wxEventLoop::GetDirectFBEventBuffer());
148 wxTopLevelWindowDFB::~wxTopLevelWindowDFB()
150 m_isBeingDeleted
= true;
152 wxTopLevelWindows
.DeleteObject(this);
154 if ( wxTheApp
->GetTopWindow() == this )
155 wxTheApp
->SetTopWindow(NULL
);
157 if ( wxTopLevelWindows
.empty() && wxTheApp
->GetExitOnFrameDelete() )
159 wxTheApp
->ExitMainLoop();
162 WX_CLEAR_ARRAY(*m_toPaint
);
165 // remove the TLW from DFBWindowID->wxTLW map:
167 if ( m_dfbwin
->GetID(&winid
) )
168 gs_dfbWindowsMap
.erase(winid
);
171 // ----------------------------------------------------------------------------
172 // window size & position
173 // ----------------------------------------------------------------------------
175 void wxTopLevelWindowDFB::DoGetPosition(int *x
, int *y
) const
177 m_dfbwin
->GetPosition(x
, y
);
180 void wxTopLevelWindowDFB::DoGetSize(int *width
, int *height
) const
182 m_dfbwin
->GetSize(width
, height
);
185 void wxTopLevelWindowDFB::DoMoveWindow(int x
, int y
, int width
, int height
)
187 wxPoint curpos
= GetPosition();
188 if ( curpos
.x
!= x
|| curpos
.y
!= y
)
190 m_dfbwin
->MoveTo(x
, y
);
193 wxSize cursize
= GetSize();
194 if ( cursize
.x
!= width
|| cursize
.y
!= height
)
196 m_dfbwin
->Resize(width
, height
);
197 // we must repaint the window after it changed size:
202 // ----------------------------------------------------------------------------
203 // showing and hiding
204 // ----------------------------------------------------------------------------
206 #warning "FIXME: the rest of this file is almost same as for MGL, merge it"
207 bool wxTopLevelWindowDFB::ShowFullScreen(bool show
, long style
)
209 if (show
== m_fsIsShowing
) return false; // return what?
211 m_fsIsShowing
= show
;
215 m_fsSaveStyle
= m_windowStyle
;
216 m_fsSaveFlag
= style
;
217 GetPosition(&m_fsSaveFrame
.x
, &m_fsSaveFrame
.y
);
218 GetSize(&m_fsSaveFrame
.width
, &m_fsSaveFrame
.height
);
220 if ( style
& wxFULLSCREEN_NOCAPTION
)
221 m_windowStyle
&= ~wxCAPTION
;
222 if ( style
& wxFULLSCREEN_NOBORDER
)
223 m_windowStyle
= wxSIMPLE_BORDER
;
226 wxDisplaySize(&x
, &y
);
231 m_windowStyle
= m_fsSaveStyle
;
232 SetSize(m_fsSaveFrame
.x
, m_fsSaveFrame
.y
,
233 m_fsSaveFrame
.width
, m_fsSaveFrame
.height
);
239 bool wxTopLevelWindowDFB::Show(bool show
)
241 if ( !wxTopLevelWindowBase::Show(show
) )
244 // hide/show the window by setting its opacity to 0/full:
245 m_dfbwin
->SetOpacity(show
? m_opacity
: 0);
247 // If this is the first time Show was called, send size event,
248 // so that the frame can adjust itself (think auto layout or single child)
252 wxSizeEvent
event(GetSize(), GetId());
253 event
.SetEventObject(this);
254 GetEventHandler()->ProcessEvent(event
);
257 // FIXME_DFB: do this at all?
258 if ( show
&& AcceptsFocus() )
260 // FIXME_DFB -- don't do this for popup windows?
265 bool wxTopLevelWindowDFB::SetTransparent(wxByte alpha
)
269 if ( !m_dfbwin
->SetOpacity(alpha
) )
277 // ----------------------------------------------------------------------------
278 // maximize, minimize etc.
279 // ----------------------------------------------------------------------------
281 void wxTopLevelWindowDFB::Maximize(bool maximize
)
284 wxClientDisplayRect(&x
, &y
, &w
, &h
);
286 if ( maximize
&& !m_isMaximized
)
288 m_isMaximized
= true;
290 GetPosition(&m_savedFrame
.x
, &m_savedFrame
.y
);
291 GetSize(&m_savedFrame
.width
, &m_savedFrame
.height
);
295 else if ( !maximize
&& m_isMaximized
)
297 m_isMaximized
= false;
298 SetSize(m_savedFrame
.x
, m_savedFrame
.y
,
299 m_savedFrame
.width
, m_savedFrame
.height
);
303 bool wxTopLevelWindowDFB::IsMaximized() const
305 return m_isMaximized
;
308 void wxTopLevelWindowDFB::Restore()
316 void wxTopLevelWindowDFB::Iconize(bool WXUNUSED(iconize
))
318 wxFAIL_MSG(wxT("Iconize not supported under wxDFB"));
321 bool wxTopLevelWindowDFB::IsIconized() const
327 // ----------------------------------------------------------------------------
328 // surfaces and painting
329 // ----------------------------------------------------------------------------
331 wxIDirectFBSurfacePtr
wxTopLevelWindowDFB::ObtainDfbSurface() const
333 return m_dfbwin
->GetSurface();
336 void wxTopLevelWindowDFB::HandleQueuedPaintRequests()
338 wxDfbQueuedPaintRequests
& toPaint
= *m_toPaint
;
339 if ( toPaint
.empty() )
340 return; // nothing to do
342 // process queued paint requests:
343 wxRect
winRect(wxPoint(0, 0), GetSize());
346 size_t cnt
= toPaint
.size();
347 for ( size_t i
= 0; i
< cnt
; ++i
)
349 const wxDfbPaintRequest
& request
= *toPaint
[i
];
351 wxRect
clipped(request
.m_rect
);
353 wxLogTrace(TRACE_PAINT
,
354 _T("%p ('%s'): processing paint request [x=%i,y=%i,w=%i,h=%i]"),
355 this, GetName().c_str(),
356 clipped
.x
, clipped
.y
, clipped
.width
, clipped
.height
);
358 clipped
.Intersect(winRect
);
359 if ( clipped
.IsEmpty() )
360 continue; // nothing to refresh
362 PaintWindow(clipped
, request
.m_eraseBackground
);
364 // remember rectangle covering all repainted areas:
365 if ( paintedRect
.IsEmpty() )
366 paintedRect
= clipped
;
368 paintedRect
.Union(clipped
);
371 WX_CLEAR_ARRAY(toPaint
);
373 if ( paintedRect
.IsEmpty() )
374 return; // no painting occurred, no need to flip
376 // flip the surface to make the changes visible:
377 DFBRegion r
= {paintedRect
.GetLeft(), paintedRect
.GetTop(),
378 paintedRect
.GetRight(), paintedRect
.GetBottom()};
379 DFBRegion
*rptr
= (winRect
== paintedRect
) ? NULL
: &r
;
381 GetDfbSurface()->Flip(rptr
, DSFLIP_NONE
);
384 void wxTopLevelWindowDFB::DoRefreshRect(const wxRect
& rect
, bool eraseBack
)
386 // defer paiting until idle time or until Update() is called:
387 m_toPaint
->push_back(new wxDfbPaintRequest(rect
, eraseBack
));
390 void wxTopLevelWindowDFB::Update()
392 HandleQueuedPaintRequests();
395 // ---------------------------------------------------------------------------
397 // ---------------------------------------------------------------------------
400 void wxTopLevelWindowDFB::HandleDFBWindowEvent(const wxDFBWindowEvent
& event_
)
402 const DFBWindowEvent
& event
= event_
;
404 if ( gs_dfbWindowsMap
.find(event
.window_id
) == gs_dfbWindowsMap
.end() )
406 wxLogTrace(TRACE_EVENTS
,
407 _T("received event for unknown DirectFB window, ignoring"));
411 wxTopLevelWindowDFB
*tlw
= gs_dfbWindowsMap
[event
.window_id
];
412 wxWindow
*recipient
= NULL
;
413 void (wxWindow::*handlerFunc
)(const wxDFBWindowEvent
&) = NULL
;
415 switch ( event
.type
)
420 recipient
= wxWindow::FindFocus();
421 handlerFunc
= &wxWindowDFB::HandleKeyEvent
;
428 wxFAIL_MSG( _T("invalid event type") );
435 wxLogTrace(TRACE_EVENTS
, _T("ignoring event: no recipient window"));
439 wxCHECK_RET( recipient
&& recipient
->GetTLW() == tlw
,
440 _T("event recipient not in TLW which received the event") );
442 // process the event:
443 (recipient
->*handlerFunc
)(event_
);
446 // ---------------------------------------------------------------------------
447 // idle events processing
448 // ---------------------------------------------------------------------------
450 void wxTopLevelWindowDFB::OnInternalIdle()
452 wxTopLevelWindowBase::OnInternalIdle();
453 HandleQueuedPaintRequests();