MWE: + Added DebugOptionsForm

git-svn-id: trunk@4278 -
This commit is contained in:
marc 2003-06-14 10:26:22 +00:00
parent 4204e18493
commit 41a902d72b
2 changed files with 60 additions and 0 deletions

1
.gitattributes vendored
View File

@ -247,6 +247,7 @@ ide/customformeditor.pp svneol=native#text/pascal
ide/debugmanager.pas svneol=native#text/pascal
ide/debugoptionsfrm.lfm svneol=native#text/plain
ide/debugoptionsfrm.lrs svneol=native#text/pascal
ide/debugoptionsfrm.pas svneol=native#text/pascal
ide/diffdialog.pas svneol=native#text/pascal
ide/diffpatch.pas svneol=native#text/pascal
ide/diskdiffsdialog.pas svneol=native#text/pascal

59
ide/debugoptionsfrm.pas Normal file
View 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.