]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/tooltip.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / tooltip.h
... / ...
CommitLineData
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// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_TOOLTIP_H_BASE_
12#define _WX_TOOLTIP_H_BASE_
13
14#include "wx/defs.h"
15
16#if wxUSE_TOOLTIPS
17
18#if defined(__WXMSW__)
19#include "wx/msw/tooltip.h"
20#elif defined(__WXMOTIF__)
21// #include "wx/motif/tooltip.h"
22#elif defined(__WXGTK20__)
23#include "wx/gtk/tooltip.h"
24#elif defined(__WXGTK__)
25#include "wx/gtk1/tooltip.h"
26#elif defined(__WXMAC__)
27#include "wx/osx/tooltip.h"
28#elif defined(__WXCOCOA__)
29#include "wx/cocoa/tooltip.h"
30#elif defined(__WXPM__)
31#include "wx/os2/tooltip.h"
32#endif
33
34#endif
35 // wxUSE_TOOLTIPS
36
37#endif
38 // _WX_TOOLTIP_H_BASE_