wx.BitmapDataObject

Inheritance diagram for wx.BitmapDataObject:



Description

wx.BitmapDataObject is a specialization of wx.DataObject for bitmap data. It can be used without change to paste data into the wx.Clipboard or a wx.DropSource. A user may wish to derive a new class from this class for providing a bitmap on-demand in order to minimize memory consumption when offering data in several formats, such as a bitmap and GIF.

Note

wxPython note: If you wish to create a derived wx.BitmapDataObject class in wxPython you should derive the class from wx.PyBitmapDataObject in order to get Python-aware capabilities for the various virtual methods.

Known Subclasses

wx.PyBitmapDataObject

Methods Summary

Properties Summary

Class API

Methods

__init__(bitmap=wx.NullBitmap)

Constructor, optionally passing a bitmap (otherwise use SetBitmap later).

Parameters:


Returns:

wx.BitmapDataObject


GetBitmap()

Returns the bitmap associated with the data object. You may wish to override this method when offering data on-demand, but this is not required by wxWidgets’ internals.

Use this method to get data in bitmap form from the wx.Clipboard .


Returns:

wx.Bitmap


SetBitmap(bitmap)

Sets the bitmap associated with the data object. This method is called when the data object receives data.

Usually there will be no reason to override this function.

Parameters:


Properties

Bitmap
See GetBitmap and SetBitmap