]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/gdicmn.h
Add richtext event types.
[wxWidgets.git] / interface / wx / gdicmn.h
index 12daa92904c44e51ed84f474cbfe28bc85d59a9d..ec06e76c6f86501502e295b4ef3290827237fc4f 100644 (file)
@@ -423,6 +423,11 @@ public:
     */
     void SetHeight(int height);
 
+    /**
+        Sets the position.
+    */
+    void SetPosition(const wxPoint& pos);
+
     /**
         Sets the size.
 
@@ -600,6 +605,16 @@ public:
     /**
         Converts the given wxRealPoint (with floating point coordinates) to a
         wxPoint instance.
+
+        Notice that this truncates the floating point values of @a pt
+        components, if you want to round them instead you need to do it
+        manually, e.g.
+        @code
+            #include <wx/math.h>    // for wxRound()
+
+            wxRealPoint rp = ...;
+            wxPoint p(wxRound(rp.x), wxRound(rp.y));
+        @endcode
     */
     wxPoint(const wxRealPoint& pt);