File: unit11.pas

package info (click to toggle)
dozzaqueux 3.51-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 5,764 kB
  • sloc: pascal: 35,831; xml: 961; makefile: 50; sh: 32
file content (64 lines) | stat: -rwxr-xr-x 1,246 bytes parent folder | download | duplicates (5)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
unit Unit11; 

{$mode objfpc}{$H+}

interface

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

type

  { Tsaisietitre }

  Tsaisietitre = class(TForm)
    BitBtn1: TBitBtn;
    Edittitre: TEdit;
    FontDialog1: TFontDialog;
    Label1: TLabel;
    SpeedButton1: TSpeedButton;
    procedure FormCreate(Sender: TObject);
    procedure FormShow(Sender: TObject);
    procedure SpeedButton1Click(Sender: TObject);
  private
    { private declarations }
    encreation:boolean;
  public
    { public declarations }
  end; 

var
  saisietitre: Tsaisietitre;
             fontetitre:tfont;
implementation

{ Tsaisietitre }

procedure Tsaisietitre.SpeedButton1Click(Sender: TObject);
begin
  if  fontdialog1.execute then
fontetitre:=fontdialog1.Font;
end;

procedure Tsaisietitre.FormCreate(Sender: TObject);
begin

  encreation:=true;
  Caption := rsTitreDuGraph;
  Label1.Caption := rsTitreDuGraph2;
  SpeedButton1.Caption := rsPolice;
  BitBtn1.Caption := rsOK;

end;

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

initialization
  {$I unit11.lrs}
 fontetitre:=tfont.Create;
end.