]> git.saurik.com Git - wxWidgets.git/blob - include/wx/tabctrl.h
OnGetLineHeight and OnGetLinesHint are virtual, so document them as such. Closes...
[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 BEGIN_DECLARE_EVENT_TYPES()
20 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TAB_SEL_CHANGED, 800)
21 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TAB_SEL_CHANGING, 801)
22 END_DECLARE_EVENT_TYPES()
23
24 #if defined(__WXMSW__)
25 #include "wx/msw/tabctrl.h"
26 #elif defined(__WXMOTIF__)
27 #include "wx/motif/tabctrl.h"
28 #elif defined(__WXGTK__)
29 #elif defined(__WXMAC__)
30 #include "wx/mac/tabctrl.h"
31 #elif defined(__WXPM__)
32 #include "wx/os2/tabctrl.h"
33 #endif
34
35 #endif // wxUSE_TAB_DIALOG
36 #endif
37 // _WX_TABCTRL_H_BASE_