lazarus/examples/dockmanager/ide_demo/feditbook.pas
2010-05-05 12:26:23 +00:00

272 lines
6.5 KiB
ObjectPascal

unit fEditBook;
(* Take2: embed a DockBook, add elastic sites.
Maintain a chain of active (editor) pages.
Whenever a page is activated, move it in front of the chain.
Destroy (and dequeue) all pages when the form is destroyed.
The queue head is stored in the global variable MRUEdit.
SynEdit seems not to be properly dockable - use intermediate form instead.
*)
{$mode objfpc}{$H+}
{ TODO : figure out what's wrong with the mru list - with multiple windows }
{$DEFINE mru} //problems with MRU list???
{$DEFINE DockSite}
interface
uses
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
SynEdit, EasyDockSite,
fDockBook;
type
//TEditPage = class(TSynEdit)
TEditPage = class(TCustomForm)
protected
FEdit: TSynEdit;
NRUEdit: TEditPage; //Next Recently Used EditPage
procedure DoFloatMsg(ADockSource: TDragDockObject); override;//CM_FLOAT
function GetDefaultDockCaption: string; override;
function GetPrev: TEditPage;
procedure SetFocus; override;
public
FileName: string;
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure LoadFile(const AName: string);
end;
(* EditPages is a notebook with special notification of its parent.
*)
TEditPages = class(TEasyDockBook)
protected
procedure AfterUndock(tabidx: integer); override;
end;
(* An EditBook wraps a DockBook.
AsString is implemented for save/load the entire form.
Reloading files has to be done separately, not as part of a layout?
*)
{$IFDEF dockSite}
TEditBook = class(TCustomDockSite)
{$ELSE}
TEditBook = class(TForm)
{$ENDIF}
protected
FEdit: TEditPages;
public
constructor Create(TheOwner: TComponent); override;
function OpenFile(const AName: string): boolean; //virtual;
function AddFile(const AName: string): boolean; //virtual;
procedure LoadFromStream(strm: TStream); override;
procedure SaveToStream(strm: TStream); override;
property Pages: TEditPages read FEdit;
end;
const
EditBookID = CustomDockSiteID + 1;
var
MRUEdit: TEditPage; //Most Recently Used EditPage
implementation
uses
uMakeSite;
{ TEditBook }
constructor TEditBook.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
FEdit := TEditPages.Create(self);
FEdit.BorderStyle := bsNone;
FEdit.Parent := self;
FEdit.Align := alClient;
FEdit.Visible := True;
FEdit.DragMode := dmManual; //disallow undocking
FEdit.StayDocked := True;
//problem: what happens with additional dock clients, when the last page is closed?
DockMaster.AddElasticSites(self, [alLeft, alRight, alBottom]);
end;
function TEditBook.AddFile(const AName: string): boolean;
var
i: integer;
ctl: TControl;
ep: TEditPage absolute ctl;
begin
for i := 0 to FEdit.DockClientCount - 1 do begin
ctl := FEdit.DockClients[i];
Result := ep.FileName = AName;
if Result then
exit;
end;
//file not found
Result := OpenFile(AName);
end;
function TEditBook.OpenFile(const AName: string): boolean;
var
se: TEditPage;
begin
se := TEditPage.Create(Owner);
se.LoadFile(AName);
se.ManualDock(FEdit);
end;
procedure TEditBook.LoadFromStream(strm: TStream);
var
i, n: byte;
fn: string;
begin
(* Merge list of files with already open files.
*)
//inherited LoadFromStream(strm);
i := strm.ReadByte;
assert(i = EditBookID, 'bad stream');
n := strm.ReadByte;
for i := 0 to n-1 do begin
fn := strm.ReadAnsiString;
AddFile(fn);
end;
end;
procedure TEditBook.SaveToStream(strm: TStream);
var
i, n: byte;
ctl: TControl;
ep: TEditPage absolute ctl;
begin
(* Stream list of open files.
*)
//inherited SaveToStream(strm);
strm.WriteByte(EditBookID);
n := FEdit.DockClientCount;
strm.WriteByte(n);
for i := 0 to n - 1 do begin
ctl := FEdit.DockClients[i];
strm.WriteAnsiString(ep.FileName);
end;
end;
{ TEditPage }
constructor TEditPage.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
//FloatingDockSiteClass := TEditBook; //also created if NOT floating?
DragKind := dkDock;
DragMode := dmAutomatic; //most probably doesn't work
FEdit := TSynEdit.Create(self);
FEdit.Parent := self;
FEdit.Align := alClient;
//update chain
NRUEdit := MRUEdit;
MRUEdit := self;
//SetFocus;
end;
destructor TEditPage.Destroy;
var
prev: TEditPage;
begin
//update chain
if MRUEdit = self then
MRUEdit := NRUEdit
else begin
prev := GetPrev;
if prev <> nil then
prev.NRUEdit := NRUEdit; //okay
//else not in chain???
end;
inherited Destroy;
end;
procedure TEditPage.DoFloatMsg(ADockSource: TDragDockObject);
var
FloatHost: TEditBook;
begin
//wrap into TEditBook
if False then inherited DoFloatMsg(ADockSource); //for reference purpose only
//parent still is the OLD parent!
//if Parent <> nil then exit; //really do nothing? (if normal child)
FloatHost := TEditBook.Create(Application); // CreateFloatingDockSite(ADockSource.DockRect);
FloatHost.BoundsRect := ADockSource.DockRect;
FloatHost.Visible := True;
FloatHost.Caption := FloatHost.GetDockCaption(Self);
ADockSource.DragTarget := FloatHost.FEdit; // FloatHost;
ADockSource.DropOnControl := nil; // FloatHost.FEdit;
ADockSource.DropAlign := alCustom;
end;
function TEditPage.GetDefaultDockCaption: string;
begin
Result := ExtractFileName(FileName);
if Result = '' then
Result := inherited GetDefaultDockCaption;
end;
function TEditPage.GetPrev: TEditPage;
begin
//get preceding edit page in MRU chain
if MRUEdit = self then
exit(nil);
//not head
Result := MRUEdit;
while (Result <> nil) and (Result.NRUEdit <> self) do
Result := Result.NRUEdit;
//now result can be nil if we are not chained at all!
end;
procedure TEditPage.LoadFile(const AName: string);
begin
FileName := AName;
FEdit.Lines.LoadFromFile(AName);
Caption := ExtractFileName(AName);
end;
procedure TEditPage.SetFocus;
var
prev: TEditPage;
begin
//repair
//FloatingDockSiteClass := TEditBook; //not used???
//update chain
if MRUEdit <> self then begin
prev := GetPrev;
prev.NRUEdit := NRUEdit; //deQ
NRUEdit := MRUEdit;
MRUEdit := self;
end;
inherited SetFocus;
end;
{ TEditPages }
procedure TEditPages.AfterUndock(tabidx: integer);
var
frm: TCustomForm;
begin
//if last client undocked - close
if Tabs.ButtonCount = 0 then begin
frm := GetParentForm(self);
if frm is TEditBook then begin
frm.Close;
exit;
end;
end;
inherited AfterUndock(tabidx);
end;
{$R *.lfm}
initialization
RegisterClass(TEditBook);
RegisterClass(TEditPage);
end.