KF2-YetAnotherScoreboard/ScoreboardExt/Classes/KFGUI_Tooltip.uc

45 lines
688 B
Ucode
Raw Normal View History

2020-01-10 13:14:11 +00:00
Class KFGUI_Tooltip extends KFGUI_Base;
2021-06-12 20:11:37 +00:00
`include(Build.uci)
`include(Logger.uci)
2020-01-10 13:14:11 +00:00
var() array<string> Lines;
var() Canvas.FontRenderInfo TextFontInfo;
var byte CurrentAlpha;
function InputMouseMoved()
{
DropInputFocus();
2020-01-10 13:14:11 +00:00
}
function MouseClick( bool bRight )
{
DropInputFocus();
2020-01-10 13:14:11 +00:00
}
function MouseRelease( bool bRight )
{
DropInputFocus();
2020-01-10 13:14:11 +00:00
}
function ShowMenu()
{
CurrentAlpha = 1;
2020-01-10 13:14:11 +00:00
}
final function SetText( string S )
{
ParseStringIntoArray(S,Lines,"<SEPERATOR>",false);
2020-01-10 13:14:11 +00:00
}
function PreDraw()
{
if( !bVisible )
return;
Owner.CurrentStyle.RenderToolTip(Self);
2020-01-10 13:14:11 +00:00
}
defaultproperties
{
TextFontInfo=(bClipText=true,bEnableShadow=true)
bCanFocus=false
bFocusedPostDrawItem=true
2020-01-10 13:14:11 +00:00
}