2002-02-05 16:34:33 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2011-03-20 00:14:35 +00:00
|
|
|
// Name: wx/x11/dataobj.h
|
2002-02-05 16:34:33 +00:00
|
|
|
// Purpose: declaration of the wxDataObject class for Motif
|
|
|
|
// Author: Julian Smart
|
2002-02-23 21:26:16 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2002-02-05 16:34:33 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-02-23 21:26:16 +00:00
|
|
|
#ifndef _WX_X11_DATAOBJ_H_
|
|
|
|
#define _WX_X11_DATAOBJ_H_
|
2002-02-05 16:34:33 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxDataObject is the same as wxDataObjectBase under wxMotif
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 18:16:51 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
|
2002-02-05 16:34:33 +00:00
|
|
|
{
|
|
|
|
public:
|
2002-02-23 21:26:16 +00:00
|
|
|
wxDataObject();
|
2009-08-21 10:41:26 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
#ifdef __DARWIN__
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxDataObject() { }
|
2002-02-05 16:34:33 +00:00
|
|
|
#endif
|
2002-02-23 21:26:16 +00:00
|
|
|
|
|
|
|
virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
|
2002-02-05 16:34:33 +00:00
|
|
|
};
|
|
|
|
|
2002-02-23 21:26:16 +00:00
|
|
|
#endif //_WX_X11_DATAOBJ_H_
|
2002-02-05 16:34:33 +00:00
|
|
|
|