]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk/dataobj.h
maintaint the mouse capture stack in all ports, not just wxUniv
[wxWidgets.git] / include / wx / gtk / dataobj.h
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: gtk/dataobj.h
3// Purpose: declaration of the wxDataObject
4// Author: Robert Roebling
5// RCS-ID: $Id$
6// Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling
7// Licence: wxWindows license
8///////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_GTK_DATAOBJ_H_
11#define _WX_GTK_DATAOBJ_H_
12
13#ifdef __GNUG__
14 #pragma interface "dataobj.h"
15#endif
16
17// ----------------------------------------------------------------------------
18// wxDataObject is the same as wxDataObjectBase under wxGTK
19// ----------------------------------------------------------------------------
20
21class wxDataObject : public wxDataObjectBase
22{
23public:
24 wxDataObject();
25#ifdef __DARWIN__
26 virtual ~wxDataObject() { }
27#endif
28
29 virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
30};
31
32#endif // _WX_GTK_DATAOBJ_H_
33