X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d18a7061666b8b890616c91cd5df422502c3f303..05e0b047d879cdbfade7f2ab346c0acdf3e29f96:/src/dfb/dcclient.cpp?ds=sidebyside diff --git a/src/dfb/dcclient.cpp b/src/dfb/dcclient.cpp index 4cac80be25..2a13ea7e2b 100644 --- a/src/dfb/dcclient.cpp +++ b/src/dfb/dcclient.cpp @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: src/dfb/dcclient.cpp -// Purpose: wxWindowDC, wxClientDC and wxPaintDC +// Purpose: wxWindowDCImpl, wxClientDCImpl and wxPaintDC // Author: Vaclav Slavik // Created: 2006-08-10 // RCS-ID: $Id$ @@ -23,15 +23,15 @@ #pragma hdrstop #endif -#include "wx/dcclient.h" - #ifndef WX_PRECOMP #include "wx/window.h" + #include "wx/nonownedwnd.h" #endif +#include "wx/dfb/dcclient.h" #include "wx/dfb/private.h" -#define TRACE_PAINT _T("paint") +#define TRACE_PAINT "paint" // =========================================================================== // implementation @@ -45,7 +45,7 @@ // boundaries ("hidden behind its borders"), recursively: static wxRect GetUncoveredWindowArea(wxWindow *win) { - wxRect r(win->GetRect()); + wxRect r(win->GetSize()); if ( win->IsTopLevel() ) return r; @@ -58,6 +58,11 @@ static wxRect GetUncoveredWindowArea(wxWindow *win) // coordinates; this will remove parts of 'r' that are outside of the // parent's area: wxRect rp(GetUncoveredWindowArea(parent)); + + // normal windows cannot extend out of its parent's client area: + if ( !win->CanBeOutsideClientArea() ) + rp.Intersect(parent->GetClientRect()); + rp.Offset(-win->GetPosition()); rp.Offset(-parent->GetClientAreaOrigin()); r.Intersect(rp); @@ -71,26 +76,38 @@ static wxRect GetUncoveredWindowArea(wxWindow *win) static wxIDirectFBSurfacePtr CreateDummySurface(wxWindow *win, const wxRect *rect) { - wxLogTrace(TRACE_PAINT, _T("%p ('%s'): creating dummy DC surface"), + wxLogTrace(TRACE_PAINT, "%p ('%s'): creating dummy DC surface", win, win->GetName().c_str()); wxSize size(rect ? rect->GetSize() : win->GetSize()); - return win->GetDfbSurface()->CreateCompatible(size); + + // we can't create a surface of 0 size but the size of the window may be 0, + // so ensure that we have at least a single pixel to draw on + size.IncTo(wxSize(1, 1)); + + return win->GetDfbSurface()->CreateCompatible + ( + size, + wxIDirectFBSurface::CreateCompatible_NoBackBuffer + ); } //----------------------------------------------------------------------------- -// wxWindowDC +// wxWindowDCImpl //----------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxWindowDC, wxDC) +IMPLEMENT_ABSTRACT_CLASS(wxWindowDCImpl, wxDFBDCImpl) -wxWindowDC::wxWindowDC(wxWindow *win) +wxWindowDCImpl::wxWindowDCImpl(wxDC *owner, wxWindow *win) + : wxDFBDCImpl(owner) { InitForWin(win, NULL); } -void wxWindowDC::InitForWin(wxWindow *win, const wxRect *rect) +void wxWindowDCImpl::InitForWin(wxWindow *win, const wxRect *rect) { - wxCHECK_RET( win, _T("invalid window") ); + wxCHECK_RET( win, "invalid window" ); + + m_window = win; // obtain the surface used for painting: wxPoint origin; @@ -114,7 +131,7 @@ void wxWindowDC::InitForWin(wxWindow *win, const wxRect *rect) if ( win->GetTLW()->IsPainting() && !updateRegion.IsEmpty() ) { r.Intersect(updateRegion.AsRect()); - wxCHECK_RET( !r.IsEmpty(), _T("invalid painting rectangle") ); + wxCHECK_RET( !r.IsEmpty(), "invalid painting rectangle" ); // parent TLW will flip the entire surface when painting is done m_shouldFlip = false; @@ -150,6 +167,7 @@ void wxWindowDC::InitForWin(wxWindow *win, const wxRect *rect) } else { + m_winRect = r; DFBRectangle dfbrect = { r.x, r.y, r.width, r.height }; surface = win->GetDfbSurface()->GetSubSurface(&dfbrect); @@ -166,20 +184,20 @@ void wxWindowDC::InitForWin(wxWindow *win, const wxRect *rect) return; wxLogTrace(TRACE_PAINT, - _T("%p ('%s'): creating DC for area [%i,%i,%i,%i], clipped to [%i,%i,%i,%i], origin [%i,%i]"), + "%p ('%s'): creating DC for area [%i,%i,%i,%i], clipped to [%i,%i,%i,%i], origin [%i,%i]", win, win->GetName().c_str(), rectOrig.x, rectOrig.y, rectOrig.GetRight(), rectOrig.GetBottom(), r.x, r.y, r.GetRight(), r.GetBottom(), origin.x, origin.y); - Init(surface); + DFBInit(surface); SetFont(win->GetFont()); // offset coordinates to account for subsurface's origin coordinates: SetDeviceOrigin(origin.x, origin.y); } -wxWindowDC::~wxWindowDC() +wxWindowDCImpl::~wxWindowDCImpl() { wxIDirectFBSurfacePtr surface(GetDirectFBSurface()); if ( !surface ) @@ -191,22 +209,33 @@ wxWindowDC::~wxWindowDC() if ( m_shouldFlip ) { - // FIXME: flip only modified parts of the surface - surface->FlipToFront(); + // paint overlays on top of the surface being drawn to by this DC + // before showing anything on the screen: + GetWindow()->PaintOverlays(m_winRect); + + DFBSurfaceCapabilities caps = DSCAPS_NONE; + surface->GetCapabilities(&caps); + if ( caps & DSCAPS_DOUBLE ) + { + // FIXME: flip only modified parts of the surface + surface->FlipToFront(); + } + // else: the surface is not double-buffered and so cannot be flipped } // else: don't flip the surface, wxTLW will do it when it finishes // painting of its invalidated areas } //----------------------------------------------------------------------------- -// wxClientDC +// wxClientDCImpl //----------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxClientDC, wxWindowDC) +IMPLEMENT_ABSTRACT_CLASS(wxClientDCImpl, wxWindowDCImpl) -wxClientDC::wxClientDC(wxWindow *win) +wxClientDCImpl::wxClientDCImpl(wxDC *owner, wxWindow *win) + : wxWindowDCImpl(owner, win) { - wxCHECK_RET( win, _T("invalid window") ); + wxCHECK_RET( win, "invalid window" ); wxRect rect = win->GetClientRect(); InitForWin(win, &rect); @@ -216,4 +245,4 @@ wxClientDC::wxClientDC(wxWindow *win) // wxPaintDC //----------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxPaintDC, wxWindowDC) +IMPLEMENT_ABSTRACT_CLASS(wxPaintDCImpl, wxWindowDCImpl)