-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathC_App.hpp
103 lines (72 loc) · 2.37 KB
/
C_App.hpp
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
102
103
//////////////////////////////////////////////////////////////////////////////////
// [ APP_Class_Header ]
//////////////////////////////////////////////////////////////////////////////////
//
// DNS-PROXY ver:0.7
//
// [::Last modi: 21.01.18 L.ey (µ~)::]
//
//
#ifndef _C_APP_H_
#define _C_APP_H_
#include <iostream>
using namespace std;
#include <gtkmm/window.h>
#include <gtkmm/button.h>
#include <gtkmm/radiobutton.h>
#include <gtkmm/comboboxtext.h>
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/layout.h>
#include "C_TreeView.hpp"
#include "C_Edit_IP.hpp"
#include "C_Net.hpp"
#include "C_Result.hpp"
#include "C_Filterlist.hpp"
//////////////////////////////////////////////////////////////////////////////////
// CONSTANT
//////////////////////////////////////////////////////////////////////////////////
const int C_APP_ERROR = 0x00;
const int C_APP_READY = 0x01;
const char WLPATH[] = "whitelist.txt";
const char BLPATH[] = "blacklist.txt";
//////////////////////////////////////////////////////////////////////////////////
// STRUCT
//////////////////////////////////////////////////////////////////////////////////
struct SButton {
Gtk::Button start;
Gtk::Button stop;
Gtk::RadioButton whitelist;
Gtk::RadioButton blacklist;
Gtk::RadioButton nolist;
};
//////////////////////////////////////////////////////////////////////////////////
// CLASS
//////////////////////////////////////////////////////////////////////////////////
class C_App : public Gtk::Window {
public:
C_App(int argc, char *argv[]);
virtual ~C_App();
protected:
C_TreeView CTreeView;
//Child widgets:
Gtk::ComboBoxText m_IFCombo;
Gtk::Layout m_layout;
SButton sbutton;
C_Edit_IP EditIpD;
////////////////////////
Gtk::ScrolledWindow m_ScrolledWindow;
////////////////////////
//Signal handlers:
void on_button_start();
void on_button_stop();
bool on_configure_changed(GdkEventConfigure* configure_event);
////////////////////////
C_Net CNet;
C_Result CResult;
////////////////////////
C_Filterlist CBlacklist;
C_Filterlist CWhitelist;
////////////////////////
void help();
};
#endif // _C_APP_H_