mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-31 03:12:32 +02:00
Improve the example for Object Inspector a little.
git-svn-id: trunk@42050 -
This commit is contained in:
parent
f94fc13b1d
commit
77a5f2b03c
@ -1,55 +1,51 @@
|
||||
object Form1: TForm1
|
||||
CAPTION = 'Form1'
|
||||
CLIENTHEIGHT = 300
|
||||
CLIENTWIDTH = 483
|
||||
ONCREATE = Form1CREATE
|
||||
ONDESTROY = Form1DESTROY
|
||||
HORZSCROLLBAR.PAGE = 484
|
||||
VERTSCROLLBAR.PAGE = 301
|
||||
LEFT = 446
|
||||
HEIGHT = 300
|
||||
TOP = 257
|
||||
WIDTH = 483
|
||||
object OIGroupbox: TGROUPBOX
|
||||
CAPTION = 'Root Component'
|
||||
CLIENTHEIGHT = 104
|
||||
CLIENTWIDTH = 172
|
||||
PARENTCTL3D = False
|
||||
TABORDER = 0
|
||||
LEFT = 16
|
||||
HEIGHT = 121
|
||||
TOP = 24
|
||||
WIDTH = 176
|
||||
object SetOIRootFormButton: TBUTTON
|
||||
CAPTION = 'Set Form as Root'
|
||||
TABSTOP = True
|
||||
TABORDER = 0
|
||||
ONCLICK = SetOIRootFormButtonCLICK
|
||||
LEFT = 15
|
||||
HEIGHT = 25
|
||||
TOP = 16
|
||||
WIDTH = 139
|
||||
Left = 210
|
||||
Height = 321
|
||||
Top = 297
|
||||
Width = 473
|
||||
HorzScrollBar.Page = 484
|
||||
VertScrollBar.Page = 301
|
||||
Caption = 'Form1'
|
||||
ClientHeight = 321
|
||||
ClientWidth = 473
|
||||
OnCreate = Form1CREATE
|
||||
OnDestroy = Form1DESTROY
|
||||
LCLVersion = '1.1'
|
||||
object OIGroupbox: TGroupBox
|
||||
Left = 8
|
||||
Height = 121
|
||||
Top = 24
|
||||
Width = 176
|
||||
Caption = 'Root Component'
|
||||
ClientHeight = 102
|
||||
ClientWidth = 172
|
||||
TabOrder = 0
|
||||
object SetOIRootFormButton: TButton
|
||||
Left = 15
|
||||
Height = 25
|
||||
Top = 16
|
||||
Width = 139
|
||||
Caption = 'Set Form as Root'
|
||||
OnClick = SetOIRootFormButtonCLICK
|
||||
TabOrder = 0
|
||||
end
|
||||
object SetCompAsOIRootButton: TBUTTON
|
||||
CAPTION = 'Set Component'
|
||||
TABSTOP = True
|
||||
TABORDER = 1
|
||||
ONCLICK = SetCompAsOIRootButtonCLICK
|
||||
LEFT = 15
|
||||
HEIGHT = 25
|
||||
TOP = 54
|
||||
WIDTH = 139
|
||||
object SetCompAsOIRootButton: TButton
|
||||
Left = 15
|
||||
Height = 25
|
||||
Top = 54
|
||||
Width = 139
|
||||
Caption = 'Set Component'
|
||||
OnClick = SetCompAsOIRootButtonCLICK
|
||||
TabOrder = 1
|
||||
end
|
||||
end
|
||||
object PropGridGroupbox: TGROUPBOX
|
||||
CAPTION = 'PropertyGrid'
|
||||
CLIENTHEIGHT = 244
|
||||
CLIENTWIDTH = 253
|
||||
PARENTCTL3D = False
|
||||
TABORDER = 1
|
||||
LEFT = 207
|
||||
HEIGHT = 261
|
||||
TOP = 24
|
||||
WIDTH = 257
|
||||
object PropGridGroupbox: TGroupBox
|
||||
Left = 192
|
||||
Height = 280
|
||||
Top = 24
|
||||
Width = 270
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
Caption = 'PropertyGrid'
|
||||
TabOrder = 1
|
||||
end
|
||||
end
|
||||
|
@ -28,8 +28,8 @@ type
|
||||
PropertyGrid: TOIPropertyGrid;
|
||||
procedure Form1Create(Sender: TObject);
|
||||
procedure Form1Destroy(Sender: TObject);
|
||||
procedure SetCompAsOIRootButtonClick(Sender: TObject);
|
||||
procedure SetOIRootFormButtonClick(Sender: TObject);
|
||||
procedure SetCompAsOIRootButtonClick(Sender: TObject);
|
||||
private
|
||||
procedure SetObjectInspectorRoot(AComponent: TComponent);
|
||||
public
|
||||
@ -73,26 +73,26 @@ begin
|
||||
|
||||
// select the Form1 in the ObjectInspector
|
||||
SetObjectInspectorRoot(Self);
|
||||
TheObjectInspector.Show; // For some reason this is not shown otherwise
|
||||
end;
|
||||
|
||||
procedure TForm1.Form1Destroy(Sender: TObject);
|
||||
begin
|
||||
// TheObjectInspector is owned by the Application and therefore destroyed
|
||||
// automatically
|
||||
// TheObjectInspector is owned by Application and therefore destroyed automatically
|
||||
ThePropertyEditorHook.Free;
|
||||
ARootComponent.Free;
|
||||
end;
|
||||
|
||||
procedure TForm1.SetCompAsOIRootButtonClick(Sender: TObject);
|
||||
begin
|
||||
SetObjectInspectorRoot(ARootComponent);
|
||||
end;
|
||||
|
||||
procedure TForm1.SetOIRootFormButtonClick(Sender: TObject);
|
||||
begin
|
||||
SetObjectInspectorRoot(Self);
|
||||
end;
|
||||
|
||||
procedure TForm1.SetCompAsOIRootButtonClick(Sender: TObject);
|
||||
begin
|
||||
SetObjectInspectorRoot(ARootComponent);
|
||||
end;
|
||||
|
||||
procedure TForm1.SetObjectInspectorRoot(AComponent: TComponent);
|
||||
var
|
||||
Selection: TPersistentSelectionList;
|
||||
|
@ -41,12 +41,14 @@
|
||||
<Filename Value="mainunit.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<ComponentName Value="Form1"/>
|
||||
<HasResources Value="True"/>
|
||||
<ResourceBaseClass Value="Form"/>
|
||||
<UnitName Value="MainUnit"/>
|
||||
</Unit1>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="10"/>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<OtherUnitFiles Value="$(LazarusDir)\components\units"/>
|
||||
|
Loading…
Reference in New Issue
Block a user