]>
Commit | Line | Data |
---|---|---|
bcd846ea RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/dataview.h | |
3 | // Purpose: wxDataViewCtrl base classes | |
4 | // Author: Robert Roebling | |
5 | // Modified by: | |
6 | // Created: 08.01.06 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Robert Roebling | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DATAVIEW_H_BASE_ | |
13 | #define _WX_DATAVIEW_H_BASE_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
17 | #if wxUSE_DATAVIEWCTRL | |
18 | ||
19 | // ---------------------------------------------------------------------------- | |
20 | // wxDataViewCtrl flags | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | #include "wx/control.h" | |
24 | #include "wx/textctrl.h" | |
25 | #include "wx/bitmap.h" | |
26 | ||
63ec432b | 27 | extern WXDLLEXPORT_DATA(const wxChar) wxDataViewCtrlNameStr[]; |
bcd846ea RR |
28 | |
29 | ||
30 | ||
31 | ||
32 | ||
33 | #if defined(__WXGTK20__) | |
34 | #include "wx/gtk/dataview.h" | |
35 | #elif defined(__WXMAC__) | |
36 | #include "wx/mac/dataview.h" | |
37 | #else | |
38 | #include "wx/generic/dataview.h" | |
39 | #endif | |
40 | ||
41 | #endif // wxUSE_DATAVIEWCTRL | |
42 | ||
43 | #endif | |
44 | // _WX_DATAVIEW_H_BASE_ |