]>
git.saurik.com Git - wxWidgets.git/blob - samples/typetest/typetest.h
ae37f643fb2d863d9e1333980c999ad29a705802
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Types wxWindows sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma interface "typetest.h"
16 #ifndef _WX_TYPETEST_H_
17 #define _WX_TYPETEST_H_
19 // Define a new application type
20 class MyApp
: public wxApp
25 void DoDateDemo(wxCommandEvent
& event
);
26 void DoTimeDemo(wxCommandEvent
& event
);
27 void DoVariantDemo(wxCommandEvent
& event
);
28 void DoByteOrderDemo(wxCommandEvent
& event
);
29 void DoStreamDemo(wxCommandEvent
& event
);
31 void DoUnicodeDemo(wxCommandEvent
& event
);
34 wxTextCtrl
* GetTextCtrl() const { return m_textCtrl
; }
37 wxTextCtrl
* m_textCtrl
;
39 DECLARE_DYNAMIC_CLASS(MyApp
)
45 // Define a new frame type
46 class MyFrame
: public wxFrame
49 MyFrame(wxFrame
*parent
, const wxString
& title
,
50 const wxPoint
& pos
, const wxSize
& size
);
53 void OnQuit(wxCommandEvent
& event
);
54 void OnAbout(wxCommandEvent
& event
);
60 // ID for the menu commands
61 #define TYPES_QUIT wxID_EXIT
62 #define TYPES_TEXT 101
63 #define TYPES_ABOUT 102
65 #define TYPES_DATE 103
66 #define TYPES_TIME 104
67 #define TYPES_VARIANT 105
68 #define TYPES_BYTEORDER 106
69 #define TYPES_UNICODE 107
70 #define TYPES_STREAM 108