mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 00:37:55 +02:00
128 lines
3.8 KiB
ObjectPascal
128 lines
3.8 KiB
ObjectPascal
{
|
|
***************************************************************************
|
|
* *
|
|
* This source is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This code is distributed in the hope that it will be useful, but *
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
* General Public License for more details. *
|
|
* *
|
|
* A copy of the GNU General Public License is available on the World *
|
|
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
|
|
* obtain it by writing to the Free Software Foundation, *
|
|
* Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA. *
|
|
* *
|
|
***************************************************************************
|
|
|
|
}
|
|
unit frmCustomApplicationOptions;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils,
|
|
// LCL
|
|
Forms, StdCtrls, ExtCtrls, ButtonPanel,
|
|
// IDEIntf
|
|
IdeIntfStrConsts,
|
|
// IDE
|
|
LazarusIDEStrConsts;
|
|
|
|
type
|
|
|
|
{ TCustomApplicationOptionsForm }
|
|
|
|
TCustomApplicationOptionsForm = class(TForm)
|
|
ButtonPanel:TButtonPanel;
|
|
CGOptions: TCheckGroup;
|
|
EClassName: TEdit;
|
|
ETitle: TEdit;
|
|
LETitle: TLabel;
|
|
LEClassName: TLabel;
|
|
procedure EClassNameKeyPress(Sender: TObject; var Key: char);
|
|
procedure FormCreate(Sender: TObject);
|
|
function GetAppName: String;
|
|
function GetBool(Index: integer): Boolean;
|
|
function GetTitle: String;
|
|
private
|
|
|
|
public
|
|
Property Title : String Read GetTitle;
|
|
Property AppClassName : String Read GetAppName;
|
|
Property CodeUsage : Boolean Index 0 Read GetBool;
|
|
Property CodeStopOnError : Boolean Index 1 Read GetBool;
|
|
Property CodeConstructor : Boolean Index 2 Read GetBool;
|
|
Property CodeDestructor : Boolean Index 3 Read GetBool;
|
|
Property CodeCheckOptions : Boolean Index 4 Read GetBool;
|
|
end;
|
|
|
|
var
|
|
CustomApplicationOptionsForm: TCustomApplicationOptionsForm;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
{ TCustomApplicationOptionsForm }
|
|
|
|
function TCustomApplicationOptionsForm.GetAppName: String;
|
|
begin
|
|
Result:=EClassName.Text;
|
|
end;
|
|
|
|
procedure TCustomApplicationOptionsForm.EClassNameKeyPress(Sender: TObject;
|
|
var Key: char);
|
|
|
|
Const
|
|
Alpha = ['a'..'z','A'..'Z'];
|
|
Num = ['0'..'9'];
|
|
Oth = ['_',#8,#9,#27]; // allow Backspace, tab, escape
|
|
AllowedKeys = Alpha+Num+Oth;
|
|
|
|
begin
|
|
If Not (Key in AllowedKeys) then
|
|
Key:=#0;
|
|
end;
|
|
|
|
procedure TCustomApplicationOptionsForm.FormCreate(Sender: TObject);
|
|
var
|
|
i: Integer;
|
|
begin
|
|
Caption:= lisNewConsoleApplication;
|
|
LEClassName.Caption:= lisApplicationClassName;
|
|
LETitle.Caption:= lisTitle;
|
|
CGOptions.Caption:= lisCodeGenerationOptions;
|
|
CGOptions.Items.Clear;
|
|
CGOptions.Items.Add(lisUsageMessageHOption);
|
|
CGOptions.Items.Add(lisStopOnException);
|
|
CGOptions.Items.Add(lisConstructorCode);
|
|
CGOptions.Items.Add(lisDestructorCode);
|
|
CGOptions.Items.Add(lisCheckOptions);
|
|
|
|
ButtonPanel.OKButton.Caption:=lisBtnOk;
|
|
ButtonPanel.CancelButton.Caption:=lisCancel;
|
|
|
|
// set all defaults to true
|
|
for i:=0 to CGOptions.Items.Count-1 do
|
|
CGOptions.Checked[i]:= true;
|
|
end;
|
|
|
|
function TCustomApplicationOptionsForm.GetBool(Index: integer): Boolean;
|
|
begin
|
|
Result:= CGOptions.Checked[Index];
|
|
end;
|
|
|
|
function TCustomApplicationOptionsForm.GetTitle: String;
|
|
begin
|
|
Result:=ETitle.Text;
|
|
end;
|
|
|
|
end.
|
|
|