-
Notifications
You must be signed in to change notification settings - Fork 1
/
C_Edit_IP.cpp
137 lines (109 loc) · 4.21 KB
/
C_Edit_IP.cpp
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
//////////////////////////////////////////////////////////////////////////////////
// [ Edit_Ip_Class_Source ]
//////////////////////////////////////////////////////////////////////////////////
#include "C_Edit_IP.hpp"
//////////////////////////////////////////////////////////////////////////////////
// [ Konstructor ]
//////////////////////////////////////////////////////////////////////////////////
C_Edit_IP::C_Edit_IP(){
for(int n = 0; n < 4; n++){
aEdit[n].set_max_length(3);
}
}
//////////////////////////////////////////////////////////////////////////////////
// [set_size]
//////////////////////////////////////////////////////////////////////////////////
void C_Edit_IP::setSize(int x, int y){
for(int n = 0; n < 4; n++){
aEdit[n].set_width_chars(x);
aEdit[n].set_size_request(-1, y);
}
}
//////////////////////////////////////////////////////////////////////////////////
// [clear]
//////////////////////////////////////////////////////////////////////////////////
void C_Edit_IP::clear(){
for(int n = 0; n < 4; n++) aEdit[n].set_text("");
}
//////////////////////////////////////////////////////////////////////////////////
// [setIP] (char*)
//////////////////////////////////////////////////////////////////////////////////
int C_Edit_IP::setIP(char* psV1, char* psV2, char* psV3, char* psV4){
if(!psV1 || !psV2 || !psV3 || !psV4) return(C_EDIT_IP_ERROR);
aEdit[0].set_text(psV1);
aEdit[1].set_text(psV2);
aEdit[2].set_text(psV3);
aEdit[3].set_text(psV4);
return(C_EDIT_IP_READY);
}
//////////////////////////////////////////////////////////////////////////////////
// [setIP] (UCHAR)
//////////////////////////////////////////////////////////////////////////////////
int C_Edit_IP::setIP(UCHAR ucV1, UCHAR ucV2, UCHAR ucV3, UCHAR ucV4){
ostringstream Str_1;
Str_1 << uppercase << setw(2) << setfill('0') << (int) ucV1;
aEdit[0].set_text(Str_1.str());
ostringstream Str_2;
Str_2 << uppercase << setw(2) << setfill('0') << (int) ucV2;
aEdit[1].set_text(Str_2.str());
ostringstream Str_3;
Str_3 << uppercase << setw(2) << setfill('0') << (int) ucV3;
aEdit[2].set_text(Str_3.str());
ostringstream Str_4;
Str_4 << uppercase << setw(2) << setfill('0') << (int) ucV4;
aEdit[3].set_text(Str_4.str());
return(C_EDIT_IP_READY);
}
//////////////////////////////////////////////////////////////////////////////////
// [setIP] (string)
//////////////////////////////////////////////////////////////////////////////////
int C_Edit_IP::setIP(const char* psData){
if(!psData) return(C_EDIT_IP_ERROR);
string strIP = psData;
size_t found1 = 0;
size_t found2 = 0;
int nt = 0;
string t[4];
while(1){
found1 = strIP.find(".", found2);
if(found1 != string::npos){
t[nt++] = strIP.substr(found2, found1 - found2);
}else{
t[nt] = strIP.substr(found2, strIP.size() - found2);
break;
}
found2 = found1 + 1;
}
setIP((char*)t[0].c_str(), (char*)t[1].c_str(), (char*)t[2].c_str(), (char*)t[3].c_str());
return(C_EDIT_IP_READY);
}
//////////////////////////////////////////////////////////////////////////////////
// [getIP] (char*)
//////////////////////////////////////////////////////////////////////////////////
int C_Edit_IP::getIP(string* psData){
Glib::ustring SEdit;
if(!psData) return(C_EDIT_IP_ERROR);
for(int i = 0; i < 4; i++){
SEdit.clear();
SEdit = aEdit[i].get_text();
*psData += SEdit;
if(i < 3) *psData += ".";
}
return(C_EDIT_IP_READY);
}
//////////////////////////////////////////////////////////////////////////////////
// [getIP] (UCHAR*)
//////////////////////////////////////////////////////////////////////////////////
int C_Edit_IP::getIP(UCHAR* pData){
Glib::ustring SEdit;
unsigned int dwData = 0;
if(!pData) return(C_EDIT_IP_ERROR);
for(int n = 0; n < 4; n++){
SEdit.clear();
SEdit = aEdit[n].get_text();
dwData = stoul(SEdit, nullptr, 0);
if(dwData > 255) return(C_EDIT_IP_ERROR);
pData[n] = (UCHAR)dwData;
}
return(C_EDIT_IP_READY);
}