2008-02-18 19:04:03 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2008-03-02 05:48:31 -05:00
|
|
|
// Name: windowstyles.h
|
2008-02-18 19:04:03 -05:00
|
|
|
// Purpose: topic overview
|
|
|
|
// Author: wxWidgets team
|
2010-07-13 09:29:13 -04:00
|
|
|
// Licence: wxWindows licence
|
2008-02-18 19:04:03 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-03-12 04:50:42 -04:00
|
|
|
/**
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-03-02 05:48:31 -05:00
|
|
|
@page overview_windowstyles Window Styles
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2012-11-03 14:34:10 -04:00
|
|
|
@tableofcontents
|
|
|
|
|
2008-03-02 05:48:31 -05:00
|
|
|
Window styles are used to specify alternative behaviour and appearances for
|
|
|
|
windows, when they are created. The symbols are defined in such a way that they
|
2008-04-10 17:16:38 -04:00
|
|
|
can be combined in a 'bit-list' using the C++ @e bitwise-or operator.
|
|
|
|
|
|
|
|
For example:
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-03-02 05:48:31 -05:00
|
|
|
@code
|
|
|
|
wxCAPTION | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER
|
|
|
|
@endcode
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-03-02 05:48:31 -05:00
|
|
|
For the window styles specific to each window class, please see the
|
2008-04-10 17:16:38 -04:00
|
|
|
documentation for the window.
|
|
|
|
|
|
|
|
Most windows can use the generic styles listed for wxWindow in addition to
|
|
|
|
their own styles.
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-03-02 05:48:31 -05:00
|
|
|
*/
|