]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcmirror.h
added wxGetCCDefaultFont() returning the default icon font
[wxWidgets.git] / include / wx / dcmirror.h
index fcb396113cfe1e23443998d50575597e0a3f092c..5b3a13988c54fbc04781420b8537f1637f1a7c5c 100644 (file)
@@ -18,7 +18,7 @@
 // wxMirrorDC allows to write the same code for horz/vertical layout
 // ----------------------------------------------------------------------------
 
-class WXDLLEXPORT wxMirrorDC : public wxDCBase
+class WXDLLEXPORT wxMirrorDC : public wxDC
 {
 public:
     // constructs a mirror DC associated with the given real DC
@@ -67,6 +67,12 @@ public:
     virtual void SetLogicalFunction(int function)
         { m_dc.SetLogicalFunction(function); }
 
+    // helper functions which may be useful for the users of this class
+    wxSize Reflect(const wxSize& sizeOrig)
+    {
+        return m_mirror ? wxSize(sizeOrig.y, sizeOrig.x) : sizeOrig;
+    }
+
 protected:
     // returns x and y if not mirroring or y and x if mirroring
     wxCoord GetX(wxCoord x, wxCoord y) const { return m_mirror ? y : x; }
@@ -272,6 +278,8 @@ private:
     wxMirrorDC& m_dc;
 
     bool m_mirror;
+
+    DECLARE_NO_COPY_CLASS(wxMirrorDC)
 };
 
 #endif // _WX_DCMIRROR_H_