-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIgnoreListUnit.pas
158 lines (133 loc) · 3.57 KB
/
IgnoreListUnit.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
unit IgnoreListUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, SpTBXItem, SpTBXControls, StdCtrls, CheckLst,
TntCheckLst, SpTBXEditors,Misc, StrUtils,MainUnit, TntStdCtrls;
type
TIgnoreListForm = class(TForm)
SpTBXTitleBar1: TSpTBXTitleBar;
EnableIgnoresCheckBox: TSpTBXCheckBox;
DoneButton: TSpTBXButton;
IgnoreListBox: TSpTBXListBox;
SpTBXLabel3: TSpTBXLabel;
procedure CreateParams(var Params: TCreateParams); override;
procedure DoneButtonClick(Sender: TObject);
procedure IgnoreListBoxKeyUp(Sender: TObject; var Key: Word;
Shift: TShiftState);
procedure FormCreate(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
procedure LoadIgnoreListFromFile(FileName: string);
function SetOfflineClientIsIgnored(userName: WideString; value: Boolean):Boolean;
end;
var
IgnoreListForm: TIgnoreListForm;
implementation
uses PreferencesFormUnit, gnugettext;
{$R *.dfm}
procedure TIgnoreListForm.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
if not Preferences.TaskbarButtons then Exit;
with Params do begin
ExStyle := ExStyle or WS_EX_APPWINDOW;
WndParent := GetDesktopWindow;
end;
end;
procedure TIgnoreListForm.LoadIgnoreListFromFile(FileName: string);
var
f: TextFile;
s: string;
checked: Boolean;
sl: TStringList;
begin
{$I+}
try
AssignFile(f, FileName);
Reset(f);
sl := TStringList.Create;
while not Eof(f) do
begin
Readln(f, s);
if s = '' then Continue;
checked := s[1] = #1;
s := Copy(s, 2, Length(s)-1);
sl.Delimiter := ' ';
sl.DelimitedText := s;
TClient.SetIsIgnored(StrToInt(sl[0]),checked);
end;
except
Exit;
end;
end;
function TIgnoreListForm.SetOfflineClientIsIgnored(userName: WideString; value: Boolean):Boolean;
var
sl: TStringList;
i: integer;
begin
Result := False;
try
sl := TStringList.Create;
ClientsDataIni.ReadSections(sl);
for i:=0 to sl.Count-1 do
begin
if LowerCase(userName) = LowerCase(TClient.GetLatestName(StrToInt(sl[i]))) then
begin
TClient.SetIsIgnored(StrToInt(sl[i]),value);
Result := True;
Exit;
end;
end;
except
MainForm.AddMainLog(_('Error: Corrupted clients data file.'),Colors.Error);
end;
end;
procedure TIgnoreListForm.DoneButtonClick(Sender: TObject);
begin
Preferences.UseIgnoreList := EnableIgnoresCheckBox.Checked;
Close;
end;
procedure TIgnoreListForm.IgnoreListBoxKeyUp(Sender: TObject;
var Key: Word; Shift: TShiftState);
var
client: TClient;
begin
if IgnoreListBox.ItemIndex = -1 then Exit;
if Key = VK_DELETE then
begin
client := MainForm.GetClient(IgnoreListBox.Items[IgnoreListBox.ItemIndex]);
if client <> nil then
client.isIgnored := False
else
SetOfflineClientIsIgnored(IgnoreListBox.Items[IgnoreListBox.ItemIndex],False);
IgnoreListBox.DeleteSelected;
end;
end;
procedure TIgnoreListForm.FormCreate(Sender: TObject);
begin
TranslateComponent(self);
end;
procedure TIgnoreListForm.FormShow(Sender: TObject);
var
sl: TStringList;
i: integer;
begin
IgnoreListBox.Clear;
sl := TStringList.Create;
try
ClientsDataIni.ReadSections(sl);
for i:=0 to sl.Count-1 do
begin
if TClient.GetIsIgnored(StrToInt(sl[i])) then
begin
IgnoreListBox.Items.Add(TClient.GetLatestName(StrToInt(sl[i])));
end;
end;
except
MainForm.AddMainLog(_('Error: Corrupted clients data file.'),Colors.Error);
end;
end;
end.