| Line | |
|---|
| 1 | unit UFormSettings;
|
|---|
| 2 |
|
|---|
| 3 | interface
|
|---|
| 4 |
|
|---|
| 5 | uses
|
|---|
| 6 | Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls;
|
|---|
| 7 |
|
|---|
| 8 | type
|
|---|
| 9 |
|
|---|
| 10 | { TFormSettings }
|
|---|
| 11 |
|
|---|
| 12 | TFormSettings = class(TForm)
|
|---|
| 13 | ButtonOk: TButton;
|
|---|
| 14 | ButtonCancel: TButton;
|
|---|
| 15 | ComboBoxLanguage: TComboBox;
|
|---|
| 16 | Label1: TLabel;
|
|---|
| 17 | private
|
|---|
| 18 | { private declarations }
|
|---|
| 19 | public
|
|---|
| 20 | procedure Load;
|
|---|
| 21 | procedure Save;
|
|---|
| 22 | end;
|
|---|
| 23 |
|
|---|
| 24 | var
|
|---|
| 25 | FormSettings: TFormSettings;
|
|---|
| 26 |
|
|---|
| 27 | implementation
|
|---|
| 28 |
|
|---|
| 29 | {$R *.dfm}
|
|---|
| 30 |
|
|---|
| 31 | uses
|
|---|
| 32 | UCore;
|
|---|
| 33 |
|
|---|
| 34 | { TFormSettings }
|
|---|
| 35 |
|
|---|
| 36 | procedure TFormSettings.Load;
|
|---|
| 37 | begin
|
|---|
| 38 | end;
|
|---|
| 39 |
|
|---|
| 40 | procedure TFormSettings.Save;
|
|---|
| 41 | begin
|
|---|
| 42 | end;
|
|---|
| 43 |
|
|---|
| 44 | end.
|
|---|
| 45 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.