mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
43 lines
742 B
ObjectPascal
Executable file
43 lines
742 B
ObjectPascal
Executable file
unit frmWatchListAddEntryUnit;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
|
ExtCtrls, betterControls;
|
|
|
|
type
|
|
|
|
{ TfrmWatchListAddEntry }
|
|
|
|
TfrmWatchListAddEntry = class(TForm)
|
|
btnOK: TButton;
|
|
btnCancel: TButton;
|
|
edtExpression: TEdit;
|
|
Panel1: TPanel;
|
|
rgType: TRadioGroup;
|
|
procedure FormShow(Sender: TObject);
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
frmWatchListAddEntry: TfrmWatchListAddEntry;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
{ TfrmWatchListAddEntry }
|
|
|
|
procedure TfrmWatchListAddEntry.FormShow(Sender: TObject);
|
|
begin
|
|
edtExpression.SetFocus;
|
|
end;
|
|
|
|
end.
|
|
|