source: branches/delphi/Forms/UFormSettings.pas

Last change on this file was 44, checked in by chronos, 10 years ago
  • Added: Test Delphi conversion.
File size: 550 bytes
Line 
1unit UFormSettings;
2
3interface
4
5uses
6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls;
7
8type
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
24var
25 FormSettings: TFormSettings;
26
27implementation
28
29{$R *.dfm}
30
31uses
32 UCore;
33
34{ TFormSettings }
35
36procedure TFormSettings.Load;
37begin
38end;
39
40procedure TFormSettings.Save;
41begin
42end;
43
44end.
45
Note: See TracBrowser for help on using the repository browser.