#ifndef _CHAPTER_03_H_
#define _CHAPTER_03_H_

#include <wx/wx.h>

class MyApp : public wxApp 
{
public:
   virtual bool OnInit();
};

class MyFrame : public wxFrame
{
public:
   MyFrame(const wxString& title);
   void OnShow(wxCommandEvent& event);
   void OnExit(wxCommandEvent& event);
private:
    wxMenu *mnMenu;
    wxButton *btnShow;
    wxButton *btnExit;
    wxStaticText *lblShow;
    wxTextCtrl *tcText;
   DECLARE_EVENT_TABLE()
};

DECLARE_APP(MyApp)

#endif