X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9a25f336cb0dacea128923b369ee8da5dc171954..0c3140ca4494195cfe3fee8a21dd0834437993a6:/interface/wx/event.h?ds=sidebyside diff --git a/interface/wx/event.h b/interface/wx/event.h index ecd376d200..d02d5a0d37 100644 --- a/interface/wx/event.h +++ b/interface/wx/event.h @@ -1444,6 +1444,9 @@ public: //@{ /** Obtains the position (in client coordinates) at which the key was pressed. + + Notice that this position is simply the current mouse pointer position + and has no special relationship to the key event itself. */ wxPoint GetPosition() const; void GetPosition(long* x, long* y) const; @@ -1502,11 +1505,15 @@ public: /** Returns the X position (in client coordinates) of the event. + + @see GetPosition() */ wxCoord GetX() const; /** Returns the Y position (in client coordinates) of the event. + + @see GetPosition() */ wxCoord GetY() const; @@ -2159,8 +2166,8 @@ public: text was copied or cut. @note - These events are currently only generated by wxTextCtrl under GTK+. - They are generated by all controls under Windows. + These events are currently only generated by wxTextCtrl in wxGTK and wxOSX + but are also generated by wxComboBox without wxCB_READONLY style in wxMSW. @beginEventTable{wxClipboardTextEvent} @event{EVT_TEXT_COPY(id, func)} @@ -4543,6 +4550,7 @@ wxEventType wxEVT_COMMAND_ENTER; wxEventType wxEVT_HELP; wxEventType wxEVT_DETAILED_HELP; wxEventType wxEVT_COMMAND_TEXT_UPDATED; +wxEventType wxEVT_COMMAND_TEXT_ENTER; wxEventType wxEVT_COMMAND_TOOL_CLICKED; wxEventType wxEVT_WINDOW_MODAL_DIALOG_CLOSED;