source: tags/1.4.0/Forms/UFormSettings.lfm

Last change on this file was 154, checked in by chronos, 7 years ago
  • Fixed: Settings dialog buttons position on form resize.
File size: 2.3 KB
Line 
1object FormSettings: TFormSettings
2 Left = 798
3 Height = 371
4 Top = 367
5 Width = 590
6 Caption = 'Settings'
7 ClientHeight = 371
8 ClientWidth = 590
9 Constraints.MinHeight = 328
10 Constraints.MinWidth = 389
11 OnCreate = FormCreate
12 OnShow = FormShow
13 Position = poScreenCenter
14 LCLVersion = '1.6.4.0'
15 object ComboBoxLanguage: TComboBox
16 Left = 152
17 Height = 28
18 Top = 24
19 Width = 208
20 ItemHeight = 20
21 Style = csDropDownList
22 TabOrder = 0
23 end
24 object Label1: TLabel
25 Left = 16
26 Height = 20
27 Top = 24
28 Width = 68
29 Caption = 'Language:'
30 ParentColor = False
31 end
32 object ButtonOk: TButton
33 Left = 506
34 Height = 25
35 Top = 326
36 Width = 75
37 Anchors = [akRight, akBottom]
38 Caption = 'Ok'
39 ModalResult = 1
40 OnClick = ButtonOkClick
41 TabOrder = 3
42 end
43 object ButtonCancel: TButton
44 Left = 410
45 Height = 25
46 Top = 326
47 Width = 75
48 Anchors = [akRight, akBottom]
49 Caption = 'Cancel'
50 ModalResult = 2
51 TabOrder = 2
52 end
53 object CheckBoxAlwaysOnTop: TCheckBox
54 Left = 16
55 Height = 24
56 Top = 64
57 Width = 118
58 Caption = 'Always on top'
59 TabOrder = 1
60 end
61 object CheckBoxStartOnLogon: TCheckBox
62 Left = 16
63 Height = 24
64 Top = 96
65 Width = 150
66 Caption = 'Start on user logon'
67 OnChange = CheckBoxStartOnLogonChange
68 TabOrder = 4
69 end
70 object CheckBoxStartMinimizedToTray: TCheckBox
71 Left = 48
72 Height = 24
73 Top = 128
74 Width = 176
75 Caption = 'Start minimized to tray'
76 TabOrder = 5
77 end
78 object CheckBoxAutomaticDPI: TCheckBox
79 Left = 16
80 Height = 24
81 Top = 192
82 Width = 120
83 Caption = 'Automatic DPI'
84 OnChange = CheckBoxAutomaticDPIChange
85 TabOrder = 6
86 Visible = False
87 end
88 object SpinEditDPI: TSpinEdit
89 Left = 94
90 Height = 28
91 Top = 222
92 Width = 97
93 MaxValue = 300
94 MinValue = 96
95 TabOrder = 7
96 Value = 96
97 Visible = False
98 end
99 object Label2: TLabel
100 Left = 46
101 Height = 20
102 Top = 222
103 Width = 26
104 Caption = 'DPI:'
105 ParentColor = False
106 Visible = False
107 end
108 object CheckBoxReopenLastFileOnStart: TCheckBox
109 Left = 16
110 Height = 24
111 Top = 160
112 Width = 181
113 Caption = 'Reopen last file on start'
114 TabOrder = 8
115 end
116 object Bevel1: TBevel
117 Left = 8
118 Height = 2
119 Top = 309
120 Width = 570
121 Anchors = [akLeft, akRight, akBottom]
122 end
123end
Note: See TracBrowser for help on using the repository browser.