mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-14 06:03:20 +02:00
37 lines
455 B
ObjectPascal
37 lines
455 B
ObjectPascal
unit AddProfileDialog;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
|
StdCtrls, Buttons;
|
|
|
|
type
|
|
|
|
{ TAddProfileForm }
|
|
|
|
TAddProfileForm = class(TForm)
|
|
CancelButton: TBitBtn;
|
|
NameLabel: TLabel;
|
|
NameEdit: TEdit;
|
|
ProfileHeaderLabel: TLabel;
|
|
OKButton: TBitBtn;
|
|
private
|
|
|
|
public
|
|
|
|
end;
|
|
|
|
var
|
|
AddProfileForm: TAddProfileForm;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
|
|
end.
|
|
|