X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1b055864b65201f8cf2c704a03da62bd91e7f497..97873d0c03107863184665f8c43711d20bb0349d:/samples/typetest/typetest.h diff --git a/samples/typetest/typetest.h b/samples/typetest/typetest.h index c7b9d15e0f..504ad26697 100644 --- a/samples/typetest/typetest.h +++ b/samples/typetest/typetest.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: typetest.h -// Purpose: Types wxWindows sample +// Purpose: Types wxWidgets sample // Author: Julian Smart // Modified by: // Created: 04/01/98 @@ -9,10 +9,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma interface "typetest.h" -#endif - #ifndef _WX_TYPETEST_H_ #define _WX_TYPETEST_H_ @@ -25,15 +21,18 @@ public: bool OnInit(); int OnExit() { delete m_mimeDatabase; return wxApp::OnExit(); } - void DoDateDemo(wxCommandEvent& event); - void DoTimeDemo(wxCommandEvent& event); void DoVariantDemo(wxCommandEvent& event); void DoByteOrderDemo(wxCommandEvent& event); void DoStreamDemo(wxCommandEvent& event); void DoStreamDemo2(wxCommandEvent& event); + void DoStreamDemo3(wxCommandEvent& event); + void DoStreamDemo4(wxCommandEvent& event); + void DoStreamDemo5(wxCommandEvent& event); + void DoStreamDemo6(wxCommandEvent& event); + void DoStreamDemo7(wxCommandEvent& event); #if wxUSE_UNICODE void DoUnicodeDemo(wxCommandEvent& event); -#endif +#endif // wxUSE_UNICODE void DoMIMEDemo(wxCommandEvent& event); wxTextCtrl* GetTextCtrl() const { return m_textCtrl; } @@ -67,15 +66,20 @@ enum { TYPES_QUIT = wxID_EXIT, TYPES_TEXT = 101, - TYPES_ABOUT, + TYPES_ABOUT = wxID_ABOUT, - TYPES_DATE, + TYPES_DATE = 102, TYPES_TIME, TYPES_VARIANT, TYPES_BYTEORDER, TYPES_UNICODE, TYPES_STREAM, TYPES_STREAM2, + TYPES_STREAM3, + TYPES_STREAM4, + TYPES_STREAM5, + TYPES_STREAM6, + TYPES_STREAM7, TYPES_MIME };