mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-15 09:01:40 +00:00
32 lines
798 B
C#
32 lines
798 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeImp.DoomBuilder.Controls
|
|
{
|
|
public partial class ActionSpecialHelpButton : UserControl
|
|
{
|
|
private int action;
|
|
|
|
public ActionSpecialHelpButton()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void UpdateAction(int newaction)
|
|
{
|
|
action = newaction;
|
|
|
|
//Can we display help?
|
|
this.Enabled = (action != 0
|
|
&& !string.IsNullOrEmpty(General.Map.Config.ActionSpecialHelp)
|
|
&& General.Map.Config.LinedefActions.ContainsKey(action)
|
|
&& !string.IsNullOrEmpty(General.Map.Config.LinedefActions[action].Id));
|
|
}
|
|
|
|
private void button_Click(object sender, EventArgs e)
|
|
{
|
|
string site = General.Map.Config.ActionSpecialHelp.Replace("%K", General.Map.Config.LinedefActions[action].Id);
|
|
General.OpenWebsite(site);
|
|
}
|
|
}
|
|
}
|