]> git.saurik.com Git - wxWidgets.git/blame - include/wx/tabctrl.h
implemented EditLabel() with custom text controls and GetEditControl()
[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__)
c801d85f 25#include "wx/msw/tabctrl.h"
2049ba38 26#elif defined(__WXMOTIF__)
34138703 27#include "wx/motif/tabctrl.h"
2049ba38 28#elif defined(__WXGTK__)
34138703
JS
29#elif defined(__WXMAC__)
30#include "wx/mac/tabctrl.h"
1777b9bb
DW
31#elif defined(__WXPM__)
32#include "wx/os2/tabctrl.h"
c801d85f
KB
33#endif
34
db6d3918 35#endif // wxUSE_TAB_DIALOG
c801d85f 36#endif
34138703 37 // _WX_TABCTRL_H_BASE_