first round of Intel compiler warning fixes: down from a few thousands just to slight...
[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) wxWidgets Team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_DATAOBJ_H_BASE_
13 #define _WX_DATAOBJ_H_BASE_
14
15 // ----------------------------------------------------------------------------
16 // headers
17 // ----------------------------------------------------------------------------
18 #include "wx/defs.h"
19
20 #if wxUSE_DATAOBJ
21
22 #include "wx/string.h"
23 #include "wx/bitmap.h"
24 #include "wx/list.h"
25 #include "wx/arrstr.h"
26
27 // ============================================================================
28 /*
29 Generic data transfer related classes. The class hierarchy is as follows:
30
31 - wxDataObject-
32 / \
33 / \
34 wxDataObjectSimple wxDataObjectComposite
35 / | \
36 / | \
37 wxTextDataObject | wxBitmapDataObject
38 |
39 wxCustomDataObject
40
41 */
42 // ============================================================================
43
44 // ----------------------------------------------------------------------------
45 // wxDataFormat class is declared in platform-specific headers: it represents
46 // a format for data which may be either one of the standard ones (text,
47 // bitmap, ...) or a custom one which is then identified by a unique string.
48 // ----------------------------------------------------------------------------
49
50 /* the class interface looks like this (pseudo code):
51
52 class wxDataFormat
53 {
54 public:
55 typedef <integral type> NativeFormat;
56
57 wxDataFormat(NativeFormat format = wxDF_INVALID);
58 wxDataFormat(const wxChar *format);
59
60 wxDataFormat& operator=(NativeFormat format);
61 wxDataFormat& operator=(const wxDataFormat& format);
62
63 bool operator==(NativeFormat format) const;
64 bool operator!=(NativeFormat format) const;
65
66 void SetType(NativeFormat format);
67 NativeFormat GetType() const;
68
69 wxString GetId() const;
70 void SetId(const wxChar *format);
71 };
72
73 */
74
75 #if defined(__WXMSW__)
76 #include "wx/msw/ole/dataform.h"
77 #elif defined(__WXMOTIF__)
78 #include "wx/motif/dataform.h"
79 #elif defined(__WXGTK__)
80 #include "wx/gtk/dataform.h"
81 #elif defined(__WXX11__)
82 #include "wx/x11/dataform.h"
83 #elif defined(__WXMAC__)
84 #include "wx/mac/dataform.h"
85 #elif defined(__WXCOCOA__)
86 #include "wx/cocoa/dataform.h"
87 #elif defined(__WXPM__)
88 #include "wx/os2/dataform.h"
89 #endif
90
91 // the value for default argument to some functions (corresponds to
92 // wxDF_INVALID)
93 extern WXDLLEXPORT const wxDataFormat& wxFormatInvalid;
94
95 // ----------------------------------------------------------------------------
96 // wxDataObject represents a piece of data which knows which formats it
97 // supports and knows how to render itself in each of them - GetDataHere(),
98 // and how to restore data from the buffer (SetData()).
99 //
100 // Although this class may be used directly (i.e. custom classes may be
101 // derived from it), in many cases it might be simpler to use either
102 // wxDataObjectSimple or wxDataObjectComposite classes.
103 //
104 // A data object may be "read only", i.e. support only GetData() functions or
105 // "read-write", i.e. support both GetData() and SetData() (in principle, it
106 // might be "write only" too, but this is rare). Moreover, it doesn't have to
107 // support the same formats in Get() and Set() directions: for example, a data
108 // object containing JPEG image might accept BMPs in GetData() because JPEG
109 // image may be easily transformed into BMP but not in SetData(). Accordingly,
110 // all methods dealing with formats take an additional "direction" argument
111 // which is either SET or GET and which tells the function if the format needs
112 // to be supported by SetData() or GetDataHere().
113 // ----------------------------------------------------------------------------
114
115 class WXDLLEXPORT wxDataObjectBase
116 {
117 public:
118 enum Direction
119 {
120 Get = 0x01, // format is supported by GetDataHere()
121 Set = 0x02, // format is supported by SetData()
122 Both = 0x03 // format is supported by both (unused currently)
123 };
124
125 // this class is polymorphic, hence it needs a virtual dtor
126 virtual ~wxDataObjectBase();
127
128 // get the best suited format for rendering our data
129 virtual wxDataFormat GetPreferredFormat(Direction dir = Get) const = 0;
130
131 // get the number of formats we support
132 virtual size_t GetFormatCount(Direction dir = Get) const = 0;
133
134 // return all formats in the provided array (of size GetFormatCount())
135 virtual void GetAllFormats(wxDataFormat *formats,
136 Direction dir = Get) const = 0;
137
138 // get the (total) size of data for the given format
139 virtual size_t GetDataSize(const wxDataFormat& format) const = 0;
140
141 // copy raw data (in the specified format) to the provided buffer, return
142 // true if data copied successfully, false otherwise
143 virtual bool GetDataHere(const wxDataFormat& format, void *buf) const = 0;
144
145 // get data from the buffer of specified length (in the given format),
146 // return true if the data was read successfully, false otherwise
147 virtual bool SetData(const wxDataFormat& WXUNUSED(format),
148 size_t WXUNUSED(len), const void * WXUNUSED(buf))
149 {
150 return false;
151 }
152
153 // returns true if this format is supported
154 bool IsSupported(const wxDataFormat& format, Direction dir = Get) const;
155 };
156
157 // ----------------------------------------------------------------------------
158 // include the platform-specific declarations of wxDataObject
159 // ----------------------------------------------------------------------------
160
161 #if defined(__WXMSW__)
162 #include "wx/msw/ole/dataobj.h"
163 #elif defined(__WXMOTIF__)
164 #include "wx/motif/dataobj.h"
165 #elif defined(__WXX11__)
166 #include "wx/x11/dataobj.h"
167 #elif defined(__WXGTK__)
168 #include "wx/gtk/dataobj.h"
169 #elif defined(__WXMAC__)
170 #include "wx/mac/dataobj.h"
171 #elif defined(__WXCOCOA__)
172 #include "wx/cocoa/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(
322 #if wxUSE_UNICODE
323 wxDF_UNICODETEXT
324 #else
325 wxDF_TEXT
326 #endif
327 ),
328 m_text(text)
329 {
330 }
331
332 // virtual functions which you may override if you want to provide text on
333 // demand only - otherwise, the trivial default versions will be used
334 virtual size_t GetTextLength() const { return m_text.Len() + 1; }
335 virtual wxString GetText() const { return m_text; }
336 virtual void SetText(const wxString& text) { m_text = text; }
337
338 // implement base class pure virtuals
339 // ----------------------------------
340
341 // some platforms have 2 and not 1 format for text data
342 #if wxUSE_UNICODE && (defined(__WXGTK20__) || defined(__WXMAC__))
343 virtual size_t GetFormatCount(Direction WXUNUSED(dir) = Get) const { return 2; }
344 virtual void GetAllFormats(wxDataFormat *formats,
345 wxDataObjectBase::Direction WXUNUSED(dir) = Get) const;
346
347 virtual size_t GetDataSize() const { return GetDataSize(GetPreferredFormat()); }
348 virtual bool GetDataHere(void *buf) const { return GetDataHere(GetPreferredFormat(), buf); }
349 virtual bool SetData(size_t len, const void *buf) { return SetData(GetPreferredFormat(), len, buf); }
350
351 size_t GetDataSize(const wxDataFormat& format) const;
352 bool GetDataHere(const wxDataFormat& format, void *pBuf) const;
353 bool SetData(const wxDataFormat& format, size_t nLen, const void* pBuf);
354 #else
355 virtual size_t GetDataSize() const;
356 virtual bool GetDataHere(void *buf) const;
357 virtual bool SetData(size_t len, const void *buf);
358
359 size_t GetDataSize(const wxDataFormat& format) const
360 { return(wxDataObjectSimple::GetDataSize(format)); }
361 bool GetDataHere(const wxDataFormat& format, void *pBuf) const
362 { return(wxDataObjectSimple::GetDataHere(format, pBuf)); }
363 bool SetData(const wxDataFormat& format, size_t nLen, const void* pBuf)
364 { return(wxDataObjectSimple::SetData(format, nLen, pBuf)); }
365 #endif
366
367 private:
368 wxString m_text;
369
370 DECLARE_NO_COPY_CLASS(wxTextDataObject)
371 };
372
373 // ----------------------------------------------------------------------------
374 // wxBitmapDataObject contains a bitmap
375 // ----------------------------------------------------------------------------
376
377 class WXDLLEXPORT wxBitmapDataObjectBase : public wxDataObjectSimple
378 {
379 public:
380 // ctor: you can specify the bitmap here or in SetBitmap(), or override
381 // GetBitmap()
382 wxBitmapDataObjectBase(const wxBitmap& bitmap = wxNullBitmap)
383 : wxDataObjectSimple(wxDF_BITMAP), m_bitmap(bitmap)
384 {
385 }
386
387 // virtual functions which you may override if you want to provide data on
388 // demand only - otherwise, the trivial default versions will be used
389 virtual wxBitmap GetBitmap() const { return m_bitmap; }
390 virtual void SetBitmap(const wxBitmap& bitmap) { m_bitmap = bitmap; }
391
392 protected:
393 wxBitmap m_bitmap;
394
395 DECLARE_NO_COPY_CLASS(wxBitmapDataObjectBase)
396 };
397
398 // ----------------------------------------------------------------------------
399 // wxFileDataObject contains a list of filenames
400 //
401 // NB: notice that this is a "write only" object, it can only be filled with
402 // data from drag and drop operation.
403 // ----------------------------------------------------------------------------
404
405 class WXDLLEXPORT wxFileDataObjectBase : public wxDataObjectSimple
406 {
407 public:
408 // ctor: use AddFile() later to fill the array
409 wxFileDataObjectBase() : wxDataObjectSimple(wxDF_FILENAME) { }
410
411 // get a reference to our array
412 const wxArrayString& GetFilenames() const { return m_filenames; }
413
414 // the Get() functions do nothing for us
415 virtual size_t GetDataSize() const { return 0; }
416 virtual bool GetDataHere(void *WXUNUSED(buf)) const { return false; }
417
418 protected:
419 wxArrayString m_filenames;
420
421 private:
422 // Virtual function hiding supression
423 size_t GetDataSize(const wxDataFormat& format) const
424 { return(wxDataObjectSimple::GetDataSize(format)); }
425 bool GetDataHere(const wxDataFormat& format, void* pBuf) const
426 { return(wxDataObjectSimple::GetDataHere(format, pBuf)); }
427
428 DECLARE_NO_COPY_CLASS(wxFileDataObjectBase)
429 };
430
431 // ----------------------------------------------------------------------------
432 // wxCustomDataObject contains arbitrary untyped user data.
433 //
434 // It is understood that this data can be copied bitwise.
435 // ----------------------------------------------------------------------------
436
437 class WXDLLEXPORT wxCustomDataObject : public wxDataObjectSimple
438 {
439 public:
440 // if you don't specify the format in the ctor, you can still use
441 // SetFormat() later
442 wxCustomDataObject(const wxDataFormat& format = wxFormatInvalid);
443
444 // the dtor calls Free()
445 virtual ~wxCustomDataObject();
446
447 // you can call SetData() to set m_data: it will make a copy of the data
448 // you pass - or you can use TakeData() which won't copy anything, but
449 // will take ownership of data (i.e. will call Free() on it later)
450 void TakeData(size_t size, void *data);
451
452 // this function is called to allocate "size" bytes of memory from
453 // SetData(). The default version uses operator new[].
454 virtual void *Alloc(size_t size);
455
456 // this function is called when the data is freed, you may override it to
457 // anything you want (or may be nothing at all). The default version calls
458 // operator delete[] on m_data
459 virtual void Free();
460
461 // get data: you may override these functions if you wish to provide data
462 // only when it's requested
463 virtual size_t GetSize() const { return m_size; }
464 virtual void *GetData() const { return m_data; }
465
466 // implement base class pure virtuals
467 // ----------------------------------
468 virtual size_t GetDataSize() const;
469 virtual bool GetDataHere(void *buf) const;
470 virtual bool SetData(size_t size, const void *buf);
471
472 private:
473 size_t m_size;
474 void *m_data;
475
476 // virtual function hiding supression
477 size_t GetDataSize(const wxDataFormat& format) const
478 { return(wxDataObjectSimple::GetDataSize(format)); }
479 bool GetDataHere(const wxDataFormat& format, void* pBuf) const
480 { return(wxDataObjectSimple::GetDataHere(format, pBuf)); }
481 bool SetData(const wxDataFormat& format, size_t nLen, const void* pBuf)
482 { return(wxDataObjectSimple::SetData(format, nLen, pBuf)); }
483
484 DECLARE_NO_COPY_CLASS(wxCustomDataObject)
485 };
486
487 // ----------------------------------------------------------------------------
488 // include platform-specific declarations of wxXXXBase classes
489 // ----------------------------------------------------------------------------
490
491 #if defined(__WXMSW__)
492 #include "wx/msw/ole/dataobj2.h"
493
494 // wxURLDataObject defined in msw/ole/dataobj2.h
495 #else // !__WXMSW__
496 #if defined(__WXGTK__)
497 #include "wx/gtk/dataobj2.h"
498 #elif defined(__WXX11__)
499 #include "wx/x11/dataobj2.h"
500 #elif defined(__WXMOTIF__)
501 #include "wx/motif/dataobj2.h"
502 #elif defined(__WXMAC__)
503 #include "wx/mac/dataobj2.h"
504 #elif defined(__WXCOCOA__)
505 #include "wx/cocoa/dataobj2.h"
506 #elif defined(__WXPM__)
507 #include "wx/os2/dataobj2.h"
508 #endif
509
510 // wxURLDataObject is simply wxTextDataObject with a different name
511 class WXDLLEXPORT wxURLDataObject : public wxTextDataObject
512 {
513 public:
514 wxString GetURL() const { return GetText(); }
515 void SetURL(const wxString& url) { SetText(url); }
516 };
517 #endif // __WXMSW__/!__WXMSW__
518
519 #endif // wxUSE_DATAOBJ
520
521 #endif // _WX_DATAOBJ_H_BASE_