forked from SirAlex/RemoteSignTool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfmMain.dfm
106 lines (106 loc) · 2.57 KB
/
fmMain.dfm
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
object MainForm: TMainForm
Left = 0
Top = 0
Caption = 'Remote SignTool Server'
ClientHeight = 444
ClientWidth = 653
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnClose = FormClose
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object pnTop: TPanel
Left = 0
Top = 0
Width = 653
Height = 177
Align = alTop
BevelEdges = [beBottom]
BevelOuter = bvNone
ParentBackground = False
TabOrder = 0
DesignSize = (
653
177)
object edSigntoolPath: TLabeledEdit
Left = 16
Top = 24
Width = 627
Height = 21
Anchors = [akLeft, akTop, akRight]
EditLabel.Width = 134
EditLabel.Height = 13
EditLabel.Caption = 'Path to original signtool.exe'
TabOrder = 0
Text = 'd:\proj.git\buildtools\signtool.exe'
end
object edHttpPort: TLabeledEdit
Left = 16
Top = 148
Width = 73
Height = 21
EditLabel.Width = 48
EditLabel.Height = 13
EditLabel.Caption = 'HTTP Port'
NumbersOnly = True
TabOrder = 1
Text = '8090'
end
object btStart: TButton
Left = 507
Top = 147
Width = 136
Height = 25
Anchors = [akTop, akRight]
Caption = 'Test and start server'
TabOrder = 2
OnClick = btStartClick
end
object edSigntoolCmdLine: TLabeledEdit
Left = 16
Top = 65
Width = 627
Height = 21
Anchors = [akLeft, akTop, akRight]
EditLabel.Width = 285
EditLabel.Height = 13
EditLabel.Caption = 'Default signtool parameters (if not overridden by client call)'
TabOrder = 3
Text = 'sign /sha1 "60BAFCCB504FD648AD39DD18550543BF6A652816" "%s"'
end
object edCross: TLabeledEdit
Left = 16
Top = 106
Width = 627
Height = 21
Anchors = [akLeft, akTop, akRight]
EditLabel.Width = 285
EditLabel.Height = 13
EditLabel.Caption = 'Corss certificate for Driver signing (path to file or file name)'
TabOrder = 4
Text = 'GlobalSign Root CA.crt'
end
end
object memLog: TMemo
Left = 0
Top = 177
Width = 653
Height = 267
Align = alClient
TabOrder = 1
end
object httpServ: TIdHTTPServer
Bindings = <>
DefaultPort = 8090
OnAfterBind = httpServAfterBind
OnCommandGet = httpServCommandGet
Left = 32
Top = 232
end
end