UltimateZoneBuilder/Source/Plugins/BuilderModes/Interface/PastePropertiesOptionsForm.cs
MaxED 15b2adfe30 Texture Browser Form: swapped foreground and background colors of texture size labels.
Fixed, Texture Browser Form: well, I broke "Tab" key functionality again (in previous commit)...
Maintenance: changed curly braces style to match DB2 one (hopefully not breaking anything in the process...).
Maintenance: changed private method names casing to match DB2 one.
2014-12-03 23:15:26 +00:00

101 lines
3.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Reflection;
using System.Windows.Forms;
using CodeImp.DoomBuilder.Controls;
using CodeImp.DoomBuilder.Windows;
namespace CodeImp.DoomBuilder.BuilderModes.Interface
{
public partial class PastePropertiesOptionsForm : DelayedForm
{
private static Size size = Size.Empty;
private static Point location = Point.Empty;
private readonly Dictionary<object, CheckboxArrayControl> typecontrols;
public PastePropertiesOptionsForm()
{
InitializeComponent();
//apply window size and location
if(!size.IsEmpty && !location.IsEmpty)
{
this.StartPosition = FormStartPosition.Manual;
this.Size = size;
this.Location = location;
}
//create a collection
typecontrols = new Dictionary<object, CheckboxArrayControl>
{
{SectorProperties.CopySettings, sectorflags},
{LinedefProperties.CopySettings, lineflags},
{SidedefProperties.CopySettings, sideflags},
{ThingProperties.CopySettings, thingflags},
{VertexProperties.CopySettings, vertexflags}
};
//fill flags
foreach(KeyValuePair<object, CheckboxArrayControl> group in typecontrols)
{
FieldInfo[] props = group.Key.GetType().GetFields(BindingFlags.Public | BindingFlags.Instance);
string title = "<unknown flag>";
foreach(var prop in props)
{
foreach(Attribute attr in Attribute.GetCustomAttributes(prop))
{
if(attr.GetType() == typeof(FieldDescription))
{
title = ((FieldDescription)attr).Description;
break;
}
}
group.Value.Add(title, prop.Name).Checked = (bool)prop.GetValue(group.Key);
}
group.Value.PositionCheckboxes();
}
//select proper tab
if (General.Editing.Mode is ThingsMode)
tabControl.SelectTab(things);
else if (General.Editing.Mode is VerticesMode)
tabControl.SelectTab(vertices);
else if (General.Editing.Mode is LinedefsMode)
tabControl.SelectTab(linedefs);
}
private void apply_Click(object sender, EventArgs e)
{
foreach (KeyValuePair<object, CheckboxArrayControl> group in typecontrols)
{
FieldInfo[] props = group.Key.GetType().GetFields(BindingFlags.Public | BindingFlags.Instance);
var fields = new Dictionary<string, FieldInfo>(props.Length);
for(int i = 0; i < props.Length; i++) fields[props[i].Name] = props[i];
foreach(CheckBox cb in group.Value.Checkboxes) fields[cb.Tag.ToString()].SetValue(group.Key, cb.Checked);
}
this.Close();
}
private void cancel_Click(object sender, EventArgs e)
{
this.Close();
}
private void enableall_Click(object sender, EventArgs e)
{
CheckboxArrayControl curControl = tabControl.SelectedTab.Controls[0] as CheckboxArrayControl;
if(curControl == null) return; //just a piece of boilerplate...
bool enable = !curControl.Checkboxes[0].Checked;
foreach(var cb in curControl.Checkboxes) cb.Checked = enable;
}
private void PastePropertiesOptionsForm_FormClosing(object sender, FormClosingEventArgs e)
{
size = this.Size;
location = this.Location;
}
}
}