]> git.saurik.com Git - wxWidgets.git/blame - docs/doxygen/overviews/windowstyles.h
Fix problem with COMDLG_FILTERSPEC declaration with MinGW-w64 4.8.
[wxWidgets.git] / docs / doxygen / overviews / windowstyles.h
CommitLineData
15b6757b 1/////////////////////////////////////////////////////////////////////////////
3863c5eb 2// Name: windowstyles.h
15b6757b
FM
3// Purpose: topic overview
4// Author: wxWidgets team
526954c5 5// Licence: wxWindows licence
15b6757b
FM
6/////////////////////////////////////////////////////////////////////////////
7
880efa2a 8/**
36c9828f 9
3863c5eb 10@page overview_windowstyles Window Styles
36c9828f 11
831e1028
BP
12@tableofcontents
13
3863c5eb
BP
14Window styles are used to specify alternative behaviour and appearances for
15windows, when they are created. The symbols are defined in such a way that they
b1b95a65
FM
16can be combined in a 'bit-list' using the C++ @e bitwise-or operator.
17
18For example:
36c9828f 19
3863c5eb
BP
20@code
21wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER
22@endcode
36c9828f 23
3863c5eb 24For the window styles specific to each window class, please see the
b1b95a65
FM
25documentation for the window.
26
27Most windows can use the generic styles listed for wxWindow in addition to
28their own styles.
36c9828f 29
3863c5eb 30*/