rott/kf_sources/GUI2K4/Classes/ServerBrowserMCListBox.uc
2026-07-14 20:27:09 +07:00

33 lines
900 B
Ucode

//==============================================================================
// Base class for all server browser multi-column listboxes
//
// Created by Ron Prestenback
// © 2003, Epic Games, Inc. All Rights Reserved
//==============================================================================
class ServerBrowserMCListBox extends GUIMultiColumnListBox;
var UT2K4Browser_ServerListPageBase tp_Anchor;
function SetAnchor(UT2K4Browser_ServerListPageBase AnchorPage)
{
tp_Anchor = AnchorPage;
ServerBrowserMCList(List).SetAnchor(AnchorPage);
}
function bool InternalOnOpen(GUIContextMenu Menu)
{
return HandleContextMenuOpen(List, Menu, Menu.MenuOwner);
}
function bool InternalOnClose(GUIContextMenu Sender)
{
return HandleContextMenuClose(Sender);
}
defaultproperties
{
StyleName="ServerBrowserGrid"
IniOption="@Internal"
bVisibleWhenEmpty=True
}