mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 13:17:18 +02:00
codetools: added debugging info or dangling events
git-svn-id: trunk@15811 -
This commit is contained in:
parent
b972e96632
commit
ec306d185d
@ -601,6 +601,7 @@ begin
|
|||||||
then
|
then
|
||||||
// class already parsed
|
// class already parsed
|
||||||
exit;
|
exit;
|
||||||
|
DebugLn(['TPascalParserTool.BuildSubTreeForClass AAA1']);
|
||||||
// avoid endless loop
|
// avoid endless loop
|
||||||
ClassNode.SubDesc:=ClassNode.SubDesc and (not ctnsNeedJITParsing);
|
ClassNode.SubDesc:=ClassNode.SubDesc and (not ctnsNeedJITParsing);
|
||||||
OldPhase:=CurrentPhase;
|
OldPhase:=CurrentPhase;
|
||||||
@ -642,8 +643,12 @@ begin
|
|||||||
CurKeyWordFuncList:=InnerClassKeyWordFuncList;
|
CurKeyWordFuncList:=InnerClassKeyWordFuncList;
|
||||||
try
|
try
|
||||||
repeat
|
repeat
|
||||||
|
//DebugLn(['TPascalParserTool.BuildSubTreeForClass Atom=',GetAtom,' ',CurPos.StartPos>=ClassNode.EndPos]);
|
||||||
if CurPos.StartPos>=ClassNode.EndPos then break;
|
if CurPos.StartPos>=ClassNode.EndPos then break;
|
||||||
if not DoAtom then break;
|
if not DoAtom then begin
|
||||||
|
//DebugLn(['TPascalParserTool.BuildSubTreeForClass DoAtom=false']);
|
||||||
|
break;
|
||||||
|
end;
|
||||||
ReadNextAtom;
|
ReadNextAtom;
|
||||||
until false;
|
until false;
|
||||||
// end last class section (public, private, ...)
|
// end last class section (public, private, ...)
|
||||||
|
@ -4272,7 +4272,13 @@ begin
|
|||||||
TreeOfCodeTreeNodeExtension:=nil;
|
TreeOfCodeTreeNodeExtension:=nil;
|
||||||
if (TheClassName='') or (length(TheClassName)>255) then
|
if (TheClassName='') or (length(TheClassName)>255) then
|
||||||
RaiseException(Format(ctsInvalidClassName, ['"', TheClassName, '"']));
|
RaiseException(Format(ctsInvalidClassName, ['"', TheClassName, '"']));
|
||||||
|
{$IFDEF VerboseDanglingComponentEvents}
|
||||||
|
DebugLn(['TStandardCodeTool.GatherPublishedClassElements AAA1']);
|
||||||
|
{$ENDIF}
|
||||||
BuildTree(true);
|
BuildTree(true);
|
||||||
|
{$IFDEF VerboseDanglingComponentEvents}
|
||||||
|
DebugLn(['TStandardCodeTool.GatherPublishedClassElements AAA2']);
|
||||||
|
{$ENDIF}
|
||||||
ClassNode:=FindClassNodeInInterface(TheClassName,true,false,
|
ClassNode:=FindClassNodeInInterface(TheClassName,true,false,
|
||||||
ExceptionOnClassNotFound);
|
ExceptionOnClassNotFound);
|
||||||
if ClassNode=nil then exit;
|
if ClassNode=nil then exit;
|
||||||
@ -4356,7 +4362,8 @@ var
|
|||||||
CurMethod:=GetMethodProp(AComponent,PropInfo);
|
CurMethod:=GetMethodProp(AComponent,PropInfo);
|
||||||
CurMethodName:=OnGetMethodName(CurMethod,RootComponent);
|
CurMethodName:=OnGetMethodName(CurMethod,RootComponent);
|
||||||
{$IFDEF VerboseDanglingComponentEvents}
|
{$IFDEF VerboseDanglingComponentEvents}
|
||||||
debugln(' Component ',DbgSName(AComponent),' Property ',PropInfo^.Name,' Type=',PropInfo^.PropType^.Name,' CurMethodName="',CurMethodName,'"');
|
if (CurMethod.Data<>nil) or (CurMethod.COde<>nil) then
|
||||||
|
debugln(' Component ',DbgSName(AComponent),' Property ',PropInfo^.Name,' Type=',PropInfo^.PropType^.Name,' CurMethodName="',CurMethodName,'"');
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
if CurMethodName<>'' then begin
|
if CurMethodName<>'' then begin
|
||||||
NodeExt:=FindCodeTreeNodeExt(PublishedMethods,CurMethodName);
|
NodeExt:=FindCodeTreeNodeExt(PublishedMethods,CurMethodName);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
object EditorOptionsForm: TEditorOptionsForm
|
object EditorOptionsForm: TEditorOptionsForm
|
||||||
Left = 410
|
Left = 437
|
||||||
Height = 541
|
Height = 541
|
||||||
Top = 201
|
Top = 206
|
||||||
Width = 554
|
Width = 554
|
||||||
ActiveControl = MainNotebook
|
ActiveControl = MainNotebook
|
||||||
Caption = 'EditorOptionsForm'
|
Caption = 'EditorOptionsForm'
|
||||||
@ -420,6 +420,7 @@ object EditorOptionsForm: TEditorOptionsForm
|
|||||||
Font.Pitch = fpFixed
|
Font.Pitch = fpFixed
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
|
BookMarkOptions.OnChange = nil
|
||||||
Gutter.CodeFoldingWidth = 14
|
Gutter.CodeFoldingWidth = 14
|
||||||
Keystrokes = <
|
Keystrokes = <
|
||||||
item
|
item
|
||||||
@ -746,6 +747,7 @@ object EditorOptionsForm: TEditorOptionsForm
|
|||||||
'DisplayPreview'
|
'DisplayPreview'
|
||||||
)
|
)
|
||||||
ReadOnly = True
|
ReadOnly = True
|
||||||
|
SelectedColor.OnChange = nil
|
||||||
OnSpecialLineColors = OnSpecialLineColors
|
OnSpecialLineColors = OnSpecialLineColors
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -911,6 +913,7 @@ object EditorOptionsForm: TEditorOptionsForm
|
|||||||
ParentColor = False
|
ParentColor = False
|
||||||
TabOrder = 3
|
TabOrder = 3
|
||||||
OnMouseDown = ColorPreviewMouseUp
|
OnMouseDown = ColorPreviewMouseUp
|
||||||
|
BookMarkOptions.OnChange = nil
|
||||||
Gutter.CodeFoldingWidth = 14
|
Gutter.CodeFoldingWidth = 14
|
||||||
Keystrokes = <
|
Keystrokes = <
|
||||||
item
|
item
|
||||||
@ -1237,6 +1240,7 @@ object EditorOptionsForm: TEditorOptionsForm
|
|||||||
'ColorPreview'
|
'ColorPreview'
|
||||||
)
|
)
|
||||||
ReadOnly = True
|
ReadOnly = True
|
||||||
|
SelectedColor.OnChange = nil
|
||||||
OnSpecialLineColors = OnSpecialLineColors
|
OnSpecialLineColors = OnSpecialLineColors
|
||||||
end
|
end
|
||||||
object ColorElementListBox: TListBox
|
object ColorElementListBox: TListBox
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
{ This is an automatically generated lazarus resource file }
|
{ This is an automatically generated lazarus resource file }
|
||||||
|
|
||||||
LazarusResources.Add('TEditorOptionsForm','FORMDATA',[
|
LazarusResources.Add('TEditorOptionsForm','FORMDATA',[
|
||||||
'TPF0'#18'TEditorOptionsForm'#17'EditorOptionsForm'#4'Left'#3#154#1#6'Height'
|
'TPF0'#18'TEditorOptionsForm'#17'EditorOptionsForm'#4'Left'#3#181#1#6'Height'
|
||||||
+#3#29#2#3'Top'#3#201#0#5'Width'#3'*'#2#13'ActiveControl'#7#12'MainNotebook'#7
|
+#3#29#2#3'Top'#3#206#0#5'Width'#3'*'#2#13'ActiveControl'#7#12'MainNotebook'#7
|
||||||
+'Caption'#6#17'EditorOptionsForm'#12'ClientHeight'#3#29#2#11'ClientWidth'#3
|
+'Caption'#6#17'EditorOptionsForm'#12'ClientHeight'#3#29#2#11'ClientWidth'#3
|
||||||
+'*'#2#21'Constraints.MinHeight'#3#244#1#20'Constraints.MinWidth'#3#144#1#8'P'
|
+'*'#2#21'Constraints.MinHeight'#3#244#1#20'Constraints.MinWidth'#3#144#1#8'P'
|
||||||
+'osition'#7#14'poScreenCenter'#10'LCLVersion'#6#6'0.9.25'#0#9'TNotebook'#12
|
+'osition'#7#14'poScreenCenter'#10'LCLVersion'#6#6'0.9.25'#0#9'TNotebook'#12
|
||||||
@ -136,64 +136,65 @@ LazarusResources.Add('TEditorOptionsForm','FORMDATA',[
|
|||||||
+'TSynEdit'#14'DisplayPreview'#4'Left'#2#6#6'Height'#3#163#0#3'Top'#3'&'#1#5
|
+'TSynEdit'#14'DisplayPreview'#4'Left'#2#6#6'Height'#3#163#0#3'Top'#3'&'#1#5
|
||||||
+'Width'#3#26#2#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#11'Font.H'
|
+'Width'#3#26#2#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#11'Font.H'
|
||||||
+'eight'#2#240#9'Font.Name'#6#7'courier'#10'Font.Pitch'#7#7'fpFixed'#11'Paren'
|
+'eight'#2#240#9'Font.Name'#6#7'courier'#10'Font.Pitch'#7#7'fpFixed'#11'Paren'
|
||||||
+'tColor'#8#8'TabOrder'#2#2#23'Gutter.CodeFoldingWidth'#2#14#10'Keystrokes'#14
|
+'tColor'#8#8'TabOrder'#2#2#24'BookMarkOptions.OnChange'#13#23'Gutter.CodeFol'
|
||||||
+#1#7'Command'#2#3#8'ShortCut'#2'&'#0#1#7'Command'#2'g'#8'ShortCut'#3'& '#0#1
|
+'dingWidth'#2#14#10'Keystrokes'#14#1#7'Command'#2#3#8'ShortCut'#2'&'#0#1#7'C'
|
||||||
+#7'Command'#3#211#0#8'ShortCut'#3'&@'#0#1#7'Command'#2#4#8'ShortCut'#2'('#0#1
|
+'ommand'#2'g'#8'ShortCut'#3'& '#0#1#7'Command'#3#211#0#8'ShortCut'#3'&@'#0#1
|
||||||
+#7'Command'#2'h'#8'ShortCut'#3'( '#0#1#7'Command'#3#212#0#8'ShortCut'#3'(@'#0
|
+#7'Command'#2#4#8'ShortCut'#2'('#0#1#7'Command'#2'h'#8'ShortCut'#3'( '#0#1#7
|
||||||
+#1#7'Command'#2#1#8'ShortCut'#2'%'#0#1#7'Command'#2'e'#8'ShortCut'#3'% '#0#1
|
+'Command'#3#212#0#8'ShortCut'#3'(@'#0#1#7'Command'#2#1#8'ShortCut'#2'%'#0#1#7
|
||||||
+#7'Command'#2#5#8'ShortCut'#3'%@'#0#1#7'Command'#2'i'#8'ShortCut'#3'%`'#0#1#7
|
+'Command'#2'e'#8'ShortCut'#3'% '#0#1#7'Command'#2#5#8'ShortCut'#3'%@'#0#1#7
|
||||||
+'Command'#2#2#8'ShortCut'#2''''#0#1#7'Command'#2'f'#8'ShortCut'#3''' '#0#1#7
|
+'Command'#2'i'#8'ShortCut'#3'%`'#0#1#7'Command'#2#2#8'ShortCut'#2''''#0#1#7
|
||||||
+'Command'#2#6#8'ShortCut'#3'''@'#0#1#7'Command'#2'j'#8'ShortCut'#3'''`'#0#1#7
|
+'Command'#2'f'#8'ShortCut'#3''' '#0#1#7'Command'#2#6#8'ShortCut'#3'''@'#0#1#7
|
||||||
+'Command'#2#10#8'ShortCut'#2'"'#0#1#7'Command'#2'n'#8'ShortCut'#3'" '#0#1#7
|
+'Command'#2'j'#8'ShortCut'#3'''`'#0#1#7'Command'#2#10#8'ShortCut'#2'"'#0#1#7
|
||||||
+'Command'#2#14#8'ShortCut'#3'"@'#0#1#7'Command'#2'r'#8'ShortCut'#3'"`'#0#1#7
|
+'Command'#2'n'#8'ShortCut'#3'" '#0#1#7'Command'#2#14#8'ShortCut'#3'"@'#0#1#7
|
||||||
+'Command'#2#9#8'ShortCut'#2'!'#0#1#7'Command'#2'm'#8'ShortCut'#3'! '#0#1#7'C'
|
+'Command'#2'r'#8'ShortCut'#3'"`'#0#1#7'Command'#2#9#8'ShortCut'#2'!'#0#1#7'C'
|
||||||
+'ommand'#2#13#8'ShortCut'#3'!@'#0#1#7'Command'#2'q'#8'ShortCut'#3'!`'#0#1#7
|
+'ommand'#2'm'#8'ShortCut'#3'! '#0#1#7'Command'#2#13#8'ShortCut'#3'!@'#0#1#7
|
||||||
+'Command'#2#7#8'ShortCut'#2'$'#0#1#7'Command'#2'k'#8'ShortCut'#3'$ '#0#1#7'C'
|
+'Command'#2'q'#8'ShortCut'#3'!`'#0#1#7'Command'#2#7#8'ShortCut'#2'$'#0#1#7'C'
|
||||||
+'ommand'#2#15#8'ShortCut'#3'$@'#0#1#7'Command'#2's'#8'ShortCut'#3'$`'#0#1#7
|
+'ommand'#2'k'#8'ShortCut'#3'$ '#0#1#7'Command'#2#15#8'ShortCut'#3'$@'#0#1#7
|
||||||
+'Command'#2#8#8'ShortCut'#2'#'#0#1#7'Command'#2'l'#8'ShortCut'#3'# '#0#1#7'C'
|
+'Command'#2's'#8'ShortCut'#3'$`'#0#1#7'Command'#2#8#8'ShortCut'#2'#'#0#1#7'C'
|
||||||
+'ommand'#2#16#8'ShortCut'#3'#@'#0#1#7'Command'#2't'#8'ShortCut'#3'#`'#0#1#7
|
+'ommand'#2'l'#8'ShortCut'#3'# '#0#1#7'Command'#2#16#8'ShortCut'#3'#@'#0#1#7
|
||||||
+'Command'#3#223#0#8'ShortCut'#2'-'#0#1#7'Command'#3#201#0#8'ShortCut'#3'-@'#0
|
+'Command'#2't'#8'ShortCut'#3'#`'#0#1#7'Command'#3#223#0#8'ShortCut'#2'-'#0#1
|
||||||
+#1#7'Command'#3'\'#2#8'ShortCut'#3'- '#0#1#7'Command'#3#246#1#8'ShortCut'#2
|
+#7'Command'#3#201#0#8'ShortCut'#3'-@'#0#1#7'Command'#3'\'#2#8'ShortCut'#3'- '
|
||||||
+'.'#0#1#7'Command'#3'['#2#8'ShortCut'#3'. '#0#1#7'Command'#3#245#1#8'ShortCu'
|
+#0#1#7'Command'#3#246#1#8'ShortCut'#2'.'#0#1#7'Command'#3'['#2#8'ShortCut'#3
|
||||||
+'t'#2#8#0#1#7'Command'#3#245#1#8'ShortCut'#3#8' '#0#1#7'Command'#3#248#1#8'S'
|
+'. '#0#1#7'Command'#3#245#1#8'ShortCut'#2#8#0#1#7'Command'#3#245#1#8'ShortCu'
|
||||||
+'hortCut'#3#8'@'#0#1#7'Command'#3'Y'#2#8'ShortCut'#4#8#128#0#0#0#1#7'Command'
|
+'t'#3#8' '#0#1#7'Command'#3#248#1#8'ShortCut'#3#8'@'#0#1#7'Command'#3'Y'#2#8
|
||||||
+#3'Z'#2#8'ShortCut'#4#8#160#0#0#0#1#7'Command'#3#253#1#8'ShortCut'#2#13#0#1#7
|
+'ShortCut'#4#8#128#0#0#0#1#7'Command'#3'Z'#2#8'ShortCut'#4#8#160#0#0#0#1#7'C'
|
||||||
+'Command'#3#199#0#8'ShortCut'#3'A@'#0#1#7'Command'#3#201#0#8'ShortCut'#3'C@'
|
+'ommand'#3#253#1#8'ShortCut'#2#13#0#1#7'Command'#3#199#0#8'ShortCut'#3'A@'#0
|
||||||
+#0#1#7'Command'#3'b'#2#8'ShortCut'#3'I`'#0#1#7'Command'#3#253#1#8'ShortCut'#3
|
+#1#7'Command'#3#201#0#8'ShortCut'#3'C@'#0#1#7'Command'#3'b'#2#8'ShortCut'#3
|
||||||
+'M@'#0#1#7'Command'#3#254#1#8'ShortCut'#3'N@'#0#1#7'Command'#3#247#1#8'Short'
|
+'I`'#0#1#7'Command'#3#253#1#8'ShortCut'#3'M@'#0#1#7'Command'#3#254#1#8'Short'
|
||||||
+'Cut'#3'T@'#0#1#7'Command'#3'c'#2#8'ShortCut'#3'U`'#0#1#7'Command'#3'\'#2#8
|
+'Cut'#3'N@'#0#1#7'Command'#3#247#1#8'ShortCut'#3'T@'#0#1#7'Command'#3'c'#2#8
|
||||||
+'ShortCut'#3'V@'#0#1#7'Command'#3'['#2#8'ShortCut'#3'X@'#0#1#7'Command'#3#251
|
+'ShortCut'#3'U`'#0#1#7'Command'#3'\'#2#8'ShortCut'#3'V@'#0#1#7'Command'#3'['
|
||||||
+#1#8'ShortCut'#3'Y@'#0#1#7'Command'#3#250#1#8'ShortCut'#3'Y`'#0#1#7'Command'
|
+#2#8'ShortCut'#3'X@'#0#1#7'Command'#3#251#1#8'ShortCut'#3'Y@'#0#1#7'Command'
|
||||||
+#3'Y'#2#8'ShortCut'#3'Z@'#0#1#7'Command'#3'Z'#2#8'ShortCut'#3'Z`'#0#1#7'Comm'
|
+#3#250#1#8'ShortCut'#3'Y`'#0#1#7'Command'#3'Y'#2#8'ShortCut'#3'Z@'#0#1#7'Com'
|
||||||
+'and'#3'-'#1#8'ShortCut'#3'0@'#0#1#7'Command'#3'.'#1#8'ShortCut'#3'1@'#0#1#7
|
+'mand'#3'Z'#2#8'ShortCut'#3'Z`'#0#1#7'Command'#3'-'#1#8'ShortCut'#3'0@'#0#1#7
|
||||||
+'Command'#3'/'#1#8'ShortCut'#3'2@'#0#1#7'Command'#3'0'#1#8'ShortCut'#3'3@'#0
|
+'Command'#3'.'#1#8'ShortCut'#3'1@'#0#1#7'Command'#3'/'#1#8'ShortCut'#3'2@'#0
|
||||||
+#1#7'Command'#3'1'#1#8'ShortCut'#3'4@'#0#1#7'Command'#3'2'#1#8'ShortCut'#3'5'
|
+#1#7'Command'#3'0'#1#8'ShortCut'#3'3@'#0#1#7'Command'#3'1'#1#8'ShortCut'#3'4'
|
||||||
+'@'#0#1#7'Command'#3'3'#1#8'ShortCut'#3'6@'#0#1#7'Command'#3'4'#1#8'ShortCut'
|
+'@'#0#1#7'Command'#3'2'#1#8'ShortCut'#3'5@'#0#1#7'Command'#3'3'#1#8'ShortCut'
|
||||||
+#3'7@'#0#1#7'Command'#3'5'#1#8'ShortCut'#3'8@'#0#1#7'Command'#3'6'#1#8'Short'
|
+#3'6@'#0#1#7'Command'#3'4'#1#8'ShortCut'#3'7@'#0#1#7'Command'#3'5'#1#8'Short'
|
||||||
+'Cut'#3'9@'#0#1#7'Command'#3'_'#1#8'ShortCut'#3'0`'#0#1#7'Command'#3'`'#1#8
|
+'Cut'#3'8@'#0#1#7'Command'#3'6'#1#8'ShortCut'#3'9@'#0#1#7'Command'#3'_'#1#8
|
||||||
+'ShortCut'#3'1`'#0#1#7'Command'#3'a'#1#8'ShortCut'#3'2`'#0#1#7'Command'#3'b'
|
+'ShortCut'#3'0`'#0#1#7'Command'#3'`'#1#8'ShortCut'#3'1`'#0#1#7'Command'#3'a'
|
||||||
+#1#8'ShortCut'#3'3`'#0#1#7'Command'#3'c'#1#8'ShortCut'#3'4`'#0#1#7'Command'#3
|
+#1#8'ShortCut'#3'2`'#0#1#7'Command'#3'b'#1#8'ShortCut'#3'3`'#0#1#7'Command'#3
|
||||||
+'d'#1#8'ShortCut'#3'5`'#0#1#7'Command'#3'e'#1#8'ShortCut'#3'6`'#0#1#7'Comman'
|
+'c'#1#8'ShortCut'#3'4`'#0#1#7'Command'#3'd'#1#8'ShortCut'#3'5`'#0#1#7'Comman'
|
||||||
+'d'#3'f'#1#8'ShortCut'#3'7`'#0#1#7'Command'#3'g'#1#8'ShortCut'#3'8`'#0#1#7'C'
|
+'d'#3'e'#1#8'ShortCut'#3'6`'#0#1#7'Command'#3'f'#1#8'ShortCut'#3'7`'#0#1#7'C'
|
||||||
+'ommand'#3'h'#1#8'ShortCut'#3'9`'#0#1#7'Command'#3#231#0#8'ShortCut'#3'N`'#0
|
+'ommand'#3'g'#1#8'ShortCut'#3'8`'#0#1#7'Command'#3'h'#1#8'ShortCut'#3'9`'#0#1
|
||||||
+#1#7'Command'#3#232#0#8'ShortCut'#3'C`'#0#1#7'Command'#3#233#0#8'ShortCut'#3
|
+#7'Command'#3#231#0#8'ShortCut'#3'N`'#0#1#7'Command'#3#232#0#8'ShortCut'#3'C'
|
||||||
+'L`'#0#1#7'Command'#3'd'#2#8'ShortCut'#2#9#0#1#7'Command'#3'e'#2#8'ShortCut'
|
+'`'#0#1#7'Command'#3#233#0#8'ShortCut'#3'L`'#0#1#7'Command'#3'd'#2#8'ShortCu'
|
||||||
+#3#9' '#0#1#7'Command'#3#250#0#8'ShortCut'#3'B`'#0#0#13'Lines.Strings'#1#6#14
|
+'t'#2#9#0#1#7'Command'#3'e'#2#8'ShortCut'#3#9' '#0#1#7'Command'#3#250#0#8'Sh'
|
||||||
+'DisplayPreview'#0#8'ReadOnly'#9#19'OnSpecialLineColors'#7#19'OnSpecialLineC'
|
+'ortCut'#3'B`'#0#0#13'Lines.Strings'#1#6#14'DisplayPreview'#0#8'ReadOnly'#9
|
||||||
+'olors'#0#0#0#5'TPage'#14'KeymappingPage'#7'Caption'#6#14'KeymappingPage'#11
|
+#22'SelectedColor.OnChange'#13#19'OnSpecialLineColors'#7#19'OnSpecialLineCol'
|
||||||
+'ClientWidth'#3'&'#2#12'ClientHeight'#3#207#1#0#6'TLabel'#19'KeyMappingHelpL'
|
+'ors'#0#0#0#5'TPage'#14'KeymappingPage'#7'Caption'#6#14'KeymappingPage'#11'C'
|
||||||
+'abel'#21'AnchorSideTop.Control'#7#28'KeyMappingChooseSchemeButton'#18'Ancho'
|
+'lientWidth'#3'&'#2#12'ClientHeight'#3#207#1#0#6'TLabel'#19'KeyMappingHelpLa'
|
||||||
+'rSideTop.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#2#20#3'Top'#2'2'#5'Widt'
|
+'bel'#21'AnchorSideTop.Control'#7#28'KeyMappingChooseSchemeButton'#18'Anchor'
|
||||||
+'h'#3#140#0#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2#15#19'BorderS'
|
+'SideTop.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#2#20#3'Top'#2'2'#5'Width'
|
||||||
+'pacing.Right'#2#6#7'Caption'#6#19'KeyMappingHelpLabel'#11'ParentColor'#8#0#0
|
+#3#140#0#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2#15#19'BorderSpac'
|
||||||
+#7'TButton'#28'KeyMappingChooseSchemeButton'#22'AnchorSideLeft.Control'#7#14
|
+'ing.Right'#2#6#7'Caption'#6#19'KeyMappingHelpLabel'#11'ParentColor'#8#0#0#7
|
||||||
+'KeymappingPage'#21'AnchorSideTop.Control'#7#14'KeymappingPage'#4'Left'#2#6#6
|
+'TButton'#28'KeyMappingChooseSchemeButton'#22'AnchorSideLeft.Control'#7#14'K'
|
||||||
|
+'eymappingPage'#21'AnchorSideTop.Control'#7#14'KeymappingPage'#4'Left'#2#6#6
|
||||||
+'Height'#2#29#3'Top'#2#6#5'Width'#3#232#0#8'AutoSize'#9#18'BorderSpacing.Lef'
|
+'Height'#2#29#3'Top'#2#6#5'Width'#3#232#0#8'AutoSize'#9#18'BorderSpacing.Lef'
|
||||||
+'t'#2#6#17'BorderSpacing.Top'#2#6#19'BorderSpacing.Right'#2#6#7'Caption'#6#28
|
+'t'#2#6#17'BorderSpacing.Top'#2#6#19'BorderSpacing.Right'#2#6#7'Caption'#6#28
|
||||||
+'KeyMappingChooseSchemeButton'#7'OnClick'#7'!KeyMappingChooseSchemeButtonCli'
|
+'KeyMappingChooseSchemeButton'#7'OnClick'#7'!KeyMappingChooseSchemeButtonCli'
|
||||||
+'ck'#8'TabOrder'#2#0#0#0#7'TButton KeyMappingConsistencyCheckButton'#21'Anch'
|
+'ck'#8'TabOrder'#2#0#0#0#7'TButton KeyMappingConsistencyCheckButton'#21'Anch'
|
||||||
+'orSideTop.Control'#7#14'KeymappingPage'#23'AnchorSideRight.Control'#7#14'Ke'
|
,'orSideTop.Control'#7#14'KeymappingPage'#23'AnchorSideRight.Control'#7#14'Ke'
|
||||||
,'ymappingPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3')'#1#6'Heig'
|
+'ymappingPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3')'#1#6'Heig'
|
||||||
+'ht'#2#29#3'Top'#2#6#5'Width'#3#247#0#7'Anchors'#11#5'akTop'#7'akRight'#0#8
|
+'ht'#2#29#3'Top'#2#6#5'Width'#3#247#0#7'Anchors'#11#5'akTop'#7'akRight'#0#8
|
||||||
+'AutoSize'#9#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2#6#19'BorderS'
|
+'AutoSize'#9#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2#6#19'BorderS'
|
||||||
+'pacing.Right'#2#6#7'Caption'#6' KeyMappingConsistencyCheckButton'#7'OnClick'
|
+'pacing.Right'#2#6#7'Caption'#6' KeyMappingConsistencyCheckButton'#7'OnClick'
|
||||||
@ -234,158 +235,158 @@ LazarusResources.Add('TEditorOptionsForm','FORMDATA',[
|
|||||||
+#3'Top'#3'g'#1#5'Width'#3#30#2#5'Align'#7#8'alBottom'#20'BorderSpacing.Aroun'
|
+#3'Top'#3'g'#1#5'Width'#3#30#2#5'Align'#7#8'alBottom'#20'BorderSpacing.Aroun'
|
||||||
+'d'#2#4#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#11'Font.He'
|
+'d'#2#4#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#11'Font.He'
|
||||||
+'ight'#2#240#9'Font.Name'#6#7'courier'#10'Font.Pitch'#7#7'fpFixed'#11'Parent'
|
+'ight'#2#240#9'Font.Name'#6#7'courier'#10'Font.Pitch'#7#7'fpFixed'#11'Parent'
|
||||||
+'Color'#8#8'TabOrder'#2#3#11'OnMouseDown'#7#19'ColorPreviewMouseUp'#23'Gutte'
|
+'Color'#8#8'TabOrder'#2#3#11'OnMouseDown'#7#19'ColorPreviewMouseUp'#24'BookM'
|
||||||
+'r.CodeFoldingWidth'#2#14#10'Keystrokes'#14#1#7'Command'#2#3#8'ShortCut'#2'&'
|
+'arkOptions.OnChange'#13#23'Gutter.CodeFoldingWidth'#2#14#10'Keystrokes'#14#1
|
||||||
+#0#1#7'Command'#2'g'#8'ShortCut'#3'& '#0#1#7'Command'#3#211#0#8'ShortCut'#3
|
+#7'Command'#2#3#8'ShortCut'#2'&'#0#1#7'Command'#2'g'#8'ShortCut'#3'& '#0#1#7
|
||||||
+'&@'#0#1#7'Command'#2#4#8'ShortCut'#2'('#0#1#7'Command'#2'h'#8'ShortCut'#3'('
|
+'Command'#3#211#0#8'ShortCut'#3'&@'#0#1#7'Command'#2#4#8'ShortCut'#2'('#0#1#7
|
||||||
+' '#0#1#7'Command'#3#212#0#8'ShortCut'#3'(@'#0#1#7'Command'#2#1#8'ShortCut'#2
|
+'Command'#2'h'#8'ShortCut'#3'( '#0#1#7'Command'#3#212#0#8'ShortCut'#3'(@'#0#1
|
||||||
+'%'#0#1#7'Command'#2'e'#8'ShortCut'#3'% '#0#1#7'Command'#2#5#8'ShortCut'#3'%'
|
+#7'Command'#2#1#8'ShortCut'#2'%'#0#1#7'Command'#2'e'#8'ShortCut'#3'% '#0#1#7
|
||||||
+'@'#0#1#7'Command'#2'i'#8'ShortCut'#3'%`'#0#1#7'Command'#2#2#8'ShortCut'#2
|
+'Command'#2#5#8'ShortCut'#3'%@'#0#1#7'Command'#2'i'#8'ShortCut'#3'%`'#0#1#7
|
||||||
+''''#0#1#7'Command'#2'f'#8'ShortCut'#3''' '#0#1#7'Command'#2#6#8'ShortCut'#3
|
+'Command'#2#2#8'ShortCut'#2''''#0#1#7'Command'#2'f'#8'ShortCut'#3''' '#0#1#7
|
||||||
+'''@'#0#1#7'Command'#2'j'#8'ShortCut'#3'''`'#0#1#7'Command'#2#10#8'ShortCut'
|
+'Command'#2#6#8'ShortCut'#3'''@'#0#1#7'Command'#2'j'#8'ShortCut'#3'''`'#0#1#7
|
||||||
+#2'"'#0#1#7'Command'#2'n'#8'ShortCut'#3'" '#0#1#7'Command'#2#14#8'ShortCut'#3
|
+'Command'#2#10#8'ShortCut'#2'"'#0#1#7'Command'#2'n'#8'ShortCut'#3'" '#0#1#7
|
||||||
+'"@'#0#1#7'Command'#2'r'#8'ShortCut'#3'"`'#0#1#7'Command'#2#9#8'ShortCut'#2
|
+'Command'#2#14#8'ShortCut'#3'"@'#0#1#7'Command'#2'r'#8'ShortCut'#3'"`'#0#1#7
|
||||||
+'!'#0#1#7'Command'#2'm'#8'ShortCut'#3'! '#0#1#7'Command'#2#13#8'ShortCut'#3
|
+'Command'#2#9#8'ShortCut'#2'!'#0#1#7'Command'#2'm'#8'ShortCut'#3'! '#0#1#7'C'
|
||||||
+'!@'#0#1#7'Command'#2'q'#8'ShortCut'#3'!`'#0#1#7'Command'#2#7#8'ShortCut'#2
|
+'ommand'#2#13#8'ShortCut'#3'!@'#0#1#7'Command'#2'q'#8'ShortCut'#3'!`'#0#1#7
|
||||||
+'$'#0#1#7'Command'#2'k'#8'ShortCut'#3'$ '#0#1#7'Command'#2#15#8'ShortCut'#3
|
+'Command'#2#7#8'ShortCut'#2'$'#0#1#7'Command'#2'k'#8'ShortCut'#3'$ '#0#1#7'C'
|
||||||
+'$@'#0#1#7'Command'#2's'#8'ShortCut'#3'$`'#0#1#7'Command'#2#8#8'ShortCut'#2
|
+'ommand'#2#15#8'ShortCut'#3'$@'#0#1#7'Command'#2's'#8'ShortCut'#3'$`'#0#1#7
|
||||||
+'#'#0#1#7'Command'#2'l'#8'ShortCut'#3'# '#0#1#7'Command'#2#16#8'ShortCut'#3
|
+'Command'#2#8#8'ShortCut'#2'#'#0#1#7'Command'#2'l'#8'ShortCut'#3'# '#0#1#7'C'
|
||||||
+'#@'#0#1#7'Command'#2't'#8'ShortCut'#3'#`'#0#1#7'Command'#3#223#0#8'ShortCut'
|
+'ommand'#2#16#8'ShortCut'#3'#@'#0#1#7'Command'#2't'#8'ShortCut'#3'#`'#0#1#7
|
||||||
+#2'-'#0#1#7'Command'#3#201#0#8'ShortCut'#3'-@'#0#1#7'Command'#3'\'#2#8'Short'
|
+'Command'#3#223#0#8'ShortCut'#2'-'#0#1#7'Command'#3#201#0#8'ShortCut'#3'-@'#0
|
||||||
+'Cut'#3'- '#0#1#7'Command'#3#246#1#8'ShortCut'#2'.'#0#1#7'Command'#3'['#2#8
|
+#1#7'Command'#3'\'#2#8'ShortCut'#3'- '#0#1#7'Command'#3#246#1#8'ShortCut'#2
|
||||||
+'ShortCut'#3'. '#0#1#7'Command'#3#245#1#8'ShortCut'#2#8#0#1#7'Command'#3#245
|
+'.'#0#1#7'Command'#3'['#2#8'ShortCut'#3'. '#0#1#7'Command'#3#245#1#8'ShortCu'
|
||||||
+#1#8'ShortCut'#3#8' '#0#1#7'Command'#3#248#1#8'ShortCut'#3#8'@'#0#1#7'Comman'
|
+'t'#2#8#0#1#7'Command'#3#245#1#8'ShortCut'#3#8' '#0#1#7'Command'#3#248#1#8'S'
|
||||||
+'d'#3'Y'#2#8'ShortCut'#4#8#128#0#0#0#1#7'Command'#3'Z'#2#8'ShortCut'#4#8#160
|
+'hortCut'#3#8'@'#0#1#7'Command'#3'Y'#2#8'ShortCut'#4#8#128#0#0#0#1#7'Command'
|
||||||
+#0#0#0#1#7'Command'#3#253#1#8'ShortCut'#2#13#0#1#7'Command'#3#199#0#8'ShortC'
|
,#3'Z'#2#8'ShortCut'#4#8#160#0#0#0#1#7'Command'#3#253#1#8'ShortCut'#2#13#0#1#7
|
||||||
,'ut'#3'A@'#0#1#7'Command'#3#201#0#8'ShortCut'#3'C@'#0#1#7'Command'#3'b'#2#8
|
+'Command'#3#199#0#8'ShortCut'#3'A@'#0#1#7'Command'#3#201#0#8'ShortCut'#3'C@'
|
||||||
+'ShortCut'#3'I`'#0#1#7'Command'#3#253#1#8'ShortCut'#3'M@'#0#1#7'Command'#3
|
+#0#1#7'Command'#3'b'#2#8'ShortCut'#3'I`'#0#1#7'Command'#3#253#1#8'ShortCut'#3
|
||||||
+#254#1#8'ShortCut'#3'N@'#0#1#7'Command'#3#247#1#8'ShortCut'#3'T@'#0#1#7'Comm'
|
+'M@'#0#1#7'Command'#3#254#1#8'ShortCut'#3'N@'#0#1#7'Command'#3#247#1#8'Short'
|
||||||
+'and'#3'c'#2#8'ShortCut'#3'U`'#0#1#7'Command'#3'\'#2#8'ShortCut'#3'V@'#0#1#7
|
+'Cut'#3'T@'#0#1#7'Command'#3'c'#2#8'ShortCut'#3'U`'#0#1#7'Command'#3'\'#2#8
|
||||||
+'Command'#3'['#2#8'ShortCut'#3'X@'#0#1#7'Command'#3#251#1#8'ShortCut'#3'Y@'#0
|
+'ShortCut'#3'V@'#0#1#7'Command'#3'['#2#8'ShortCut'#3'X@'#0#1#7'Command'#3#251
|
||||||
+#1#7'Command'#3#250#1#8'ShortCut'#3'Y`'#0#1#7'Command'#3'Y'#2#8'ShortCut'#3
|
+#1#8'ShortCut'#3'Y@'#0#1#7'Command'#3#250#1#8'ShortCut'#3'Y`'#0#1#7'Command'
|
||||||
+'Z@'#0#1#7'Command'#3'Z'#2#8'ShortCut'#3'Z`'#0#1#7'Command'#3'-'#1#8'ShortCu'
|
+#3'Y'#2#8'ShortCut'#3'Z@'#0#1#7'Command'#3'Z'#2#8'ShortCut'#3'Z`'#0#1#7'Comm'
|
||||||
+'t'#3'0@'#0#1#7'Command'#3'.'#1#8'ShortCut'#3'1@'#0#1#7'Command'#3'/'#1#8'Sh'
|
+'and'#3'-'#1#8'ShortCut'#3'0@'#0#1#7'Command'#3'.'#1#8'ShortCut'#3'1@'#0#1#7
|
||||||
+'ortCut'#3'2@'#0#1#7'Command'#3'0'#1#8'ShortCut'#3'3@'#0#1#7'Command'#3'1'#1
|
+'Command'#3'/'#1#8'ShortCut'#3'2@'#0#1#7'Command'#3'0'#1#8'ShortCut'#3'3@'#0
|
||||||
+#8'ShortCut'#3'4@'#0#1#7'Command'#3'2'#1#8'ShortCut'#3'5@'#0#1#7'Command'#3
|
+#1#7'Command'#3'1'#1#8'ShortCut'#3'4@'#0#1#7'Command'#3'2'#1#8'ShortCut'#3'5'
|
||||||
+'3'#1#8'ShortCut'#3'6@'#0#1#7'Command'#3'4'#1#8'ShortCut'#3'7@'#0#1#7'Comman'
|
+'@'#0#1#7'Command'#3'3'#1#8'ShortCut'#3'6@'#0#1#7'Command'#3'4'#1#8'ShortCut'
|
||||||
+'d'#3'5'#1#8'ShortCut'#3'8@'#0#1#7'Command'#3'6'#1#8'ShortCut'#3'9@'#0#1#7'C'
|
+#3'7@'#0#1#7'Command'#3'5'#1#8'ShortCut'#3'8@'#0#1#7'Command'#3'6'#1#8'Short'
|
||||||
+'ommand'#3'_'#1#8'ShortCut'#3'0`'#0#1#7'Command'#3'`'#1#8'ShortCut'#3'1`'#0#1
|
+'Cut'#3'9@'#0#1#7'Command'#3'_'#1#8'ShortCut'#3'0`'#0#1#7'Command'#3'`'#1#8
|
||||||
+#7'Command'#3'a'#1#8'ShortCut'#3'2`'#0#1#7'Command'#3'b'#1#8'ShortCut'#3'3`'
|
+'ShortCut'#3'1`'#0#1#7'Command'#3'a'#1#8'ShortCut'#3'2`'#0#1#7'Command'#3'b'
|
||||||
+#0#1#7'Command'#3'c'#1#8'ShortCut'#3'4`'#0#1#7'Command'#3'd'#1#8'ShortCut'#3
|
+#1#8'ShortCut'#3'3`'#0#1#7'Command'#3'c'#1#8'ShortCut'#3'4`'#0#1#7'Command'#3
|
||||||
+'5`'#0#1#7'Command'#3'e'#1#8'ShortCut'#3'6`'#0#1#7'Command'#3'f'#1#8'ShortCu'
|
+'d'#1#8'ShortCut'#3'5`'#0#1#7'Command'#3'e'#1#8'ShortCut'#3'6`'#0#1#7'Comman'
|
||||||
+'t'#3'7`'#0#1#7'Command'#3'g'#1#8'ShortCut'#3'8`'#0#1#7'Command'#3'h'#1#8'Sh'
|
+'d'#3'f'#1#8'ShortCut'#3'7`'#0#1#7'Command'#3'g'#1#8'ShortCut'#3'8`'#0#1#7'C'
|
||||||
+'ortCut'#3'9`'#0#1#7'Command'#3#231#0#8'ShortCut'#3'N`'#0#1#7'Command'#3#232
|
+'ommand'#3'h'#1#8'ShortCut'#3'9`'#0#1#7'Command'#3#231#0#8'ShortCut'#3'N`'#0
|
||||||
+#0#8'ShortCut'#3'C`'#0#1#7'Command'#3#233#0#8'ShortCut'#3'L`'#0#1#7'Command'
|
+#1#7'Command'#3#232#0#8'ShortCut'#3'C`'#0#1#7'Command'#3#233#0#8'ShortCut'#3
|
||||||
+#3'd'#2#8'ShortCut'#2#9#0#1#7'Command'#3'e'#2#8'ShortCut'#3#9' '#0#1#7'Comma'
|
+'L`'#0#1#7'Command'#3'd'#2#8'ShortCut'#2#9#0#1#7'Command'#3'e'#2#8'ShortCut'
|
||||||
+'nd'#3#250#0#8'ShortCut'#3'B`'#0#0#13'Lines.Strings'#1#6#12'ColorPreview'#0#8
|
+#3#9' '#0#1#7'Command'#3#250#0#8'ShortCut'#3'B`'#0#0#13'Lines.Strings'#1#6#12
|
||||||
+'ReadOnly'#9#19'OnSpecialLineColors'#7#19'OnSpecialLineColors'#0#0#8'TListBo'
|
+'ColorPreview'#0#8'ReadOnly'#9#22'SelectedColor.OnChange'#13#19'OnSpecialLin'
|
||||||
+'x'#19'ColorElementListBox'#4'Left'#2#3#6'Height'#3#242#0#3'Top'#2'l'#5'Widt'
|
+'eColors'#7#19'OnSpecialLineColors'#0#0#8'TListBox'#19'ColorElementListBox'#4
|
||||||
+'h'#3#200#0#16'ClickOnSelChange'#8#7'OnClick'#7#24'ColorElementListBoxClick'
|
+'Left'#2#3#6'Height'#3#242#0#3'Top'#2'l'#5'Width'#3#200#0#16'ClickOnSelChang'
|
||||||
+#17'OnSelectionChange'#7'"ColorElementListBoxSelectionChange'#8'TabOrder'#2#4
|
+'e'#8#7'OnClick'#7#24'ColorElementListBoxClick'#17'OnSelectionChange'#7'"Col'
|
||||||
+#8'TopIndex'#2#255#0#0#7'TButton'#27'SetAttributeToDefaultButton'#23'AnchorS'
|
+'orElementListBoxSelectionChange'#8'TabOrder'#2#4#8'TopIndex'#2#255#0#0#7'TB'
|
||||||
+'ideRight.Control'#7#9'ColorPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#4
|
+'utton'#27'SetAttributeToDefaultButton'#23'AnchorSideRight.Control'#7#9'Colo'
|
||||||
+'Left'#3#212#0#6'Height'#2#25#3'Top'#2'Z'#5'Width'#3'L'#1#7'Anchors'#11#5'ak'
|
+'rPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3#212#0#6'Height'#2
|
||||||
+'Top'#6'akLeft'#7'akRight'#0#20'BorderSpacing.Around'#2#6#7'Caption'#6#27'Se'
|
+#25#3'Top'#2'Z'#5'Width'#3'L'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0
|
||||||
+'tAttributeToDefaultButton'#7'OnClick'#7' SetAttributeToDefaultButtonClick'#8
|
+#20'BorderSpacing.Around'#2#6#7'Caption'#6#27'SetAttributeToDefaultButton'#7
|
||||||
+'TabOrder'#2#5#0#0#7'TButton'#31'SetAllAttributesToDefaultButton'#23'AnchorS'
|
+'OnClick'#7' SetAttributeToDefaultButtonClick'#8'TabOrder'#2#5#0#0#7'TButton'
|
||||||
+'ideRight.Control'#7#9'ColorPage'#20'AnchorSideRight.Side'#7#9'asrBottom'#4
|
+#31'SetAllAttributesToDefaultButton'#23'AnchorSideRight.Control'#7#9'ColorPa'
|
||||||
+'Left'#3#212#0#6'Height'#2#25#3'Top'#2'z'#5'Width'#3'L'#1#7'Anchors'#11#5'ak'
|
+'ge'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3#212#0#6'Height'#2#25#3
|
||||||
+'Top'#6'akLeft'#7'akRight'#0#20'BorderSpacing.Around'#2#6#7'Caption'#6#31'Se'
|
+'Top'#2'z'#5'Width'#3'L'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#20
|
||||||
+'tAllAttributesToDefaultButton'#7'OnClick'#7'$SetAllAttributesToDefaultButto'
|
+'BorderSpacing.Around'#2#6#7'Caption'#6#31'SetAllAttributesToDefaultButton'#7
|
||||||
+'nClick'#8'TabOrder'#2#6#0#0#9'TGroupBox'#22'TextAttributesGroupBox'#23'Anch'
|
+'OnClick'#7'$SetAllAttributesToDefaultButtonClick'#8'TabOrder'#2#6#0#0#9'TGr'
|
||||||
+'orSideRight.Control'#7#9'ColorPage'#20'AnchorSideRight.Side'#7#9'asrBottom'
|
+'oupBox'#22'TextAttributesGroupBox'#23'AnchorSideRight.Control'#7#9'ColorPag'
|
||||||
+#24'AnchorSideBottom.Control'#7#12'ColorPreview'#4'Left'#3#212#0#6'Height'#3
|
+'e'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'AnchorSideBottom.Control'#7#12
|
||||||
+#199#0#3'Top'#3#154#0#5'Width'#3'L'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akR'
|
+'ColorPreview'#4'Left'#3#212#0#6'Height'#3#199#0#3'Top'#3#154#0#5'Width'#3'L'
|
||||||
+'ight'#8'akBottom'#0#20'BorderSpacing.Around'#2#6#7'Caption'#6#10'Attributes'
|
+#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpacin'
|
||||||
+#12'ClientHeight'#3#180#0#11'ClientWidth'#3'H'#1#8'TabOrder'#2#7#0#6'TLabel'
|
+'g.Around'#2#6#7'Caption'#6#10'Attributes'#12'ClientHeight'#3#180#0#11'Clien'
|
||||||
+#15'ForeGroundLabel'#4'Left'#2#8#6'Height'#2#20#5'Width'#2'n'#7'Caption'#6#15
|
+'tWidth'#3'H'#1#8'TabOrder'#2#7#0#6'TLabel'#15'ForeGroundLabel'#4'Left'#2#8#6
|
||||||
+'ForeGroundLabel'#11'ParentColor'#8#0#0#12'TColorButton'#21'ForegroundColorB'
|
+'Height'#2#20#5'Width'#2'n'#7'Caption'#6#15'ForeGroundLabel'#11'ParentColor'
|
||||||
+'utton'#21'AnchorSideTop.Control'#7#15'ForeGroundLabel'#18'AnchorSideTop.Sid'
|
+#8#0#0#12'TColorButton'#21'ForegroundColorButton'#21'AnchorSideTop.Control'#7
|
||||||
+'e'#7#9'asrBottom'#4'Left'#2#8#6'Height'#2#21#3'Top'#2#22#5'Width'#2'K'#17'B'
|
+#15'ForeGroundLabel'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#8#6'Hei'
|
||||||
+'orderSpacing.Top'#2#2#11'BorderWidth'#2#2#15'ButtonColorSize'#2#16#5'Color'
|
+'ght'#2#21#3'Top'#2#22#5'Width'#2'K'#17'BorderSpacing.Top'#2#2#11'BorderWidt'
|
||||||
+#7#9'clBtnFace'#14'OnColorChanged'#7#23'ColorButtonColorChanged'#0#0#12'TCol'
|
+'h'#2#2#15'ButtonColorSize'#2#16#5'Color'#7#9'clBtnFace'#14'OnColorChanged'#7
|
||||||
+'orButton'#21'BackGroundColorButton'#21'AnchorSideTop.Control'#7#15'BackGrou'
|
+#23'ColorButtonColorChanged'#0#0#12'TColorButton'#21'BackGroundColorButton'
|
||||||
+'ndLabel'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#2#21#3
|
+#21'AnchorSideTop.Control'#7#15'BackGroundLabel'#18'AnchorSideTop.Side'#7#9
|
||||||
+'Top'#2'F'#5'Width'#2'K'#17'BorderSpacing.Top'#2#2#11'BorderWidth'#2#2#15'Bu'
|
+'asrBottom'#4'Left'#2#8#6'Height'#2#21#3'Top'#2'F'#5'Width'#2'K'#17'BorderSp'
|
||||||
+'ttonColorSize'#2#16#5'Color'#7#9'clBtnFace'#14'OnColorChanged'#7#23'ColorBu'
|
+'acing.Top'#2#2#11'BorderWidth'#2#2#15'ButtonColorSize'#2#16#5'Color'#7#9'cl'
|
||||||
+'ttonColorChanged'#0#0#6'TLabel'#15'BackGroundLabel'#21'AnchorSideTop.Contro'
|
+'BtnFace'#14'OnColorChanged'#7#23'ColorButtonColorChanged'#0#0#6'TLabel'#15
|
||||||
+'l'#7#15'ForeGroundLabel'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#8#6
|
+'BackGroundLabel'#21'AnchorSideTop.Control'#7#15'ForeGroundLabel'#18'AnchorS'
|
||||||
+'Height'#2#20#3'Top'#2'0'#5'Width'#2'q'#17'BorderSpacing.Top'#2#28#7'Caption'
|
+'ideTop.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#2#20#3'Top'#2'0'#5'Width'
|
||||||
+#6#15'BackGroundLabel'#11'ParentColor'#8#0#0#9'TCheckBox'#28'ForeGroundUseDe'
|
+#2'q'#17'BorderSpacing.Top'#2#28#7'Caption'#6#15'BackGroundLabel'#11'ParentC'
|
||||||
+'faultCheckBox'#21'AnchorSideTop.Control'#7#15'ForeGroundLabel'#18'AnchorSid'
|
+'olor'#8#0#0#9'TCheckBox'#28'ForeGroundUseDefaultCheckBox'#21'AnchorSideTop.'
|
||||||
+'eTop.Side'#7#9'asrBottom'#4'Left'#2'^'#6'Height'#2#22#3'Top'#2#22#5'Width'#3
|
+'Control'#7#15'ForeGroundLabel'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'
|
||||||
+#201#0#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#17'BorderSpacing.Top'#2
|
+#2'^'#6'Height'#2#22#3'Top'#2#22#5'Width'#3#201#0#7'Anchors'#11#5'akTop'#6'a'
|
||||||
+#2#7'Caption'#6#28'ForeGroundUseDefaultCheckBox'#8'OnChange'#7#23'GeneralChe'
|
+'kLeft'#7'akRight'#0#17'BorderSpacing.Top'#2#2#7'Caption'#6#28'ForeGroundUse'
|
||||||
+'ckBoxOnChange'#8'TabOrder'#2#0#0#0#9'TCheckBox'#28'BackGroundUseDefaultChec'
|
+'DefaultCheckBox'#8'OnChange'#7#23'GeneralCheckBoxOnChange'#8'TabOrder'#2#0#0
|
||||||
+'kBox'#21'AnchorSideTop.Control'#7#15'BackGroundLabel'#18'AnchorSideTop.Side'
|
+#0#9'TCheckBox'#28'BackGroundUseDefaultCheckBox'#21'AnchorSideTop.Control'#7
|
||||||
+#7#9'asrBottom'#4'Left'#2'^'#6'Height'#2#22#3'Top'#2'D'#5'Width'#3#201#0#7'A'
|
+#15'BackGroundLabel'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2'^'#6'He'
|
||||||
+'nchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#19'BorderSpacing.Right'#2#2#7'Ca'
|
+'ight'#2#22#3'Top'#2'D'#5'Width'#3#201#0#7'Anchors'#11#5'akTop'#6'akLeft'#7
|
||||||
+'ption'#6#28'BackGroundUseDefaultCheckBox'#8'OnChange'#7#23'GeneralCheckBoxO'
|
,'akRight'#0#19'BorderSpacing.Right'#2#2#7'Caption'#6#28'BackGroundUseDefault'
|
||||||
,'nChange'#8'TabOrder'#2#1#0#0#9'TCheckBox'#16'TextBoldCheckBox'#4'Left'#2#6#6
|
+'CheckBox'#8'OnChange'#7#23'GeneralCheckBoxOnChange'#8'TabOrder'#2#1#0#0#9'T'
|
||||||
+'Height'#2#22#3'Top'#2'`'#5'Width'#3'<'#1#5'Align'#7#8'alBottom'#20'BorderSp'
|
+'CheckBox'#16'TextBoldCheckBox'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'`'#5'Wid'
|
||||||
+'acing.Around'#2#6#7'Caption'#6#16'TextBoldCheckBox'#8'OnChange'#7#23'Genera'
|
+'th'#3'<'#1#5'Align'#7#8'alBottom'#20'BorderSpacing.Around'#2#6#7'Caption'#6
|
||||||
+'lCheckBoxOnChange'#8'TabOrder'#2#2#0#0#9'TCheckBox'#18'TextItalicCheckBox'#4
|
+#16'TextBoldCheckBox'#8'OnChange'#7#23'GeneralCheckBoxOnChange'#8'TabOrder'#2
|
||||||
+'Left'#2#6#6'Height'#2#22#3'Top'#2'|'#5'Width'#3'<'#1#5'Align'#7#8'alBottom'
|
+#2#0#0#9'TCheckBox'#18'TextItalicCheckBox'#4'Left'#2#6#6'Height'#2#22#3'Top'
|
||||||
+#20'BorderSpacing.Around'#2#6#7'Caption'#6#18'TextItalicCheckBox'#8'OnChange'
|
+#2'|'#5'Width'#3'<'#1#5'Align'#7#8'alBottom'#20'BorderSpacing.Around'#2#6#7
|
||||||
+#7#23'GeneralCheckBoxOnChange'#8'TabOrder'#2#3#0#0#9'TCheckBox'#21'TextUnder'
|
+'Caption'#6#18'TextItalicCheckBox'#8'OnChange'#7#23'GeneralCheckBoxOnChange'
|
||||||
+'lineCheckBox'#4'Left'#2#6#6'Height'#2#22#3'Top'#3#152#0#5'Width'#3'<'#1#5'A'
|
+#8'TabOrder'#2#3#0#0#9'TCheckBox'#21'TextUnderlineCheckBox'#4'Left'#2#6#6'He'
|
||||||
+'lign'#7#8'alBottom'#20'BorderSpacing.Around'#2#6#7'Caption'#6#21'TextUnderl'
|
+'ight'#2#22#3'Top'#3#152#0#5'Width'#3'<'#1#5'Align'#7#8'alBottom'#20'BorderS'
|
||||||
+'ineCheckBox'#8'OnChange'#7#23'GeneralCheckBoxOnChange'#8'TabOrder'#2#4#0#0#0
|
+'pacing.Around'#2#6#7'Caption'#6#21'TextUnderlineCheckBox'#8'OnChange'#7#23
|
||||||
+#0#5'TPage'#13'CodetoolsPage'#7'Caption'#6#13'CodetoolsPage'#11'ClientWidth'
|
+'GeneralCheckBoxOnChange'#8'TabOrder'#2#4#0#0#0#0#5'TPage'#13'CodetoolsPage'
|
||||||
+#3'&'#2#12'ClientHeight'#3#207#1#0#9'TGroupBox'#25'AutomaticFeaturesGroupBox'
|
+#7'Caption'#6#13'CodetoolsPage'#11'ClientWidth'#3'&'#2#12'ClientHeight'#3#207
|
||||||
+#4'Left'#2#6#6'Height'#3#195#1#3'Top'#2#6#5'Width'#3#26#2#5'Align'#7#8'alCli'
|
+#1#0#9'TGroupBox'#25'AutomaticFeaturesGroupBox'#4'Left'#2#6#6'Height'#3#195#1
|
||||||
+'ent'#20'BorderSpacing.Around'#2#6#7'Caption'#6#25'AutomaticFeaturesGroupBox'
|
+#3'Top'#2#6#5'Width'#3#26#2#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2
|
||||||
+#12'ClientHeight'#3#176#1#11'ClientWidth'#3#22#2#8'TabOrder'#2#0#0#6'TLabel'
|
+#6#7'Caption'#6#25'AutomaticFeaturesGroupBox'#12'ClientHeight'#3#176#1#11'Cl'
|
||||||
+#14'AutoDelayLabel'#4'Left'#2#6#6'Height'#2#20#3'Top'#3#188#0#5'Width'#3#10#2
|
+'ientWidth'#3#22#2#8'TabOrder'#2#0#0#6'TLabel'#14'AutoDelayLabel'#4'Left'#2#6
|
||||||
+#5'Align'#7#5'alTop'#17'BorderSpacing.Top'#2#24#20'BorderSpacing.Around'#2#6
|
+#6'Height'#2#20#3'Top'#3#188#0#5'Width'#3#10#2#5'Align'#7#5'alTop'#17'Border'
|
||||||
+#7'Caption'#6#14'AutoDelayLabel'#11'ParentColor'#8#0#0#6'TLabel'#17'AutoDela'
|
+'Spacing.Top'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#14'AutoDelayLab'
|
||||||
+'yMinLabel'#21'AnchorSideTop.Control'#7#17'AutoDelayTrackBar'#18'AnchorSideT'
|
+'el'#11'ParentColor'#8#0#0#6'TLabel'#17'AutoDelayMinLabel'#21'AnchorSideTop.'
|
||||||
+'op.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#20#3'Top'#3#160#0#5'Width'#2
|
+'Control'#7#17'AutoDelayTrackBar'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Le'
|
||||||
+'{'#17'BorderSpacing.Top'#2#2#7'Caption'#6#17'AutoDelayMinLabel'#11'ParentCo'
|
+'ft'#2#6#6'Height'#2#20#3'Top'#3#160#0#5'Width'#2'{'#17'BorderSpacing.Top'#2
|
||||||
+'lor'#8#0#0#6'TLabel'#17'AutoDelayMaxLabel'#21'AnchorSideTop.Control'#7#17'A'
|
+#2#7'Caption'#6#17'AutoDelayMinLabel'#11'ParentColor'#8#0#0#6'TLabel'#17'Aut'
|
||||||
+'utoDelayTrackBar'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#3#133#1#6'H'
|
+'oDelayMaxLabel'#21'AnchorSideTop.Control'#7#17'AutoDelayTrackBar'#18'Anchor'
|
||||||
+'eight'#2#20#3'Top'#3#160#0#5'Width'#2''#9'Alignment'#7#14'taRightJustify'#7
|
+'SideTop.Side'#7#9'asrBottom'#4'Left'#3#133#1#6'Height'#2#20#3'Top'#3#160#0#5
|
||||||
+'Anchors'#11#5'akTop'#7'akRight'#0#17'BorderSpacing.Top'#2#2#7'Caption'#6#17
|
+'Width'#2''#9'Alignment'#7#14'taRightJustify'#7'Anchors'#11#5'akTop'#7'akRi'
|
||||||
+'AutoDelayMaxLabel'#11'ParentColor'#8#0#0#9'TCheckBox AutoIdentifierCompleti'
|
+'ght'#0#17'BorderSpacing.Top'#2#2#7'Caption'#6#17'AutoDelayMaxLabel'#11'Pare'
|
||||||
+'onCheckBox'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#6#5'Width'#3#10#2#5'Align'#7
|
+'ntColor'#8#0#0#9'TCheckBox AutoIdentifierCompletionCheckBox'#4'Left'#2#6#6
|
||||||
+#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6' AutoIdentifierCompletio'
|
+'Height'#2#22#3'Top'#2#6#5'Width'#3#10#2#5'Align'#7#5'alTop'#20'BorderSpacin'
|
||||||
+'nCheckBox'#8'TabOrder'#2#0#0#0#9'TCheckBox'#26'AutoCodeParametersCheckBox'#4
|
+'g.Around'#2#6#7'Caption'#6' AutoIdentifierCompletionCheckBox'#8'TabOrder'#2
|
||||||
+'Left'#2#6#6'Height'#2#22#3'Top'#2'>'#5'Width'#3#10#2#5'Align'#7#5'alTop'#20
|
+#0#0#0#9'TCheckBox'#26'AutoCodeParametersCheckBox'#4'Left'#2#6#6'Height'#2#22
|
||||||
+'BorderSpacing.Around'#2#6#7'Caption'#6#26'AutoCodeParametersCheckBox'#7'Ena'
|
+#3'Top'#2'>'#5'Width'#3#10#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6
|
||||||
+'bled'#8#8'TabOrder'#2#1#0#0#9'TCheckBox'#27'AutoToolTipExprEvalCheckBox'#4
|
+#7'Caption'#6#26'AutoCodeParametersCheckBox'#7'Enabled'#8#8'TabOrder'#2#1#0#0
|
||||||
+'Left'#2#6#6'Height'#2#22#3'Top'#2'Z'#5'Width'#3#10#2#5'Align'#7#5'alTop'#20
|
+#9'TCheckBox'#27'AutoToolTipExprEvalCheckBox'#4'Left'#2#6#6'Height'#2#22#3'T'
|
||||||
+'BorderSpacing.Around'#2#6#7'Caption'#6#27'AutoToolTipExprEvalCheckBox'#8'Ta'
|
+'op'#2'Z'#5'Width'#3#10#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7
|
||||||
+'bOrder'#2#2#0#0#9'TCheckBox'#28'AutoToolTipSymbToolsCheckBox'#4'Left'#2#6#6
|
+'Caption'#6#27'AutoToolTipExprEvalCheckBox'#8'TabOrder'#2#2#0#0#9'TCheckBox'
|
||||||
+'Height'#2#22#3'Top'#2'"'#5'Width'#3#10#2#5'Align'#7#5'alTop'#20'BorderSpaci'
|
+#28'AutoToolTipSymbToolsCheckBox'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'"'#5'W'
|
||||||
+'ng.Around'#2#6#7'Caption'#6#28'AutoToolTipSymbToolsCheckBox'#8'TabOrder'#2#3
|
+'idth'#3#10#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6
|
||||||
+#0#0#9'TTrackBar'#17'AutoDelayTrackBar'#4'Left'#2#6#6'Height'#2'('#3'Top'#2
|
+#28'AutoToolTipSymbToolsCheckBox'#8'TabOrder'#2#3#0#0#9'TTrackBar'#17'AutoDe'
|
||||||
+'v'#5'Width'#3#10#2#9'Frequency'#3#250#0#3'Max'#3#160#15#3'Min'#3#244#1#8'Po'
|
+'layTrackBar'#4'Left'#2#6#6'Height'#2'('#3'Top'#2'v'#5'Width'#3#10#2#9'Frequ'
|
||||||
+'sition'#3#244#1#8'ScalePos'#7#5'trTop'#5'Align'#7#5'alTop'#18'BorderSpacing'
|
+'ency'#3#250#0#3'Max'#3#160#15#3'Min'#3#244#1#8'Position'#3#244#1#8'ScalePos'
|
||||||
+'.Left'#2#6#17'BorderSpacing.Top'#2#6#19'BorderSpacing.Right'#2#6#8'TabOrder'
|
+#7#5'trTop'#5'Align'#7#5'alTop'#18'BorderSpacing.Left'#2#6#17'BorderSpacing.'
|
||||||
+#2#4#0#0#0#0#5'TPage'#11'CodeFolding'#7'Caption'#6#11'CodeFolding'#11'Client'
|
+'Top'#2#6#19'BorderSpacing.Right'#2#6#8'TabOrder'#2#4#0#0#0#0#5'TPage'#11'Co'
|
||||||
+'Width'#3'&'#2#12'ClientHeight'#3#207#1#0#6'TLabel'#19'lblDividerDrawLevel'#4
|
+'deFolding'#7'Caption'#6#11'CodeFolding'#11'ClientWidth'#3'&'#2#12'ClientHei'
|
||||||
+'Left'#2#6#6'Height'#2#20#3'Top'#2'G'#5'Width'#2'|'#7'Caption'#6#19'lblDivid'
|
+'ght'#3#207#1#0#6'TLabel'#19'lblDividerDrawLevel'#4'Left'#2#6#6'Height'#2#20
|
||||||
+'erDrawLevel'#11'ParentColor'#8#0#0#6'TBevel'#6'Bevel1'#4'Left'#2#6#6'Height'
|
+#3'Top'#2'G'#5'Width'#2'|'#7'Caption'#6#19'lblDividerDrawLevel'#11'ParentCol'
|
||||||
+#2#2#3'Top'#2'1'#5'Width'#3#25#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'
|
+'or'#8#0#0#6'TBevel'#6'Bevel1'#4'Left'#2#6#6'Height'#2#2#3'Top'#2'1'#5'Width'
|
||||||
+#0#0#0#9'TCheckBox'#21'chkCodeFoldingEnabled'#4'Left'#2#6#6'Height'#2#22#3'T'
|
+#3#25#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#0#0#9'TCheckBox'#21'ch'
|
||||||
+'op'#2#23#5'Width'#3#175#0#7'Caption'#6#21'chkCodeFoldingEnabled'#8'OnChange'
|
+'kCodeFoldingEnabled'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#23#5'Width'#3#175#0
|
||||||
+#7#27'chkCodeFoldingEnabledChange'#8'TabOrder'#2#0#0#0#9'TSpinEdit'#18'edDiv'
|
+#7'Caption'#6#21'chkCodeFoldingEnabled'#8'OnChange'#7#27'chkCodeFoldingEnabl'
|
||||||
+'iderDrawLevel'#4'Left'#3#211#0#6'Height'#2#23#3'Top'#2'B'#5'Width'#2'2'#8'M'
|
+'edChange'#8'TabOrder'#2#0#0#0#9'TSpinEdit'#18'edDividerDrawLevel'#4'Left'#3
|
||||||
+'axValue'#2#10#8'MinValue'#2#1#8'TabOrder'#2#1#5'Value'#2#1#0#0#0#0#6'TPanel'
|
+#211#0#6'Height'#2#23#3'Top'#2'B'#5'Width'#2'2'#8'MaxValue'#2#10#8'MinValue'
|
||||||
+#8'BtnPanel'#6'Height'#2')'#3'Top'#3#244#1#5'Width'#3'*'#2#5'Align'#7#8'alBo'
|
+#2#1#8'TabOrder'#2#1#5'Value'#2#1#0#0#0#0#6'TPanel'#8'BtnPanel'#6'Height'#2
|
||||||
+'ttom'#8'AutoSize'#9#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2')'#11'Cli'
|
+')'#3'Top'#3#244#1#5'Width'#3'*'#2#5'Align'#7#8'alBottom'#8'AutoSize'#9#10'B'
|
||||||
+'entWidth'#3'*'#2#8'TabOrder'#2#1#0#7'TButton'#8'OkButton'#21'AnchorSideBott'
|
+'evelOuter'#7#6'bvNone'#12'ClientHeight'#2')'#11'ClientWidth'#3'*'#2#8'TabOr'
|
||||||
+'om.Side'#7#9'asrBottom'#4'Left'#3'q'#1#6'Height'#2#29#3'Top'#2#6#5'Width'#2
|
+'der'#2#1#0#7'TButton'#8'OkButton'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4
|
||||||
+'K'#5'Align'#7#7'alRight'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Capti'
|
+'Left'#3'q'#1#6'Height'#2#29#3'Top'#2#6#5'Width'#2'K'#5'Align'#7#7'alRight'#8
|
||||||
+'on'#6#8'OkButton'#20'Constraints.MinWidth'#2'K'#7'OnClick'#7#13'OkButtonCli'
|
+'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#8'OkButton'#20'Constr'
|
||||||
+'ck'#8'TabOrder'#2#0#0#0#7'TButton'#12'CancelButton'#20'AnchorSideRight.Side'
|
+'aints.MinWidth'#2'K'#7'OnClick'#7#13'OkButtonClick'#8'TabOrder'#2#0#0#0#7'T'
|
||||||
+#7#9'asrBottom'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#3#194#1#6'H'
|
+'Button'#12'CancelButton'#20'AnchorSideRight.Side'#7#9'asrBottom'#21'AnchorS'
|
||||||
+'eight'#2#29#3'Top'#2#6#5'Width'#2'b'#5'Align'#7#7'alRight'#8'AutoSize'#9#20
|
+'ideBottom.Side'#7#9'asrBottom'#4'Left'#3#194#1#6'Height'#2#29#3'Top'#2#6#5
|
||||||
+'BorderSpacing.Around'#2#6#7'Caption'#6#12'CancelButton'#20'Constraints.MinW'
|
+'Width'#2'b'#5'Align'#7#7'alRight'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6
|
||||||
+'idth'#2'K'#7'OnClick'#7#17'CancelButtonClick'#8'TabOrder'#2#1#0#0#0#10'TIma'
|
+#7'Caption'#6#12'CancelButton'#20'Constraints.MinWidth'#2'K'#7'OnClick'#7#17
|
||||||
+'geList'#9'ImageList'#6'Height'#2#21#5'Width'#2#21#4'left'#3#144#1#3'top'#2
|
+'CancelButtonClick'#8'TabOrder'#2#1#0#0#0#10'TImageList'#9'ImageList'#6'Heig'
|
||||||
+'('#6'Bitmap'#10#214#13#0#0'Li'#2#0#0#0#21#0#0#0#21#0#0#0#0#0#0#0#0#0#0#0#0#0
|
,'ht'#2#21#5'Width'#2#21#4'left'#3#144#1#3'top'#2'('#6'Bitmap'#10#214#13#0#0
|
||||||
,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+'Li'#2#0#0#0#21#0#0#0#21#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
@ -394,55 +395,54 @@ LazarusResources.Add('TEditorOptionsForm','FORMDATA',[
|
|||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0'HNK'#255#139#145#141#255#168#174#170#255#194#199#195#255#209
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'HNK'#255
|
||||||
+#214#210#255#161#164#161#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#139#145#141#255#168#174#170#255#194#199#195#255#209#214#210#255#161#164#161
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'z'#133#128
|
+#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#255#176#186#181#255#141#147#144#255#153#156#154#255#147#148#147#255#188#192
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'z'#133#128#255#176#186#181#255#141
|
||||||
+#188#255#229#234#230#255#174#178#176#255'KNN'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#147#144#255#153#156#154#255#147#148#147#255#188#192#188#255#229#234#230#255
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#170#177#173#255
|
+#174#178#176#255'KNN'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#168#177#173#255#189#196#192#255#140#144#141#255#139#141#139#255#151#154#151
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#170#177#173#255#168#177#173#255#189#196
|
||||||
+#255#228#231#228#255#146#151#149#255'BIF'#255':@>'#255#0#0#0#0#0#0#0#0#0#0#0
|
+#192#255#140#144#141#255#139#141#139#255#151#154#151#255#228#231#228#255#146
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'xzx'#255#231#233
|
+#151#149#255'BIF'#255':@>'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#231#255#208#210#209#255#172#176#173#255#180#184#182#255#185#189#186#255#207
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'xzx'#255#231#233#231#255#208#210#209#255
|
||||||
+#211#207#255'|'#128'~'#255'MVR'#255'GOL'#255'6=;'#255'JPN'#255#149#155#151
|
+#172#176#173#255#180#184#182#255#185#189#186#255#207#211#207#255'|'#128'~'
|
||||||
+#255#165#172#168#255#203#207#203#255#193#197#192#255#167#170#167#255#0#0#0#0
|
+#255'MVR'#255'GOL'#255'6=;'#255'JPN'#255#149#155#151#255#165#172#168#255#203
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#187#188#187#255#240#242#240#255#239#240#238#255#227
|
+#207#203#255#193#197#192#255#167#170#167#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#229#227#255#202#205#202#255#189#192#189#255#147#152#148#255'kuq'#255'Yc`'
|
+#187#188#187#255#240#242#240#255#239#240#238#255#227#229#227#255#202#205#202
|
||||||
+#255'FNK'#255'x'#129'}'#255#176#185#181#255#148#152#149#255#168#170#169#255
|
+#255#189#192#189#255#147#152#148#255'kuq'#255'Yc`'#255'FNK'#255'x'#129'}'#255
|
||||||
+#211#213#211#255#204#208#204#255#230#234#230#255#158#164#160#255#0#0#0#0#0#0
|
+#176#185#181#255#148#152#149#255#168#170#169#255#211#213#211#255#204#208#204
|
||||||
+#0#0#0#0#0#0#218#220#218#255#187#190#188#255#162#166#163#255#180#187#182#255
|
+#255#230#234#230#255#158#164#160#255#0#0#0#0#0#0#0#0#0#0#0#0#218#220#218#255
|
||||||
+#179#184#180#255#167#170#167#255#140#145#141#255'frl'#255'[c_'#255#155#163
|
+#187#190#188#255#162#166#163#255#180#187#182#255#179#184#180#255#167#170#167
|
||||||
+#158#255#167#176#171#255#198#205#202#255#142#144#143#255#154#156#155#255#157
|
+#255#140#145#141#255'frl'#255'[c_'#255#155#163#158#255#167#176#171#255#198
|
||||||
+#159#157#255#218#221#218#255#138#143#140#255'FMJ'#255#0#0#0#0#0#0#0#0#0#0#0#0
|
+#205#202#255#142#144#143#255#154#156#155#255#157#159#157#255#218#221#218#255
|
||||||
+'\a^'#255#149#158#153#255'tyv'#255'kmk'#255#228#232#228#255#218#221#218#255
|
+#138#143#140#255'FMJ'#255#0#0#0#0#0#0#0#0#0#0#0#0'\a^'#255#149#158#153#255't'
|
||||||
+#222#226#222#255#175#180#176#255'qvs'#255#234#237#234#255#208#211#209#255#165
|
+'yv'#255'kmk'#255#228#232#228#255#218#221#218#255#222#226#222#255#175#180#176
|
||||||
+#171#168#255#167#172#168#255#211#217#212#255#216#221#217#255'ptq'#255'PXT'
|
+#255'qvs'#255#234#237#234#255#208#211#209#255#165#171#168#255#167#172#168#255
|
||||||
+#255'HOL'#255#0#0#0#0#0#0#0#0#140#151#145#255#170#183#176#255#140#146#142#255
|
+#211#217#212#255#216#221#217#255'ptq'#255'PXT'#255'HOL'#255#0#0#0#0#0#0#0#0
|
||||||
+#208#213#209#255'vyw'#255'||'#255#185#188#185#255#189#191#189#255'GLK'#255
|
+#140#151#145#255#170#183#176#255#140#146#142#255#208#213#209#255'vyw'#255'|'
|
||||||
+'dge'#255#243#245#243#255#235#236#235#255#234#237#234#255#229#231#229#255#173
|
+'|'#255#185#188#185#255#189#191#189#255'GLK'#255'dge'#255#243#245#243#255#235
|
||||||
+#176#173#255#131#136#133#255'nxt'#255'[d`'#255'ISN'#255#0#0#0#0'z}z'#255#210
|
+#236#235#255#234#237#234#255#229#231#229#255#173#176#173#255#131#136#133#255
|
||||||
+#214#211#255#171#178#174#255#176#184#179#255#206#211#208#255#184#188#184#255
|
+'nxt'#255'[d`'#255'ISN'#255#0#0#0#0'z}z'#255#210#214#211#255#171#178#174#255
|
||||||
+#225#229#225#255#159#164#160#255'KQN'#255'IQM'#255'HOL'#255#228#230#228#255
|
+#176#184#179#255#206#211#208#255#184#188#184#255#225#229#225#255#159#164#160
|
||||||
+#231#232#231#255#226#229#226#255#222#227#222#255#221#226#221#255#164#171#166
|
+#255'KQN'#255'IQM'#255'HOL'#255#228#230#228#255#231#232#231#255#226#229#226
|
||||||
+#255'pzu'#255'^hd'#255'LWR'#255#0#0#0#0#179#183#179#255#239#242#239#255#241
|
+#255#222#227#222#255#221#226#221#255#164#171#166#255'pzu'#255'^hd'#255'LWR'
|
||||||
+#242#241#255#212#215#212#255#187#190#187#255#173#177#174#255#145#151#147#255
|
+#255#0#0#0#0#179#183#179#255#239#242#239#255#241#242#241#255#212#215#212#255
|
||||||
+'_hd'#255'Wa\'#255'FOK'#255'AKG'#255#186#189#187#255#228#231#228#255#222#226
|
+#187#190#187#255#173#177#174#255#145#151#147#255'_hd'#255'Wa\'#255'FOK'#255
|
||||||
+#222#255#220#225#220#255#220#225#220#255#163#171#166#255'ozu'#255'akf'#255'E'
|
+'AKG'#255#186#189#187#255#228#231#228#255#222#226#222#255#220#225#220#255#220
|
||||||
+'NJ'#255#0#0#0#0#220#223#220#255#239#240#239#255#233#233#233#255#226#229#226
|
+#225#220#255#163#171#166#255'ozu'#255'akf'#255'ENJ'#255#0#0#0#0#220#223#220
|
||||||
+#255#226#231#226#255#215#220#215#255#155#163#158#255'oyu'#255'[ea'#255'ITO'
|
+#255#239#240#239#255#233#233#233#255#226#229#226#255#226#231#226#255#215#220
|
||||||
+#255'AKF'#255#0#0#0#0#148#151#148#255#213#217#213#255#223#228#223#255#220#225
|
+#215#255#155#163#158#255'oyu'#255'[ea'#255'ITO'#255'AKF'#255#0#0#0#0#148#151
|
||||||
+#221#255#156#167#161#255'nyt'#255'LTP'#255#0#0#0#0#0#0#0#0#189#191#189#255
|
+#148#255#213#217#213#255#223#228#223#255#220#225#221#255#156#167#161#255'nyt'
|
||||||
+#235#238#235#255#229#231#229#255#223#227#223#255#220#225#220#255#218#222#218
|
+#255'LTP'#255#0#0#0#0#0#0#0#0#189#191#189#255#235#238#235#255#229#231#229#255
|
||||||
+#255#157#164#160#255'nxt'#255'^gc'#255'HRM'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#223#227#223#255#220#225#220#255#218#222#218#255#157#164#160#255'nxt'#255'^g'
|
||||||
+#0#141#144#141#255#173#176#173#255'y'#128'|'#255';A>'#255#0#0#0#0#0#0#0#0#0#0
|
+'c'#255'HRM'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#141#144#141#255#173#176#173
|
||||||
+#0#0#0#0#0#0'mom'#255#210#214#210#255#221#226#221#255#220#225#220#255#218#224
|
+#255'y'#128'|'#255';A>'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'mom'#255#210#214
|
||||||
+#219#255#153#164#158#255'nzt'#255'[d_'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#210#255#221#226#221#255#220#225#220#255#218#224#219#255#153#164#158#255'nzt'
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#255'[d_'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#139#142#139#255#208#211#208#255#213#217#214#255#141#151#146#255'T'
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#139#142#139#255#208
|
||||||
+'^Z'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#211#208#255#213#217#214#255#141#151#146#255'T^Z'#255#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
|
||||||
+'abb'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'abb'#255#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
@ -451,71 +451,72 @@ LazarusResources.Add('TEditorOptionsForm','FORMDATA',[
|
|||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#192#192#192#255#204
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#204#204#255#202#202#202#255#202#202#202#255#201#201#201#255#200#200#200#255
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#199#199#199#255#198#198#198#255#197#197#197#255#193#193#193#255#186#186#186
|
+#0#0#0#0#0#0#0#0#0#0#0#0#192#192#192#255#204#204#204#255#202#202#202#255#202
|
||||||
+#255#184#184#184#255#180#180#180#255#173#173#173#255#160#160#160#255#0#0#0#0
|
+#202#202#255#201#201#201#255#200#200#200#255#199#199#199#255#198#198#198#255
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#160#160#255#246#246#246#255#246#246#246
|
+#197#197#197#255#193#193#193#255#186#186#186#255#184#184#184#255#180#180#180
|
||||||
+#255#238#238#238#255#230#230#230#255#230#230#230#255#230#230#230#255#231#231
|
+#255#173#173#173#255#160#160#160#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#231#255#232#232#232#255#230#230#230#255#229#229#229#255#228#228#228#255#226
|
+#160#160#160#255#246#246#246#255#246#246#246#255#238#238#238#255#230#230#230
|
||||||
+#226#226#255#222#222#222#255#204#204#204#255#184#184#184#255'yyy'#255#0#0#0#0
|
+#255#230#230#230#255#230#230#230#255#231#231#231#255#232#232#232#255#230#230
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#165#165#165#255#249#249#249#255#246#246#246#255#217
|
+#230#255#229#229#229#255#228#228#228#255#226#226#226#255#222#222#222#255#204
|
||||||
+#217#217#255#215#215#215#255#219#219#219#255#222#222#222#255#225#225#225#255
|
+#204#204#255#184#184#184#255'yyy'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#165#165
|
||||||
+#228#228#228#255#230#230#230#255#233#233#233#255#235#235#235#255#237#237#237
|
+#165#255#249#249#249#255#246#246#246#255#217#217#217#255#215#215#215#255#219
|
||||||
+#255#239#239#239#255#205#205#205#255#178#178#178#255'ttt'#255#0#0#0#0#0#0#0#0
|
+#219#219#255#222#222#222#255#225#225#225#255#228#228#228#255#230#230#230#255
|
||||||
+#0#0#0#0#0#0#0#0#164#164#164#255#247#247#247#255#245#245#245#255#216#216#216
|
+#233#233#233#255#235#235#235#255#237#237#237#255#239#239#239#255#205#205#205
|
||||||
+#255#218#218#218#255#222#222#222#255#225#225#225#255#228#228#228#255#230#230
|
+#255#178#178#178#255'ttt'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#164#164#164#255
|
||||||
+#230#255#233#233#233#255#235#235#235#255#237#237#237#255#239#239#239#255#241
|
+#247#247#247#255#245#245#245#255#216#216#216#255#218#218#218#255#222#222#222
|
||||||
+#241#241#255#203#203#203#255#168#168#168#255'ooo'#255#0#0#0#0#0#0#0#0#0#0#0#0
|
+#255#225#225#225#255#228#228#228#255#230#230#230#255#233#233#233#255#235#235
|
||||||
+#0#0#0#0#162#162#162#255#243#243#243#255#243#243#243#255#218#218#218#255#221
|
+#235#255#237#237#237#255#239#239#239#255#241#241#241#255#203#203#203#255#168
|
||||||
+#221#221#255#224#224#224#255#227#227#227#255#230#230#230#255#232#232#232#255
|
+#168#168#255'ooo'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#162#162#162#255#243#243
|
||||||
+#233#233#233#255#185#185#185#255#217#217#217#255#241#241#241#255#243#243#243
|
+#243#255#243#243#243#255#218#218#218#255#221#221#221#255#224#224#224#255#227
|
||||||
+#255#198#198#198#255#158#158#158#255'mmm'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#227#227#255#230#230#230#255#232#232#232#255#233#233#233#255#185#185#185#255
|
||||||
+#161#161#161#255#239#239#239#255#241#241#241#255#222#222#222#255#224#224#224
|
+#217#217#217#255#241#241#241#255#243#243#243#255#198#198#198#255#158#158#158
|
||||||
+#255#227#227#227#255#229#229#229#255#232#232#232#255#234#234#234#255#225#225
|
+#255'mmm'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#161#161#161#255#239#239#239#255
|
||||||
+#225#255#141#141#141#255#233#233#233#255#242#242#242#255#244#244#244#255#198
|
+#241#241#241#255#222#222#222#255#224#224#224#255#227#227#227#255#229#229#229
|
||||||
+#198#198#255#157#157#157#255'kkk'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#161#161
|
+#255#232#232#232#255#234#234#234#255#225#225#225#255#141#141#141#255#233#233
|
||||||
+#161#255#237#237#237#255#240#240#240#255#224#224#224#255#226#226#226#255#229
|
+#233#255#242#242#242#255#244#244#244#255#198#198#198#255#157#157#157#255'kkk'
|
||||||
+#229#229#255#231#231#231#255#234#234#234#255#229#229#229#255#177#177#177#255
|
+#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#161#161#161#255#237#237#237#255#240#240
|
||||||
+#158#158#158#255#200#200#200#255#243#243#243#255#245#245#245#255#195#195#195
|
+#240#255#224#224#224#255#226#226#226#255#229#229#229#255#231#231#231#255#234
|
||||||
+#255#148#148#148#255'iii'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#160#160#255
|
+#234#234#255#229#229#229#255#177#177#177#255#158#158#158#255#200#200#200#255
|
||||||
+#237#237#237#255#240#240#240#255#227#227#227#255#229#229#229#255#231#231#231
|
+#243#243#243#255#245#245#245#255#195#195#195#255#148#148#148#255'iii'#255#0#0
|
||||||
+#255#234#234#234#255#236#236#236#255#147#147#147#255#137#137#137#255#173#173
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#160#160#255#237#237#237#255#240#240#240#255
|
||||||
+#173#255'ccc'#255#217#217#217#255#246#246#246#255#191#191#191#255#139#139#139
|
+#227#227#227#255#229#229#229#255#231#231#231#255#234#234#234#255#236#236#236
|
||||||
+#255'eee'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#160#160#255#236#236#236#255
|
+#255#147#147#147#255#137#137#137#255#173#173#173#255'ccc'#255#217#217#217#255
|
||||||
+#240#240#240#255#229#229#229#255#230#230#230#255#233#233#233#255#235#235#235
|
+#246#246#246#255#191#191#191#255#139#139#139#255'eee'#255#0#0#0#0#0#0#0#0#0#0
|
||||||
+#255#238#238#238#255#221#221#221#255#219#219#219#255#196#196#196#255'aaa'#255
|
+#0#0#0#0#0#0#160#160#160#255#236#236#236#255#240#240#240#255#229#229#229#255
|
||||||
+#209#209#209#255#247#247#247#255#188#188#188#255#132#132#132#255'```'#255#0#0
|
+#230#230#230#255#233#233#233#255#235#235#235#255#238#238#238#255#221#221#221
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#160#160#255#235#235#235#255#240#240#240#255
|
+#255#219#219#219#255#196#196#196#255'aaa'#255#209#209#209#255#247#247#247#255
|
||||||
+#231#231#231#255#233#233#233#255#235#235#235#255#237#237#237#255#240#240#240
|
+#188#188#188#255#132#132#132#255'```'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160
|
||||||
+#255#151#151#151#255'nnn'#255#150#150#150#255'bbb'#255#210#210#210#255#248
|
+#160#160#255#235#235#235#255#240#240#240#255#231#231#231#255#233#233#233#255
|
||||||
+#248#248#255#186#186#186#255''#255']]]'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#235#235#235#255#237#237#237#255#240#240#240#255#151#151#151#255'nnn'#255#150
|
||||||
+#0#159#159#159#255#232#232#232#255#239#239#239#255#233#233#233#255#235#235
|
+#150#150#255'bbb'#255#210#210#210#255#248#248#248#255#186#186#186#255''
|
||||||
+#235#255#237#237#237#255#239#239#239#255#241#241#241#255'UUU'#255#221#221#221
|
+#255']]]'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#159#159#159#255#232#232#232#255
|
||||||
+#255#216#216#216#255']]]'#255#209#209#209#255#249#249#249#255#184#184#184#255
|
+#239#239#239#255#233#233#233#255#235#235#235#255#237#237#237#255#239#239#239
|
||||||
+'{{{'#255'\\\'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#158#158#158#255#229#229
|
+#255#241#241#241#255'UUU'#255#221#221#221#255#216#216#216#255']]]'#255#209
|
||||||
+#229#255#236#236#236#255#235#235#235#255#237#237#237#255#239#239#239#255#241
|
+#209#209#255#249#249#249#255#184#184#184#255'{{{'#255'\\\'#255#0#0#0#0#0#0#0
|
||||||
+#241#241#255#242#242#242#255#165#165#165#255'|||'#255#142#142#142#255#144#144
|
+#0#0#0#0#0#0#0#0#0#158#158#158#255#229#229#229#255#236#236#236#255#235#235
|
||||||
+#144#255#202#202#202#255#250#250#250#255#182#182#182#255'xxx'#255'ZZZ'#255#0
|
+#235#255#237#237#237#255#239#239#239#255#241#241#241#255#242#242#242#255#165
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#156#156#156#255#223#223#223#255#232#232#232
|
+#165#165#255'|||'#255#142#142#142#255#144#144#144#255#202#202#202#255#250#250
|
||||||
+#255#238#238#238#255#239#239#239#255#240#240#240#255#242#242#242#255#244#244
|
+#250#255#182#182#182#255'xxx'#255'ZZZ'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#244#255#245#245#245#255#236#236#236#255#245#245#245#255#249#249#249#255#250
|
+#156#156#156#255#223#223#223#255#232#232#232#255#238#238#238#255#239#239#239
|
||||||
+#250#250#255#251#251#251#255#174#174#174#255'sss'#255'VVV'#255#0#0#0#0#0#0#0
|
+#255#240#240#240#255#242#242#242#255#244#244#244#255#245#245#245#255#236#236
|
||||||
+#0#0#0#0#0#0#0#0#0#154#154#154#255#213#213#213#255#226#226#226#255#219#219
|
+#236#255#245#245#245#255#249#249#249#255#250#250#250#255#251#251#251#255#174
|
||||||
+#219#255#199#199#199#255#187#187#187#255#185#185#185#255#185#185#185#255#183
|
+#174#174#255'sss'#255'VVV'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#154#154#154
|
||||||
+#183#183#255#180#180#180#255#178#178#178#255#177#177#177#255#177#177#177#255
|
+#255#213#213#213#255#226#226#226#255#219#219#219#255#199#199#199#255#187#187
|
||||||
+#170#170#170#255'{{{'#255'kkk'#255'TTT'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#187#255#185#185#185#255#185#185#185#255#183#183#183#255#180#180#180#255#178
|
||||||
+#149#149#149#255#205#205#205#255#192#192#192#255'www'#255'HHH'#255'EEE'#255
|
+#178#178#255#177#177#177#255#177#177#177#255#170#170#170#255'{{{'#255'kkk'
|
||||||
+'GGG'#255'KKK'#255'OOO'#255'PPP'#255'LLL'#255'GGG'#255'HHH'#255'NNN'#255'VVV'
|
+#255'TTT'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#149#149#149#255#205#205#205#255
|
||||||
+#255'lll'#255'QQQ'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#129#129#129#255#156
|
+#192#192#192#255'www'#255'HHH'#255'EEE'#255'GGG'#255'KKK'#255'OOO'#255'PPP'
|
||||||
+#156#156#255'\\\'#255'>>>'#255'BBB'#255'@@@'#255'BBB'#255'CCC'#255'FFF'#255
|
+#255'LLL'#255'GGG'#255'HHH'#255'NNN'#255'VVV'#255'lll'#255'QQQ'#255#0#0#0#0#0
|
||||||
+'HHH'#255'EEE'#255'CCC'#255'CCC'#255'EEE'#255'III'#255'UUU'#255'LLL'#255#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#129#129#129#255#156#156#156#255'\\\'#255'>>>'#255'BBB'
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0')))'#255'###'#255'###'#255'"""'
|
+#255'@@@'#255'BBB'#255'CCC'#255'FFF'#255'HHH'#255'EEE'#255'CCC'#255'CCC'#255
|
||||||
+#255'"""'#255'"""'#255'"""'#255'"""'#255'"""'#255'"""'#255'"""'#255'"""'#255
|
+'EEE'#255'III'#255'UUU'#255'LLL'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+'"""'#255'$$$'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0')))'#255'###'#255'###'#255'"""'#255'"""'#255'"""'#255'"""'#255'"""'
|
||||||
,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
,#255'"""'#255'"""'#255'"""'#255'"""'#255'"""'#255'$$$'#255#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
+#0#0
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
|
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
|
||||||
]);
|
]);
|
||||||
|
@ -580,7 +580,7 @@ type
|
|||||||
BackGroundUseDefaultCheckBox: TCheckBox;
|
BackGroundUseDefaultCheckBox: TCheckBox;
|
||||||
SetAttributeToDefaultButton: TButton;
|
SetAttributeToDefaultButton: TButton;
|
||||||
SetAllAttributesToDefaultButton: TButton;
|
SetAllAttributesToDefaultButton: TButton;
|
||||||
ColorPreview: TPreviewEditor;
|
ColorPreview: TPreviewEditor;
|
||||||
|
|
||||||
// Code Tools options
|
// Code Tools options
|
||||||
AutomaticFeaturesGroupBox: TGroupBox;
|
AutomaticFeaturesGroupBox: TGroupBox;
|
||||||
|
@ -1394,7 +1394,8 @@ begin
|
|||||||
end else
|
end else
|
||||||
Result:='';
|
Result:='';
|
||||||
{$IFDEF VerboseDanglingComponentEvents}
|
{$IFDEF VerboseDanglingComponentEvents}
|
||||||
DebugLn(['TMainIDE.OnPropHookGetMethodName ',Result,' ',IsJITMethod(Method)]);
|
if IsJITMethod(Method) then
|
||||||
|
DebugLn(['TMainIDE.OnPropHookGetMethodName ',Result,' ',IsJITMethod(Method)]);
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user