1998-12-14 16:13:49 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2006-01-23 02:28:01 +00:00
|
|
|
// Name: wx/gtk1/dataobj.h
|
1999-10-21 00:25:42 +00:00
|
|
|
// Purpose: declaration of the wxDataObject
|
1998-12-14 16:13:49 +00:00
|
|
|
// Author: Robert Roebling
|
|
|
|
// RCS-ID: $Id$
|
1999-10-21 00:25:42 +00:00
|
|
|
// Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-12-14 16:13:49 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-10-21 00:25:42 +00:00
|
|
|
#ifndef _WX_GTK_DATAOBJ_H_
|
|
|
|
#define _WX_GTK_DATAOBJ_H_
|
1998-12-14 16:13:49 +00:00
|
|
|
|
1999-10-21 00:25:42 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxDataObject is the same as wxDataObjectBase under wxGTK
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-12-14 16:13:49 +00:00
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
|
1999-01-19 16:33:16 +00:00
|
|
|
{
|
1999-10-21 10:23:30 +00:00
|
|
|
public:
|
|
|
|
wxDataObject();
|
2002-12-04 14:11:26 +00:00
|
|
|
virtual ~wxDataObject();
|
|
|
|
|
1999-10-21 10:23:30 +00:00
|
|
|
virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
|
1998-12-14 16:13:49 +00:00
|
|
|
};
|
|
|
|
|
1999-10-21 00:25:42 +00:00
|
|
|
#endif // _WX_GTK_DATAOBJ_H_
|
1998-12-14 16:13:49 +00:00
|
|
|
|