Stream error testing.
[wxWidgets.git] / samples / typetest / typetest.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: typetest.h
3 // Purpose: Types wxWindows sample
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma interface "typetest.h"
14 #endif
15
16 #ifndef _WX_TYPETEST_H_
17 #define _WX_TYPETEST_H_
18
19 // Define a new application type
20 class MyApp: public wxApp
21 {
22 public:
23 MyApp() { m_textCtrl = NULL; m_mimeDatabase = NULL; }
24
25 bool OnInit();
26 int OnExit() { delete m_mimeDatabase; return wxApp::OnExit(); }
27
28 void DoDateDemo(wxCommandEvent& event);
29 void DoTimeDemo(wxCommandEvent& event);
30 void DoVariantDemo(wxCommandEvent& event);
31 void DoByteOrderDemo(wxCommandEvent& event);
32 void DoStreamDemo(wxCommandEvent& event);
33 void DoStreamDemo2(wxCommandEvent& event);
34 void DoStreamDemo3(wxCommandEvent& event);
35 #if wxUSE_UNICODE
36 void DoUnicodeDemo(wxCommandEvent& event);
37 #endif
38 void DoMIMEDemo(wxCommandEvent& event);
39
40 wxTextCtrl* GetTextCtrl() const { return m_textCtrl; }
41
42 private:
43 wxTextCtrl* m_textCtrl;
44 wxMimeTypesManager *m_mimeDatabase;
45
46 DECLARE_DYNAMIC_CLASS(MyApp)
47 DECLARE_EVENT_TABLE()
48 };
49
50 DECLARE_APP(MyApp)
51
52 // Define a new frame type
53 class MyFrame: public wxFrame
54 {
55 public:
56 MyFrame(wxFrame *parent, const wxString& title,
57 const wxPoint& pos, const wxSize& size);
58
59 public:
60 void OnQuit(wxCommandEvent& event);
61 void OnAbout(wxCommandEvent& event);
62
63 DECLARE_EVENT_TABLE()
64 };
65
66 // ID for the menu commands
67 enum
68 {
69 TYPES_QUIT = wxID_EXIT,
70 TYPES_TEXT = 101,
71 TYPES_ABOUT,
72
73 TYPES_DATE,
74 TYPES_TIME,
75 TYPES_VARIANT,
76 TYPES_BYTEORDER,
77 TYPES_UNICODE,
78 TYPES_STREAM,
79 TYPES_STREAM2,
80 TYPES_STREAM3,
81 TYPES_MIME
82 };
83
84 #endif
85 // _WX_TYPETEST_H_
86