Changeset 359 for Docking/CoolDocking/UCDManager.pas
- Timestamp:
- May 4, 2012, 12:27:25 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Docking/CoolDocking/UCDManager.pas
r355 r359 8 8 Classes, SysUtils, UCDCommon, Controls, Contnrs, Dialogs, 9 9 UCDPopupMenu, LCLType, LCLIntf, LMessages, Graphics, Buttons, 10 UCDConjoinForm, Menus, StdCtrls,ExtCtrls, Forms;10 UCDConjoinForm, Menus, ExtCtrls, Forms; 11 11 12 12 const … … 57 57 Header: TCDHeader; 58 58 ControlPanel: TPanel; 59 DockItem: TCDManagerItem; 59 60 property HeaderPos: THeaderPos read FHeaderPos write SetHeaderPos; 60 61 property HeaderVisible: Boolean read GetHeaderVisible write SetHeaderVisible; … … 357 358 FDockSiteVisible := AValue; 358 359 SetVisible(FDockSiteVisible); 359 if Assigned(FOnDockSiteHide) and not AValuethen360 if Assigned(FOnDockSiteHide) and (not FDockSiteVisible) then 360 361 FOnDockSiteHide(Self); 361 if Assigned(FOnDockSiteShow) and AValue then362 if Assigned(FOnDockSiteShow) and FDockSiteVisible then 362 363 FOnDockSiteShow(Self); 363 364 end;
Note:
See TracChangeset
for help on using the changeset viewer.