|
Last change
on this file was 6, checked in by chronos, 13 years ago |
- Added: Empty application settings form. Modules will register custom settings subforms.
|
|
File size:
587 bytes
|
| Line | |
|---|
| 1 | unit UFormSettings;
|
|---|
| 2 |
|
|---|
| 3 | {$mode objfpc}{$H+}
|
|---|
| 4 |
|
|---|
| 5 | interface
|
|---|
| 6 |
|
|---|
| 7 | uses
|
|---|
| 8 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls,
|
|---|
| 9 | ExtCtrls, StdCtrls;
|
|---|
| 10 |
|
|---|
| 11 | type
|
|---|
| 12 |
|
|---|
| 13 | { TFormSettings }
|
|---|
| 14 |
|
|---|
| 15 | TFormSettings = class(TForm)
|
|---|
| 16 | Bevel1: TBevel;
|
|---|
| 17 | ButtonCancel: TButton;
|
|---|
| 18 | ButtonOk: TButton;
|
|---|
| 19 | PanelNavigation: TPanel;
|
|---|
| 20 | PanelContent: TPanel;
|
|---|
| 21 | Splitter1: TSplitter;
|
|---|
| 22 | TreeViewMenu: TTreeView;
|
|---|
| 23 | private
|
|---|
| 24 | { private declarations }
|
|---|
| 25 | public
|
|---|
| 26 | { public declarations }
|
|---|
| 27 | end;
|
|---|
| 28 |
|
|---|
| 29 | var
|
|---|
| 30 | FormSettings: TFormSettings;
|
|---|
| 31 |
|
|---|
| 32 | implementation
|
|---|
| 33 |
|
|---|
| 34 | {$R *.lfm}
|
|---|
| 35 |
|
|---|
| 36 | end.
|
|---|
| 37 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.