]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/typetest/typetest.cpp
1. corrected "notebook selection handling" event handler to work
[wxWidgets.git] / samples / typetest / typetest.cpp
index 427402e6e737b1629d43137bedd17a29c17b7f90..4cdeff9cbb059017d4c6e6d1aaf27819e2a4b080 100644 (file)
 
 #include "typetest.h"
 
-#ifdef __WXGTK__
+#if defined(__WXGTK__) || defined(__WXMOTIF__)
 #include "mondrian.xpm"
 #endif
 
+#include "wx/ioswrap.h"
+
+#if wxUSE_IOSTREAMH
+    #include <fstream.h>
+#else
+    #include <fstream>
+#endif
+
+#include "wx/wfstream.h"
+#include "wx/datstrm.h"
+#include "wx/txtstrm.h"
+
 // Create a new application object
 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
+       EVT_MENU(TYPES_STREAM, MyApp::DoStreamDemo)
 END_EVENT_TABLE()
 
 bool MyApp::OnInit(void)
@@ -62,6 +79,11 @@ 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->Append(TYPES_STREAM, "&Stream test");
   file_menu->AppendSeparator();
   file_menu->Append(TYPES_QUIT, "E&xit");
   wxMenuBar *menu_bar = new wxMenuBar;
@@ -78,12 +100,219 @@ bool MyApp::OnInit(void)
   return TRUE;
 }
 
+void MyApp::DoStreamDemo(wxCommandEvent& WXUNUSED(event))
+{
+    wxTextCtrl& textCtrl = * GetTextCtrl();
+    
+    textCtrl.Clear();
+    textCtrl << _T("\nTest fstream vs. wxFileStream:\n\n");
+
+    textCtrl.WriteText( "Writing to ofstream and wxFileOutputStream:\n" );
+    
+    ofstream std_file_output( "test_std.dat" );
+    wxFileOutputStream file_output( "test_wx.dat" );
+    wxBufferedOutputStream buf_output( file_output );
+    wxTextOutputStream text_output( buf_output );
+
+    wxString tmp;
+    signed int si = 0xFFFFFFFF;
+    tmp.Printf( _T("Signed int: %d\n"), si );
+    textCtrl.WriteText( tmp );
+    text_output << si << "\n";
+    std_file_output << si << "\n";
+    
+    unsigned int ui = 0xFFFFFFFF;
+    tmp.Printf( _T("Unsigned int: %u\n"), ui );
+    textCtrl.WriteText( tmp );
+    text_output << ui << "\n";
+    std_file_output << ui << "\n";
+    
+    double d = 2.01234567890123456789;
+    tmp.Printf( _T("Double: %f\n"), d );
+    textCtrl.WriteText( tmp );
+    text_output << d << "\n";
+    std_file_output << d << "\n";
+    
+    float f = 0.00001;
+    tmp.Printf( _T("Float: %f\n"), f );
+    textCtrl.WriteText( tmp );
+    text_output << f << "\n";
+    std_file_output << f << "\n";
+    
+    wxString str( _T("Hello!") );
+    tmp.Printf( _T("String: %s\n"), str.c_str() );
+    textCtrl.WriteText( tmp );
+    text_output << str << "\n";
+    std_file_output << str.c_str() << "\n";
+    
+    textCtrl.WriteText( "\nReading from ifstream:\n" );
+    
+    ifstream std_file_input( "test_std.dat" );
+
+    std_file_input >> si;
+    tmp.Printf( _T("Signed int: %d\n"), si );
+    textCtrl.WriteText( tmp );
+    
+    std_file_input >> ui;
+    tmp.Printf( _T("Unsigned int: %u\n"), ui );
+    textCtrl.WriteText( tmp );
+    
+    std_file_input >> d;
+    tmp.Printf( _T("Double: %f\n"), d );
+    textCtrl.WriteText( tmp );
+    
+    std_file_input >> f;
+    tmp.Printf( _T("Float: %f\n"), f );
+    textCtrl.WriteText( tmp );
+    
+    std_file_input >> str;
+    tmp.Printf( _T("String: %s\n"), str.c_str() );
+    textCtrl.WriteText( tmp );
+    
+    textCtrl.WriteText( "\nReading from wxFileInputStream:\n" );
+
+    buf_output.Sync();
+    
+    wxFileInputStream file_input( "test_wx.dat" );
+    wxBufferedInputStream buf_input( file_input );
+    wxTextInputStream text_input( buf_input );
+    
+    text_input >> si;
+    tmp.Printf( _T("Signed int: %d\n"), si );
+    textCtrl.WriteText( tmp );
+    
+    text_input >> ui;
+    tmp.Printf( _T("Unsigned int: %u\n"), ui );
+    textCtrl.WriteText( tmp );
+    
+    text_input >> d;
+    tmp.Printf( _T("Double: %f\n"), d );
+    textCtrl.WriteText( tmp );
+    
+    text_input >> f;
+    tmp.Printf( _T("Float: %f\n"), f );
+    textCtrl.WriteText( tmp );
+    
+    text_input >> str;
+    tmp.Printf( _T("String: %s\n"), str.c_str() );
+    textCtrl.WriteText( tmp );
+    
+
+    textCtrl << "\nTest for wxDataStream:\n\n";
+
+    textCtrl.WriteText( "Writing to wxDataOutputStream:\n" );
+    
+    file_output.SeekO( 0 );
+    wxDataOutputStream data_output( buf_output );
+
+    wxInt16 i16 = 0xFFFF;
+    tmp.Printf( _T("Signed int16: %d\n"), (int)i16 );
+    textCtrl.WriteText( tmp );
+    data_output.Write16( i16 );
+    
+    wxUint16 ui16 = 0xFFFF;
+    tmp.Printf( _T("Unsigned int16: %u\n"), (unsigned int) ui16 );
+    textCtrl.WriteText( tmp );
+    data_output.Write16( ui16 );
+    
+    d = 2.01234567890123456789;
+    tmp.Printf( _T("Double: %f\n"), d );
+    textCtrl.WriteText( tmp );
+    data_output.WriteDouble( d );
+    
+    str = "Hello!";
+    tmp.Printf( _T("String: %s\n"), str.c_str() );
+    textCtrl.WriteText( tmp );
+    data_output.WriteString( str );
+    
+    buf_output.Sync();
+    
+    textCtrl.WriteText( "\nReading from wxDataInputStream:\n" );
+    
+    file_input.SeekI( 0 );
+    wxDataInputStream data_input( buf_input );
+
+    i16 = data_input.Read16();
+    tmp.Printf( _T("Signed int16: %d\n"), (int)i16 );
+    textCtrl.WriteText( tmp );
+    
+    ui16 = data_input.Read16();
+    tmp.Printf( _T("Unsigned int16: %u\n"), (unsigned int) ui16 );
+    textCtrl.WriteText( tmp );
+
+    d = data_input.ReadDouble();
+    tmp.Printf( _T("Double: %f\n"), d );
+    textCtrl.WriteText( tmp );
+    
+    str = data_input.ReadString();
+    tmp.Printf( _T("String: %s\n"), str.c_str() );
+    textCtrl.WriteText( tmp );
+}
+
+#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();
+    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();
-    cout << "\nTest class wxTime" << endl;
+    textCtrl << "\nTest class wxTime:\n";
     wxTime now;
     textCtrl << "It is now " << (wxString) now << "\n";
 }
@@ -235,10 +464,10 @@ 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 +482,22 @@ void MyApp::DoVariantDemo(wxCommandEvent& WXUNUSED(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";
     }
 }