]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/splitter.h | |
3 | // Purpose: Base header for wxSplitterWindow | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
99d80019 JS |
7 | // Copyright: (c) Julian Smart |
8 | // Licence: wxWindows Licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
34138703 JS |
11 | #ifndef _WX_SPLITTER_H_BASE_ |
12 | #define _WX_SPLITTER_H_BASE_ | |
c801d85f | 13 | |
3440463c VZ |
14 | #include "wx/event.h" |
15 | ||
b3208e11 VZ |
16 | // ---------------------------------------------------------------------------- |
17 | // wxSplitterWindow flags | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
52c14774 | 20 | #define wxSP_NOBORDER 0x0000 |
278f584f | 21 | #define wxSP_THIN_SASH 0x0000 // NB: the default is 3D sash |
b3208e11 VZ |
22 | #define wxSP_NOSASH 0x0010 |
23 | #define wxSP_PERMIT_UNSPLIT 0x0040 | |
24 | #define wxSP_LIVE_UPDATE 0x0080 | |
52c14774 VZ |
25 | #define wxSP_3DSASH 0x0100 |
26 | #define wxSP_3DBORDER 0x0200 | |
3c2544bb | 27 | #define wxSP_NO_XP_THEME 0x0400 |
52c14774 VZ |
28 | #define wxSP_BORDER wxSP_3DBORDER |
29 | #define wxSP_3D (wxSP_3DBORDER | wxSP_3DSASH) | |
b3208e11 | 30 | |
40ff126a WS |
31 | #if WXWIN_COMPATIBILITY_2_6 |
32 | // obsolete styles, don't do anything | |
33 | #define wxSP_SASH_AQUA 0 | |
34 | #define wxSP_FULLSASH 0 | |
35 | #endif // WXWIN_COMPATIBILITY_2_6 | |
b3208e11 | 36 | |
3c778901 VZ |
37 | class WXDLLIMPEXP_FWD_CORE wxSplitterEvent; |
38 | ||
ce7fe42e VZ |
39 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_SPLITTER_SASH_POS_CHANGED, wxSplitterEvent ); |
40 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_SPLITTER_SASH_POS_CHANGING, wxSplitterEvent ); | |
41 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_SPLITTER_DOUBLECLICKED, wxSplitterEvent ); | |
42 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_SPLITTER_UNSPLIT, wxSplitterEvent ); | |
2e4df4bf | 43 | |
c801d85f KB |
44 | #include "wx/generic/splitter.h" |
45 | ||
c058cafa | 46 | #endif // _WX_SPLITTER_H_BASE_ |