]>
Commit | Line | Data |
---|---|---|
83df96d6 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dc.h | |
3 | // Purpose: wxDC class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
83df96d6 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_DC_H_ | |
13 | #define _WX_DC_H_ | |
14 | ||
83df96d6 JS |
15 | #include "wx/pen.h" |
16 | #include "wx/brush.h" | |
17 | #include "wx/icon.h" | |
18 | #include "wx/font.h" | |
19 | #include "wx/gdicmn.h" | |
20 | ||
21 | //----------------------------------------------------------------------------- | |
22 | // constants | |
23 | //----------------------------------------------------------------------------- | |
24 | ||
25 | #ifndef MM_TEXT | |
26 | #define MM_TEXT 0 | |
27 | #define MM_ISOTROPIC 1 | |
28 | #define MM_ANISOTROPIC 2 | |
29 | #define MM_LOMETRIC 3 | |
30 | #define MM_HIMETRIC 4 | |
31 | #define MM_TWIPS 5 | |
32 | #define MM_POINTS 6 | |
33 | #define MM_METRIC 7 | |
34 | #endif | |
35 | ||
36 | //----------------------------------------------------------------------------- | |
37 | // wxDC | |
38 | //----------------------------------------------------------------------------- | |
39 | ||
40 | class WXDLLEXPORT wxDC : public wxDCBase | |
41 | { | |
83df96d6 JS |
42 | public: |
43 | wxDC(); | |
d3c7fc99 | 44 | virtual ~wxDC() { } |
d16b634f | 45 | |
83df96d6 JS |
46 | // implement base class pure virtuals |
47 | // ---------------------------------- | |
d16b634f | 48 | |
83df96d6 | 49 | virtual wxSize GetPPI() const; |
d16b634f | 50 | |
83df96d6 JS |
51 | virtual void SetMapMode(int mode); |
52 | virtual void SetUserScale(double x, double y); | |
53 | virtual void SetLogicalScale(double x, double y); | |
54 | virtual void SetLogicalOrigin(wxCoord x, wxCoord y); | |
55 | virtual void SetDeviceOrigin(wxCoord x, wxCoord y); | |
56 | virtual void SetAxisOrientation(bool xLeftRight, bool yBottomUp); | |
d16b634f | 57 | |
83df96d6 | 58 | protected: |
83df96d6 JS |
59 | virtual void DoSetClippingRegion(wxCoord x, wxCoord y, |
60 | wxCoord width, wxCoord height); | |
83df96d6 | 61 | virtual void DoGetSizeMM(int* width, int* height) const; |
d16b634f | 62 | |
83df96d6 | 63 | public: |
b1263dcf | 64 | virtual void ComputeScaleAndOrigin(); |
d16b634f | 65 | |
83df96d6 JS |
66 | wxCoord XDEV2LOG(wxCoord x) const |
67 | { | |
5f3c1f2e | 68 | return wxRound((double)(x - m_deviceOriginX) / m_scaleX) * m_signX + m_logicalOriginX; |
83df96d6 JS |
69 | } |
70 | wxCoord XDEV2LOGREL(wxCoord x) const | |
71 | { | |
5f3c1f2e | 72 | return wxRound((double)(x) / m_scaleX); |
83df96d6 JS |
73 | } |
74 | wxCoord YDEV2LOG(wxCoord y) const | |
75 | { | |
5f3c1f2e | 76 | return wxRound((double)(y - m_deviceOriginY) / m_scaleY) * m_signY + m_logicalOriginY; |
83df96d6 JS |
77 | } |
78 | wxCoord YDEV2LOGREL(wxCoord y) const | |
79 | { | |
5f3c1f2e | 80 | return wxRound((double)(y) / m_scaleY); |
83df96d6 JS |
81 | } |
82 | wxCoord XLOG2DEV(wxCoord x) const | |
83 | { | |
5f3c1f2e | 84 | return wxRound((double)(x - m_logicalOriginX) * m_scaleX) * m_signX + m_deviceOriginX; |
83df96d6 | 85 | } |
83df96d6 JS |
86 | wxCoord XLOG2DEVREL(wxCoord x) const |
87 | { | |
5f3c1f2e | 88 | return wxRound((double)(x) * m_scaleX); |
83df96d6 JS |
89 | } |
90 | wxCoord YLOG2DEV(wxCoord y) const | |
91 | { | |
5f3c1f2e | 92 | return wxRound((double)(y - m_logicalOriginY) * m_scaleY) * m_signY + m_deviceOriginY; |
83df96d6 | 93 | } |
83df96d6 JS |
94 | wxCoord YLOG2DEVREL(wxCoord y) const |
95 | { | |
5f3c1f2e | 96 | return wxRound((double)(y) * m_scaleY); |
83df96d6 | 97 | } |
d16b634f | 98 | |
83df96d6 JS |
99 | public: |
100 | // not sure what for, but what is a mm on a screen you don't know the size of? | |
101 | double m_mm_to_pix_x,m_mm_to_pix_y; | |
d16b634f | 102 | |
83df96d6 JS |
103 | // recompute scale? |
104 | bool m_needComputeScaleX, m_needComputeScaleY; | |
d16b634f | 105 | |
3cd0b8c5 RR |
106 | |
107 | private: | |
108 | DECLARE_ABSTRACT_CLASS(wxDC) | |
83df96d6 JS |
109 | }; |
110 | ||
111 | #endif | |
112 | // _WX_DC_H_ |