]>
Commit | Line | Data |
---|---|---|
1c067fe3 WS |
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 | ||
a660d684 KB |
12 | \section{Window styles}\label{windowstyles} |
13 | ||
14 | Window styles are used to specify alternative behaviour and appearances for windows, when they are | |
f70c0443 | 15 | created. The symbols are defined in such a way that they can be combined in a `bit-list' using the |
a660d684 KB |
16 | C++ {\it bitwise-or} operator. For example: |
17 | ||
18 | \begin{verbatim} | |
1c067fe3 | 19 | wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER |
a660d684 KB |
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. | |
b67a86d5 | 25 |