]> git.saurik.com Git - wxWidgets.git/blame - include/wx/tabctrl.h
Added wxDataViewBitmapCell
[wxWidgets.git] / include / wx / tabctrl.h
CommitLineData
99d80019
JS
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
34138703
JS
12#ifndef _WX_TABCTRL_H_BASE_
13#define _WX_TABCTRL_H_BASE_
c801d85f 14
db6d3918
VZ
15#include "wx/defs.h"
16
17#if wxUSE_TAB_DIALOG
18
2e4df4bf
VZ
19BEGIN_DECLARE_EVENT_TYPES()
20 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TAB_SEL_CHANGED, 800)
21 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TAB_SEL_CHANGING, 801)
22END_DECLARE_EVENT_TYPES()
23
2049ba38 24#if defined(__WXMSW__)
268c20fa 25 #include "wx/msw/tabctrl.h"
34138703 26#elif defined(__WXMAC__)
268c20fa 27 #include "wx/mac/tabctrl.h"
1777b9bb 28#elif defined(__WXPM__)
268c20fa 29 #include "wx/os2/tabctrl.h"
c801d85f
KB
30#endif
31
db6d3918 32#endif // wxUSE_TAB_DIALOG
c801d85f 33#endif
34138703 34 // _WX_TABCTRL_H_BASE_