forked from yavfast/dbg-spider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uSelectSource.pas
223 lines (186 loc) · 5.13 KB
/
uSelectSource.pas
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
unit uSelectSource;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, PlatformDefaultStyleActnCtrls, ActnMan, ActnList, ActnCtrls,
ToolWin, ComCtrls, RibbonSilverStyleActnCtrls, Grids, System.Actions,
Vcl.ExtCtrls, Vcl.StdCtrls, Vcl.Buttons;
type
TfmSelectSource = class(TForm)
alSelectSource: TActionList;
acmgrSelectSource: TActionManager;
acOk: TAction;
acCancel: TAction;
acAdd: TAction;
acRemove: TAction;
acEdit: TAction;
cbTop: TCoolBar;
actbTop: TActionToolBar;
sgSource: TStringGrid;
odSelectSource: TFileOpenDialog;
pActions: TPanel;
btnOk: TBitBtn;
btnCancel: TBitBtn;
acUp: TAction;
acDown: TAction;
procedure acOkExecute(Sender: TObject);
procedure acCancelExecute(Sender: TObject);
procedure acAddExecute(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure acRemoveExecute(Sender: TObject);
procedure acEditExecute(Sender: TObject);
procedure alSelectSourceUpdate(Action: TBasicAction; var Handled: Boolean);
procedure acUpExecute(Sender: TObject);
procedure acDownExecute(Sender: TObject);
private
FList: TStringList;
procedure AddSource(const FolderName: String);
procedure SetSourceList(const Value: String);
function GetSourceList: String;
procedure UpdateView;
public
property SourceList: String read GetSourceList write SetSourceList;
end;
function SelectSource(const SourceList: String): String;
var
fmSelectSource: TfmSelectSource;
implementation
uses
uShareData;
{$R *.dfm}
function SelectSource(const SourceList: String): String;
var
F: TfmSelectSource;
begin
Result := SourceList;
Application.CreateForm(TfmSelectSource, F);
try
F.SourceList := SourceList;
if F.ShowModal = mrOk then
Result := F.SourceList;
finally
F.Release;
end;
end;
procedure TfmSelectSource.acAddExecute(Sender: TObject);
begin
if odSelectSource.Execute then
AddSource(odSelectSource.FileName);
end;
procedure TfmSelectSource.acCancelExecute(Sender: TObject);
begin
ModalResult := mrCancel;
end;
procedure TfmSelectSource.acDownExecute(Sender: TObject);
var
Str: String;
begin
if sgSource.Row < sgSource.RowCount then
begin
Str := FList.Strings[sgSource.Row];
FList.Strings[sgSource.Row] := FList.Strings[sgSource.Row + 1];
FList.Strings[sgSource.Row + 1] := Str;
sgSource.Row := sgSource.Row + 1;
UpdateView;
end;
end;
procedure TfmSelectSource.acEditExecute(Sender: TObject);
var
CurSource: String;
begin
if FList.Count = 0 then Exit;
CurSource := '';
if sgSource.Row >= 0 then
begin
if FList.Count > sgSource.Row then
begin
CurSource := FList.Strings[sgSource.Row];
odSelectSource.DefaultFolder := CurSource;
odSelectSource.FileName := '';
end;
if odSelectSource.Execute then
begin
FList.Strings[sgSource.Row] := odSelectSource.FileName;
UpdateView;
end;
end;
end;
procedure TfmSelectSource.acOkExecute(Sender: TObject);
begin
ModalResult := mrOk;
end;
procedure TfmSelectSource.acRemoveExecute(Sender: TObject);
begin
if sgSource.Row >= 0 then
begin
if FList.Count > 0 then
FList.Delete(sgSource.Row);
UpdateView;
end;
end;
procedure TfmSelectSource.acUpExecute(Sender: TObject);
var
Str: String;
begin
if sgSource.Row > 0 then
begin
Str := FList.Strings[sgSource.Row];
FList.Strings[sgSource.Row] := FList.Strings[sgSource.Row - 1];
FList.Strings[sgSource.Row - 1] := Str;
sgSource.Row := sgSource.Row - 1;
UpdateView;
end;
end;
procedure TfmSelectSource.AddSource(const FolderName: String);
begin
if FList.IndexOf(FolderName) < 0 then
begin
FList.Add(FolderName);
UpdateView;
end;
end;
procedure TfmSelectSource.alSelectSourceUpdate(Action: TBasicAction;
var Handled: Boolean);
begin
acEdit.Enabled := FList.Count > 0;
acRemove.Enabled := acEdit.Enabled;
acUp.Enabled := (sgSource.Row - 1) >= 0;
acDown.Enabled := (sgSource.Row + 1) < sgSource.RowCount;
end;
procedure TfmSelectSource.FormCreate(Sender: TObject);
begin
actbTop.ParentBackground := True;
FList := TStringList.Create;
FList.Duplicates := dupIgnore;
FList.Delimiter := ';';
FList.StrictDelimiter := True;
end;
procedure TfmSelectSource.FormDestroy(Sender: TObject);
begin
FreeAndNil(FList);
end;
function TfmSelectSource.GetSourceList: String;
begin
Result := FList.DelimitedText;
end;
procedure TfmSelectSource.SetSourceList(const Value: String);
begin
FList.DelimitedText := Value;
UpdateView;
end;
procedure TfmSelectSource.UpdateView;
var
I: Integer;
CurRow: Integer;
begin
CurRow := sgSource.Row;
sgSource.RowCount := 1;
sgSource.Cells[0, 0] := '';
sgSource.RowCount := FList.Count;
for I := 0 to FList.Count - 1 do
sgSource.Cells[0, I] := FList.Strings[I];
if CurRow < FList.Count then
sgSource.Row := CurRow;
end;
end.