diff options
author | toni <toni@pdp7.tq-net.de> | 2017-11-16 15:07:12 +0100 |
---|---|---|
committer | Toni Uhlig <Toni.Uhlig@tq-group.com> | 2017-11-27 15:36:43 +0100 |
commit | ef0f08a3d4d8eeb118592bc96480109d7b78e37b (patch) | |
tree | 8e57959487f08dd743b2728ab6fc0269b17cf4bd /src/UpdateGUI.hpp | |
parent | 91f979252aa3ce910b2a7a577f807a941b24a555 (diff) |
initial commit
Diffstat (limited to 'src/UpdateGUI.hpp')
-rw-r--r-- | src/UpdateGUI.hpp | 61 |
1 files changed, 61 insertions, 0 deletions
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 <string> +#include <wx/wxprec.h> + +#ifndef WX_PRECOMP +#include <wx/wx.h> +#endif + +#include <wx/richtext/richtextctrl.h> + +#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<int> threads; +}; + +#endif |