]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/graphics.h
Better documentation for the default parameters values.
[wxWidgets.git] / interface / wx / graphics.h
index 83627b2ef416f9c7e6ad05ccb0dafd35880502a5..6431067da99b100a324db42ad0df0531ab6a9311 100644 (file)
@@ -807,6 +807,23 @@ public:
     virtual wxCompositionMode GetCompositionMode() const;
 
 
+    /**
+       Push the current state of the context's transformation matrix on a
+       stack.
+
+       @see wxGraphicsContext::PopState
+    */
+    virtual void PushState() = 0;
+
+    /**
+       Pops a stored state from the stack and sets the current transformation
+       matrix to that state.
+
+       @see wxGraphicsContext::PopState
+    */
+    virtual void PopState() = 0;
+
+
     virtual void EnableOffset(bool enable = true);
     void DisableOffset();
     bool OffsetEnabled();