]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/dataform.h
added support for item attributes in virtual list control
[wxWidgets.git] / include / wx / os2 / dataform.h
index 23b4b51ee6c59b7f61732f6269415f269466eb5a..1b5b229e1a5f963d6db8d3e561174f9e9e7a08be 100644 (file)
@@ -1,11 +1,11 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        os2/dataform.h
+// Name:        mac/dataform.h
 // Purpose:     declaration of the wxDataFormat class
-// Author:      David Webster (lifted from dnd.h)
+// Author:      Stefan Csomor
 // Modified by:
 // Created:     10/21/99
 // RCS-ID:      $Id$
-// Copyright:   (c) 1999 David Webster
+// Copyright:   (c) 1999 Stefan Csomor
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
@@ -19,32 +19,32 @@ public:
     typedef unsigned short NativeFormat;
 
     wxDataFormat();
-    wxDataFormat( wxDataFormatId type );
-    wxDataFormat( const wxString &id );
-    wxDataFormat( const wxChar *id );
-    wxDataFormat( NativeFormat format );
+    wxDataFormat(wxDataFormatId vType);
+    wxDataFormat(const wxString& rId);
+    wxDataFormat(const wxChar* pId);
+    wxDataFormat(NativeFormat vFormat);
 
-    wxDataFormat& operator=(NativeFormat format)
-        { SetId(format); return *this; }
+    wxDataFormat& operator=(NativeFormat vFormat)
+        { SetId(vFormat); return *this; }
 
     // comparison (must have both versions)
-    bool operator==(NativeFormat format) const
-        { return m_format == (NativeFormat)format; }
-    bool operator!=(NativeFormat format) const
-        { return m_format != (NativeFormat)format; }
+    bool operator==(NativeFormat vFormat) const
+        { return m_vFormat == (NativeFormat)vFormat; }
+    bool operator!=(NativeFormat vFormat) const
+        { return m_vFormat != (NativeFormat)vFormat; }
 
     // explicit and implicit conversions to NativeFormat which is one of
     // standard data types (implicit conversion is useful for preserving the
     // compatibility with old code)
-    NativeFormat GetFormatId() const { return m_format; }
-    operator NativeFormat() const { return m_format; }
+    NativeFormat GetFormatId() const { return m_vFormat; }
+    operator NativeFormat() const { return m_vFormat; }
 
-    void SetId( NativeFormat format );
+    void SetId(NativeFormat vFormat);
 
     // string ids are used for custom types - this SetId() must be used for
     // application-specific formats
     wxString GetId() const;
-    void SetId( const wxChar *id );
+    void SetId(const wxChar* pId);
 
     // implementation
     wxDataFormatId GetType() const;
@@ -54,7 +54,7 @@ private:
     NativeFormat                    m_vFormat;
 
     void PrepareFormats();
-    void SetType( wxDataFormatId type );
+    void SetType(wxDataFormatId vType);
 };
 
 #endif // _WX_GTK_DATAFORM_H