]>
Commit | Line | Data |
---|---|---|
3dd9b88a VZ |
1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
2 | %% Name: sizeevt.tex | |
8443e0d2 | 3 | %% Purpose: wxSizeEvent documentation |
3dd9b88a VZ |
4 | %% Author: wxWindows team |
5 | %% Modified by: | |
6 | %% Created: | |
7 | %% RCS-ID: $Id$ | |
8 | %% Copyright: (c) wxWindows team | |
9 | %% License: wxWindows license | |
10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3dd9b88a | 11 | |
a660d684 KB |
12 | \section{\class{wxSizeEvent}}\label{wxsizeevent} |
13 | ||
14 | A size event holds information about size change events. | |
15 | ||
16 | \wxheading{Derived from} | |
17 | ||
18 | \helpref{wxEvent}{wxevent}\\ | |
19 | \helpref{wxObject}{wxobject} | |
20 | ||
954b8ae6 JS |
21 | \wxheading{Include files} |
22 | ||
23 | <wx/event.h> | |
24 | ||
a660d684 KB |
25 | \wxheading{Event table macros} |
26 | ||
27 | To process a size event, use this event handler macro to direct input to a member | |
28 | function that takes a wxSizeEvent argument. | |
29 | ||
30 | \twocolwidtha{7cm} | |
31 | \begin{twocollist}\itemsep=0pt | |
32 | \twocolitem{{\bf EVT\_SIZE(func)}}{Process a wxEVT\_SIZE event.} | |
33 | \end{twocollist}% | |
34 | ||
35 | \wxheading{See also} | |
36 | ||
3dd9b88a VZ |
37 | \helpref{wxSize}{wxsize},\rtfsp |
38 | \helpref{Event handling overview}{eventhandlingoverview} | |
a660d684 KB |
39 | |
40 | \latexignore{\rtfignore{\wxheading{Members}}} | |
41 | ||
42 | \membersection{wxSizeEvent::wxSizeEvent} | |
43 | ||
44 | \func{}{wxSizeEvent}{\param{const wxSize\& }{sz}, \param{int }{id = 0}} | |
45 | ||
46 | Constructor. | |
47 | ||
48 | \membersection{wxSizeEvent::GetSize}\label{wxsizeeventgetsize} | |
49 | ||
50 | \constfunc{wxSize}{GetSize}{\void} | |
51 | ||
52 | Returns the entire size of the window generating the size change event. | |
53 |