mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-10 06:41:49 +00:00
64 lines
2.1 KiB
C#
64 lines
2.1 KiB
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
{
|
|
internal partial class DrawEllipseOptionsPanel : UserControl
|
|
{
|
|
public event EventHandler OnValueChanged;
|
|
private bool blockEvents;
|
|
|
|
private static int aquityValue;
|
|
private static int subdivsValue = 8;
|
|
|
|
public int Spikiness { get { return (int)spikiness.Value; } set { blockEvents = true; spikiness.Value = value; blockEvents = false; } }
|
|
public int Subdivisions { get { return (int)subdivs.Value; } set { blockEvents = true; subdivs.Value = value; blockEvents = false; } }
|
|
public int MaxSubdivisions { get { return (int)subdivs.Maximum; } set { subdivs.Maximum = value; } }
|
|
public int MinSubdivisions { get { return (int)subdivs.Minimum; } set { subdivs.Minimum = value; } }
|
|
public int MaxSpikiness { get { return (int)spikiness.Maximum; } set { spikiness.Maximum = value; } }
|
|
public int MinSpikiness { get { return (int)spikiness.Minimum; } set { spikiness.Minimum = value; } }
|
|
|
|
public DrawEllipseOptionsPanel()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void Register()
|
|
{
|
|
spikiness.Value = aquityValue;
|
|
subdivs.Value = subdivsValue;
|
|
spikiness.ValueChanged += ValueChanged;
|
|
subdivs.ValueChanged += ValueChanged;
|
|
|
|
General.Interface.AddButton(subdivslabel);
|
|
General.Interface.AddButton(subdivs);
|
|
General.Interface.AddButton(spikinesslabel);
|
|
General.Interface.AddButton(spikiness);
|
|
General.Interface.AddButton(reset);
|
|
}
|
|
|
|
public void Unregister()
|
|
{
|
|
General.Interface.RemoveButton(reset);
|
|
General.Interface.RemoveButton(spikiness);
|
|
General.Interface.RemoveButton(spikinesslabel);
|
|
General.Interface.RemoveButton(subdivs);
|
|
General.Interface.RemoveButton(subdivslabel);
|
|
}
|
|
|
|
private void ValueChanged(object sender, EventArgs e)
|
|
{
|
|
aquityValue = (int)spikiness.Value;
|
|
subdivsValue = (int)subdivs.Value;
|
|
if(!blockEvents && OnValueChanged != null) OnValueChanged(this, EventArgs.Empty);
|
|
}
|
|
|
|
private void reset_Click(object sender, EventArgs e)
|
|
{
|
|
blockEvents = true;
|
|
spikiness.Value = 0;
|
|
blockEvents = false;
|
|
subdivs.Value = subdivs.Minimum;
|
|
}
|
|
}
|
|
}
|