#include "typetest.h"
-#ifdef __WXGTK__
+#if defined(__WXGTK__) || defined(__WXMOTIF__)
#include "mondrian.xpm"
#endif
IMPLEMENT_DYNAMIC_CLASS (MyApp, wxApp)
BEGIN_EVENT_TABLE(MyApp, wxApp)
- EVT_MENU(TYPES_DATE, MyApp::DoDateDemo)
- EVT_MENU(TYPES_TIME, MyApp::DoTimeDemo)
- EVT_MENU(TYPES_VARIANT, MyApp::DoVariantDemo)
+ EVT_MENU(TYPES_DATE, MyApp::DoDateDemo)
+ EVT_MENU(TYPES_TIME, MyApp::DoTimeDemo)
+ EVT_MENU(TYPES_VARIANT, MyApp::DoVariantDemo)
+ EVT_MENU(TYPES_BYTEORDER, MyApp::DoByteOrderDemo)
+#if wxUSE_UNICODE
+ EVT_MENU(TYPES_UNICODE, MyApp::DoUnicodeDemo)
+#endif
END_EVENT_TABLE()
bool MyApp::OnInit(void)
file_menu->Append(TYPES_DATE, "&Date test");
file_menu->Append(TYPES_TIME, "&Time test");
file_menu->Append(TYPES_VARIANT, "&Variant test");
+ file_menu->Append(TYPES_BYTEORDER, "&Byteorder test");
+#if wxUSE_UNICODE
+ file_menu->Append(TYPES_UNICODE, "&Unicode test");
+#endif
file_menu->AppendSeparator();
file_menu->Append(TYPES_QUIT, "E&xit");
wxMenuBar *menu_bar = new wxMenuBar;
return TRUE;
}
-void MyApp::DoTimeDemo(wxCommandEvent& event)
+#if wxUSE_UNICODE
+void MyApp::DoUnicodeDemo(wxCommandEvent& WXUNUSED(event))
+{
+ wxTextCtrl& textCtrl = * GetTextCtrl();
+
+ textCtrl.Clear();
+ textCtrl << "\nTest wchar_t to char (Unicode to ANSI/Multibyte) converions:";
+
+ wxString str;
+ str = _T("Robert Röbling\n");
+
+ printf( "\n\nConversion with wxConvLocal:\n" );
+ wxConvCurrent = &wxConvLocal;
+ printf( (const char*) str.mbc_str() );
+
+ printf( "\n\nConversion with wxConvGdk:\n" );
+ wxConvCurrent = &wxConvGdk;
+ printf( (const char*) str.mbc_str() );
+
+ printf( "\n\nConversion with wxConvLibc:\n" );
+ wxConvCurrent = &wxConvLibc;
+ printf( (const char*) str.mbc_str() );
+
+}
+#endif
+
+void MyApp::DoByteOrderDemo(wxCommandEvent& WXUNUSED(event))
{
wxTextCtrl& textCtrl = * GetTextCtrl();
textCtrl.Clear();
- cout << "\nTest class wxTime" << endl;
+ textCtrl << "\nTest byte order macros:\n\n";
+
+ if (wxBYTE_ORDER == wxLITTLE_ENDIAN)
+ textCtrl << "This is a little endian system.\n\n";
+ else
+ textCtrl << "This is a big endian system.\n\n";
+
+ wxString text;
+
+ wxInt32 var = 0xF1F2F3F4;
+ text = "";
+ text.Printf( _T("Value of wxInt32 is now: %#x.\n\n"), var );
+ textCtrl.WriteText( text );
+
+ text = "";
+ text.Printf( _T("Value of swapped wxInt32 is: %#x.\n\n"), wxINT32_SWAP_ALWAYS( var ) );
+ textCtrl.WriteText( text );
+
+ text = "";
+ text.Printf( _T("Value of wxInt32 swapped on little endian is: %#x.\n\n"), wxINT32_SWAP_ON_LE( var ) );
+ textCtrl.WriteText( text );
+
+ text = "";
+ text.Printf( _T("Value of wxInt32 swapped on big endian is: %#x.\n\n"), wxINT32_SWAP_ON_BE( var ) );
+ textCtrl.WriteText( text );
+}
+
+void MyApp::DoTimeDemo(wxCommandEvent& WXUNUSED(event))
+{
+ wxTextCtrl& textCtrl = * GetTextCtrl();
+
+ textCtrl.Clear();
+ textCtrl << "\nTest class wxTime:\n";
wxTime now;
textCtrl << "It is now " << (wxString) now << "\n";
}
-void MyApp::DoDateDemo(wxCommandEvent& event)
+void MyApp::DoDateDemo(wxCommandEvent& WXUNUSED(event))
{
wxTextCtrl& textCtrl = * GetTextCtrl();
textCtrl << "The last date of this year is " << v4.GetYearEnd() << "\n";
}
-void MyApp::DoVariantDemo(wxCommandEvent& event)
+void MyApp::DoVariantDemo(wxCommandEvent& WXUNUSED(event) )
{
wxTextCtrl& textCtrl = * GetTextCtrl();
wxVariant var1 = "String value";
- textCtrl << "var1 = " << (wxString) var1 << "\n";
+ textCtrl << "var1 = " << var1.MakeString() << "\n";
- // Implicit conversion
- wxString str = var1;
+ // Conversion
+ wxString str = var1.MakeString();
var1 = 123.456;
textCtrl << "var1 = " << var1.GetReal() << "\n";
long l = var1;
wxStringList stringList;
- stringList.Add("one"); stringList.Add("two"); stringList.Add("three");
+ stringList.Add(_T("one")); stringList.Add(_T("two")); stringList.Add(_T("three"));
var1 = stringList;
- textCtrl << "var1 = " << (wxString) var1 << "\n";
+ textCtrl << "var1 = " << var1.MakeString() << "\n";
var1.ClearList();
var1.Append(wxVariant(1.2345));
var1.Append(wxVariant("hello"));
var1.Append(wxVariant(54321L));
- textCtrl << "var1 = " << (wxString) var1 << "\n";
+ textCtrl << "var1 = " << var1.MakeString() << "\n";
size_t n = var1.GetCount();
size_t i;
for (i = (size_t) 0; i < n; i++)
{
- textCtrl << "var1[" << (int) i << "] (type " << var1[i].GetType() << ") = " << (wxString) var1[i] << "\n";
+ textCtrl << "var1[" << (int) i << "] (type " << var1[i].GetType() << ") = " << var1[i].MakeString() << "\n";
}
}