]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dfb/dc.h
update button style to include BS_MULTILINE when a multiline label is set
[wxWidgets.git] / include / wx / dfb / dc.h
CommitLineData
b3c86150
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/dfb/dc.h
3// Purpose: wxDC class
4// Author: Vaclav Slavik
5// Created: 2006-08-07
6// RCS-ID: $Id$
7// Copyright: (c) 2006 REA Elektronik GmbH
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_DFB_DC_H_
12#define _WX_DFB_DC_H_
13
14#include "wx/defs.h"
15#include "wx/region.h"
52c8d32a 16#include "wx/dfb/dfbptr.h"
b3c86150
VS
17
18wxDFB_DECLARE_INTERFACE(IDirectFBSurface);
19
20//-----------------------------------------------------------------------------
21// wxDC
22//-----------------------------------------------------------------------------
23
24class WXDLLIMPEXP_CORE wxDC : public wxDCBase
25{
26public:
27 wxDC();
28
29 // Ctor.
52c8d32a 30 wxDC(const wxIDirectFBSurfacePtr& surface);
b3c86150
VS
31
32public:
33 // implement base class pure virtuals
34 // ----------------------------------
35
36 virtual void Clear();
37
38 virtual bool StartDoc(const wxString& message);
39 virtual void EndDoc();
40
41 virtual void StartPage();
42 virtual void EndPage();
43
44 virtual void SetFont(const wxFont& font);
45 virtual void SetPen(const wxPen& pen);
46 virtual void SetBrush(const wxBrush& brush);
47 virtual void SetBackground(const wxBrush& brush);
48 virtual void SetBackgroundMode(int mode);
49#if wxUSE_PALETTE
50 virtual void SetPalette(const wxPalette& palette);
51#endif
52
2f6550d9 53 virtual void SetLogicalFunction(int function);
7d9a266c 54
b3c86150
VS
55 virtual void DestroyClippingRegion();
56
57 virtual wxCoord GetCharHeight() const;
58 virtual wxCoord GetCharWidth() const;
59 virtual void DoGetTextExtent(const wxString& string,
60 wxCoord *x, wxCoord *y,
61 wxCoord *descent = NULL,
62 wxCoord *externalLeading = NULL,
c94f845b 63 const wxFont *theFont = NULL) const;
b3c86150
VS
64
65 virtual bool CanDrawBitmap() const { return true; }
66 virtual bool CanGetTextExtent() const { return true; }
67 virtual int GetDepth() const;
68 virtual wxSize GetPPI() const;
69
b3c86150 70 // Returns the surface (and increases its ref count)
52c8d32a 71 wxIDirectFBSurfacePtr GetDirectFBSurface() const { return m_surface; }
b3c86150
VS
72
73protected:
04ab8b6d
RR
74 // implementation
75 wxCoord XDEV2LOG(wxCoord x) const { return DeviceToLogicalX(x); }
76 wxCoord XDEV2LOGREL(wxCoord x) const { return DeviceToLogicalXRel(x); }
77 wxCoord YDEV2LOG(wxCoord y) const { return DeviceToLogicalY(y); }
78 wxCoord YDEV2LOGREL(wxCoord y) const { return DeviceToLogicalYRel(y); }
79 wxCoord XLOG2DEV(wxCoord x) const { return LogicalToDeviceX(x); }
80 wxCoord XLOG2DEVREL(wxCoord x) const { return LogicalToDeviceXRel(x); }
81 wxCoord YLOG2DEV(wxCoord y) const { return LogicalToDeviceY(y); }
82 wxCoord YLOG2DEVREL(wxCoord y) const { return LogicalToDeviceYRel(y); }
83
b3c86150
VS
84 // initializes the DC from a surface, must be called if default ctor
85 // was used
c16db850 86 void DFBInit(const wxIDirectFBSurfacePtr& surface);
b3c86150
VS
87
88 virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
89 int style = wxFLOOD_SURFACE);
90
91 virtual bool DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const;
92
93 virtual void DoDrawPoint(wxCoord x, wxCoord y);
94 virtual void DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2);
95
96 virtual void DoDrawArc(wxCoord x1, wxCoord y1,
97 wxCoord x2, wxCoord y2,
98 wxCoord xc, wxCoord yc);
99 virtual void DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h,
100 double sa, double ea);
101
102 virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
103 virtual void DoDrawRoundedRectangle(wxCoord x, wxCoord y,
104 wxCoord width, wxCoord height,
105 double radius);
106 virtual void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
107
108 virtual void DoCrossHair(wxCoord x, wxCoord y);
109
110 virtual void DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y);
111 virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y,
112 bool useMask = false);
113
114 virtual void DoDrawText(const wxString& text, wxCoord x, wxCoord y);
115 virtual void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y,
116 double angle);
117
118 virtual bool DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
119 wxDC *source, wxCoord xsrc, wxCoord ysrc,
120 int rop = wxCOPY, bool useMask = false, wxCoord xsrcMask = -1, wxCoord ysrcMask = -1);
121
122 // this is gnarly - we can't even call this function DoSetClippingRegion()
123 // because of virtual function hiding
124 virtual void DoSetClippingRegionAsRegion(const wxRegion& region);
125 virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
126 wxCoord width, wxCoord height);
127
128 virtual void DoGetSize(int *width, int *height) const;
129 virtual void DoGetSizeMM(int* width, int* height) const;
130
131 virtual void DoDrawLines(int n, wxPoint points[],
132 wxCoord xoffset, wxCoord yoffset);
133 virtual void DoDrawPolygon(int n, wxPoint points[],
134 wxCoord xoffset, wxCoord yoffset,
135 int fillStyle = wxODDEVEN_RULE);
136
137 // implementation from now on:
d7ae4a62
VS
138protected:
139 wxIDirectFBFontPtr GetCurrentFont() const;
b3c86150
VS
140
141private:
142 // Unified implementation of DrawIcon, DrawBitmap and Blit:
143 void DoDrawSubBitmap(const wxBitmap &bmp,
144 wxCoord x, wxCoord y, wxCoord w, wxCoord h,
145 wxCoord destx, wxCoord desty, int rop, bool useMask);
5942996c
VS
146 bool DoBlitFromSurface(const wxIDirectFBSurfacePtr& src,
147 wxCoord srcx, wxCoord srcy,
148 wxCoord w, wxCoord h,
149 wxCoord dstx, wxCoord dsty);
b3c86150
VS
150
151 // selects colour into surface's state
152 void SelectColour(const wxColour& clr);
153
154protected:
52c8d32a 155 wxIDirectFBSurfacePtr m_surface;
b3c86150
VS
156
157 double m_mm_to_pix_x, m_mm_to_pix_y;
158
b5dbe15d 159 friend class WXDLLIMPEXP_FWD_CORE wxOverlayImpl; // for Init
30c841c8 160
b3c86150
VS
161 DECLARE_DYNAMIC_CLASS(wxDC)
162};
163
164#endif // _WX_DFB_DC_H_