1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG definitions for the Data Object classes
7 // Created: 31-October-1999
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
19 #include <wx/dataobj.h>
22 //---------------------------------------------------------------------------
52 "A wx.DataFormat is an encapsulation of a platform-specific format
53 handle which is used by the system for the clipboard and drag and
54 drop operations. The applications are usually only interested in,
55 for example, pasting data from the clipboard only if the data is
56 in a format the program understands. A data format is is used to
57 uniquely identify this format.
59 On the system level, a data format is usually just a number
60 (CLIPFORMAT under Windows or Atom under X11, for example).");
62 // The standard format IDs are
64 // wx.DF_INVALID An invalid format
65 // wx.DF_TEXT Text format
66 // wx.DF_BITMAP A bitmap (wx.Bitmap)
67 // wx.DF_METAFILE A metafile (wx.Metafile, Windows only)
68 // wx.DF_FILENAME A list of filenames
69 // wx.DF_HTML An HTML string. This is only valid on Windows and non-unicode builds
71 // Aside the standard formats, the application may also use
72 // custom formats which are identified by their names (strings)
73 // and not numeric identifiers. Although internally custom format
74 // must be created (or registered) first, you shouldn\'t care
75 // about it because it is done automatically the first time the
76 // wxDataFormat object corresponding to a given format name is
84 wxDataFormat( wxDataFormatId type ),
85 "Constructs a data format object for one of the standard data\n"
86 "formats or an empty data object (use SetType or SetId later in\n"
90 wxDataFormat(const wxString& format),
91 "Constructs a data format object for a custom format identified by its name.",
99 bool operator==(wxDataFormatId format) const;
100 bool operator!=(wxDataFormatId format) const;
101 bool operator==(const wxDataFormat& format) const;
102 bool operator!=(const wxDataFormat& format) const;
106 void , SetType(wxDataFormatId format),
107 "Sets the format to the given value, which should be one of wx.DF_XXX constants.");
110 wxDataFormatId , GetType() const,
111 "Returns the platform-specific number identifying the format.");
115 wxString , GetId() const,
116 "Returns the name of a custom format (this function will fail for a standard format).");
119 void , SetId(const wxString& format),
120 "Sets the format to be the custom format identified by the given name.");
125 const wxDataFormat wxFormatInvalid;
129 //---------------------------------------------------------------------------
132 // wxDataObject represents a piece of data which knows which formats it
133 // supports and knows how to render itself in each of them - GetDataHere(),
134 // and how to restore data from the buffer (SetData()).
136 // Although this class may be used directly (i.e. custom classes may be
137 // derived from it), in many cases it might be simpler to use either
138 // wxDataObjectSimple or wxDataObjectComposite classes.
140 // A data object may be "read only", i.e. support only GetData() functions or
141 // "read-write", i.e. support both GetData() and SetData() (in principle, it
142 // might be "write only" too, but this is rare). Moreover, it doesn't have to
143 // support the same formats in Get() and Set() directions: for example, a data
144 // object containing JPEG image might accept BMPs in GetData() because JPEG
145 // image may be easily transformed into BMP but not in SetData(). Accordingly,
146 // all methods dealing with formats take an additional "direction" argument
147 // which is either SET or GET and which tells the function if the format needs
148 // to be supported by SetData() or GetDataHere().
152 Get = 0x01, // format is supported by GetDataHere()
153 Set = 0x02, // format is supported by SetData()
154 Both = 0x03 // format is supported by both (unused currently)
157 // wxDataObject(); // *** It's an ABC.
160 // get the best suited format for rendering our data
161 virtual wxDataFormat GetPreferredFormat(Direction dir = Get) const;
163 // get the number of formats we support
164 virtual size_t GetFormatCount(Direction dir = Get) const;
166 // returns True if this format is supported
167 bool IsSupported(const wxDataFormat& format, Direction dir = Get) const;
169 // get the (total) size of data for the given format
170 virtual size_t GetDataSize(const wxDataFormat& format) const;
173 //-------------------------------------------------------------------
174 // TODO: Fix these three methods to do the right Pythonic things...
175 //-------------------------------------------------------------------
177 // return all formats in the provided array (of size GetFormatCount())
178 virtual void GetAllFormats(wxDataFormat *formats,
179 Direction dir = Get) const;
181 // copy raw data (in the specified format) to the provided buffer, return
182 // True if data copied successfully, False otherwise
183 virtual bool GetDataHere(const wxDataFormat& format, void *buf) const;
185 // get data from the buffer of specified length (in the given format),
186 // return True if the data was read successfully, False otherwise
187 virtual bool SetData(const wxDataFormat& format,
188 size_t len, const void * buf);
192 //---------------------------------------------------------------------------
196 // wxDataObjectSimple is a wxDataObject which only supports one format (in
197 // both Get and Set directions, but you may return False from GetDataHere() or
198 // SetData() if one of them is not supported). This is the simplest possible
199 // wxDataObject implementation.
201 // This is still an "abstract base class" (although it doesn't have any pure
202 // virtual functions), to use it you should derive from it and implement
203 // GetDataSize(), GetDataHere() and SetData() functions because the base class
204 // versions don't do anything - they just return "not implemented".
206 // This class should be used when you provide data in only one format (no
207 // conversion to/from other formats), either a standard or a custom one.
208 // Otherwise, you should use wxDataObjectComposite or wxDataObject directly.
209 class wxDataObjectSimple : public wxDataObject {
211 wxDataObjectSimple(const wxDataFormat& format = wxFormatInvalid);
213 // get/set the format we support
214 const wxDataFormat& GetFormat();
215 void SetFormat(const wxDataFormat& format);
220 %{ // Create a new class for wxPython to use
221 class wxPyDataObjectSimple : public wxDataObjectSimple {
223 wxPyDataObjectSimple(const wxDataFormat& format = wxFormatInvalid)
224 : wxDataObjectSimple(format) {}
226 DEC_PYCALLBACK_SIZET__const(GetDataSize);
227 bool GetDataHere(void *buf) const;
228 bool SetData(size_t len, const void *buf) const;
232 IMP_PYCALLBACK_SIZET__const(wxPyDataObjectSimple, wxDataObjectSimple, GetDataSize);
234 bool wxPyDataObjectSimple::GetDataHere(void *buf) const {
235 // We need to get the data for this object and write it to buf. I think
236 // the best way to do this for wxPython is to have the Python method
237 // return either a string or None and then act appropriately with the
241 bool blocked = wxPyBeginBlockThreads();
242 if (wxPyCBH_findCallback(m_myInst, "GetDataHere")) {
244 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()"));
246 rval = (ro != Py_None && PyString_Check(ro));
248 memcpy(buf, PyString_AsString(ro), PyString_Size(ro));
252 wxPyEndBlockThreads(blocked);
256 bool wxPyDataObjectSimple::SetData(size_t len, const void *buf) const{
257 // For this one we simply need to make a string from buf and len
258 // and send it to the Python method.
260 bool blocked = wxPyBeginBlockThreads();
261 if (wxPyCBH_findCallback(m_myInst, "SetData")) {
262 PyObject* data = PyString_FromStringAndSize((char*)buf, len);
263 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", data));
266 wxPyEndBlockThreads(blocked);
273 // Now define it for SWIG
274 class wxPyDataObjectSimple : public wxDataObjectSimple {
276 %pythonAppend wxPyDataObjectSimple "self._setCallbackInfo(self, PyDataObjectSimple)"
278 wxPyDataObjectSimple(const wxDataFormat& format = wxFormatInvalid);
279 void _setCallbackInfo(PyObject* self, PyObject* _class);
283 //---------------------------------------------------------------------------
286 // wxDataObjectComposite is the simplest way to implement wxDataObject
287 // supporting multiple formats. It contains several wxDataObjectSimple and
288 // supports all formats supported by any of them.
290 class wxDataObjectComposite : public wxDataObject {
292 wxDataObjectComposite();
294 %apply SWIGTYPE *DISOWN { wxDataObjectSimple *dataObject };
295 void Add(wxDataObjectSimple *dataObject, int preferred = False);
296 %clear wxDataObjectSimple *dataObject;
299 //---------------------------------------------------------------------------
301 // wxTextDataObject contains text data
302 class wxTextDataObject : public wxDataObjectSimple {
304 wxTextDataObject(const wxString& text = wxPyEmptyString);
306 size_t GetTextLength();
308 void SetText(const wxString& text);
313 %{ // Create a new class for wxPython to use
314 class wxPyTextDataObject : public wxTextDataObject {
316 wxPyTextDataObject(const wxString& text = wxPyEmptyString)
317 : wxTextDataObject(text) {}
319 DEC_PYCALLBACK_SIZET__const(GetTextLength);
320 DEC_PYCALLBACK_STRING__const(GetText);
321 DEC_PYCALLBACK__STRING(SetText);
325 IMP_PYCALLBACK_SIZET__const(wxPyTextDataObject, wxTextDataObject, GetTextLength);
326 IMP_PYCALLBACK_STRING__const(wxPyTextDataObject, wxTextDataObject, GetText);
327 IMP_PYCALLBACK__STRING(wxPyTextDataObject, wxTextDataObject, SetText);
332 // Now define it for SWIG
333 class wxPyTextDataObject : public wxTextDataObject {
335 %pythonAppend wxPyTextDataObject "self._setCallbackInfo(self, PyTextDataObject)"
337 wxPyTextDataObject(const wxString& text = wxPyEmptyString);
338 void _setCallbackInfo(PyObject* self, PyObject* _class);
341 //---------------------------------------------------------------------------
343 // wxBitmapDataObject contains a bitmap
344 class wxBitmapDataObject : public wxDataObjectSimple {
346 wxBitmapDataObject(const wxBitmap& bitmap = wxNullBitmap);
348 wxBitmap GetBitmap() const;
349 void SetBitmap(const wxBitmap& bitmap);
354 %{ // Create a new class for wxPython to use
355 class wxPyBitmapDataObject : public wxBitmapDataObject {
357 wxPyBitmapDataObject(const wxBitmap& bitmap = wxNullBitmap)
358 : wxBitmapDataObject(bitmap) {}
360 wxBitmap GetBitmap() const;
361 void SetBitmap(const wxBitmap& bitmap);
365 wxBitmap wxPyBitmapDataObject::GetBitmap() const {
366 wxBitmap* rval = &wxNullBitmap;
367 bool blocked = wxPyBeginBlockThreads();
368 if (wxPyCBH_findCallback(m_myInst, "GetBitmap")) {
371 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()"));
373 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxBitmap")))
378 wxPyEndBlockThreads(blocked);
382 void wxPyBitmapDataObject::SetBitmap(const wxBitmap& bitmap) {
383 bool blocked = wxPyBeginBlockThreads();
384 if (wxPyCBH_findCallback(m_myInst, "SetBitmap")) {
385 PyObject* bo = wxPyConstructObject((void*)&bitmap, wxT("wxBitmap"), False);
386 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", bo));
389 wxPyEndBlockThreads(blocked);
395 // Now define it for SWIG
396 class wxPyBitmapDataObject : public wxBitmapDataObject {
398 %pythonAppend wxPyBitmapDataObject "self._setCallbackInfo(self, PyBitmapDataObject)"
400 wxPyBitmapDataObject(const wxBitmap& bitmap = wxNullBitmap);
401 void _setCallbackInfo(PyObject* self, PyObject* _class);
404 //---------------------------------------------------------------------------
407 // wxFileDataObject contains a list of filenames
408 class wxFileDataObject : public wxDataObjectSimple
413 const wxArrayString& GetFilenames();
414 void AddFile(const wxString &filename);
418 //---------------------------------------------------------------------------
420 // wxCustomDataObject contains arbitrary untyped user data.
421 // It is understood that this data can be copied bitwise.
422 class wxCustomDataObject : public wxDataObjectSimple {
424 wxCustomDataObject(const wxDataFormat& format = wxFormatInvalid);
426 //void TakeData(size_t size, void *data);
427 //bool SetData(size_t size, const void *buf);
429 void TakeData(PyObject* data) {
430 if (PyString_Check(data)) {
431 // for Python we just call SetData here since we always need it to make a copy.
432 self->SetData(PyString_Size(data), PyString_AsString(data));
435 // raise a TypeError if not a string
436 PyErr_SetString(PyExc_TypeError, "String expected.");
439 bool SetData(PyObject* data) {
440 if (PyString_Check(data)) {
441 return self->SetData(PyString_Size(data), PyString_AsString(data));
444 // raise a TypeError if not a string
445 PyErr_SetString(PyExc_TypeError, "String expected.");
455 PyObject* GetData() {
456 return PyString_FromStringAndSize((char*)self->GetData(), self->GetSize());
462 // TODO: Implement wxPyCustomDataObject allowing GetSize, GetData and SetData
465 //---------------------------------------------------------------------------
467 class wxURLDataObject : public wxDataObjectComposite {
472 void SetURL(const wxString& url);
475 //---------------------------------------------------------------------------
477 #if defined(__WXMSW__) || defined(__WXMAC__)
480 #include <wx/metafile.h>
483 class wxMetafileDataObject : public wxDataObjectSimple
486 wxMetafileDataObject();
488 void SetMetafile(const wxMetafile& metafile);
489 wxMetafile GetMetafile() const;
495 class wxMetafileDataObject : public wxDataObjectSimple
498 wxMetafileDataObject() { wxPyRaiseNotImplemented(); }
502 class wxMetafileDataObject : public wxDataObjectSimple
505 wxMetafileDataObject();
510 //---------------------------------------------------------------------------
511 //---------------------------------------------------------------------------