mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-17 05:56:24 +02:00
102 lines
3.6 KiB
ObjectPascal
102 lines
3.6 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 editor_codefolding_options;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, LResources, Forms, StdCtrls, ExtCtrls, Spin,
|
|
EditorOptions, LazarusIDEStrConsts, IDEOptionsIntf;
|
|
|
|
type
|
|
|
|
{ TEditorCodefoldingOptionsFrame }
|
|
|
|
TEditorCodefoldingOptionsFrame = class(TAbstractIDEOptionsEditor)
|
|
Bevel1: TBevel;
|
|
chkCodeFoldingEnabled: TCheckBox;
|
|
edDividerDrawLevel: TSpinEdit;
|
|
lblDividerDrawLevel: TLabel;
|
|
procedure chkCodeFoldingEnabledChange(Sender: TObject);
|
|
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
|
|
|
|
{ TEditorCodefoldingOptionsFrame }
|
|
|
|
procedure TEditorCodefoldingOptionsFrame.chkCodeFoldingEnabledChange(Sender: TObject);
|
|
begin
|
|
lblDividerDrawLevel.Enabled := chkCodeFoldingEnabled.Checked;
|
|
edDividerDrawLevel.Enabled := chkCodeFoldingEnabled.Checked;
|
|
end;
|
|
|
|
function TEditorCodefoldingOptionsFrame.GetTitle: String;
|
|
begin
|
|
Result := dlgUseCodeFolding;
|
|
end;
|
|
|
|
procedure TEditorCodefoldingOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
|
|
begin
|
|
chkCodeFoldingEnabled.Caption := dlgUseCodeFolding;
|
|
lblDividerDrawLevel.Caption := dlgCFDividerDrawLevel + ':';
|
|
end;
|
|
|
|
procedure TEditorCodefoldingOptionsFrame.ReadSettings(
|
|
AOptions: TAbstractIDEOptions);
|
|
begin
|
|
with AOptions as TEditorOptions do
|
|
begin
|
|
chkCodeFoldingEnabled.Checked := UseCodeFolding;
|
|
edDividerDrawLevel.Value := CFDividerDrawLevel;
|
|
end;
|
|
end;
|
|
|
|
procedure TEditorCodefoldingOptionsFrame.WriteSettings(
|
|
AOptions: TAbstractIDEOptions);
|
|
begin
|
|
with AOptions as TEditorOptions do
|
|
begin
|
|
UseCodeFolding := chkCodeFoldingEnabled.Checked;
|
|
CFDividerDrawLevel := edDividerDrawLevel.Value;
|
|
end;
|
|
end;
|
|
|
|
class function TEditorCodefoldingOptionsFrame.SupportedOptionsClass: TAbstractIDEOptionsClass;
|
|
begin
|
|
Result := TEditorOptions;
|
|
end;
|
|
|
|
initialization
|
|
{$I editor_codefolding_options.lrs}
|
|
RegisterIDEOptionsEditor(GroupEditor, TEditorCodefoldingOptionsFrame, EdtOptionsCodeFolding);
|
|
end.
|
|
|