-
Notifications
You must be signed in to change notification settings - Fork 0
/
CFG_APNO.CPP
162 lines (141 loc) · 3.99 KB
/
CFG_APNO.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
// cfg_apno.cpp : implementation file
// IDD_CFG_PRIVNODES
#include "stdafx.h"
#include "resource.h"
#include "structs.h"
#include "cfg_apno.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
static char DlgName[]="IDD_CFG_PRIVNODES";
cfg_apno::cfg_apno(CWnd* pParent /*=NULL*/)
: CSAPrefsSubDlg(cfg_apno::IDD, pParent)
{
//{{AFX_DATA_INIT(cfg_apno)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void cfg_apno::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(cfg_apno)
DDX_Control(pDX, IDC_LIST, m_list);
DDX_Control(pDX, IDC_DESCRIPTION, m_description);
DDX_Control(pDX, IDC_FIDO, m_fido);
DDX_Control(pDX, IDC_NAME, m_name);
DDX_Control(pDX, IDC_TELEPHONE_NUMBER, m_telephone_number);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(cfg_apno, CDialog)
//{{AFX_MSG_MAP(cfg_apno)
ON_BN_CLICKED(IDC_ADD, OnAdd)
ON_BN_CLICKED(IDC_DELETE, OnDelete)
ON_BN_CLICKED(IDC_CHANGE, OnChange)
ON_LBN_SELCHANGE(IDC_LIST, OnSelchangeList)
ON_WM_HELPINFO()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
// =====================================================================
LPCSTR cfg_apno::GetName(void) {return DlgName;}
// =====================================================================
// ================================================================
BOOL cfg_apno::OnInitDialog()
// ================================================================
{
CStrList lst;
int tabs[]={100,180,260,400,1900};
int lng[]={
IDC_ADD,
IDC_DELETE,
IDC_CHANGE,
IDC_STATIC3,
IDC_STATIC4,
IDC_STATIC2,
IDC_STATIC5
};
CDialog::OnInitDialog();
set_dlg_language(this,DlgName,lng,sizeof(lng)/sizeof(int));
TABULATE_LB(IDC_LIST);
EXTENT_LB(IDC_LIST,500);
lst.LoadFromFile("addnodes.cfg");
lst.Sort(0);
UPDATE_LB(lst,IDC_LIST);
return TRUE;
}
// ================================================================
void cfg_apno::OnAdd()
// ================================================================
{
CString adr,fido,telnr,desc,str;
m_name.GetWindowText(adr);
m_fido.GetWindowText(fido);
m_telephone_number.GetWindowText(telnr);
m_description.GetWindowText(desc);
str=adr+"\t"+fido+"\t"+telnr+"\t"+desc+"\t\t\t";
m_list.AddString(str);
}
// ================================================================
void cfg_apno::OnDelete()
// ================================================================
{
CString actual;
int sel;
GET_SELID(IDC_LIST);
m_list.DeleteString(sel);
SET_SELID(IDC_LIST,sel);
}
// ================================================================
void cfg_apno::OnOK()
// ================================================================
{
CStrList lst;
lst=m_list;
lst.SaveToFile("addnodes.cfg");
if(m_bCloseOnOk)
CDialog::OnOK();
}
// ================================================================
void cfg_apno::OnChange()
// ================================================================
{
CString adr,fido,telnr,desc,str;
int sel;
GET_SELID(IDC_LIST);
m_name.GetWindowText(adr);
m_fido.GetWindowText(fido);
m_telephone_number.GetWindowText(telnr);
m_description.GetWindowText(desc);
str=adr+"\t"+ fido+"\t"+telnr+"\t"+desc+"\t\t\t";
m_list.DeleteString(sel);
m_list.InsertString(sel,str);
SET_SELID(IDC_LIST,sel);
}
// ================================================================
void cfg_apno::OnSelchangeList()
// ================================================================
{
CString adr,fido,telnr,desc,str;
int sel;
GET_SELID(IDC_LIST);
m_list.GetText(sel,str);
get_token(str,0,adr);
get_token(str,1,fido);
get_token(str,2,telnr);
get_token(str,3,desc);
m_name.SetWindowText(adr);
m_fido.SetWindowText(fido);
m_telephone_number.SetWindowText(telnr);
m_description.SetWindowText(desc);
}
// ================================================================
void cfg_apno::OnHelp()
// ================================================================
{
WinHelp(VHELP_PRIVATE_NODES);
}
BOOL cfg_apno::OnHelpInfo(HELPINFO* pHelpInfo)
{
OnHelp();
return TRUE;
}