1999-12-03 14:40:17 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: mac/dataobj.h
|
|
|
|
// Purpose: declaration of the wxDataObject
|
|
|
|
// Author: Stefan Csomor (adapted from Robert Roebling's gtk port)
|
|
|
|
// Modified by:
|
|
|
|
// Created: 10/21/99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling
|
2003-03-17 10:34:04 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-12-03 14:40:17 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MAC_DATAOBJ_H_
|
|
|
|
#define _WX_MAC_DATAOBJ_H_
|
|
|
|
|
2002-08-31 11:29:13 +00:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
1999-12-03 14:40:17 +00:00
|
|
|
#pragma interface "dataobj.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxDataObject is the same as wxDataObjectBase under wxGTK
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
class WXDLLEXPORT wxDataObject : public wxDataObjectBase
|
1999-12-03 14:40:17 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDataObject();
|
2001-07-15 18:47:13 +00:00
|
|
|
#ifdef __DARWIN__
|
|
|
|
~wxDataObject() { }
|
2001-02-15 21:51:14 +00:00
|
|
|
#endif
|
1999-12-03 14:40:17 +00:00
|
|
|
|
|
|
|
virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_MAC_DATAOBJ_H_
|
|
|
|
|