aboutsummaryrefslogtreecommitdiff
path: root/src/UpdateGUI.hpp
blob: 26564ec1c3ffd46a3803cab587c53743e7cfe296 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#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 {
	/* UpdateGUIFrame */
	wxID_EDITOR = wxID_HIGHEST + 1,
	wxID_IP, wxID_PW, wxID_IMG,
	wxID_UPDATEFILE, wxID_IMPORTCSV, wxID_DOUPDATE,
	wxID_LICENSE,
	/* UpdateGUILicense */
	wxID_ACCEPT, wxID_DECLINE
};

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:
	/* log to GUI */
	void tLog(enum LogType type, const char *text, const char *ident=nullptr);
	void tLog(enum LogType type, std::string& text, const char *ident=nullptr);

	/* wxWidgets GUI/Thread events */
	void OnClose(wxCloseEvent& event);
	void OnExit(wxCommandEvent& event);
	void OnAbout(wxCommandEvent& event);
	void OnLicense(wxCommandEvent& event);
	void OnEditor(wxCommandEvent& event);
	void OnUpdateFile(wxCommandEvent& event);
	void OnImportCSV(wxCommandEvent& event);
	void OnUpdate(wxCommandEvent& event);
	void OnNavigationKey(wxNavigationKeyEvent& event);
	void OnThread(wxCommandEvent& event);

	/* overall job stats */
	size_t getTotalUpdates() { return this->totalUpdates; }
	size_t getSuccessUpdates() { return this->successUpdates; }

	wxDECLARE_EVENT_TABLE();

	/* GUI elements */
	wxBoxSizer *mainVSizer;
	wxStaticBoxSizer *ipBox, *pwBox, *imgBox, *subBox, *logBox;
	wxButton *imgButton, *subButton, *csvButton;
	wxTextCtrl *ipEntry, *pwEntry, *imgEntry, *logText;

	/** JobQueue */
	Queue *jobs;
	/** Thread list IDs */
	std::list<int> threads;

	/* stats */
	size_t totalUpdates = 0, successUpdates = 0;
};

bool isLicenseAlreadyAccepted();

class UpdateGUILicense: public wxFrame
{
public:
	UpdateGUILicense(wxWindow *parent, const wxString& title,
	                 const wxPoint& pos, const wxSize& size,
	                 bool showButtons = true);
	~UpdateGUILicense() {}
private:
	void OnClose(wxCloseEvent& event);
	void OnAccept(wxCommandEvent& event);
	void OnDecline(wxCommandEvent& event);

	wxDECLARE_EVENT_TABLE();

	wxBoxSizer *mainVSizer;
	wxStaticBoxSizer *licBox, *btnBox;
	wxButton *acceptButton, *declineButton;
	wxTextCtrl *licText;
};

#endif