#include "wx/dfb/private.h"
+// these values are used to initialize newly created DC
+#define DEFAULT_FONT (*wxNORMAL_FONT)
+#define DEFAULT_PEN (*wxBLACK_PEN)
+#define DEFAULT_BRUSH (*wxWHITE_BRUSH)
+
// ===========================================================================
// implementation
// ===========================================================================
m_ok = false;
}
-wxDC::wxDC(const IDirectFBSurfacePtr& surface)
+wxDC::wxDC(const wxIDirectFBSurfacePtr& surface)
{
Init(surface);
}
-void wxDC::Init(const IDirectFBSurfacePtr& surface)
+void wxDC::Init(const wxIDirectFBSurfacePtr& surface)
{
m_ok = (surface != NULL);
wxCHECK_RET( surface != NULL, _T("invalid surface") );
m_mm_to_pix_y = (double)wxGetDisplaySize().GetHeight() /
(double)wxGetDisplaySizeMM().GetHeight();
- SetFont(*wxNORMAL_FONT);
- SetPen(*wxBLACK_PEN);
- SetBrush(*wxWHITE_BRUSH);
+ SetFont(DEFAULT_FONT);
+ SetPen(DEFAULT_PEN);
+ SetBrush(DEFAULT_BRUSH);
}
// clipping
// ---------------------------------------------------------------------------
-
-#define DO_SET_CLIPPING_BOX(rg) \
-{ \
- wxRect rect = rg.GetBox(); \
- m_clipX1 = (wxCoord) XDEV2LOG(rect.GetLeft()); \
- m_clipY1 = (wxCoord) YDEV2LOG(rect.GetTop()); \
- m_clipX2 = (wxCoord) XDEV2LOG(rect.GetRight()); \
- m_clipY2 = (wxCoord) YDEV2LOG(rect.GetBottom()); \
-}
-
void wxDC::DoSetClippingRegion(wxCoord cx, wxCoord cy, wxCoord cw, wxCoord ch)
{
wxCHECK_RET( Ok(), wxT("invalid dc") );
+ wxSize size(GetSize());
+
+ wxASSERT_MSG( !m_clipping,
+ _T("narrowing clipping region not implemented yet") );
+
+ // NB: We intersect the clipping rectangle with surface's area here because
+ // DirectFB will return an error if you try to set clipping rectangle
+ // that is partially outside of the surface.
DFBRegion r;
- r.x1 = XLOG2DEV(cx);
- r.y1 = YLOG2DEV(cy);
- r.x2 = r.x1 + XLOG2DEVREL(cw) - 1;
- r.y2 = r.y1 + XLOG2DEVREL(ch) - 1;
+ r.x1 = wxMax(0, XLOG2DEV(cx));
+ r.y1 = wxMax(0, YLOG2DEV(cy));
+ r.x2 = wxMin(r.x1 + XLOG2DEVREL(cw), size.x) - 1;
+ r.y2 = wxMin(r.y1 + YLOG2DEVREL(ch), size.y) - 1;
- if ( !DFB_CALL( m_surface->SetClip(m_surface, &r) ) )
+ if ( !m_surface->SetClip(&r) )
return;
m_clipX1 = cx;
void wxDC::DoSetClippingRegionAsRegion(const wxRegion& region)
{
- // NB: this can be done because wxDFB only supports
- // rectangular regions
+ // NB: this can be done because wxDFB only supports rectangular regions
SetClippingRegion(region.AsRect());
}
{
wxCHECK_RET( Ok(), wxT("invalid dc") );
- DFB_CALL( m_surface->SetClip(m_surface, NULL) );
+ m_surface->SetClip(NULL);
ResetClipping();
}
int wxDC::GetDepth() const
{
- return wxDfbGetSurfaceDepth(m_surface);
+ return m_surface->GetDepth();
}
// ---------------------------------------------------------------------------
return;
wxColour clr = m_backgroundBrush.GetColour();
- DFB_CALL( m_surface->Clear(m_surface,
- clr.Red(), clr.Green(), clr.Blue(), clr.Alpha()) );
+ m_surface->Clear(clr.Red(), clr.Green(), clr.Blue(), clr.Alpha());
+
+ wxSize size(GetSize());
+ CalcBoundingBox(XDEV2LOG(0), YDEV2LOG(0));
+ CalcBoundingBox(XDEV2LOG(size.x), YDEV2LOG(size.y));
}
extern bool wxDoFloodFill(wxDC *dc, wxCoord x, wxCoord y,
if ( m_pen.GetStyle() == wxTRANSPARENT )
return;
- DFB_CALL( m_surface->DrawLine(m_surface,
- XLOG2DEV(x1), YLOG2DEV(y1),
- XLOG2DEV(x2), YLOG2DEV(y2)) );
+ wxCoord xx1 = XLOG2DEV(x1);
+ wxCoord yy1 = YLOG2DEV(y1);
+ wxCoord xx2 = XLOG2DEV(x2);
+ wxCoord yy2 = YLOG2DEV(y2);
+
+ // FIXME: DrawLine() shouldn't draw the last pixel, but DFB's DrawLine()
+ // does draw it. We should undo any change to the last pixel by
+ // using GetPixel() and PutPixel(), but until they are implemented,
+ // handle at least the special case of vertical and horizontal
+ // lines correctly:
+ if ( xx1 == xx2 )
+ {
+ if ( yy1 < yy2 )
+ yy2--;
+ else if ( yy1 > yy2 )
+ yy2++;
+ }
+ if ( yy1 == yy2 )
+ {
+ if ( xx1 < xx2 )
+ xx2--;
+ else if ( xx1 > xx2 )
+ xx2++;
+ }
+
+ m_surface->DrawLine(xx1, yy1, xx2, yy2);
CalcBoundingBox(x1, y1);
CalcBoundingBox(x2, y2);
{
wxCHECK_RET( Ok(), wxT("invalid dc") );
- wxFAIL_MSG( _T("DrawPoint not implemented") );
+ // NB: DirectFB API doesn't provide a function for drawing points, so
+ // implement it as 1px long line. This is inefficient, but then, so is
+ // using DrawPoint() for drawing more than a few points.
+ DoDrawLine(x, y, x, y);
+
+ // FIXME_DFB: implement special cases for common formats (RGB24,RGBA/RGB32)
}
void wxDC::DoDrawPolygon(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset,int WXUNUSED(fillStyle))
if ( m_brush.GetStyle() != wxTRANSPARENT )
{
SelectColour(m_brush.GetColour());
- DFB_CALL( m_surface->FillRectangle(m_surface, xx, yy, ww, hh) );
- // restore pen's colour
+ m_surface->FillRectangle(xx, yy, ww, hh);
+ // restore pen's colour, because other drawing functions expect the
+ // colour to be set to the pen:
SelectColour(m_pen.GetColour());
}
if ( m_pen.GetStyle() != wxTRANSPARENT )
{
- DFB_CALL( m_surface->DrawRectangle(m_surface, xx, yy, ww, hh) );
+ m_surface->DrawRectangle(xx, yy, ww, hh);
}
CalcBoundingBox(x, y);
wxCHECK_RET( Ok(), wxT("invalid dc") );
wxCoord xx = XLOG2DEV(x);
- wxCoord yy = XLOG2DEV(y);
+ wxCoord yy = YLOG2DEV(y);
// update the bounding box
wxCoord w, h;
// if background mode is solid, DrawText must paint text's background:
if ( m_backgroundMode == wxSOLID )
{
- wxCHECK_RET( m_backgroundBrush.Ok(), wxT("invalid background brush") );
+ wxCHECK_RET( m_textBackgroundColour.Ok(),
+ wxT("invalid background color") );
- SelectColour(m_backgroundBrush.GetColour());
- DFB_CALL( m_surface->FillRectangle(m_surface,
- xx, yy,
- XLOG2DEVREL(w), YLOG2DEVREL(h)) );
- // restore pen's colour
- SelectColour(m_pen.GetColour());
+ SelectColour(m_textBackgroundColour);
+ m_surface->FillRectangle(xx, yy, XLOG2DEVREL(w), YLOG2DEVREL(h));
}
// finally draw the text itself:
- DFB_CALL(m_surface->DrawString(m_surface,
- wxSTR_TO_DFB(text), -1,
- xx, yy,
- DFBSurfaceTextFlags(DSTF_LEFT | DSTF_TOP)));
+ wxCHECK_RET( m_textForegroundColour.Ok(),
+ wxT("invalid foreground color") );
+ SelectColour(m_textForegroundColour);
+ m_surface->DrawString(wxSTR_TO_DFB(text), -1, xx, yy, DSTF_LEFT | DSTF_TOP);
+
+ // restore pen's colour, because other drawing functions expect the colour
+ // to be set to the pen:
+ SelectColour(m_pen.GetColour());
}
void wxDC::DoDrawRotatedText(const wxString& text,
void wxDC::SetPen(const wxPen& pen)
{
- if ( !pen.Ok() ) return;
- m_pen = pen;
+ m_pen = pen.Ok() ? pen : DEFAULT_PEN;
SelectColour(m_pen.GetColour());
}
void wxDC::SetBrush(const wxBrush& brush)
{
- if ( !brush.Ok() ) return;
- m_brush = brush;
+ m_brush = brush.Ok() ? brush : DEFAULT_BRUSH;
}
void wxDC::SelectColour(const wxColour& clr)
{
- DFB_CALL( m_surface->SetColor(m_surface,
- clr.Red(), clr.Green(), clr.Blue(), clr.Alpha()) );
+ m_surface->SetColor(clr.Red(), clr.Green(), clr.Blue(), clr.Alpha());
#warning "use SetColorIndex?"
}
{
wxCHECK_RET( Ok(), wxT("invalid dc") );
- if ( !font.Ok() )
- return;
+ wxFont f(font.Ok() ? font : DEFAULT_FONT);
- if ( !DFB_CALL( m_surface->SetFont(m_surface, font.GetDirectFBFont()) ) )
+ if ( !m_surface->SetFont(f.GetDirectFBFont()) )
return;
- m_font = font;
+ m_font = f;
}
void wxDC::SetBackground(const wxBrush& brush)
{
wxCHECK_RET( Ok(), wxT("invalid dc") );
- wxFAIL_MSG( _T("SetLogicalFunction not implemented") );
+ // NB: we could also support XOR, but for blitting only (via DSBLIT_XOR);
+ // and possibly others via SetSrc/DstBlendFunction()
+ wxASSERT_MSG( function == wxCOPY,
+ _T("only wxCOPY logical function supported") );
m_logicalFunction = function;
}
wxCHECK_MSG( m_font.Ok(), -1, wxT("no font selected") );
int h = -1;
- IDirectFBFontPtr f = m_font.GetDirectFBFont();
- DFB_CALL( f->GetHeight(f, &h) );
+ m_font.GetDirectFBFont()->GetHeight(&h);
return YDEV2LOGREL(h);
}
wxCHECK_MSG( m_font.Ok(), -1, wxT("no font selected") );
int w = -1;
- IDirectFBFontPtr f = m_font.GetDirectFBFont();
- DFB_CALL( f->GetStringWidth(f, "H", 1, &w) );
+ m_font.GetDirectFBFont()->GetStringWidth("H", 1, &w);
// VS: YDEV is corrent, it should *not* be XDEV, because font's are only
// scaled according to m_scaleY
return YDEV2LOGREL(w);
wxCoord xx = 0, yy = 0;
DFBRectangle rect;
- IDirectFBFontPtr f = m_font.GetDirectFBFont();
+ wxIDirectFBFontPtr f = m_font.GetDirectFBFont();
- if (DFB_CALL(f->GetStringExtents(f, wxSTR_TO_DFB(string), -1, &rect, NULL)))
+ if ( f->GetStringExtents(wxSTR_TO_DFB(string), -1, &rect, NULL) )
{
// VS: YDEV is corrent, it should *not* be XDEV, because font's are
// only scaled according to m_scaleY
if ( descent )
{
int d;
- if ( DFB_CALL( f->GetDescender(f, &d) ) )
+ if ( f->GetDescender(&d) )
*descent = YDEV2LOGREL(-d);
else
*descent = 0;
{
wxCHECK_RET( Ok(), wxT("invalid dc") );
- DFB_CALL( m_surface->GetSize(m_surface, w, h) );
+ m_surface->GetSize(w, h);
}
void wxDC::DoGetSizeMM(int *width, int *height) const
int rop, bool useMask,
wxCoord xsrcMask, wxCoord ysrcMask)
{
-#warning "FIXME"
- return false;
-#if 0
- wxCHECK_MSG( Ok(), false, wxT("invalid dc") );
- wxCHECK_MSG( source, false, wxT("invalid source dc") );
+ wxCHECK_MSG( Ok(), false, _T("invalid dc") );
+ wxCHECK_MSG( source, false, _T("invalid source dc") );
+
+ // NB: we could also support XOR here (via DSBLIT_XOR)
+ // and possibly others via SetSrc/DstBlendFunction()
+ wxCHECK_MSG( rop == wxCOPY, false, _T("only wxCOPY function supported") );
// transform the source DC coords to the device ones
xsrc = source->LogicalToDeviceX(xsrc);
ysrc = source->LogicalToDeviceY(ysrc);
- /* FIXME_MGL: use the mask origin when drawing transparently */
+ // FIXME_DFB: use the mask origin when drawing transparently
+ wxASSERT_MSG( xsrcMask == -1 && ysrcMask == -1,
+ _T("non-default source mask offset not implemented") );
+#if 0
if (xsrcMask == -1 && ysrcMask == -1)
{
xsrcMask = xsrc; ysrcMask = ysrc;
xsrcMask = source->LogicalToDeviceX(xsrcMask);
ysrcMask = source->LogicalToDeviceY(ysrcMask);
}
+#endif
- CalcBoundingBox(xdest, ydest);
- CalcBoundingBox(xdest + width, ydest + height);
-
- /* scale/translate size and position */
- wxCoord xx = XLOG2DEV(xdest);
- wxCoord yy = YLOG2DEV(ydest);
- wxCoord ww = XLOG2DEVREL(width);
- wxCoord hh = YLOG2DEVREL(height);
-
- if ( source->m_isMemDC )
+ wxMemoryDC *sourceAsMemDC = wxDynamicCast(source, wxMemoryDC);
+ if ( sourceAsMemDC )
{
- wxMemoryDC *memDC = (wxMemoryDC*) source;
- DoDrawSubBitmap(memDC->GetSelectedObject(), xsrc, ysrc, ww, hh,
- xdest, ydest, rop, useMask);
+ DoDrawSubBitmap(sourceAsMemDC->GetSelectedObject(),
+ xsrc, ysrc,
+ width, height,
+ xdest, ydest,
+ rop,
+ useMask);
}
else
{
- m_MGLDC->makeCurrent(); // will go away with MGL6.0
- m_MGLDC->bitBlt(*source->GetMGLDC(),
- xsrc, ysrc, xsrc + ww, ysrc + hh,
- xx, yy, LogicalFunctionToMGLRop(rop));
+ return DoBlitFromSurface(source->GetDirectFBSurface(),
+ xsrc, ysrc,
+ width, height,
+ xdest, ydest);
}
return true;
-#endif
}
void wxDC::DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y, bool useMask)
wxCHECK_RET( Ok(), wxT("invalid dc") );
wxCHECK_RET( bmp.Ok(), wxT("invalid bitmap") );
- wxCoord w = bmp.GetWidth();
- wxCoord h = bmp.GetHeight();
-
- DoDrawSubBitmap(bmp, 0, 0, w, h, x, y, m_logicalFunction, useMask);
+ DoDrawSubBitmap(bmp,
+ 0, 0, bmp.GetWidth(), bmp.GetHeight(),
+ x, y,
+ m_logicalFunction, useMask);
}
void wxDC::DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y)
wxCoord x, wxCoord y, wxCoord w, wxCoord h,
wxCoord destx, wxCoord desty, int rop, bool useMask)
{
-#if 0
wxCHECK_RET( Ok(), wxT("invalid dc") );
wxCHECK_RET( bmp.Ok(), wxT("invalid bitmap") );
- CalcBoundingBox(x, y);
- CalcBoundingBox(x + w, y + h);
-
- wxCoord dx = XLOG2DEV(destx);
- wxCoord dy = YLOG2DEV(desty);
- wxCoord dw = XLOG2DEVREL(w);
- wxCoord dh = YLOG2DEVREL(h);
-
- m_MGLDC->makeCurrent(); // will go away with MGL6.0
-
- bool useStretching = ((w != dw) || (h != dh));
- bool putSection = (w != bmp.GetWidth() || h != bmp.GetHeight());
- MGL_writeModeType mglRop = (MGL_writeModeType)LogicalFunctionToMGLRop(rop);
+ // NB: we could also support XOR here (via DSBLIT_XOR)
+ // and possibly others via SetSrc/DstBlendFunction()
+ wxCHECK_RET( rop == wxCOPY, _T("only wxCOPY function supported") );
if ( bmp.GetDepth() == 1 )
{
// Mono bitmaps are handled in special way -- all 1s are drawn in
// foreground colours, all 0s in background colour.
-
- ((wxBitmap&)bmp).SetMonoPalette(m_textForegroundColour, m_textBackgroundColour);
+ wxFAIL_MSG( _T("drawing mono bitmaps not implemented") );
+ return;
}
if ( useMask && bmp.GetMask() )
{
- // Since MGL does not support masks directly (in MGL, mask is handled
- // in same way as in wxImage, i.e. there is one "key" color), we
- // simulate masked bitblt in 6 steps (same as in MSW):
- //
- // 1. Create a temporary bitmap and copy the destination area into it.
- // 2. Copy the source area into the temporary bitmap using the
- // specified logical function.
- // 3. Set the masked area in the temporary bitmap to BLACK by ANDing
- // the mask bitmap with the temp bitmap with the foreground colour
- // set to WHITE and the bg colour set to BLACK.
- // 4. Set the unmasked area in the destination area to BLACK by
- // ANDing the mask bitmap with the destination area with the
- // foreground colour set to BLACK and the background colour set
- // to WHITE.
- // 5. OR the temporary bitmap with the destination area.
- // 6. Delete the temporary bitmap.
- //
- // This sequence of operations ensures that the source's transparent
- // area need not be black, and logical functions are supported.
-
- wxBitmap *mask = bmp.GetMask()->GetBitmap();
-
- MGLMemoryDC *temp;
-
- if ( GetDepth() <= 8 )
- {
- temp = new MGLMemoryDC(dw, dh, GetDepth(), NULL);
- wxDC tempdc;
- tempdc.SetMGLDC(temp, false);
- tempdc.SetPalette(m_palette);
- }
- else
- {
- pixel_format_t pf;
- m_MGLDC->getPixelFormat(pf);
- temp = new MGLMemoryDC(dw, dh, GetDepth(), &pf);
- }
+ // FIXME_DFB: see MGL sources for a way to do it, but it's not directly
+ // applicable because DirectFB doesn't implement ROPs; OTOH,
+ // it has blitting modes that can be useful; finally, see
+ // DFB's SetSrcBlendFunction() and SetSrcColorKey()
+ wxFAIL_MSG( _T("drawing bitmaps with masks not implemented") );
+ return;
+ }
+
+ DoBlitFromSurface(bmp.GetDirectFBSurface(),
+ x, y,
+ w, h,
+ destx, desty);
+}
- wxCHECK_RET( temp->isValid(), wxT("cannot create temporary dc") );
+bool wxDC::DoBlitFromSurface(const wxIDirectFBSurfacePtr& src,
+ wxCoord srcx, wxCoord srcy,
+ wxCoord w, wxCoord h,
+ wxCoord dstx, wxCoord dsty)
+{
+ // don't do anything if the source rectangle is outside of source surface,
+ // DirectFB would assert in that case:
+ wxSize srcsize;
+ src->GetSize(&srcsize.x, &srcsize.y);
+ if ( !wxRect(srcx, srcy, w, h).Intersects(wxRect(srcsize)) )
+ {
+ wxLogDebug(_T("Blitting from area outside of the source surface, caller code needs fixing."));
+ return false;
+ }
- temp->bitBlt(*m_MGLDC, dx, dy, dx + dw, dy + dh, 0, 0, MGL_REPLACE_MODE);
+ CalcBoundingBox(dstx, dsty);
+ CalcBoundingBox(dstx + w, dsty + h);
- DoBitBlt(bmp, temp, x, y, w, h, 0, 0, dw, dh, mglRop,
- useStretching, putSection);
+ DFBRectangle srcRect = { srcx, srcy, w, h };
+ DFBRectangle dstRect = { XLOG2DEV(dstx), YLOG2DEV(dsty),
+ XLOG2DEVREL(w), YLOG2DEVREL(h) };
- mask->SetMonoPalette(wxColour(0,0,0), wxColour(255,255,255));
- DoBitBlt(*mask, temp, x, y, w, h, 0, 0, dw, dh, MGL_R2_MASKSRC,
- useStretching, putSection);
- DoBitBlt(*mask, m_MGLDC, x, y, w, h, dx, dy, dw, dh, MGL_R2_MASKNOTSRC,
- useStretching, putSection);
+ wxIDirectFBSurfacePtr dst(m_surface);
- m_MGLDC->bitBlt(*temp, 0, 0, dw, dh, dx, dy, MGL_OR_MODE);
+ // FIXME: this will have to be different in useMask case, see above
+ if ( !dst->SetBlittingFlags(DSBLIT_NOFX) )
+ return false;
- delete temp;
+ if ( srcRect.w != dstRect.w || srcRect.h != dstRect.h )
+ {
+ // the bitmap is drawn stretched:
+ dst->StretchBlit(src, &srcRect, &dstRect);
}
-
else
{
- DoBitBlt(bmp, m_MGLDC, x, y, w, h, dx, dy, dw, dh, mglRop,
- useStretching, putSection);
+ // no stretching, size is preserved:
+ dst->Blit(src, &srcRect, dstRect.x, dstRect.y);
}
-#endif
+
+ return true;
}