mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-20 11:19:23 +02:00
improved deb creation
git-svn-id: trunk@2914 -
This commit is contained in:
parent
8d7a9a72c6
commit
ae78151563
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -725,6 +725,7 @@ packager/brokendependenciesdlg.pas svneol=native#text/pascal
|
|||||||
packager/lazaruspackageintf.pas svneol=native#text/pascal
|
packager/lazaruspackageintf.pas svneol=native#text/pascal
|
||||||
packager/packagedefs.pas svneol=native#text/pascal
|
packager/packagedefs.pas svneol=native#text/pascal
|
||||||
packager/packageeditor.pas svneol=native#text/pascal
|
packager/packageeditor.pas svneol=native#text/pascal
|
||||||
|
packager/packagesystem.pas svneol=native#text/pascal
|
||||||
packager/pkggraphexporer.pas svneol=native#text/pascal
|
packager/pkggraphexporer.pas svneol=native#text/pascal
|
||||||
packager/pkgmanager.pas svneol=native#text/pascal
|
packager/pkgmanager.pas svneol=native#text/pascal
|
||||||
packager/ucomponentmanmain.lfm svneol=native#text/plain
|
packager/ucomponentmanmain.lfm svneol=native#text/plain
|
||||||
|
29
ide/main.pp
29
ide/main.pp
@ -46,7 +46,7 @@ uses
|
|||||||
Classes, SysUtils, Process, TypInfo,
|
Classes, SysUtils, Process, TypInfo,
|
||||||
// lcl
|
// lcl
|
||||||
LCLType, LclLinux, LMessages, LResources, StdCtrls, Forms, Buttons, Menus,
|
LCLType, LclLinux, LMessages, LResources, StdCtrls, Forms, Buttons, Menus,
|
||||||
ComCtrls, Spin, FileCtrl, Controls, Graphics, GraphType, ExtCtrls, Dialogs,
|
FileCtrl, Controls, Graphics, GraphType, ExtCtrls, Dialogs,
|
||||||
// codetools
|
// codetools
|
||||||
CodeToolManager, CodeCache, DefineTemplates,
|
CodeToolManager, CodeCache, DefineTemplates,
|
||||||
// synedit
|
// synedit
|
||||||
@ -59,30 +59,22 @@ uses
|
|||||||
CompReg, IDEComp, AbstractFormEditor, Designer, FormEditor, CustomFormEditor,
|
CompReg, IDEComp, AbstractFormEditor, Designer, FormEditor, CustomFormEditor,
|
||||||
ObjectInspector, PropEdits, ControlSelection, ColumnDlg, MenuPropEdit,
|
ObjectInspector, PropEdits, ControlSelection, ColumnDlg, MenuPropEdit,
|
||||||
// debugger
|
// debugger
|
||||||
Debugger, DBGOutputForm, GDBMIDebugger, RunParamsOpts, Watchesdlg,
|
RunParamsOpts, BaseDebugManager, DebugManager,
|
||||||
BreakPointsdlg, DebuggerDlg, LocalsDlg,
|
|
||||||
// packager
|
// packager
|
||||||
PkgManager, BasePkgManager,
|
PkgManager, BasePkgManager,
|
||||||
// source editing
|
// source editing
|
||||||
UnitEditor, EditDefineTree, CodeToolsOptions, IDEOptionDefs, CodeToolsDefines,
|
UnitEditor, EditDefineTree, CodeToolsOptions, IDEOptionDefs, CodeToolsDefines,
|
||||||
DiffDialog, DiskDiffsDialog, UnitInfoDlg, EditorOptions, ViewUnit_dlg,
|
DiffDialog, DiskDiffsDialog, UnitInfoDlg, EditorOptions, ViewUnit_dlg,
|
||||||
// rest ide
|
// rest of the ide
|
||||||
LazarusIDEStrConsts, LazConf, MsgView, EnvironmentOpts,
|
LazarusIDEStrConsts, LazConf, MsgView, EnvironmentOpts,
|
||||||
TransferMacros, KeyMapping, IDEProcs, ExtToolDialog, ExtToolEditDlg,
|
TransferMacros, KeyMapping, IDEProcs, ExtToolDialog, ExtToolEditDlg,
|
||||||
MacroPromptDlg, OutputFilter, BuildLazDialog, MiscOptions,
|
MacroPromptDlg, OutputFilter, BuildLazDialog, MiscOptions,
|
||||||
InputHistory, UnitDependencies, ClipBoardHistory, ProcessList,
|
InputHistory, UnitDependencies, ClipBoardHistory, ProcessList,
|
||||||
InitialSetupDlgs, NewDialog, MakeResStrDlg, ToDoList, AboutFrm,
|
InitialSetupDlgs, NewDialog, MakeResStrDlg, ToDoList, AboutFrm,
|
||||||
// main ide
|
// main ide
|
||||||
BaseDebugManager, DebugManager, MainBar;
|
MainBar;
|
||||||
|
|
||||||
type
|
type
|
||||||
TDisplayState = (
|
|
||||||
dsSource, // focussing sourcenotebook
|
|
||||||
dsInspector, // focussing object inspector
|
|
||||||
dsForm, // focussing designer form
|
|
||||||
dsInspector2 // focussing object inspector
|
|
||||||
);
|
|
||||||
|
|
||||||
TMainIDE = class(TMainIDEBar)
|
TMainIDE = class(TMainIDEBar)
|
||||||
// event handlers
|
// event handlers
|
||||||
|
|
||||||
@ -470,7 +462,7 @@ type
|
|||||||
|
|
||||||
// package(s)
|
// package(s)
|
||||||
function DoNewPackage: TModalResult;
|
function DoNewPackage: TModalResult;
|
||||||
|
|
||||||
// edit menu
|
// edit menu
|
||||||
procedure DoEditMenuCommand(EditorCommand: integer);
|
procedure DoEditMenuCommand(EditorCommand: integer);
|
||||||
|
|
||||||
@ -5263,10 +5255,7 @@ end;
|
|||||||
|
|
||||||
function TMainIDE.DoNewPackage: TModalResult;
|
function TMainIDE.DoNewPackage: TModalResult;
|
||||||
begin
|
begin
|
||||||
Result:=mrCancel;
|
Result:=PkgBoss.DoNewPackage;
|
||||||
|
|
||||||
|
|
||||||
Result:=mrOk;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TMainIDE.DoBuildProject(BuildAll: boolean): TModalResult;
|
function TMainIDE.DoBuildProject(BuildAll: boolean): TModalResult;
|
||||||
@ -7344,8 +7333,7 @@ begin
|
|||||||
{$IFDEF IDE_MEM_CHECK}CheckHeapWrtMemCnt('TMainIDE.OnSrcNotebookShowHintForSource B');{$ENDIF}
|
{$IFDEF IDE_MEM_CHECK}CheckHeapWrtMemCnt('TMainIDE.OnSrcNotebookShowHintForSource B');{$ENDIF}
|
||||||
|
|
||||||
if (ToolStatus=itDebugger)
|
if (ToolStatus=itDebugger)
|
||||||
and (dcEvaluate in DebugBoss.Commands) then begin
|
and DebugBoss.Evaluate(Identifier,DebugEval) then begin
|
||||||
DebugBoss.Evaluate(Identifier,DebugEval);
|
|
||||||
if (DebugEval<>'') then
|
if (DebugEval<>'') then
|
||||||
SmartHintStr:=SmartHintStr+' = '+DebugEval;
|
SmartHintStr:=SmartHintStr+' = '+DebugEval;
|
||||||
end;
|
end;
|
||||||
@ -8123,6 +8111,9 @@ end.
|
|||||||
|
|
||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.505 2003/04/02 17:06:27 mattias
|
||||||
|
improved deb creation
|
||||||
|
|
||||||
Revision 1.504 2003/04/01 23:35:28 mattias
|
Revision 1.504 2003/04/01 23:35:28 mattias
|
||||||
added menu component editor from Olivier
|
added menu component editor from Olivier
|
||||||
|
|
||||||
|
76
packager/packagesystem.pas
Normal file
76
packager/packagesystem.pas
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
{ $Id$ }
|
||||||
|
{
|
||||||
|
/***************************************************************************
|
||||||
|
packagesystem.pas
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
***************************************************************************
|
||||||
|
* *
|
||||||
|
* 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: Mattias Gaertner
|
||||||
|
|
||||||
|
Abstract:
|
||||||
|
The package registration.
|
||||||
|
}
|
||||||
|
unit PackageSystem;
|
||||||
|
|
||||||
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Classes, SysUtils, AVL_Tree, PackageLinks, PackageDefs;
|
||||||
|
|
||||||
|
type
|
||||||
|
TLazPackageGraph = class
|
||||||
|
private
|
||||||
|
FItems: TAVLTree;
|
||||||
|
public
|
||||||
|
constructor Create;
|
||||||
|
destructor Destroy; override;
|
||||||
|
procedure Clear;
|
||||||
|
public
|
||||||
|
end;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
{ TLazPackageGraph }
|
||||||
|
|
||||||
|
constructor TLazPackageGraph.Create;
|
||||||
|
begin
|
||||||
|
FItems:=TAVLTree.Create(@CompareLazPackage);
|
||||||
|
end;
|
||||||
|
|
||||||
|
destructor TLazPackageGraph.Destroy;
|
||||||
|
begin
|
||||||
|
Clear;
|
||||||
|
FItems.Free;
|
||||||
|
inherited Destroy;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TLazPackageGraph.Clear;
|
||||||
|
begin
|
||||||
|
FItems.FreeAndClear;
|
||||||
|
end;
|
||||||
|
|
||||||
|
end.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user