forked from Alexey-T/CudaText
-
Notifications
You must be signed in to change notification settings - Fork 0
/
formlexerstylemap.lfm
143 lines (143 loc) · 3.43 KB
/
formlexerstylemap.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
object fmLexerStyleMap: TfmLexerStyleMap
Left = 328
Height = 518
Top = 162
Width = 704
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Lexer styles mapping'
ClientHeight = 518
ClientWidth = 704
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
Position = poMainFormCenter
ShowInTaskBar = stNever
LCLVersion = '1.9.0.0'
object ButtonPanel1: TButtonPanel
Left = 6
Height = 28
Top = 484
Width = 692
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 = 5
ShowButtons = [pbOK, pbCancel]
ShowBevel = False
end
object LabelLex: TLabel
Left = 7
Height = 14
Top = 4
Width = 84
Caption = 'Styles in lexer'
FocusControl = ListLex
ParentColor = False
end
object LabelTh: TLabel
AnchorSideLeft.Control = ListLex
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = LabelLex
Left = 310
Height = 14
Top = 4
Width = 94
BorderSpacing.Left = 6
Caption = 'Styles in theme'
FocusControl = ListTh
ParentColor = False
end
object ListLex: TListBox
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = LabelLex
AnchorSideTop.Side = asrBottom
AnchorSideBottom.Control = ButtonPanel1
Left = 6
Height = 457
Top = 21
Width = 298
Anchors = [akTop, akLeft, akBottom]
BorderSpacing.Left = 6
BorderSpacing.Top = 3
BorderSpacing.Bottom = 3
ItemHeight = 0
ScrollWidth = 296
TabOrder = 0
TopIndex = -1
end
object ListTh: TListBox
AnchorSideLeft.Control = ListLex
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = ListLex
AnchorSideRight.Control = btnSet
AnchorSideBottom.Control = ListLex
AnchorSideBottom.Side = asrBottom
Left = 310
Height = 457
Top = 21
Width = 232
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Left = 6
BorderSpacing.Right = 6
ItemHeight = 0
ScrollWidth = 230
TabOrder = 1
TopIndex = -1
end
object btnSet: TButton
AnchorSideTop.Control = ListTh
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 548
Height = 26
Top = 21
Width = 150
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 6
Caption = 'Assign selected'
Constraints.MinWidth = 150
OnClick = btnSetClick
TabOrder = 2
end
object btnSetNone: TButton
AnchorSideLeft.Control = btnSet
AnchorSideTop.Control = btnSet
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = btnSet
AnchorSideRight.Side = asrBottom
Left = 548
Height = 26
Top = 53
Width = 150
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Top = 6
Caption = 'Assign none'
OnClick = btnSetNoneClick
TabOrder = 3
end
object btnClear: TButton
AnchorSideLeft.Control = btnSet
AnchorSideTop.Control = btnSetNone
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = btnSet
AnchorSideRight.Side = asrBottom
Left = 548
Height = 26
Top = 85
Width = 150
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Top = 6
Caption = 'Unassign'
OnClick = btnClearClick
TabOrder = 4
end
end