]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/tstyles.tex
eVC3 (older WinCE) build fix.
[wxWidgets.git] / docs / latex / wx / tstyles.tex
... / ...
CommitLineData
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
14Window styles are used to specify alternative behaviour and appearances for windows, when they are
15created. The symbols are defined in such a way that they can be combined in a `bit-list' using the
16C++ {\it bitwise-or} operator. For example:
17
18\begin{verbatim}
19 wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER
20\end{verbatim}
21
22For the window styles specific to each window class, please see the documentation
23for the window. Most windows can use the generic styles listed for \helpref{wxWindow}{wxwindow} in
24addition to their own styles.