-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOptionsDialog.cs
More file actions
164 lines (140 loc) · 4.74 KB
/
Copy pathOptionsDialog.cs
File metadata and controls
164 lines (140 loc) · 4.74 KB
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace YAHBackup
{
public partial class OptionsDialog : Form
{
public OptionsDialog()
{
InitializeComponent();
}
public void loadConfig(Config cfg)
{
lvMatchFiles.Clear();
foreach (String matchFileString in cfg.fileEndings)
{
lvMatchFiles.Items.Add(matchFileString);
}
lvExcludeFiles.Clear();
foreach (String fileToIgnore in cfg.filePatternsToIgnore)
{
lvExcludeFiles.Items.Add(fileToIgnore);
}
lvExcludeDirs.Clear();
foreach (String dirToIgnore in cfg.directoriesToIgnore)
{
lvExcludeDirs.Items.Add(dirToIgnore);
}
cbJustList.Checked = cfg.dryRun;
cbIncludeSubdirs.Checked = cfg.copySubDirectories;
cbVerbose.Checked = cfg.verboseMode;
}
public void updateConfigFromDialog(Config cfg)
{
cfg.fileEndings.Clear();
foreach (ListViewItem itmFileEnding in lvMatchFiles.Items)
{
cfg.fileEndings.Add(itmFileEnding.Text);
}
cfg.filePatternsToIgnore.Clear();
foreach (ListViewItem itmFileIgnore in lvExcludeFiles.Items)
{
cfg.filePatternsToIgnore.Add(itmFileIgnore.Text);
}
cfg.directoriesToIgnore.Clear();
foreach (ListViewItem itmDirToIgnore in lvExcludeDirs.Items)
{
cfg.directoriesToIgnore.Add(itmDirToIgnore.Text);
}
cfg.dryRun = cbJustList.Checked;
cfg.copySubDirectories = cbIncludeSubdirs.Checked;
cfg.verboseMode = cbVerbose.Checked;
}
private void btnResetDefault_Click(object sender, EventArgs e)
{
Config cfg = new Config();
loadConfig(cfg);
}
private void lvExcludeDirs_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void btnAddExcludeDirs_Click(object sender, EventArgs e)
{
using (var dialog = new FolderBrowserDialog())
{
dialog.Description = "Select a folder to exclude";
dialog.UseDescriptionForTitle = true;
if (dialog.ShowDialog() == DialogResult.OK)
{
// Get absolute/full path
string fullPath = Path.GetFullPath(dialog.SelectedPath);
lvExcludeDirs.Items.Add(fullPath);
}
}
}
private void btnRemoveExcludeDirs_Click(object sender, EventArgs e)
{
foreach (ListViewItem item in lvExcludeDirs.SelectedItems)
{
lvExcludeDirs.Items.Remove(item);
}
}
private void btnClearExcludeDirs_Click(object sender, EventArgs e)
{
lvExcludeDirs.Clear();
}
private void btnAddMatchFiles_Click(object sender, EventArgs e)
{
using (var dialog = new FilePatternDialog())
{
if (dialog.ShowDialog() == DialogResult.OK)
{
// Get pattern
string pattern = dialog.getFilePattern();
lvMatchFiles.Items.Add(pattern);
}
}
}
private void btnRemoveMatchFiles_Click(object sender, EventArgs e)
{
foreach (ListViewItem item in lvMatchFiles.SelectedItems)
{
lvMatchFiles.Items.Remove(item);
}
}
private void btnClearMatchFiles_Click(object sender, EventArgs e)
{
lvMatchFiles.Clear();
}
private void btnAddExcludeFiles_Click(object sender, EventArgs e)
{
using (var dialog = new FilePatternDialog())
{
if (dialog.ShowDialog() == DialogResult.OK)
{
// Get pattern
string pattern = dialog.getFilePattern();
lvExcludeFiles.Items.Add(pattern);
}
}
}
private void btnRemoveExcludeFiles_Click(object sender, EventArgs e)
{
foreach (ListViewItem item in lvExcludeFiles.SelectedItems)
{
lvExcludeFiles.Items.Remove(item);
}
}
private void btnClearExcludeFiles_Click(object sender, EventArgs e)
{
lvExcludeFiles.Clear();
}
}
}