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
|
unit saisie_options_indicateur;
{$mode objfpc}
interface
uses
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
ExtCtrls, Buttons,UnitScaleFont,UChaines;
type
{ Toptions_indicateur }
Toptions_indicateur = class(TForm)
BitBtn1: TBitBtn;
RadioGroup1: TRadioGroup;
procedure FormCreate(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ private declarations }
encreation:boolean;
public
{ public declarations }
end;
var
options_indicateur: Toptions_indicateur;
implementation
{ Toptions_indicateur }
procedure Toptions_indicateur.FormCreate(Sender: TObject);
begin
encreation:=true;
caption:=rsOptionsPourL2;
radiogroup1.Caption:=rsDGradDeCoule;
radiogroup1.Items[0]:=rsVerticalEnFo;
radiogroup1.Items[1]:=rsHorizontalEn;
end;
procedure Toptions_indicateur.FormShow(Sender: TObject);
begin
if encreation then begin scalefont(self); encreation:=false; end;
end;
initialization
{$I saisie_options_indicateur.lrs}
end.
|