]> git.saurik.com Git - wxWidgets.git/blame - docs/doxygen/overviews/windowstyles.h
Fix broken and missing DataView interface items for Phoenix
[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
5// RCS-ID: $Id$
526954c5 6// Licence: wxWindows licence
15b6757b
FM
7/////////////////////////////////////////////////////////////////////////////
8
880efa2a 9/**
36c9828f 10
3863c5eb 11@page overview_windowstyles Window Styles
36c9828f 12
831e1028
BP
13@tableofcontents
14
3863c5eb
BP
15Window styles are used to specify alternative behaviour and appearances for
16windows, when they are created. The symbols are defined in such a way that they
b1b95a65
FM
17can be combined in a 'bit-list' using the C++ @e bitwise-or operator.
18
19For example:
36c9828f 20
3863c5eb
BP
21@code
22wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER
23@endcode
36c9828f 24
3863c5eb 25For the window styles specific to each window class, please see the
b1b95a65
FM
26documentation for the window.
27
28Most windows can use the generic styles listed for wxWindow in addition to
29their own styles.
36c9828f 30
3863c5eb 31*/