-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Resolved some issues when compiling with XE5
- Loading branch information
Showing
14 changed files
with
1,668 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
object frmComponentInspector: TfrmComponentInspector | ||
Left = 0 | ||
Top = 0 | ||
BorderStyle = bsSizeToolWin | ||
ClientHeight = 647 | ||
ClientWidth = 392 | ||
Color = clBtnFace | ||
DoubleBuffered = True | ||
DragKind = dkDock | ||
Font.Charset = DEFAULT_CHARSET | ||
Font.Color = clWindowText | ||
Font.Height = -11 | ||
Font.Name = 'Tahoma' | ||
Font.Style = [] | ||
OldCreateOrder = False | ||
Position = poDesigned | ||
ScreenSnap = True | ||
OnActivate = FormActivate | ||
OnClose = FormClose | ||
OnResize = FormResize | ||
OnShow = FormShow | ||
PixelsPerInch = 96 | ||
TextHeight = 13 | ||
object pnlMain: TPanel | ||
Left = 0 | ||
Top = 0 | ||
Width = 392 | ||
Height = 647 | ||
Align = alClient | ||
BevelOuter = bvNone | ||
TabOrder = 0 | ||
object cbxInspector: TComboBox | ||
AlignWithMargins = True | ||
Left = 3 | ||
Top = 3 | ||
Width = 386 | ||
Height = 21 | ||
Margins.Bottom = 0 | ||
Align = alTop | ||
TabOrder = 0 | ||
OnChange = cbxInspectorChange | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,301 @@ | ||
{ | ||
Copyright (C) 2013-2015 Tim Sinaeve [email protected] | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
} | ||
|
||
unit Concepts.ComponentInspector; | ||
|
||
interface | ||
|
||
uses | ||
Winapi.Windows, Winapi.Messages, | ||
System.SysUtils, System.Variants, System.Classes, System.Contnrs, | ||
System.TypInfo, | ||
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Grids, Vcl.StdCtrls, | ||
Vcl.ExtCtrls, | ||
|
||
DDuce.Components.PropertyInspector; | ||
|
||
type | ||
TfrmComponentInspector = class(TForm) | ||
pnlMain : TPanel; | ||
cbxInspector : TComboBox; | ||
|
||
procedure cbxInspectorChange(Sender: TObject); | ||
procedure FormResize(Sender: TObject); | ||
procedure FormClose(Sender: TObject; var Action: TCloseAction); | ||
procedure FormActivate(Sender: TObject); | ||
procedure FormShow(Sender: TObject); | ||
|
||
private | ||
FInspector: TPropertyInspector; | ||
|
||
procedure CMDialogKey(var Msg: TCMDialogKey); message CM_DIALOGKEY; | ||
|
||
public | ||
constructor Create( | ||
AOwner : TComponent; | ||
AObject : TPersistent | ||
); reintroduce; | ||
|
||
procedure CreatePropertyInspector; | ||
|
||
procedure AddComponentToInspector(AComponent: TPersistent); virtual; | ||
procedure FocusComponentInInspector(AComponent: TPersistent); virtual; | ||
end; | ||
|
||
procedure InspectComponent(AComponent : TComponent); | ||
|
||
procedure InspectObject(AObject : TPersistent); | ||
|
||
procedure InspectComponents(AComponent : TComponent); overload; | ||
|
||
procedure InspectApplicationComponents; | ||
|
||
procedure InspectComponents(AComponents : array of TComponent); overload; | ||
|
||
procedure InspectComponents(AComponents : TComponentList); overload; | ||
|
||
implementation | ||
|
||
{$R *.dfm} | ||
|
||
{$REGION 'interfaced routines'} | ||
procedure InspectComponent(AComponent : TComponent); | ||
var | ||
InspectorForm : TfrmComponentInspector; | ||
begin | ||
if Assigned(AComponent) then | ||
begin | ||
InspectorForm := TfrmComponentInspector.Create(Application, AComponent); | ||
InspectorForm.Show; | ||
end | ||
else | ||
raise Exception.Create('No component Assigned'); | ||
end; | ||
|
||
procedure InspectObject(AObject : TPersistent); | ||
var | ||
InspectorForm : TfrmComponentInspector; | ||
begin | ||
if Assigned(AObject) then | ||
begin | ||
InspectorForm := TfrmComponentInspector.Create(Application, AObject); | ||
InspectorForm.Show; | ||
end | ||
else | ||
raise Exception.Create('No component Assigned'); | ||
end; | ||
|
||
procedure InspectComponents(AComponents : array of TComponent); | ||
var | ||
InspectorForm : TfrmComponentInspector; | ||
I : Integer; | ||
begin | ||
if Length(AComponents) > 0 then | ||
begin | ||
InspectorForm := TfrmComponentInspector.Create(Application, AComponents[0]); | ||
for I := 1 to High(AComponents) do | ||
InspectorForm.AddComponentToInspector(AComponents[I]); | ||
InspectorForm.Show; | ||
InspectorForm.FocusComponentInInspector(AComponents[0]); | ||
end | ||
else | ||
raise Exception.Create('Component array is empty'); | ||
end; | ||
|
||
procedure InspectComponents(AComponents : TComponentList); | ||
var | ||
InspectorForm : TfrmComponentInspector; | ||
I : Integer; | ||
begin | ||
if Assigned(AComponents) then | ||
begin | ||
if AComponents.Count > 0 then | ||
begin | ||
InspectorForm := TfrmComponentInspector.Create(Application, AComponents[0]); | ||
for I := 1 to AComponents.Count - 1 do | ||
InspectorForm.AddComponentToInspector(AComponents[I]); | ||
InspectorForm.Show; | ||
InspectorForm.FocusComponentInInspector(AComponents[0]); | ||
end | ||
end | ||
else | ||
raise Exception.Create('Componentlist not assigned'); | ||
end; | ||
|
||
procedure InspectComponents(AComponent : TComponent); | ||
var | ||
CL : TComponentList; | ||
I : Integer; | ||
begin | ||
CL := TComponentList.Create(False); | ||
try | ||
for I := 0 to AComponent.ComponentCount - 1 do | ||
CL.Add(AComponent.Components[I]); | ||
InspectComponents(CL); | ||
finally | ||
CL.Free; | ||
end; | ||
end; | ||
|
||
procedure InspectApplicationComponents; | ||
var | ||
CL : TComponentList; | ||
I, J : Integer; | ||
begin | ||
CL := TComponentList.Create(False); | ||
try | ||
for I := 0 to Screen.FormCount - 1 do | ||
for J := 0 to Screen.Forms[I].ComponentCount - 1 do | ||
CL.Add(Screen.Forms[I].Components[J]); | ||
|
||
for I := 0 to Screen.DataModuleCount - 1 do | ||
for J := 0 to Screen.DataModules[I].ComponentCount - 1 do | ||
CL.Add(Screen.DataModules[I].Components[J]); | ||
|
||
InspectComponents(CL); | ||
finally | ||
CL.Free; | ||
end; | ||
end; | ||
{$ENDREGION} | ||
|
||
{$REGION 'construction and destruction'} | ||
constructor TfrmComponentInspector.Create(AOwner: TComponent; AObject: TPersistent); | ||
begin | ||
inherited Create(AOwner); | ||
CreatePropertyInspector; | ||
AddComponentToInspector(AObject); | ||
FocusComponentInInspector(AObject); | ||
end; | ||
{$ENDREGION} | ||
|
||
{$REGION 'message handlers'} | ||
procedure TfrmComponentInspector.CMDialogKey(var Msg: TCMDialogKey); | ||
begin | ||
if Msg.CharCode = VK_ESCAPE then | ||
begin | ||
ModalResult := mrCancel; | ||
Close; | ||
end | ||
else | ||
inherited; | ||
end; | ||
{$ENDREGION} | ||
|
||
{$REGION 'private methods'} | ||
procedure TfrmComponentInspector.CreatePropertyInspector; | ||
begin | ||
FInspector := TPropertyInspector.Create(Self); | ||
with FInspector do | ||
begin | ||
Parent := pnlMain; | ||
AlignWithMargins := True; | ||
Left := 3; | ||
Top := 30; | ||
Width := 386; | ||
Height := 614; | ||
PropKinds := [pkProperties, pkReadOnly]; | ||
Splitter := 197; | ||
Align := alBottom; | ||
Anchors := [akLeft, akTop, akRight, akBottom]; | ||
ParentShowHint := False; | ||
ShowHint := True; | ||
TabOrder := 0; | ||
end; | ||
end; | ||
{$ENDREGION} | ||
|
||
{$REGION 'public methods'} | ||
procedure TfrmComponentInspector.AddComponentToInspector( | ||
AComponent: TPersistent); | ||
var | ||
S : string; | ||
sName : string; | ||
CI : TCollectionItem; | ||
begin | ||
if AComponent is TComponent then | ||
begin | ||
sName := TComponent(AComponent).Name; | ||
if sName = '' then | ||
sName := 'unnamed'; | ||
S := Format('%s - %s', [sName, AComponent.ClassName]); | ||
cbxInspector.Items.AddObject(S, AComponent); | ||
end | ||
else | ||
if AComponent is TCollection then | ||
begin | ||
for CI in TCollection(AComponent) do | ||
begin | ||
S := Format('%s[%d]', [CI.ClassName, | ||
(CI as TCollectionItem).Index]); | ||
cbxInspector.Items.AddObject(S, CI); | ||
end; | ||
end | ||
else | ||
begin | ||
S := Format('%s', [AComponent.ClassName]); | ||
cbxInspector.Items.AddObject(S, AComponent); | ||
end; | ||
end; | ||
|
||
procedure TfrmComponentInspector.FocusComponentInInspector( | ||
AComponent: TPersistent); | ||
begin | ||
cbxInspector.ItemIndex := cbxInspector.Items.IndexOfObject(AComponent); | ||
cbxInspectorChange(nil); | ||
end; | ||
{$ENDREGION} | ||
|
||
{$REGION 'event handlers'} | ||
procedure TfrmComponentInspector.cbxInspectorChange(Sender: TObject); | ||
begin | ||
FInspector.BeginUpdate; | ||
try | ||
FInspector.Clear; | ||
if (cbxInspector.ItemIndex >= 0) and | ||
Assigned(cbxInspector.Items.Objects[cbxInspector.ItemIndex]) then | ||
FInspector.Add(cbxInspector.Items.Objects[cbxInspector.ItemIndex] as | ||
TPersistent); | ||
finally | ||
FInspector.EndUpdate; | ||
end; | ||
end; | ||
|
||
procedure TfrmComponentInspector.FormActivate(Sender: TObject); | ||
begin | ||
FInspector.UpdateItems; | ||
end; | ||
|
||
procedure TfrmComponentInspector.FormClose(Sender: TObject; | ||
var Action: TCloseAction); | ||
begin | ||
Action := caFree; | ||
end; | ||
|
||
procedure TfrmComponentInspector.FormResize(Sender: TObject); | ||
begin | ||
FInspector.Splitter := FInspector.ClientWidth div 2; | ||
end; | ||
|
||
procedure TfrmComponentInspector.FormShow(Sender: TObject); | ||
begin | ||
if FInspector.ObjectCount > 0 then | ||
FocusComponentInInspector(FInspector.Objects[0]); | ||
Height := Screen.WorkAreaHeight; | ||
end; | ||
{$ENDREGION} | ||
|
||
end. |
Oops, something went wrong.