lazcontrols: added TLvlGraphControl

git-svn-id: trunk@40584 -
This commit is contained in:
mattias 2013-03-18 18:50:49 +00:00
parent e8206aeb4a
commit bd90241752
6 changed files with 3724 additions and 3693 deletions

1
.gitattributes vendored
View File

@ -1699,6 +1699,7 @@ components/lazcontrols/lazcontrols.lpk svneol=native#text/xml
components/lazcontrols/lazcontrols.pas svneol=native#text/pascal
components/lazcontrols/listfilteredit.pas svneol=native#text/plain
components/lazcontrols/listfilteredit_icon.lrs svneol=native#text/plain
components/lazcontrols/lvlgraphctrl.pas svneol=native#text/plain
components/lazcontrols/shortpathedit.pas svneol=native#text/plain
components/lazcontrols/shortpathedit_icon.lrs svneol=native#text/plain
components/lazcontrols/treefilteredit.pas svneol=native#text/plain

File diff suppressed because it is too large Load Diff

View File

@ -34,7 +34,7 @@ uses
LazLogger, TreeFilterEdit, Forms, Controls, Graphics, Dialogs, ExtCtrls,
Buttons, ComCtrls, LCLType, LazIDEIntf, ProjectIntf, IDEWindowIntf,
PackageIntf, CTUnitGraph, CodeToolManager, DefineTemplates, CTUnitGroupGraph,
CodeToolsStructs, CodyCtrls;
CodeToolsStructs, CodyCtrls, LvlGraphCtrl;
const // ToDo: make resourcestring
lisSelectAUnit = 'Select an unit';

View File

@ -19,7 +19,7 @@
<Description Value="Some extra LCL controls needed by the IDE."/>
<License Value="modified LGPL-2"/>
<Version Major="1" Release="1"/>
<Files Count="5">
<Files Count="6">
<Item1>
<Filename Value="dividerbevel.pas"/>
<HasRegisterProc Value="True"/>
@ -43,8 +43,12 @@
<Item5>
<Filename Value="shortpathedit.pas"/>
<HasRegisterProc Value="True"/>
<UnitName Value="shortpathedit"/>
<UnitName Value="ShortPathEdit"/>
</Item5>
<Item6>
<Filename Value="lvlgraphctrl.pas"/>
<UnitName Value="lvlgraphctrl"/>
</Item6>
</Files>
<LazDoc Paths="docs"/>
<Type Value="RunAndDesignTime"/>

View File

@ -8,7 +8,7 @@ interface
uses
DividerBevel, ExtendedNotebook, ListFilterEdit, TreeFilterEdit,
ShortPathEdit, LazarusPackageIntf;
ShortPathEdit, LvlGraphCtrl, LazarusPackageIntf;
implementation

File diff suppressed because it is too large Load Diff