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