]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/dataobj.h
Removed wxNullRegion
[wxWidgets.git] / include / wx / gtk / dataobj.h
index 2a9bc78242c8b28fe472dc6667ce9b7f9d3d924f..13c80135ca038c1a2fba27b6d6fdef3d5ff26523 100644 (file)
@@ -63,22 +63,26 @@ class wxDataFormat : public wxObject
   
 public:
   
+  wxDataFormat();
   wxDataFormat( wxDataType type );
   wxDataFormat( const wxString &id );
   wxDataFormat( wxDataFormat &format );
   wxDataFormat( const GdkAtom atom );
-    
-  int GetType() const;
+
+  void SetType( wxDataType type );    
+  wxDataType GetType() const;
+  
   wxString GetId() const;
   void SetId( const wxString &id );
+  
   GdkAtom GetAtom();
       
 private:
 
-  int       m_type;
-  wxString  m_id;
-  bool      m_hasAtom;
-  GdkAtom   m_atom;
+  wxDataType  m_type;
+  wxString    m_id;
+  bool        m_hasAtom;
+  GdkAtom     m_atom;
 };
 
 //-------------------------------------------------------------------------
@@ -151,9 +155,13 @@ public:
   
   /* implementation */
   
-  virtual wxDataFormat &GetFormat() const;
+  wxDataFormat &GetFormat();
+  
+  wxDataType GetFormatType() const;
+  wxString   GetFormatId() const;
+  GdkAtom    GetFormatAtom() const;
   
-  wxDataFormat *m_format;
+  wxDataFormat m_format;
 };
 
 //----------------------------------------------------------------------------