]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/dcclient.h
build fix
[wxWidgets.git] / include / wx / gtk / dcclient.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcclient.h
3// Purpose:
4// Author: Robert Roebling
dbf858b5
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
c801d85f
KB
10#ifndef __GTKDCCLIENTH__
11#define __GTKDCCLIENTH__
12
c801d85f 13#include "wx/dc.h"
772b3767 14#include "wx/region.h"
c801d85f 15
772b3767 16class WXDLLIMPEXP_CORE wxWindow;
c801d85f
KB
17
18//-----------------------------------------------------------------------------
ec758a20 19// wxWindowDC
c801d85f
KB
20//-----------------------------------------------------------------------------
21
20123d49 22class WXDLLIMPEXP_CORE wxWindowDC : public wxDC
c801d85f 23{
ec758a20 24public:
b0e0d661
VZ
25 wxWindowDC();
26 wxWindowDC( wxWindow *win );
27
4f55a07f 28 virtual ~wxWindowDC();
b0e0d661 29
b1263dcf
WS
30 virtual bool CanDrawBitmap() const { return true; }
31 virtual bool CanGetTextExtent() const { return true; }
b0e0d661 32
376aa62a
VZ
33protected:
34 virtual void DoGetSize(int *width, int *height) const;
387ebd3e 35 virtual bool DoFloodFill( wxCoord x, wxCoord y, const wxColour& col, int style=wxFLOOD_SURFACE );
72cdf4c9
VZ
36 virtual bool DoGetPixel( wxCoord x1, wxCoord y1, wxColour *col ) const;
37
38 virtual void DoDrawLine( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2 );
39 virtual void DoCrossHair( wxCoord x, wxCoord y );
40 virtual void DoDrawArc( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2,
41 wxCoord xc, wxCoord yc );
42 virtual void DoDrawEllipticArc( wxCoord x, wxCoord y, wxCoord width, wxCoord height,
b0e0d661 43 double sa, double ea );
72cdf4c9 44 virtual void DoDrawPoint( wxCoord x, wxCoord y );
b0e0d661
VZ
45
46 virtual void DoDrawLines(int n, wxPoint points[],
72cdf4c9 47 wxCoord xoffset, wxCoord yoffset);
b0e0d661 48 virtual void DoDrawPolygon(int n, wxPoint points[],
72cdf4c9 49 wxCoord xoffset, wxCoord yoffset,
b0e0d661
VZ
50 int fillStyle = wxODDEVEN_RULE);
51
72cdf4c9
VZ
52 virtual void DoDrawRectangle( wxCoord x, wxCoord y, wxCoord width, wxCoord height );
53 virtual void DoDrawRoundedRectangle( wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius = 20.0 );
54 virtual void DoDrawEllipse( wxCoord x, wxCoord y, wxCoord width, wxCoord height );
b0e0d661 55
72cdf4c9
VZ
56 virtual void DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y );
57 virtual void DoDrawBitmap( const wxBitmap &bitmap, wxCoord x, wxCoord y,
b1263dcf 58 bool useMask = false );
b0e0d661 59
72cdf4c9
VZ
60 virtual bool DoBlit( wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
61 wxDC *source, wxCoord xsrc, wxCoord ysrc,
b1263dcf 62 int logical_func = wxCOPY, bool useMask = false, wxCoord xsrcMask = -1, wxCoord ysrcMask = -1 );
b0e0d661 63
72cdf4c9 64 virtual void DoDrawText( const wxString &text, wxCoord x, wxCoord y );
95724b1a
VZ
65 virtual void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y,
66 double angle);
72cdf4c9
VZ
67 virtual void DoGetTextExtent( const wxString &string,
68 wxCoord *width, wxCoord *height,
69 wxCoord *descent = (wxCoord *) NULL,
70 wxCoord *externalLeading = (wxCoord *) NULL,
b0e0d661 71 wxFont *theFont = (wxFont *) NULL) const;
6f02a879
VZ
72 virtual void DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height );
73 virtual void DoSetClippingRegionAsRegion( const wxRegion &region );
376aa62a 74
847dfdb4 75
376aa62a 76public:
72cdf4c9
VZ
77 virtual wxCoord GetCharWidth() const;
78 virtual wxCoord GetCharHeight() const;
b0e0d661
VZ
79
80 virtual void Clear();
81
82 virtual void SetFont( const wxFont &font );
83 virtual void SetPen( const wxPen &pen );
84 virtual void SetBrush( const wxBrush &brush );
85 virtual void SetBackground( const wxBrush &brush );
86 virtual void SetLogicalFunction( int function );
87 virtual void SetTextForeground( const wxColour &col );
88 virtual void SetTextBackground( const wxColour &col );
89 virtual void SetBackgroundMode( int mode );
90 virtual void SetPalette( const wxPalette& palette );
91
b0e0d661 92 virtual void DestroyClippingRegion();
b0e0d661 93
b0e0d661
VZ
94 // Resolution in pixels per logical inch
95 virtual wxSize GetPPI() const;
96 virtual int GetDepth() const;
97
847dfdb4
RR
98 // overrriden here for RTL
99 virtual void SetDeviceOrigin( wxCoord x, wxCoord y );
100 virtual void SetAxisOrientation( bool xLeftRight, bool yBottomUp );
101
2e992e06
VZ
102 virtual GdkWindow* GetGDKWindow() const { return m_window; }
103
f6f1f4ad 104// protected:
b0e0d661
VZ
105 // implementation
106 // --------------
107
108 GdkWindow *m_window;
109 GdkGC *m_penGC;
110 GdkGC *m_brushGC;
111 GdkGC *m_textGC;
112 GdkGC *m_bgGC;
113 GdkColormap *m_cmap;
114 bool m_isMemDC;
e1208c31 115 bool m_isScreenDC;
b0e0d661 116 wxWindow *m_owner;
3d2d8da1
RR
117 wxRegion m_currentClippingRegion;
118 wxRegion m_paintClippingRegion;
b1263dcf 119
2b5f62a0 120 // PangoContext stuff for GTK 2.0
8943b403 121 PangoContext *m_context;
138618ac 122 PangoLayout *m_layout;
8943b403 123 PangoFontDescription *m_fontdesc;
b0e0d661
VZ
124
125 void SetUpDC();
126 void Destroy();
f6f1f4ad
RR
127
128protected:
b1263dcf 129 virtual void ComputeScaleAndOrigin();
238d735d 130
b0e0d661 131 GdkWindow *GetWindow() { return m_window; }
cd9da200 132
20e05ffb
RR
133private:
134 DECLARE_DYNAMIC_CLASS(wxWindowDC)
ec758a20
RR
135};
136
137//-----------------------------------------------------------------------------
376aa62a 138// wxClientDC
ec758a20
RR
139//-----------------------------------------------------------------------------
140
20123d49 141class WXDLLIMPEXP_CORE wxClientDC : public wxWindowDC
ec758a20 142{
ec758a20 143public:
4f55a07f 144 wxClientDC() { }
376aa62a 145 wxClientDC( wxWindow *win );
cd9da200 146
7b30ac82
VZ
147protected:
148 virtual void DoGetSize(int *width, int *height) const;
149
20e05ffb 150private:
376aa62a 151 DECLARE_DYNAMIC_CLASS(wxClientDC)
c801d85f
KB
152};
153
ec758a20 154//-----------------------------------------------------------------------------
376aa62a 155// wxPaintDC
ec758a20
RR
156//-----------------------------------------------------------------------------
157
20123d49 158class WXDLLIMPEXP_CORE wxPaintDC : public wxClientDC
ec758a20 159{
ec758a20 160public:
376aa62a
VZ
161 wxPaintDC() { }
162 wxPaintDC( wxWindow *win );
cd9da200 163
20e05ffb 164private:
376aa62a 165 DECLARE_DYNAMIC_CLASS(wxPaintDC)
ec758a20
RR
166};
167
c801d85f 168#endif // __GTKDCCLIENTH__