forked from kolod/modalarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FrmAlarmConfig.cs
296 lines (250 loc) · 10.2 KB
/
FrmAlarmConfig.cs
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/*
* Copyright 2017-2018 Alexandr Kolodkin <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
* Product : Rapid SCADA
* Module : ModAlarm
* Summary : Config form
*
* Author : Alexandr Kolodkin
* Created : 2017
* Modified : 2018
*/
using Scada.Client;
using Scada.UI;
using System;
using System.Linq;
using System.IO;
using System.Drawing;
using System.Windows.Forms;
using System.Collections.Generic;
namespace Scada.Server.Modules.Alarm
{
/// <summary>
/// Module configuration form
/// <para>Форма конфигурации</para>
/// </summary>
public partial class FrmAlarmConfig : Form
{
private AppDirs appDirs; // директории приложения
private ServerComm serverComm; // объект для обмена данными со SCADA-Сервером
private Config config; // конфигурация модуля
private Config configCopy; // копия конфигурации модуля для реализации отмены изменений
private bool modified; // признак изменения конфигурации
private bool changing; // происходит изменение значений элементов управления
private int lastChannel = 0; // последний добавленный канал
private string lastPath = ""; // последний добавленный аудиофайл
private string msgAlreadyExists; // сообщение "Данный канал уже исползуется. Именить его?"
private string msgWarning; // заголовок сообщения "Предупреждение"
/// <summary>
/// Конструктор, ограничивающий создание формы без параметров
/// </summary>
public FrmAlarmConfig()
{
InitializeComponent();
config = null;
configCopy = null;
modified = false;
changing = false;
}
/// <summary>
/// Получить или установить признак изменения конфигурации
/// </summary>
private bool Modified
{
get
{
return modified;
}
set
{
modified = value;
btnSave.Enabled = modified;
btnCancel.Enabled = modified;
}
}
/// <summary>
/// Отобразить форму модально
/// </summary>
public static void ShowDialog(AppDirs appDirs, ServerComm serverComm)
{
FrmAlarmConfig frmAlarmConfig = new FrmAlarmConfig();
frmAlarmConfig.appDirs = appDirs;
frmAlarmConfig.serverComm = serverComm;
frmAlarmConfig.ShowDialog();
}
/// <summary>
/// Сохранить конфигурацию модуля
/// </summary>
private bool SaveConfig()
{
if (Modified)
{
string errMsg;
if (config.Save(out errMsg))
{
Modified = false;
return true;
}
else
{
ScadaUiUtils.ShowError(errMsg);
return false;
}
}
else
{
return true;
}
}
/// <summary>
/// Отобразить конфигурацию
/// </summary>
private void ConfigToControls()
{
changing = true;
inputChannels.Items.Clear();
foreach (KeyValuePair<int, string> channel in config.channels)
{
ListViewItem item = new ListViewItem(channel.Key.ToString());
item.SubItems.Add(channel.Value);
inputChannels.Items.Add(item);
}
changing = false;
}
/// <summary>
/// Отобразить конфигурацию
/// </summary>
private void FrmAlarmConfig_Load(object sender, EventArgs e)
{
// локализация модуля
string errMsg;
if (!Localization.UseRussian)
{
if (Localization.LoadDictionaries(appDirs.LangDir, "ModAlarm", out errMsg))
{
Translator.TranslateForm(this, "Scada.Server.Modules.Alarm.FrmAlarmConfig");
inputChannels.Columns[0].Text = Localization.Dictionaries["Scada.Server.Modules.Alarm.FrmAlarmConfig"]
.GetPhrase("columnChannel", inputChannels.Columns[0].Text);
inputChannels.Columns[1].Text = Localization.Dictionaries["Scada.Server.Modules.Alarm.FrmAlarmConfig"]
.GetPhrase("columnSoundFile", inputChannels.Columns[0].Text);
msgAlreadyExists = Localization.Dictionaries["Scada.Server.Modules.Alarm.FrmAlarmConfig"]
.GetPhrase("msgAlreadyExists", "Данный канал уже исползуется. Изменить его?");
msgWarning = Localization.Dictionaries["Scada.Server.Modules.Alarm.FrmAlarmConfig"]
.GetPhrase("msgWarning", "Предупреждение");
}
else
ScadaUiUtils.ShowError(errMsg);
}
// загрузка конфигурации
config = new Config(appDirs.ConfigDir);
if (File.Exists(config.fileName) && !config.Load(out errMsg)) ScadaUiUtils.ShowError(errMsg);
// создание копии конфигурации
configCopy = config.Clone();
// отображение конфигурации
ConfigToControls();
// последний добавленный канал
lastChannel = config.channels.Last().Key;
lastPath = config.channels.Last().Value;
// снятие признака изменения конфигурации
Modified = false;
}
private void linkAuthor_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("mailto:[email protected]");
}
private void btnSave_Click(object sender, EventArgs e)
{
// сохранение конфигурации модуля
SaveConfig();
}
private void btnCancel_Click(object sender, EventArgs e)
{
// отмена изменений конфигурации
config = configCopy;
configCopy = config.Clone();
ConfigToControls();
Modified = false;
}
private void FrmAlarmConfig_FormClosing(object sender, FormClosingEventArgs e)
{
if (Modified)
{
DialogResult result = MessageBox.Show(ModPhrases.SaveModSettingsConfirm,
CommonPhrases.QuestionCaption, MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
switch (result)
{
case DialogResult.Yes:
if (!SaveConfig())
e.Cancel = true;
break;
case DialogResult.No:
break;
default:
e.Cancel = true;
break;
}
}
}
private void btnAdd_Click(object sender, EventArgs e)
{
if (!changing)
{
FrmAddAlarm dialog = new FrmAddAlarm(appDirs);
dialog.SoundFilePath = lastPath;
dialog.Channel = lastChannel + 1;
while (true) // цикл, пока не получим условие для выхода
{
if (dialog.ShowDialog() == DialogResult.OK)
{
if (config.channels.ContainsKey(dialog.Channel))
{
switch (MessageBox.Show(msgAlreadyExists, msgWarning, MessageBoxButtons.YesNoCancel))
{
case DialogResult.No:
continue;
case DialogResult.Cancel:
return;
case DialogResult.Yes:
config.channels.Remove(dialog.Channel);
break;
}
}
if (config.AddChannel(dialog.Channel, dialog.SoundFilePath))
{
lastPath = dialog.SoundFilePath;
lastChannel = dialog.Channel;
Modified = true;
ConfigToControls();
}
return;
}
}
}
}
private void btnRemove_Click(object sender, EventArgs e)
{
if (!changing)
{
foreach (ListViewItem item in inputChannels.SelectedItems)
{
config.channels.Remove(Convert.ToInt32(item.SubItems[0].Text));
inputChannels.Items.Remove(item);
Modified = true;
}
}
}
}
}