~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Externals/wxWidgets3/include/wx/tooltip.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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_