source: trunk/Forms/FormSettings.lfm

Last change on this file was 221, checked in by chronos, 4 days ago
  • Fixed: Use scrollbox in resizable forms.
  • Fixed: Translate all forms.
File size: 3.0 KB
Line 
1object FormSettings: TFormSettings
2 Left = 798
3 Height = 487
4 Top = 367
5 Width = 654
6 Caption = 'Settings'
7 ClientHeight = 487
8 ClientWidth = 654
9 Constraints.MinHeight = 200
10 Constraints.MinWidth = 300
11 DesignTimePPI = 144
12 OnCreate = FormCreate
13 Position = poScreenCenter
14 LCLVersion = '3.6.0.0'
15 object ButtonOk: TButton
16 Left = 400
17 Height = 38
18 Top = 440
19 Width = 106
20 Anchors = [akRight, akBottom]
21 Caption = 'Ok'
22 ModalResult = 1
23 TabOrder = 1
24 end
25 object ButtonCancel: TButton
26 Left = 527
27 Height = 38
28 Top = 440
29 Width = 114
30 Anchors = [akRight, akBottom]
31 Caption = 'Cancel'
32 ModalResult = 2
33 TabOrder = 0
34 end
35 object ScrollBox1: TScrollBox
36 Left = 8
37 Height = 418
38 Top = 8
39 Width = 631
40 HorzScrollBar.Page = 432
41 VertScrollBar.Page = 359
42 Anchors = [akTop, akLeft, akRight, akBottom]
43 ClientHeight = 416
44 ClientWidth = 629
45 TabOrder = 2
46 object ComboBoxLanguage: TComboBox
47 Left = 182
48 Height = 42
49 Top = 29
50 Width = 250
51 ItemHeight = 0
52 Style = csDropDownList
53 TabOrder = 0
54 end
55 object Label1: TLabel
56 Left = 19
57 Height = 26
58 Top = 29
59 Width = 88
60 Caption = 'Language:'
61 ParentColor = False
62 end
63 object CheckBoxAlwaysOnTop: TCheckBox
64 Left = 19
65 Height = 30
66 Top = 77
67 Width = 145
68 Caption = 'Always on top'
69 TabOrder = 1
70 end
71 object CheckBoxStartOnLogon: TCheckBox
72 Left = 19
73 Height = 30
74 Top = 115
75 Width = 188
76 Caption = 'Start on user logon'
77 Color = clDefault
78 ParentColor = False
79 ParentFont = False
80 TabOrder = 2
81 OnChange = CheckBoxStartOnLogonChange
82 end
83 object CheckBoxStartMinimizedToTray: TCheckBox
84 Left = 58
85 Height = 30
86 Top = 154
87 Width = 218
88 Caption = 'Start minimized to tray'
89 TabOrder = 3
90 end
91 object CheckBoxAutomaticDPI: TCheckBox
92 Left = 19
93 Height = 30
94 Top = 230
95 Width = 148
96 Caption = 'Automatic DPI'
97 TabOrder = 4
98 Visible = False
99 OnChange = CheckBoxAutomaticDPIChange
100 end
101 object SpinEditDPI: TSpinEdit
102 Left = 113
103 Height = 43
104 Top = 266
105 Width = 116
106 MaxValue = 300
107 MinValue = 96
108 TabOrder = 5
109 Value = 96
110 Visible = False
111 end
112 object Label2: TLabel
113 Left = 55
114 Height = 26
115 Top = 266
116 Width = 35
117 Caption = 'DPI:'
118 ParentColor = False
119 Visible = False
120 end
121 object CheckBoxReopenLastFileOnStart: TCheckBox
122 Left = 19
123 Height = 30
124 Top = 192
125 Width = 226
126 Caption = 'Reopen last file on start'
127 TabOrder = 6
128 end
129 object Label3: TLabel
130 Left = 19
131 Height = 26
132 Top = 317
133 Width = 63
134 Caption = 'Theme:'
135 ParentColor = False
136 end
137 object ComboBoxTheme: TComboBox
138 Left = 182
139 Height = 42
140 Top = 317
141 Width = 250
142 ItemHeight = 0
143 Style = csDropDownList
144 TabOrder = 7
145 end
146 end
147end
Note: See TracBrowser for help on using the repository browser.