]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/dcclient.h
added wxListCtrl::DeleteAllColumns()
[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
c801d85f
KB
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifndef __GTKDCCLIENTH__
12#define __GTKDCCLIENTH__
13
14#ifdef __GNUG__
15#pragma interface
16#endif
17
18#include "wx/dc.h"
19#include "wx/window.h"
20
21//-----------------------------------------------------------------------------
22// classes
23//-----------------------------------------------------------------------------
24
ec758a20 25class wxWindowDC;
c801d85f 26class wxPaintDC;
ec758a20 27class wxClientDC;
c801d85f
KB
28
29//-----------------------------------------------------------------------------
ec758a20 30// wxWindowDC
c801d85f
KB
31//-----------------------------------------------------------------------------
32
ec758a20 33class wxWindowDC: public wxDC
c801d85f 34{
ec758a20 35 DECLARE_DYNAMIC_CLASS(wxWindowDC)
c801d85f 36
ec758a20
RR
37public:
38 wxWindowDC(void);
39 wxWindowDC( wxWindow *win );
c801d85f 40
ec758a20 41 ~wxWindowDC(void);
c801d85f 42
ec758a20
RR
43 virtual void FloodFill( long x1, long y1, wxColour *col, int style=wxFLOOD_SURFACE );
44 virtual bool GetPixel( long x1, long y1, wxColour *col ) const;
45
46 virtual void DrawLine( long x1, long y1, long x2, long y2 );
47 virtual void CrossHair( long x, long y );
48 virtual void DrawArc( long x1, long y1, long x2, long y2, double xc, double yc );
49 virtual void DrawEllipticArc( long x, long y, long width, long height, double sa, double ea );
50 virtual void DrawPoint( long x, long y );
c801d85f 51
ec758a20
RR
52 virtual void DrawLines( int n, wxPoint points[], long xoffset = 0, long yoffset = 0 );
53 virtual void DrawLines( wxList *points, long xoffset = 0, long yoffset = 0 );
54 virtual void DrawPolygon( int n, wxPoint points[], long xoffset = 0, long yoffset = 0,
55 int fillStyle=wxODDEVEN_RULE );
56 virtual void DrawPolygon( wxList *lines, long xoffset = 0, long yoffset = 0,
57 int fillStyle=wxODDEVEN_RULE );
c801d85f 58
ec758a20
RR
59 virtual void DrawRectangle( long x, long y, long width, long height );
60 virtual void DrawRoundedRectangle( long x, long y, long width, long height, double radius = 20.0 );
61 virtual void DrawEllipse( long x, long y, long width, long height );
c801d85f 62
ec758a20
RR
63 virtual bool CanDrawBitmap(void) const;
64 virtual void DrawIcon( const wxIcon &icon, long x, long y, bool useMask=FALSE );
65 virtual bool Blit( long xdest, long ydest, long width, long height,
66 wxDC *source, long xsrc, long ysrc, int logical_func = wxCOPY, bool useMask=FALSE );
67
68 virtual void DrawText( const wxString &text, long x, long y, bool use16 = FALSE );
69 virtual bool CanGetTextExtent(void) const;
70 virtual void GetTextExtent( const wxString &string, long *width, long *height,
c67daf87
UR
71 long *descent = (long *) NULL, long *externalLeading = (long *) NULL,
72 wxFont *theFont = (wxFont *) NULL, bool use16 = FALSE );
ec758a20
RR
73 virtual long GetCharWidth(void);
74 virtual long GetCharHeight(void);
c801d85f 75
ec758a20 76 virtual void Clear(void);
c801d85f 77
ec758a20
RR
78 virtual void SetFont( const wxFont &font );
79 virtual void SetPen( const wxPen &pen );
80 virtual void SetBrush( const wxBrush &brush );
81 virtual void SetBackground( const wxBrush &brush );
82 virtual void SetLogicalFunction( int function );
83 virtual void SetTextForeground( const wxColour &col );
84 virtual void SetTextBackground( const wxColour &col );
85 virtual void SetBackgroundMode( int mode );
86 virtual void SetPalette( const wxPalette& palette );
c801d85f 87
ec758a20
RR
88 virtual void SetClippingRegion( long x, long y, long width, long height );
89 virtual void DestroyClippingRegion(void);
c801d85f 90
ec758a20 91 virtual void DrawSpline( wxList *points );
c801d85f 92
ec758a20 93 // implementation
c801d85f 94
ec758a20
RR
95 GdkWindow *m_window;
96 GdkGC *m_penGC;
97 GdkGC *m_brushGC;
98 GdkGC *m_textGC;
99 GdkGC *m_bgGC;
100 GdkColormap *m_cmap;
101 bool m_isMemDC;
c801d85f 102
ec758a20
RR
103 void SetUpDC(void);
104 void Destroy(void);
105 GdkWindow *GetWindow(void);
106};
107
108//-----------------------------------------------------------------------------
109// wxPaintDC
110//-----------------------------------------------------------------------------
111
112class wxPaintDC : public wxWindowDC
113{
114 DECLARE_DYNAMIC_CLASS(wxPaintDC)
115
116public:
117 wxPaintDC(void);
118 wxPaintDC( wxWindow *win );
c801d85f
KB
119};
120
ec758a20
RR
121//-----------------------------------------------------------------------------
122// wxClientDC
123//-----------------------------------------------------------------------------
124
125class wxClientDC : public wxWindowDC
126{
127 DECLARE_DYNAMIC_CLASS(wxClientDC)
128
129public:
130 wxClientDC(void);
131 wxClientDC( wxWindow *win );
132};
133
134
c801d85f 135#endif // __GTKDCCLIENTH__