further routing into wxApp
[wxWidgets.git] / include / wx / tooltip.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/tooltip.h
3 // Purpose: wxToolTip base header
4 // Author: Robert Roebling
5 // Modified by:
6 // Created:
7 // Copyright: (c) Robert Roebling
8 // RCS-ID: $Id$
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_TOOLTIP_H_BASE_
13 #define _WX_TOOLTIP_H_BASE_
14
15 #include "wx/defs.h"
16
17 #if wxUSE_TOOLTIPS
18
19 #if defined(__WXMSW__)
20 #include "wx/msw/tooltip.h"
21 #elif defined(__WXMOTIF__)
22 // #include "wx/motif/tooltip.h"
23 #elif defined(__WXGTK20__)
24 #include "wx/gtk/tooltip.h"
25 #elif defined(__WXGTK__)
26 #include "wx/gtk1/tooltip.h"
27 #elif defined(__WXMAC__)
28 #include "wx/osx/tooltip.h"
29 #elif defined(__WXCOCOA__)
30 #include "wx/cocoa/tooltip.h"
31 #elif defined(__WXPM__)
32 #include "wx/os2/tooltip.h"
33 #endif
34
35 #endif
36 // wxUSE_TOOLTIPS
37
38 #endif
39 // _WX_TOOLTIP_H_BASE_