]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/ole/dataform.h
OS X savvy implementation
[wxWidgets.git] / include / wx / msw / ole / dataform.h
CommitLineData
e1ee679c
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: msw/ole/dataform.h
3// Purpose: declaration of the wxDataFormat class
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 19.10.99 (extracted from msw/ole/dataobj.h)
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence
e1ee679c
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_MSW_OLE_DATAFORM_H
13#define _WX_MSW_OLE_DATAFORM_H
14
15// ----------------------------------------------------------------------------
16// wxDataFormat identifies the single format of data
17// ----------------------------------------------------------------------------
18
19class WXDLLEXPORT wxDataFormat
20{
21public:
33ac7e6f 22 // the clipboard formats under Win32 are WORD's
3922ecc9 23 typedef unsigned short NativeFormat;
e1ee679c
VZ
24
25 wxDataFormat(NativeFormat format = wxDF_INVALID) { m_format = format; }
26 wxDataFormat(const wxChar *format) { SetId(format); }
27
28 wxDataFormat& operator=(NativeFormat format)
29 { m_format = format; return *this; }
30 wxDataFormat& operator=(const wxDataFormat& format)
31 { m_format = format.m_format; return *this; }
32
33 // default copy ctor/assignment operators ok
34
35 // comparison (must have both versions)
36 bool operator==(wxDataFormatId format) const
37 { return m_format == (NativeFormat)format; }
38 bool operator!=(wxDataFormatId format) const
39 { return m_format != (NativeFormat)format; }
40 bool operator==(const wxDataFormat& format) const
41 { return m_format == format.m_format; }
42 bool operator!=(const wxDataFormat& format) const
43 { return m_format != format.m_format; }
44
45 // explicit and implicit conversions to NativeFormat which is one of
46 // standard data types (implicit conversion is useful for preserving the
47 // compatibility with old code)
48 NativeFormat GetFormatId() const { return m_format; }
49 operator NativeFormat() const { return m_format; }
50
3922ecc9
VZ
51 // this works with standard as well as custom ids
52 void SetType(NativeFormat format) { m_format = format; }
53 NativeFormat GetType() const { return m_format; }
e1ee679c
VZ
54
55 // string ids are used for custom types - this SetId() must be used for
56 // application-specific formats
57 wxString GetId() const;
58 void SetId(const wxChar *format);
59
0a0e6a5b 60 // returns true if the format is one of those defined in wxDataFormatId
478d4ab7 61 bool IsStandard() const { return m_format > 0 && m_format < wxDF_PRIVATE; }
e1ee679c 62
3922ecc9 63private:
e1ee679c
VZ
64 NativeFormat m_format;
65};
66
67#endif // _WX_MSW_OLE_DATAFORM_H
68