source: platform/trunk/LDPlatform.FormOptions.pas

Last change on this file was 10, checked in by chronos, 11 years ago
  • Added: Demo IDE placed in subfolder Demo.
  • Added: Base TDataModule as container for non visual components. It's part of TLDPlatform component.
File size: 755 bytes
Line 
1unit LDPlatform.FormOptions;
2
3interface
4
5uses
6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
7 Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls, Vcl.ExtCtrls;
8
9type
10 TFormOptions = class(TForm)
11 PanelBottom: TPanel;
12 ButtonOk: TButton;
13 ButtonCancel: TButton;
14 Bevel1: TBevel;
15 PanelLeft: TPanel;
16 Splitter1: TSplitter;
17 PanelMain: TPanel;
18 TreeView1: TTreeView;
19 EditFilter: TEdit;
20 private
21 { Private declarations }
22 public
23 procedure Load;
24 procedure Save;
25 end;
26
27
28implementation
29
30{$R *.dfm}
31
32{ TFormOptions }
33
34procedure TFormOptions.Load;
35begin
36
37end;
38
39procedure TFormOptions.Save;
40begin
41
42end;
43
44end.
Note: See TracBrowser for help on using the repository browser.