]> git.saurik.com Git - wxWidgets.git/blame - samples/typetest/typetest.h
oops, wxGTK.spec missed clean section
[wxWidgets.git] / samples / typetest / typetest.h
CommitLineData
cfb88c55
JS
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
8e124873 9// Licence: wxWindows licence
cfb88c55
JS
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
20class MyApp: public wxApp
21{
22public:
8e124873
VZ
23 MyApp() { m_textCtrl = NULL; m_mimeDatabase = NULL; }
24
25 bool OnInit();
26 int OnExit() { delete m_mimeDatabase; return wxApp::OnExit(); }
cfb88c55 27
3409ae17 28#if wxUSE_TIMEDATE
cfb88c55 29 void DoDateDemo(wxCommandEvent& event);
3409ae17 30#endif // wxUSE_TIMEDATE
cfb88c55
JS
31 void DoTimeDemo(wxCommandEvent& event);
32 void DoVariantDemo(wxCommandEvent& event);
7e2c43b8 33 void DoByteOrderDemo(wxCommandEvent& event);
38830220 34 void DoStreamDemo(wxCommandEvent& event);
1b055864 35 void DoStreamDemo2(wxCommandEvent& event);
aa51b2e1 36 void DoStreamDemo3(wxCommandEvent& event);
2bf8e4eb 37 void DoStreamDemo4(wxCommandEvent& event);
f6bcfd97 38 void DoStreamDemo5(wxCommandEvent& event);
dcf924a3
RR
39#if wxUSE_UNICODE
40 void DoUnicodeDemo(wxCommandEvent& event);
3409ae17 41#endif // wxUSE_UNICODE
8e124873 42 void DoMIMEDemo(wxCommandEvent& event);
cfb88c55 43
8e124873 44 wxTextCtrl* GetTextCtrl() const { return m_textCtrl; }
cfb88c55
JS
45
46private:
8e124873
VZ
47 wxTextCtrl* m_textCtrl;
48 wxMimeTypesManager *m_mimeDatabase;
cfb88c55 49
8e124873
VZ
50 DECLARE_DYNAMIC_CLASS(MyApp)
51 DECLARE_EVENT_TABLE()
cfb88c55
JS
52};
53
54DECLARE_APP(MyApp)
55
56// Define a new frame type
57class MyFrame: public wxFrame
58{
59public:
60 MyFrame(wxFrame *parent, const wxString& title,
61 const wxPoint& pos, const wxSize& size);
8e124873 62
cfb88c55
JS
63public:
64 void OnQuit(wxCommandEvent& event);
65 void OnAbout(wxCommandEvent& event);
cfb88c55 66
8e124873 67 DECLARE_EVENT_TABLE()
cfb88c55
JS
68};
69
70// ID for the menu commands
8e124873
VZ
71enum
72{
73 TYPES_QUIT = wxID_EXIT,
74 TYPES_TEXT = 101,
75 TYPES_ABOUT,
76
77 TYPES_DATE,
78 TYPES_TIME,
79 TYPES_VARIANT,
80 TYPES_BYTEORDER,
81 TYPES_UNICODE,
82 TYPES_STREAM,
1b055864 83 TYPES_STREAM2,
aa51b2e1 84 TYPES_STREAM3,
2bf8e4eb 85 TYPES_STREAM4,
f6bcfd97 86 TYPES_STREAM5,
8e124873
VZ
87 TYPES_MIME
88};
cfb88c55
JS
89
90#endif
91 // _WX_TYPETEST_H_
92