1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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
|