File: unitgpl.pas

package info (click to toggle)
dozzaqueux 3.51-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,780 kB
  • sloc: pascal: 35,831; xml: 961; makefile: 50; sh: 32
file content (49 lines) | stat: -rwxr-xr-x 760 bytes parent folder | download | duplicates (6)
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
unit UnitGPL;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
  SynMemo, StdCtrls,UnitScaleFont;

type

  { TFormgpl }

  TFormgpl = class(TForm)
    Memo1: TMemo;
    procedure FormCreate(Sender: TObject);
    procedure FormShow(Sender: TObject);
  private
    { private declarations }
    encreation:boolean;
  public
    { public declarations }
  end; 

var
  Formgpl: TFormgpl;

implementation

{ TFormgpl }

procedure TFormgpl.FormCreate(Sender: TObject);
begin

    encreation:=true;
  Caption := 'License GPL';
end;

procedure TFormgpl.FormShow(Sender: TObject);
begin
  if encreation then begin scalefont(self); encreation:=false; end;
end;

initialization
  {$I unitgpl.lrs}

end.