]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/dc.cpp
Made dnd reentrent safe as per stable tree.
[wxWidgets.git] / src / gtk1 / dc.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: dc.cpp
3// Purpose:
4// Author: Robert Roebling
6f65e337 5// RCS-ID: $Id$
dbf858b5 6// Copyright: (c) 1998 Robert Roebling, Markus Holzem
a23fd0e1 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifdef __GNUG__
a23fd0e1 12 #pragma implementation "dc.h"
c801d85f
KB
13#endif
14
15#include "wx/dc.h"
16
071a2d78
RR
17#include <gdk/gdk.h>
18#include <gtk/gtk.h>
83624f79 19
c801d85f
KB
20//-----------------------------------------------------------------------------
21// constants
22//-----------------------------------------------------------------------------
23
a23fd0e1
VZ
24#define mm2inches 0.0393700787402
25#define inches2mm 25.4
26#define mm2twips 56.6929133859
27#define twips2mm 0.0176388888889
28#define mm2pt 2.83464566929
29#define pt2mm 0.352777777778
c801d85f
KB
30
31//-----------------------------------------------------------------------------
32// wxDC
33//-----------------------------------------------------------------------------
34
a23fd0e1 35IMPLEMENT_ABSTRACT_CLASS(wxDC, wxDCBase)
c801d85f 36
4bc67cc5 37wxDC::wxDC()
c801d85f 38{
4bc67cc5 39 m_ok = FALSE;
a23fd0e1 40
4bc67cc5
RR
41 m_mm_to_pix_x = 1.0;
42 m_mm_to_pix_y = 1.0;
a23fd0e1 43
ea6f44b5
RR
44 m_needComputeScaleX = FALSE; /* not used yet */
45 m_needComputeScaleY = FALSE; /* not used yet */
c801d85f 46
4bc67cc5 47 m_logicalFunction = wxCOPY;
a23fd0e1 48
4bc67cc5
RR
49 m_pen = *wxBLACK_PEN;
50 m_font = *wxNORMAL_FONT;
41bf0eb3 51 m_brush = *wxWHITE_BRUSH;
ff7b1510 52}
c801d85f 53
72cdf4c9 54void wxDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
c801d85f 55{
4bc67cc5
RR
56 m_clipping = TRUE;
57 m_clipX1 = x;
58 m_clipY1 = y;
59 m_clipX2 = x + width;
60 m_clipY2 = y + height;
ff7b1510 61}
c801d85f 62
4bc67cc5 63void wxDC::DestroyClippingRegion()
c801d85f 64{
4bc67cc5 65 m_clipping = FALSE;
ff7b1510 66}
c801d85f 67
a23fd0e1
VZ
68// ---------------------------------------------------------------------------
69// get DC capabilities
70// ---------------------------------------------------------------------------
c801d85f 71
a23fd0e1 72void wxDC::DoGetSizeMM( int* width, int* height ) const
c801d85f 73{
4bc67cc5
RR
74 int w = 0;
75 int h = 0;
76 GetSize( &w, &h );
7bcb11d3
JS
77 if (width) *width = int( double(w) / (m_scaleX*m_mm_to_pix_x) );
78 if (height) *height = int( double(h) / (m_scaleY*m_mm_to_pix_y) );
79}
80
81// Resolution in pixels per logical inch
a23fd0e1 82wxSize wxDC::GetPPI() const
7bcb11d3
JS
83{
84 // TODO (should probably be pure virtual)
85 return wxSize(0, 0);
ff7b1510 86}
c801d85f 87
a23fd0e1
VZ
88// ---------------------------------------------------------------------------
89// set various DC parameters
90// ---------------------------------------------------------------------------
c801d85f 91
a23fd0e1 92void wxDC::ComputeScaleAndOrigin()
c801d85f 93{
a23fd0e1
VZ
94 m_scaleX = m_logicalScaleX * m_userScaleX;
95 m_scaleY = m_logicalScaleY * m_userScaleY;
ff7b1510 96}
c801d85f
KB
97
98void wxDC::SetMapMode( int mode )
99{
a23fd0e1 100 switch (mode)
4bc67cc5 101 {
e3065973 102 case wxMM_TWIPS:
4bc67cc5
RR
103 SetLogicalScale( twips2mm*m_mm_to_pix_x, twips2mm*m_mm_to_pix_y );
104 break;
e3065973 105 case wxMM_POINTS:
4bc67cc5
RR
106 SetLogicalScale( pt2mm*m_mm_to_pix_x, pt2mm*m_mm_to_pix_y );
107 break;
e3065973 108 case wxMM_METRIC:
4bc67cc5
RR
109 SetLogicalScale( m_mm_to_pix_x, m_mm_to_pix_y );
110 break;
e3065973 111 case wxMM_LOMETRIC:
4bc67cc5
RR
112 SetLogicalScale( m_mm_to_pix_x/10.0, m_mm_to_pix_y/10.0 );
113 break;
114 default:
e3065973 115 case wxMM_TEXT:
4bc67cc5
RR
116 SetLogicalScale( 1.0, 1.0 );
117 break;
118 }
b9857632
RR
119 m_mappingMode = mode;
120
4bc67cc5 121/* we don't do this mega optimisation
e3065973 122 if (mode != wxMM_TEXT)
4bc67cc5
RR
123 {
124 m_needComputeScaleX = TRUE;
125 m_needComputeScaleY = TRUE;
126 }
127*/
ff7b1510 128}
c801d85f
KB
129
130void wxDC::SetUserScale( double x, double y )
131{
4bc67cc5
RR
132 // allow negative ? -> no
133 m_userScaleX = x;
134 m_userScaleY = y;
135 ComputeScaleAndOrigin();
ff7b1510 136}
c801d85f 137
c801d85f
KB
138void wxDC::SetLogicalScale( double x, double y )
139{
4bc67cc5
RR
140 // allow negative ?
141 m_logicalScaleX = x;
142 m_logicalScaleY = y;
143 ComputeScaleAndOrigin();
ff7b1510 144}
c801d85f 145
72cdf4c9 146void wxDC::SetLogicalOrigin( wxCoord x, wxCoord y )
c801d85f 147{
4bc67cc5
RR
148 m_logicalOriginX = x * m_signX; // is this still correct ?
149 m_logicalOriginY = y * m_signY;
150 ComputeScaleAndOrigin();
ff7b1510 151}
c801d85f 152
72cdf4c9 153void wxDC::SetDeviceOrigin( wxCoord x, wxCoord y )
c801d85f 154{
4bc67cc5 155 // only wxPostScripDC has m_signX = -1, we override SetDeviceOrigin there
a23fd0e1 156 m_deviceOriginX = x;
4bc67cc5
RR
157 m_deviceOriginY = y;
158 ComputeScaleAndOrigin();
ff7b1510 159}
c801d85f 160
c801d85f
KB
161void wxDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp )
162{
4bc67cc5
RR
163 // only wxPostScripDC has m_signX = -1, we override SetAxisOrientation there
164 m_signX = (xLeftRight ? 1 : -1);
165 m_signY = (yBottomUp ? -1 : 1);
166 ComputeScaleAndOrigin();
ff7b1510 167}
c801d85f 168
a23fd0e1
VZ
169// ---------------------------------------------------------------------------
170// coordinates transformations
171// ---------------------------------------------------------------------------
172
72cdf4c9 173wxCoord wxDCBase::DeviceToLogicalX(wxCoord x) const
c801d85f 174{
b0e0d661 175 return ((wxDC *)this)->XDEV2LOG(x);
ff7b1510 176}
c801d85f 177
72cdf4c9 178wxCoord wxDCBase::DeviceToLogicalY(wxCoord y) const
c801d85f 179{
b0e0d661 180 return ((wxDC *)this)->YDEV2LOG(y);
ff7b1510 181}
c801d85f 182
72cdf4c9 183wxCoord wxDCBase::DeviceToLogicalXRel(wxCoord x) const
c801d85f 184{
b0e0d661 185 return ((wxDC *)this)->XDEV2LOGREL(x);
ff7b1510 186}
c801d85f 187
72cdf4c9 188wxCoord wxDCBase::DeviceToLogicalYRel(wxCoord y) const
c801d85f 189{
b0e0d661 190 return ((wxDC *)this)->YDEV2LOGREL(y);
ff7b1510 191}
c801d85f 192
72cdf4c9 193wxCoord wxDCBase::LogicalToDeviceX(wxCoord x) const
c801d85f 194{
b0e0d661 195 return ((wxDC *)this)->XLOG2DEV(x);
ff7b1510 196}
c801d85f 197
72cdf4c9 198wxCoord wxDCBase::LogicalToDeviceY(wxCoord y) const
c801d85f 199{
b0e0d661 200 return ((wxDC *)this)->YLOG2DEV(y);
ff7b1510 201}
c801d85f 202
72cdf4c9 203wxCoord wxDCBase::LogicalToDeviceXRel(wxCoord x) const
c801d85f 204{
b0e0d661 205 return ((wxDC *)this)->XLOG2DEVREL(x);
ff7b1510 206}
c801d85f 207
72cdf4c9 208wxCoord wxDCBase::LogicalToDeviceYRel(wxCoord y) const
c801d85f 209{
b0e0d661 210 return ((wxDC *)this)->YLOG2DEVREL(y);
ff7b1510 211}
c801d85f 212