mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-28 19:34:09 +02:00
158 lines
6.2 KiB
ObjectPascal
158 lines
6.2 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 debugger_general_options;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils,
|
|
// LCL
|
|
Controls, StdCtrls, ExtCtrls, Dialogs, Menus,
|
|
// LazUtils
|
|
FileUtil, LazFileUtils,
|
|
// IdeIntf
|
|
IDEOptionsIntf, IDEOptEditorIntf,
|
|
// IDE
|
|
LazarusIDEStrConsts, PathEditorDlg, IDEProcs,
|
|
EnvironmentOpts, BaseDebugManager;
|
|
|
|
type
|
|
|
|
{ TDebuggerGeneralOptionsFrame }
|
|
|
|
TDebuggerGeneralOptionsFrame = class(TAbstractIDEOptionsEditor)
|
|
cmdOpenAdditionalPath: TButton;
|
|
gbAdditionalSearchPath: TGroupBox;
|
|
gcbDebuggerGeneralOptions: TCheckGroup;
|
|
txtAdditionalPath: TEdit;
|
|
procedure cmdOpenAdditionalPathClick(Sender: TObject);
|
|
private
|
|
fOldDebuggerSearchPath: string;
|
|
procedure FetchDebuggerGeneralOptions;
|
|
public
|
|
function Check: Boolean; override;
|
|
function GetTitle: String; override;
|
|
procedure Setup({%H-}ADialog: TAbstractOptionsEditorDialog); override;
|
|
procedure ReadSettings({%H-}AOptions: TAbstractIDEOptions); override;
|
|
procedure WriteSettings({%H-}AOptions: TAbstractIDEOptions); override;
|
|
procedure RestoreSettings({%H-}AOptions: TAbstractIDEOptions); override;
|
|
class function SupportedOptionsClass: TAbstractIDEOptionsClass; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
{ TDebuggerGeneralOptionsFrame }
|
|
|
|
procedure TDebuggerGeneralOptionsFrame.cmdOpenAdditionalPathClick(
|
|
Sender: TObject);
|
|
begin
|
|
PathEditorDialog.Path:=txtAdditionalPath.Text;
|
|
PathEditorDialog.Templates:=GetForcedPathDelims(
|
|
'$(LazarusDir)/include/$(TargetOS)'
|
|
+';$(FPCSrcDir)/rtl/inc/'
|
|
+';$(FPCSrcDir)/rtl/$(SrcOS)'
|
|
+';$(FPCSrcDir)/rtl/$(TargetOS)'
|
|
);
|
|
if PathEditorDialog.ShowModal=mrOk then
|
|
txtAdditionalPath.Text:=PathEditorDialog.Path;
|
|
end;
|
|
|
|
procedure TDebuggerGeneralOptionsFrame.FetchDebuggerGeneralOptions;
|
|
begin
|
|
// IMPORTANT if more items are added the indexes must be updated here!
|
|
gcbDebuggerGeneralOptions.Checked[0] := EnvironmentOptions.DebuggerShowStopMessage;
|
|
gcbDebuggerGeneralOptions.Checked[1] := EnvironmentOptions.DebuggerShowExitCodeMessage;
|
|
gcbDebuggerGeneralOptions.Checked[2] := EnvironmentOptions.DebuggerResetAfterRun;
|
|
gcbDebuggerGeneralOptions.Checked[3] := EnvironmentOptions.DebuggerAutoCloseAsm;
|
|
gcbDebuggerGeneralOptions.Checked[4] := EnvironmentOptions.DebuggerAutoSetInstanceFromClass;
|
|
gcbDebuggerGeneralOptions.Checked[5] := EnvironmentOptions.DebuggerAllowFunctionCalls;
|
|
txtAdditionalPath.Text:=EnvironmentOptions.GetParsedDebuggerSearchPath;
|
|
end;
|
|
|
|
function TDebuggerGeneralOptionsFrame.Check: Boolean;
|
|
begin
|
|
Result := true;
|
|
end;
|
|
|
|
function TDebuggerGeneralOptionsFrame.GetTitle: String;
|
|
begin
|
|
Result := lisGeneral;
|
|
end;
|
|
|
|
procedure TDebuggerGeneralOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
|
|
begin
|
|
gbAdditionalSearchPath.Caption := lisDebugOptionsFrmAdditionalSearchPath;
|
|
gcbDebuggerGeneralOptions.Caption := lisDebugOptionsFrmDebuggerGeneralOptions;
|
|
gcbDebuggerGeneralOptions.Items.Add(lisDebugOptionsFrmShowMessageOnStop); // 0 Message on stop
|
|
gcbDebuggerGeneralOptions.Items.Add(lisDebugOptionsFrmShowExitCodeOnStop); // 1 Exit-code on stop
|
|
gcbDebuggerGeneralOptions.Items.Add(lisDebugOptionsFrmResetDebuggerOnEachRun); // 2 reset dbg after each run
|
|
gcbDebuggerGeneralOptions.Items.Add(lisDebugOptionsFrmAutoCloseAsm); // 3 auto close asm
|
|
gcbDebuggerGeneralOptions.Items.Add(lisDebugOptionsFrmAutoInstanceClass); // 4 auto set class-from-instance
|
|
gcbDebuggerGeneralOptions.Items.Add(lisDebugOptionsFrmAllowFunctionCalls); // 5 allow function calls
|
|
end;
|
|
|
|
procedure TDebuggerGeneralOptionsFrame.ReadSettings(AOptions: TAbstractIDEOptions);
|
|
begin
|
|
with EnvironmentOptions do
|
|
begin
|
|
fOldDebuggerSearchPath := DebuggerSearchPath;
|
|
|
|
FetchDebuggerGeneralOptions;
|
|
end;
|
|
end;
|
|
|
|
procedure TDebuggerGeneralOptionsFrame.WriteSettings(AOptions: TAbstractIDEOptions);
|
|
begin
|
|
with EnvironmentOptions do
|
|
begin
|
|
DebuggerSearchPath := TrimSearchPath(txtAdditionalPath.Text,'');
|
|
// IMPORTANT if more items are added the indexes must be updated here!
|
|
DebuggerShowStopMessage := gcbDebuggerGeneralOptions.Checked[0];
|
|
DebuggerShowExitCodeMessage := gcbDebuggerGeneralOptions.Checked[1];
|
|
DebuggerResetAfterRun := gcbDebuggerGeneralOptions.Checked[2];
|
|
DebuggerAutoCloseAsm := gcbDebuggerGeneralOptions.Checked[3];
|
|
DebuggerAutoSetInstanceFromClass := gcbDebuggerGeneralOptions.Checked[4];
|
|
DebuggerAllowFunctionCalls := gcbDebuggerGeneralOptions.Checked[5];
|
|
end;
|
|
end;
|
|
|
|
procedure TDebuggerGeneralOptionsFrame.RestoreSettings(
|
|
AOptions: TAbstractIDEOptions);
|
|
begin
|
|
with EnvironmentOptions do begin
|
|
DebuggerSearchPath := fOldDebuggerSearchPath;
|
|
end;
|
|
end;
|
|
|
|
class function TDebuggerGeneralOptionsFrame.SupportedOptionsClass: TAbstractIDEOptionsClass;
|
|
begin
|
|
Result := TDebuggerOptions;
|
|
end;
|
|
|
|
initialization
|
|
RegisterIDEOptionsEditor(GroupDebugger, TDebuggerGeneralOptionsFrame, DbgOptionsGeneral);
|
|
end.
|
|
|