]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/uiaction.h
Fix missing documentation for several GDI functions.
[wxWidgets.git] / include / wx / uiaction.h
index 773662067529555b833869c9177910845637f678..68de3dde6a713665d5e55ba49aacecc3486d4f04 100644 (file)
@@ -45,7 +45,9 @@ public:
     bool MouseDblClick(int button = wxMOUSE_BTN_LEFT);
     bool MouseDragDrop(long x1, long y1, long x2, long y2,
                        int button = wxMOUSE_BTN_LEFT);
     bool MouseDblClick(int button = wxMOUSE_BTN_LEFT);
     bool MouseDragDrop(long x1, long y1, long x2, long y2,
                        int button = wxMOUSE_BTN_LEFT);
-
+    bool MouseDragDrop(const wxPoint& p1, const wxPoint& p2,
+                       int button = wxMOUSE_BTN_LEFT)
+    { return MouseDragDrop(p1.x, p1.y, p2.x, p2.y, button); }
 
     // Keyboard simulation
     // -------------------
 
     // Keyboard simulation
     // -------------------
@@ -58,8 +60,8 @@ public:
         { return Key(keycode, modifiers, false); }
 
     // Higher level methods for generating both the key press and release for a
         { return Key(keycode, modifiers, false); }
 
     // Higher level methods for generating both the key press and release for a
-    // single key or for all characters in the ASCII string "text" which can
-    // currently contain letters only (no digits, no punctuation).
+    // single key or for all characters in the ASCII string "text" which can currently
+    // contain letters, digits and characters for the definition of numbers [+-., ].
     bool Char(int keycode, int modifiers = wxMOD_NONE);
 
     bool Text(const char *text);
     bool Char(int keycode, int modifiers = wxMOD_NONE);
 
     bool Text(const char *text);