mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-10 14:51:52 +00:00
92 lines
No EOL
2.4 KiB
C#
92 lines
No EOL
2.4 KiB
C#
|
|
#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.Windows.Forms;
|
|
using CodeImp.DoomBuilder.Windows;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes.Interface
|
|
{
|
|
public partial class MakeDoorForm : DelayedForm
|
|
{
|
|
#region ================== Properties
|
|
|
|
public string DoorTexture { get { return doortexture.TextureName; } }
|
|
public string TrackTexture { get { return tracktexture.TextureName; } }
|
|
public string CeilingTexture { get { return ceilingtexture.TextureName; } }
|
|
public string FloorTexture { get { return floortexture.TextureName; } }
|
|
public bool ResetOffsets { get { return resetoffsets.Checked; } }
|
|
|
|
#endregion
|
|
|
|
#region ================== Constructor / Show
|
|
|
|
// Constructor
|
|
public MakeDoorForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
// This sets the properties and shows the form
|
|
public DialogResult Show(IWin32Window owner, string doortex, string tracktex, string ceilingtex, string floortex, bool roffsets)
|
|
{
|
|
this.doortexture.TextureName = doortex;
|
|
this.tracktexture.TextureName = tracktex;
|
|
this.ceilingtexture.TextureName = ceilingtex;
|
|
this.floortexture.TextureName = floortex;
|
|
this.resetoffsets.Checked = roffsets;
|
|
return this.ShowDialog(owner);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ================== Events
|
|
|
|
// Cancel clicked
|
|
private void cancel_Click(object sender, EventArgs e)
|
|
{
|
|
this.DialogResult = DialogResult.Cancel;
|
|
this.Close();
|
|
}
|
|
|
|
// OK clicked
|
|
private void apply_Click(object sender, EventArgs e)
|
|
{
|
|
// No door texture selected?
|
|
if(doortexture.TextureName.Length == 0)
|
|
{
|
|
MessageBox.Show(this, "Please select a door texture!", "Make Door", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
|
|
doortexture.Focus();
|
|
}
|
|
else
|
|
{
|
|
this.DialogResult = DialogResult.OK;
|
|
this.Close();
|
|
}
|
|
}
|
|
|
|
private void MakeDoorForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
|
{
|
|
General.ShowHelp("e_sectors.html");
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |