wxwidgets/samples/typetest/typetest.h
Vadim Zeitlin e43f913313 Remove all blank "Modified by:" lines from top comment blocks
Having this line is not useful at all as it doesn't contain any
information and shouldn't be filled in the future as git-shortlog can
provide the information about people who changed the given file more
more reliably than consulting the comments in any case.

Keep the non-blank lines for historical purposes.
2023-10-22 01:22:48 +02:00

84 lines
2 KiB
C++

/////////////////////////////////////////////////////////////////////////////
// Name: typetest.h
// Purpose: Types wxWidgets sample
// Author: Julian Smart
// Created: 04/01/98
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_TYPETEST_H_
#define _WX_TYPETEST_H_
// Define a new application type
class MyApp: public wxApp
{
public:
MyApp() { m_textCtrl = nullptr; m_mimeDatabase = nullptr; }
bool OnInit() override;
int OnExit() override { delete m_mimeDatabase; return wxApp::OnExit(); }
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);
void DoUnicodeDemo(wxCommandEvent& event);
void DoMIMEDemo(wxCommandEvent& event);
wxTextCtrl* GetTextCtrl() const { return m_textCtrl; }
private:
wxTextCtrl* m_textCtrl;
wxMimeTypesManager *m_mimeDatabase;
wxDECLARE_DYNAMIC_CLASS(MyApp);
wxDECLARE_EVENT_TABLE();
};
wxDECLARE_APP(MyApp);
// Define a new frame type
class MyFrame: public wxFrame
{
public:
MyFrame(wxFrame *parent, const wxString& title,
const wxPoint& pos, const wxSize& size);
public:
void OnQuit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
wxDECLARE_EVENT_TABLE();
};
// ID for the menu commands
enum
{
TYPES_QUIT = wxID_EXIT,
TYPES_TEXT = 101,
TYPES_ABOUT = wxID_ABOUT,
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
};
#endif
// _WX_TYPETEST_H_