]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/scrolevt.tex
MF_BYCOMMAND is zero so don't try to test it
[wxWidgets.git] / docs / latex / wx / scrolevt.tex
CommitLineData
a660d684
KB
1\section{\class{wxScrollEvent}}\label{wxscrollevent}
2
9c7a49b5 3A scroll event holds information about events sent from stand-alone
dd56228c 4\helpref{scrollbars}{wxscrollbar} and \helpref{sliders}{wxslider}. Note that
fc2171bd 5starting from wxWidgets 2.1, scrolled windows send the
dd56228c
VZ
6\helpref{wxScrollWinEvent}{wxscrollwinevent} which does not derive from
7wxCommandEvent, but from wxEvent directly - don't confuse these two kinds of
8events and use the event table macros mentioned below only for the
9scrollbar-like controls.
a660d684
KB
10
11\wxheading{Derived from}
12
13\helpref{wxCommandEvent}{wxcommandevent}\\
14\helpref{wxEvent}{wxevent}\\
15\helpref{wxObject}{wxobject}
16
954b8ae6
JS
17\wxheading{Include files}
18
19<wx/event.h>
20
dd56228c 21\input scrolevt.inc
a660d684
KB
22
23\wxheading{Remarks}
24
25Note that unless specifying a scroll control identifier, you will need to test for scrollbar
26orientation with \helpref{wxScrollEvent::GetOrientation}{wxscrolleventgetorientation}, since
27horizontal and vertical scroll events are processed using the same event handler.
28
29\wxheading{See also}
30
fd128b0c
RR
31\helpref{wxScrollBar}{wxscrollbar}, \helpref{wxSlider}{wxslider}, \helpref{wxSpinButton}{wxspinbutton}, \\
32\helpref{wxScrollWinEvent}{wxscrollwinevent}, \helpref{Event handling overview}{eventhandlingoverview}
a660d684
KB
33
34\latexignore{\rtfignore{\wxheading{Members}}}
35
08f1d438 36\membersection{wxScrollEvent::wxScrollEvent}\label{wxscrolleventctor}
a660d684
KB
37
38\func{}{wxScrollEvent}{\param{WXTYPE }{commandType = 0}, \param{int }{id = 0}, \param{int}{ pos = 0},
39\rtfsp\param{int}{ orientation = 0}}
40
41Constructor.
42
43\membersection{wxScrollEvent::GetOrientation}\label{wxscrolleventgetorientation}
44
45\constfunc{int}{GetOrientation}{\void}
46
47Returns wxHORIZONTAL or wxVERTICAL, depending on the orientation of the scrollbar.
48
49\membersection{wxScrollEvent::GetPosition}\label{wxscrolleventgetposition}
50
51\constfunc{int}{GetPosition}{\void}
52
53Returns the position of the scrollbar.
54