]> git.saurik.com Git - wxWidgets.git/commitdiff
provide overloads for all kinds of strings for wxDataFormat ctor to allow passing...
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 4 Jun 2007 12:50:43 +0000 (12:50 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 4 Jun 2007 12:50:43 +0000 (12:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46321 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/dataform.h
include/wx/gtk1/dataform.h
src/gtk/dataobj.cpp
src/gtk1/dataobj.cpp

index 78803ff7da1292fe950946b1ad1a0fd005b76f86..1fc8372227b8beee615eaa89c1858d4ae44eecfa 100644 (file)
@@ -20,9 +20,15 @@ public:
 
     wxDataFormat();
     wxDataFormat( wxDataFormatId type );
-    wxDataFormat( const wxString &id );
     wxDataFormat( NativeFormat format );
 
+    // we have to provide all the overloads to allow using strings instead of
+    // data formats (as a lot of existing code does)
+    wxDataFormat( const wxString& id ) { InitFromString(id); }
+    wxDataFormat( const char *id ) { InitFromString(id); }
+    wxDataFormat( const wchar_t *id ) { InitFromString(id); }
+    wxDataFormat( const wxCStrData& id ) { InitFromString(id); }
+
     wxDataFormat& operator=(const wxDataFormat& format)
         { m_type = format.m_type; m_format = format.m_format; return *this; }
     wxDataFormat& operator=(NativeFormat format)
@@ -56,6 +62,9 @@ public:
     void SetType( wxDataFormatId type );
 
 private:
+    // common part of ctors from format name
+    void InitFromString(const wxString& id);
+
     wxDataFormatId   m_type;
     NativeFormat     m_format;
 
index 5d143ed9aaab9a8c36a4b1190dc00b3f52e56fd8..ad27104edd3396988b96d197c88e75db8441c92f 100644 (file)
@@ -20,9 +20,16 @@ public:
 
     wxDataFormat();
     wxDataFormat( wxDataFormatId type );
-    wxDataFormat( const wxString &id );
     wxDataFormat( NativeFormat format );
 
+    // we have to provide all the overloads to allow using strings instead of
+    // data formats (as a lot of existing code does)
+    wxDataFormat( const wxString& id ) { InitFromString(id); }
+    wxDataFormat( const char *id ) { InitFromString(id); }
+    wxDataFormat( const wchar_t *id ) { InitFromString(id); }
+    wxDataFormat( const wxCStrData& id ) { InitFromString(id); }
+
+
     wxDataFormat& operator=(const wxDataFormat& format)
         { m_type = format.m_type; m_format = format.m_format; return *this; }
     wxDataFormat& operator=(NativeFormat format)
@@ -56,6 +63,9 @@ public:
     void SetType( wxDataFormatId type );
 
 private:
+    // common part of ctors from format name
+    void InitFromString(const wxString& id);
+
     wxDataFormatId   m_type;
     NativeFormat     m_format;
 
index 4c3e4225eb3a7b31136cad9be840092662933794..89ad8d2de047dab1c6c24ff167489a369cfde276 100644 (file)
@@ -58,7 +58,7 @@ wxDataFormat::wxDataFormat( wxDataFormatId type )
     SetType( type );
 }
 
-wxDataFormat::wxDataFormat( const wxString &id )
+void wxDataFormat::InitFromString( const wxString &id )
 {
     PrepareFormats();
     SetId( id );
index 97b7bc8510b0162431ee1fde1f0985812d0cd8d8..927d7e14daa928150e942e12b842540587c6bca3 100644 (file)
@@ -58,7 +58,7 @@ wxDataFormat::wxDataFormat( wxDataFormatId type )
     SetType( type );
 }
 
-wxDataFormat::wxDataFormat( const wxString &id )
+void wxDataFormat::InitFromString( const wxString &id )
 {
     PrepareFormats();
     SetId( id );