]> git.saurik.com Git - wxWidgets.git/commitdiff
better documentation for wxEvent ctor
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 2 Dec 2008 12:00:55 +0000 (12:00 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 2 Dec 2008 12:00:55 +0000 (12:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57066 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/event.h

index a8d4459f1e60a99d9b247244942cae56762b1921..b10c6df97607c57433411417273517ac71466154 100644 (file)
@@ -34,7 +34,26 @@ class wxEvent : public wxObject
 {
 public:
     /**
-        Constructor. Should not need to be used directly by an application.
+        Constructor.
+
+        Notice that events are usually created by wxWidgets itself and creating
+        e.g. a wxPaintEvent in your code and sending it to e.g. a wxTextCtrl
+        will not usually affect it at all as native controls have no specific
+        knowledge about wxWidgets events. However you may construct objects of
+        specific types and pass them to wxEvtHandler::ProcessEvent() if you
+        want to create your own custom control and want to process its events
+        in the same manner as the standard ones.
+
+        Also please notice that the order of parameters in this constructor is
+        different from almost all the derived classes which specify the event
+        type as the first argument.
+
+        @param id
+            The identifier of the object (window, timer, ...) which generated
+            this event.
+        @param eventType
+            The unique type of event, e.g. wxEVT_PAINT, wxEVT_SIZE or
+            wxEVT_COMMAND_BUTTON_CLICKED.
     */
     wxEvent(int id = 0, wxEventType eventType = wxEVT_NULL);