]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/doxygen/overviews/windowstyles.h
add very simple (but already exposing many problems) wxIPC benchmark
[wxWidgets.git] / docs / doxygen / overviews / windowstyles.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: windowstyles.h
3// Purpose: topic overview
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10
11@page overview_windowstyles Window Styles
12
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.
16
17For example:
18
19@code
20wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER
21@endcode
22
23For the window styles specific to each window class, please see the
24documentation for the window.
25
26Most windows can use the generic styles listed for wxWindow in addition to
27their own styles.
28
29*/
30