mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2026-01-03 18:40:33 +01:00
Attemps to fix ideinspector after the changes in TTabControl
git-svn-id: trunk@31796 -
This commit is contained in:
parent
8469bf2800
commit
ec0495ca9b
@ -260,21 +260,28 @@ object IdeInspectForm: TIdeInspectForm
|
||||
end
|
||||
end
|
||||
end
|
||||
object TabControl1: TTabControl
|
||||
object Panel3: TPanel
|
||||
Left = 222
|
||||
Height = 381
|
||||
Top = 24
|
||||
Width = 290
|
||||
Align = alClient
|
||||
OnChange = TabControl1Change
|
||||
TabIndex = 0
|
||||
TabOrder = 4
|
||||
Tabs.Strings = (
|
||||
'Properties'
|
||||
'Events'
|
||||
'All'
|
||||
)
|
||||
TabStop = False
|
||||
object TabControl1: TTabControl
|
||||
Left = 0
|
||||
Height = 81
|
||||
Top = 0
|
||||
Width = 290
|
||||
Align = alTop
|
||||
OnChange = TabControl1Change
|
||||
TabIndex = 0
|
||||
TabOrder = 4
|
||||
Tabs.Strings = (
|
||||
'Properties'
|
||||
'Events'
|
||||
'All'
|
||||
)
|
||||
TabStop = False
|
||||
end
|
||||
end
|
||||
object popComponent: TPopupMenu
|
||||
OnPopup = popComponentPopup
|
||||
|
||||
@ -38,6 +38,7 @@ type
|
||||
menuFollowFrame: TMenuItem;
|
||||
Panel1: TPanel;
|
||||
Panel2: TPanel;
|
||||
Panel3: TPanel;
|
||||
popComponent: TPopupMenu;
|
||||
popSubComponent: TPopupMenu;
|
||||
popControls: TPopupMenu;
|
||||
@ -756,14 +757,14 @@ begin
|
||||
inherited Create(TheOwner);
|
||||
|
||||
FPropertiesGrid := TCustomPropertiesGrid.Create(Self);
|
||||
with FPropertiesGrid do
|
||||
begin
|
||||
Name := 'FPropertiesGrid';
|
||||
Parent := TabControl1;
|
||||
Align := alClient;
|
||||
SaveOnChangeTIObject := False;
|
||||
OnSelectionChange := @DoPropSelChanged;
|
||||
end;
|
||||
FPropertiesGrid.Name := 'FPropertiesGrid';
|
||||
FPropertiesGrid.Parent := Panel3;
|
||||
FPropertiesGrid.Top := TabControl1.Height;
|
||||
FPropertiesGrid.Left := 0;
|
||||
FPropertiesGrid.Width := TabControl1.Width;
|
||||
FPropertiesGrid.Height := 381 - TabControl1.Height;
|
||||
FPropertiesGrid.SaveOnChangeTIObject := False;
|
||||
FPropertiesGrid.OnSelectionChange := @DoPropSelChanged;
|
||||
|
||||
btnComponent.Caption := ideinspQuickLinks;
|
||||
btnSubComponent.Caption := ideinspComponentsOwned;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user