1998-05-20 14:21:00 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: nativdlg.h
|
|
|
|
// Purpose: Native Windows dialog sample
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 04/01/98
|
2003-03-17 11:55:54 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2010-07-13 13:29:13 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:21:00 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Define a new application
|
|
|
|
class MyApp: public wxApp
|
|
|
|
{
|
|
|
|
public:
|
2018-11-25 19:22:55 +00:00
|
|
|
MyApp(void){}
|
2018-09-21 17:46:49 +00:00
|
|
|
bool OnInit(void) wxOVERRIDE;
|
1998-05-20 14:21:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class MyFrame: public wxFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxWindow *panel;
|
|
|
|
MyFrame(wxWindow *parent, const wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size);
|
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
void OnTest1(wxCommandEvent& event);
|
|
|
|
|
2014-03-30 07:07:55 +00:00
|
|
|
wxDECLARE_EVENT_TABLE();
|
1998-05-20 14:21:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class MyDialog : public wxDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void OnOk(wxCommandEvent& event);
|
|
|
|
void OnCancel(wxCommandEvent& event);
|
|
|
|
|
2014-03-30 07:07:55 +00:00
|
|
|
wxDECLARE_EVENT_TABLE();
|
1998-05-20 14:21:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define RESOURCE_QUIT 4
|
|
|
|
#define RESOURCE_TEST1 2
|
|
|
|
|