]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcscreen.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
dbf858b5 | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
c801d85f KB |
13 | #include "wx/dcscreen.h" |
14 | #include "wx/window.h" | |
dbf858b5 | 15 | |
071a2d78 | 16 | #include <gdk/gdk.h> |
5d25c050 | 17 | #include <gdk/gdkx.h> |
071a2d78 | 18 | #include <gtk/gtk.h> |
83624f79 | 19 | |
dbf858b5 RR |
20 | //----------------------------------------------------------------------------- |
21 | // global data initialization | |
22 | //----------------------------------------------------------------------------- | |
23 | ||
24 | GdkWindow *wxScreenDC::sm_overlayWindow = (GdkWindow*) NULL; | |
72cdf4c9 VZ |
25 | int wxScreenDC::sm_overlayWindowX = 0; |
26 | int wxScreenDC::sm_overlayWindowY = 0; | |
dbf858b5 | 27 | |
c801d85f KB |
28 | //----------------------------------------------------------------------------- |
29 | // wxScreenDC | |
30 | //----------------------------------------------------------------------------- | |
31 | ||
32 | IMPLEMENT_DYNAMIC_CLASS(wxScreenDC,wxPaintDC) | |
33 | ||
72cdf4c9 | 34 | wxScreenDC::wxScreenDC() |
c801d85f | 35 | { |
4bc67cc5 | 36 | m_ok = FALSE; |
4bc67cc5 | 37 | m_cmap = gdk_colormap_get_system(); |
5d25c050 | 38 | m_window = GDK_ROOT_PARENT(); |
72cdf4c9 | 39 | |
3e3b7e75 | 40 | m_context = gdk_pango_context_get(); |
e90d93d1 MW |
41 | // Note: The Sun customised version of Pango shipping with Solaris 10 |
42 | // crashes if the language is left NULL (see bug 1374114) | |
203b65dd | 43 | pango_context_set_language( m_context, gtk_get_default_language() ); |
3e3b7e75 RD |
44 | m_layout = pango_layout_new( m_context ); |
45 | // m_fontdesc = pango_font_description_copy( widget->style->font_desc ); | |
3e3b7e75 | 46 | |
e1208c31 RR |
47 | m_isScreenDC = TRUE; |
48 | ||
4bc67cc5 | 49 | SetUpDC(); |
72cdf4c9 | 50 | |
4bc67cc5 RR |
51 | gdk_gc_set_subwindow( m_penGC, GDK_INCLUDE_INFERIORS ); |
52 | gdk_gc_set_subwindow( m_brushGC, GDK_INCLUDE_INFERIORS ); | |
53 | gdk_gc_set_subwindow( m_textGC, GDK_INCLUDE_INFERIORS ); | |
54 | gdk_gc_set_subwindow( m_bgGC, GDK_INCLUDE_INFERIORS ); | |
ff7b1510 | 55 | } |
c801d85f | 56 | |
72cdf4c9 | 57 | wxScreenDC::~wxScreenDC() |
c801d85f | 58 | { |
5d25c050 RR |
59 | gdk_gc_set_subwindow( m_penGC, GDK_CLIP_BY_CHILDREN ); |
60 | gdk_gc_set_subwindow( m_brushGC, GDK_CLIP_BY_CHILDREN ); | |
61 | gdk_gc_set_subwindow( m_textGC, GDK_CLIP_BY_CHILDREN ); | |
62 | gdk_gc_set_subwindow( m_bgGC, GDK_CLIP_BY_CHILDREN ); | |
63 | ||
4bc67cc5 | 64 | EndDrawingOnTop(); |
ff7b1510 | 65 | } |
c801d85f | 66 | |
b3d6b0c9 | 67 | bool wxScreenDC::StartDrawingOnTop( wxWindow * ) |
c801d85f | 68 | { |
b3d6b0c9 | 69 | return true; |
ff7b1510 | 70 | } |
c801d85f | 71 | |
b3d6b0c9 | 72 | bool wxScreenDC::StartDrawingOnTop( wxRect * ) |
c801d85f | 73 | { |
b3d6b0c9 | 74 | return true; |
ff7b1510 | 75 | } |
c801d85f | 76 | |
72cdf4c9 | 77 | bool wxScreenDC::EndDrawingOnTop() |
c801d85f | 78 | { |
b3d6b0c9 | 79 | return true; |
ff7b1510 RR |
80 | } |
81 | ||
376aa62a VZ |
82 | void wxScreenDC::DoGetSize(int *width, int *height) const |
83 | { | |
84 | wxDisplaySize(width, height); | |
85 | } |