Wxwidgets graphics plugin
[lsnes.git] / platform / wxwidgets / src / authorseditor.hpp
blobe4424f3d2186428af023b228a2a5caa76ff551f0
1 #ifndef _wxwidgets_authorseditor__hpp__included__
2 #define _wxwidgets_authorseditor__hpp__included__
4 #include <wx/wx.h>
5 #include <wx/event.h>
6 #include <wx/control.h>
7 #include <wx/combobox.h>
9 class wx_authors_editor : public wxDialog
11 public:
12 wx_authors_editor(wxWindow* parent);
13 bool ShouldPreventAppExit() const;
14 void on_authors_change(wxCommandEvent& e);
15 void on_cancel(wxCommandEvent& e);
16 void on_ok(wxCommandEvent& e);
17 private:
18 wxTextCtrl* projectname;
19 wxTextCtrl* authors;
20 wxButton* okbutton;
21 wxButton* cancel;
24 #endif