source: Docking/CoolDocking/Demo/IDE/UToolPaletteForm.pas

Last change on this file was 189, checked in by george, 14 years ago
  • Modified: All unit and type names renamed to shorted form. Shortcut "CD" instead of "CoolDock".
File size: 469 bytes
Line 
1unit UToolPaletteForm;
2
3{$mode objfpc}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls,
9 UCDClient;
10
11type
12
13 { TToolPaletteForm }
14
15 TToolPaletteForm = class(TForm)
16 published
17 CoolDockClient1: TCDClient;
18 TreeView1: TTreeView;
19 { private declarations }
20 public
21 { public declarations }
22 end;
23
24var
25 ToolPaletteForm: TToolPaletteForm;
26
27implementation
28
29{$R *.lfm}
30
31end.
32
Note: See TracBrowser for help on using the repository browser.