2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
#region ================== Copyright (c) 2007 Pascal vd Heiden
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
|
|
|
|
* This program is released under GNU General Public License
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Namespaces
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel;
|
|
|
|
using System.Drawing;
|
|
|
|
using System.Text;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Windows.Forms;
|
|
|
|
using CodeImp.DoomBuilder.Actions;
|
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
using CodeImp.DoomBuilder.Editing;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.Controls
|
|
|
|
{
|
2009-07-10 13:56:22 +00:00
|
|
|
public partial class ButtonsNumericTextbox : UserControl
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
|
|
|
#region ================== Events
|
|
|
|
|
2009-07-10 13:56:22 +00:00
|
|
|
public event EventHandler TextChanged;
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
#endregion
|
2009-07-10 13:56:22 +00:00
|
|
|
|
|
|
|
#region ================== Variables
|
2009-04-19 18:07:22 +00:00
|
|
|
|
2009-07-10 13:56:22 +00:00
|
|
|
private bool ignorebuttonchange = false;
|
|
|
|
|
|
|
|
#endregion
|
2009-04-19 18:07:22 +00:00
|
|
|
|
2009-07-10 13:56:22 +00:00
|
|
|
#region ================== Properties
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
public bool AllowNegative { get { return textbox.AllowNegative; } set { textbox.AllowNegative = value; } }
|
2009-07-10 13:56:22 +00:00
|
|
|
public bool AllowRelative { get { return textbox.AllowRelative; } set { textbox.AllowRelative = value; } }
|
|
|
|
public string Text { get { return textbox.Text; } set { textbox.Text = value; } }
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
|
|
|
// Constructor
|
2009-07-10 13:56:22 +00:00
|
|
|
public ButtonsNumericTextbox()
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
|
|
|
InitializeComponent();
|
2009-07-10 13:56:22 +00:00
|
|
|
buttons.Value = 0;
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Interface
|
|
|
|
|
|
|
|
// Client size changes
|
|
|
|
protected override void OnClientSizeChanged(EventArgs e)
|
|
|
|
{
|
|
|
|
base.OnClientSizeChanged(e);
|
|
|
|
ClickableNumericTextbox_Resize(this, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Layout changes
|
|
|
|
private void ClickableNumericTextbox_Layout(object sender, LayoutEventArgs e)
|
|
|
|
{
|
|
|
|
ClickableNumericTextbox_Resize(sender, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Control resizes
|
|
|
|
private void ClickableNumericTextbox_Resize(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
buttons.Height = textbox.Height + 4;
|
|
|
|
textbox.Width = ClientRectangle.Width - buttons.Width - 2;
|
|
|
|
buttons.Left = textbox.Width + 2;
|
|
|
|
this.Height = buttons.Height;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Text in textbox changes
|
|
|
|
private void textbox_TextChanged(object sender, EventArgs e)
|
|
|
|
{
|
2009-07-10 13:56:22 +00:00
|
|
|
if(TextChanged != null) TextChanged(sender, e);
|
|
|
|
buttons.Enabled = !textbox.CheckIsRelative();
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
2009-07-10 13:56:22 +00:00
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// Buttons changed
|
|
|
|
private void buttons_ValueChanged(object sender, EventArgs e)
|
|
|
|
{
|
2009-07-10 13:56:22 +00:00
|
|
|
if(!ignorebuttonchange)
|
|
|
|
{
|
|
|
|
ignorebuttonchange = true;
|
|
|
|
if(!textbox.CheckIsRelative())
|
|
|
|
{
|
|
|
|
int newvalue = textbox.GetResult(0) - buttons.Value;
|
|
|
|
textbox.Text = newvalue.ToString();
|
|
|
|
}
|
|
|
|
buttons.Value = 0;
|
|
|
|
ignorebuttonchange = false;
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
2009-07-10 13:56:22 +00:00
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
|
|
|
// This checks if the number is relative
|
|
|
|
public bool CheckIsRelative()
|
|
|
|
{
|
|
|
|
return textbox.CheckIsRelative();
|
|
|
|
}
|
|
|
|
|
|
|
|
// This determines the result value
|
|
|
|
public int GetResult(int original)
|
|
|
|
{
|
|
|
|
return textbox.GetResult(original);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This determines the result value
|
|
|
|
public float GetResultFloat(float original)
|
|
|
|
{
|
|
|
|
return textbox.GetResultFloat(original);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|