/usr/lib/lazarus/0.9.30.4/ideintf/frmselectprops.pas is in lazarus-src-0.9.30.4 0.9.30.4-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | {
*****************************************************************************
* *
* See the file COPYING.modifiedLGPL.txt, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
*****************************************************************************
Author: Michael Van Canneyt
}
unit frmSelectProps;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LCLProc, Forms, Controls, Graphics, Dialogs,
StdCtrls, ObjInspStrConsts, IDEWindowIntf, Buttons, ExtCtrls, TypInfo,
RTTIUtils;
type
{ TSelectPropertiesForm }
TSelectPropertiesForm = class(TForm)
BAdd: TButton;
BDelete: TButton;
BClear: TButton;
BOK: TButton;
BCancel: TButton;
LLBSelected: TLabel;
LBComponents: TListBox;
LComponents: TLabel;
LBProperties: TListBox;
LBSelected: TListBox;
PBottom: TPanel;
PComponents: TPanel;
PTop: TPanel;
PProperties: TPanel;
LProperties: TLabel;
VSplitter: TSplitter;
HSplitter: TSplitter;
procedure BAddClick(Sender: TObject);
procedure BClearClick(Sender: TObject);
procedure BDeleteClick(Sender: TObject);
procedure LBComponentsSelectionChange(Sender: TObject; User: boolean);
procedure LBPropertiesClick(Sender: TObject);
procedure LBPropertiesDblClick(Sender: TObject);
procedure SelectPropertiesFormClose(Sender: TObject;
var CloseAction: TCloseAction);
procedure SelectPropertiesFormCreate(Sender: TObject);
private
FSelectedComponent : TComponent;
FPropComponent: TComponent;
function GetSelectedProps: String;
procedure SetPropComponent(const AValue: TComponent);
procedure SetSelectedProps(const AValue: String);
procedure ShowComponents;
procedure ShowProperties(C : TComponent);
function GetSelectedComponent: TComponent;
procedure AddSelectedProperties;
procedure DeleteSelectedProperties;
public
Property PropertyComponent : TComponent Read FPropComponent Write SetPropComponent;
Property SelectedProperties : String Read GetSelectedProps Write SetSelectedProps;
end;
var
SelectPropertiesForm: TSelectPropertiesForm;
implementation
{$R *.lfm}
{ TSelectPropertiesForm }
procedure TSelectPropertiesForm.SetPropComponent(const AValue: TComponent);
begin
if FPropComponent=AValue then exit;
begin
FPropComponent:=AValue;
ShowComponents;
end
end;
procedure TSelectPropertiesForm.LBComponentsSelectionChange(Sender: TObject;
User: boolean);
begin
ShowProperties(GetSelectedComponent);
end;
procedure TSelectPropertiesForm.LBPropertiesClick(Sender: TObject);
begin
end;
procedure TSelectPropertiesForm.LBPropertiesDblClick(Sender: TObject);
begin
AddSelectedProperties;
end;
procedure TSelectPropertiesForm.SelectPropertiesFormClose(Sender: TObject;
var CloseAction: TCloseAction);
begin
IDEDialogLayoutList.SaveLayout(Self);
end;
procedure TSelectPropertiesForm.SelectPropertiesFormCreate(Sender: TObject);
begin
BAdd.Caption:=ilesAdd;
BDelete.Caption:=oisDelete;
BClear.Caption:=oisClear;
BOK.Caption:=oisOk;
BCancel.Caption:=oiStdActDataSetCancel1Hint;
LComponents.Caption:=oisComponents;
LProperties.Caption:=oisProperties;
IDEDialogLayoutList.ApplyLayout(Self,485,460);
end;
procedure TSelectPropertiesForm.BAddClick(Sender: TObject);
begin
AddSelectedProperties;
end;
procedure TSelectPropertiesForm.BClearClick(Sender: TObject);
begin
LBSelected.Items.Clear;
ShowProperties(FSelectedComponent);
end;
procedure TSelectPropertiesForm.BDeleteClick(Sender: TObject);
begin
DeleteSelectedProperties;
end;
function TSelectPropertiesForm.GetSelectedProps: String;
begin
//debugln('TSelectPropertiesForm.GetSelectedProps');
LBSelected.Items.Delimiter:=';';
Result:=LBSelected.Items.DelimitedText;
end;
procedure TSelectPropertiesForm.SetSelectedProps(const AValue: String);
var
L : TStringList;
I : Integer;
begin
//debugln('TSelectPropertiesForm.SetSelectedProps');
L:=TStringList.Create;
Try
L.Delimiter:=';';
L.DelimitedText:=AValue;
For I:=0 to L.Count-1 do
L[i]:=Trim(L[i]);
L.Sort;
LBSelected.Items.Assign(L);
Finally
L.Free;
end;
end;
procedure TSelectPropertiesForm.ShowComponents;
var
C : TComponent;
I : Integer;
begin
//debugln('TSelectPropertiesForm.ShowComponents');
With LBComponents.Items do
try
BeginUpdate;
Clear;
If Assigned(FPropComponent) then
begin
AddObject(FPropComponent.Name,FPropComponent);
For I:=0 to FPropComponent.ComponentCount-1 do
begin
C:=FPropComponent.Components[I];
AddObject(C.Name,C);
end;
end;
Finally
EndUpdate;
end;
If LBComponents.Items.Count>0 then
LBComponents.ItemIndex:=0;
ShowProperties(GetSelectedComponent);
end;
procedure TSelectPropertiesForm.ShowProperties(C : TComponent);
var
L : TPropInfoList;
I : Integer;
N,S : String;
P : PPropInfo;
begin
//debugln('TSelectPropertiesForm.ShowProperties ',dbgsName(C));
With LBProperties do
try
Items.BeginUpdate;
Clear;
FSelectedComponent:=C;
If (C<>Nil) then
begin
N:=C.Name;
L:=TPropInfoList.Create(C,tkProperties);
Try
For I:=0 to L.Count-1 do
begin
P:=L[I];
If (C<>FPropComponent) then
S:=N+'.'+P^.Name;
If LBSelected.Items.IndexOf(S)=-1 then
LBProperties.Items.Add(P^.Name);
end;
Finally
L.Free;
end;
end;
Finally
Items.EndUpdate;
end;
end;
function TSelectPropertiesForm.GetSelectedComponent: TComponent;
var
CurName: string;
begin
Result:=nil;
if LBComponents.ItemIndex>=0 then begin
CurName:=LBComponents.Items[LBComponents.ItemIndex];
if SysUtils.CompareText(CurName,FPropComponent.Name)=0 then
Result:=FPropComponent
else
Result:=FPropComponent.FindComponent(CurName);
//DebugLn(['TSelectPropertiesForm.GetSelectedComponent ItemIndex=',LBComponents.ItemIndex,' CurName=',CurName,' Result=',DbgSName(Result)]);
end;
end;
procedure TSelectPropertiesForm.AddSelectedProperties;
var
I : Integer;
N : String;
begin
//write('TSelectPropertiesForm.AddSelectedProperties A ');
//For I:=LBProperties.Items.Count-1 downto 0 do if LBProperties.Selected[i] then write(i);
//writeln('');
If Assigned(FSelectedComponent) then
With LBProperties do
try
Items.BeginUpdate;
LBSelected.Items.BeginUpdate;
//writeln('TSelectPropertiesForm.AddSelectedProperties B');
For I:=Items.Count-1 downto 0 do
If Selected[i] then
begin
//writeln('TSelectPropertiesForm.AddSelectedProperties C ',i);
N:=Items[i];
If (FSelectedComponent<>FPropComponent) then
N:=FSelectedComponent.Name+'.'+N;
LBSelected.Items.Add(N);
Items.Delete(I);
end;
Finally
LBSelected.Items.EndUpdate;
Items.EndUpdate;
end;
end;
procedure TSelectPropertiesForm.DeleteSelectedProperties;
var
I : Integer;
begin
//debugln('TSelectPropertiesForm.DeleteSelectedProperties');
With LBSelected do
try
Items.BeginUpdate;
For I:=Items.Count-1 downto 0 do
If Selected[i] then
Items.Delete(I);
Finally
Items.EndUpdate;
end;
ShowProperties(FSelectedComponent);
end;
end.
|