]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/dataobj.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wx*DataObject
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 A wxDataFormat is an encapsulation of a platform-specific format handle
14 which is used by the system for the clipboard and drag and drop operations.
15 The applications are usually only interested in, for example, pasting data
16 from the clipboard only if the data is in a format the program understands
17 and a data format is something which uniquely identifies this format.
19 On the system level, a data format is usually just a number (@c CLIPFORMAT
20 under Windows or @c Atom under X11, for example) and the standard formats
21 are, indeed, just numbers which can be implicitly converted to wxDataFormat.
22 The standard formats are:
25 @itemdef{wxDF_INVALID,
26 An invalid format - used as default argument for functions taking
27 a wxDataFormat argument sometimes.}
29 Text format (wxString).}
32 @itemdef{wxDF_METAFILE,
33 A metafile (wxMetafile, Windows only).}
34 @itemdef{wxDF_FILENAME,
37 An HTML string. This is only valid when passed to
38 wxSetClipboardData when compiled with Visual C++ in non-Unicode
42 As mentioned above, these standard formats may be passed to any function
43 taking wxDataFormat argument because wxDataFormat has an implicit
44 conversion from them (or, to be precise from the type
45 @c wxDataFormat::NativeFormat which is the type used by the underlying
46 platform for data formats).
48 Aside the standard formats, the application may also use custom formats
49 which are identified by their names (strings) and not numeric identifiers.
50 Although internally custom format must be created (or @e registered) first,
51 you shouldn't care about it because it is done automatically the first time
52 the wxDataFormat object corresponding to a given format name is created.
53 The only implication of this is that you should avoid having global
54 wxDataFormat objects with non-default constructor because their
55 constructors are executed before the program has time to perform all
56 necessary initialisations and so an attempt to do clipboard format
57 registration at this time will usually lead to a crash!
62 @see @ref overview_dnd, @ref page_samples_dnd, wxDataObject
68 Constructs a data format object for one of the standard data formats or
69 an empty data object (use SetType() or SetId() later in this case).
71 wxDataFormat(wxDataFormatId format
= wxDF_INVALID
);
74 Constructs a data format object for a custom format identified by its
77 wxDataFormat(const wxString
& format
);
80 Returns the name of a custom format (this function will fail for a
83 wxString
GetId() const;
86 Returns the platform-specific number identifying the format.
88 wxDataFormatId
GetType() const;
91 Sets the format to be the custom format identified by the given name.
93 void SetId(const wxString
& format
);
96 Sets the format to the given value, which should be one of wxDF_XXX
99 void SetType(wxDataFormatId type
);
102 Returns @true if the formats are different.
104 bool operator !=(wxDataFormatId format
) const;
107 Returns @true if the formats are equal.
109 bool operator ==(wxDataFormatId format
) const;
117 A wxDataObject represents data that can be copied to or from the clipboard,
118 or dragged and dropped. The important thing about wxDataObject is that this
119 is a 'smart' piece of data unlike 'dumb' data containers such as memory
120 buffers or files. Being 'smart' here means that the data object itself
121 should know what data formats it supports and how to render itself in each
122 of its supported formats.
124 A supported format, incidentally, is exactly the format in which the data
125 can be requested from a data object or from which the data object may be
126 set. In the general case, an object may support different formats on
127 'input' and 'output', i.e. it may be able to render itself in a given
128 format but not be created from data on this format or vice versa.
129 wxDataObject defines the wxDataObject::Direction enumeration type which
130 distinguishes between them.
132 See wxDataFormat documentation for more about formats.
134 Not surprisingly, being 'smart' comes at a price of added complexity. This
135 is reasonable for the situations when you really need to support multiple
136 formats, but may be annoying if you only want to do something simple like
139 To provide a solution for both cases, wxWidgets has two predefined classes
140 which derive from wxDataObject: wxDataObjectSimple and
141 wxDataObjectComposite. wxDataObjectSimple is the simplest wxDataObject
142 possible and only holds data in a single format (such as HTML or text) and
143 wxDataObjectComposite is the simplest way to implement a wxDataObject that
144 does support multiple formats because it achieves this by simply holding
145 several wxDataObjectSimple objects.
147 So, you have several solutions when you need a wxDataObject class (and you
148 need one as soon as you want to transfer data via the clipboard or drag and
151 -# Use one of the built-in classes.
152 - You may use wxTextDataObject, wxBitmapDataObject wxFileDataObject,
153 wxURLDataObject in the simplest cases when you only need to support
154 one format and your data is either text, bitmap or list of files.
155 -# Use wxDataObjectSimple
156 - Deriving from wxDataObjectSimple is the simplest solution for custom
157 data - you will only support one format and so probably won't be able
158 to communicate with other programs, but data transfer will work in
159 your program (or between different instances of it).
160 -# Use wxDataObjectComposite
161 - This is a simple but powerful solution which allows you to support
162 any number of formats (either standard or custom if you combine it
163 with the previous solution).
164 -# Use wxDataObject directly
165 - This is the solution for maximum flexibility and efficiency, but it
166 is also the most difficult to implement.
168 Please note that the easiest way to use drag and drop and the clipboard
169 with multiple formats is by using wxDataObjectComposite, but it is not the
170 most efficient one as each wxDataObjectSimple would contain the whole data
171 in its respective formats. Now imagine that you want to paste 200 pages of
172 text in your proprietary format, as well as Word, RTF, HTML, Unicode and
173 plain text to the clipboard and even today's computers are in trouble. For
174 this case, you will have to derive from wxDataObject directly and make it
175 enumerate its formats and provide the data in the requested format on
178 Note that neither the GTK+ data transfer mechanisms for clipboard and drag
179 and drop, nor OLE data transfer, @e copies any data until another application
180 actually requests the data. This is in contrast to the 'feel' offered to
181 the user of a program who would normally think that the data resides in the
182 clipboard after having pressed 'Copy' - in reality it is only declared to
185 You may also derive your own data object classes from wxCustomDataObject
186 for user-defined types. The format of user-defined data is given as a
187 mime-type string literal, such as "application/word" or "image/png". These
188 strings are used as they are under Unix (so far only GTK+) to identify a
189 format and are translated into their Windows equivalent under Win32 (using
190 the OLE IDataObject for data exchange to and from the clipboard and for
191 drag and drop). Note that the format string translation under Windows is
194 Each class derived directly from wxDataObject must override and implement
195 all of its functions which are pure virtual in the base class. The data
196 objects which only render their data or only set it (i.e. work in only one
197 direction), should return 0 from GetFormatCount().
200 At this time this class is not directly usable from wxPython. Derive a
201 class from wxPyDataObjectSimple() instead.
205 This class is not currently usable from wxPerl; you may use
206 Wx::PlDataObjectSimple instead.
212 @see @ref overview_dnd, @ref page_samples_dnd, wxFileDataObject,
213 wxTextDataObject, wxBitmapDataObject, wxCustomDataObject,
214 wxDropTarget, wxDropSource, wxTextDropTarget, wxFileDropTarget
221 /** Format is supported by GetDataHere() */
224 /** Format is supported by SetData() */
228 Format is supported by both GetDataHere() and SetData()
242 virtual ~wxDataObject();
245 Copies all formats supported in the given direction @a dir to the array
246 pointed to by @a formats.
247 There must be enough space for GetFormatCount(dir) formats in it.
249 virtual void GetAllFormats(wxDataFormat
* formats
,
250 Direction dir
= Get
) const = 0;
253 The method will write the data of the format @a format in the buffer
254 @a buf and return @true on success, @false on failure.
256 virtual bool GetDataHere(const wxDataFormat
& format
, void* buf
) const = 0;
259 Returns the data size of the given format @a format.
261 virtual size_t GetDataSize(const wxDataFormat
& format
) const = 0;
264 Returns the number of available formats for rendering or setting the
267 virtual size_t GetFormatCount(Direction dir
= Get
) const = 0;
270 Returns the preferred format for either rendering the data (if @a dir
271 is @c Get, its default value) or for setting it. Usually this will be
272 the native format of the wxDataObject.
274 virtual wxDataFormat
GetPreferredFormat(Direction dir
= Get
) const = 0;
277 Set the data in the format @a format of the length @a len provided in
280 @return @true on success, @false on failure.
282 virtual bool SetData(const wxDataFormat
& format
, size_t len
, const void* buf
);
285 Returns true if this format is supported.
287 bool IsSupported(const wxDataFormat
& format
, Direction dir
= Get
) const;
292 @class wxCustomDataObject
294 wxCustomDataObject is a specialization of wxDataObjectSimple for some
295 application-specific data in arbitrary (either custom or one of the
296 standard ones). The only restriction is that it is supposed that this data
297 can be copied bitwise (i.e. with @c memcpy()), so it would be a bad idea to
298 make it contain a C++ object (though C struct is fine).
300 By default, wxCustomDataObject stores the data inside in a buffer. To put
301 the data into the buffer you may use either SetData() or TakeData()
302 depending on whether you want the object to make a copy of data or not.
304 This class may be used as is, but if you don't want store the data inside
305 the object but provide it on demand instead, you should override GetSize(),
306 GetData() and SetData() (or may be only the first two or only the last one
307 if you only allow reading/writing the data).
314 class wxCustomDataObject
: public wxDataObjectSimple
318 The constructor accepts a @a format argument which specifies the
319 (single) format supported by this object. If it isn't set here,
320 wxDataObjectSimple::SetFormat() should be used.
322 wxCustomDataObject(const wxDataFormat
& format
= wxFormatInvalid
);
325 The destructor will free the data held by the object. Notice that
326 although it calls the virtual Free() function, the base class version
327 will always be called (C++ doesn't allow calling virtual functions from
328 constructors or destructors), so if you override Free(), you should
329 override the destructor in your class as well (which would probably
330 just call the derived class' version of Free()).
332 virtual ~wxCustomDataObject();
335 This function is called to allocate @a size bytes of memory from
336 SetData(). The default version just uses the operator new.
338 virtual void* Alloc(size_t size
);
341 This function is called when the data is freed, you may override it to
342 anything you want (or may be nothing at all). The default version calls
343 operator delete[] on the data.
348 Returns a pointer to the data.
350 virtual void* GetData() const;
353 Returns the data size in bytes.
355 virtual size_t GetSize() const;
358 Set the data. The data object will make an internal copy.
361 This method expects a string in wxPython. You can pass nearly any
362 object by pickling it first.
365 virtual bool SetData(size_t size
, const void* data
);
368 Like SetData(), but doesn't copy the data - instead the object takes
369 ownership of the pointer.
372 This method expects a string in wxPython. You can pass nearly any
373 object by pickling it first.
376 void TakeData(size_t size
, void* data
);
382 @class wxDataObjectComposite
384 wxDataObjectComposite is the simplest wxDataObject derivation which may be
385 used to support multiple formats. It contains several wxDataObjectSimple
386 objects and supports any format supported by at least one of them. Only one
387 of these data objects is @e preferred (the first one if not explicitly
388 changed by using the second parameter of Add()) and its format determines
389 the preferred format of the composite data object as well.
391 See wxDataObject documentation for the reasons why you might prefer to use
392 wxDataObject directly instead of wxDataObjectComposite for efficiency
398 @see @ref overview_dnd, wxDataObject, wxDataObjectSimple, wxFileDataObject,
399 wxTextDataObject, wxBitmapDataObject
401 class wxDataObjectComposite
: public wxDataObject
405 The default constructor.
407 wxDataObjectComposite();
410 Adds the @a dataObject to the list of supported objects and it becomes
411 the preferred object if @a preferred is @true.
413 void Add(wxDataObjectSimple
* dataObject
, bool preferred
= false);
416 Report the format passed to the SetData() method. This should be the
417 format of the data object within the composite that recieved data from
418 the clipboard or the DnD operation. You can use this method to find
419 out what kind of data object was recieved.
421 wxDataFormat
GetReceivedFormat() const;
427 @class wxDataObjectSimple
429 This is the simplest possible implementation of the wxDataObject class.
430 The data object of (a class derived from) this class only supports
431 <strong>one format</strong>, so the number of virtual functions to
432 be implemented is reduced.
434 Notice that this is still an abstract base class and cannot be used
435 directly, it must be derived. The objects supporting rendering the data
436 must override GetDataSize() and GetDataHere() while the objects which may
437 be set must override SetData(). Of course, the objects supporting both
438 operations must override all three methods.
441 If you wish to create a derived wxDataObjectSimple class in wxPython you
442 should derive the class from wxPyDataObjectSimple in order to get
443 Python-aware capabilities for the various virtual methods.
447 In wxPerl, you need to derive your data object class from
448 Wx::PlDataObjectSimple.
454 @see @ref overview_dnd, @ref page_samples_dnd, wxFileDataObject,
455 wxTextDataObject, wxBitmapDataObject
457 class wxDataObjectSimple
: public wxDataObject
461 Constructor accepts the supported format (none by default) which may
462 also be set later with SetFormat().
464 wxDataObjectSimple(const wxDataFormat
& format
= wxFormatInvalid
);
467 Copy the data to the buffer, return @true on success.
468 Must be implemented in the derived class if the object supports rendering
472 When implementing this method in wxPython, no additional parameters are
473 required and the data should be returned from the method as a string.
476 virtual bool GetDataHere(void* buf
) const;
479 Gets the size of our data. Must be implemented in the derived class if
480 the object supports rendering its data.
482 virtual size_t GetDataSize() const;
485 Returns the (one and only one) format supported by this object.
486 It is assumed that the format is supported in both directions.
488 const wxDataFormat
& GetFormat() const;
491 Copy the data from the buffer, return @true on success.
492 Must be implemented in the derived class if the object supports setting
496 When implementing this method in wxPython, the data comes as a single
497 string parameter rather than the two shown here.
500 virtual bool SetData(size_t len
, const void* buf
);
503 Sets the supported format.
505 void SetFormat(const wxDataFormat
& format
);
511 @class wxBitmapDataObject
513 wxBitmapDataObject is a specialization of wxDataObject for bitmap data. It
514 can be used without change to paste data into the wxClipboard or a
515 wxDropSource. A user may wish to derive a new class from this class for
516 providing a bitmap on-demand in order to minimize memory consumption when
517 offering data in several formats, such as a bitmap and GIF.
519 This class may be used as is, but GetBitmap() may be overridden to increase
523 If you wish to create a derived wxBitmapDataObject class in wxPython you
524 should derive the class from wxPyBitmapDataObject in order to get
525 Python-aware capabilities for the various virtual methods.
531 @see @ref overview_dnd, wxDataObject, wxDataObjectSimple, wxFileDataObject,
532 wxTextDataObject, wxDataObject
534 class wxBitmapDataObject
: public wxDataObjectSimple
538 Constructor, optionally passing a bitmap (otherwise use SetBitmap()
541 wxBitmapDataObject(const wxBitmap
& bitmap
= wxNullBitmap
);
544 Returns the bitmap associated with the data object. You may wish to
545 override this method when offering data on-demand, but this is not
546 required by wxWidgets' internals. Use this method to get data in bitmap
547 form from the wxClipboard.
549 virtual wxBitmap
GetBitmap() const;
552 Sets the bitmap associated with the data object. This method is called
553 when the data object receives data. Usually there will be no reason to
554 override this function.
556 virtual void SetBitmap(const wxBitmap
& bitmap
);
562 @class wxURLDataObject
564 wxURLDataObject is a wxDataObject containing an URL and can be used e.g.
565 when you need to put an URL on or retrieve it from the clipboard:
568 wxTheClipboard->SetData(new wxURLDataObject(url));
571 @note This class is derived from wxDataObjectComposite on Windows rather
572 than wxTextDataObject on all other platforms.
577 @see @ref overview_dnd, wxDataObject
579 class wxURLDataObject
: public wxTextDataObject
583 Constructor, may be used to initialize the URL. If @a url is empty,
584 SetURL() can be used later.
586 wxURLDataObject(const wxString
& url
= wxEmptyString
);
589 Returns the URL stored by this object, as a string.
591 wxString
GetURL() const;
594 Sets the URL stored by this object.
596 void SetURL(const wxString
& url
);
601 @class wxTextDataObject
603 wxTextDataObject is a specialization of wxDataObjectSimple for text data.
604 It can be used without change to paste data into the wxClipboard or a
605 wxDropSource. A user may wish to derive a new class from this class for
606 providing text on-demand in order to minimize memory consumption when
607 offering data in several formats, such as plain text and RTF because by
608 default the text is stored in a string in this class, but it might as well
609 be generated when requested. For this, GetTextLength() and GetText() will
610 have to be overridden.
612 Note that if you already have the text inside a string, you will not
613 achieve any efficiency gain by overriding these functions because copying
614 wxStrings is already a very efficient operation (data is not actually
615 copied because wxStrings are reference counted).
618 If you wish to create a derived wxTextDataObject class in wxPython you
619 should derive the class from wxPyTextDataObject in order to get
620 Python-aware capabilities for the various virtual methods.
626 @see @ref overview_dnd, wxDataObject, wxDataObjectSimple, wxFileDataObject,
629 class wxTextDataObject
: public wxDataObjectSimple
633 Constructor, may be used to initialise the text (otherwise SetText()
634 should be used later).
636 wxTextDataObject(const wxString
& text
= wxEmptyString
);
639 Returns the text associated with the data object. You may wish to
640 override this method when offering data on-demand, but this is not
641 required by wxWidgets' internals. Use this method to get data in text
642 form from the wxClipboard.
644 virtual wxString
GetText() const;
647 Returns the data size. By default, returns the size of the text data
648 set in the constructor or using SetText(). This can be overridden to
649 provide text size data on-demand. It is recommended to return the text
650 length plus 1 for a trailing zero, but this is not strictly required.
652 virtual size_t GetTextLength() const;
655 Returns 2 under wxMac and wxGTK, where text data coming from the
656 clipboard may be provided as ANSI (@c wxDF_TEXT) or as Unicode text
657 (@c wxDF_UNICODETEXT, but only when @c wxUSE_UNICODE==1).
659 Returns 1 under other platforms (e.g. wxMSW) or when building in ANSI mode
660 (@c wxUSE_UNICODE==0).
662 virtual size_t GetFormatCount(Direction dir
= Get
);
665 Returns the preferred format supported by this object.
667 This is @c wxDF_TEXT or @c wxDF_UNICODETEXT depending on the platform
668 and from the build mode (i.e. from @c wxUSE_UNICODE).
670 const wxDataFormat
& GetFormat() const;
673 Returns all the formats supported by wxTextDataObject.
675 Under wxMac and wxGTK they are @c wxDF_TEXT and @c wxDF_UNICODETEXT,
676 under other ports returns only one of the two, depending on the build mode.
678 virtual void GetAllFormats(wxDataFormat
* formats
,
679 Direction dir
= Get
) const = 0;
682 Sets the text associated with the data object. This method is called
683 when the data object receives the data and, by default, copies the text
684 into the member variable. If you want to process the text on the fly
685 you may wish to override this function.
687 virtual void SetText(const wxString
& strText
);
693 @class wxFileDataObject
695 wxFileDataObject is a specialization of wxDataObject for file names. The
696 program works with it just as if it were a list of absolute file names, but
697 internally it uses the same format as Explorer and other compatible
698 programs under Windows or GNOME/KDE filemanager under Unix which makes it
699 possible to receive files from them using this class.
701 @warning Under all non-Windows platforms this class is currently
702 "input-only", i.e. you can receive the files from another
703 application, but copying (or dragging) file(s) from a wxWidgets
704 application is not currently supported. PS: GTK2 should work as
710 @see wxDataObject, wxDataObjectSimple, wxTextDataObject,
711 wxBitmapDataObject, wxDataObject
713 class wxFileDataObject
: public wxDataObjectSimple
722 Adds a file to the file list represented by this data object (Windows only).
724 void AddFile(const wxString
& file
);
727 Returns the array of file names.
729 const wxArrayString
& GetFilenames() const;