mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 22:19:18 +02:00
MWE: + Added DebugOptionsForm
git-svn-id: trunk@4278 -
This commit is contained in:
parent
4204e18493
commit
41a902d72b
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -247,6 +247,7 @@ ide/customformeditor.pp svneol=native#text/pascal
|
|||||||
ide/debugmanager.pas svneol=native#text/pascal
|
ide/debugmanager.pas svneol=native#text/pascal
|
||||||
ide/debugoptionsfrm.lfm svneol=native#text/plain
|
ide/debugoptionsfrm.lfm svneol=native#text/plain
|
||||||
ide/debugoptionsfrm.lrs svneol=native#text/pascal
|
ide/debugoptionsfrm.lrs svneol=native#text/pascal
|
||||||
|
ide/debugoptionsfrm.pas svneol=native#text/pascal
|
||||||
ide/diffdialog.pas svneol=native#text/pascal
|
ide/diffdialog.pas svneol=native#text/pascal
|
||||||
ide/diffpatch.pas svneol=native#text/pascal
|
ide/diffpatch.pas svneol=native#text/pascal
|
||||||
ide/diskdiffsdialog.pas svneol=native#text/pascal
|
ide/diskdiffsdialog.pas svneol=native#text/pascal
|
||||||
|
59
ide/debugoptionsfrm.pas
Normal file
59
ide/debugoptionsfrm.pas
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
unit DebugOptionsFrm;
|
||||||
|
|
||||||
|
{$mode objfpc} {$H+}
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ExtCtrls,
|
||||||
|
StdCtrls, Buttons, ComCtrls, Menus;
|
||||||
|
|
||||||
|
type
|
||||||
|
TDebuggerOptionsForm = class (TForm )
|
||||||
|
Button1: TBUTTON;
|
||||||
|
Button2: TBUTTON;
|
||||||
|
cmdCancel: TBUTTON;
|
||||||
|
cmdOK: TBUTTON;
|
||||||
|
Button5: TBUTTON;
|
||||||
|
Button6: TBUTTON;
|
||||||
|
Button7: TBUTTON;
|
||||||
|
Button8: TBUTTON;
|
||||||
|
Checkbox1: TCHECKBOX;
|
||||||
|
Combobox1: TCOMBOBOX;
|
||||||
|
cmbPath: TCOMBOBOX;
|
||||||
|
Edit1: TEDIT;
|
||||||
|
Groupbox1: TGROUPBOX;
|
||||||
|
Groupbox2: TGROUPBOX;
|
||||||
|
Groupbox3: TGROUPBOX;
|
||||||
|
Groupbox4: TGROUPBOX;
|
||||||
|
Groupbox5: TGROUPBOX;
|
||||||
|
Groupbox6: TGROUPBOX;
|
||||||
|
Groupbox7: TGROUPBOX;
|
||||||
|
lvSignals: TLISTVIEW;
|
||||||
|
mnuResumeUnhandled: TMENUITEM;
|
||||||
|
mnuHandledByProgram: TMENUITEM;
|
||||||
|
mnuiHandledByDebugger: TMENUITEM;
|
||||||
|
mnuResumeHandled: TMENUITEM;
|
||||||
|
nbDebugOptions: TNOTEBOOK;
|
||||||
|
Page1: TPAGE;
|
||||||
|
pgExceptions: TPAGE;
|
||||||
|
pgEventLog: TPAGE;
|
||||||
|
pgGeneral: TPAGE;
|
||||||
|
popSignal: TPOPUPMENU;
|
||||||
|
Scrollbox1: TSCROLLBOX;
|
||||||
|
private
|
||||||
|
{ private declarations }
|
||||||
|
public
|
||||||
|
{ public declarations }
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
DebuggerOptionsForm: TDebuggerOptionsForm;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
initialization
|
||||||
|
{$I debugoptionsfrm.lrs}
|
||||||
|
|
||||||
|
end.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user