]>
git.saurik.com Git - wxWidgets.git/blob - samples/typetest/typetest.cpp
0df7ed9d343c6a41aafd9e1d0fd1cd9e1d96a29e
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Types wxWindows sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "typetest.h"
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
29 #include "wx/variant.h"
33 #if defined(__WXGTK__) || defined(__WXMOTIF__)
34 #include "mondrian.xpm"
37 #include "wx/ioswrap.h"
45 #include "wx/wfstream.h"
48 // Create a new application object
51 IMPLEMENT_DYNAMIC_CLASS (MyApp
, wxApp
)
53 BEGIN_EVENT_TABLE(MyApp
, wxApp
)
54 EVT_MENU(TYPES_DATE
, MyApp::DoDateDemo
)
55 EVT_MENU(TYPES_TIME
, MyApp::DoTimeDemo
)
56 EVT_MENU(TYPES_VARIANT
, MyApp::DoVariantDemo
)
57 EVT_MENU(TYPES_BYTEORDER
, MyApp::DoByteOrderDemo
)
59 EVT_MENU(TYPES_UNICODE
, MyApp::DoUnicodeDemo
)
61 EVT_MENU(TYPES_STREAM
, MyApp::DoStreamDemo
)
64 bool MyApp::OnInit(void)
66 // Create the main frame window
67 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, "wxWindows Types Demo",
68 wxPoint(50, 50), wxSize(450, 340));
71 frame
->SetIcon(wxICON(mondrian
));
74 wxMenu
*file_menu
= new wxMenu
;
76 file_menu
->Append(TYPES_ABOUT
, "&About");
77 file_menu
->AppendSeparator();
78 file_menu
->Append(TYPES_DATE
, "&Date test");
79 file_menu
->Append(TYPES_TIME
, "&Time test");
80 file_menu
->Append(TYPES_VARIANT
, "&Variant test");
81 file_menu
->Append(TYPES_BYTEORDER
, "&Byteorder test");
83 file_menu
->Append(TYPES_UNICODE
, "&Unicode test");
85 file_menu
->Append(TYPES_STREAM
, "&Stream test");
86 file_menu
->AppendSeparator();
87 file_menu
->Append(TYPES_QUIT
, "E&xit");
88 wxMenuBar
*menu_bar
= new wxMenuBar
;
89 menu_bar
->Append(file_menu
, "&File");
90 frame
->SetMenuBar(menu_bar
);
92 m_textCtrl
= new wxTextCtrl(frame
, -1, "", wxPoint(0, 0), wxDefaultSize
, wxTE_MULTILINE
);
102 void MyApp::DoStreamDemo(wxCommandEvent
& WXUNUSED(event
))
104 wxTextCtrl
& textCtrl
= * GetTextCtrl();
107 textCtrl
<< "\nTest fstream vs. wxFileStream:\n\n";
109 textCtrl
.WriteText( "Writing to ofstream and wxFileOutputStream:\n" );
111 ofstream
std_file_output( "test_std.dat" );
112 wxFileOutputStream
file_output( "test_wx.dat" );
115 signed int si
= 0xFFFFFFFF;
116 tmp
.Printf( "Signed int: %d\n", si
);
117 textCtrl
.WriteText( tmp
);
118 file_output
<< si
<< "\n";
119 std_file_output
<< si
<< "\n";
121 unsigned int ui
= 0xFFFFFFFF;
122 tmp
.Printf( "Unsigned int: %u\n", ui
);
123 textCtrl
.WriteText( tmp
);
124 file_output
<< ui
<< "\n";
125 std_file_output
<< ui
<< "\n";
127 double d
= 2.01234567890123456789;
128 tmp
.Printf( "Double: %f\n", d
);
129 textCtrl
.WriteText( tmp
);
130 file_output
<< d
<< "\n";
131 std_file_output
<< d
<< "\n";
134 tmp
.Printf( "Float: %f\n", f
);
135 textCtrl
.WriteText( tmp
);
136 file_output
<< f
<< "\n";
137 std_file_output
<< f
<< "\n";
139 wxString
str( "Hello!" );
140 tmp
.Printf( "String: %s\n", str
.c_str() );
141 textCtrl
.WriteText( tmp
);
142 file_output
<< str
<< "\n";
143 std_file_output
<< str
.c_str() << "\n";
145 textCtrl
.WriteText( "\nReading from ifstream:\n" );
147 ifstream
std_file_input( "test_std.dat" );
149 std_file_input
>> si
;
150 tmp
.Printf( "Signed int: %d\n", si
);
151 textCtrl
.WriteText( tmp
);
153 std_file_input
>> ui
;
154 tmp
.Printf( "Unsigned int: %u\n", ui
);
155 textCtrl
.WriteText( tmp
);
158 tmp
.Printf( "Double: %f\n", d
);
159 textCtrl
.WriteText( tmp
);
162 tmp
.Printf( "Float: %f\n", f
);
163 textCtrl
.WriteText( tmp
);
165 std_file_input
>> str
;
166 tmp
.Printf( "String: %s\n", str
.c_str() );
167 textCtrl
.WriteText( tmp
);
169 textCtrl
.WriteText( "\nReading from wxFileInputStream:\n" );
171 wxFileInputStream
file_input( "test_wx.dat" );
174 tmp
.Printf( "Signed int: %d\n", si
);
175 textCtrl
.WriteText( tmp
);
178 tmp
.Printf( "Unsigned int: %u\n", ui
);
179 textCtrl
.WriteText( tmp
);
182 tmp
.Printf( "Double: %f\n", d
);
183 textCtrl
.WriteText( tmp
);
186 tmp
.Printf( "Float: %f\n", f
);
187 textCtrl
.WriteText( tmp
);
190 tmp
.Printf( "String: %s\n", str
.c_str() );
191 textCtrl
.WriteText( tmp
);
195 void MyApp::DoUnicodeDemo(wxCommandEvent
& WXUNUSED(event
))
197 wxTextCtrl
& textCtrl
= * GetTextCtrl();
200 textCtrl
<< "\nTest wchar_t to char (Unicode to ANSI/Multibyte) converions:";
203 str
= _T("Robert Röbling\n");
205 printf( "\n\nConversion with wxConvLocal:\n" );
206 wxConvCurrent
= &wxConvLocal
;
207 printf( (const char*) str
.mbc_str() );
209 printf( "\n\nConversion with wxConvGdk:\n" );
210 wxConvCurrent
= &wxConvGdk
;
211 printf( (const char*) str
.mbc_str() );
213 printf( "\n\nConversion with wxConvLibc:\n" );
214 wxConvCurrent
= &wxConvLibc
;
215 printf( (const char*) str
.mbc_str() );
220 void MyApp::DoByteOrderDemo(wxCommandEvent
& WXUNUSED(event
))
222 wxTextCtrl
& textCtrl
= * GetTextCtrl();
225 textCtrl
<< "\nTest byte order macros:\n\n";
227 if (wxBYTE_ORDER
== wxLITTLE_ENDIAN
)
228 textCtrl
<< "This is a little endian system.\n\n";
230 textCtrl
<< "This is a big endian system.\n\n";
234 wxInt32 var
= 0xF1F2F3F4;
236 text
.Printf( _T("Value of wxInt32 is now: %#x.\n\n"), var
);
237 textCtrl
.WriteText( text
);
240 text
.Printf( _T("Value of swapped wxInt32 is: %#x.\n\n"), wxINT32_SWAP_ALWAYS( var
) );
241 textCtrl
.WriteText( text
);
244 text
.Printf( _T("Value of wxInt32 swapped on little endian is: %#x.\n\n"), wxINT32_SWAP_ON_LE( var
) );
245 textCtrl
.WriteText( text
);
248 text
.Printf( _T("Value of wxInt32 swapped on big endian is: %#x.\n\n"), wxINT32_SWAP_ON_BE( var
) );
249 textCtrl
.WriteText( text
);
252 void MyApp::DoTimeDemo(wxCommandEvent
& WXUNUSED(event
))
254 wxTextCtrl
& textCtrl
= * GetTextCtrl();
257 textCtrl
<< "\nTest class wxTime:\n";
259 textCtrl
<< "It is now " << (wxString
) now
<< "\n";
262 void MyApp::DoDateDemo(wxCommandEvent
& WXUNUSED(event
))
264 wxTextCtrl
& textCtrl
= * GetTextCtrl();
267 textCtrl
<< "\nTest class wxDate" << "\n";
269 // Various versions of the constructors
270 // and various output
272 wxDate
x(10,20,1962);
274 textCtrl
<< x
.FormatDate(wxFULL
) << " (full)\n";
276 // constuctor with a string, just printing the day of the week
277 wxDate
y("8/8/1988");
279 textCtrl
<< y
.FormatDate(wxDAY
) << " (just day)\n";
281 // constructor with a julian
282 wxDate
z( 2450000L );
283 textCtrl
<< z
.FormatDate(wxFULL
) << " (full)\n";
285 // using date addition and subtraction
287 textCtrl
<< a
.FormatDate(wxFULL
) << " (full)\n";
289 textCtrl
<< a
.FormatDate(wxEUROPEAN
) << " (European)\n";
292 // Using subtraction of two date objects
293 wxDate a1
= wxString("7/13/1991");
295 textCtrl
<< (a1
-a2
) << "\n";
296 textCtrl
<< (a2
+=10) << "\n";
299 textCtrl
<< "Tomorrow= " << a1
.FormatDate(wxFULL
) << "\n";
301 wxDate
tmpDate1("08/01/1991");
302 wxDate
tmpDate2("07/14/1991");
303 textCtrl
<< "a1 (7-14-91) < 8-01-91 ? ==> " << ((a1
< tmpDate1
) ? "TRUE" : "FALSE") << "\n";
304 textCtrl
<< "a1 (7-14-91) > 8-01-91 ? ==> " << ((a1
> tmpDate1
) ? "TRUE" : "FALSE") << "\n";
305 textCtrl
<< "a1 (7-14-91)== 7-14-91 ? ==> " << ((a1
==tmpDate2
) ? "TRUE" : "FALSE") << "\n";
308 textCtrl
<< "a1 (7-14-91)== a3 (7-14-91) ? ==> " << ((a1
==a3
) ? "TRUE" : "FALSE") << "\n";
310 textCtrl
<< "a1 (7-14-91)== a4 (7-15-91) ? ==> " << ((a1
==++a4
) ? "TRUE" : "FALSE") << "\n";
312 wxDate a5
= wxString("today");
313 textCtrl
<< "Today is: " << a5
<< "\n";
315 textCtrl
<< "Today (a4) is: " << a4
<< "\n";
317 textCtrl
<< "Today + 4 is: " << (a4
+=4) << "\n";
319 textCtrl
<< "Today - 4 is: " << (a4
-=4) << "\n";
321 textCtrl
<< "=========== Leap Year Test ===========\n";
323 textCtrl
<< a1
.FormatDate(wxFULL
) << " " << ((a1
.IsLeapYear()) ? "Leap" : "non-Leap");
324 textCtrl
<< " " << "day of year: " << a1
.GetDayOfYear() << "\n";
327 textCtrl
<< a1
.FormatDate(wxFULL
) << " " << ((a1
.IsLeapYear()) ? "Leap" : "non-Leap");
328 textCtrl
<< " " << "day of year: " << a1
.GetDayOfYear() << "\n";
330 textCtrl
<< "================== string assignment test ====================\n";
331 wxString date_string
=a1
;
332 textCtrl
<< "a1 as a string (s/b 2/16/1993) ==> " << date_string
<< "\n";
334 textCtrl
<< "================== SetFormat test ============================\n";
335 a1
.SetFormat(wxFULL
);
336 textCtrl
<< "a1 (s/b FULL format) ==> " << a1
<< "\n";
337 a1
.SetFormat(wxEUROPEAN
);
338 textCtrl
<< "a1 (s/b EUROPEAN format) ==> " << a1
<< "\n";
340 textCtrl
<< "================== SetOption test ============================\n";
341 textCtrl
<< "Date abbreviation ON\n";
343 a1
.SetOption(wxDATE_ABBR
);
344 a1
.SetFormat(wxMONTH
);
345 textCtrl
<< "a1 (s/b MONTH format) ==> " << a1
<< "\n";
347 textCtrl
<< "a1 (s/b DAY format) ==> " << a1
<< "\n";
348 a1
.SetFormat(wxFULL
);
349 textCtrl
<< "a1 (s/b FULL format) ==> " << a1
<< "\n";
350 a1
.SetFormat(wxEUROPEAN
);
351 textCtrl
<< "a1 (s/b EUROPEAN format) ==> " << a1
<< "\n";
352 textCtrl
<< "Century suppression ON\n";
353 a1
.SetOption(wxNO_CENTURY
);
355 textCtrl
<< "a1 (s/b MDY format) ==> " << a1
<< "\n";
356 textCtrl
<< "Century suppression OFF\n";
357 a1
.SetOption(wxNO_CENTURY
,FALSE
);
358 textCtrl
<< "a1 (s/b MDY format) ==> " << a1
<< "\n";
359 textCtrl
<< "Century suppression ON\n";
360 a1
.SetOption(wxNO_CENTURY
);
361 textCtrl
<< "a1 (s/b MDY format) ==> " << a1
<< "\n";
362 a1
.SetFormat(wxFULL
);
363 textCtrl
<< "a1 (s/b FULL format) ==> " << a1
<< "\n";
365 textCtrl
<< "\n=============== Version 4.0 Enhancement Test =================\n";
367 wxDate
v4("11/26/1966");
368 textCtrl
<< "\n---------- Set Stuff -----------\n";
369 textCtrl
<< "First, 'Set' to today..." << "\n";
370 textCtrl
<< "Before 'Set' => " << v4
<< "\n";
371 textCtrl
<< "After 'Set' => " << v4
.Set() << "\n\n";
373 textCtrl
<< "Set to 11/26/66 => " << v4
.Set(11,26,1966) << "\n";
374 textCtrl
<< "Current Julian => " << v4
.GetJulianDate() << "\n";
375 textCtrl
<< "Set to Julian 2450000L => " << v4
.Set(2450000L) << "\n";
376 textCtrl
<< "See! => " << v4
.GetJulianDate() << "\n";
378 textCtrl
<< "---------- Add Stuff -----------\n";
379 textCtrl
<< "Start => " << v4
<< "\n";
380 textCtrl
<< "Add 4 Weeks => " << v4
.AddWeeks(4) << "\n";
381 textCtrl
<< "Sub 1 Month => " << v4
.AddMonths(-1) << "\n";
382 textCtrl
<< "Add 2 Years => " << v4
.AddYears(2) << "\n";
384 textCtrl
<< "---------- Misc Stuff -----------\n";
385 textCtrl
<< "The date aboves' day of the month is => " << v4
.GetDay() << "\n";
386 textCtrl
<< "There are " << v4
.GetDaysInMonth() << " days in this month.\n";
387 textCtrl
<< "The first day of this month lands on " << v4
.GetFirstDayOfMonth() << "\n";
388 textCtrl
<< "This day happens to be " << v4
.GetDayOfWeekName() << "\n";
389 textCtrl
<< "the " << v4
.GetDayOfWeek() << " day of the week," << "\n";
390 textCtrl
<< "on the " << v4
.GetWeekOfYear() << " week of the year," << "\n";
391 textCtrl
<< "on the " << v4
.GetWeekOfMonth() << " week of the month, " << "\n";
392 textCtrl
<< "(which is " << v4
.GetMonthName() << ")\n";
393 textCtrl
<< "the "<< v4
.GetMonth() << "th month in the year.\n";
394 textCtrl
<< "The year alone is " << v4
.GetYear() << "\n";
396 textCtrl
<< "---------- First and Last Stuff -----------\n";
398 textCtrl
<< "The first date of this month is " << v4
.GetMonthStart() << "\n";
399 textCtrl
<< "The last date of this month is " << v4
.GetMonthEnd() << "\n";
400 textCtrl
<< "The first date of this year is " << v4
.GetYearStart() << "\n";
401 textCtrl
<< "The last date of this year is " << v4
.GetYearEnd() << "\n";
404 void MyApp::DoVariantDemo(wxCommandEvent
& WXUNUSED(event
) )
406 wxTextCtrl
& textCtrl
= * GetTextCtrl();
408 wxVariant var1
= "String value";
409 textCtrl
<< "var1 = " << var1
.MakeString() << "\n";
412 wxString str
= var1
.MakeString();
415 textCtrl
<< "var1 = " << var1
.GetReal() << "\n";
417 // Implicit conversion
421 textCtrl
<< "var1 = " << var1
.GetLong() << "\n";
423 // Implicit conversion
426 wxStringList stringList
;
427 stringList
.Add(_T("one")); stringList
.Add(_T("two")); stringList
.Add(_T("three"));
429 textCtrl
<< "var1 = " << var1
.MakeString() << "\n";
432 var1
.Append(wxVariant(1.2345));
433 var1
.Append(wxVariant("hello"));
434 var1
.Append(wxVariant(54321L));
436 textCtrl
<< "var1 = " << var1
.MakeString() << "\n";
438 size_t n
= var1
.GetCount();
440 for (i
= (size_t) 0; i
< n
; i
++)
442 textCtrl
<< "var1[" << (int) i
<< "] (type " << var1
[i
].GetType() << ") = " << var1
[i
].MakeString() << "\n";
446 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
447 EVT_MENU(TYPES_QUIT
, MyFrame::OnQuit
)
448 EVT_MENU(TYPES_ABOUT
, MyFrame::OnAbout
)
451 // My frame constructor
452 MyFrame::MyFrame(wxFrame
*parent
, const wxString
& title
,
453 const wxPoint
& pos
, const wxSize
& size
):
454 wxFrame(parent
, -1, title
, pos
, size
)
457 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
) )
462 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
) )
464 wxMessageDialog
dialog(this, "Tests various wxWindows types",
465 "About Types", wxYES_NO
|wxCANCEL
);