58 lines
876 B
ObjectPascal
58 lines
876 B
ObjectPascal
unit impostazioni;
|
|
|
|
{$mode ObjFPC}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, Spin,
|
|
StdCtrls, ButtonPanel, LazNumEdit;
|
|
|
|
type
|
|
|
|
{ TSettings }
|
|
|
|
TSettings = class(TForm)
|
|
ButtonPanel1: TButtonPanel;
|
|
CheckBox1: TCheckBox;
|
|
ComboBox1: TComboBox;
|
|
FloatSpinEdit1: TFloatSpinEdit;
|
|
FloatSpinEdit2: TFloatSpinEdit;
|
|
GroupBox1: TGroupBox;
|
|
GroupBox2: TGroupBox;
|
|
Label1: TLabel;
|
|
Label2: TLabel;
|
|
Label3: TLabel;
|
|
Label4: TLabel;
|
|
Label5: TLabel;
|
|
SpinEdit1: TSpinEdit;
|
|
procedure FormCreate(Sender: TObject);
|
|
procedure GroupBox2Click(Sender: TObject);
|
|
private
|
|
|
|
public
|
|
|
|
end;
|
|
|
|
var
|
|
Settings: TSettings;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
{ TSettings }
|
|
|
|
procedure TSettings.FormCreate(Sender: TObject);
|
|
begin
|
|
|
|
end;
|
|
|
|
procedure TSettings.GroupBox2Click(Sender: TObject);
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|
|
|