source: trunk/StudioPackage/Forms/UFormSettings.pas

Last change on this file was 6, checked in by chronos, 12 years ago
  • Added: Empty application settings form. Modules will register custom settings subforms.
File size: 587 bytes
Line 
1unit UFormSettings;
2
3{$mode objfpc}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls,
9 ExtCtrls, StdCtrls;
10
11type
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
29var
30 FormSettings: TFormSettings;
31
32implementation
33
34{$R *.lfm}
35
36end.
37
Note: See TracBrowser for help on using the repository browser.