| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: 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(__WXGTK__) |
| 24 | #include "wx/gtk/tooltip.h" |
| 25 | #elif defined(__WXMAC__) |
| 26 | #include "wx/mac/tooltip.h" |
| 27 | #elif defined(__WXCOCOA__) |
| 28 | #include "wx/cocoa/tooltip.h" |
| 29 | #elif defined(__WXPM__) |
| 30 | #include "wx/os2/tooltip.h" |
| 31 | #endif |
| 32 | |
| 33 | #endif |
| 34 | // wxUSE_TOOLTIPS |
| 35 | |
| 36 | #endif |
| 37 | // _WX_TOOLTIP_H_BASE_ |