]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/event.tex
renamed HasFocus() to IsActive() to avoid confusion with FindFocus(); documented...
[wxWidgets.git] / docs / latex / wx / event.tex
index c48dd65ac582cdcea4124a17af7c317be994b3a8..1a4306e8514d9d7a5377c987ce253e0b0797ebdd 100644 (file)
@@ -4,6 +4,11 @@ An event is a structure holding information about an event passed to a
 callback or member function. {\bf wxEvent} used to be a multipurpose
 event object, and is an abstract base class for other event classes (see below).
 
+For more information about events, see the \helpref{Event handling overview}{eventhandlingoverview}.
+
+\perlnote{In wxPerl custome event classes should be derived from
+\texttt{Wx::PlEvent} and \texttt{Wx::PlCommandEvent}.}
+
 \wxheading{Derived from}
 
 \helpref{wxObject}{wxobject}
@@ -54,9 +59,9 @@ may be temporarily changed by \helpref{StopPropagation}{wxeventstoppropagation}
 and \helpref{ResumePropagation}{wxeventresumepropagation} and tested with 
 \helpref{ShouldPropagate}{wxeventshouldpropagate}.
 
-The initial value is set to either {\tt wxEVENT\_PROPAGATION\_NONE} (by
+The initial value is set to either {\tt wxEVENT\_PROPAGATE\_NONE} (by
 default) meaning that the event shouldn't be propagated at all or to 
-{\tt wxEVENT\_PROPAGATION\_MAX} (for command events) meaning that it should be
+{\tt wxEVENT\_PROPAGATE\_MAX} (for command events) meaning that it should be
 propagated as much as necessary.
 
 Any positive number means that the event should be propagated but no more than
@@ -81,16 +86,17 @@ Timestamp for this event.
 
 Returns a copy of the event.
 
-Any event that is posted to the wxWindows event system for later action (via
+Any event that is posted to the wxWidgets event system for later action (via
 \helpref{wxEvtHandler::AddPendingEvent}{wxevthandleraddpendingevent} or
-\helpref{wxPostEvent}{wxpostevent}) must implement this method. All wxWindows
+\helpref{wxPostEvent}{wxpostevent}) must implement this method. All wxWidgets
 events fully implement this method, but any derived events implemented by the
 user should also implement this method just in case they (or some event
 derived from them) are ever posted.
 
-All wxWindows events implement a copy constructor, so the easiest way of
+All wxWidgets events implement a copy constructor, so the easiest way of
 implementing the Clone function is to implement a copy constructor for
 a new event (call it MyEvent) and then define the Clone function like this:
+
 \begin{verbatim}
     wxEvent *Clone(void) const { return new MyEvent(*this); }
 \end{verbatim}
@@ -185,9 +191,9 @@ Called by an event handler to tell the event system that the
 event handler should be skipped, and the next valid handler used
 instead.
 
-\membersection{wxEvent::StopPropagation}
+\membersection{wxEvent::StopPropagation}\label{wxeventstoppropagation}
 
-\func{int}{StopPropagation}{\void}\label{wxeventstoppropagation}
+\func{int}{StopPropagation}{\void}
 
 Stop the event from propagating to its parent window.
 
@@ -195,4 +201,3 @@ Returns the old propagation level value which may be later passed to
 \helpref{ResumePropagation}{wxeventresumepropagation} to allow propagating the
 event again.
 
-