-
Notifications
You must be signed in to change notification settings - Fork 24
/
OrderSoftware.pas
180 lines (155 loc) · 4.57 KB
/
OrderSoftware.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
{
Copyright (C) 2006-2009 Matteo Salvi and Shannara
Website: http://www.salvadorsoftware.com/
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
}
unit OrderSoftware;
{$MODE Delphi}
interface
uses
Forms, StdCtrls, Buttons, ulCommonClasses, ComCtrls, ulEnumerations;
type
TfrmOrderSoftware = class(TForm)
lstStartUp: TListBox;
btnOk: TButton;
btnCancel: TButton;
pgcSoftwareOrder: TPageControl;
tsStartUp: TTabSheet;
tsShutdown: TTabSheet;
lstShutdown: TListBox;
btnUp: TBitBtn;
btnDown: TBitBtn;
procedure btnCancelClick(Sender: TObject);
procedure btnOkClick(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure bbtnUpClick(Sender: TObject);
procedure bbtnDownClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
FAutorunType: TAutorunType;
procedure PopulateLstAutoExe(ListBox: TListBox;AutorunItemList: TAutorunItemList);
procedure SaveInAutorunItemList(ListBox: TListBox;AutorunItemList: TAutorunItemList);
procedure MoveItemUp(ListBox: TListBox);
procedure MoveItemDown(ListBox: TListBox);
{ Private declarations }
public
property AutorunType: TAutorunType read FAutorunType write FAutorunType;
{ Public declarations }
end;
var
frmOrderSoftware : TfrmOrderSoftware;
implementation
uses
ulNodeDataTypes, ulTreeView;
{$R *.lfm}
procedure TfrmOrderSoftware.bbtnDownClick(Sender: TObject);
begin
case pgcSoftwareOrder.ActivePageIndex of
0:
MoveItemDown(lstStartUp);
1:
MoveItemDown(lstShutdown);
end;
end;
procedure TfrmOrderSoftware.bbtnUpClick(Sender: TObject);
begin
case pgcSoftwareOrder.ActivePageIndex of
0:
MoveItemUp(lstStartUp);
1:
MoveItemUp(lstShutdown);
end;
end;
procedure TfrmOrderSoftware.btnCancelClick(Sender: TObject);
begin
Close;
end;
procedure TfrmOrderSoftware.btnOkClick(Sender: TObject);
begin
//Save Startup and Shutdown lists
SaveInAutorunItemList(lstStartUp,ASuiteStartUpApp);
SaveInAutorunItemList(lstShutdown,ASuiteShutdownApp);
Close;
end;
procedure TfrmOrderSoftware.FormCreate(Sender: TObject);
begin
end;
procedure TfrmOrderSoftware.PopulateLstAutoExe(ListBox: TListBox;AutorunItemList: TAutorunItemList);
var
I: Integer;
NodeData: TvFileNodeData;
begin
ListBox.Items.BeginUpdate;
for I := 0 to AutorunItemList.Count - 1 do
begin
NodeData := AutorunItemList[I];
if Assigned(NodeData) then
ListBox.Items.AddObject(NodeData.Name, AutorunItemList[I]);
end;
ListBox.Items.EndUpdate;
end;
procedure TfrmOrderSoftware.SaveInAutorunItemList(ListBox: TListBox;AutorunItemList: TAutorunItemList);
var
I: Integer;
NodeData: TvFileNodeData;
begin
AutorunItemList.Clear;
for I := 0 to ListBox.Count - 1 do
begin
NodeData := TvFileNodeData(ListBox.Items.Objects[I]);
NodeData.AutorunPos := AutorunItemList.Add(NodeData);
NodeData.Changed := True;
end;
end;
procedure TfrmOrderSoftware.MoveItemUp(ListBox: TListBox);
var
CurrIndex: Integer;
begin
with ListBox do
begin
CurrIndex := ItemIndex;
if (CurrIndex <> (-1 and 0)) and (Count <> 0) then
begin
Items.Move(CurrIndex, CurrIndex - 1);
Selected[CurrIndex - 1] := True;
end;
end;
end;
procedure TfrmOrderSoftware.MoveItemDown(ListBox: TListBox);
var
CurrIndex: Integer;
begin
with ListBox do
begin
CurrIndex := ItemIndex;
if (CurrIndex <> (-1 and (Count - 1))) and (Count <> 0) then
begin
Items.Move(CurrIndex, CurrIndex + 1);
Selected[CurrIndex + 1] := True;
end;
end;
end;
procedure TfrmOrderSoftware.FormShow(Sender: TObject);
begin
//According as AutorunType, display StartUp or Shutdown page
case FAutorunType of
atAlwaysOnStart, atSingleInstance:
pgcSoftwareOrder.ActivePageIndex := 0;
atAlwaysOnClose:
pgcSoftwareOrder.ActivePageIndex := 1;
end;
//Populate lstStartUp and lstShutdown
PopulateLstAutoExe(lstStartUp,ASuiteStartUpApp);
PopulateLstAutoExe(lstShutdown,ASuiteShutdownApp);
end;
end.