source: trunk/Packages/CoolDocking/Managers/UCDManagerRegionsPopup.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: 1.2 KB
Line 
1unit UCDManagerRegionsPopup;
2
3{$mode Delphi}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils, UCDManagerRegions, UCDCommon, Controls;
9
10type
11
12 { TCDManagerPopupRegionsItem }
13
14 TCDManagerPopupRegionsItem = class(TCDManagerRegionsItem)
15 private
16 FAutoHide: Boolean;
17 function GetAutoHideEnabled: Boolean;
18 procedure SetAutoHide(const AValue: Boolean);
19 procedure SetAutoHideEnabled(const AValue: Boolean);
20 public
21 property AutoHideEnabled: Boolean read GetAutoHideEnabled
22 write SetAutoHideEnabled;
23 end;
24
25 { TCDManagerPopupRegions }
26
27 TCDManagerPopupRegions = class(TCDManagerRegions)
28 constructor Create(ADockSite: TWinControl);
29 end;
30
31
32implementation
33
34uses
35 UCDClient;
36
37{ TCDManagerPopupRegionsItem }
38
39function TCDManagerPopupRegionsItem.GetAutoHideEnabled: Boolean;
40begin
41
42end;
43
44procedure TCDManagerPopupRegionsItem.SetAutoHide(const AValue: Boolean);
45begin
46
47end;
48
49procedure TCDManagerPopupRegionsItem.SetAutoHideEnabled(const AValue: Boolean);
50begin
51
52end;
53
54{ TCDManagerPopupRegions }
55
56constructor TCDManagerPopupRegions.Create(ADockSite: TWinControl);
57begin
58 inherited;
59 FDockStyle := dsPopupList;
60end;
61
62end.
63
Note: See TracBrowser for help on using the repository browser.