mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-22 01:43:47 +02:00
184 lines
7.1 KiB
ObjectPascal
184 lines
7.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 editor_general_misc_options;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
LResources, LCLProc, StdCtrls, SynEdit, ExtCtrls, EditorOptions,
|
|
LazarusIDEStrConsts, IDEProcs, IDEOptionsIntf, editor_general_options,
|
|
SynEditTextTrimmer;
|
|
|
|
type
|
|
{ TEditorGeneralMiscOptionsFrame }
|
|
|
|
TEditorGeneralMiscOptionsFrame = class(TAbstractIDEOptionsEditor)
|
|
EditorTrimSpaceTypeCheckBox: TComboBox;
|
|
EditorOptionsGroupBox: TCheckGroup;
|
|
EditorTrimSpaceTypeLabel: TLabel;
|
|
procedure EditorOptionsGroupBoxItemClick(Sender: TObject; Index: integer);
|
|
private
|
|
FDialog: TAbstractOptionsEditorDialog;
|
|
function GeneralPage: TEditorGeneralOptionsFrame; inline;
|
|
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
|
|
|
|
{ TEditorGeneralMiscOptionsFrame }
|
|
|
|
function TEditorGeneralMiscOptionsFrame.GetTitle: String;
|
|
begin
|
|
Result := dlgEdMisc;
|
|
end;
|
|
|
|
procedure TEditorGeneralMiscOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
|
|
begin
|
|
FDialog := ADialog;
|
|
EditorOptionsGroupBox.Caption := dlgEditorOptions;
|
|
with EditorOptionsGroupBox do
|
|
begin
|
|
// visual effects
|
|
//Items.Add(dlgShowGutterHints); // unimplemented
|
|
Items.Add(lisShowSpecialCharacters);
|
|
// spaces
|
|
Items.Add(dlgTrimTrailingSpaces);
|
|
// mouse
|
|
Items.Add(dlgCloseButtonsNotebook);
|
|
// copying
|
|
Items.Add(dlgFindTextatCursor);
|
|
Items.Add(dlgCopyWordAtCursorOnCopyNone);
|
|
Items.Add(dlgCopyPasteKeepFolds);
|
|
end;
|
|
EditorTrimSpaceTypeCheckBox.Items.Add(dlgTrimSpaceTypeLeaveLine);
|
|
EditorTrimSpaceTypeCheckBox.Items.Add(dlgTrimSpaceTypeEditLine);
|
|
EditorTrimSpaceTypeCheckBox.Items.Add(dlgTrimSpaceTypeCaretMove);
|
|
EditorTrimSpaceTypeCheckBox.Items.Add(dlgTrimSpaceTypePosOnly);
|
|
EditorTrimSpaceTypeLabel.Caption := dlgTrimSpaceTypeCaption;
|
|
end;
|
|
|
|
procedure TEditorGeneralMiscOptionsFrame.ReadSettings(AOptions: TAbstractIDEOptions);
|
|
begin
|
|
with AOptions as TEditorOptions do
|
|
begin
|
|
with EditorOptionsGroupBox do
|
|
begin
|
|
Checked[Items.IndexOf(lisShowSpecialCharacters)] := eoShowSpecialChars in SynEditOptions;
|
|
Checked[Items.IndexOf(dlgTrimTrailingSpaces)] := eoTrimTrailingSpaces in SynEditOptions;
|
|
Checked[Items.IndexOf(dlgCloseButtonsNotebook)] := ShowTabCloseButtons;
|
|
//Checked[Items.IndexOf(dlgShowGutterHints)] := ShowGutterHints;
|
|
Checked[Items.IndexOf(dlgFindTextatCursor)] := FindTextAtCursor;
|
|
Checked[Items.IndexOf(dlgCopyWordAtCursorOnCopyNone)] := CopyWordAtCursorOnCopyNone;
|
|
Checked[Items.IndexOf(dlgCopyPasteKeepFolds)] := eoFoldedCopyPaste in SynEditOptions2;
|
|
end;
|
|
EditorTrimSpaceTypeCheckBox.ItemIndex := ord(TrimSpaceType);
|
|
end;
|
|
end;
|
|
|
|
procedure TEditorGeneralMiscOptionsFrame.WriteSettings(AOptions: TAbstractIDEOptions);
|
|
|
|
procedure UpdateOptionFromBool(AValue: Boolean; AnOption: TSynEditorOption); overload;
|
|
begin
|
|
if AValue then
|
|
TEditorOptions(AOptions).SynEditOptions := TEditorOptions(AOptions).SynEditOptions + [AnOption]
|
|
else
|
|
TEditorOptions(AOptions).SynEditOptions := TEditorOptions(AOptions).SynEditOptions - [AnOption];
|
|
end;
|
|
|
|
procedure UpdateOption(const CheckBoxName: String; AnOption: TSynEditorOption);
|
|
var
|
|
i: integer;
|
|
begin
|
|
i := EditorOptionsGroupBox.Items.IndexOf(CheckBoxName);
|
|
UpdateOptionFromBool(EditorOptionsGroupBox.Checked[i], AnOption);
|
|
end;
|
|
|
|
begin
|
|
with AOptions as TEditorOptions do
|
|
begin
|
|
UpdateOption(lisShowSpecialCharacters, eoShowSpecialChars);
|
|
UpdateOption(dlgTrimTrailingSpaces, eoTrimTrailingSpaces);
|
|
ShowTabCloseButtons := CheckGroupItemChecked(EditorOptionsGroupBox, dlgCloseButtonsNotebook);
|
|
CopyWordAtCursorOnCopyNone := CheckGroupItemChecked(EditorOptionsGroupBox, dlgCopyWordAtCursorOnCopyNone);
|
|
//ShowGutterHints := CheckGroupItemChecked(EditorOptionsGroupBox, dlgShowGutterHints);
|
|
FindTextAtCursor := CheckGroupItemChecked(EditorOptionsGroupBox, dlgFindTextatCursor);
|
|
TrimSpaceType := TSynEditStringTrimmingType(EditorTrimSpaceTypeCheckBox.ItemIndex);
|
|
if EditorOptionsGroupBox.Checked[EditorOptionsGroupBox.Items.IndexOf
|
|
(dlgCopyPasteKeepFolds)]
|
|
then
|
|
SynEditOptions2 := SynEditOptions2 + [eoFoldedCopyPaste]
|
|
else
|
|
SynEditOptions2 := SynEditOptions2 - [eoFoldedCopyPaste];
|
|
end;
|
|
end;
|
|
|
|
class function TEditorGeneralMiscOptionsFrame.SupportedOptionsClass: TAbstractIDEOptionsClass;
|
|
begin
|
|
Result := TEditorOptions;
|
|
end;
|
|
|
|
procedure TEditorGeneralMiscOptionsFrame.EditorOptionsGroupBoxItemClick(
|
|
Sender: TObject; Index: integer);
|
|
|
|
procedure SetOption(const CheckBoxName: String; AnOption: TSynEditorOption);
|
|
var
|
|
i: LongInt;
|
|
a: Integer;
|
|
begin
|
|
i := EditorOptionsGroupBox.Items.IndexOf(CheckBoxName);
|
|
if i < 0 then
|
|
Exit;
|
|
|
|
with GeneralPage do
|
|
for a := Low(PreviewEdits) to High(PreviewEdits) do
|
|
begin
|
|
if PreviewEdits[a] <> nil then
|
|
if EditorOptionsGroupBox.Checked[i] then
|
|
PreviewEdits[a].Options := PreviewEdits[a].Options + [AnOption]
|
|
else
|
|
PreviewEdits[a].Options := PreviewEdits[a].Options - [AnOption];
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
SetOption(lisShowSpecialCharacters, eoShowSpecialChars);
|
|
SetOption(dlgTrimTrailingSpaces, eoTrimTrailingSpaces);
|
|
end;
|
|
|
|
function TEditorGeneralMiscOptionsFrame.GeneralPage: TEditorGeneralOptionsFrame;
|
|
inline;
|
|
begin
|
|
Result := TEditorGeneralOptionsFrame(FDialog.FindEditor(TEditorGeneralOptionsFrame));
|
|
end;
|
|
|
|
initialization
|
|
{$I editor_general_misc_options.lrs}
|
|
RegisterIDEOptionsEditor(GroupEditor, TEditorGeneralMiscOptionsFrame, EdtOptionsGeneralMisc, EdtOptionsGeneral);
|
|
end.
|
|
|