]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/dcpsg.h
add the possibility to cancel drag-resizing by pressing Esc
[wxWidgets.git] / include / wx / generic / dcpsg.h
index 3cfbba636a88fbe1c26a6446b2693f505de2ba1b..5c0a7ef214c588a5c6a1e79c2f0f9b60b7d93c04 100644 (file)
@@ -27,7 +27,7 @@
 //-----------------------------------------------------------------------------
 
 
 //-----------------------------------------------------------------------------
 
 
-class WXDLLEXPORT wxPostScriptDC : public wxDC
+class WXDLLIMPEXP_CORE wxPostScriptDC : public wxDC
 {
 public:
     wxPostScriptDC();
 {
 public:
     wxPostScriptDC();
@@ -39,7 +39,7 @@ private:
     DECLARE_DYNAMIC_CLASS(wxPostScriptDC)
 };
 
     DECLARE_DYNAMIC_CLASS(wxPostScriptDC)
 };
 
-class WXDLLEXPORT wxPostScriptDCImpl : public wxDCImpl
+class WXDLLIMPEXP_CORE wxPostScriptDCImpl : public wxDCImpl
 {
 public:
     wxPostScriptDCImpl( wxPrinterDC *owner );
 {
 public:
     wxPostScriptDCImpl( wxPrinterDC *owner );
@@ -91,8 +91,8 @@ public:
 
     // Overrridden for wxPrinterDC Impl
 
 
     // Overrridden for wxPrinterDC Impl
 
-    virtual int GetResolution();
-    virtual wxRect GetPaperRect();
+    virtual int GetResolution() const;
+    virtual wxRect GetPaperRect() const;
 
 protected:
     bool DoFloodFill(wxCoord x1, wxCoord y1, const wxColour &col, int style = wxFLOOD_SURFACE);
 
 protected:
     bool DoFloodFill(wxCoord x1, wxCoord y1, const wxColour &col, int style = wxFLOOD_SURFACE);
@@ -119,7 +119,10 @@ protected:
     void DoDrawText(const wxString& text, wxCoord x, wxCoord y);
     void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle);
     void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
     void DoDrawText(const wxString& text, wxCoord x, wxCoord y);
     void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle);
     void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
-    void DoSetClippingRegionAsRegion( const wxRegion &WXUNUSED(clip)) { }
+    void DoSetDeviceClippingRegion( const wxRegion &WXUNUSED(clip))
+    {
+        wxFAIL_MSG( "not implemented" );
+    }
     void DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y,
                          wxCoord *descent = NULL,
                          wxCoord *externalLeading = NULL,
     void DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y,
                          wxCoord *descent = NULL,
                          wxCoord *externalLeading = NULL,
@@ -128,7 +131,6 @@ protected:
     void DoGetSizeMM(int *width, int *height) const;
 
     FILE*             m_pstream;    // PostScript output stream
     void DoGetSizeMM(int *width, int *height) const;
 
     FILE*             m_pstream;    // PostScript output stream
-    wxString          m_title;
     unsigned char     m_currentRed;
     unsigned char     m_currentGreen;
     unsigned char     m_currentBlue;
     unsigned char     m_currentRed;
     unsigned char     m_currentGreen;
     unsigned char     m_currentBlue;