KF2-YetAnotherScoreboard/ScoreboardExt/Classes/KFGUI_FloatingWindowHeader.uc

23 lines
414 B
Ucode
Raw Normal View History

2020-01-10 13:14:11 +00:00
Class KFGUI_FloatingWindowHeader extends KFGUI_Base;
var bool bDragWindow;
function PreDraw()
{
ComputeCoords();
}
function MouseClick( bool bRight )
{
if( !bRight )
KFGUI_FloatingWindow(ParentComponent).SetWindowDrag(true);
}
function MouseRelease( bool bRight )
{
if( !bRight )
KFGUI_FloatingWindow(ParentComponent).SetWindowDrag(false);
}
defaultproperties
{
bClickable=true
}