forked from Alexey-T/CudaText
-
Notifications
You must be signed in to change notification settings - Fork 0
/
form_choose_theme.lfm
105 lines (105 loc) · 2.27 KB
/
form_choose_theme.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
103
104
105
object fmChooseTheme: TfmChooseTheme
Left = 862
Height = 580
Top = 158
Width = 504
BorderStyle = bsDialog
Caption = 'Themes'
ClientHeight = 580
ClientWidth = 504
OnCreate = FormCreate
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '2.1.0.0'
object GroupUI: TGroupBox
Left = 6
Height = 479
Top = 6
Width = 242
Align = alLeft
BorderSpacing.Left = 6
BorderSpacing.Top = 6
BorderSpacing.Bottom = 6
Caption = 'UI themes'
ClientHeight = 460
ClientWidth = 238
TabOrder = 0
object ListboxUI: TListBox
Left = 0
Height = 460
Top = 0
Width = 238
Align = alClient
ItemHeight = 0
OnClick = ListboxUIClick
ScrollWidth = 236
TabOrder = 0
TopIndex = -1
end
end
object GroupSyntax: TGroupBox
Left = 254
Height = 479
Top = 6
Width = 244
Align = alClient
BorderSpacing.Around = 6
Caption = 'Syntax themes'
ClientHeight = 460
ClientWidth = 240
TabOrder = 1
object ListboxSyntax: TListBox
Left = 0
Height = 460
Top = 0
Width = 240
Align = alClient
ItemHeight = 0
OnClick = ListboxSyntaxClick
ScrollWidth = 238
TabOrder = 0
TopIndex = -1
end
end
object ButtonPanel1: TButtonPanel
Left = 6
Height = 29
Top = 545
Width = 492
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 4
ShowButtons = [pbOK, pbCancel]
ShowBevel = False
end
object chkSync: TCheckBox
Left = 6
Height = 24
Top = 515
Width = 492
Align = alBottom
BorderSpacing.Left = 6
BorderSpacing.Right = 6
Caption = 'Synchronized change of UI+syntax themes'
OnChange = chkSyncChange
TabOrder = 3
end
object chkEnableLex: TCheckBox
Left = 6
Height = 24
Top = 491
Width = 492
Align = alBottom
BorderSpacing.Left = 6
BorderSpacing.Right = 6
Caption = 'Enable lexer themes (requires CudaText restart)'
OnChange = chkEnableLexChange
TabOrder = 2
end
end