-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfigformunit.pas
93 lines (74 loc) · 2.17 KB
/
configformunit.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
{$I PLUGIN_DEFINES.INC}
unit configformunit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, TntStdCtrls, Buttons, TntButtons, ExtCtrls;
type
TConfigForm = class(TForm)
OKButton: TButton;
CancelButton: TButton;
QBittorrentGB: TTntGroupBox;
LabelQBitPort: TTntLabel;
OPQBitTorrentEnabled: TTntCheckBox;
OPqBitTorrentPort: TTntEdit;
LabelQbitDLFolder: TTntLabel;
OPQBitTorrentDLFolder: TTntEdit;
LabelQbitDLSpeed: TTntLabel;
OPQBitTorrentDLSpeed: TTntEdit;
LabelQbitULSpeed: TTntLabel;
OPQBitTorrentULSpeed: TTntEdit;
MediaReadyGB: TTntGroupBox;
OPqBitTorrentDLStart: TTntEdit;
LabelDLStart: TTntLabel;
LabelPctStart: TTntLabel;
OPqBitTorrentDLEnd: TTntEdit;
LabelDLEnd: TTntLabel;
LabelPctEnd: TTntLabel;
ShapeNotRunning: TShape;
LabelNotRunning: TTntLabel;
OPQBitTorrentSkipFiles: TTntCheckBox;
OPQBitTorrentSkipDND: TTntCheckBox;
procedure FormKeyPress(Sender: TObject; var Key: Char);
procedure FormCreate(Sender: TObject);
procedure FormActivate(Sender: TObject);
procedure OPqBitTorrentPortKeyPress(Sender: TObject; var Key: Char);
procedure OPqBitTorrentDLStartKeyPress(Sender: TObject; var Key: Char);
private
{ Private declarations }
public
{ Public declarations }
FormAfterActivate : Boolean;
end;
var
ConfigForm: TConfigForm = nil;
implementation
{$R *.dfm}
uses shellapi;
procedure TConfigForm.FormKeyPress(Sender: TObject; var Key: Char);
begin
If Key = #27 then
Begin
Key := #0;
Close;
End;
end;
procedure TConfigForm.FormCreate(Sender: TObject);
begin
FormAfterActivate := False;
end;
procedure TConfigForm.FormActivate(Sender: TObject);
begin
FormAfterActivate := True;
end;
procedure TConfigForm.OPqBitTorrentPortKeyPress(Sender: TObject;
var Key: Char);
begin
If Key in [#8,'0'..'9'] = False then Key := #0;
end;
procedure TConfigForm.OPqBitTorrentDLStartKeyPress(Sender: TObject;
var Key: Char);
begin
If Key in [#8,',','.','0'..'9'] = False then Key := #0;
end;
end.