-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFConfig.lfm
102 lines (102 loc) · 1.9 KB
/
FConfig.lfm
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
object FormConfig: TFormConfig
Left = 423
Height = 194
Top = 191
Width = 480
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Code::Stats'
ClientHeight = 194
ClientWidth = 480
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '2.0.10.0'
object BtOK: TButton
Left = 312
Height = 28
Top = 157
Width = 75
Caption = 'OK'
Default = True
ModalResult = 1
OnClick = BtOKClick
TabOrder = 2
end
object BtCancel: TButton
Left = 397
Height = 28
Top = 157
Width = 75
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
object GbFields: TGroupBox
Left = 8
Height = 137
Top = 8
Width = 464
ClientHeight = 117
ClientWidth = 460
TabOrder = 1
object Label1: TLabel
Left = 8
Height = 15
Top = 16
Width = 51
Caption = 'API token'
ParentColor = False
end
object Label2: TLabel
Left = 8
Height = 15
Top = 56
Width = 42
Caption = 'API URL'
ParentColor = False
end
object EdApiToken: TEdit
Left = 80
Height = 23
Top = 8
Width = 374
TabOrder = 0
end
object EdApiUrl: TEdit
Left = 80
Height = 23
Top = 48
Width = 374
TabOrder = 1
Text = 'https://codestats.net/api/my/pulses'
end
object CkShowMessages: TCheckBox
Left = 8
Height = 19
Top = 88
Width = 229
Caption = 'Show information in Messages Window'
TabOrder = 2
end
end
object PanelEnable: TPanel
Left = 14
Height = 23
Top = 5
Width = 156
BevelOuter = bvNone
ClientHeight = 23
ClientWidth = 156
TabOrder = 0
object CkEnable: TCheckBox
Left = 2
Height = 19
Top = 0
Width = 117
Caption = 'Enable Code::Stats'
OnClick = CkEnableClick
TabOrder = 0
end
end
end