]> git.saurik.com Git - wxWidgets.git/commitdiff
allow passing wx[W]CharBuffer to wx vararg templates
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 28 Mar 2007 18:03:26 +0000 (18:03 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 28 Mar 2007 18:03:26 +0000 (18:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45099 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/strvararg.h
src/common/strvararg.cpp
tests/strings/vararg.cpp

index 2aab05e4783638773a62aa10d038c2cfe65d0ec5..6ad650be857c846eb3c702746ea5267a324fc8a8 100644 (file)
@@ -161,6 +161,23 @@ struct wxArgNormalizer<wchar_t*> : public wxArgNormalizer<const wchar_t*>
 
 #endif // wxUSE_UNICODE_WCHAR / !wxUSE_UNICODE_WCHAR && wxUSE_WCHAR_T
 
+// versions for passing wx[W]CharBuffer:
+template<>
+struct WXDLLIMPEXP_BASE wxArgNormalizer<wxCharBuffer>
+            : public wxArgNormalizer<const char*>
+{
+    wxArgNormalizer(const wxCharBuffer& buf);
+};
+
+template<>
+struct WXDLLIMPEXP_BASE wxArgNormalizer<wxWCharBuffer>
+            : public wxArgNormalizer<const wchar_t*>
+{
+    wxArgNormalizer(const wxWCharBuffer& buf);
+};
+
+
+
 // NB: The vararg emulation code is limited to 30 arguments at the moment.
 //     If you need more, you need to
 //        1) increase the value of _WX_VARARG_MAX_ARGS
index 00e30cbf845aa6890f8625331c4bf0494e7e02d1..5e7955dd1ece151471fa6614bb6dadb744031a04 100644 (file)
@@ -77,3 +77,16 @@ const char *wxArgNormalizer<const wchar_t*>::get() const
 }
 
 #endif // wxUSE_UNICODE_WCHAR / !wxUSE_UNICODE_WCHAR && wxUSE_WCHAR_T
+
+// FIXME-UTF8: move this to the header once it's possible to include buffer.h
+//             without including wxcrt.h
+
+wxArgNormalizer<wxCharBuffer>::wxArgNormalizer(const wxCharBuffer& buf)
+    : wxArgNormalizer<const char*>(buf.data())
+{
+}
+
+wxArgNormalizer<wxWCharBuffer>::wxArgNormalizer(const wxWCharBuffer& buf)
+    : wxArgNormalizer<const wchar_t*>(buf.data())
+{
+}
index 6d902384a5680f5b215aebb0900bfa83c90e6720..52fdcfec609d0cf3e80ad2d68499150a5a3eab03 100644 (file)
@@ -53,15 +53,26 @@ void VarArgTestCase::StringPrintf()
 {
     wxString s, s2;
 
+    // test passing literals:
     s.Printf("%s %i", "foo", 42);
     CPPUNIT_ASSERT( s == "foo 42" );
     s.Printf("%s %s %i", _T("bar"), "=", 11);
+
+    // test passing c_str():
     CPPUNIT_ASSERT( s == "bar = 11" );
     s2.Printf("(%s)", s.c_str());
     CPPUNIT_ASSERT( s2 == "(bar = 11)" );
     s2.Printf(_T("[%s](%s)"), s.c_str(), "str");
     CPPUNIT_ASSERT( s2 == "[bar = 11](str)" );
 
+    // test passing wxString directly:
     s2.Printf(_T("[%s](%s)"), s, "str");
     CPPUNIT_ASSERT( s2 == "[bar = 11](str)" );
+
+    // test passing wxCharBufferType<T>:
+    s = "FooBar";
+    s2.Printf(_T("(%s)"), s.mb_str());
+    CPPUNIT_ASSERT( s2 == "(FooBar)" );
+    s2.Printf(_T("value=%s;"), s.wc_str());
+    CPPUNIT_ASSERT( s2 == "value=FooBar;" );
 }