]> git.saurik.com Git - wxWidgets.git/blob - include/wx/tabctrl.h
hook the docview-specific customization of event handling logic at TryValidator(...
[wxWidgets.git] / include / wx / tabctrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/tabctrl.h
3 // Purpose: wxTabCtrl base header
4 // Author: Julian Smart
5 // Modified by:
6 // Created:
7 // Copyright: (c) Julian Smart
8 // RCS-ID: $Id$
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_TABCTRL_H_BASE_
13 #define _WX_TABCTRL_H_BASE_
14
15 #include "wx/defs.h"
16
17 #if wxUSE_TAB_DIALOG
18
19 extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TAB_SEL_CHANGED;
20 extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TAB_SEL_CHANGING;
21
22 #if defined(__WXMSW__)
23 #include "wx/msw/tabctrl.h"
24 #elif defined(__WXMAC__)
25 #include "wx/osx/tabctrl.h"
26 #elif defined(__WXPM__)
27 #include "wx/os2/tabctrl.h"
28 #endif
29
30 #endif // wxUSE_TAB_DIALOG
31
32 #endif // _WX_TABCTRL_H_BASE_