2006-03-31 18:07:22 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%% Name: tstyles.tex
|
|
|
|
%% Purpose: Window styles documenation
|
|
|
|
%% Author: wxWidgets Team
|
|
|
|
%% Modified by:
|
|
|
|
%% Created:
|
|
|
|
%% RCS-ID: $Id$
|
|
|
|
%% Copyright: (c) wxWidgets Team
|
|
|
|
%% License: wxWindows license
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
1998-05-20 14:25:30 +00:00
|
|
|
\section{Window styles}\label{windowstyles}
|
|
|
|
|
|
|
|
Window styles are used to specify alternative behaviour and appearances for windows, when they are
|
2004-09-04 02:44:43 +00:00
|
|
|
created. The symbols are defined in such a way that they can be combined in a `bit-list' using the
|
1998-05-20 14:25:30 +00:00
|
|
|
C++ {\it bitwise-or} operator. For example:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
2006-03-31 18:07:22 +00:00
|
|
|
wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER
|
1998-05-20 14:25:30 +00:00
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
For the window styles specific to each window class, please see the documentation
|
|
|
|
for the window. Most windows can use the generic styles listed for \helpref{wxWindow}{wxwindow} in
|
|
|
|
addition to their own styles.
|