]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/typetest/typetest.cpp
cursor reflects focus change
[wxWidgets.git] / samples / typetest / typetest.cpp
index 24f729bb95a2cff3d0ee650833d13a48f5ec21ec..fc30948769b2ebdd26709f2cb4866f02d79a61cb 100644 (file)
@@ -30,7 +30,7 @@
 
 #include "typetest.h"
 
-#ifdef __WXGTK__
+#if defined(__WXGTK__) || defined(__WXMOTIF__)
 #include "mondrian.xpm"
 #endif
 
@@ -40,9 +40,13 @@ IMPLEMENT_APP        (MyApp)
 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)
@@ -62,6 +66,10 @@ 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;
@@ -78,17 +86,75 @@ bool MyApp::OnInit(void)
   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();
 
@@ -230,15 +296,15 @@ void MyApp::DoDateDemo(wxCommandEvent& event)
     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";
@@ -253,22 +319,22 @@ void MyApp::DoVariantDemo(wxCommandEvent& event)
     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";
     }
 }