]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/event.tex
fixed the wrong examples of CalcScrolled/UnscrolledPosition() usage
[wxWidgets.git] / docs / latex / wx / event.tex
CommitLineData
a660d684
KB
1\section{\class{wxEvent}}\label{wxevent}
2
3An event is a structure holding information about an event passed to a
4callback or member function. {\bf wxEvent} used to be a multipurpose
5event object, and is an abstract base class for other event classes (see below).
6
7\wxheading{Derived from}
8
9\helpref{wxObject}{wxobject}
10
954b8ae6
JS
11\wxheading{Include files}
12
13<wx/event.h>
14
a660d684
KB
15\wxheading{See also}
16
17\helpref{wxCommandEvent}{wxcommandevent},\rtfsp
18\helpref{wxMouseEvent}{wxmouseevent}
19
20\latexignore{\rtfignore{\wxheading{Members}}}
21
22\membersection{wxEvent::wxEvent}
23
24\func{}{wxEvent}{\param{int }{id = 0}}
25
26Constructor. Should not need to be used directly by an application.
27
28\membersection{wxEvent::m\_eventHandle}
29
30\member{char*}{m\_eventHandle}
31
32Handle of an underlying windowing system event handle, such as
33XEvent. Not guaranteed to be instantiated.
34
35\membersection{wxEvent::m\_eventObject}
36
37\member{wxObject*}{m\_eventObject}
38
39The object (usually a window) that the event was generated from,
40or should be sent to.
41
42\membersection{wxEvent::m\_eventType}
43
44\member{WXTYPE}{m\_eventType}
45
46The type of the event, such as wxEVENT\_TYPE\_BUTTON\_COMMAND.
47
48\membersection{wxEvent::m\_id}
49
50\member{int}{m\_id}
51
52Identifier for the window.
53
54\membersection{wxEvent::m\_skipped}
55
56\member{bool}{m\_skipped}
57
58Set to TRUE by {\bf Skip} if this event should be skipped.
59
60\membersection{wxEvent::m\_timeStamp}
61
62\member{long}{m\_timeStamp}
63
64Timestamp for this event.
65
a660d684
KB
66\membersection{wxEvent::GetEventObject}
67
68\func{wxObject*}{GetEventObject}{\void}
69
70Returns the object associated with the
71event, if any.
72
73\membersection{wxEvent::GetEventType}
74
75\func{WXTYPE}{GetEventType}{\void}
76
77Returns the identifier of the given event type,
78such as wxEVENT\_TYPE\_BUTTON\_COMMAND.
79
80\membersection{wxEvent::GetId}
81
82\func{int}{GetId}{\void}
83
84Returns the identifier associated with this event, such as a button command id.
85
86\membersection{wxEvent::GetObjectType}
87
88\func{WXTYPE}{GetObjectType}{\void}
89
90Returns the type of the object associated with the
91event, such as wxTYPE\_BUTTON.
92
93\membersection{wxEvent::GetSkipped}
94
95\func{bool}{GetSkipped}{\void}
96
97Returns TRUE if the event handler should be skipped, FALSE otherwise.
98
99\membersection{wxEvent::GetTimestamp}
100
101\func{long}{GetTimestamp}{\void}
102
103Gets the timestamp for the event.
104
105\membersection{wxEvent::SetEventObject}
106
107\func{void}{SetEventObject}{\param{wxObject* }{object}}
108
109Sets the originating object.
110
111\membersection{wxEvent::SetEventType}
112
113\func{void}{SetEventType}{\param{WXTYPE }{typ}}
114
115Sets the event type.
116
117\membersection{wxEvent::SetId}
118
119\func{void}{SetId}{\param{int}{ id}}
120
121Sets the identifier associated with this event, such as a button command id.
122
123\membersection{wxEvent::SetTimestamp}
124
125\func{void}{SetTimestamp}{\param{long }{timeStamp}}
126
127Sets the timestamp for the event.
128
129Sets the originating object.
130
131\membersection{wxEvent::Skip}\label{wxeventskip}
132
133\func{void}{Skip}{\param{bool}{ skip = TRUE}}
134
135Called by an event handler to tell the event system that the
136event handler should be skipped, and the next valid handler used
137instead.
138