forked from hartmutdavid/python4delphi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfmOptions.pas
More file actions
88 lines (74 loc) · 1.56 KB
/
Copy pathfmOptions.pas
File metadata and controls
88 lines (74 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
unit fmOptions;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons, ExtCtrls;
type
TOptions = class(TForm)
Panel1: TPanel;
Panel2: TPanel;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
procedure FormCreate(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Déclarations privées }
public
{ Déclarations publiques }
procedure Init;
procedure Load;
procedure Save;
end;
const
kOptions = 'options.dat';
var
Options: TOptions;
implementation
uses unMisc;
{$R *.DFM}
procedure TOptions.Init;
begin
end;
procedure TOptions.Load;
var
f : String;
S : TFileStream;
begin
Init;
f := ExtractFilePath( Application.ExeName ) + kOptions;
if not FileExists( f ) then
Exit;
S := TFileStream.Create( f, fmOpenRead );
try
// edPythonFiles.Text := ReadString( S );
// edDelphiFiles.Text := ReadString( S );
finally
S.Free;
end;
end;
procedure TOptions.Save;
var
f : String;
S : TFileStream;
begin
f := ExtractFilePath( Application.ExeName ) + kOptions;
S := TFileStream.Create( f, fmCreate );
try
// WriteString( S, edPythonFiles.Text );
// WriteString( S, edDelphiFiles.Text );
finally
S.Free;
end;
end;
procedure TOptions.FormCreate(Sender: TObject);
begin
Load;
end;
procedure TOptions.FormClose(Sender: TObject; var Action: TCloseAction);
begin
if ModalResult = mrOk then
Save
else
Load;
end;
end.