]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_TABCTRL_H_BASE_ |
2 | #define _WX_TABCTRL_H_BASE_ | |
c801d85f | 3 | |
2e4df4bf VZ |
4 | BEGIN_DECLARE_EVENT_TYPES() |
5 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TAB_SEL_CHANGED, 800) | |
6 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TAB_SEL_CHANGING, 801) | |
7 | END_DECLARE_EVENT_TYPES() | |
8 | ||
2049ba38 | 9 | #if defined(__WXMSW__) |
c801d85f | 10 | #include "wx/msw/tabctrl.h" |
2049ba38 | 11 | #elif defined(__WXMOTIF__) |
34138703 | 12 | #include "wx/motif/tabctrl.h" |
2049ba38 | 13 | #elif defined(__WXGTK__) |
34138703 JS |
14 | #elif defined(__WXMAC__) |
15 | #include "wx/mac/tabctrl.h" | |
1777b9bb DW |
16 | #elif defined(__WXPM__) |
17 | #include "wx/os2/tabctrl.h" | |
34138703 JS |
18 | #elif defined(__WXSTUBS__) |
19 | #include "wx/stubs/tabctrl.h" | |
c801d85f KB |
20 | #endif |
21 | ||
22 | #endif | |
34138703 | 23 | // _WX_TABCTRL_H_BASE_ |