]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/dataform.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: motif/dataform.h
3 // Purpose: declaration of the wxDataFormat class
4 // Author: Robert Roebling
6 // Created: 19.10.99 (extracted from motif/dataobj.h)
8 // Copyright: (c) 1999 Robert Roebling
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MOTIF_DATAFORM_H
13 #define _WX_MOTIF_DATAFORM_H
18 // the clipboard formats under Xt are Atoms
19 typedef Atom NativeFormat
;
22 wxDataFormat( wxDataFormatId type
);
23 wxDataFormat( const wxString
&id
);
24 wxDataFormat( const wxChar
*id
);
25 wxDataFormat( NativeFormat format
);
27 wxDataFormat
& operator=(NativeFormat format
)
28 { SetId(format
); return *this; }
30 // comparison (must have both versions)
31 bool operator==(NativeFormat format
) const
32 { return m_format
== (NativeFormat
)format
; }
33 bool operator!=(NativeFormat format
) const
34 { return m_format
!= (NativeFormat
)format
; }
35 bool operator==(wxDataFormatId format
) const
36 { return m_type
== (wxDataFormatId
)format
; }
37 bool operator!=(wxDataFormatId format
) const
38 { return m_type
!= (wxDataFormatId
)format
; }
40 // explicit and implicit conversions to NativeFormat which is one of
41 // standard data types (implicit conversion is useful for preserving the
42 // compatibility with old code)
43 NativeFormat
GetFormatId() const { return m_format
; }
44 operator NativeFormat() const { return m_format
; }
46 void SetId( NativeFormat format
);
48 // string ids are used for custom types - this SetId() must be used for
49 // application-specific formats
50 wxString
GetId() const;
51 void SetId( const wxChar
*id
);
54 wxDataFormatId
GetType() const;
57 wxDataFormatId m_type
;
58 NativeFormat m_format
;
60 void PrepareFormats();
61 void SetType( wxDataFormatId type
);
65 #endif // _WX_MOTIF_DATAFORM_H