]>
Commit | Line | Data |
---|---|---|
47f8e398 VZ |
1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
2 | %% Name: maxzevt.tex | |
3 | %% Purpose: wxMaximizeEvent documentation | |
4 | %% Author: Vadim Zeitlin | |
5 | %% Modified by: | |
6 | %% Created: | |
7 | %% RCS-ID: $Id$ | |
8 | %% Copyright: (c) 2001 Vadim Zeitlin | |
8795498c | 9 | %% License: wxWindows license |
47f8e398 VZ |
10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
11 | ||
12 | \section{\class{wxMaximizeEvent}}\label{wxmaximizeevent} | |
13 | ||
e8dacf99 VZ |
14 | An event being sent when a top level window is maximized. Notice that it is |
15 | not sent when the window is restored to its original size after it had been | |
16 | maximized, only a normal \helpref{wxSizeEvent}{wxsizeevent} is generated in | |
17 | this case. | |
47f8e398 VZ |
18 | |
19 | \wxheading{Derived from} | |
20 | ||
21 | \helpref{wxEvent}{wxevent}\\ | |
22 | \helpref{wxObject}{wxobject} | |
23 | ||
24 | \wxheading{Include files} | |
25 | ||
26 | <wx/event.h> | |
27 | ||
a7af285d VZ |
28 | \wxheading{Library} |
29 | ||
30 | \helpref{wxCore}{librarieslist} | |
31 | ||
47f8e398 VZ |
32 | \wxheading{Event table macros} |
33 | ||
34 | To process a maximize event, use this event handler macro to direct input to a | |
35 | member function that takes a wxMaximizeEvent argument. | |
36 | ||
37 | \twocolwidtha{7cm} | |
38 | \begin{twocollist}\itemsep=0pt | |
39 | \twocolitem{{\bf EVT\_MAXIMIZE(func)}}{Process a wxEVT\_MAXIMIZE event.} | |
40 | \end{twocollist}% | |
41 | ||
42 | \wxheading{See also} | |
43 | ||
44 | \helpref{Event handling overview}{eventhandlingoverview},\rtfsp | |
8caac90d WS |
45 | \helpref{wxTopLevelWindow::Maximize}{wxtoplevelwindowmaximize},\rtfsp |
46 | \helpref{wxTopLevelWindow::IsMaximized}{wxtoplevelwindowismaximized} | |
47f8e398 VZ |
47 | |
48 | \latexignore{\rtfignore{\wxheading{Members}}} | |
49 | ||
50 | \membersection{wxMaximizeEvent::wxMaximizeEvent}\label{wxmaximizeeventctor} | |
51 | ||
52 | \func{}{wxMaximizeEvent}{\param{int }{id = 0}} | |
53 | ||
e8dacf99 | 54 | Constructor. Only used by wxWidgets internally. |
47f8e398 | 55 |