mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-05 08:55:15 -05:00
b8b8c5125c
Added a lil bar for functionlist (easier to drag) and close button Made the updatetimer go to 30 mins, after first call Made the versioncheck have a different thread (made it pretty thread safe, afaik) Made about form show the version Fixed lil bug with FunctionList(where it would get big borders after selecint an item). git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@367 3f818213-9676-44b0-a9b4-5e4c4e03d09d
69 lines
1.6 KiB
ObjectPascal
69 lines
1.6 KiB
ObjectPascal
{
|
|
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.
|
|
|
|
about form for the Mufasa Macro Library
|
|
}
|
|
|
|
unit about;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
|
StdCtrls;
|
|
|
|
type
|
|
|
|
{ TAboutForm }
|
|
|
|
TAboutForm = class(TForm)
|
|
AboutMemo: TMemo;
|
|
procedure FormCreate(Sender: TObject);
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
AboutForm: TAboutForm;
|
|
|
|
implementation
|
|
uses
|
|
TestUnit;
|
|
{ TAboutForm }
|
|
|
|
procedure TAboutForm.FormCreate(Sender: TObject);
|
|
begin
|
|
AboutMemo.Lines.Add('---Simba---');
|
|
AboutMemo.Lines.Add('');
|
|
AboutMemo.Lines.Add('');
|
|
AboutMemo.Lines.Add('Simba is released under the GPL license.');
|
|
AboutMemo.Lines.Add(format('You are currently using version: %d',[Testunit.SimbaVersion]));
|
|
end;
|
|
|
|
initialization
|
|
{$I about.lrs}
|
|
|
|
end.
|
|
|