source: trunk/Packages/CoolDocking/Demo/IDE/UWatchListForm.pas

Last change on this file was 73, checked in by chronos, 12 years ago
  • Modified: Packages are now stored as uncomporessed and are linked with relative path to project.
File size: 451 bytes
Line 
1unit UWatchListForm;
2
3{$mode objfpc}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs,
9 StdCtrls, UCDClient;
10
11type
12
13 { TWatchListForm }
14
15 TWatchListForm = class(TForm)
16 published
17 Memo1: TMemo;
18 CoolDockClient1: TCDClient;
19 { private declarations }
20 public
21 { public declarations }
22 end;
23
24var
25 WatchListForm: TWatchListForm;
26
27implementation
28
29{$R *.lfm}
30
31end.
32
Note: See TracBrowser for help on using the repository browser.