]> git.saurik.com Git - wxWidgets.git/blame - samples/typetest/typetest.h
Small changed to wxExtDialog
[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
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
20class MyApp: public wxApp
21{
22public:
23 bool OnInit(void);
24
25 void DoDateDemo(wxCommandEvent& event);
26 void DoTimeDemo(wxCommandEvent& event);
27 void DoVariantDemo(wxCommandEvent& event);
7e2c43b8 28 void DoByteOrderDemo(wxCommandEvent& event);
38830220 29 void DoStreamDemo(wxCommandEvent& event);
dcf924a3
RR
30#if wxUSE_UNICODE
31 void DoUnicodeDemo(wxCommandEvent& event);
32#endif
cfb88c55
JS
33
34 wxTextCtrl* GetTextCtrl() const { return m_textCtrl; }
35
36private:
37 wxTextCtrl* m_textCtrl;
38
39DECLARE_DYNAMIC_CLASS(MyApp)
40DECLARE_EVENT_TABLE()
41};
42
43DECLARE_APP(MyApp)
44
45// Define a new frame type
46class MyFrame: public wxFrame
47{
48public:
49 MyFrame(wxFrame *parent, const wxString& title,
50 const wxPoint& pos, const wxSize& size);
51
52public:
53 void OnQuit(wxCommandEvent& event);
54 void OnAbout(wxCommandEvent& event);
cfb88c55
JS
55
56 DECLARE_EVENT_TABLE()
57
58};
59
60// ID for the menu commands
61#define TYPES_QUIT wxID_EXIT
62#define TYPES_TEXT 101
63#define TYPES_ABOUT 102
64
65#define TYPES_DATE 103
66#define TYPES_TIME 104
67#define TYPES_VARIANT 105
7e2c43b8 68#define TYPES_BYTEORDER 106
dcf924a3 69#define TYPES_UNICODE 107
38830220 70#define TYPES_STREAM 108
cfb88c55
JS
71
72#endif
73 // _WX_TYPETEST_H_
74