]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/dc.h
make wxSetEnv compatible with ANSI and Unicode, deprecate passing NULL to it in favou...
[wxWidgets.git] / include / wx / gtk1 / dc.h
index 33c6663eb986fa3fa98a39b5ac7b61a1dc0b8bdb..fa3aa6465252e5ebff4a16bf84e90b5065f5e667 100644 (file)
@@ -38,7 +38,9 @@ public:
     virtual void StartPage() { }
     virtual void EndPage() { }
 
-protected:
+    virtual GdkWindow* GetGDKWindow() const { return NULL; }
+
+public:
     // implementation
     wxCoord XDEV2LOG(wxCoord x) const       { return DeviceToLogicalX(x); }
     wxCoord XDEV2LOGREL(wxCoord x) const    { return DeviceToLogicalXRel(x); }
@@ -48,7 +50,7 @@ protected:
     wxCoord XLOG2DEVREL(wxCoord x) const    { return LogicalToDeviceXRel(x); }
     wxCoord YLOG2DEV(wxCoord y) const       { return LogicalToDeviceY(y); }
     wxCoord YLOG2DEVREL(wxCoord y) const    { return LogicalToDeviceYRel(y); }
-    
+
     // base class pure virtuals implemented here
     virtual void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
     virtual void DoGetSizeMM(int* width, int* height) const;