Define _CRT_NONSTDC_NO_WARNINGS for zlib compilation with MSVC.
[wxWidgets.git] / docs / doxygen / overviews / windowstyles.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: windowstyles.h
3 // Purpose: topic overview
4 // Author: wxWidgets team
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
7
8 /**
9
10 @page overview_windowstyles Window Styles
11
12 @tableofcontents
13
14 Window styles are used to specify alternative behaviour and appearances for
15 windows, when they are created. The symbols are defined in such a way that they
16 can be combined in a 'bit-list' using the C++ @e bitwise-or operator.
17
18 For example:
19
20 @code
21 wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER
22 @endcode
23
24 For the window styles specific to each window class, please see the
25 documentation for the window.
26
27 Most windows can use the generic styles listed for wxWindow in addition to
28 their own styles.
29
30 */