mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-21 08:02:29 +02:00
118 lines
4.1 KiB
ObjectPascal
118 lines
4.1 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
* *
|
|
***************************************************************************
|
|
}
|
|
unit codetools_general_options;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, LResources, Forms, StdCtrls,
|
|
CodeToolsOptions, LazarusIDEStrConsts, IDEOptionsIntf;
|
|
|
|
type
|
|
|
|
{ TCodetoolsGeneralOptionsFrame }
|
|
|
|
TCodetoolsGeneralOptionsFrame = class(TAbstractIDEOptionsEditor)
|
|
AdjustTopLineDueToCommentCheckBox: TCheckBox;
|
|
CursorBeyondEOLCheckBox: TCheckBox;
|
|
JumpCenteredCheckBox: TCheckBox;
|
|
JumpingGroupBox: TGroupBox;
|
|
SkipForwardDeclarationsCheckBox: TCheckBox;
|
|
SrcPathEdit: TEdit;
|
|
SrcPathGroupBox: TGroupBox;
|
|
private
|
|
{ private declarations }
|
|
public
|
|
function GetTitle: String; override;
|
|
procedure Setup(ADialog: TAbstractOptionsEditorDialog); override;
|
|
procedure ReadSettings(AOptions: TAbstractIDEOptions); override;
|
|
procedure WriteSettings(AOptions: TAbstractIDEOptions); override;
|
|
class function SupportedOptionsClass: TAbstractIDEOptionsClass; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{ TCodetoolsGeneralOptionsFrame }
|
|
|
|
function TCodetoolsGeneralOptionsFrame.GetTitle: String;
|
|
begin
|
|
Result := lisMenuInsertGeneral;
|
|
end;
|
|
|
|
procedure TCodetoolsGeneralOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
|
|
begin
|
|
with SrcPathGroupBox do
|
|
Caption:=dlgAdditionalSrcPath;
|
|
|
|
with JumpingGroupBox do
|
|
Caption:=dlgJumpingETC;
|
|
|
|
with AdjustTopLineDueToCommentCheckBox do
|
|
Caption:=dlgAdjustTopLine;
|
|
|
|
with JumpCenteredCheckBox do
|
|
Caption:=dlgcentercursorline;
|
|
|
|
with CursorBeyondEOLCheckBox do
|
|
Caption:=dlgcursorbeyondeol;
|
|
|
|
SkipForwardDeclarationsCheckBox.Caption:=dlgSkipForwardDeclarations;
|
|
end;
|
|
|
|
procedure TCodetoolsGeneralOptionsFrame.ReadSettings(
|
|
AOptions: TAbstractIDEOptions);
|
|
begin
|
|
with AOptions as TCodeToolsOptions do
|
|
begin
|
|
SrcPathEdit.Text := SrcPath;
|
|
AdjustTopLineDueToCommentCheckBox.Checked := AdjustTopLineDueToComment;
|
|
JumpCenteredCheckBox.Checked := JumpCentered;
|
|
CursorBeyondEOLCheckBox.Checked := CursorBeyondEOL;
|
|
SkipForwardDeclarationsCheckBox.Checked := SkipForwardDeclarations;
|
|
end;
|
|
end;
|
|
|
|
procedure TCodetoolsGeneralOptionsFrame.WriteSettings(
|
|
AOptions: TAbstractIDEOptions);
|
|
begin
|
|
with AOptions as TCodeToolsOptions do
|
|
begin
|
|
SrcPath := SrcPathEdit.Text;
|
|
AdjustTopLineDueToComment := AdjustTopLineDueToCommentCheckBox.Checked;
|
|
JumpCentered := JumpCenteredCheckBox.Checked;
|
|
CursorBeyondEOL := CursorBeyondEOLCheckBox.Checked;
|
|
SkipForwardDeclarations := SkipForwardDeclarationsCheckBox.Checked;
|
|
end;
|
|
end;
|
|
|
|
class function TCodetoolsGeneralOptionsFrame.SupportedOptionsClass: TAbstractIDEOptionsClass;
|
|
begin
|
|
Result := TCodeToolsOptions;
|
|
end;
|
|
|
|
initialization
|
|
{$I codetools_general_options.lrs}
|
|
RegisterIDEOptionsEditor(GroupCodetools, TCodetoolsGeneralOptionsFrame, CdtOptionsGeneral);
|
|
end.
|
|
|