2010-01-25 08:59:44 -05:00
|
|
|
{
|
|
|
|
This file is part of the Mufasa Macro Library (MML)
|
|
|
|
Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer
|
|
|
|
|
|
|
|
MML 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
MML 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with MML. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
See the file COPYING, included in this distribution,
|
|
|
|
for details about the copyright.
|
|
|
|
|
|
|
|
Client class for the Mufasa Macro Library
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
unit Client;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2010-03-07 10:57:10 -05:00
|
|
|
Classes, SysUtils, MufasaTypes,MufasaBase,
|
2010-01-25 08:59:44 -05:00
|
|
|
IOManager, Files, Finder, Bitmaps, dtm, ocr,
|
|
|
|
{$IFDEF MSWINDOWS} os_windows {$ENDIF}
|
|
|
|
{$IFDEF LINUX} os_linux {$ENDIF};
|
|
|
|
|
|
|
|
{
|
|
|
|
TClient is a full-blown instance of the MML.
|
|
|
|
It binds all the components together.
|
|
|
|
}
|
|
|
|
|
2010-04-07 08:01:26 -04:00
|
|
|
type
|
|
|
|
|
|
|
|
TClient = class(TObject)
|
|
|
|
public
|
|
|
|
IOManager: TIOManager;
|
|
|
|
MFiles: TMFiles;
|
|
|
|
MFinder: TMFinder;
|
|
|
|
MBitmaps : TMBitmaps;
|
|
|
|
MDTM: TMDTM;
|
|
|
|
MOCR: TMOCR;
|
|
|
|
WritelnProc : TWritelnProc;
|
|
|
|
procedure WriteLn(s : string);
|
|
|
|
constructor Create(plugin_dir: string);
|
|
|
|
destructor Destroy; override;
|
|
|
|
end;
|
2010-01-25 08:59:44 -05:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2010-03-07 10:57:10 -05:00
|
|
|
|
|
|
|
|
|
|
|
procedure TClient.WriteLn(s: string);
|
|
|
|
begin
|
2010-04-02 11:55:54 -04:00
|
|
|
if (self <> nil) and Assigned(WritelnProc) then
|
|
|
|
WritelnProc(s)
|
|
|
|
else
|
2010-03-07 10:57:10 -05:00
|
|
|
mDebugLn(s);
|
|
|
|
end;
|
|
|
|
|
2010-01-25 08:59:44 -05:00
|
|
|
// Possibly pass arguments to a default window.
|
|
|
|
constructor TClient.Create(plugin_dir: string);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
2010-03-07 10:57:10 -05:00
|
|
|
WritelnProc:= nil;
|
2010-01-25 08:59:44 -05:00
|
|
|
IOManager:= TIOManager.Create(plugin_dir);
|
2010-03-07 10:57:10 -05:00
|
|
|
MFiles := TMFiles.Create(self);
|
2010-01-25 08:59:44 -05:00
|
|
|
MFinder := TMFinder.Create(Self);
|
|
|
|
MBitmaps := TMBitmaps.Create(self);
|
|
|
|
MDTM := TMDTM.Create(self);
|
|
|
|
MOCR := TMOCR.Create(self);
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TClient.Destroy;
|
|
|
|
begin
|
2010-02-01 03:21:52 -05:00
|
|
|
IOManager.SetState(True);
|
|
|
|
|
2010-01-25 08:59:44 -05:00
|
|
|
MOCR.Free;
|
|
|
|
MDTM.Free;
|
|
|
|
MBitmaps.Free;
|
|
|
|
MFinder.Free;
|
|
|
|
MFiles.Free;
|
|
|
|
IOManager.Free;
|
|
|
|
|
|
|
|
inherited;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|
|
|
|
|