]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/dragimag.h
Use wxGetTranslation() instead of _() in the public headers.
[wxWidgets.git] / include / wx / dragimag.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/dragimag.h
3// Purpose: wxDragImage base header
4// Author: Julian Smart
5// Modified by:
6// Created:
7// Copyright: (c) Julian Smart
8// Licence: wxWindows Licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_DRAGIMAG_H_BASE_
12#define _WX_DRAGIMAG_H_BASE_
13
14#if wxUSE_DRAGIMAGE
15
16class WXDLLIMPEXP_FWD_CORE wxRect;
17class WXDLLIMPEXP_FWD_CORE wxMemoryDC;
18class WXDLLIMPEXP_FWD_CORE wxDC;
19
20#if defined(__WXMSW__)
21# if defined(__WXUNIVERSAL__)
22# include "wx/generic/dragimgg.h"
23# define wxDragImage wxGenericDragImage
24# else
25# include "wx/msw/dragimag.h"
26# endif
27
28#elif defined(__WXMOTIF__)
29# include "wx/generic/dragimgg.h"
30# define wxDragImage wxGenericDragImage
31
32#elif defined(__WXGTK__)
33# include "wx/generic/dragimgg.h"
34# define wxDragImage wxGenericDragImage
35
36#elif defined(__WXX11__)
37# include "wx/generic/dragimgg.h"
38# define wxDragImage wxGenericDragImage
39
40#elif defined(__WXMAC__)
41# include "wx/generic/dragimgg.h"
42# define wxDragImage wxGenericDragImage
43
44#elif defined(__WXPM__)
45# include "wx/generic/dragimgg.h"
46# define wxDragImage wxGenericDragImage
47
48#endif
49
50#endif // wxUSE_DRAGIMAGE
51
52#endif
53 // _WX_DRAGIMAG_H_BASE_