
- initial support for InvalidCount , which allow to run program even if trial rules are broken (but only exactly set count) - IDE serial number used instead of volume serial git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@921 8e941d3f-bd1b-0410-a28a-d453659cc2b4
217 lines
5.5 KiB
ObjectPascal
217 lines
5.5 KiB
ObjectPascal
(* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is TurboPower OnGuard
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* TurboPower Software
|
|
*
|
|
* Portions created by the Initial Developer are Copyright (C) 1996-2002
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
* Andrew Haines andrew@haines.name {AH.01}
|
|
* conversion to CLX {AH.01}
|
|
* December 30, 2003 {AH.01}
|
|
*
|
|
* ***** END LICENSE BLOCK ***** *)
|
|
{*********************************************************}
|
|
{* OGABOUT0.PAS 1.13 *}
|
|
{* Copyright (c) 1997-00 TurboPower Software Co *}
|
|
{* All rights reserved. *}
|
|
{*********************************************************}
|
|
|
|
{$I ONGUARD.INC}
|
|
|
|
|
|
unit qogabout0; {AH.01}
|
|
|
|
interface
|
|
|
|
uses
|
|
{$IFDEF MSWINDOWS} Windows, {$ENDIF} {AH.01}
|
|
SysUtils, Classes,
|
|
Graphics, Controls,Buttons, Forms, Dialogs, StdCtrls, ExtCtrls,
|
|
ogutil,
|
|
{$IFDEF MSWINDOWS} ShellAPI, {$ENDIF} {AH.01}
|
|
ComponentEditors,
|
|
PropEdits;
|
|
// LazarusPackageIntf;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
{ TOgAboutForm }
|
|
|
|
TOgAboutForm = class(TForm)
|
|
l8: TLabel;
|
|
Panel1: TPanel;
|
|
Image1: TImage;
|
|
lblVersion: TLabel;
|
|
b0 : TBevel;
|
|
l1 : TLabel;
|
|
l2 : TLabel;
|
|
l3 : TLabel;
|
|
l4 : TLabel;
|
|
l5 : TLabel;
|
|
l6 : TLabel;
|
|
l7 : TLabel;
|
|
btnOK: TButton;
|
|
WebLbl: TLabel;
|
|
NewsLbl: TLabel;
|
|
WebLbl1: TLabel;
|
|
procedure btnOKClick(Sender: TObject);
|
|
procedure FormCreate(Sender: TObject);
|
|
procedure WebLbl1Click(Sender: TObject);
|
|
procedure WebLbl1MouseMove(Sender: TObject; Shift: TShiftState; X,
|
|
Y: Integer);
|
|
procedure WebLblMouseMove(Sender: TObject; Shift: TShiftState; X,
|
|
Y: Integer);
|
|
procedure NewsLblMouseMove(Sender: TObject; Shift: TShiftState; X,
|
|
Y: Integer);
|
|
procedure Panel2MouseMove(Sender: TObject; Shift: TShiftState; X,
|
|
Y: Integer);
|
|
procedure FormMouseMove(Sender: TObject; Shift: TShiftState; X,
|
|
Y: Integer);
|
|
procedure WebLblClick(Sender: TObject);
|
|
procedure NewsLblClick(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
TOgAboutProperty = class(TStringProperty) {!!.08}
|
|
public
|
|
function GetAttributes: TPropertyAttributes;
|
|
override;
|
|
procedure Edit;
|
|
override;
|
|
end;
|
|
|
|
implementation
|
|
uses
|
|
LResources;
|
|
|
|
|
|
|
|
|
|
{*** TOgVersionProperty ***}
|
|
|
|
function TOgAboutProperty.GetAttributes: TPropertyAttributes; {!!.08}
|
|
begin
|
|
Result := [paDialog, paReadOnly];
|
|
end;
|
|
|
|
procedure TOgAboutProperty.Edit; {!!.08}
|
|
begin
|
|
with TOgAboutForm.Create(Application) do begin
|
|
try
|
|
ShowModal;
|
|
finally
|
|
Free;
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
|
|
{*** TEsAboutForm ***}
|
|
|
|
procedure TOgAboutForm.btnOKClick(Sender: TObject);
|
|
begin
|
|
Close;
|
|
end;
|
|
|
|
procedure TOgAboutForm.FormCreate(Sender: TObject);
|
|
begin
|
|
Top := (Screen.Height - Height) div 3;
|
|
Left := (Screen.Width - Width) div 2;
|
|
lblVersion.Caption := 'Version ' + OgVersionStr;
|
|
end;
|
|
|
|
procedure TOgAboutForm.WebLbl1Click(Sender: TObject);
|
|
begin
|
|
{$IFDEF MSWINDOWS}
|
|
if ShellExecute(0, 'open', PChar('http://wiki.lazarus.freepascal.org/OnGuard'),
|
|
'', '', SW_SHOWNORMAL) <= 32 then
|
|
ShowMessage('Unable to start web browser');
|
|
{$ELSE}
|
|
ShowMessage('Unable to start web browser');
|
|
{$ENDIF}
|
|
WebLbl.Font.Color := clNavy;
|
|
end;
|
|
|
|
procedure TOgAboutForm.WebLbl1MouseMove(Sender: TObject; Shift: TShiftState; X,
|
|
Y: Integer);
|
|
begin
|
|
WebLbl1.Font.Color := clRed;
|
|
end;
|
|
|
|
procedure TOgAboutForm.WebLblMouseMove(Sender: TObject; Shift: TShiftState;
|
|
X, Y: Integer);
|
|
begin
|
|
WebLbl.Font.Color := clRed;
|
|
end;
|
|
|
|
procedure TOgAboutForm.NewsLblMouseMove(Sender: TObject;
|
|
Shift: TShiftState; X, Y: Integer);
|
|
begin
|
|
NewsLbl.Font.Color := clRed;
|
|
end;
|
|
|
|
procedure TOgAboutForm.Panel2MouseMove(Sender: TObject; Shift: TShiftState;
|
|
X, Y: Integer);
|
|
begin
|
|
NewsLbl.Font.Color := clNavy;
|
|
end;
|
|
|
|
procedure TOgAboutForm.FormMouseMove(Sender: TObject; Shift: TShiftState;
|
|
X, Y: Integer);
|
|
begin
|
|
WebLbl.Font.Color := clNavy;
|
|
NewsLbl.Font.Color := clNavy;
|
|
WebLbl1.Font.Color := clNavy;
|
|
end;
|
|
|
|
procedure TOgAboutForm.WebLblClick(Sender: TObject);
|
|
begin
|
|
{$IFDEF MSWINDOWS}
|
|
if ShellExecute(0, 'open', PChar('http://sourceforge.net/projects/tponguard'),
|
|
'', '', SW_SHOWNORMAL) <= 32 then
|
|
ShowMessage('Unable to start web browser');
|
|
{$ELSE}
|
|
ShowMessage('Unable to start web browser');
|
|
{$ENDIF}
|
|
WebLbl.Font.Color := clNavy;
|
|
end;
|
|
|
|
procedure TOgAboutForm.NewsLblClick(Sender: TObject);
|
|
begin
|
|
{$IFDEF MSWINDOWS}
|
|
if ShellExecute(0, 'open', PChar('https://sourceforge.net/forum/?group_id=71010'),
|
|
'', '', SW_SHOWNORMAL) <= 32 then
|
|
ShowMessage('Unable to start news reader');
|
|
{$ELSE}
|
|
ShowMessage('Unable to start news reader');
|
|
{$ENDIF}
|
|
NewsLbl.Font.Color := clNavy;
|
|
end;
|
|
|
|
initialization
|
|
{$I qogabout0.lrs}
|
|
|
|
end.
|