]> git.saurik.com Git - wxWidgets.git/blame - include/wx/tabctrl.h
add const synonyms for wxGridTableBase::GetNumberRows/Cols(), using const_cast<>...
[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
c058cafa
VZ
19extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TAB_SEL_CHANGED;
20extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TAB_SEL_CHANGING;
2e4df4bf 21
2049ba38 22#if defined(__WXMSW__)
268c20fa 23 #include "wx/msw/tabctrl.h"
34138703 24#elif defined(__WXMAC__)
ef0e9220 25 #include "wx/osx/tabctrl.h"
1777b9bb 26#elif defined(__WXPM__)
268c20fa 27 #include "wx/os2/tabctrl.h"
c801d85f
KB
28#endif
29
db6d3918 30#endif // wxUSE_TAB_DIALOG
c058cafa
VZ
31
32#endif // _WX_TABCTRL_H_BASE_