]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxMoveEvent}}\label{wxmoveevent} |
2 | ||
3 | A move event holds information about move change events. | |
4 | ||
5 | \wxheading{Derived from} | |
6 | ||
7 | \helpref{wxEvent}{wxevent}\\ | |
8 | \helpref{wxObject}{wxobject} | |
9 | ||
10 | \wxheading{Event table macros} | |
11 | ||
12 | To process a move event, use this event handler macro to direct input to a member | |
13 | function that takes a wxMoveEvent argument. | |
14 | ||
15 | \twocolwidtha{7cm} | |
16 | \begin{twocollist}\itemsep=0pt | |
17 | \twocolitem{{\bf EVT\_MOVE(func)}}{Process a wxEVT\_MOVE event, which is generated | |
18 | when a window is moved.} | |
19 | \end{twocollist}% | |
20 | ||
21 | \wxheading{See also} | |
22 | ||
23 | \helpref{wxWindow::OnMove}{wxwindowonmove}, \helpref{wxPoint}{wxpoint}, \helpref{Event handling overview}{eventhandlingoverview} | |
24 | ||
25 | \latexignore{\rtfignore{\wxheading{Members}}} | |
26 | ||
27 | \membersection{wxMoveEvent::wxMoveEvent} | |
28 | ||
29 | \func{}{wxMoveEvent}{\param{const wxPoint\& }{pt}, \param{int }{id = 0}} | |
30 | ||
31 | Constructor. | |
32 | ||
33 | \membersection{wxMoveEvent::GetPosition}\label{wxmoveeventgetposition} | |
34 | ||
35 | \constfunc{wxPoint}{GetPosition}{\void} | |
36 | ||
37 | Returns the position of the window generating the move change event. | |
38 |