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"
20 #include "wx/hashmap.h"
21 #include "wx/evtloop.h"
22 #include "wx/dfb/private.h"
24 #define TRACE_EVENTS _T("events")
25 #define TRACE_PAINT _T("paint")
27 // ============================================================================
29 // ============================================================================
31 // mapping of DirectFB windows to wxTLWs:
32 WX_DECLARE_HASH_MAP(DFBWindowID
, wxTopLevelWindowDFB
*,
33 wxIntegerHash
, wxIntegerEqual
,
35 static wxDfbWindowsMap gs_dfbWindowsMap
;
37 // ============================================================================
39 // ============================================================================
41 // Queue of paint requests
42 class wxDfbQueuedPaintRequests
45 ~wxDfbQueuedPaintRequests() { Clear(); }
47 // Adds paint request to the queue
48 void Add(const wxRect
& rect
)
50 // We use a simple implementation here for now: all refresh requests
51 // are merged together into single rectangle that is superset of
52 // all the requested rectangles. This wastes some blitting and painting
53 // time, but OTOH, EVT_PAINT handler is called only once per window.
54 m_invalidated
.Union(rect
);
57 // Is the queue empty?
58 bool IsEmpty() const { return m_invalidated
.IsEmpty(); }
61 void Clear() { m_invalidated
= wxRect(); }
63 // Gets the next request in the queue, returns true if there was one,
64 // false if the queue was empty
65 bool GetNext(wxRect
& rect
)
67 if ( m_invalidated
.IsEmpty() )
71 Clear(); // there's only one item in the queue
76 // currently invalidated region
80 // ============================================================================
81 // wxTopLevelWindowDFB
82 // ============================================================================
84 // ----------------------------------------------------------------------------
85 // creation & destruction
86 // ----------------------------------------------------------------------------
88 void wxTopLevelWindowDFB::Init()
91 m_isMaximized
= false;
92 m_fsIsShowing
= false;
95 m_toPaint
= new wxDfbQueuedPaintRequests
;
99 bool wxTopLevelWindowDFB::Create(wxWindow
*parent
,
101 const wxString
& title
,
102 const wxPoint
& posOrig
,
103 const wxSize
& sizeOrig
,
105 const wxString
&name
)
109 // always create a frame of some reasonable, even if arbitrary, size (at
110 // least for MSW compatibility)
111 wxSize
size(sizeOrig
);
112 if ( size
.x
== wxDefaultCoord
|| size
.y
== wxDefaultCoord
)
114 wxSize sizeDefault
= GetDefaultSize();
115 if ( size
.x
== wxDefaultCoord
)
116 size
.x
= sizeDefault
.x
;
117 if ( size
.y
== wxDefaultCoord
)
118 size
.y
= sizeDefault
.y
;
121 wxPoint
pos(posOrig
);
122 if ( pos
.x
== wxDefaultCoord
)
124 if ( pos
.y
== wxDefaultCoord
)
127 // create DirectFB window:
128 wxIDirectFBDisplayLayerPtr
layer(wxIDirectFB::Get()->GetDisplayLayer());
129 wxCHECK_MSG( layer
, false, _T("no display layer") );
131 DFBWindowDescription desc
;
132 desc
.flags
= (DFBWindowDescriptionFlags
)
134 DWDESC_WIDTH
| DWDESC_HEIGHT
| DWDESC_POSX
| DWDESC_POSY
);
135 desc
.caps
= DWCAPS_DOUBLEBUFFER
;
139 desc
.height
= size
.y
;
140 m_dfbwin
= layer
->CreateWindow(&desc
);
144 // add the new TLW to DFBWindowID->wxTLW map:
146 if ( !m_dfbwin
->GetID(&winid
) )
148 gs_dfbWindowsMap
[winid
] = this;
150 // TLWs are created initially hidden:
151 if ( !m_dfbwin
->SetOpacity(wxALPHA_TRANSPARENT
) )
154 if ( !wxWindow::Create(NULL
, id
, pos
, size
, style
, name
) )
159 parent
->AddChild(this);
161 wxTopLevelWindows
.Append(this);
164 if ( style
& (wxSTAY_ON_TOP
| wxPOPUP_WINDOW
) )
166 m_dfbwin
->SetStackingClass(DWSC_UPPER
);
169 // direct events in this window to the global event buffer:
170 m_dfbwin
->AttachEventBuffer(wxEventLoop::GetDirectFBEventBuffer());
175 wxTopLevelWindowDFB::~wxTopLevelWindowDFB()
177 m_isBeingDeleted
= true;
179 // destroy all children before we destroy the underlying DirectFB window,
180 // so that if any of them does something with the TLW, it will still work:
183 // it's safe to delete the underlying DirectFB window now:
189 // remove the TLW from DFBWindowID->wxTLW map:
191 if ( m_dfbwin
->GetID(&winid
) )
192 gs_dfbWindowsMap
.erase(winid
);
198 // ----------------------------------------------------------------------------
199 // window size & position
200 // ----------------------------------------------------------------------------
202 void wxTopLevelWindowDFB::DoGetPosition(int *x
, int *y
) const
204 m_dfbwin
->GetPosition(x
, y
);
207 void wxTopLevelWindowDFB::DoGetSize(int *width
, int *height
) const
209 m_dfbwin
->GetSize(width
, height
);
212 void wxTopLevelWindowDFB::DoMoveWindow(int x
, int y
, int width
, int height
)
214 wxPoint curpos
= GetPosition();
215 if ( curpos
.x
!= x
|| curpos
.y
!= y
)
217 m_dfbwin
->MoveTo(x
, y
);
220 wxSize cursize
= GetSize();
221 if ( cursize
.x
!= width
|| cursize
.y
!= height
)
223 // changing window's size changes its surface:
224 InvalidateDfbSurface();
226 m_dfbwin
->Resize(width
, height
);
228 // we must repaint the window after it changed size:
234 // ----------------------------------------------------------------------------
235 // showing and hiding
236 // ----------------------------------------------------------------------------
238 #warning "FIXME: the rest of this file is almost same as for MGL, merge it"
239 bool wxTopLevelWindowDFB::ShowFullScreen(bool show
, long style
)
241 if (show
== m_fsIsShowing
) return false; // return what?
243 m_fsIsShowing
= show
;
247 m_fsSaveStyle
= m_windowStyle
;
248 m_fsSaveFlag
= style
;
249 GetPosition(&m_fsSaveFrame
.x
, &m_fsSaveFrame
.y
);
250 GetSize(&m_fsSaveFrame
.width
, &m_fsSaveFrame
.height
);
252 if ( style
& wxFULLSCREEN_NOCAPTION
)
253 m_windowStyle
&= ~wxCAPTION
;
254 if ( style
& wxFULLSCREEN_NOBORDER
)
255 m_windowStyle
= wxSIMPLE_BORDER
;
258 wxDisplaySize(&x
, &y
);
263 m_windowStyle
= m_fsSaveStyle
;
264 SetSize(m_fsSaveFrame
.x
, m_fsSaveFrame
.y
,
265 m_fsSaveFrame
.width
, m_fsSaveFrame
.height
);
271 bool wxTopLevelWindowDFB::Show(bool show
)
273 // NB: this calls wxWindow::Show() and so ensures DoRefreshWindow() is
274 // called on the window -- we'll need that below
275 if ( !wxTopLevelWindowBase::Show(show
) )
278 // If this is the first time Show was called, send size event,
279 // so that the frame can adjust itself (think auto layout or single child)
283 wxSizeEvent
event(GetSize(), GetId());
284 event
.SetEventObject(this);
285 GetEventHandler()->ProcessEvent(event
);
288 // make sure the window is fully painted, with all pending updates, before
289 // DFB WM shows it, otherwise it would attempt to show either empty (=
290 // black) window surface (if shown for the first time) or it would show
291 // window with outdated content; note that the window was already refreshed
292 // in the wxTopLevelWindowBase::Show() call above:
296 // hide/show the window by setting its opacity to 0/full:
297 m_dfbwin
->SetOpacity(show
? m_opacity
: 0);
301 wxWindow
*focused
= wxWindow::FindFocus();
302 if ( focused
&& focused
->GetTLW() == this )
306 else if ( AcceptsFocus() )
308 // FIXME: we should probably always call SetDfbFocus instead
309 // and call SetFocus() from wxActivateEvent/DWET_GOTFOCUS
318 bool wxTopLevelWindowDFB::SetTransparent(wxByte alpha
)
322 if ( !m_dfbwin
->SetOpacity(alpha
) )
330 // ----------------------------------------------------------------------------
331 // maximize, minimize etc.
332 // ----------------------------------------------------------------------------
334 void wxTopLevelWindowDFB::Maximize(bool maximize
)
337 wxClientDisplayRect(&x
, &y
, &w
, &h
);
339 if ( maximize
&& !m_isMaximized
)
341 m_isMaximized
= true;
343 GetPosition(&m_savedFrame
.x
, &m_savedFrame
.y
);
344 GetSize(&m_savedFrame
.width
, &m_savedFrame
.height
);
348 else if ( !maximize
&& m_isMaximized
)
350 m_isMaximized
= false;
351 SetSize(m_savedFrame
.x
, m_savedFrame
.y
,
352 m_savedFrame
.width
, m_savedFrame
.height
);
356 bool wxTopLevelWindowDFB::IsMaximized() const
358 return m_isMaximized
;
361 void wxTopLevelWindowDFB::Restore()
369 void wxTopLevelWindowDFB::Iconize(bool WXUNUSED(iconize
))
371 wxFAIL_MSG(wxT("Iconize not supported under wxDFB"));
374 bool wxTopLevelWindowDFB::IsIconized() const
380 // ----------------------------------------------------------------------------
381 // surfaces and painting
382 // ----------------------------------------------------------------------------
384 wxIDirectFBSurfacePtr
wxTopLevelWindowDFB::ObtainDfbSurface() const
386 return m_dfbwin
->GetSurface();
389 void wxTopLevelWindowDFB::HandleQueuedPaintRequests()
391 if ( m_toPaint
->IsEmpty() )
392 return; // nothing to do
394 if ( IsFrozen() || !IsShown() )
396 // nothing to do if the window is frozen or hidden; clear the queue
397 // and return (note that it's OK to clear the queue even if the window
398 // is frozen, because Thaw() calls Refresh()):
403 // process queued paint requests:
404 wxRect
winRect(wxPoint(0, 0), GetSize());
407 // important note: all DCs created from now until m_isPainting is reset to
408 // false will not update the front buffer as this flag indicates that we'll
409 // blit the entire back buffer to front soon
413 int requestsCount
= 0;
417 while ( m_toPaint
->GetNext(request
) )
422 wxRect
clipped(request
);
423 clipped
.Intersect(winRect
);
424 if ( clipped
.IsEmpty() )
425 continue; // nothing to refresh
427 wxLogTrace(TRACE_PAINT
,
428 _T("%p ('%s'): processing paint request [%i,%i,%i,%i]"),
429 this, GetName().c_str(),
430 clipped
.x
, clipped
.y
, clipped
.GetRight(), clipped
.GetBottom());
432 PaintWindow(clipped
);
434 // remember rectangle covering all repainted areas:
435 if ( paintedRect
.IsEmpty() )
436 paintedRect
= clipped
;
438 paintedRect
.Union(clipped
);
441 m_isPainting
= false;
445 if ( paintedRect
.IsEmpty() )
446 return; // no painting occurred, no need to flip
448 // Flip the surface to make the changes visible. Note that the rectangle we
449 // flip is *superset* of the union of repainted rectangles (created as
450 // "rectangles union" by wxRect::Union) and so some parts of the back
451 // buffer that we didn't touch in this HandleQueuedPaintRequests call will
452 // be copied to the front buffer as well. This is safe/correct thing to do
453 // *only* because wx always use wxIDirectFBSurface::FlipToFront() and so
454 // the back and front buffers contain the same data.
456 // Note that we do _not_ split m_toPaint into disjoint rectangles and
457 // do FlipToFront() for each of them, because that could result in visible
458 // updating of the screen; instead, we prefer to flip everything at once.
460 DFBRegion r
= {paintedRect
.GetLeft(), paintedRect
.GetTop(),
461 paintedRect
.GetRight(), paintedRect
.GetBottom()};
462 DFBRegion
*rptr
= (winRect
== paintedRect
) ? NULL
: &r
;
464 GetDfbSurface()->FlipToFront(rptr
);
466 wxLogTrace(TRACE_PAINT
,
467 _T("%p ('%s'): processed %i paint requests, flipped surface: [%i,%i,%i,%i]"),
468 this, GetName().c_str(),
470 paintedRect
.x
, paintedRect
.y
,
471 paintedRect
.GetRight(), paintedRect
.GetBottom());
474 void wxTopLevelWindowDFB::DoRefreshRect(const wxRect
& rect
)
476 // don't overlap outside of the window (NB: 'rect' is in window coords):
478 r
.Intersect(wxRect(GetSize()));
482 wxLogTrace(TRACE_PAINT
,
483 _T("%p ('%s'): [TLW] refresh rect [%i,%i,%i,%i]"),
484 this, GetName().c_str(),
485 rect
.x
, rect
.y
, rect
.GetRight(), rect
.GetBottom());
487 // defer painting until idle time or until Update() is called:
488 m_toPaint
->Add(rect
);
491 void wxTopLevelWindowDFB::Update()
493 HandleQueuedPaintRequests();
496 // ---------------------------------------------------------------------------
498 // ---------------------------------------------------------------------------
500 void wxTopLevelWindowDFB::SetDfbFocus()
502 wxCHECK_RET( IsShown(), _T("cannot set focus to hidden window") );
503 wxASSERT_MSG( FindFocus() && FindFocus()->GetTLW() == this,
504 _T("setting DirectFB focus to unexpected window") );
506 GetDirectFBWindow()->RequestFocus();
510 void wxTopLevelWindowDFB::HandleDFBWindowEvent(const wxDFBWindowEvent
& event_
)
512 const DFBWindowEvent
& event
= event_
;
514 if ( gs_dfbWindowsMap
.find(event
.window_id
) == gs_dfbWindowsMap
.end() )
516 wxLogTrace(TRACE_EVENTS
,
517 _T("received event for unknown DirectFB window, ignoring"));
521 wxTopLevelWindowDFB
*tlw
= gs_dfbWindowsMap
[event
.window_id
];
522 wxWindow
*recipient
= NULL
;
523 void (wxWindow::*handlerFunc
)(const wxDFBWindowEvent
&) = NULL
;
525 switch ( event
.type
)
530 recipient
= wxWindow::FindFocus();
531 handlerFunc
= &wxWindowDFB::HandleKeyEvent
;
538 wxFAIL_MSG( _T("invalid event type") );
543 // we're not interested in them here
549 wxLogTrace(TRACE_EVENTS
, _T("ignoring event: no recipient window"));
553 wxCHECK_RET( recipient
&& recipient
->GetTLW() == tlw
,
554 _T("event recipient not in TLW which received the event") );
556 // process the event:
557 (recipient
->*handlerFunc
)(event_
);
560 // ---------------------------------------------------------------------------
561 // idle events processing
562 // ---------------------------------------------------------------------------
564 void wxTopLevelWindowDFB::OnInternalIdle()
566 wxTopLevelWindowBase::OnInternalIdle();
567 HandleQueuedPaintRequests();