]> git.saurik.com Git - wxWidgets.git/blob - include/wx/dataobj.h
compilation fix for BC++
[wxWidgets.git] / include / wx / dataobj.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/dataobj.h
3 // Purpose: common data object classes
4 // Author: Vadim Zeitlin, Robert Roebling
5 // Modified by:
6 // Created: 26.05.99
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWindows Team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_DATAOBJ_H_BASE_
13 #define _WX_DATAOBJ_H_BASE_
14
15 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "dataobjbase.h"
17 #endif
18
19 // ----------------------------------------------------------------------------
20 // headers
21 // ----------------------------------------------------------------------------
22 #include "wx/defs.h"
23
24 #if wxUSE_DATAOBJ
25
26 #include "wx/string.h"
27 #include "wx/bitmap.h"
28 #include "wx/list.h"
29 #include "wx/arrstr.h"
30
31 // ============================================================================
32 /*
33 Generic data transfer related classes. The class hierarchy is as follows:
34
35 - wxDataObject-
36 / \
37 / \
38 wxDataObjectSimple wxDataObjectComposite
39 / | \
40 / | \
41 wxTextDataObject | wxBitmapDataObject
42 |
43 wxCustomDataObject
44
45 */
46 // ============================================================================
47
48 // ----------------------------------------------------------------------------
49 // wxDataFormat class is declared in platform-specific headers: it represents
50 // a format for data which may be either one of the standard ones (text,
51 // bitmap, ...) or a custom one which is then identified by a unique string.
52 // ----------------------------------------------------------------------------
53
54 /* the class interface looks like this (pseudo code):
55
56 class wxDataFormat
57 {
58 public:
59 typedef <integral type> NativeFormat;
60
61 wxDataFormat(NativeFormat format = wxDF_INVALID);
62 wxDataFormat(const wxChar *format);
63
64 wxDataFormat& operator=(NativeFormat format);
65 wxDataFormat& operator=(const wxDataFormat& format);
66
67 bool operator==(NativeFormat format) const;
68 bool operator!=(NativeFormat format) const;
69
70 void SetType(NativeFormat format);
71 NativeFormat GetType() const;
72
73 wxString GetId() const;
74 void SetId(const wxChar *format);
75 };
76
77 */
78
79 #if defined(__WXMSW__)
80 #include "wx/msw/ole/dataform.h"
81 #elif defined(__WXMOTIF__)
82 #include "wx/motif/dataform.h"
83 #elif defined(__WXGTK__)
84 #include "wx/gtk/dataform.h"
85 #elif defined(__WXX11__)
86 #include "wx/x11/dataform.h"
87 #elif defined(__WXMAC__)
88 #include "wx/mac/dataform.h"
89 #elif defined(__WXPM__)
90 #include "wx/os2/dataform.h"
91 #endif
92
93 // the value for default argument to some functions (corresponds to
94 // wxDF_INVALID)
95 extern WXDLLEXPORT const wxDataFormat& wxFormatInvalid;
96
97 // ----------------------------------------------------------------------------
98 // wxDataObject represents a piece of data which knows which formats it
99 // supports and knows how to render itself in each of them - GetDataHere(),
100 // and how to restore data from the buffer (SetData()).
101 //
102 // Although this class may be used directly (i.e. custom classes may be
103 // derived from it), in many cases it might be simpler to use either
104 // wxDataObjectSimple or wxDataObjectComposite classes.
105 //
106 // A data object may be "read only", i.e. support only GetData() functions or
107 // "read-write", i.e. support both GetData() and SetData() (in principle, it
108 // might be "write only" too, but this is rare). Moreover, it doesn't have to
109 // support the same formats in Get() and Set() directions: for example, a data
110 // object containing JPEG image might accept BMPs in GetData() because JPEG
111 // image may be easily transformed into BMP but not in SetData(). Accordingly,
112 // all methods dealing with formats take an additional "direction" argument
113 // which is either SET or GET and which tells the function if the format needs
114 // to be supported by SetData() or GetDataHere().
115 // ----------------------------------------------------------------------------
116
117 class WXDLLEXPORT wxDataObjectBase
118 {
119 public:
120 enum Direction
121 {
122 Get = 0x01, // format is supported by GetDataHere()
123 Set = 0x02, // format is supported by SetData()
124 Both = 0x03 // format is supported by both (unused currently)
125 };
126
127 // this class is polymorphic, hence it needs a virtual dtor
128 virtual ~wxDataObjectBase();
129
130 // get the best suited format for rendering our data
131 virtual wxDataFormat GetPreferredFormat(Direction dir = Get) const = 0;
132
133 // get the number of formats we support
134 virtual size_t GetFormatCount(Direction dir = Get) const = 0;
135
136 // return all formats in the provided array (of size GetFormatCount())
137 virtual void GetAllFormats(wxDataFormat *formats,
138 Direction dir = Get) const = 0;
139
140 // get the (total) size of data for the given format
141 virtual size_t GetDataSize(const wxDataFormat& format) const = 0;
142
143 // copy raw data (in the specified format) to the provided buffer, return
144 // TRUE if data copied successfully, FALSE otherwise
145 virtual bool GetDataHere(const wxDataFormat& format, void *buf) const = 0;
146
147 // get data from the buffer of specified length (in the given format),
148 // return TRUE if the data was read successfully, FALSE otherwise
149 virtual bool SetData(const wxDataFormat& WXUNUSED(format),
150 size_t WXUNUSED(len), const void * WXUNUSED(buf))
151 {
152 return FALSE;
153 }
154
155 // returns TRUE if this format is supported
156 bool IsSupported(const wxDataFormat& format, Direction dir = Get) const;
157 };
158
159 // ----------------------------------------------------------------------------
160 // include the platform-specific declarations of wxDataObject
161 // ----------------------------------------------------------------------------
162
163 #if defined(__WXMSW__)
164 #include "wx/msw/ole/dataobj.h"
165 #elif defined(__WXMOTIF__)
166 #include "wx/motif/dataobj.h"
167 #elif defined(__WXX11__)
168 #include "wx/x11/dataobj.h"
169 #elif defined(__WXGTK__)
170 #include "wx/gtk/dataobj.h"
171 #elif defined(__WXMAC__)
172 #include "wx/mac/dataobj.h"
173 #elif defined(__WXPM__)
174 #include "wx/os2/dataobj.h"
175 #endif
176
177 // ----------------------------------------------------------------------------
178 // wxDataObjectSimple is a wxDataObject which only supports one format (in
179 // both Get and Set directions, but you may return FALSE from GetDataHere() or
180 // SetData() if one of them is not supported). This is the simplest possible
181 // wxDataObject implementation.
182 //
183 // This is still an "abstract base class" (although it doesn't have any pure
184 // virtual functions), to use it you should derive from it and implement
185 // GetDataSize(), GetDataHere() and SetData() functions because the base class
186 // versions don't do anything - they just return "not implemented".
187 //
188 // This class should be used when you provide data in only one format (no
189 // conversion to/from other formats), either a standard or a custom one.
190 // Otherwise, you should use wxDataObjectComposite or wxDataObject directly.
191 // ----------------------------------------------------------------------------
192
193 class WXDLLEXPORT wxDataObjectSimple : public wxDataObject
194 {
195 public:
196 // ctor takes the format we support, but it can also be set later with
197 // SetFormat()
198 wxDataObjectSimple(const wxDataFormat& format = wxFormatInvalid)
199 : m_format(format)
200 {
201 }
202
203 // get/set the format we support
204 const wxDataFormat& GetFormat() const { return m_format; }
205 void SetFormat(const wxDataFormat& format) { m_format = format; }
206
207 // virtual functions to override in derived class (the base class versions
208 // just return "not implemented")
209 // -----------------------------------------------------------------------
210
211 // get the size of our data
212 virtual size_t GetDataSize() const
213 { return 0; }
214
215 // copy our data to the buffer
216 virtual bool GetDataHere(void *WXUNUSED(buf)) const
217 { return FALSE; }
218
219 // copy data from buffer to our data
220 virtual bool SetData(size_t WXUNUSED(len), const void *WXUNUSED(buf))
221 { return FALSE; }
222
223 // implement base class pure virtuals
224 // ----------------------------------
225 virtual wxDataFormat GetPreferredFormat(wxDataObjectBase::Direction WXUNUSED(dir) = Get) const
226 { return m_format; }
227 virtual size_t GetFormatCount(wxDataObjectBase::Direction WXUNUSED(dir) = Get) const
228 { return 1; }
229 virtual void GetAllFormats(wxDataFormat *formats,
230 wxDataObjectBase::Direction WXUNUSED(dir) = Get) const
231 { *formats = m_format; }
232 virtual size_t GetDataSize(const wxDataFormat& WXUNUSED(format)) const
233 { return GetDataSize(); }
234 virtual bool GetDataHere(const wxDataFormat& WXUNUSED(format),
235 void *buf) const
236 { return GetDataHere(buf); }
237 virtual bool SetData(const wxDataFormat& WXUNUSED(format),
238 size_t len, const void *buf)
239 { return SetData(len, buf); }
240
241 private:
242 // the one and only format we support
243 wxDataFormat m_format;
244
245 DECLARE_NO_COPY_CLASS(wxDataObjectSimple)
246 };
247
248 // ----------------------------------------------------------------------------
249 // wxDataObjectComposite is the simplest way to implement wxDataObject
250 // supporting multiple formats. It contains several wxDataObjectSimple and
251 // supports all formats supported by any of them.
252 //
253 // This class shouldn't be (normally) derived from, but may be used directly.
254 // If you need more flexibility than what it provides, you should probably use
255 // wxDataObject directly.
256 // ----------------------------------------------------------------------------
257
258 WX_DECLARE_EXPORTED_LIST(wxDataObjectSimple, wxSimpleDataObjectList);
259
260 class WXDLLEXPORT wxDataObjectComposite : public wxDataObject
261 {
262 public:
263 // ctor
264 wxDataObjectComposite();
265 virtual ~wxDataObjectComposite();
266
267 // add data object (it will be deleted by wxDataObjectComposite, hence it
268 // must be allocated on the heap) whose format will become the preferred
269 // one if preferred == TRUE
270 void Add(wxDataObjectSimple *dataObject, bool preferred = FALSE);
271
272 // implement base class pure virtuals
273 // ----------------------------------
274 virtual wxDataFormat GetPreferredFormat(wxDataObjectBase::Direction dir = Get) const;
275 virtual size_t GetFormatCount(wxDataObjectBase::Direction dir = Get) const;
276 virtual void GetAllFormats(wxDataFormat *formats, wxDataObjectBase::Direction dir = Get) const;
277 virtual size_t GetDataSize(const wxDataFormat& format) const;
278 virtual bool GetDataHere(const wxDataFormat& format, void *buf) const;
279 virtual bool SetData(const wxDataFormat& format, size_t len, const void *buf);
280
281 protected:
282 // returns the pointer to the object which supports this format or NULL
283 wxDataObjectSimple *GetObject(const wxDataFormat& format) const;
284 #if defined(__WXMSW__)
285 virtual const void* GetSizeFromBuffer( const void* buffer, size_t* size,
286 const wxDataFormat& format );
287 virtual void* SetSizeInBuffer( void* buffer, size_t size,
288 const wxDataFormat& format );
289 virtual size_t GetBufferOffset( const wxDataFormat& format );
290 #endif
291
292 private:
293 // the list of all (simple) data objects whose formats we support
294 wxSimpleDataObjectList m_dataObjects;
295
296 // the index of the preferred one (0 initially, so by default the first
297 // one is the preferred)
298 size_t m_preferred;
299
300 DECLARE_NO_COPY_CLASS(wxDataObjectComposite)
301 };
302
303 // ============================================================================
304 // Standard implementations of wxDataObjectSimple which can be used directly
305 // (i.e. without having to derive from them) for standard data type transfers.
306 //
307 // Note that although all of them can work with provided data, you can also
308 // override their virtual GetXXX() functions to only provide data on demand.
309 // ============================================================================
310
311 // ----------------------------------------------------------------------------
312 // wxTextDataObject contains text data
313 // ----------------------------------------------------------------------------
314
315 class WXDLLEXPORT wxTextDataObject : public wxDataObjectSimple
316 {
317 public:
318 // ctor: you can specify the text here or in SetText(), or override
319 // GetText()
320 wxTextDataObject(const wxString& text = wxEmptyString)
321 : wxDataObjectSimple(wxUSE_UNICODE?wxDF_UNICODETEXT:wxDF_TEXT),
322 m_text(text)
323 {
324 }
325
326 // virtual functions which you may override if you want to provide text on
327 // demand only - otherwise, the trivial default versions will be used
328 virtual size_t GetTextLength() const { return m_text.Len() + 1; }
329 virtual wxString GetText() const { return m_text; }
330 virtual void SetText(const wxString& text) { m_text = text; }
331
332 // implement base class pure virtuals
333 // ----------------------------------
334 virtual size_t GetDataSize() const;
335 virtual bool GetDataHere(void *buf) const;
336 virtual bool SetData(size_t len, const void *buf);
337
338 private:
339 wxString m_text;
340
341 // virtual function hiding supression
342 size_t GetDataSize(const wxDataFormat& format) const
343 { return(wxDataObjectSimple::GetDataSize(format)); }
344 bool GetDataHere(const wxDataFormat& format, void *pBuf) const
345 { return(wxDataObjectSimple::GetDataHere(format, pBuf)); }
346 bool SetData(const wxDataFormat& format, size_t nLen, const void* pBuf)
347 { return(wxDataObjectSimple::SetData(format, nLen, pBuf)); }
348
349 DECLARE_NO_COPY_CLASS(wxTextDataObject)
350 };
351
352 // ----------------------------------------------------------------------------
353 // wxBitmapDataObject contains a bitmap
354 // ----------------------------------------------------------------------------
355
356 class WXDLLEXPORT wxBitmapDataObjectBase : public wxDataObjectSimple
357 {
358 public:
359 // ctor: you can specify the bitmap here or in SetBitmap(), or override
360 // GetBitmap()
361 wxBitmapDataObjectBase(const wxBitmap& bitmap = wxNullBitmap)
362 : wxDataObjectSimple(wxDF_BITMAP), m_bitmap(bitmap)
363 {
364 }
365
366 // virtual functions which you may override if you want to provide data on
367 // demand only - otherwise, the trivial default versions will be used
368 virtual wxBitmap GetBitmap() const { return m_bitmap; }
369 virtual void SetBitmap(const wxBitmap& bitmap) { m_bitmap = bitmap; }
370
371 protected:
372 wxBitmap m_bitmap;
373
374 DECLARE_NO_COPY_CLASS(wxBitmapDataObjectBase)
375 };
376
377 // ----------------------------------------------------------------------------
378 // wxFileDataObject contains a list of filenames
379 //
380 // NB: notice that this is a "write only" object, it can only be filled with
381 // data from drag and drop operation.
382 // ----------------------------------------------------------------------------
383
384 class WXDLLEXPORT wxFileDataObjectBase : public wxDataObjectSimple
385 {
386 public:
387 // ctor: use AddFile() later to fill the array
388 wxFileDataObjectBase() : wxDataObjectSimple(wxDF_FILENAME) { }
389
390 // get a reference to our array
391 const wxArrayString& GetFilenames() const { return m_filenames; }
392
393 // the Get() functions do nothing for us
394 virtual size_t GetDataSize() const { return 0; }
395 virtual bool GetDataHere(void *WXUNUSED(buf)) const { return FALSE; }
396
397 protected:
398 wxArrayString m_filenames;
399
400 private:
401 // Virtual function hiding supression
402 size_t GetDataSize(const wxDataFormat& format) const
403 { return(wxDataObjectSimple::GetDataSize(format)); }
404 bool GetDataHere(const wxDataFormat& format, void* pBuf) const
405 { return(wxDataObjectSimple::GetDataHere(format, pBuf)); }
406
407 DECLARE_NO_COPY_CLASS(wxFileDataObjectBase)
408 };
409
410 // ----------------------------------------------------------------------------
411 // wxCustomDataObject contains arbitrary untyped user data.
412 //
413 // It is understood that this data can be copied bitwise.
414 // ----------------------------------------------------------------------------
415
416 class WXDLLEXPORT wxCustomDataObject : public wxDataObjectSimple
417 {
418 public:
419 // if you don't specify the format in the ctor, you can still use
420 // SetFormat() later
421 wxCustomDataObject(const wxDataFormat& format = wxFormatInvalid);
422
423 // the dtor calls Free()
424 virtual ~wxCustomDataObject();
425
426 // you can call SetData() to set m_data: it will make a copy of the data
427 // you pass - or you can use TakeData() which won't copy anything, but
428 // will take ownership of data (i.e. will call Free() on it later)
429 void TakeData(size_t size, void *data);
430
431 // this function is called to allocate "size" bytes of memory from
432 // SetData(). The default version uses operator new[].
433 virtual void *Alloc(size_t size);
434
435 // this function is called when the data is freed, you may override it to
436 // anything you want (or may be nothing at all). The default version calls
437 // operator delete[] on m_data
438 virtual void Free();
439
440 // get data: you may override these functions if you wish to provide data
441 // only when it's requested
442 virtual size_t GetSize() const { return m_size; }
443 virtual void *GetData() const { return m_data; }
444
445 // implement base class pure virtuals
446 // ----------------------------------
447 virtual size_t GetDataSize() const;
448 virtual bool GetDataHere(void *buf) const;
449 virtual bool SetData(size_t size, const void *buf);
450
451 private:
452 size_t m_size;
453 void *m_data;
454
455 // virtual function hiding supression
456 size_t GetDataSize(const wxDataFormat& format) const
457 { return(wxDataObjectSimple::GetDataSize(format)); }
458 bool GetDataHere(const wxDataFormat& format, void* pBuf) const
459 { return(wxDataObjectSimple::GetDataHere(format, pBuf)); }
460 bool SetData(const wxDataFormat& format, size_t nLen, const void* pBuf)
461 { return(wxDataObjectSimple::SetData(format, nLen, pBuf)); }
462
463 DECLARE_NO_COPY_CLASS(wxCustomDataObject)
464 };
465
466 // ----------------------------------------------------------------------------
467 // include platform-specific declarations of wxXXXBase classes
468 // ----------------------------------------------------------------------------
469
470 #if defined(__WXMSW__)
471 #include "wx/msw/ole/dataobj2.h"
472
473 // wxURLDataObject defined in msw/ole/dataobj2.h
474 #else // !__WXMSW__
475 #if defined(__WXGTK__)
476 #include "wx/gtk/dataobj2.h"
477 #elif defined(__WXX11__)
478 #include "wx/x11/dataobj2.h"
479 #elif defined(__WXMOTIF__)
480 #include "wx/motif/dataobj2.h"
481 #elif defined(__WXMAC__)
482 #include "wx/mac/dataobj2.h"
483 #elif defined(__WXPM__)
484 #include "wx/os2/dataobj2.h"
485 #endif
486
487 // wxURLDataObject is simply wxTextDataObject with a different name
488 class WXDLLEXPORT wxURLDataObject : public wxTextDataObject
489 {
490 public:
491 wxString GetURL() const { return GetText(); }
492 void SetURL(const wxString& url) { SetText(url); }
493 };
494 #endif // __WXMSW__/!__WXMSW__
495
496 #endif // wxUSE_DATAOBJ
497
498 #endif // _WX_DATAOBJ_H_BASE_