94 lines
2.5 KiB
C#
94 lines
2.5 KiB
C#
#region Copyright & License Information
|
|
/*
|
|
* Copyright 2007-2021 The OpenRA Developers (see AUTHORS)
|
|
* This file is part of OpenRA, which is free software. It is made
|
|
* available to you under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version. For more
|
|
* information, see COPYING.
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
using OpenRA.Widgets;
|
|
|
|
namespace OpenRA.Mods.Common.Widgets
|
|
{
|
|
public class ScrollItemWidget : ButtonWidget
|
|
{
|
|
public readonly string BaseName = "scrollitem";
|
|
public readonly bool EnableChildMouseOver = false;
|
|
public string ItemKey;
|
|
|
|
[ObjectCreator.UseCtor]
|
|
public ScrollItemWidget(ModData modData)
|
|
: base(modData)
|
|
{
|
|
IsVisible = () => false;
|
|
VisualHeight = 0;
|
|
}
|
|
|
|
protected ScrollItemWidget(ScrollItemWidget other)
|
|
: base(other)
|
|
{
|
|
IsVisible = () => false;
|
|
VisualHeight = 0;
|
|
Key = other.Key;
|
|
BaseName = other.BaseName;
|
|
EnableChildMouseOver = other.EnableChildMouseOver;
|
|
}
|
|
|
|
public override void Initialize(WidgetArgs args)
|
|
{
|
|
base.Initialize(args);
|
|
|
|
// HACK: We want to default IgnoreChildMouseOver to true in this widget
|
|
// but still allow it to be disabled
|
|
IgnoreChildMouseOver = !EnableChildMouseOver;
|
|
}
|
|
|
|
public Func<bool> IsSelected = () => false;
|
|
|
|
public override void Draw()
|
|
{
|
|
// PERF: Only check for ourself or our direct children
|
|
var isHover = Ui.MouseOverWidget == this;
|
|
if (!IgnoreChildMouseOver && !isHover)
|
|
isHover = Children.Contains(Ui.MouseOverWidget);
|
|
|
|
var state = IsSelected() ? BaseName + "-selected" :
|
|
isHover ? BaseName + "-hover" :
|
|
null;
|
|
|
|
if (state != null)
|
|
WidgetUtils.DrawPanel(state, RenderBounds);
|
|
}
|
|
|
|
public override Widget Clone() { return new ScrollItemWidget(this); }
|
|
|
|
public static ScrollItemWidget Setup(ScrollItemWidget template, Func<bool> isSelected, Action onClick)
|
|
{
|
|
var w = template.Clone() as ScrollItemWidget;
|
|
w.IsVisible = () => true;
|
|
w.IsSelected = isSelected;
|
|
w.OnClick = onClick;
|
|
return w;
|
|
}
|
|
|
|
public static ScrollItemWidget Setup(ScrollItemWidget template, Func<bool> isSelected, Action onClick, Action onDoubleClick)
|
|
{
|
|
var w = Setup(template, isSelected, onClick);
|
|
w.OnDoubleClick = onDoubleClick;
|
|
return w;
|
|
}
|
|
|
|
public static ScrollItemWidget Setup(string key, ScrollItemWidget template, Func<bool> isSelected, Action onClick, Action onDoubleClick)
|
|
{
|
|
var w = Setup(template, isSelected, onClick);
|
|
w.OnDoubleClick = onDoubleClick;
|
|
w.ItemKey = key;
|
|
return w;
|
|
}
|
|
}
|
|
}
|