-
Notifications
You must be signed in to change notification settings - Fork 0
/
BBSGRP.CPP
173 lines (147 loc) · 4.31 KB
/
BBSGRP.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
163
164
165
166
167
168
169
170
171
172
173
// bbsgrp.cpp : implementation file
// IDD_BBS_LEVELS
#include "stdafx.h"
#include "resource.h"
#include "structs.h"
#include "bbsgrp.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
static CStrList bbsgrps;
static char DlgName[]="IDD_BBS_LEVELS";
// ==================================================================
bbsgrp::bbsgrp(CWnd* pParent ) : CSAPrefsSubDlg(bbsgrp::IDD, pParent)
// ==================================================================
{
//{{AFX_DATA_INIT(bbsgrp)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
// ==================================================================
void bbsgrp::DoDataExchange(CDataExchange* pDX)
// ==================================================================
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(bbsgrp)
DDX_Control(pDX, IDC_LIST1, m_list);
DDX_Control(pDX, IDC_EDIT5, m_edit_time);
DDX_Control(pDX, IDC_EDIT2, m_edit_comment);
DDX_Control(pDX, IDC_EDIT1, m_edit_level);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(bbsgrp, CDialog)
//{{AFX_MSG_MAP(bbsgrp)
ON_BN_CLICKED(IDC_ADD, OnAdd)
ON_BN_CLICKED(IDC_DELETE, OnDelete)
ON_BN_CLICKED(IDC_CHANGE, OnChange)
ON_LBN_SELCHANGE(IDC_LIST1, OnSelchangeList1)
ON_WM_HELPINFO()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
// =====================================================================
LPCSTR bbsgrp::GetName(void) {return DlgName;}
// =====================================================================
// ==================================================================
BOOL bbsgrp::OnInitDialog()
// ==================================================================
{
int tabs[]={50,100,150};
int lng[]={
IDC_ADD,
IDC_CHANGE,
IDC_DELETE,
IDC_STATIC1,
IDC_STATIC2,
IDC_STATIC3,
IDC_STATIC4,
};
CDialog::OnInitDialog();
set_dlg_language(this,DlgName,lng,sizeof(lng)/sizeof(int));
m_list.SetTabStops((sizeof(tabs)/sizeof(int)),tabs);
bbsgrps.LoadFromFile("bbsgrps.cfg");
bbsgrps.Sort(0,1);
UPDATE_LB(bbsgrps,IDC_LIST1);
return TRUE;
}
// ==================================================================
int bbsgrp::MakeString(CString &erg)
// ==================================================================
{
CString level,time,comment;
int ti,le;
m_edit_time.GetWindowText(time);
m_edit_comment.GetWindowText(comment);
m_edit_level.GetWindowText(level);
le=atoi(level);
ti=atoi(time);
if (le==0 || ti==0)
ERR_MSG_RET0("E_GDCCON");
erg.Format("%d\t%d\t%s",le,ti,comment);
return 1;
}
// ==================================================================
void bbsgrp::OnAdd()
// ==================================================================
{
CString buf;
if (!MakeString(buf)) return;
bbsgrps.AddTail(buf);
UPDATE_LB(bbsgrps,IDC_LIST1);
}
// ==================================================================
void bbsgrp::OnDelete()
// ==================================================================
{
int sel;
GET_SELID(IDC_LIST1);
bbsgrps.Remove(sel);
UPDATE_LB(bbsgrps,IDC_LIST1);
}
// ==================================================================
void bbsgrp::OnChange()
// ==================================================================
{
CString buf;
int sel;
if (!MakeString(buf)) return;
GET_SELID(IDC_LIST1);
bbsgrps.Replace(sel,buf);
UPDATE_LB(bbsgrps,IDC_LIST1);
SET_SELID(IDC_LIST1,sel);
}
// ==================================================================
void bbsgrp::OnOK()
// ==================================================================
{
bbsgrps.SaveToFile("bbsgrps.cfg");
if(m_bCloseOnOk)
CDialog::OnOK();
}
// ==================================================================
void bbsgrp::OnSelchangeList1()
// ==================================================================
{
CString level,time,comment,help;
int sel;
GET_SELID(IDC_LIST1);
help=bbsgrps.GetString(sel);
get_token(help,0,level);
get_token(help,1,time);
get_token(help,2,comment);
m_edit_time.SetWindowText (time);
m_edit_comment.SetWindowText(comment);
m_edit_level.SetWindowText (level);
}
// ==================================================================
void bbsgrp::OnHelp()
// ==================================================================
{
WinHelp(VHELP_BBS_GROUPS);
}
BOOL bbsgrp::OnHelpInfo(HELPINFO* pHelpInfo)
{
OnHelp();
return TRUE;
}