mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 19:39:17 +02:00
examples: objectinspector: lrs to lfm
git-svn-id: trunk@30924 -
This commit is contained in:
parent
4ef2e5bc3e
commit
ea77bd45cf
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -3702,7 +3702,6 @@ examples/notebku.pp svneol=native#text/pascal
|
||||
examples/notebooktest.lpi svneol=native#text/plain
|
||||
examples/notebooktest.pp svneol=native#text/pascal
|
||||
examples/objectinspector/mainunit.lfm svneol=native#text/plain
|
||||
examples/objectinspector/mainunit.lrs svneol=native#text/pascal
|
||||
examples/objectinspector/mainunit.pas svneol=native#text/pascal
|
||||
examples/objectinspector/oiexample.lpi svneol=native#text/plain
|
||||
examples/objectinspector/oiexample.lpr svneol=native#text/pascal
|
||||
|
@ -1,17 +0,0 @@
|
||||
LazarusResources.Add('TForm1','FORMDATA',[
|
||||
'TPF0'#6'TForm1'#5'Form1'#7'CAPTION'#6#5'Form1'#12'CLIENTHEIGHT'#3','#1#11'CL'
|
||||
+'IENTWIDTH'#3#227#1#8'ONCREATE'#7#11'Form1CREATE'#9'ONDESTROY'#7#12'Form1DES'
|
||||
+'TROY'#18'HORZSCROLLBAR.PAGE'#3#228#1#18'VERTSCROLLBAR.PAGE'#3'-'#1#4'LEFT'#3
|
||||
+#190#1#6'HEIGHT'#3','#1#3'TOP'#3#1#1#5'WIDTH'#3#227#1#0#9'TGROUPBOX'#10'OIGr'
|
||||
+'oupbox'#7'CAPTION'#6#14'Root Component'#12'CLIENTHEIGHT'#2'h'#11'CLIENTWIDT'
|
||||
+'H'#3#172#0#11'PARENTCTL3D'#8#8'TABORDER'#2#0#4'LEFT'#2#16#6'HEIGHT'#2'y'#3
|
||||
+'TOP'#2#24#5'WIDTH'#3#176#0#0#7'TBUTTON'#19'SetOIRootFormButton'#7'CAPTION'#6
|
||||
+#16'Set Form as Root'#7'TABSTOP'#9#8'TABORDER'#2#0#7'ONCLICK'#7#24'SetOIRoot'
|
||||
+'FormButtonCLICK'#4'LEFT'#2#15#6'HEIGHT'#2#25#3'TOP'#2#16#5'WIDTH'#3#139#0#0
|
||||
+#0#7'TBUTTON'#21'SetCompAsOIRootButton'#7'CAPTION'#6#13'Set Component'#7'TAB'
|
||||
+'STOP'#9#8'TABORDER'#2#1#7'ONCLICK'#7#26'SetCompAsOIRootButtonCLICK'#4'LEFT'
|
||||
+#2#15#6'HEIGHT'#2#25#3'TOP'#2'6'#5'WIDTH'#3#139#0#0#0#0#9'TGROUPBOX'#16'Prop'
|
||||
+'GridGroupbox'#7'CAPTION'#6#12'PropertyGrid'#12'CLIENTHEIGHT'#3#244#0#11'CLI'
|
||||
+'ENTWIDTH'#3#253#0#11'PARENTCTL3D'#8#8'TABORDER'#2#1#4'LEFT'#3#207#0#6'HEIGH'
|
||||
+'T'#3#5#1#3'TOP'#2#24#5'WIDTH'#3#1#1#0#0#0
|
||||
]);
|
@ -21,15 +21,15 @@ type
|
||||
end;
|
||||
|
||||
TForm1 = class(TForm)
|
||||
PropGridGroupbox: TGROUPBOX;
|
||||
SetCompAsOIRootButton: TBUTTON;
|
||||
SetOIRootFormButton: TBUTTON;
|
||||
OIGroupbox: TGROUPBOX;
|
||||
PropGridGroupbox: TGroupBox;
|
||||
SetCompAsOIRootButton: TButton;
|
||||
SetOIRootFormButton: TButton;
|
||||
OIGroupbox: TGroupBox;
|
||||
PropertyGrid: TOIPropertyGrid;
|
||||
procedure Form1CREATE(Sender: TObject);
|
||||
procedure Form1DESTROY(Sender: TObject);
|
||||
procedure SetCompAsOIRootButtonCLICK(Sender: TObject);
|
||||
procedure SetOIRootFormButtonCLICK(Sender: TObject);
|
||||
procedure Form1Create(Sender: TObject);
|
||||
procedure Form1Destroy(Sender: TObject);
|
||||
procedure SetCompAsOIRootButtonClick(Sender: TObject);
|
||||
procedure SetOIRootFormButtonClick(Sender: TObject);
|
||||
private
|
||||
procedure SetObjectInspectorRoot(AComponent: TComponent);
|
||||
public
|
||||
@ -45,7 +45,7 @@ implementation
|
||||
|
||||
{ TForm1 }
|
||||
|
||||
procedure TForm1.Form1CREATE(Sender: TObject);
|
||||
procedure TForm1.Form1Create(Sender: TObject);
|
||||
begin
|
||||
// create the PropertyEditorHook (the interface to the properties)
|
||||
ThePropertyEditorHook:=TPropertyEditorHook.Create;
|
||||
@ -75,7 +75,7 @@ begin
|
||||
SetObjectInspectorRoot(Self);
|
||||
end;
|
||||
|
||||
procedure TForm1.Form1DESTROY(Sender: TObject);
|
||||
procedure TForm1.Form1Destroy(Sender: TObject);
|
||||
begin
|
||||
// TheObjectInspector is owned by the Application and therefore destroyed
|
||||
// automatically
|
||||
@ -83,12 +83,12 @@ begin
|
||||
ARootComponent.Free;
|
||||
end;
|
||||
|
||||
procedure TForm1.SetCompAsOIRootButtonCLICK(Sender: TObject);
|
||||
procedure TForm1.SetCompAsOIRootButtonClick(Sender: TObject);
|
||||
begin
|
||||
SetObjectInspectorRoot(ARootComponent);
|
||||
end;
|
||||
|
||||
procedure TForm1.SetOIRootFormButtonCLICK(Sender: TObject);
|
||||
procedure TForm1.SetOIRootFormButtonClick(Sender: TObject);
|
||||
begin
|
||||
SetObjectInspectorRoot(Self);
|
||||
end;
|
||||
@ -113,8 +113,7 @@ begin
|
||||
FAnInteger:=AValue;
|
||||
end;
|
||||
|
||||
initialization
|
||||
{$I mainunit.lrs}
|
||||
{$R *.lfm}
|
||||
|
||||
end.
|
||||
|
||||
|
@ -1,15 +1,20 @@
|
||||
<?xml version="1.0"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="9"/>
|
||||
<PathDelim Value="\"/>
|
||||
<Version Value="5"/>
|
||||
<General>
|
||||
<Flags>
|
||||
<LRSInOutputDirectory Value="False"/>
|
||||
</Flags>
|
||||
<SessionStorage Value="InProjectDir"/>
|
||||
<MainUnit Value="0"/>
|
||||
<IconPath Value=".\"/>
|
||||
<TargetFileExt Value=""/>
|
||||
<Title Value="Example for the Object Inspector"/>
|
||||
<ResourceType Value="res"/>
|
||||
</General>
|
||||
<BuildModes Count="1">
|
||||
<Item1 Name="default" Default="True"/>
|
||||
</BuildModes>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
<IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>
|
||||
@ -34,24 +39,23 @@
|
||||
</Unit0>
|
||||
<Unit1>
|
||||
<Filename Value="mainunit.pas"/>
|
||||
<ComponentName Value="Form1"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<ResourceFilename Value="mainunit.lrs"/>
|
||||
<ComponentName Value="Form1"/>
|
||||
<UnitName Value="MainUnit"/>
|
||||
</Unit1>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="5"/>
|
||||
<Version Value="10"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<OtherUnitFiles Value="$(LazarusDir)\components\units\"/>
|
||||
<SrcPath Value="$(LazarusDir)\designer\"/>
|
||||
<OtherUnitFiles Value="$(LazarusDir)\components\units"/>
|
||||
<SrcPath Value="$(LazarusDir)\designer"/>
|
||||
</SearchPaths>
|
||||
<CodeGeneration>
|
||||
<Generate Value="Faster"/>
|
||||
</CodeGeneration>
|
||||
<Other>
|
||||
<CompilerMessages>
|
||||
<UseMsgFile Value="True"/>
|
||||
</CompilerMessages>
|
||||
<CompilerPath Value="$(CompPath)"/>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
|
Loading…
Reference in New Issue
Block a user