]>
Commit | Line | Data |
---|---|---|
1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
2 | %% Name: tstyles.tex | |
3 | %% Purpose: Window styles documenation | |
4 | %% Author: wxWidgets Team | |
5 | %% Modified by: | |
6 | %% Created: | |
7 | %% RCS-ID: $Id$ | |
8 | %% Copyright: (c) wxWidgets Team | |
9 | %% License: wxWindows license | |
10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
11 | ||
12 | \section{Window styles}\label{windowstyles} | |
13 | ||
14 | Window styles are used to specify alternative behaviour and appearances for windows, when they are | |
15 | created. The symbols are defined in such a way that they can be combined in a `bit-list' using the | |
16 | C++ {\it bitwise-or} operator. For example: | |
17 | ||
18 | \begin{verbatim} | |
19 | wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER | |
20 | \end{verbatim} | |
21 | ||
22 | For the window styles specific to each window class, please see the documentation | |
23 | for the window. Most windows can use the generic styles listed for \helpref{wxWindow}{wxwindow} in | |
24 | addition to their own styles. |