2002-02-05 11:34:33 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/motif/dataobj.h
|
|
|
|
// Purpose: declaration of the wxDataObject class for Motif
|
|
|
|
// Author: Julian Smart
|
|
|
|
// RCS-ID: $Id$
|
2002-02-23 16:26:16 -05:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2002-02-05 11:34:33 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-02-23 16:26:16 -05:00
|
|
|
#ifndef _WX_X11_DATAOBJ_H_
|
|
|
|
#define _WX_X11_DATAOBJ_H_
|
2002-02-05 11:34:33 -05:00
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2002-02-05 11:34:33 -05:00
|
|
|
#pragma interface "dataobj.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxDataObject is the same as wxDataObjectBase under wxMotif
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxDataObject : public wxDataObjectBase
|
|
|
|
{
|
|
|
|
public:
|
2002-02-23 16:26:16 -05:00
|
|
|
wxDataObject();
|
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
#ifdef __DARWIN__
|
|
|
|
~wxDataObject() { }
|
|
|
|
#endif
|
2002-02-23 16:26:16 -05:00
|
|
|
|
|
|
|
virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
|
2002-02-05 11:34:33 -05:00
|
|
|
};
|
|
|
|
|
2002-02-23 16:26:16 -05:00
|
|
|
#endif //_WX_X11_DATAOBJ_H_
|
2002-02-05 11:34:33 -05:00
|
|
|
|