1 \section{\class{wxBitmapDataObject
}}\label{wxbitmapdataobject
}
3 wxBitmapDataObject is a specialization of wxDataObject for bitmap data. It can
4 be used without change to paste data into the
5 \helpref{wxClipboard
}{wxclipboard
} or a
\helpref{wxDropSource
}{wxdropsource
}. A
6 user may wish to derive a new class from this class for providing a bitmap
7 on-demand in order to minimize memory consumption when offering data in several
8 formats, such as a bitmap and GIF.
10 \pythonnote{If you wish to create a derived wxBitmapDataObject class in
11 wxPython you should derive the class from wxPyBitmapDataObject
12 in order to get Python-aware capabilities for the various virtual
15 \wxheading{Virtual functions to override
}
17 This class may be used as is, but
18 \helpref{GetBitmap
}{wxbitmapdataobjectgetbitmap
} may be overridden to increase
21 \wxheading{Derived from
}
23 \helpref{wxDataObjectSimple
}{wxdataobjectsimple
}\\
24 \helpref{wxDataObject
}{wxdataobject
}
26 \wxheading{Include files
}
32 \helpref{wxCore
}{librarieslist
}
36 \helpref{Clipboard and drag and drop overview
}{wxdndoverview
},
37 \helpref{wxDataObject
}{wxdataobject
},
38 \helpref{wxDataObjectSimple
}{wxdataobjectsimple
},
39 \helpref{wxFileDataObject
}{wxfiledataobject
},
40 \helpref{wxTextDataObject
}{wxtextdataobject
},
41 \helpref{wxDataObject
}{wxdataobject
}
45 \latexignore{\rtfignore{\wxheading{Members
}}}
47 \membersection{wxBitmapDataObject::wxBitmapDataObject
}\label{wxbitmapdataobjectctor
}
49 \func{}{wxBitmapDataObject
}{\param{const wxBitmap\&
}{bitmap = wxNullBitmap
}}
51 Constructor, optionally passing a bitmap (otherwise use
52 \helpref{SetBitmap
}{wxbitmapdataobjectsetbitmap
} later).
54 \membersection{wxBitmapDataObject::GetBitmap
}\label{wxbitmapdataobjectgetbitmap
}
56 \constfunc{virtual wxBitmap
}{GetBitmap
}{\void}
58 Returns the bitmap associated with the data object. You may wish to override
59 this method when offering data on-demand, but this is not required by
60 wxWidgets' internals. Use this method to get data in bitmap form from
61 the
\helpref{wxClipboard
}{wxclipboard
}.
63 \membersection{wxBitmapDataObject::SetBitmap
}\label{wxbitmapdataobjectsetbitmap
}
65 \func{virtual void
}{SetBitmap
}{\param{const wxBitmap\&
}{bitmap
}}
67 Sets the bitmap associated with the data object. This method is called when the
68 data object receives data. Usually there will be no reason to override this