]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/control.h
Only show the default close button in wxInfoBar if there are no others.
[wxWidgets.git] / interface / wx / control.h
index cba493cbb97d60d04fd8a83c147d32564a67ea84..2d56ad3c609a1955ecaea54241ff81cffdc826c5 100644 (file)
@@ -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}