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
|
{
/***************************************************************************
addtoprojectdlg.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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA. *
* *
***************************************************************************
Author: Mattias Gaertner
}
unit AddToProjectDlg;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Laz_AVL_Tree,
// LCL
Forms, Controls, Buttons, ComCtrls, StdCtrls, Dialogs, ButtonPanel,
// LazUtils
FileUtil, LazFileUtils,
// IDEIntf
IDEWindowIntf, PackageIntf,
// IDE
LazarusIDEStrConsts, IDEImagesIntf, Project, InputHistory, PackageDefs,
ProjPackChecks;
type
{ TAddToProjectDialog }
TAddToProjectDialog = class(TForm)
AddFileListView: TListView;
ButtonPanel: TButtonPanel;
procedure AddFileButtonClick(Sender: TObject);
procedure AddFileListViewSelectItem(Sender: TObject; {%H-}Item: TListItem;
{%H-}Selected: Boolean);
procedure AddToProjectDialogClose(Sender: TObject;
var {%H-}CloseAction: TCloseAction);
private
fProject: TProject;
fFileNames: TStrings;
procedure UpdateAvailableFiles;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
end;
function ShowAddToProjectDlg(AProject: TProject; AFileNames: TStrings): TModalResult;
implementation
{$R *.lfm}
function ShowAddToProjectDlg(AProject: TProject; AFileNames: TStrings): TModalResult;
var
AddToProjectDialog: TAddToProjectDialog;
begin
AddToProjectDialog:=TAddToProjectDialog.Create(nil);
try
AddToProjectDialog.fProject:=AProject;
AddToProjectDialog.fFileNames:=AFileNames;
AddToProjectDialog.UpdateAvailableFiles;
Result:=AddToProjectDialog.ShowModal;
finally
AddToProjectDialog.Free;
end;
end;
{ TAddToProjectDialog }
constructor TAddToProjectDialog.Create(TheOwner: TComponent);
var
CurColumn: TListColumn;
begin
inherited Create(TheOwner);
Caption:=lisProjAddEditorFile;
IDEDialogLayoutList.ApplyLayout(Self,500,300);
ButtonPanel.OKButton.ModalResult := mrNone;
ButtonPanel.OKButton.OnClick := @AddFileButtonClick;
ButtonPanel.OKButton.Caption:=lisA2PAddFiles;
ButtonPanel.OkButton.Enabled:=AddFileListView.SelCount>0;
CurColumn:=AddFileListView.Columns.Add;
CurColumn.Caption:=lisA2PFilename2;
end;
destructor TAddToProjectDialog.Destroy;
begin
inherited Destroy;
end;
procedure TAddToProjectDialog.AddToProjectDialogClose(Sender: TObject;
var CloseAction: TCloseAction);
begin
IDEDialogLayoutList.SaveLayout(Self);
end;
procedure TAddToProjectDialog.AddFileButtonClick(Sender: TObject);
var
i: Integer;
NewFilename: string;
begin
for i:=0 to AddFileListView.Items.Count-1 do
if AddFileListView.Items[i].Selected then
begin
NewFilename:=AddFileListView.Items[i].Caption;
case CheckAddingProjectFile(fProject, fFileNames, NewFilename) of
mrOk: ;
mrIgnore: continue;
else
exit;
end;
fFileNames.Add(NewFilename);
end;
ModalResult:=mrOk; // everything ok
end;
procedure TAddToProjectDialog.AddFileListViewSelectItem(Sender: TObject;
Item: TListItem; Selected: Boolean);
begin
ButtonPanel.OkButton.Enabled:=AddFileListView.SelCount>0;
end;
procedure TAddToProjectDialog.UpdateAvailableFiles;
var
CurFile: TUnitInfo;
NewListItem: TListItem;
NewFilename: String;
begin
AddFileListView.Items.BeginUpdate;
if fProject<>nil then begin
CurFile:=fProject.FirstUnitWithEditorIndex;
while CurFile<>nil do begin
if (not CurFile.IsPartOfProject) and (not CurFile.IsVirtual) then begin
NewFilename:=CreateRelativePath(CurFile.Filename,fProject.Directory);
NewListItem:=AddFileListView.Items.Add;
NewListItem.Caption:=NewFilename;
NewListItem.Selected:=True;
end;
CurFile:=CurFile.NextUnitWithEditorIndex;
end;
end;
AddFileListView.Items.EndUpdate;
ButtonPanel.OkButton.Enabled:=AddFileListView.SelCount>0;
end;
end.
|