]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk1/dc.cpp
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / src / gtk1 / dc.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/gtk1/dc.cpp
3// Purpose:
4// Author: Robert Roebling
5// Copyright: (c) 1998 Robert Roebling
6// Licence: wxWindows licence
7/////////////////////////////////////////////////////////////////////////////
8
9// For compilers that support precompilation, includes "wx.h".
10#include "wx/wxprec.h"
11
12#include "wx/gtk1/dc.h"
13
14#include <gdk/gdk.h>
15#include <gtk/gtk.h>
16
17//-----------------------------------------------------------------------------
18// wxGTKDCImpl
19//-----------------------------------------------------------------------------
20
21IMPLEMENT_ABSTRACT_CLASS(wxGTKDCImpl, wxDCImpl)
22
23wxGTKDCImpl::wxGTKDCImpl(wxDC *owner)
24 : wxDCImpl(owner)
25{
26 m_ok = FALSE;
27
28 m_logicalFunction = wxCOPY;
29
30 m_pen = *wxBLACK_PEN;
31 m_font = *wxNORMAL_FONT;
32 m_brush = *wxWHITE_BRUSH;
33}
34
35void wxGTKDCImpl::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
36{
37 m_clipping = TRUE;
38 m_clipX1 = x;
39 m_clipY1 = y;
40 m_clipX2 = x + width;
41 m_clipY2 = y + height;
42}
43
44// ---------------------------------------------------------------------------
45// get DC capabilities
46// ---------------------------------------------------------------------------
47
48void wxGTKDCImpl::DoGetSizeMM( int* width, int* height ) const
49{
50 int w = 0;
51 int h = 0;
52 GetSize( &w, &h );
53 if (width) *width = int( double(w) / (m_userScaleX*m_mm_to_pix_x) );
54 if (height) *height = int( double(h) / (m_userScaleY*m_mm_to_pix_y) );
55}
56
57// Resolution in pixels per logical inch
58wxSize wxGTKDCImpl::GetPPI() const
59{
60 // TODO (should probably be pure virtual)
61 return wxSize(0, 0);
62}
63