]> git.saurik.com Git - wxWidgets.git/blame - include/wx/tooltip.h
Make storing non-trivial data in wxThreadSpecificInfo possible.
[wxWidgets.git] / include / wx / tooltip.h
CommitLineData
2ecf902b 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/tooltip.h
2ecf902b 3// Purpose: wxToolTip base header
99d80019 4// Author: Robert Roebling
2ecf902b
WS
5// Modified by:
6// Created:
99d80019 7// Copyright: (c) Robert Roebling
2ecf902b
WS
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
90b1b133
RR
11#ifndef _WX_TOOLTIP_H_BASE_
12#define _WX_TOOLTIP_H_BASE_
13
2ecf902b 14#include "wx/defs.h"
279b1aea
MB
15
16#if wxUSE_TOOLTIPS
17
90b1b133
RR
18#if defined(__WXMSW__)
19#include "wx/msw/tooltip.h"
20#elif defined(__WXMOTIF__)
98ffbab9 21// #include "wx/motif/tooltip.h"
1be7a35c 22#elif defined(__WXGTK20__)
90b1b133 23#include "wx/gtk/tooltip.h"
1be7a35c
MR
24#elif defined(__WXGTK__)
25#include "wx/gtk1/tooltip.h"
90b1b133 26#elif defined(__WXMAC__)
ef0e9220 27#include "wx/osx/tooltip.h"
26191790
RN
28#elif defined(__WXCOCOA__)
29#include "wx/cocoa/tooltip.h"
1777b9bb
DW
30#elif defined(__WXPM__)
31#include "wx/os2/tooltip.h"
90b1b133
RR
32#endif
33
279b1aea
MB
34#endif
35 // wxUSE_TOOLTIPS
36
90b1b133
RR
37#endif
38 // _WX_TOOLTIP_H_BASE_