]> git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/overviews/windowstyles.h
added initial version of the Doxygen manual
[wxWidgets.git] / docs / doxygen / overviews / windowstyles.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: windowstyles
3 // Purpose: topic overview
4 // Author: wxWidgets team
5 // RCS-ID: $Id$
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
8
9 /*!
10
11 @page windowstyles_overview Window styles
12
13 Window styles are used to specify alternative behaviour and appearances for windows, when they are
14 created. The symbols are defined in such a way that they can be combined in a 'bit-list' using the
15 C++ @e bitwise-or operator. For example:
16
17 @code
18 wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER
19 @endcode
20
21 For the window styles specific to each window class, please see the documentation
22 for the window. Most windows can use the generic styles listed for #wxWindow in
23 addition to their own styles.
24
25 */
26
27