aboutsummaryrefslogtreecommitdiff
path: root/src/UpdateGUI.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/UpdateGUI.hpp')
-rw-r--r--src/UpdateGUI.hpp61
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