]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/dataobj.tex
Some doc changes
[wxWidgets.git] / docs / latex / wx / dataobj.tex
CommitLineData
717a57c2
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: dataobj.tex
3%% Purpose: wxDataObject documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 18.10.99
7%% RCS-ID: $Id$
8%% Copyright: (c) wxWindows team
9%% Licence: wxWindows licence
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
dface61c
JS
12\section{\class{wxDataObject}}\label{wxdataobject}
13
14A wxDataObject represents data that can be copied to or from the clipboard, or
717a57c2 15dragged and dropped. The important thing about wxDataObject is that this is a
407f3681
JS
16'smart' piece of data unlike usual 'dumb' data containers such as memory
17buffers or files. Being 'smart' here means that the data object itself should
717a57c2
VZ
18know what data formats it supports and how to render itself in each of
19supported formats.
20
21A supported format, incidentally, is exactly the format in which the data can
22be requested from a data object or from which the data object may be set. In
407f3681
JS
23the general case, an object may support different formats on 'input' and
24'output', i.e. it may be able to render itself in a given format but not be
717a57c2
VZ
25created from data on this format or vice versa. wxDataObject defines an
26enumeration type
27
28\begin{verbatim}
29enum Direction
30{
31 Get = 0x01, // format is supported by GetDataHere()
32 Set = 0x02 // format is supported by SetData()
33};
34\end{verbatim}
35
36which allows to distinguish between them. See
37\helpref{wxDataFormat}{wxdataformat} documentation for more about formats.
38
407f3681 39Not surprizingly, being 'smart' comes at a price of added complexity. This is
717a57c2
VZ
40reasonable for the situations when you really need to support multiple formats,
41but may be annoying if you only want to do something simple like cut and paste
42text.
43
44To provide a solution for both cases, wxWindows has two predefined classes
407f3681 45which derive from wxDataObject: \helpref{wxDataObjectSimple}{wxdataobjectsimple} and
717a57c2
VZ
46\helpref{wxDataObjectComposite}{wxdataobjectcomposite}.
47\helpref{wxDataObjectSimple}{wxdataobjectsimple} is
48the simplest wxDataObject possible and only holds data in a single format (such
49as HTML or text) and \helpref{wxDataObjectComposite}{wxdataobjectcomposite} is
50the simplest way to implement wxDataObject which does support multiple formats
51because it achievs this by simply holding several wxDataObjectSimple objects.
52
53So, you have several solutions when you need a wxDataObject class (and you need
54one as soon as you want to transfer data via the clipboard or drag and drop):
55
c03648c2
VZ
56\begin{twocollist}\itemsep=1cm
57\twocolitem{{\bf 0. Use one of built-in classes}}{You may use wxTextDataObject,
717a57c2 58wxBitmapDataObject or wxFileDataObject in the simplest cases when you only need
407f3681 59to support one format and your data is either text, bitmap or list of files.}
c03648c2 60\twocolitem{{\bf 1. Use wxDataObjectSimple}}{Deriving from wxDataObjectSimple is the simplest
717a57c2
VZ
61solution for custom data - you will only support one format and so probably
62won't be able to communicate with other programs, but data transfer will work
63in your program (or between different copies of it).}
c03648c2 64\twocolitem{{\bf 2. Use wxDataObjectComposite}}{This is a simple but powerful
407f3681 65solution which allows you to support any number of formats (either
717a57c2 66standard or custom if you combine it with the previous solution).}
c03648c2 67\twocolitem{{\bf 3. Use wxDataObject directly}}{This is the solution for
717a57c2
VZ
68maximal flexibility and efficiency, but it also is the most difficult to
69implement.}
70\end{twocollist}
71
407f3681 72Please note that the easiest way to use drag and drop and the clipboard with
717a57c2
VZ
73multiple formats is by using wxDataObjectComposite, but it is not the most
74efficient one as each wxDataObjectSimple would contain the whole data in its
75respective formars. Now imagine that you want to paste 200 pages of text in
76your proprietary format, as well as Word, RTF, HTML, Unicode and plain text to
77the clipboard and even today's computers are in trouble. For this case, you
78will have to derive from wxDataObject directly and make it enumerate its
79formats and provide the data in the requested format on demand.
80
81Note that neither the GTK data transfer mechanisms for the clipboard and
407f3681
JS
82drag and drop, neither does the OLE data transfer copy any data until another application
83actually requests the data. This is in contrast to the 'feel' offered to the
717a57c2 84user of a program who would normally think that the data resides in the
407f3681 85clipboard after having pressed 'Copy' - in reality it is only declared to be
717a57c2
VZ
86available.
87
88There are several predefined data object classes derived from
407f3681 89wxDataObjectSimple: \helpref{wxFileDataObject}{wxfiledataobject},
717a57c2
VZ
90\helpref{wxTextDataObject}{wxtextdataobject} and
91\helpref{wxBitmapDataObject}{wxbitmapdataobject} which can be used without
92change.
93
94You may also derive your own data object classes from
95\helpref{wxCustomDataObject}{wxprivatedataobject} for user-defined types. The
96format of user-defined data is given as mime-type string literal, such as
97"application/word" or "image/png". These strings are used as they are under
98Unix (so far only GTK) to identify a format and are translated into their
99Windows equivalent under Win32 (using the OLE IDataObject for data exchange to
407f3681
JS
100and from the clipboard and for drag and drop). Note that the format string
101translation under Windows is not yet finished.
717a57c2
VZ
102
103\wxheading{Virtual functions to override}
104
105Each class derived directly from wxDataObject must override and implement all
106of its functions which are pure virtual in the base class.
107
108The data objects which only render their data or only set it (i.e. work in
109only one direction), should return 0 from
110\helpref{GetFormatCount}{wxdataobjectgetformatcount}.
f37615d7 111
dface61c
JS
112\wxheading{Derived from}
113
717a57c2 114None
dface61c 115
954b8ae6
JS
116\wxheading{Include files}
117
118<wx/dataobj.h>
119
dface61c
JS
120\wxheading{See also}
121
7f24fdbf 122\helpref{Clipboard and drag and drop overview}{wxdndoverview},
717a57c2 123\helpref{DnD sample}{samplednd},
dface61c
JS
124\helpref{wxFileDataObject}{wxfiledataobject},
125\helpref{wxTextDataObject}{wxtextdataobject},
126\helpref{wxBitmapDataObject}{wxbitmapdataobject},
f37615d7 127\helpref{wxPrivateDataObject}{wxprivatedataobject},
717a57c2 128\helpref{wxDropTarget}{wxdroptarget},
dface61c 129\helpref{wxDropSource}{wxdropsource},
717a57c2
VZ
130\helpref{wxTextDropTarget}{wxtextdroptarget},
131\helpref{wxFileDropTarget}{wxfiledroptarget}
dface61c
JS
132
133\latexignore{\rtfignore{\wxheading{Members}}}
134
135\membersection{wxDataObject::wxDataObject}\label{wxdataobjectwxdataobject}
136
137\func{}{wxDataObject}{\void}
138
139Constructor.
140
141\membersection{wxDataObject::\destruct{wxDataObject}}\label{wxdataobjectdtor}
142
143\func{}{\destruct{wxDataObject}}{\void}
144
145Destructor.
146
717a57c2 147\membersection{wxDataObject::GetAllFormats}\label{wxdataobjectgetallformats}
fc9c7c09 148
407f3681 149\constfunc{virtual void}{GetAllFormats}{ \param{wxDataFormat *}{formats}, \param{Direction}{ dir = Get}}
fc9c7c09 150
407f3681
JS
151Copy all supported formats in the given direction to the array pointed to by
152{\it formats}. There is enough space for GetFormatCount(dir) formats in it.
fc9c7c09
RR
153
154\membersection{wxDataObject::GetDataHere}\label{wxdataobjectgetdatahere}
155
717a57c2 156\constfunc{virtual bool}{GetDataHere}{\param{const wxDataFormat\&}{ format}, \param{void }{*buf} }
fc9c7c09 157
717a57c2
VZ
158The method will write the data of the format {\it format} in the buffer {\it
159buf} and return TRUE on success, FALSE on failure.
fc9c7c09
RR
160
161\membersection{wxDataObject::GetDataSize}\label{wxdataobjectgetdatasize}
162
163\constfunc{virtual size\_t}{GetDataSize}{\param{const wxDataFormat\&}{ format} }
164
165Returns the data size of the given format {\it format}.
166
717a57c2
VZ
167\membersection{wxDataObject::GetFormatCount}\label{wxdataobjectgetformatcount}
168
169\constfunc{virtual size\_t}{GetFormatCount}{\param{Direction}{ dir = Get}}
170
407f3681 171Returns the number of available formats for rendering or setting the data.
717a57c2 172
fc9c7c09 173\membersection{wxDataObject::GetPreferredFormat}\label{wxdataobjectgetpreferredformat}
f37615d7 174
717a57c2 175\constfunc{virtual wxDataFormat}{GetPreferredFormat}{\param{Direction}{ dir = Get}}
f37615d7 176
407f3681
JS
177Returns the preferred format for either rendering the data (if {\it dir} is {\tt Get},
178its default value) or for setting it. Usually this will be the
717a57c2 179native format of the wxDataObject.
f37615d7 180
fc9c7c09 181\membersection{wxDataObject::SetData}\label{wxdataobjectsetdata}
f37615d7 182
407f3681 183\func{virtual bool}{SetData}{ \param{const wxDataFormat\&}{ format}, \param{size\_t}{ len}, \param{const void }{*buf} }
717a57c2
VZ
184
185Set the data in the format {\it format} of the length {\it len} provided in the
186buffer {\it buf}.
dface61c 187
407f3681 188Returns TRUE on success, FALSE on failure.
dface61c 189