From ef0f08a3d4d8eeb118592bc96480109d7b78e37b Mon Sep 17 00:00:00 2001 From: toni Date: Thu, 16 Nov 2017 15:07:12 +0100 Subject: initial commit --- src/UpdateGUI.hpp | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/UpdateGUI.hpp (limited to 'src/UpdateGUI.hpp') diff --git a/src/UpdateGUI.hpp b/src/UpdateGUI.hpp new file mode 100644 index 0000000..bba0799 --- /dev/null +++ b/src/UpdateGUI.hpp @@ -0,0 +1,61 @@ +#ifndef UPDATEGUI_H +#define UPDATEGUI_H 1 + +#include +#include + +#ifndef WX_PRECOMP +#include +#endif + +#include + +#include "UpdateFactory.hpp" +#include "JobQueue.hpp" + + +enum LogType { RTL_DEFAULT, RTL_GREEN, RTL_RED }; +enum { + wxID_EDITOR = wxID_HIGHEST + 1, + wxID_IP, wxID_PW, wxID_IMG, + wxID_UPDATEFILE, wxID_IMPORTCSV, wxID_DOUPDATE +}; + +class UpdateGUI : public wxApp +{ +public: + virtual bool OnInit(); +}; + +class UpdateGUIFrame: public wxFrame +{ +public: + UpdateGUIFrame(const wxString& title, const wxPoint& pos, const wxSize& size); + ~UpdateGUIFrame() {} +protected: + UpdateFactory uf; +private: + void tLog(enum LogType type, const char *text, const char *ident=nullptr); + void tLog(enum LogType type, std::string& text, const char *ident=nullptr); + + void OnClose(wxCloseEvent& event); + void OnExit(wxCommandEvent& event); + void OnAbout(wxCommandEvent& event); + void OnEditor(wxCommandEvent& event); + void OnUpdateFile(wxCommandEvent& event); + void OnImportCSV(wxCommandEvent& event); + void OnUpdate(wxCommandEvent& event); + void OnThread(wxCommandEvent& event); + + wxDECLARE_EVENT_TABLE(); + + wxBoxSizer *mainVSizer; + wxStaticBoxSizer *ipBox, *pwBox, *imgBox, *subBox, *logBox; + wxButton *imgButton, *subButton, *csvButton; + wxTextCtrl *ipEntry, *pwEntry, *imgEntry, *logText; + + Queue *jobs; + std::list threads; +}; + +#endif -- cgit v1.2.3