]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk/dcscreen.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/dcscreen.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
13 #include "wx/dcscreen.h"
14 #include "wx/gtk/dcscreen.h"
17 #include "wx/window.h"
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
28 IMPLEMENT_ABSTRACT_CLASS(wxScreenDCImpl
, wxWindowDCImpl
)
30 wxScreenDCImpl::wxScreenDCImpl( wxScreenDC
*owner
)
31 : wxWindowDCImpl( owner
)
36 void wxScreenDCImpl::Init()
39 m_cmap
= gdk_colormap_get_system();
40 m_gdkwindow
= gdk_get_default_root_window();
42 m_context
= gdk_pango_context_get();
43 // Note: The Sun customised version of Pango shipping with Solaris 10
44 // crashes if the language is left NULL (see bug 1374114)
45 pango_context_set_language( m_context
, gtk_get_default_language() );
46 m_layout
= pango_layout_new( m_context
);
47 // m_fontdesc = pango_font_description_copy( widget->style->font_desc );
53 gdk_gc_set_subwindow( m_penGC
, GDK_INCLUDE_INFERIORS
);
54 gdk_gc_set_subwindow( m_brushGC
, GDK_INCLUDE_INFERIORS
);
55 gdk_gc_set_subwindow( m_textGC
, GDK_INCLUDE_INFERIORS
);
56 gdk_gc_set_subwindow( m_bgGC
, GDK_INCLUDE_INFERIORS
);
59 wxScreenDCImpl::~wxScreenDCImpl()
61 gdk_gc_set_subwindow( m_penGC
, GDK_CLIP_BY_CHILDREN
);
62 gdk_gc_set_subwindow( m_brushGC
, GDK_CLIP_BY_CHILDREN
);
63 gdk_gc_set_subwindow( m_textGC
, GDK_CLIP_BY_CHILDREN
);
64 gdk_gc_set_subwindow( m_bgGC
, GDK_CLIP_BY_CHILDREN
);
67 void wxScreenDCImpl::DoGetSize(int *width
, int *height
) const
69 wxDisplaySize(width
, height
);