Mercurial > repos > IBDev-IBBoard.WarFoundry.GUI.GTK
view UIControl/EditEquipmentUIControl.cs @ 125:42d2aa87dfa7
Re #361: Add XML export UI to GTK#
* Add basic UI that works (needs improvement)
* Open the dialog using Run() so that we can close it properly
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 01 Oct 2011 14:52:39 +0100 |
parents | 4b82515586ac |
children |
line wrap: on
line source
// This file (EditEquipmentUIControl.cs) is a part of the IBBoard.WarFoundry.GUI.GTK project and is copyright 2010 IBBoard // // // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. using System; using IBBoard.Commands; using IBBoard.WarFoundry.API.Objects; using IBBoard.WarFoundry.API.Util; using IBBoard.WarFoundry.GUI.GTK.UIControl.Interfaces; using IBBoard.WarFoundry.API.Commands; using CustomMath = IBBoard.CustomMath; using IBBoard.Lang; using IBBoard.WarFoundry.GUI.GTK; namespace IBBoard.WarFoundry.GUI.GTK.UIControl { public class EditEquipmentUIControl : AbstractBaseEquipmentUIControl<IEditEquipmentUI> { public EditEquipmentUIControl(Unit unit, UnitEquipmentItem item, CommandStack commandStack) : base(unit, commandStack) { this.equipItem = item; } //TODO Make abstract protected override IEditEquipmentUI CreateEquipmentUI() { return new FrmEditEquipment(); } protected override void CompleteUISetup() { SetUnitEquipmentLimits(equipItem); SetUnitEquipmentValuesFromEquipment(equipItem); ui.SetEquipmentAmountType(UnitEquipmentUtil.GetEquipmentAmountIsRatio(unit, equipItem)); } protected override void DoProcessing() { if (isRatioAmount) { commandStack.Execute(new SetUnitEquipmentRatioAmountCommand(unit, equipItem, equipmentAmount)); } else { commandStack.Execute(new SetUnitEquipmentNumericAmountCommand(unit, equipItem, (int)equipmentAmount)); } } } }