]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/palmos/dcclient.h
define {first,second}_type in the struct declared by _WX_DECLARE_PAIR too for compati...
[wxWidgets.git] / include / wx / palmos / dcclient.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/palmos/dcclient.h
3// Purpose: wxClientDC class
4// Author: William Osborne - minimal working wxPalmOS port
5// Modified by:
6// Created: 10/13/04
7// RCS-ID: $Id$
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DCCLIENT_H_
13#define _WX_DCCLIENT_H_
14
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
19#include "wx/dc.h"
20#include "wx/palmos/dc.h"
21#include "wx/dcclient.h"
22#include "wx/dynarray.h"
23
24// ----------------------------------------------------------------------------
25// array types
26// ----------------------------------------------------------------------------
27
28// this one if used by wxPaintDC only
29struct WXDLLIMPEXP_FWD_CORE wxPaintDCInfo;
30
31WX_DECLARE_EXPORTED_OBJARRAY(wxPaintDCInfo, wxArrayDCInfo);
32
33// ----------------------------------------------------------------------------
34// DC classes
35// ----------------------------------------------------------------------------
36
37class WXDLLIMPEXP_CORE wxWindowDCImpl : public wxPalmDCImpl
38{
39public:
40 // default ctor
41 wxWindowDCImpl( wxDC *owner );
42
43 // Create a DC corresponding to the whole window
44 wxWindowDCImpl( wxDC *owner, wxWindow *win );
45
46 virtual void DoGetSize(int *width, int *height) const;
47
48protected:
49 // initialize the newly created DC
50 void InitDC();
51
52 DECLARE_CLASS(wxWindowDCImpl)
53 DECLARE_NO_COPY_CLASS(wxWindowDCImpl)
54};
55
56class WXDLLIMPEXP_CORE wxClientDCImpl : public wxWindowDCImpl
57{
58public:
59 // default ctor
60 wxClientDCImpl( wxDC *owner );
61
62 // Create a DC corresponding to the client area of the window
63 wxClientDCImpl( wxDC *owner, wxWindow *win );
64
65 virtual ~wxClientDCImpl();
66
67 virtual void DoGetSize(int *width, int *height) const;
68
69protected:
70 void InitDC();
71
72 DECLARE_CLASS(wxClientDCImpl)
73 DECLARE_NO_COPY_CLASS(wxClientDCImpl)
74};
75
76class WXDLLIMPEXP_CORE wxPaintDCImpl : public wxClientDCImpl
77{
78public:
79 wxPaintDCImpl( wxDC *owner );
80
81 // Create a DC corresponding for painting the window in OnPaint()
82 wxPaintDCImpl( wxDC *owner, wxWindow *win );
83
84 virtual ~wxPaintDCImpl();
85
86 // find the entry for this DC in the cache (keyed by the window)
87 static WXHDC FindDCInCache(wxWindow* win);
88
89protected:
90 static wxArrayDCInfo ms_cache;
91
92 // find the entry for this DC in the cache (keyed by the window)
93 wxPaintDCInfo *FindInCache(size_t *index = NULL) const;
94
95 DECLARE_CLASS(wxPaintDCImpl)
96 DECLARE_NO_COPY_CLASS(wxPaintDCImpl)
97};
98
99#endif
100 // _WX_DCCLIENT_H_