KF2-Server-Extension/ServerExt/Classes/KFGUI_Tooltip.uc

39 lines
608 B
Ucode
Raw Normal View History

2017-10-20 02:00:49 +00:00
Class KFGUI_Tooltip extends KFGUI_Base;
var() array<string> Lines;
var() Canvas.FontRenderInfo TextFontInfo;
var byte CurrentAlpha;
function InputMouseMoved()
{
DropInputFocus();
}
function MouseClick( bool bRight )
{
DropInputFocus();
}
function MouseRelease( bool bRight )
{
DropInputFocus();
}
function ShowMenu()
{
CurrentAlpha = 1;
}
final function SetText( string S )
{
ParseStringIntoArray(S,Lines,"|",false);
}
function PreDraw()
{
Owner.CurrentStyle.RenderToolTip(Self);
}
defaultproperties
{
TextFontInfo=(bClipText=true,bEnableShadow=true)
bCanFocus=false
bFocusedPostDrawItem=true
}