]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/dcclient.h
wxSysErrorCode/Msg documented
[wxWidgets.git] / include / wx / gtk1 / 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
8bbe427f 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
c801d85f
KB
10#ifndef __GTKDCCLIENTH__
11#define __GTKDCCLIENTH__
12
13#ifdef __GNUG__
14#pragma interface
15#endif
16
17#include "wx/dc.h"
18#include "wx/window.h"
19
20//-----------------------------------------------------------------------------
21// classes
22//-----------------------------------------------------------------------------
23
ec758a20 24class wxWindowDC;
c801d85f 25class wxPaintDC;
ec758a20 26class wxClientDC;
c801d85f
KB
27
28//-----------------------------------------------------------------------------
ec758a20 29// wxWindowDC
c801d85f
KB
30//-----------------------------------------------------------------------------
31
b0e0d661 32class wxWindowDC : public wxDC
c801d85f 33{
ec758a20 34public:
b0e0d661
VZ
35 wxWindowDC();
36 wxWindowDC( wxWindow *win );
37
38 ~wxWindowDC();
39
40 virtual bool CanDrawBitmap() const { return TRUE; }
41 virtual bool CanGetTextExtent() const { return TRUE; }
42
72cdf4c9
VZ
43 virtual void DoFloodFill( wxCoord x, wxCoord y, const wxColour& col, int style=wxFLOOD_SURFACE );
44 virtual bool DoGetPixel( wxCoord x1, wxCoord y1, wxColour *col ) const;
45
46 virtual void DoDrawLine( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2 );
47 virtual void DoCrossHair( wxCoord x, wxCoord y );
48 virtual void DoDrawArc( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2,
49 wxCoord xc, wxCoord yc );
50 virtual void DoDrawEllipticArc( wxCoord x, wxCoord y, wxCoord width, wxCoord height,
b0e0d661 51 double sa, double ea );
72cdf4c9 52 virtual void DoDrawPoint( wxCoord x, wxCoord y );
b0e0d661
VZ
53
54 virtual void DoDrawLines(int n, wxPoint points[],
72cdf4c9 55 wxCoord xoffset, wxCoord yoffset);
b0e0d661 56 virtual void DoDrawPolygon(int n, wxPoint points[],
72cdf4c9 57 wxCoord xoffset, wxCoord yoffset,
b0e0d661
VZ
58 int fillStyle = wxODDEVEN_RULE);
59
72cdf4c9
VZ
60 virtual void DoDrawRectangle( wxCoord x, wxCoord y, wxCoord width, wxCoord height );
61 virtual void DoDrawRoundedRectangle( wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius = 20.0 );
62 virtual void DoDrawEllipse( wxCoord x, wxCoord y, wxCoord width, wxCoord height );
b0e0d661 63
72cdf4c9
VZ
64 virtual void DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y );
65 virtual void DoDrawBitmap( const wxBitmap &bitmap, wxCoord x, wxCoord y,
b0e0d661
VZ
66 bool useMask = FALSE );
67
72cdf4c9
VZ
68 virtual bool DoBlit( wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
69 wxDC *source, wxCoord xsrc, wxCoord ysrc,
b0e0d661
VZ
70 int logical_func = wxCOPY, bool useMask = FALSE );
71
72cdf4c9 72 virtual void DoDrawText( const wxString &text, wxCoord x, wxCoord y );
95724b1a
VZ
73 virtual void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y,
74 double angle);
72cdf4c9
VZ
75 virtual void DoGetTextExtent( const wxString &string,
76 wxCoord *width, wxCoord *height,
77 wxCoord *descent = (wxCoord *) NULL,
78 wxCoord *externalLeading = (wxCoord *) NULL,
b0e0d661 79 wxFont *theFont = (wxFont *) NULL) const;
72cdf4c9
VZ
80 virtual wxCoord GetCharWidth() const;
81 virtual wxCoord GetCharHeight() const;
b0e0d661
VZ
82
83 virtual void Clear();
84
85 virtual void SetFont( const wxFont &font );
86 virtual void SetPen( const wxPen &pen );
87 virtual void SetBrush( const wxBrush &brush );
88 virtual void SetBackground( const wxBrush &brush );
89 virtual void SetLogicalFunction( int function );
90 virtual void SetTextForeground( const wxColour &col );
91 virtual void SetTextBackground( const wxColour &col );
92 virtual void SetBackgroundMode( int mode );
93 virtual void SetPalette( const wxPalette& palette );
94
72cdf4c9 95 virtual void DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height );
b0e0d661
VZ
96 virtual void DestroyClippingRegion();
97 virtual void DoSetClippingRegionAsRegion( const wxRegion &region );
98
d54e4256 99#if wxUSE_SPLINES
b0e0d661 100 virtual void DoDrawSpline( wxList *points );
d54e4256 101#endif
b0e0d661
VZ
102
103 // Resolution in pixels per logical inch
104 virtual wxSize GetPPI() const;
105 virtual int GetDepth() const;
106
107 // implementation
108 // --------------
109
110 GdkWindow *m_window;
111 GdkGC *m_penGC;
112 GdkGC *m_brushGC;
113 GdkGC *m_textGC;
114 GdkGC *m_bgGC;
115 GdkColormap *m_cmap;
116 bool m_isMemDC;
117 wxWindow *m_owner;
118
119 void SetUpDC();
120 void Destroy();
238d735d
RR
121 void ComputeScaleAndOrigin();
122
b0e0d661 123 GdkWindow *GetWindow() { return m_window; }
20e05ffb
RR
124
125private:
126 DECLARE_DYNAMIC_CLASS(wxWindowDC)
ec758a20
RR
127};
128
129//-----------------------------------------------------------------------------
130// wxPaintDC
131//-----------------------------------------------------------------------------
132
133class wxPaintDC : public wxWindowDC
134{
ec758a20 135public:
b0e0d661
VZ
136 wxPaintDC();
137 wxPaintDC( wxWindow *win );
20e05ffb
RR
138
139private:
140 DECLARE_DYNAMIC_CLASS(wxPaintDC)
c801d85f
KB
141};
142
ec758a20
RR
143//-----------------------------------------------------------------------------
144// wxClientDC
145//-----------------------------------------------------------------------------
146
147class wxClientDC : public wxWindowDC
148{
ec758a20 149public:
b0e0d661
VZ
150 wxClientDC();
151 wxClientDC( wxWindow *win );
20e05ffb
RR
152
153private:
154 DECLARE_DYNAMIC_CLASS(wxClientDC)
ec758a20
RR
155};
156
c801d85f 157#endif // __GTKDCCLIENTH__