Update Edit Process Mode Form

This commit is contained in:
ChsBuffer
2021-03-20 04:33:35 +08:00
parent e0b5b0e49c
commit 0b484face4
3 changed files with 95 additions and 149 deletions

View File

@@ -35,10 +35,24 @@ namespace Netch.Forms.Mode
_mode = mode;
}
/// <summary>
/// 是否被编辑过
/// </summary>
public bool Edited { get; private set; }
#region Model
public IEnumerable<string> Rules => RuleRichTextBox.Lines;
private void RuleAdd(string value)
{
RuleRichTextBox.AppendText($"{value}\n");
}
private void RuleAddRange(IEnumerable<string> value)
{
foreach (string s in value)
{
RuleAdd(s);
}
}
#endregion
public void ModeForm_Load(object sender, EventArgs e)
{
@@ -49,60 +63,10 @@ namespace Netch.Forms.Mode
RemarkTextBox.TextChanged -= RemarkTextBox_TextChanged;
RemarkTextBox.Text = _mode.Remark;
FilenameTextBox.Text = _mode.RelativePath;
RuleListBox.Items.AddRange(_mode.Rule.Cast<object>().ToArray());
RuleAddRange(_mode.Rule);
}
i18N.TranslateForm(this);
i18N.Translate(contextMenuStrip);
}
/// <summary>
/// listBox右键菜单
/// </summary>
private void RuleListBox_MouseUp(object sender, MouseEventArgs e)
{
RuleListBox.SelectedIndex = RuleListBox.IndexFromPoint(e.X, e.Y);
if (RuleListBox.SelectedIndex == -1)
return;
if (e.Button == MouseButtons.Right)
contextMenuStrip.Show(RuleListBox, e.Location);
}
private void deleteRule_Click(object sender, EventArgs e)
{
if (RuleListBox.SelectedIndex == -1)
return;
RuleListBox.Items.RemoveAt(RuleListBox.SelectedIndex);
Edited = true;
}
private async void AddButton_Click(object sender, EventArgs e)
{
await Task.Run(() =>
{
if (string.IsNullOrWhiteSpace(ProcessNameTextBox.Text))
{
MessageBoxX.Show(i18N.Translate("rule can not be empty"));
return;
}
if (!NFController.CheckCppRegex(ProcessNameTextBox.Text))
{
MessageBoxX.Show("Rule does not conform to C++ regular expression syntax");
return;
}
var process = ProcessNameTextBox.Text;
if (!RuleListBox.Items.Contains(process))
RuleListBox.Items.Add(process);
Edited = true;
RuleListBox.SelectedIndex = RuleListBox.Items.IndexOf(process);
ProcessNameTextBox.Text = string.Empty;
});
}
private void SelectButton_Click(object sender, EventArgs e)
@@ -130,14 +94,9 @@ namespace Netch.Forms.Mode
}
}
private void RuleAdd(string value)
{
RuleListBox.Items.Add(value);
}
public void ControlButton_Click(object sender, EventArgs e)
{
if (RuleListBox.Items.Count == 0)
if (!RuleRichTextBox.Lines.Any())
{
MessageBoxX.Show(i18N.Translate("Unable to add empty rule"));
return;
@@ -159,11 +118,10 @@ namespace Netch.Forms.Mode
{
_mode.Remark = RemarkTextBox.Text;
_mode.Rule.Clear();
_mode.Rule.AddRange(RuleListBox.Items.Cast<string>());
_mode.Rule.AddRange(RuleRichTextBox.Lines);
_mode.WriteFile();
Global.MainForm.LoadModes();
Edited = false;
MessageBoxX.Show(i18N.Translate("Mode updated successfully"));
}
else
@@ -183,7 +141,7 @@ namespace Netch.Forms.Mode
Remark = RemarkTextBox.Text
};
mode.Rule.AddRange(RuleListBox.Items.Cast<string>());
mode.Rule.AddRange(RuleRichTextBox.Lines);
mode.WriteFile();
ModeHelper.Add(mode);
@@ -230,7 +188,7 @@ namespace Netch.Forms.Mode
return;
}
RuleListBox.Items.AddRange(list.Cast<object>().ToArray());
RuleAddRange(list);
}
}
@@ -244,5 +202,14 @@ namespace Netch.Forms.Mode
if (maxCount != 0 && list.Count > maxCount)
throw new Exception("The number of filter results is greater than maxCount");
}
private void ValidationButton_Click(object sender, EventArgs e)
{
var result = NFController.CheckRuleMessageResult(Rules);
if (result != null)
MessageBoxX.Show(result, LogLevel.WARNING);
else
MessageBoxX.Show("Fine");
}
}
}