Last change
on this file was 198, checked in by george, 14 years ago |
- Fixed: Popup submenus style and position item selection.
- Added: Locking dock managers.
- Modified: Enhanced auto popup tabs handling. Not yet finished.
- Modified: Dock manager position united for all dock manager descendands.
|
File size:
459 bytes
|
Line | |
---|
1 | unit UCallStackForm;
|
---|
2 |
|
---|
3 | {$mode objfpc}{$H+}
|
---|
4 |
|
---|
5 | interface
|
---|
6 |
|
---|
7 | uses
|
---|
8 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls,
|
---|
9 | UCDClient;
|
---|
10 |
|
---|
11 | type
|
---|
12 |
|
---|
13 | { TCallStackForm }
|
---|
14 |
|
---|
15 | TCallStackForm = class(TForm)
|
---|
16 | published
|
---|
17 | CoolDockClient1: TCDClient;
|
---|
18 | ListView1: TListView;
|
---|
19 | { private declarations }
|
---|
20 | public
|
---|
21 | { public declarations }
|
---|
22 | end;
|
---|
23 |
|
---|
24 | var
|
---|
25 | CallStackForm: TCallStackForm;
|
---|
26 |
|
---|
27 | implementation
|
---|
28 |
|
---|
29 | {$R *.lfm}
|
---|
30 |
|
---|
31 | end.
|
---|
32 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.