]> git.saurik.com Git - wxWidgets.git/blame - docs/doxygen/overviews/windowstyles.h
removed wxAcceleratorTable copy ctor docs, no port implements it
[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$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
880efa2a 9/**
36c9828f 10
3863c5eb 11@page overview_windowstyles Window Styles
36c9828f 12
3863c5eb
BP
13Window styles are used to specify alternative behaviour and appearances for
14windows, when they are created. The symbols are defined in such a way that they
15can be combined in a 'bit-list' using the C++ @e bitwise-or operator. For
16example:
36c9828f 17
3863c5eb
BP
18@code
19wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER
20@endcode
36c9828f 21
3863c5eb
BP
22For the window styles specific to each window class, please see the
23documentation for the window. Most windows can use the generic styles listed
24for wxWindow in addition to their own styles.
36c9828f 25
3863c5eb 26*/
36c9828f 27