IDE: fixed layout of lazdocform (bug #9525 en 9526) from Darius

git-svn-id: trunk@11910 -
This commit is contained in:
vincents 2007-09-02 07:29:28 +00:00
parent 658e9a848c
commit 73a446cb23
2 changed files with 243 additions and 210 deletions

View File

@ -5,9 +5,10 @@ object LazDocForm: TLazDocForm
Width = 753
HorzScrollBar.Page = 752
VertScrollBar.Page = 116
ActiveControl = InheritedShortEdit
BorderStyle = bsSizeToolWin
ActiveControl = ShortEdit
Caption = 'LazDoc editor'
ClientHeight = 117
ClientWidth = 753
OnCreate = FormCreate
OnDestroy = FormDestroy
OnResize = FormResize
@ -15,16 +16,18 @@ object LazDocForm: TLazDocForm
Left = 17
Height = 117
Width = 736
ActivePage = ShortTabSheet
ActivePage = InheritedTabSheet
Align = alClient
TabIndex = 0
TabIndex = 5
TabOrder = 0
TabPosition = tpBottom
object ShortTabSheet: TTabSheet
Caption = 'ShortTabSheet'
ClientHeight = 91
ClientWidth = 728
object ShortEdit: TEdit
Height = 23
Width = 730
Width = 726
Align = alTop
BorderSpacing.Right = 2
OnEditingDone = DocumentationTagChange
@ -34,9 +37,11 @@ object LazDocForm: TLazDocForm
end
object DescrTabSheet: TTabSheet
Caption = 'DescrTabSheet'
ClientHeight = 91
ClientWidth = 728
object DescrMemo: TMemo
Height = 83
Width = 730
Height = 87
Width = 726
Align = alClient
BorderSpacing.Right = 2
BorderSpacing.Bottom = 4
@ -49,9 +54,11 @@ object LazDocForm: TLazDocForm
end
object ErrorsTabSheet: TTabSheet
Caption = 'ErrorsTabSheet'
ClientHeight = 91
ClientWidth = 728
object ErrorsMemo: TMemo
Height = 83
Width = 730
Height = 87
Width = 726
Align = alClient
BorderSpacing.Right = 2
BorderSpacing.Bottom = 4
@ -64,23 +71,27 @@ object LazDocForm: TLazDocForm
end
object SeeAlsoTabSheet: TTabSheet
Caption = 'SeeAlsoTabSheet'
ClientHeight = 91
ClientWidth = 728
object LinkListBox: TListBox
Height = 56
Top = 27
Width = 730
AnchorSideTop.Control = AddLinkButton
AnchorSideTop.Side = asrBottom
Height = 58
Top = 29
Width = 726
Align = alBottom
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Top = 4
BorderSpacing.Right = 2
BorderSpacing.Bottom = 4
OnClick = LinkListBoxClick
TabOrder = 0
TopIndex = -1
end
object AddLinkButton: TButton
AnchorSideRight.Control = DeleteLinkButton
Left = 521
Height = 26
Width = 95
Left = 512
Height = 25
Width = 98
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 6
@ -90,11 +101,14 @@ object LazDocForm: TLazDocForm
TabOrder = 1
end
object DeleteLinkButton: TButton
Left = 622
Height = 26
Width = 108
AnchorSideRight.Control = SeeAlsoTabSheet
AnchorSideRight.Side = asrBottom
Left = 616
Height = 25
Width = 110
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 2
BorderSpacing.InnerBorder = 4
Caption = 'DeleteLinkButton'
OnClick = DeleteLinkButtonClick
@ -107,7 +121,7 @@ object LazDocForm: TLazDocForm
Left = 229
Height = 21
Top = 1
Width = 288
Width = 279
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 4
BorderSpacing.Right = 4
@ -120,6 +134,7 @@ object LazDocForm: TLazDocForm
Top = 1
Width = 225
AutoCompleteText = [cbactEndOfLineComplete, cbactSearchAscending]
ItemHeight = 13
MaxLength = 0
OnChange = LinkChange
TabOrder = 4
@ -128,9 +143,11 @@ object LazDocForm: TLazDocForm
end
object ExampleTabSheet: TTabSheet
Caption = 'ExampleTabSheet'
ClientHeight = 91
ClientWidth = 728
object ExampleEdit: TEdit
Height = 23
Width = 730
Width = 726
Align = alTop
BorderSpacing.Right = 2
OnChange = DocumentationTagChange
@ -138,12 +155,15 @@ object LazDocForm: TLazDocForm
Text = 'ExampleEdit'
end
object BrowseExampleButton: TButton
Left = 593
Height = 26
AnchorSideRight.Control = ExampleTabSheet
AnchorSideRight.Side = asrBottom
Left = 592
Height = 25
Top = 28
Width = 137
Width = 134
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 2
BorderSpacing.InnerBorder = 4
Caption = 'BrowseExampleButton'
OnClick = BrowseExampleButtonClick
@ -152,13 +172,15 @@ object LazDocForm: TLazDocForm
end
object InheritedTabSheet: TTabSheet
Caption = 'InheritedTabSheet'
ClientHeight = 91
ClientWidth = 728
object InheritedShortLabel: TLabel
Left = 5
Height = 13
Top = 4
Width = 109
Height = 14
Top = 2
Width = 728
Align = alTop
BorderSpacing.Top = 2
Caption = 'InheritedShortLabel'
Color = clNone
ParentColor = False
end
object InheritedShortEdit: TEdit
@ -168,8 +190,8 @@ object LazDocForm: TLazDocForm
AnchorSideRight.Control = InheritedTabSheet
AnchorSideRight.Side = asrBottom
Height = 23
Top = 19
Width = 732
Top = 18
Width = 728
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 2
ReadOnly = True
@ -177,9 +199,9 @@ object LazDocForm: TLazDocForm
Text = 'InheritedShortEdit'
end
object MoveToInheritedButton: TButton
Height = 26
Height = 25
Top = 54
Width = 143
Width = 140
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = 'MoveToInheritedButton'
@ -191,10 +213,10 @@ object LazDocForm: TLazDocForm
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = MoveToInheritedButton
AnchorSideTop.Side = asrCenter
Left = 153
Height = 26
Left = 150
Height = 25
Top = 54
Width = 155
Width = 147
AutoSize = True
BorderSpacing.Left = 10
BorderSpacing.InnerBorder = 4
@ -209,6 +231,8 @@ object LazDocForm: TLazDocForm
Width = 17
Align = alLeft
BevelOuter = bvNone
ClientHeight = 117
ClientWidth = 17
FullRepaint = False
ParentShowHint = False
ShowHint = True

View File

@ -3,182 +3,191 @@
LazarusResources.Add('TLazDocForm','FORMDATA',[
'TPF0'#11'TLazDocForm'#10'LazDocForm'#4'Left'#3#131#1#6'Height'#2'u'#3'Top'#3
+'o'#2#5'Width'#3#241#2#18'HorzScrollBar.Page'#3#240#2#18'VertScrollBar.Page'
+#2't'#13'ActiveControl'#7#18'InheritedShortEdit'#11'BorderStyle'#7#13'bsSize'
+'ToolWin'#7'Caption'#6#13'LazDoc editor'#8'OnCreate'#7#10'FormCreate'#9'OnDe'
+#2't'#13'ActiveControl'#7#9'ShortEdit'#7'Caption'#6#13'LazDoc editor'#12'Cli'
+'entHeight'#2'u'#11'ClientWidth'#3#241#2#8'OnCreate'#7#10'FormCreate'#9'OnDe'
+'stroy'#7#11'FormDestroy'#8'OnResize'#7#10'FormResize'#0#12'TPageControl'#11
+'PageControl'#4'Left'#2#17#6'Height'#2'u'#5'Width'#3#224#2#10'ActivePage'#7
+#13'ShortTabSheet'#5'Align'#7#8'alClient'#8'TabIndex'#2#0#8'TabOrder'#2#0#11
+'TabPosition'#7#8'tpBottom'#0#9'TTabSheet'#13'ShortTabSheet'#7'Caption'#6#13
+'ShortTabSheet'#0#5'TEdit'#9'ShortEdit'#6'Height'#2#23#5'Width'#3#218#2#5'Al'
+'ign'#7#5'alTop'#19'BorderSpacing.Right'#2#2#13'OnEditingDone'#7#22'Document'
+'ationTagChange'#8'TabOrder'#2#0#4'Text'#6#9'ShortEdit'#0#0#0#9'TTabSheet'#13
+'DescrTabSheet'#7'Caption'#6#13'DescrTabSheet'#0#5'TMemo'#9'DescrMemo'#6'Hei'
+'ght'#2'S'#5'Width'#3#218#2#5'Align'#7#8'alClient'#19'BorderSpacing.Right'#2
+#2#20'BorderSpacing.Bottom'#2#4#13'Lines.Strings'#1#6#9'DescrMemo'#0#8'OnCha'
+'nge'#7#22'DocumentationTagChange'#8'TabOrder'#2#0#0#0#0#9'TTabSheet'#14'Err'
+'orsTabSheet'#7'Caption'#6#14'ErrorsTabSheet'#0#5'TMemo'#10'ErrorsMemo'#6'He'
+'ight'#2'S'#5'Width'#3#218#2#5'Align'#7#8'alClient'#19'BorderSpacing.Right'#2
+#2#20'BorderSpacing.Bottom'#2#4#13'Lines.Strings'#1#6#10'ErrorsMemo'#0#8'OnC'
+'hange'#7#22'DocumentationTagChange'#8'TabOrder'#2#0#0#0#0#9'TTabSheet'#15'S'
+'eeAlsoTabSheet'#7'Caption'#6#15'SeeAlsoTabSheet'#0#8'TListBox'#11'LinkListB'
+'ox'#6'Height'#2'8'#3'Top'#2#27#5'Width'#3#218#2#5'Align'#7#8'alBottom'#7'An'
+'chors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#19'BorderSpacing.Righ'
+'t'#2#2#20'BorderSpacing.Bottom'#2#4#7'OnClick'#7#16'LinkListBoxClick'#8'Tab'
+'Order'#2#0#8'TopIndex'#2#255#0#0#7'TButton'#13'AddLinkButton'#23'AnchorSide'
+'Right.Control'#7#16'DeleteLinkButton'#4'Left'#3#9#2#6'Height'#2#26#5'Width'
+#2'_'#7'Anchors'#11#5'akTop'#7'akRight'#0#8'AutoSize'#9#19'BorderSpacing.Rig'
+'ht'#2#6#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#13'AddLinkButton'#7
+'OnClick'#7#18'AddLinkButtonClick'#8'TabOrder'#2#1#0#0#7'TButton'#16'DeleteL'
+'inkButton'#4'Left'#3'n'#2#6'Height'#2#26#5'Width'#2'l'#7'Anchors'#11#5'akTo'
+'p'#7'akRight'#0#8'AutoSize'#9#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6
+#16'DeleteLinkButton'#7'OnClick'#7#21'DeleteLinkButtonClick'#8'TabOrder'#2#2
+#0#0#5'TEdit'#12'LinkTextEdit'#22'AnchorSideLeft.Control'#7#14'LinkIdComboBo'
+'x'#19'AnchorSideLeft.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#13
+'AddLinkButton'#4'Left'#3#229#0#6'Height'#2#21#3'Top'#2#1#5'Width'#3' '#1#7
+'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2#4#19'B'
+'orderSpacing.Right'#2#4#8'OnChange'#7#10'LinkChange'#8'TabOrder'#2#3#4'Text'
+#6#12'LinkTextEdit'#0#0#9'TComboBox'#14'LinkIdComboBox'#6'Height'#2#21#3'Top'
+#2#1#5'Width'#3#225#0#16'AutoCompleteText'#11#22'cbactEndOfLineComplete'#20
+'cbactSearchAscending'#0#9'MaxLength'#2#0#8'OnChange'#7#10'LinkChange'#8'Tab'
+'Order'#2#4#4'Text'#6#14'LinkIdComboBox'#0#0#0#9'TTabSheet'#15'ExampleTabShe'
+'et'#7'Caption'#6#15'ExampleTabSheet'#0#5'TEdit'#11'ExampleEdit'#6'Height'#2
+#23#5'Width'#3#218#2#5'Align'#7#5'alTop'#19'BorderSpacing.Right'#2#2#8'OnCha'
+'nge'#7#22'DocumentationTagChange'#8'TabOrder'#2#0#4'Text'#6#11'ExampleEdit'
+#0#0#7'TButton'#19'BrowseExampleButton'#4'Left'#3'Q'#2#6'Height'#2#26#3'Top'
+#2#28#5'Width'#3#137#0#7'Anchors'#11#5'akTop'#7'akRight'#0#8'AutoSize'#9#25
+'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#19'BrowseExampleButton'#7'OnCli'
+'ck'#7#24'BrowseExampleButtonClick'#8'TabOrder'#2#1#0#0#0#9'TTabSheet'#17'In'
+'heritedTabSheet'#7'Caption'#6#17'InheritedTabSheet'#0#6'TLabel'#19'Inherite'
+'dShortLabel'#4'Left'#2#5#6'Height'#2#13#3'Top'#2#4#5'Width'#2'm'#7'Caption'
+#6#19'InheritedShortLabel'#5'Color'#7#6'clNone'#11'ParentColor'#8#0#0#5'TEdi'
+'t'#18'InheritedShortEdit'#22'AnchorSideLeft.Control'#7#17'InheritedTabSheet'
+#21'AnchorSideTop.Control'#7#19'InheritedShortLabel'#18'AnchorSideTop.Side'#7
+#9'asrBottom'#23'AnchorSideRight.Control'#7#17'InheritedTabSheet'#20'AnchorS'
+'ideRight.Side'#7#9'asrBottom'#6'Height'#2#23#3'Top'#2#19#5'Width'#3#220#2#7
+'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#17'BorderSpacing.Top'#2#2#8'Rea'
+'dOnly'#9#8'TabOrder'#2#0#4'Text'#6#18'InheritedShortEdit'#0#0#7'TButton'#21
+'MoveToInheritedButton'#6'Height'#2#26#3'Top'#2'6'#5'Width'#3#143#0#8'AutoSi'
+'ze'#9#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#21'MoveToInheritedButt'
+'on'#7'OnClick'#7#26'MoveToInheritedButtonClick'#8'TabOrder'#2#1#0#0#7'TButt'
+'on'#23'CopyFromInheritedButton'#22'AnchorSideLeft.Control'#7#21'MoveToInher'
+'itedButton'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'
+#7#21'MoveToInheritedButton'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#3
+#153#0#6'Height'#2#26#3'Top'#2'6'#5'Width'#3#155#0#8'AutoSize'#9#18'BorderSp'
+'acing.Left'#2#10#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#23'CopyFrom'
,'InheritedButton'#7'OnClick'#7#28'CopyFromInheritedButtonClick'#8'TabOrder'#2
+#2#0#0#0#0#6'TPanel'#6'Panel1'#6'Height'#2'u'#5'Width'#2#17#5'Align'#7#6'alL'
+'eft'#10'BevelOuter'#7#6'bvNone'#11'FullRepaint'#8#14'ParentShowHint'#8#8'Sh'
+'owHint'#9#8'TabOrder'#2#1#0#12'TSpeedButton'#16'BoldFormatButton'#6'Height'
+#17'InheritedTabSheet'#5'Align'#7#8'alClient'#8'TabIndex'#2#5#8'TabOrder'#2#0
+#11'TabPosition'#7#8'tpBottom'#0#9'TTabSheet'#13'ShortTabSheet'#7'Caption'#6
+#13'ShortTabSheet'#12'ClientHeight'#2'['#11'ClientWidth'#3#216#2#0#5'TEdit'#9
+'ShortEdit'#6'Height'#2#23#5'Width'#3#214#2#5'Align'#7#5'alTop'#19'BorderSpa'
+'cing.Right'#2#2#13'OnEditingDone'#7#22'DocumentationTagChange'#8'TabOrder'#2
+#0#4'Text'#6#9'ShortEdit'#0#0#0#9'TTabSheet'#13'DescrTabSheet'#7'Caption'#6
+#13'DescrTabSheet'#12'ClientHeight'#2'['#11'ClientWidth'#3#216#2#0#5'TMemo'#9
+'DescrMemo'#6'Height'#2'W'#5'Width'#3#214#2#5'Align'#7#8'alClient'#19'Border'
+'Spacing.Right'#2#2#20'BorderSpacing.Bottom'#2#4#13'Lines.Strings'#1#6#9'Des'
+'crMemo'#0#8'OnChange'#7#22'DocumentationTagChange'#8'TabOrder'#2#0#0#0#0#9
+'TTabSheet'#14'ErrorsTabSheet'#7'Caption'#6#14'ErrorsTabSheet'#12'ClientHeig'
+'ht'#2'['#11'ClientWidth'#3#216#2#0#5'TMemo'#10'ErrorsMemo'#6'Height'#2'W'#5
+'Width'#3#214#2#5'Align'#7#8'alClient'#19'BorderSpacing.Right'#2#2#20'Border'
+'Spacing.Bottom'#2#4#13'Lines.Strings'#1#6#10'ErrorsMemo'#0#8'OnChange'#7#22
+'DocumentationTagChange'#8'TabOrder'#2#0#0#0#0#9'TTabSheet'#15'SeeAlsoTabShe'
+'et'#7'Caption'#6#15'SeeAlsoTabSheet'#12'ClientHeight'#2'['#11'ClientWidth'#3
+#216#2#0#8'TListBox'#11'LinkListBox'#21'AnchorSideTop.Control'#7#13'AddLinkB'
+'utton'#18'AnchorSideTop.Side'#7#9'asrBottom'#6'Height'#2':'#3'Top'#2#29#5'W'
+'idth'#3#214#2#5'Align'#7#8'alBottom'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akR'
+'ight'#8'akBottom'#0#17'BorderSpacing.Top'#2#4#19'BorderSpacing.Right'#2#2#20
+'BorderSpacing.Bottom'#2#4#7'OnClick'#7#16'LinkListBoxClick'#8'TabOrder'#2#0
+#0#0#7'TButton'#13'AddLinkButton'#23'AnchorSideRight.Control'#7#16'DeleteLin'
+'kButton'#4'Left'#3#0#2#6'Height'#2#25#5'Width'#2'b'#7'Anchors'#11#5'akTop'#7
+'akRight'#0#8'AutoSize'#9#19'BorderSpacing.Right'#2#6#25'BorderSpacing.Inner'
+'Border'#2#4#7'Caption'#6#13'AddLinkButton'#7'OnClick'#7#18'AddLinkButtonCli'
+'ck'#8'TabOrder'#2#1#0#0#7'TButton'#16'DeleteLinkButton'#23'AnchorSideRight.'
+'Control'#7#15'SeeAlsoTabSheet'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Le'
+'ft'#3'h'#2#6'Height'#2#25#5'Width'#2'n'#7'Anchors'#11#5'akTop'#7'akRight'#0
+#8'AutoSize'#9#19'BorderSpacing.Right'#2#2#25'BorderSpacing.InnerBorder'#2#4
+#7'Caption'#6#16'DeleteLinkButton'#7'OnClick'#7#21'DeleteLinkButtonClick'#8
+'TabOrder'#2#2#0#0#5'TEdit'#12'LinkTextEdit'#22'AnchorSideLeft.Control'#7#14
+'LinkIdComboBox'#19'AnchorSideLeft.Side'#7#9'asrBottom'#23'AnchorSideRight.C'
+'ontrol'#7#13'AddLinkButton'#4'Left'#3#229#0#6'Height'#2#21#3'Top'#2#1#5'Wid'
+'th'#3#23#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpacing.L'
+'eft'#2#4#19'BorderSpacing.Right'#2#4#8'OnChange'#7#10'LinkChange'#8'TabOrde'
+'r'#2#3#4'Text'#6#12'LinkTextEdit'#0#0#9'TComboBox'#14'LinkIdComboBox'#6'Hei'
+'ght'#2#21#3'Top'#2#1#5'Width'#3#225#0#16'AutoCompleteText'#11#22'cbactEndOf'
+'LineComplete'#20'cbactSearchAscending'#0#10'ItemHeight'#2#13#9'MaxLength'#2
+#0#8'OnChange'#7#10'LinkChange'#8'TabOrder'#2#4#4'Text'#6#14'LinkIdComboBox'
+#0#0#0#9'TTabSheet'#15'ExampleTabSheet'#7'Caption'#6#15'ExampleTabSheet'#12
+'ClientHeight'#2'['#11'ClientWidth'#3#216#2#0#5'TEdit'#11'ExampleEdit'#6'Hei'
+'ght'#2#23#5'Width'#3#214#2#5'Align'#7#5'alTop'#19'BorderSpacing.Right'#2#2#8
+'OnChange'#7#22'DocumentationTagChange'#8'TabOrder'#2#0#4'Text'#6#11'Example'
+'Edit'#0#0#7'TButton'#19'BrowseExampleButton'#23'AnchorSideRight.Control'#7
+#15'ExampleTabSheet'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3'P'#2#6
+'Height'#2#25#3'Top'#2#28#5'Width'#3#134#0#7'Anchors'#11#5'akTop'#7'akRight'
+#0#8'AutoSize'#9#19'BorderSpacing.Right'#2#2#25'BorderSpacing.InnerBorder'#2
+#4#7'Caption'#6#19'BrowseExampleButton'#7'OnClick'#7#24'BrowseExampleButtonC'
+'lick'#8'TabOrder'#2#1#0#0#0#9'TTabSheet'#17'InheritedTabSheet'#7'Caption'#6
+#17'InheritedTabSheet'#12'ClientHeight'#2'['#11'ClientWidth'#3#216#2#0#6'TLa'
+'bel'#19'InheritedShortLabel'#6'Height'#2#14#3'Top'#2#2#5'Width'#3#216#2#5'A'
+'lign'#7#5'alTop'#17'BorderSpacing.Top'#2#2#7'Caption'#6#19'InheritedShortLa'
+'bel'#11'ParentColor'#8#0#0#5'TEdit'#18'InheritedShortEdit'#22'AnchorSideLef'
+'t.Control'#7#17'InheritedTabSheet'#21'AnchorSideTop.Control'#7#19'Inherited'
+'ShortLabel'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Contro'
+'l'#7#17'InheritedTabSheet'#20'AnchorSideRight.Side'#7#9'asrBottom'#6'Height'
+#2#23#3'Top'#2#18#5'Width'#3#216#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRigh'
+'t'#0#17'BorderSpacing.Top'#2#2#8'ReadOnly'#9#8'TabOrder'#2#0#4'Text'#6#18'I'
,'nheritedShortEdit'#0#0#7'TButton'#21'MoveToInheritedButton'#6'Height'#2#25#3
+'Top'#2'6'#5'Width'#3#140#0#8'AutoSize'#9#25'BorderSpacing.InnerBorder'#2#4#7
+'Caption'#6#21'MoveToInheritedButton'#7'OnClick'#7#26'MoveToInheritedButtonC'
+'lick'#8'TabOrder'#2#1#0#0#7'TButton'#23'CopyFromInheritedButton'#22'AnchorS'
+'ideLeft.Control'#7#21'MoveToInheritedButton'#19'AnchorSideLeft.Side'#7#9'as'
+'rBottom'#21'AnchorSideTop.Control'#7#21'MoveToInheritedButton'#18'AnchorSid'
+'eTop.Side'#7#9'asrCenter'#4'Left'#3#150#0#6'Height'#2#25#3'Top'#2'6'#5'Widt'
+'h'#3#147#0#8'AutoSize'#9#18'BorderSpacing.Left'#2#10#25'BorderSpacing.Inner'
+'Border'#2#4#7'Caption'#6#23'CopyFromInheritedButton'#7'OnClick'#7#28'CopyFr'
+'omInheritedButtonClick'#8'TabOrder'#2#2#0#0#0#0#6'TPanel'#6'Panel1'#6'Heigh'
+'t'#2'u'#5'Width'#2#17#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'Cl'
+'ientHeight'#2'u'#11'ClientWidth'#2#17#11'FullRepaint'#8#14'ParentShowHint'#8
+#8'ShowHint'#9#8'TabOrder'#2#1#0#12'TSpeedButton'#16'BoldFormatButton'#6'Hei'
+'ght'#2#17#5'Width'#2#17#5'Align'#7#5'alTop'#5'Color'#7#9'clBtnFace'#10'Glyp'
+'h.Data'#10#182#1#0#0#178#1#0#0'/* XPM */'#10'static char *graphic[] = {'#10
+'"17 17 2 1",'#10'". c None",'#10'", c #000000",'#10'".................",'#10
+'".................",'#10'".................",'#10'".................",'#10
+'"....,,,,,,,,.....",'#10'".....,,,..,,,....",'#10'".....,,,..,,,....",'#10
+'".....,,,..,,,....",'#10'".....,,,,,,,.....",'#10'".....,,,..,,,....",'#10
+'".....,,,..,,,....",'#10'".....,,,..,,,....",'#10'"....,,,,,,,,.....",'#10
+'".................",'#10'".................",'#10'".................",'#10
+'"................."}'#10#9'NumGlyphs'#2#0#7'OnClick'#7#17'FormatButtonClick'
+#0#0#12'TSpeedButton'#18'ItalicFormatButton'#3'Tag'#2#1#6'Height'#2#17#3'Top'
+#2#17#5'Width'#2#17#5'Align'#7#5'alTop'#5'Color'#7#9'clBtnFace'#10'Glyph.Dat'
+'a'#10#182#1#0#0#178#1#0#0'/* XPM */'#10'static char *graphic[] = {'#10'"17 '
+'17 2 1",'#10'". c None",'#10'", c #000000",'#10'".................",'#10'".'
+'................",'#10'".................",'#10'".................",'#10'".'
+'...,,,,,,,,.....",'#10'".....,,,..,,,....",'#10'".....,,,..,,,....",'#10'".'
+'....,,,..,,,....",'#10'".....,,,,,,,.....",'#10'".....,,,..,,,....",'#10'".'
+'....,,,..,,,....",'#10'".....,,,..,,,....",'#10'"....,,,,,,,,.....",'#10'".'
+'................",'#10'".................",'#10'".................",'#10'".'
+'................"}'#10#9'NumGlyphs'#2#0#7'OnClick'#7#17'FormatButtonClick'#0
+#0#12'TSpeedButton'#18'ItalicFormatButton'#3'Tag'#2#1#6'Height'#2#17#3'Top'#2
+#17#5'Width'#2#17#5'Align'#7#5'alTop'#5'Color'#7#9'clBtnFace'#10'Glyph.Data'
+#10#197#1#0#0#193#1#0#0'/* XPM */'#10'static char *graphic[] = {'#10'"17 17 '
+'3 1",'#10'". c None",'#10'", c #000000",'#10'"- c #9696AF",'#10'"..........'
+'.......",'#10'".................",'#10'".................",'#10'"........,,'
+',,,....",'#10'".........,,-.....",'#10'"........-,,......",'#10'"........,,'
+'-......",'#10'".......-,,.......",'#10'".......,,-.......",'#10'"......-,,.'
+'.......",'#10'"......,,-........",'#10'"....,,,,,,.......",'#10'"..........'
+'.......",'#10'".................",'#10'".................",'#10'"..........'
+'.......",'#10'"................."}'#10#9'NumGlyphs'#2#0#7'OnClick'#7#17'For'
+'matButtonClick'#0#0#12'TSpeedButton'#21'UnderlineFormatButton'#3'Tag'#2#2#6
+'Height'#2#17#3'Top'#2'"'#5'Width'#2#17#5'Align'#7#5'alTop'#5'Color'#7#9'clB'
+'tnFace'#10'Glyph.Data'#10#197#1#0#0#193#1#0#0'/* XPM */'#10'static char *gr'
+'aphic[] = {'#10'"17 17 3 1",'#10'". c None",'#10'", c #000000",'#10'"- c #8'
+'48484",'#10'".................",'#10'".................",'#10'"............'
+'.....",'#10'"....,,,,.,,,,....",'#10'".....,,...,,.....",'#10'".....,,...,,'
+'.....",'#10'".....,,...,,.....",'#10'".....,,...,,.....",'#10'".....,,...,,'
+'.....",'#10'".....,,...,,.....",'#10'".....,,-.-,,.....",'#10'"......,,,,,.'
+'.....",'#10'".................",'#10'"....,,,,,,,,,....",'#10'"............'
+'.....",'#10'".................",'#10'"................."}'#10#9'NumGlyphs'#2
+#0#7'OnClick'#7#17'FormatButtonClick'#0#0#12'TSpeedButton'#19'InsertCodeTagB'
+'utton'#3'Tag'#2#3#6'Height'#2#17#3'Top'#2'3'#5'Width'#2#17#5'Align'#7#5'alT'
+'op'#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#253#9#0#0#249#9#0#0'/* XPM */'
+#13#10'static char * InsertCodeTag_xpm[] = {'#13#10'"17 15 112 2",'#13#10'" '
+' '#9'c None",'#13#10'". '#9'c #ECE9D8",'#13#10'"+ '#9'c #FFF0CF",'#13#10'"@'
+' '#9'c #FFEDC5",'#13#10'"# '#9'c #FBE8C5",'#13#10'"$ '#9'c #EDDAC5",'#13#10
+'"% '#9'c #F4E8DB",'#13#10'"& '#9'c #FAEDD5",'#13#10'"* '#9'c #F3D49E",'#13
+#10'"= '#9'c #BF9855",'#13#10'"- '#9'c #C89D55",'#13#10'"; '#9'c #BC8E5A",'
+#13#10'"> '#9'c #7C6135",'#13#10'", '#9'c #B18655",'#13#10'"'' '#9'c #916940'
+'",'#13#10'") '#9'c #C3AC93",'#13#10'"! '#9'c #CCA76A",'#13#10'"~ '#9'c #806'
+'84A",'#13#10'"{ '#9'c #DCAA63",'#13#10'"] '#9'c #A8834A",'#13#10'"^ '#9'c #'
+'977443",'#13#10'"/ '#9'c #B99052",'#13#10'"( '#9'c #947047",'#13#10'"_ '#9
+'c #896842",'#13#10'": '#9'c #C4955E",'#13#10'"< '#9'c #87653F",'#13#10'"[ '
+#9'c #A37A4E",'#13#10'"} '#9'c #F0E1CF",'#13#10'"| '#9'c #BD964F",'#13#10'"1'
+' '#9'c #977740",'#13#10'"2 '#9'c #7C6038",'#13#10'"3 '#9'c #9C7749",'#13#10
+'"4 '#9'c #866340",'#13#10'"5 '#9'c #BA8D59",'#13#10'"6 '#9'c #634430",'#13
+#10'"7 '#9'c #8A6542",'#13#10'"8 '#9'c #C99761",'#13#10'"9 '#9'c #CC9B62",'
+#13#10'"0 '#9'c #6C5842",'#13#10'"a '#9'c #82705A",'#13#10'"b '#9'c #A47C4F"'
+','#13#10'"c '#9'c #614A2F",'#13#10'"d '#9'c #906C45",'#13#10'"e '#9'c #7C51'
+'3C",'#13#10'"f '#9'c #AD7F54",'#13#10'"g '#9'c #B78858",'#13#10'"h '#9'c #A'
+'4825B",'#13#10'"i '#9'c #8D7A65",'#13#10'"j '#9'c #927D67",'#13#10'"k '#9'c'
+' #93705B",'#13#10'"l '#9'c #3F3636",'#13#10'"m '#9'c #D3D3D3",'#13#10'"n '#9
+'c #CE9E60",'#13#10'"o '#9'c #755738",'#13#10'"p '#9'c #A77951",'#13#10'"q '
+#9'c #CE9C63",'#13#10'"r '#9'c #3B271D",'#13#10'"s '#9'c #825F4B",'#13#10'"t'
+' '#9'c #D6D5D3",'#13#10'"u '#9'c #EEEAE0",'#13#10'"v '#9'c #AB7A53",'#13#10
+'"w '#9'c #745438",'#13#10'"x '#9'c #A77B50",'#13#10'"y '#9'c #948B83",'#13
+#10'"z '#9'c #261313",'#13#10'"A '#9'c #8B6843",'#13#10'"B '#9'c #634730",'
+#13#10'"C '#9'c #4B3924",'#13#10'"D '#9'c #B58757",'#13#10'"E '#9'c #816347"'
+','#13#10'"F '#9'c #ECEAE0",'#13#10'"G '#9'c #735438",'#13#10'"H '#9'c #A277'
+'4E",'#13#10'"I '#9'c #C0915C",'#13#10'"J '#9'c #A37B4E",'#13#10'"K '#9'c #6'
+'D5134",'#13#10'"L '#9'c #7C593C",'#13#10'"M '#9'c #917C63",'#13#10'"N '#9'c'
,' #99938C",'#13#10'"O '#9'c #B5B1AC",'#13#10'"P '#9'c #E8E8E8",'#13#10'"Q '#9
+'c #866B4D",'#13#10'"R '#9'c #8C6D49",'#13#10'"S '#9'c #684F32",'#13#10'"T '
+#9'c #1D130E",'#13#10'"U '#9'c #B58657",'#13#10'"V '#9'c #8E6C44",'#13#10'"W'
+' '#9'c #A67E50",'#13#10'"X '#9'c #81623E",'#13#10'"Y '#9'c #6D5234",'#13#10
+'"Z '#9'c #5F4D37",'#13#10'"` '#9'c #978E85",'#13#10'" .'#9'c #ECEAE2",'#13
+#10'"..'#9'c #CAC7C4",'#13#10'"+.'#9'c #8F7658",'#13#10'"@.'#9'c #4A3124",'
+#13#10'"#.'#9'c #B98859",'#13#10'"$.'#9'c #885842",'#13#10'"%.'#9'c #463222"'
+','#13#10'"&.'#9'c #CB9A62",'#13#10'"*.'#9'c #3D231E",'#13#10'"=.'#9'c #3927'
+'1C",'#13#10'"-.'#9'c #876E51",'#13#10'";.'#9'c #938778",'#13#10'">.'#9'c #D'
+'7D5D3",'#13#10'",.'#9'c #DFDFDF",'#13#10'"''.'#9'c #9E9891",'#13#10'").'#9
+'c #908C87",'#13#10'"!.'#9'c #918A88",'#13#10'"~.'#9'c #8F8B87",'#13#10'"{.'
+#9'c #989188",'#13#10'"].'#9'c #BEBAB5",'#13#10'". . . . . . . . . . . . . .'
+' . . . ",'#13#10'". . . . . . . . . . . . . . . . . ",'#13#10'". . . . . + '
+'@ # $ % . . . . . . . ",'#13#10'". . & * = - ; > , '' ) . . . . . . ",'#13
+#10'"! ~ { ] ^ / ( _ : < [ } . . . . . ",'#13#10'"| 1 2 3 4 5 6 7 8 9 0 a . '
+'. . . . ",'#13#10'"b c d e f g h i j k l m . . . . . ",'#13#10'"n o p q r s'
+' t . . . u . . . . . . ",'#13#10'", q v w x y . . . . . . . . . . . ",'#13
+#10'"z A B C D E F . . . . . . . . . . ",'#13#10'"G H I J K L M N N O P . . '
+'. . . . ",'#13#10'"Q R S T U V W X X Y Z ` .. . . . ",'#13#10'". ..+.@.#.$'
+'.%.9 q &.*.=.X -.;.>.. ",'#13#10'". . . ,.''.N ).N N N !.~.{.-.-.].. ",'#13
+#10'". . . . . . . . . . . . . . . . . "};'#13#10#9'NumGlyphs'#2#0#7'OnClick'
+#7#17'FormatButtonClick'#0#0#12'TSpeedButton'#18'InsertRemarkButton'#3'Tag'#2
+#4#6'Height'#2#17#3'Top'#2'D'#5'Width'#2#17#5'Align'#7#5'alTop'#5'Color'#7#9
+'clBtnFace'#10'Glyph.Data'#10#218#1#0#0#214#1#0#0'/* XPM */'#13#10'static ch'
+'ar * InsertRemark_xpm[] = {'#13#10'"17 17 2 1",'#13#10'" '#9'c #ECE9D8",'#13
+#10'".'#9'c #0000FF",'#13#10'" ",'#13#10'" "'
+','#13#10'" ",'#13#10'" ... ... ",'#13#10'" .. '
+'a'#10#197#1#0#0#193#1#0#0'/* XPM */'#10'static char *graphic[] = {'#10'"17 '
+'17 3 1",'#10'". c None",'#10'", c #000000",'#10'"- c #9696AF",'#10'".......'
+'..........",'#10'".................",'#10'".................",'#10'".......'
+'.,,,,,....",'#10'".........,,-.....",'#10'"........-,,......",'#10'".......'
+'.,,-......",'#10'".......-,,.......",'#10'".......,,-.......",'#10'"......-'
+',,........",'#10'"......,,-........",'#10'"....,,,,,,.......",'#10'".......'
+'..........",'#10'".................",'#10'".................",'#10'".......'
+'..........",'#10'"................."}'#10#9'NumGlyphs'#2#0#7'OnClick'#7#17
+'FormatButtonClick'#0#0#12'TSpeedButton'#21'UnderlineFormatButton'#3'Tag'#2#2
+#6'Height'#2#17#3'Top'#2'"'#5'Width'#2#17#5'Align'#7#5'alTop'#5'Color'#7#9'c'
+'lBtnFace'#10'Glyph.Data'#10#197#1#0#0#193#1#0#0'/* XPM */'#10'static char *'
+'graphic[] = {'#10'"17 17 3 1",'#10'". c None",'#10'", c #000000",'#10'"- c '
+'#848484",'#10'".................",'#10'".................",'#10'"..........'
+'.......",'#10'"....,,,,.,,,,....",'#10'".....,,...,,.....",'#10'".....,,...'
+',,.....",'#10'".....,,...,,.....",'#10'".....,,...,,.....",'#10'".....,,...'
+',,.....",'#10'".....,,...,,.....",'#10'".....,,-.-,,.....",'#10'"......,,,,'
+',......",'#10'".................",'#10'"....,,,,,,,,,....",'#10'"..........'
+'.......",'#10'".................",'#10'"................."}'#10#9'NumGlyphs'
+#2#0#7'OnClick'#7#17'FormatButtonClick'#0#0#12'TSpeedButton'#19'InsertCodeTa'
+'gButton'#3'Tag'#2#3#6'Height'#2#17#3'Top'#2'3'#5'Width'#2#17#5'Align'#7#5'a'
+'lTop'#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#253#9#0#0#249#9#0#0'/* XPM '
+'*/'#13#10'static char * InsertCodeTag_xpm[] = {'#13#10'"17 15 112 2",'#13#10
+'" '#9'c None",'#13#10'". '#9'c #ECE9D8",'#13#10'"+ '#9'c #FFF0CF",'#13#10
+'"@ '#9'c #FFEDC5",'#13#10'"# '#9'c #FBE8C5",'#13#10'"$ '#9'c #EDDAC5",'#13
+#10'"% '#9'c #F4E8DB",'#13#10'"& '#9'c #FAEDD5",'#13#10'"* '#9'c #F3D49E",'
+#13#10'"= '#9'c #BF9855",'#13#10'"- '#9'c #C89D55",'#13#10'"; '#9'c #BC8E5A"'
+','#13#10'"> '#9'c #7C6135",'#13#10'", '#9'c #B18655",'#13#10'"'' '#9'c #916'
+'940",'#13#10'") '#9'c #C3AC93",'#13#10'"! '#9'c #CCA76A",'#13#10'"~ '#9'c #'
+'80684A",'#13#10'"{ '#9'c #DCAA63",'#13#10'"] '#9'c #A8834A",'#13#10'"^ '#9
+'c #977443",'#13#10'"/ '#9'c #B99052",'#13#10'"( '#9'c #947047",'#13#10'"_ '
+#9'c #896842",'#13#10'": '#9'c #C4955E",'#13#10'"< '#9'c #87653F",'#13#10'"['
+' '#9'c #A37A4E",'#13#10'"} '#9'c #F0E1CF",'#13#10'"| '#9'c #BD964F",'#13#10
+'"1 '#9'c #977740",'#13#10'"2 '#9'c #7C6038",'#13#10'"3 '#9'c #9C7749",'#13
+#10'"4 '#9'c #866340",'#13#10'"5 '#9'c #BA8D59",'#13#10'"6 '#9'c #634430",'
+#13#10'"7 '#9'c #8A6542",'#13#10'"8 '#9'c #C99761",'#13#10'"9 '#9'c #CC9B62"'
+','#13#10'"0 '#9'c #6C5842",'#13#10'"a '#9'c #82705A",'#13#10'"b '#9'c #A47C'
+'4F",'#13#10'"c '#9'c #614A2F",'#13#10'"d '#9'c #906C45",'#13#10'"e '#9'c #7'
+'C513C",'#13#10'"f '#9'c #AD7F54",'#13#10'"g '#9'c #B78858",'#13#10'"h '#9'c'
+' #A4825B",'#13#10'"i '#9'c #8D7A65",'#13#10'"j '#9'c #927D67",'#13#10'"k '#9
+'c #93705B",'#13#10'"l '#9'c #3F3636",'#13#10'"m '#9'c #D3D3D3",'#13#10'"n '
,#9'c #CE9E60",'#13#10'"o '#9'c #755738",'#13#10'"p '#9'c #A77951",'#13#10'"q'
+' '#9'c #CE9C63",'#13#10'"r '#9'c #3B271D",'#13#10'"s '#9'c #825F4B",'#13#10
+'"t '#9'c #D6D5D3",'#13#10'"u '#9'c #EEEAE0",'#13#10'"v '#9'c #AB7A53",'#13
+#10'"w '#9'c #745438",'#13#10'"x '#9'c #A77B50",'#13#10'"y '#9'c #948B83",'
+#13#10'"z '#9'c #261313",'#13#10'"A '#9'c #8B6843",'#13#10'"B '#9'c #634730"'
+','#13#10'"C '#9'c #4B3924",'#13#10'"D '#9'c #B58757",'#13#10'"E '#9'c #8163'
+'47",'#13#10'"F '#9'c #ECEAE0",'#13#10'"G '#9'c #735438",'#13#10'"H '#9'c #A'
+'2774E",'#13#10'"I '#9'c #C0915C",'#13#10'"J '#9'c #A37B4E",'#13#10'"K '#9'c'
+' #6D5134",'#13#10'"L '#9'c #7C593C",'#13#10'"M '#9'c #917C63",'#13#10'"N '#9
+'c #99938C",'#13#10'"O '#9'c #B5B1AC",'#13#10'"P '#9'c #E8E8E8",'#13#10'"Q '
+#9'c #866B4D",'#13#10'"R '#9'c #8C6D49",'#13#10'"S '#9'c #684F32",'#13#10'"T'
+' '#9'c #1D130E",'#13#10'"U '#9'c #B58657",'#13#10'"V '#9'c #8E6C44",'#13#10
+'"W '#9'c #A67E50",'#13#10'"X '#9'c #81623E",'#13#10'"Y '#9'c #6D5234",'#13
+#10'"Z '#9'c #5F4D37",'#13#10'"` '#9'c #978E85",'#13#10'" .'#9'c #ECEAE2",'
+#13#10'"..'#9'c #CAC7C4",'#13#10'"+.'#9'c #8F7658",'#13#10'"@.'#9'c #4A3124"'
+','#13#10'"#.'#9'c #B98859",'#13#10'"$.'#9'c #885842",'#13#10'"%.'#9'c #4632'
+'22",'#13#10'"&.'#9'c #CB9A62",'#13#10'"*.'#9'c #3D231E",'#13#10'"=.'#9'c #3'
+'9271C",'#13#10'"-.'#9'c #876E51",'#13#10'";.'#9'c #938778",'#13#10'">.'#9'c'
+' #D7D5D3",'#13#10'",.'#9'c #DFDFDF",'#13#10'"''.'#9'c #9E9891",'#13#10'").'
+#9'c #908C87",'#13#10'"!.'#9'c #918A88",'#13#10'"~.'#9'c #8F8B87",'#13#10'"{'
+'.'#9'c #989188",'#13#10'"].'#9'c #BEBAB5",'#13#10'". . . . . . . . . . . . '
+'. . . . . ",'#13#10'". . . . . . . . . . . . . . . . . ",'#13#10'". . . . .'
+' + @ # $ % . . . . . . . ",'#13#10'". . & * = - ; > , '' ) . . . . . . ",'
+#13#10'"! ~ { ] ^ / ( _ : < [ } . . . . . ",'#13#10'"| 1 2 3 4 5 6 7 8 9 0 a'
+' . . . . . ",'#13#10'"b c d e f g h i j k l m . . . . . ",'#13#10'"n o p q '
+'r s t . . . u . . . . . . ",'#13#10'", q v w x y . . . . . . . . . . . ",'
+#13#10'"z A B C D E F . . . . . . . . . . ",'#13#10'"G H I J K L M N N O P .'
+' . . . . . ",'#13#10'"Q R S T U V W X X Y Z ` .. . . . ",'#13#10'". ..+.@.'
+'#.$.%.9 q &.*.=.X -.;.>.. ",'#13#10'". . . ,.''.N ).N N N !.~.{.-.-.].. ",'
+#13#10'". . . . . . . . . . . . . . . . . "};'#13#10#9'NumGlyphs'#2#0#7'OnCl'
+'ick'#7#17'FormatButtonClick'#0#0#12'TSpeedButton'#18'InsertRemarkButton'#3
+'Tag'#2#4#6'Height'#2#17#3'Top'#2'D'#5'Width'#2#17#5'Align'#7#5'alTop'#5'Col'
+'or'#7#9'clBtnFace'#10'Glyph.Data'#10#218#1#0#0#214#1#0#0'/* XPM */'#13#10's'
+'tatic char * InsertRemark_xpm[] = {'#13#10'"17 17 2 1",'#13#10'" '#9'c #ECE'
+'9D8",'#13#10'".'#9'c #0000FF",'#13#10'" ",'#13#10'" '
+' ",'#13#10'" ",'#13#10'" ... ... ",'#13#10
+'" .. .. ",'#13#10'" .. .. ",'#13#10'" .. .. "'
+','#13#10'" .. .. ",'#13#10'" ... ... ",'#13#10'" .. '
+' .. ",'#13#10'" .. .. ",'#13#10'" .. .. ",'#13#10'"'
+' .. .. ",'#13#10'" ... ... ",'#13#10'" .. .. ",'
+#13#10'" .. .. ",'#13#10'" .. .. ",'#13#10'" .. '
+'.. ",'#13#10'" ... ... ",'#13#10'" ",'#13#10'" '
+' ",'#13#10'" "};'#13#10#9'NumGlyphs'#2#0#7'OnC'
+'lick'#7#17'FormatButtonClick'#0#0#12'TSpeedButton'#18'InsertVarTagButton'#3
+'Tag'#2#5#6'Height'#2#17#3'Top'#2'U'#5'Width'#2#17#5'Align'#7#5'alTop'#5'Col'
+'or'#7#9'clBtnFace'#10'Glyph.Data'#10#219#2#0#0#215#2#0#0'/* XPM */'#13#10's'
+'tatic char * InsertVarTag_xpm[] = {'#13#10'"17 17 18 1",'#13#10'" '#9'c #EC'
+'E9D8",'#13#10'".'#9'c #D4D4D4",'#13#10'"+'#9'c #AAAAAA",'#13#10'"@'#9'c #E6'
+'E6E6",'#13#10'"#'#9'c #000000",'#13#10'"$'#9'c #CCCCCC",'#13#10'"%'#9'c #C4'
+'C4C4",'#13#10'"&'#9'c #888888",'#13#10'"*'#9'c #444444",'#13#10'"='#9'c #99'
+'9999",'#13#10'"-'#9'c #666666",'#13#10'";'#9'c #222222",'#13#10'">'#9'c #BB'
+'BBBB",'#13#10'",'#9'c #5E5E5E",'#13#10'"'''#9'c #808080",'#13#10'")'#9'c #F'
+'FFFFF",'#13#10'"!'#9'c #777777",'#13#10'"~'#9'c #4C4C4C",'#13#10'" '
+' ",'#13#10'" ",'#13#10'" ",'#13#10'"'
+' ",'#13#10'" ",'#13#10'" ",'
+#13#10'" .+++..++ .+++ ",'#13#10'" @#$#@%&*=@-;&> ",'#13#10'" ,*, ;>,'')'
+''''' ",'#13#10'" .;. -!~~>~~> ",'#13#10'" ",'#13#10'"'
+' ",'#13#10'" ",'#13#10'" ",'
+#13#10'" ",'#13#10'" ",'#13#10'" '
+' "};'#13#10#9'NumGlyphs'#2#0#7'OnClick'#7#17'FormatButtonClick'#0#0#0#11
+'TOpenDialog'#10'OpenDialog'#5'Title'#6#17'Open example file'#6'Filter'#6#28
+'pascal file|*.pas; *.pp; *.p'#11'FilterIndex'#2#0#4'left'#2'@'#3'top'#2#24#0
+#0#0
+' .. .. ",'#13#10'" ... ... ",'#13#10'" ",'
+#13#10'" ",'#13#10'" "};'#13#10#9'NumGlyphs'
+#2#0#7'OnClick'#7#17'FormatButtonClick'#0#0#12'TSpeedButton'#18'InsertVarTag'
+'Button'#3'Tag'#2#5#6'Height'#2#17#3'Top'#2'U'#5'Width'#2#17#5'Align'#7#5'al'
+'Top'#5'Color'#7#9'clBtnFace'#10'Glyph.Data'#10#219#2#0#0#215#2#0#0'/* XPM *'
+'/'#13#10'static char * InsertVarTag_xpm[] = {'#13#10'"17 17 18 1",'#13#10'"'
+' '#9'c #ECE9D8",'#13#10'".'#9'c #D4D4D4",'#13#10'"+'#9'c #AAAAAA",'#13#10'"'
+'@'#9'c #E6E6E6",'#13#10'"#'#9'c #000000",'#13#10'"$'#9'c #CCCCCC",'#13#10'"'
+'%'#9'c #C4C4C4",'#13#10'"&'#9'c #888888",'#13#10'"*'#9'c #444444",'#13#10'"'
+'='#9'c #999999",'#13#10'"-'#9'c #666666",'#13#10'";'#9'c #222222",'#13#10'"'
+'>'#9'c #BBBBBB",'#13#10'",'#9'c #5E5E5E",'#13#10'"'''#9'c #808080",'#13#10
+'")'#9'c #FFFFFF",'#13#10'"!'#9'c #777777",'#13#10'"~'#9'c #4C4C4C",'#13#10
+'" ",'#13#10'" ",'#13#10'" "'
+','#13#10'" ",'#13#10'" ",'#13#10'" '
+' ",'#13#10'" .+++..++ .+++ ",'#13#10'" @#$#@%&*=@-;&> ",'#13#10'"'
+' ,*, ;>,'')'''' ",'#13#10'" .;. -!~~>~~> ",'#13#10'" '
+' ",'#13#10'" ",'#13#10'" ",'#13#10'" '
+' ",'#13#10'" ",'#13#10'" ",'#13#10
+'" "};'#13#10#9'NumGlyphs'#2#0#7'OnClick'#7#17'FormatButtonC'
+'lick'#0#0#0#11'TOpenDialog'#10'OpenDialog'#5'Title'#6#17'Open example file'
+#6'Filter'#6#28'pascal file|*.pas; *.pp; *.p'#11'FilterIndex'#2#0#4'left'#2
+'@'#3'top'#2#24#0#0#0
]);