2003-05-07 13:24:11 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: include/wx/motif/dataobj2.h
|
|
|
|
// Purpose: declaration of standard wxDataObjectSimple-derived classes
|
|
|
|
// Author: Mattia Barbon
|
|
|
|
// Created: 27.04.03
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2003 Mattia Barbon
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MOTIF_DATAOBJ2_H_
|
|
|
|
#define _WX_MOTIF_DATAOBJ2_H_
|
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2003-05-07 13:24:11 -04:00
|
|
|
#pragma interface "dataobj.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxBitmapDataObject is a specialization of wxDataObject for bitmaps
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxBitmapDataObject : public wxBitmapDataObjectBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctors
|
|
|
|
wxBitmapDataObject()
|
|
|
|
: wxBitmapDataObjectBase() { }
|
|
|
|
wxBitmapDataObject(const wxBitmap& bitmap)
|
|
|
|
: wxBitmapDataObjectBase(bitmap) { }
|
|
|
|
|
|
|
|
// implement base class pure virtuals
|
|
|
|
// ----------------------------------
|
|
|
|
virtual size_t GetDataSize() const;
|
|
|
|
virtual bool GetDataHere(void *buf) const;
|
|
|
|
virtual bool SetData(size_t len, const void *buf);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_MOTIF_DATAOBJ2_H_
|
|
|
|
|