-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathUFrmSettings.dfm
114 lines (114 loc) · 2.03 KB
/
UFrmSettings.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
107
108
109
110
111
112
113
114
object FrmSettings: TFrmSettings
Left = 0
Top = 0
BorderStyle = bsDialog
Caption = 'Settings'
ClientHeight = 162
ClientWidth = 457
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object LbGridZoom: TLabel
Left = 16
Top = 51
Width = 153
Height = 13
Alignment = taRightJustify
AutoSize = False
Caption = 'Grid zoom:'
end
object LbLogFontSize: TLabel
Left = 16
Top = 83
Width = 153
Height = 13
Alignment = taRightJustify
AutoSize = False
Caption = 'Log font size:'
end
object Bevel1: TBevel
Left = 16
Top = 120
Width = 425
Height = 9
Shape = bsTopLine
end
object CkSounds: TCheckBox
Left = 16
Top = 16
Width = 97
Height = 17
Caption = 'Enable Sounds'
TabOrder = 0
end
object BtnOK: TButton
Left = 144
Top = 128
Width = 81
Height = 25
Caption = 'OK'
Default = True
TabOrder = 5
OnClick = BtnOKClick
end
object BtnCancel: TButton
Left = 232
Top = 128
Width = 81
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 6
end
object EdGridZoom: TEdit
Left = 176
Top = 48
Width = 49
Height = 21
Alignment = taRightJustify
NumbersOnly = True
TabOrder = 1
Text = '100'
end
object BtnZoom: TUpDown
Left = 225
Top = 48
Width = 16
Height = 21
Associate = EdGridZoom
Min = 50
Max = 200
Position = 100
TabOrder = 2
end
object EdLogFontSize: TEdit
Left = 176
Top = 80
Width = 49
Height = 21
Alignment = taRightJustify
NumbersOnly = True
TabOrder = 3
Text = '10'
end
object BtnLogFontSize: TUpDown
Left = 225
Top = 80
Width = 16
Height = 21
Associate = EdLogFontSize
Min = 7
Max = 20
Position = 10
TabOrder = 4
end
end