]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dragimag.h
Revert HasModifiers() change in behaviour, add HasAnyModifiers().
[wxWidgets.git] / include / wx / dragimag.h
CommitLineData
99d80019
JS
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// RCS-ID: $Id$
9// Licence: wxWindows Licence
10/////////////////////////////////////////////////////////////////////////////
11
7cf83330
JS
12#ifndef _WX_DRAGIMAG_H_BASE_
13#define _WX_DRAGIMAG_H_BASE_
14
fa8dca8d 15#if wxUSE_DRAGIMAGE
1e6feb95 16
b5dbe15d
VS
17class WXDLLIMPEXP_FWD_CORE wxRect;
18class WXDLLIMPEXP_FWD_CORE wxMemoryDC;
19class WXDLLIMPEXP_FWD_CORE wxDC;
387ebd3e 20
7cf83330 21#if defined(__WXMSW__)
3a5bcc4d
VZ
22# if defined(__WXUNIVERSAL__)
23# include "wx/generic/dragimgg.h"
24# define wxDragImage wxGenericDragImage
25# else
26# include "wx/msw/dragimag.h"
27# endif
68be9f09 28
7cf83330 29#elif defined(__WXMOTIF__)
3a5bcc4d
VZ
30# include "wx/generic/dragimgg.h"
31# define wxDragImage wxGenericDragImage
68be9f09 32
7cf83330 33#elif defined(__WXGTK__)
3a5bcc4d
VZ
34# include "wx/generic/dragimgg.h"
35# define wxDragImage wxGenericDragImage
68be9f09 36
83df96d6 37#elif defined(__WXX11__)
3a5bcc4d
VZ
38# include "wx/generic/dragimgg.h"
39# define wxDragImage wxGenericDragImage
83df96d6 40
7cf83330 41#elif defined(__WXMAC__)
3a5bcc4d
VZ
42# include "wx/generic/dragimgg.h"
43# define wxDragImage wxGenericDragImage
68be9f09 44
1777b9bb 45#elif defined(__WXPM__)
3a5bcc4d
VZ
46# include "wx/generic/dragimgg.h"
47# define wxDragImage wxGenericDragImage
68be9f09 48
7cf83330
JS
49#endif
50
fa8dca8d 51#endif // wxUSE_DRAGIMAGE
1e6feb95 52
7cf83330
JS
53#endif
54 // _WX_DRAGIMAG_H_BASE_