X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a78618b062fd6468a823ad1ed3d9034c493cd4a8..b18e2046af6c8eaf6e867ba18dd9410dbd7dfcf7:/interface/wx/control.h diff --git a/interface/wx/control.h b/interface/wx/control.h index cba493cbb9..2d56ad3c60 100644 --- a/interface/wx/control.h +++ b/interface/wx/control.h @@ -53,6 +53,16 @@ enum wxEllipsizeMode A control is generally a small window which processes user input and/or displays one or more item of data. + @beginEventEmissionTable{wxClipboardTextEvent} + @event{EVT_TEXT_COPY(id, func)} + Some or all of the controls content was copied to the clipboard. + @event{EVT_TEXT_CUT(id, func)} + Some or all of the controls content was cut (i.e. copied and + deleted). + @event{EVT_TEXT_PASTE(id, func)} + Clipboard content was pasted into the control. + @endEventTable + @library{wxcore} @category{ctrl}