]> git.saurik.com Git - wxWidgets.git/blame - include/wx/tooltip.h
Added GetTempDir
[wxWidgets.git] / include / wx / tooltip.h
CommitLineData
2ecf902b
WS
1/////////////////////////////////////////////////////////////////////////////
2// Name: tooltip.h
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// RCS-ID: $Id$
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
90b1b133
RR
12#ifndef _WX_TOOLTIP_H_BASE_
13#define _WX_TOOLTIP_H_BASE_
14
2ecf902b 15#include "wx/defs.h"
279b1aea
MB
16
17#if wxUSE_TOOLTIPS
18
90b1b133
RR
19#if defined(__WXMSW__)
20#include "wx/msw/tooltip.h"
21#elif defined(__WXMOTIF__)
98ffbab9 22// #include "wx/motif/tooltip.h"
1be7a35c 23#elif defined(__WXGTK20__)
90b1b133 24#include "wx/gtk/tooltip.h"
1be7a35c
MR
25#elif defined(__WXGTK__)
26#include "wx/gtk1/tooltip.h"
90b1b133
RR
27#elif defined(__WXMAC__)
28#include "wx/mac/tooltip.h"
26191790
RN
29#elif defined(__WXCOCOA__)
30#include "wx/cocoa/tooltip.h"
1777b9bb
DW
31#elif defined(__WXPM__)
32#include "wx/os2/tooltip.h"
90b1b133
RR
33#endif
34
279b1aea
MB
35#endif
36 // wxUSE_TOOLTIPS
37
90b1b133
RR
38#endif
39 // _WX_TOOLTIP_H_BASE_