-
Notifications
You must be signed in to change notification settings - Fork 0
/
C_Edit_MAC.hpp
78 lines (52 loc) · 2.39 KB
/
C_Edit_MAC.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
//////////////////////////////////////////////////////////////////////////////////
// [ Edit_Mac_Class_Header ]
//////////////////////////////////////////////////////////////////////////////////
//
//
// [::Last modi: 28.03.21 L.ey (µ~)::]
//
//
#ifndef _C_EDIT_MAC_H_
#define _C_EDIT_MAC_H_
#include <iostream>
#include <sstream>
#include <string>
#include <iomanip>
using namespace std;
#include <gtkmm.h>
typedef unsigned char UCHAR;
//////////////////////////////////////////////////////////////////////////////////
const int C_EDIT_MAC_READY = 0x01;
const int C_EDIT_MAC_ERROR = 0x00;
//////////////////////////////////////////////////////////////////////////////////
class C_Edit_MAC {
public:
C_Edit_MAC();
~C_Edit_MAC(){};
//////////////////////////////////
void setSize(int x, int y);
void clear();
//////////////////////////////////
int setMAC(const char* psV1, const char* psV2, const char* psV3, const char* psV4, const char* psV5, const char* psV6);
int setMAC(UCHAR ucV1, UCHAR ucV2, UCHAR ucV3, UCHAR ucV4, UCHAR ucV5, UCHAR ucV6);
//////////////////////////////////
int getMAC(string* psData);
int getMAC(UCHAR* pData);
/////////////////////////////////
// INLINE
void hide(){aEdit[0].hide(); aEdit[1].hide(); aEdit[2].hide();
aEdit[3].hide(); aEdit[4].hide(); aEdit[5].hide();}
void show(){aEdit[0].show(); aEdit[1].show(); aEdit[2].show();
aEdit[3].show(); aEdit[4].show(); aEdit[5].show();}
void enable(){aEdit[0].set_sensitive(true); aEdit[1].set_sensitive(true); aEdit[2].set_sensitive(true);
aEdit[3].set_sensitive(true); aEdit[4].set_sensitive(true); aEdit[5].set_sensitive(true);};
void disable(){aEdit[0].set_sensitive(false); aEdit[1].set_sensitive(false); aEdit[2].set_sensitive(false);
aEdit[3].set_sensitive(false); aEdit[4].set_sensitive(false); aEdit[5].set_sensitive(false);};
/////////////////////////////////
Gtk::Entry aEdit[6];
Gtk::Box aBox;
protected:
int isHEX(const char* psData);
int hexToDec(const char* psData);
};
#endif // _C_EDIT_MAC_H_