Mercurial > repos > IBBoard.WarFoundry.GUI.GTK
view UIControl/ReplaceEquipmentUIControl.cs @ 98:fac0636ae13b
Re #308: Make GTK# UI translatable
* Make undo/redo menus translate on language change
* Organise English language file
* Resolve warnings by adding in dialogs that use translated strings when equipment amounts are out of range
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 02 Jan 2011 21:03:15 +0000 |
parents | 4b82515586ac |
children |
line wrap: on
line source
// This file (AddEquipmentUIControl.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 IBBoard.Commands; using IBBoard.WarFoundry.API.Commands; using IBBoard.WarFoundry.API.Objects; using IBBoard.WarFoundry.API.Util; using IBBoard.WarFoundry.GUI.GTK.UIControl.Interfaces; using CustomMath = IBBoard.CustomMath; namespace IBBoard.WarFoundry.GUI.GTK.UIControl { public class ReplaceEquipmentUIControl : AbstractBaseEquipmentUIControl<IReplaceEquipmentUI> { private UnitEquipmentItem origItem; public ReplaceEquipmentUIControl(Unit unit, UnitEquipmentItem equipmentItem, CommandStack commandStack) : base(unit, commandStack) { origItem = equipmentItem; } //TODO Make abstract protected override IReplaceEquipmentUI CreateEquipmentUI() { return new FrmReplaceEquipment(); } protected override void CompleteUISetup() { UnitType unitType = unit.UnitType; string[] mutexGroups = origItem.MutexGroups; UnitEquipmentItem[] mutexItems = unitType.GetEquipmentItemsByExclusionGroups(mutexGroups); UnitEquipmentItem[] currentEquipment = unit.GetEquipment(); UnitEquipmentItem[] allowedItems = Arrays.Subtract(mutexItems, currentEquipment); ui.SetUnitEquipmentItems(allowedItems); ui.UnitEquipmentItemChoiceChanged += HandleUiUnitEquipmentItemChoiceChanged; } private void HandleUiUnitEquipmentItemChoiceChanged(UnitEquipmentItem equip) { equipItem = equip; SetUnitEquipmentLimits(equip); } protected override void DoProcessing() { if (isRatioAmount) { commandStack.Execute(new ReplaceUnitEquipmentWithRatioAmountItemCommand(unit, origItem, equipItem, equipmentAmount)); } else { commandStack.Execute(new ReplaceUnitEquipmentWithRatioAmountItemCommand(unit, origItem, equipItem, (int)equipmentAmount)); } } } }