forked from pyscripter/pyscripter
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdlgConfigureTools.pas
194 lines (168 loc) · 4.98 KB
/
dlgConfigureTools.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
{-----------------------------------------------------------------------------
Unit Name: dlgConfigureTools
Author: Kiriakos Vlahos
Date: 03-Jun-2005
Purpose: Dialog for Configuring Tools
History:
-----------------------------------------------------------------------------}
unit dlgConfigureTools;
interface
uses
Types, SysUtils, Classes, Windows, Controls, Forms, StdCtrls,
SpTBXControls, SpTBXEditors, dlgPyIDEBase, SpTBXItem, Vcl.ExtCtrls;
type
TConfigureTools = class(TPyIDEDlgBase)
SpTBXPanel1: TSpTBXPanel;
AddBtn: TSpTBXButton;
RemoveBtn: TSpTBXButton;
ModifyBtn: TSpTBXButton;
OKBtn: TSpTBXButton;
CancelBtn: TSpTBXButton;
MoveUpBtn: TSpTBXButton;
MoveDownBtn: TSpTBXButton;
ToolsList: TSpTBXListBox;
procedure AddBtnClick(Sender: TObject);
procedure ModifyBtnClick(Sender: TObject);
procedure RemoveBtnClick(Sender: TObject);
procedure ToolsListClick(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure ToolsListDragDrop(Sender, Source: TObject; X, Y: Integer);
procedure ToolsListDragOver(Sender, Source: TObject; X, Y: Integer;
State: TDragState; var Accept: Boolean);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure MoveDownBtnClick(Sender: TObject);
procedure MoveUpBtnClick(Sender: TObject);
private
fTools : TCollection;
procedure CheckButtons;
procedure UpdateList;
end;
function ConfigureTools(Tools : TCollection): Boolean;
implementation
uses
JVBoxProcs, cTools, dlgToolProperties,
Math;
{$R *.dfm}
function ConfigureTools(Tools : TCollection): Boolean;
begin
Result := False;
if not Assigned(Tools) then Exit;
with TConfigureTools.Create(Application) do
try
fTools.Assign(Tools);
UpdateList;
Result := ShowModal = mrOK;
if Result and Assigned(Tools) then
Tools.Assign(fTools);
finally
Release;
end;
end;
//=== { TConfigureTools } =============================================
procedure TConfigureTools.CheckButtons;
begin
ModifyBtn.Enabled := (ToolsList.Items.Count > 0) and
(ToolsList.ItemIndex >= 0);
RemoveBtn.Enabled := ModifyBtn.Enabled;
MoveUpBtn.Enabled := ToolsList.ItemIndex > 0;
MoveDownBtn.Enabled := InRange(ToolsList.ItemIndex, 0, ToolsList.Count - 2);
end;
procedure TConfigureTools.AddBtnClick(Sender: TObject);
begin
if EditTool((fTools.Add as TToolItem).ExternalTool) then begin
UpdateList;
ToolsList.ItemIndex := ToolsList.Count - 1;
CheckButtons;
end else
fTools.Delete(fTools.Count - 1);
end;
procedure TConfigureTools.ModifyBtnClick(Sender: TObject);
Var
Index : integer;
begin
Index := ToolsList.ItemIndex;
if (Index >= 0) and EditTool((fTools.FindItemID(
Integer(ToolsList.Items.Objects[Index]))
as TToolItem).ExternalTool)
then begin
UpdateList;
ToolsList.ItemIndex := Index;
CheckButtons;
end;
end;
procedure TConfigureTools.RemoveBtnClick(Sender: TObject);
begin
if ToolsList.ItemIndex >= 0 then begin
fTools.Delete(fTools.FindItemID(
Integer(ToolsList.Items.Objects[ToolsList.ItemIndex])).Index);
UpdateList;
end;
end;
procedure TConfigureTools.ToolsListClick(Sender: TObject);
begin
CheckButtons;
end;
procedure TConfigureTools.FormShow(Sender: TObject);
begin
CheckButtons;
end;
procedure TConfigureTools.ToolsListDragDrop(Sender, Source: TObject;
X, Y: Integer);
begin
if ToolsList.ItemIndex >= 0 then begin
fTools.Items[ToolsList.ItemIndex].Index :=
ToolsList.ItemAtPos(Point(X, Y), True);
UpdateList;
end;
end;
procedure TConfigureTools.ToolsListDragOver(Sender, Source: TObject;
X, Y: Integer; State: TDragState; var Accept: Boolean);
begin
BoxDragOver(ToolsList, Source, X, Y, State, Accept, ToolsList.Sorted);
CheckButtons;
end;
procedure TConfigureTools.FormCreate(Sender: TObject);
begin
inherited;
fTools := TCollection.Create(TToolItem);
end;
procedure TConfigureTools.FormDestroy(Sender: TObject);
begin
fTools.Free;
end;
procedure TConfigureTools.UpdateList;
var
I: Integer;
begin
ToolsList.Clear;
for i := 0 to fTools.Count - 1 do
ToolsList.Items.AddObject(ftools.Items[i].DisplayName,
TObject(fTools.Items[i].ID));
CheckButtons;
end;
procedure TConfigureTools.MoveDownBtnClick(Sender: TObject);
Var
Index : integer;
begin
Index := ToolsList.ItemIndex;
if InRange(Index, 0, ToolsList.Count - 2) then begin
fTools.Items[Index].Index := fTools.Items[Index].Index + 1;
UpdateList;
ToolsList.ItemIndex := Index + 1;
CheckButtons;
end;
end;
procedure TConfigureTools.MoveUpBtnClick(Sender: TObject);
Var
Index : integer;
begin
Index := ToolsList.ItemIndex;
if Index > 0 then begin
fTools.Items[Index].Index := fTools.Items[Index].Index - 1;
UpdateList;
ToolsList.ItemIndex := Index - 1;
CheckButtons;
end;
end;
end.