lazarus/ide/addprofiledialog.pas
2010-10-27 19:32:27 +00:00

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.