/usr/lib/lazarus/0.9.30.4/ide/restrictionbrowser.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 291 292 293 294 295 296 297 298 299 300 301 | {
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code 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. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************
Author: Tomas Gregorovic
Abstract:
Browser for widget set restricted properties.
}
unit RestrictionBrowser;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, InterfaceBase, LCLProc, Contnrs, Forms, Controls, Graphics,
Dialogs, StdCtrls, ComCtrls, Masks, ExtCtrls, Buttons,
IDEImagesIntf, ObjectInspector,
CompatibilityRestrictions, IDEOptionDefs, LazarusIDEStrConsts,
EnvironmentOpts, ComponentReg, LazConf;
type
{ TRestrictionBrowserView }
TRestrictionBrowserView = class(TForm)
NameFilterEdit: TEdit;
IssueFilterGroupBox: TGroupBox;
IssueMemo: TMemo;
NameLabel: TLabel;
IssueTreeView: TTreeView;
procedure FormCreate(Sender: TObject);
procedure IssueTreeViewSelectionChanged(Sender: TObject);
procedure NameFilterEditChange(Sender: TObject);
private
FIssueList: TRestrictedList;
FClasses: TClassList;
FCanUpdate: Boolean;
procedure GetComponentClass(const AClass: TComponentClass);
public
procedure UpdateIssueList;
procedure SetIssueName(const AIssueName: String);
end;
var
RestrictionBrowserView: TRestrictionBrowserView = nil;
implementation
{$R *.lfm}
{ TRestrictionBrowserView }
procedure TRestrictionBrowserView.FormCreate(Sender: TObject);
var
P: TLCLPlatform;
X: Integer;
begin
FIssueList := GetRestrictedList;
Name := NonModalIDEWindowNames[nmiwIssueBrowser];
Caption := lisMenuViewRestrictionBrowser;
IssueFilterGroupBox.Caption := lisFilter;
NameLabel.Caption := lisCodeToolsDefsName;
IssueTreeView.Images := IDEImages.Images_16;
X := 10;
// create widget set filter buttons
for P := Low(TLCLPlatform) to High(TLCLPlatform) do
begin
with TSpeedButton.Create(Self) do
begin
Name := 'SpeedButton' + LCLPlatformDirNames[P];
Left := X;
Top := 4;
Width := 24;
Height := 24;
GroupIndex := Integer(P) + 1;
Down := True;
AllowAllUp := True;
try
IDEImages.Images_16.GetBitmap(
IDEImages.LoadImage(16, 'issue_'+LCLPlatformDirNames[P]), Glyph);
except
DebugLn('Restriction Browser: Unable to load image for ' + LCLPlatformDirNames[P] + '!');
end;
ShowHint := True;
Hint := LCLPlatformDisplayNames[P];
OnClick := @NameFilterEditChange;
Parent := IssueFilterGroupBox;
Inc(X, Width);
end;
end;
FCanUpdate := True;
UpdateIssueList;
end;
procedure TRestrictionBrowserView.IssueTreeViewSelectionChanged(Sender: TObject);
var
Issue: TRestriction;
begin
if IssueTreeView.Selected = nil then
begin
IssueMemo.Clear;
Exit;
end;
Issue := PRestriction(IssueTreeView.Selected.Data)^;
IssueMemo.Text := Issue.Short + LineEnding + LineEnding + Issue.Description;
end;
procedure TRestrictionBrowserView.NameFilterEditChange(Sender: TObject);
begin
UpdateIssueList;
end;
procedure TRestrictionBrowserView.GetComponentClass(const AClass: TComponentClass);
begin
FClasses.Add(AClass);
end;
procedure TRestrictionBrowserView.UpdateIssueList;
var
IssueClass: String;
IssueProperty: String;
IssueMask: TMaskList;
S, M: String;
I, ID: PtrInt;
Issues: TStringList;
Issue: TRestriction;
C: TClass;
AddParentClass: Boolean;
P: TLCLPlatform;
WidgetSetFilter: TLCLPlatforms;
Component: TComponent;
begin
if not FCanUpdate then Exit;
S := Trim(NameFilterEdit.Text);
IssueClass := '';
IssueProperty := '';
WidgetSetFilter := [];
for P := Low(TLCLPlatform) to High(TLCLPlatform) do
begin
Component := FindComponent('SpeedButton' + LCLPlatformDirNames[P]);
if Component is TSpeedButton then
if (Component as TSpeedButton).Down then Include(WidgetSetFilter, P);
end;
I := Pos('.', S);
if I = 0 then IssueClass := S
else
begin
IssueClass := Copy(S, 0, I - 1);
IssueProperty := Copy(S, I + 1, MaxInt);
end;
if (IssueProperty = '') and (IssueClass = '') then
M := '*'
else
begin
if IssueClass = '' then
M := '*.' + IssueProperty + '*'
else
begin
// find parent classes
M := '';
FClasses := TClassList.Create;
try
IDEComponentPalette.IterateRegisteredClasses(@GetComponentClass);
FClasses.Add(TCustomForm);
FClasses.Add(TForm);
FClasses.Add(TDataModule);
FClasses.Add(TFrame);
for I := 0 to FClasses.Count - 1 do
begin
C := FClasses[I];
AddParentClass := False;
while C <> nil do
begin
if AddParentClass or (Copy(C.ClassName, 0, Length(IssueClass)) = IssueClass) then
begin
if M <> '' then M := M + ';';
M := M + C.ClassName + ';' + C.ClassName + '.' + IssueProperty + '*';
AddParentClass := True;
end;
C := C.ClassParent;
end;
end;
if FClasses.Count = 0 then
M := IssueClass + '*;' + IssueClass + '*.' + IssueProperty + '*';
if (Copy('TWidgetSet', 0, Length(IssueClass)) = IssueClass) then
M := M + ';TWidgetSet';
finally
FClasses.Free;
end;
end;
end;
IssueMask := TMaskList.Create(M);
Issues := TStringList.Create;
try
for I := 0 to High(FIssueList) do
begin
Issue := FIssueList[I];
if Issue.WidgetSet in WidgetSetFilter then
if IssueMask.Matches(Issue.Name) then
Issues.AddObject(Issue.Name, TObject(I));
end;
Issues.Sort;
IssueTreeView.BeginUpdate;
try
IssueTreeView.Items.Clear;
for I := 0 to Issues.Count - 1 do
begin
with IssueTreeView.Items.AddChild(nil, Issues[I]) do
begin
ID := PtrInt(Issues.Objects[I]);
ImageIndex := IDEImages.LoadImage(16,
'issue_'+LCLPlatformDirNames[FIssueList[ID].WidgetSet]);
StateIndex := ImageIndex;
SelectedIndex := ImageIndex;
Data := @FIssueList[ID];
end;
if NameFilterEdit.Text = Issues[I] then
begin
IssueTreeView.Selected := IssueTreeView.Items[I];
end;
end;
finally
IssueTreeView.EndUpdate;
end;
finally
Issues.Free;
IssueMask.Free;
end;
if IssueTreeView.Items.Count > 0 then
begin
if IssueTreeView.Selected = nil then
IssueTreeView.Selected := IssueTreeView.Items[0];
end
else
IssueMemo.Clear;
end;
procedure TRestrictionBrowserView.SetIssueName(const AIssueName: String);
var
P: TLCLPlatform;
Component: TComponent;
begin
FCanUpdate := False;
try
NameFilterEdit.Text := AIssueName;
if AIssueName <> '' then
begin
for P := Low(TLCLPlatform) to High(TLCLPlatform) do
begin
Component := FindComponent('SpeedButton' + LCLPlatformDirNames[P]);
if Component is TSpeedButton then
(Component as TSpeedButton).Down := True;
end;
end;
finally
FCanUpdate := True;
UpdateIssueList;
end;
end;
end.
|