From 3c94464f9ba6760b9f90912732ceaae9e82cf1c1 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Thu, 14 May 2020 12:02:53 +0300 Subject: Finished game windows refactoring (exported some code to controllers and changed namespaces). Did a bit of service refactoring: item selection and switch items are moved to itemcontroller, organised some files into Service/Windows and Service/Types, item selection place is now done through an enumerator. --- Mundus/Data/Windows/WI.cs | 3 + Mundus/Mundus.csproj | 31 +- Mundus/Service/Calculate.cs | 45 - Mundus/Service/SuperLayers/ImageController.cs | 1 + Mundus/Service/Tiles/Items/Gear.cs | 13 - Mundus/Service/Tiles/Items/GroundTile.cs | 27 - Mundus/Service/Tiles/Items/ItemController.cs | 91 + Mundus/Service/Tiles/Items/Material.cs | 24 - .../Service/Tiles/Items/Presets/GroundPresets.cs | 4 +- .../Service/Tiles/Items/Presets/MaterialPresets.cs | 4 +- .../Tiles/Items/Presets/StructurePresets.cs | 3 +- Mundus/Service/Tiles/Items/Presets/ToolPresets.cs | 3 +- Mundus/Service/Tiles/Items/Structure.cs | 69 - Mundus/Service/Tiles/Items/SwitchItems.cs | 95 - Mundus/Service/Tiles/Items/Tool.cs | 20 - Mundus/Service/Tiles/Items/Types/Gear.cs | 13 + Mundus/Service/Tiles/Items/Types/GroundTile.cs | 27 + Mundus/Service/Tiles/Items/Types/Material.cs | 24 + Mundus/Service/Tiles/Items/Types/Structure.cs | 69 + Mundus/Service/Tiles/Items/Types/Tool.cs | 20 + .../Service/Tiles/Mobs/Controllers/MobFighting.cs | 22 +- .../Tiles/Mobs/Controllers/MobTerraforming.cs | 29 +- Mundus/Service/Tiles/Mobs/Inventory.cs | 42 +- Mundus/Service/Tiles/Mobs/LandMobs/Player.cs | 1 + Mundus/Service/Tiles/Mobs/MobTile.cs | 1 + Mundus/Service/WindowController.cs | 65 - Mundus/Service/Windows/Calculate.cs | 45 + Mundus/Service/Windows/WindowController.cs | 104 + Mundus/Views/Windows/GameWindows/IGameWindow.cs | 2 + .../GameWindows/Large/LargeButtonClickedEvents.cs | 401 +- .../Views/Windows/GameWindows/Large/LargeLogic.cs | 769 +- .../Windows/GameWindows/Large/LargePrinting.cs | 3 +- .../Medium/MediumButtonClickedEvents.cs | 257 +- .../Windows/GameWindows/Medium/MediumLogic.cs | 83 +- .../Windows/GameWindows/Medium/MediumPrinting.cs | 3 +- .../GameWindows/Small/SmallButtonClickedEvents.cs | 145 +- .../Views/Windows/GameWindows/Small/SmallLogic.cs | 79 +- .../Windows/GameWindows/Small/SmallPrinting.cs | 3 +- Mundus/Views/Windows/MainWindow.cs | 2 +- Mundus/Views/Windows/NewGameWindow.cs | 1 + Mundus/Views/Windows/PauseWindow.cs | 2 +- ...ws.Windows.GameWindows.Large.LargeGameWindow.cs | 7389 ++++++++++++++++++++ ....Windows.GameWindows.Medium.MediumGameWindow.cs | 4833 +++++++++++++ ...ws.Windows.GameWindows.Small.SmallGameWindow.cs | 2874 ++++++++ .../Mundus.Views.Windows.LargeGameWindow.cs | 7389 -------------------- .../Mundus.Views.Windows.MediumGameWindow.cs | 4833 ------------- .../gtk-gui/Mundus.Views.Windows.NewGameWindow.cs | 4 + .../Mundus.Views.Windows.SmallGameWindow.cs | 2874 -------- Mundus/gtk-gui/gui.stetic | 6 +- 49 files changed, 16366 insertions(+), 16481 deletions(-) delete mode 100644 Mundus/Service/Calculate.cs delete mode 100644 Mundus/Service/Tiles/Items/Gear.cs delete mode 100644 Mundus/Service/Tiles/Items/GroundTile.cs create mode 100644 Mundus/Service/Tiles/Items/ItemController.cs delete mode 100644 Mundus/Service/Tiles/Items/Material.cs delete mode 100644 Mundus/Service/Tiles/Items/Structure.cs delete mode 100644 Mundus/Service/Tiles/Items/SwitchItems.cs delete mode 100644 Mundus/Service/Tiles/Items/Tool.cs create mode 100644 Mundus/Service/Tiles/Items/Types/Gear.cs create mode 100644 Mundus/Service/Tiles/Items/Types/GroundTile.cs create mode 100644 Mundus/Service/Tiles/Items/Types/Material.cs create mode 100644 Mundus/Service/Tiles/Items/Types/Structure.cs create mode 100644 Mundus/Service/Tiles/Items/Types/Tool.cs delete mode 100644 Mundus/Service/WindowController.cs create mode 100644 Mundus/Service/Windows/Calculate.cs create mode 100644 Mundus/Service/Windows/WindowController.cs create mode 100644 Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Large.LargeGameWindow.cs create mode 100644 Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Medium.MediumGameWindow.cs create mode 100644 Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Small.SmallGameWindow.cs delete mode 100644 Mundus/gtk-gui/Mundus.Views.Windows.LargeGameWindow.cs delete mode 100644 Mundus/gtk-gui/Mundus.Views.Windows.MediumGameWindow.cs delete mode 100644 Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs diff --git a/Mundus/Data/Windows/WI.cs b/Mundus/Data/Windows/WI.cs index 0aa04a2..14e5f6e 100644 --- a/Mundus/Data/Windows/WI.cs +++ b/Mundus/Data/Windows/WI.cs @@ -1,6 +1,9 @@ namespace Mundus.Data.Windows { using Mundus.Views.Windows; + using Mundus.Views.Windows.GameWindows.Large; + using Mundus.Views.Windows.GameWindows.Medium; + using Mundus.Views.Windows.GameWindows.Small; /// /// Used to store universally accessed windows diff --git a/Mundus/Mundus.csproj b/Mundus/Mundus.csproj index 1264034..ec15c2d 100644 --- a/Mundus/Mundus.csproj +++ b/Mundus/Mundus.csproj @@ -17,6 +17,7 @@ DEBUG; prompt 4 + bin\Debug\Mundus.xml x86 @@ -247,9 +248,9 @@ - - - + + + @@ -264,20 +265,12 @@ - - - - - - - - @@ -291,9 +284,6 @@ - - true - @@ -333,6 +323,15 @@ + + + + + + + + + @@ -362,6 +361,8 @@ + + @@ -369,4 +370,4 @@ - \ No newline at end of file + diff --git a/Mundus/Service/Calculate.cs b/Mundus/Service/Calculate.cs deleted file mode 100644 index f1a730f..0000000 --- a/Mundus/Service/Calculate.cs +++ /dev/null @@ -1,45 +0,0 @@ -using Mundus.Data; -using Mundus.Data.Superlayers.Mobs; -using System; - -namespace Mundus.Service { - public static class Calculate { - /*Depending on whether you are on the edge of the map or in the center, the screen renders a bit differently. - *On the edge it doesn't follow the player and only shows the corner "chunk". In the other parts it follows the - *the player, making sure he stays in the center of the screen. - *This means that when the player is followed, rendered part of the map depend on the player position, but when - *he isn't, it depends on the screen and map sizes.*/ - public static int CalculateMaxY(int size) { - int maxY = (MI.Player.YPos - size/2 >= 0) ? MI.Player.YPos + size/2 : size - 1; - if (maxY >= (int)Values.CurrMapSize) maxY = (int)Values.CurrMapSize - 1; - return maxY; - } - public static int CalculateStartY(int size) { - int startY = (MI.Player.YPos - size/2 <= (int)Values.CurrMapSize - size) ? MI.Player.YPos - size/2 : (int)Values.CurrMapSize - size; - if (startY < 0) startY = 0; - return startY; - } - public static int CalculateMaxX(int size) { - int maxX = (MI.Player.XPos - size/2 >= 0) ? MI.Player.XPos + size/2 : size - 1; - if (maxX >= (int)Values.CurrMapSize) maxX = (int)Values.CurrMapSize - 1; - return maxX; - } - public static int CalculateStartX(int size) { - int startX = (MI.Player.XPos - size/2 <= (int)Values.CurrMapSize - size) ? MI.Player.XPos - size/2 : (int)Values.CurrMapSize - size; - if (startX < 0) startX = 0; - return startX; - } - - //Screen buttons show only a certain part of the whole map - public static int CalculateYFromButton(int buttonYPos, int size) { - int newYPos = (MI.Player.YPos - size/2 >= 0) ? MI.Player.YPos - size/2 + buttonYPos : buttonYPos; - if (MI.Player.YPos > (int)Values.CurrMapSize - Math.Ceiling(size/2.0)) newYPos = buttonYPos + (int)Values.CurrMapSize - size; - return newYPos; - } - public static int CalculateXFromButton(int buttonXPos, int size) { - int newXPos = (MI.Player.XPos - size/2 >= 0) ? MI.Player.XPos - size/2 + buttonXPos : buttonXPos; - if (MI.Player.XPos > (int)Values.CurrMapSize - Math.Ceiling(size/2.0)) newXPos = buttonXPos + (int)Values.CurrMapSize - size; - return newXPos; - } - } -} diff --git a/Mundus/Service/SuperLayers/ImageController.cs b/Mundus/Service/SuperLayers/ImageController.cs index 2e598d2..aafd487 100644 --- a/Mundus/Service/SuperLayers/ImageController.cs +++ b/Mundus/Service/SuperLayers/ImageController.cs @@ -3,6 +3,7 @@ using Mundus.Data; using Mundus.Data.Superlayers.Mobs; using Mundus.Data.SuperLayers; using Mundus.Service.Tiles.Items; +using Mundus.Service.Tiles.Items.Types; using static Mundus.Data.Values; namespace Mundus.Service.SuperLayers { diff --git a/Mundus/Service/Tiles/Items/Gear.cs b/Mundus/Service/Tiles/Items/Gear.cs deleted file mode 100644 index 7beef40..0000000 --- a/Mundus/Service/Tiles/Items/Gear.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace Mundus.Service.Tiles.Items { - public class Gear : ItemTile { - public Gear(Gear gear) : base(gear.stock_id) - { } - - public Gear(string stock_id) : base(stock_id) - { } - - public override string ToString() { - return $"Gear | ID: {stock_id}"; - } - } -} diff --git a/Mundus/Service/Tiles/Items/GroundTile.cs b/Mundus/Service/Tiles/Items/GroundTile.cs deleted file mode 100644 index e6657d2..0000000 --- a/Mundus/Service/Tiles/Items/GroundTile.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Gtk; -using static Mundus.Data.Values; - -namespace Mundus.Service.Tiles.Items { - public class GroundTile : ItemTile { - /// - /// Required minimal shovel class for destroying the ground tile - /// - public int ReqShovelClass { get; private set; } - /// - /// Determines whether mobs can go through and structures can be placed (if not solid) - /// - public bool Solid { get; private set; } - - public GroundTile(GroundTile groundTile) :this(groundTile.stock_id, groundTile.ReqShovelClass, groundTile.Solid) - { } - - public GroundTile(string stock_id, int reqShovelClass, bool solid = true) :base(stock_id) { - this.ReqShovelClass = reqShovelClass; - this.Solid = solid; - } - - public override string ToString() { - return $"GroundTile | ID: {this.stock_id} TT: {ToolType.Shovel} TC: {this.ReqShovelClass}"; - } - } -} diff --git a/Mundus/Service/Tiles/Items/ItemController.cs b/Mundus/Service/Tiles/Items/ItemController.cs new file mode 100644 index 0000000..13e03cd --- /dev/null +++ b/Mundus/Service/Tiles/Items/ItemController.cs @@ -0,0 +1,91 @@ +using System; +using Mundus.Data; +using Mundus.Data.Superlayers.Mobs; +using Mundus.Data.Windows; +using Mundus.Service.Tiles.Items.Types; +using static Mundus.Data.Values; +using static Mundus.Service.Tiles.Mobs.Inventory; + +namespace Mundus.Service.Tiles.Items { + public static class ItemController { + private static ItemTile[] selItemLocation; + public static int SelItemIndex { get; private set; } + + public static InventoryPlace SelItemPlace { get; private set; } + + /// + /// Sets the item that will be moved (switched) + /// + public static void SelectItem(InventoryPlace place, int index) { + SelItemPlace = place; + selItemLocation = GetInventoryArray(place); + SelItemIndex = index; + + WI.SelWin.PrintSelectedItemInfo(selItemLocation[SelItemIndex]); + } + + /// + /// Tries to switch the location of the originally selected item (origin) with the currently selected item + /// + public static void SwitchItems(InventoryPlace destination, int index) { + ItemTile[] destinationLocation = GetInventoryArray(destination); + ItemTile toTransfer = selItemLocation[SelItemIndex]; + + if (toTransfer != null) { + // Consumable materials can be consumed by double clicking on them (transfering them to their current location) + if (toTransfer == destinationLocation[index]) { + if (toTransfer.GetType() == typeof(Material) && + PlayerTryEat((Material)toTransfer)) { + selItemLocation[SelItemIndex] = null; + } + } + else if (ItemCanGoThere(toTransfer, destination)) { + selItemLocation[SelItemIndex] = destinationLocation[index]; + destinationLocation[index] = toTransfer; + } + } + + ResetSelection(); + } + + public static void ResetSelection() { + selItemLocation = null; + SelItemIndex = -1; + + SelItemPlace = 0; + } + + // Certain item types can only be placed inside certain inventory places. + private static ItemTile[] GetInventoryArray(InventoryPlace place) { + switch (place) { + case InventoryPlace.Hotbar: return MI.Player.Inventory.Hotbar; + case InventoryPlace.Items: return MI.Player.Inventory.Items; + case InventoryPlace.Accessories: return MI.Player.Inventory.Accessories; + case InventoryPlace.Gear: return MI.Player.Inventory.Gear; + default: throw new System.ArgumentException($"Destination of itemtile must be either \"hotbar\", \"items\", \"accessories\" or \"gear\", not {place}"); + } + } + + private static bool ItemCanGoThere(ItemTile toTransfer, InventoryPlace place) { + switch (place) { + case InventoryPlace.Hotbar: return toTransfer.GetType() != typeof(GroundTile); + case InventoryPlace.Items: return true; + case InventoryPlace.Accessories: return toTransfer.GetType() == typeof(Gear); + case InventoryPlace.Gear: return toTransfer.GetType() == typeof(Gear); + default: throw new System.ArgumentException($"Destination of itemtile {toTransfer.stock_id} must be either \"hotbar\", \"items\", \"accessories\" or \"gear\", not {place}"); + } + } + + public static bool HasSelectedItem() { + return selItemLocation != null && SelItemIndex != -1; + } + + private static bool PlayerTryEat(Material material) { + if (material.EnergyRestorePoints > 0) { + MI.Player.RestoreEnergy(material.EnergyRestorePoints); + return true; + } + return false; + } + } +} diff --git a/Mundus/Service/Tiles/Items/Material.cs b/Mundus/Service/Tiles/Items/Material.cs deleted file mode 100644 index 5a1931a..0000000 --- a/Mundus/Service/Tiles/Items/Material.cs +++ /dev/null @@ -1,24 +0,0 @@ -namespace Mundus.Service.Tiles.Items { - public class Material : ItemTile { - /// - /// Certain materials can be eaten to replenish energy points. This stores by how much to restore energy points. - /// Note: If a material mustn't be consumed, his energy points should be less or equal to 0 - /// - public double EnergyRestorePoints { get; private set; } - - public Material(Material material) : this(material.stock_id, material.EnergyRestorePoints) - { } - - public Material(string stock_id, double energyRestorePoints = -1) : base(stock_id) - { - this.EnergyRestorePoints = energyRestorePoints; - } - - public override string ToString() { - if (EnergyRestorePoints > 0) { - return $"Material | ID: {this.stock_id} EnergyRP: {this.EnergyRestorePoints}"; - } - return $"Material | ID: {this.stock_id}"; - } - } -} diff --git a/Mundus/Service/Tiles/Items/Presets/GroundPresets.cs b/Mundus/Service/Tiles/Items/Presets/GroundPresets.cs index 2222fa4..9ec33eb 100644 --- a/Mundus/Service/Tiles/Items/Presets/GroundPresets.cs +++ b/Mundus/Service/Tiles/Items/Presets/GroundPresets.cs @@ -1,4 +1,6 @@ -namespace Mundus.Service.Tiles.Items.Presets { +using Mundus.Service.Tiles.Items.Types; + +namespace Mundus.Service.Tiles.Items.Presets { public static class GroundPresets { private static GroundTile sSky = new GroundTile("S_sky", -1, false); private static GroundTile lGrass = new GroundTile("L_grass", 1); diff --git a/Mundus/Service/Tiles/Items/Presets/MaterialPresets.cs b/Mundus/Service/Tiles/Items/Presets/MaterialPresets.cs index 491513e..0f2d44b 100644 --- a/Mundus/Service/Tiles/Items/Presets/MaterialPresets.cs +++ b/Mundus/Service/Tiles/Items/Presets/MaterialPresets.cs @@ -1,4 +1,6 @@ -namespace Mundus.Service.Tiles.Items.Presets { +using Mundus.Service.Tiles.Items.Types; + +namespace Mundus.Service.Tiles.Items.Presets { public static class MaterialPresets { /// New instance public static Material GetALandRock() { diff --git a/Mundus/Service/Tiles/Items/Presets/StructurePresets.cs b/Mundus/Service/Tiles/Items/Presets/StructurePresets.cs index 815d4a1..f2ca7ea 100644 --- a/Mundus/Service/Tiles/Items/Presets/StructurePresets.cs +++ b/Mundus/Service/Tiles/Items/Presets/StructurePresets.cs @@ -1,4 +1,5 @@ -using static Mundus.Data.Values; +using Mundus.Service.Tiles.Items.Types; +using static Mundus.Data.Values; namespace Mundus.Service.Tiles.Items.Presets { public static class StructurePresets { diff --git a/Mundus/Service/Tiles/Items/Presets/ToolPresets.cs b/Mundus/Service/Tiles/Items/Presets/ToolPresets.cs index 6bac612..791e77c 100644 --- a/Mundus/Service/Tiles/Items/Presets/ToolPresets.cs +++ b/Mundus/Service/Tiles/Items/Presets/ToolPresets.cs @@ -1,4 +1,5 @@ -using static Mundus.Data.Values; +using Mundus.Service.Tiles.Items.Types; +using static Mundus.Data.Values; namespace Mundus.Service.Tiles.Items.Presets { public static class ToolPresets { diff --git a/Mundus/Service/Tiles/Items/Structure.cs b/Mundus/Service/Tiles/Items/Structure.cs deleted file mode 100644 index 8db23ad..0000000 --- a/Mundus/Service/Tiles/Items/Structure.cs +++ /dev/null @@ -1,69 +0,0 @@ -using static Mundus.Data.Values; - -namespace Mundus.Service.Tiles.Items { - public class Structure : ItemTile { - private Material droppedMaterial; - - /// - /// stock_id for when the structure is in an inventory - /// - public string inventory_stock_id { get; private set; } - /// - /// Required type of tool to break the structure - /// - public ToolType ReqToolType { get; private set; } - /// - /// Required minimal tool class to break the structure - /// - public int ReqToolClass { get; private set; } - public int Health { get; private set; } - - /// - /// Determines whether mobs can change superlayers (climb up or down a superlayer ; true) or not (false) - /// - public bool IsClimable { get; private set; } - /// - /// Determines whether mob can walk on top of the structure (true) or not (false) - /// - public bool IsWalkable { get; private set; } - - - public Structure(Structure structure) :this(structure.stock_id, structure.inventory_stock_id, structure.Health, structure.ReqToolType, structure.ReqToolClass, structure.IsWalkable, - structure.IsWalkable, (structure.droppedMaterial != null)?new Material(structure.droppedMaterial.stock_id):null) { - } - - public Structure(string stock_id, string inventory_stock_id, int health, ToolType reqToolType, int reqToolClass, bool isWalkable = false, bool isClimable = false, Material droppedMaterial = null) : base(stock_id) { - this.inventory_stock_id = inventory_stock_id; - this.Health = health; - this.ReqToolType = reqToolType; - this.ReqToolClass = reqToolClass; - this.IsWalkable = isWalkable; - this.IsClimable = isClimable; - this.droppedMaterial = droppedMaterial; - } - - /// - /// Returns what the structure drops after being broken - /// - public ItemTile GetDrop() { - if (droppedMaterial == null) { - return this; - } - return droppedMaterial; - } - - /// - /// Removes health from structure - /// - /// Whether the structure can still be damaged - public bool TakeDamage(int damagePoints) { - this.Health -= damagePoints; - return this.Health > 0; - } - - public override string ToString() { - return $"Structure | ID: {this.stock_id} H: {this.Health} TT: {this.ReqToolType} TC: {this.ReqToolClass} " + - $"W: {this.IsWalkable} DM ID: {((droppedMaterial != null)?this.droppedMaterial.stock_id:null)}"; - } - } -} diff --git a/Mundus/Service/Tiles/Items/SwitchItems.cs b/Mundus/Service/Tiles/Items/SwitchItems.cs deleted file mode 100644 index c10baad..0000000 --- a/Mundus/Service/Tiles/Items/SwitchItems.cs +++ /dev/null @@ -1,95 +0,0 @@ -using Mundus.Data.Superlayers.Mobs; -using Mundus.Data.Windows; - -namespace Mundus.Service.Tiles.Items { - public static class SwitchItems { - private static ItemTile[] origin = null; - private static int oIndex = -1; - - /// - /// Sets the item that will be moved (switched) - /// - /// Name of the inventory location of the item ("hotbar", "items", "accessories" or "gear") - /// Index of the inventory location of the item - public static void SetOrigin(string originName, int originIndex) { - // This method overload only extracts the inventory location as an array - ItemTile[] newOrigin = null; - - switch (originName.ToLower()) { - case "hotbar": newOrigin = MI.Player.Inventory.Hotbar; break; - case "items": newOrigin = MI.Player.Inventory.Items; break; - case "accessories": newOrigin = MI.Player.Inventory.Accessories; break; - case "gear": newOrigin = MI.Player.Inventory.Gear; break; - } - SetOrigin(newOrigin, originIndex); - } - - private static void SetOrigin(ItemTile[] newOrigin, int originIndex) { - origin = newOrigin; - oIndex = originIndex; - WI.SelWin.PrintSelectedItemInfo(newOrigin[originIndex]); - } - - /// - /// Tries to switch the location of the originally selected item (origin) with the currently selected item - /// - /// Name of the inventory location of the currently selected item ("hotbar", "items", "accessories" or "gear") - /// Index of the inventory location of the currently selected item - public static void ReplaceItems(string destination, int destinationIndex) { - destination = destination.ToLower(); // just in case - - ItemTile[] destinationLocation = DestinationArray(destination); - ItemTile toTransfer = origin[oIndex]; - - if (toTransfer != null) { - // Consumable materials can be consumed by double clicking on them (transfering them to their current location) - if (toTransfer == destinationLocation[destinationIndex]) { - if (toTransfer.GetType() == typeof(Material) && - PlayerTryEat((Material)toTransfer)) { - origin[oIndex] = null; - } - } - else if (ItemCanGoThere(toTransfer, destination)) { - origin[oIndex] = destinationLocation[destinationIndex]; - destinationLocation[destinationIndex] = toTransfer; - } - } - - origin = null; - oIndex = -1; - } - - // Certain item types can only be placed inside certain inventory places. - private static ItemTile[] DestinationArray(string destination) { - switch (destination) { - case "hotbar": return MI.Player.Inventory.Hotbar; - case "items": return MI.Player.Inventory.Items; - case "accessories": return MI.Player.Inventory.Accessories; - case "gear": return MI.Player.Inventory.Gear; - default: throw new System.ArgumentException($"Destination of itemtile must be either \"hotbar\", \"items\", \"accessories\" or \"gear\", not {destination}"); - } - } - - private static bool ItemCanGoThere(ItemTile toTransfer, string destination) { - switch (destination) { - case "hotbar": return toTransfer.GetType() != typeof(GroundTile); - case "items": return true; - case "accessories": return toTransfer.GetType() == typeof(Gear); - case "gear": return toTransfer.GetType() == typeof(Gear); - default: throw new System.ArgumentException($"Destination of itemtile {toTransfer.stock_id} must be either \"hotbar\", \"items\", \"accessories\" or \"gear\", not {destination}"); - } - } - - public static bool HasOrigin() { - return origin != null && oIndex != -1; - } - - private static bool PlayerTryEat(Material material) { - if (material.EnergyRestorePoints > 0) { - MI.Player.RestoreEnergy(material.EnergyRestorePoints); - return true; - } - return false; - } - } -} diff --git a/Mundus/Service/Tiles/Items/Tool.cs b/Mundus/Service/Tiles/Items/Tool.cs deleted file mode 100644 index deb5a01..0000000 --- a/Mundus/Service/Tiles/Items/Tool.cs +++ /dev/null @@ -1,20 +0,0 @@ -using static Mundus.Data.Values; - -namespace Mundus.Service.Tiles.Items { - public class Tool : ItemTile { - public ToolType Type { get; private set; } - public int Class { get; private set; } - - public Tool(Tool tool) : this(tool.stock_id, tool.Type, tool.Class) - { } - - public Tool(string stock_id, ToolType toolType, int toolClass) : base(stock_id) { - this.Type = toolType; - this.Class = toolClass; - } - - public override string ToString() { - return $"Tool | ID: {this.stock_id} Type: {this.Type} Class: {this.Class}"; - } - } -} diff --git a/Mundus/Service/Tiles/Items/Types/Gear.cs b/Mundus/Service/Tiles/Items/Types/Gear.cs new file mode 100644 index 0000000..52f8d9d --- /dev/null +++ b/Mundus/Service/Tiles/Items/Types/Gear.cs @@ -0,0 +1,13 @@ +namespace Mundus.Service.Tiles.Items.Types { + public class Gear : ItemTile { + public Gear(Gear gear) : base(gear.stock_id) + { } + + public Gear(string stock_id) : base(stock_id) + { } + + public override string ToString() { + return $"Gear | ID: {stock_id}"; + } + } +} diff --git a/Mundus/Service/Tiles/Items/Types/GroundTile.cs b/Mundus/Service/Tiles/Items/Types/GroundTile.cs new file mode 100644 index 0000000..215ff96 --- /dev/null +++ b/Mundus/Service/Tiles/Items/Types/GroundTile.cs @@ -0,0 +1,27 @@ +using Gtk; +using static Mundus.Data.Values; + +namespace Mundus.Service.Tiles.Items.Types { + public class GroundTile : ItemTile { + /// + /// Required minimal shovel class for destroying the ground tile + /// + public int ReqShovelClass { get; private set; } + /// + /// Determines whether mobs can go through and structures can be placed (if not solid) + /// + public bool Solid { get; private set; } + + public GroundTile(GroundTile groundTile) :this(groundTile.stock_id, groundTile.ReqShovelClass, groundTile.Solid) + { } + + public GroundTile(string stock_id, int reqShovelClass, bool solid = true) :base(stock_id) { + this.ReqShovelClass = reqShovelClass; + this.Solid = solid; + } + + public override string ToString() { + return $"GroundTile | ID: {this.stock_id} TT: {ToolType.Shovel} TC: {this.ReqShovelClass}"; + } + } +} diff --git a/Mundus/Service/Tiles/Items/Types/Material.cs b/Mundus/Service/Tiles/Items/Types/Material.cs new file mode 100644 index 0000000..565713e --- /dev/null +++ b/Mundus/Service/Tiles/Items/Types/Material.cs @@ -0,0 +1,24 @@ +namespace Mundus.Service.Tiles.Items.Types { + public class Material : ItemTile { + /// + /// Certain materials can be eaten to replenish energy points. This stores by how much to restore energy points. + /// Note: If a material mustn't be consumed, his energy points should be less or equal to 0 + /// + public double EnergyRestorePoints { get; private set; } + + public Material(Material material) : this(material.stock_id, material.EnergyRestorePoints) + { } + + public Material(string stock_id, double energyRestorePoints = -1) : base(stock_id) + { + this.EnergyRestorePoints = energyRestorePoints; + } + + public override string ToString() { + if (EnergyRestorePoints > 0) { + return $"Material | ID: {this.stock_id} EnergyRP: {this.EnergyRestorePoints}"; + } + return $"Material | ID: {this.stock_id}"; + } + } +} diff --git a/Mundus/Service/Tiles/Items/Types/Structure.cs b/Mundus/Service/Tiles/Items/Types/Structure.cs new file mode 100644 index 0000000..8b84978 --- /dev/null +++ b/Mundus/Service/Tiles/Items/Types/Structure.cs @@ -0,0 +1,69 @@ +using static Mundus.Data.Values; + +namespace Mundus.Service.Tiles.Items.Types { + public class Structure : ItemTile { + private Material droppedMaterial; + + /// + /// stock_id for when the structure is in an inventory + /// + public string inventory_stock_id { get; private set; } + /// + /// Required type of tool to break the structure + /// + public ToolType ReqToolType { get; private set; } + /// + /// Required minimal tool class to break the structure + /// + public int ReqToolClass { get; private set; } + public int Health { get; private set; } + + /// + /// Determines whether mobs can change superlayers (climb up or down a superlayer ; true) or not (false) + /// + public bool IsClimable { get; private set; } + /// + /// Determines whether mob can walk on top of the structure (true) or not (false) + /// + public bool IsWalkable { get; private set; } + + + public Structure(Structure structure) :this(structure.stock_id, structure.inventory_stock_id, structure.Health, structure.ReqToolType, structure.ReqToolClass, structure.IsWalkable, + structure.IsWalkable, (structure.droppedMaterial != null)?new Material(structure.droppedMaterial.stock_id):null) { + } + + public Structure(string stock_id, string inventory_stock_id, int health, ToolType reqToolType, int reqToolClass, bool isWalkable = false, bool isClimable = false, Material droppedMaterial = null) : base(stock_id) { + this.inventory_stock_id = inventory_stock_id; + this.Health = health; + this.ReqToolType = reqToolType; + this.ReqToolClass = reqToolClass; + this.IsWalkable = isWalkable; + this.IsClimable = isClimable; + this.droppedMaterial = droppedMaterial; + } + + /// + /// Returns what the structure drops after being broken + /// + public ItemTile GetDrop() { + if (droppedMaterial == null) { + return this; + } + return droppedMaterial; + } + + /// + /// Removes health from structure + /// + /// Whether the structure can still be damaged + public bool TakeDamage(int damagePoints) { + this.Health -= damagePoints; + return this.Health > 0; + } + + public override string ToString() { + return $"Structure | ID: {this.stock_id} H: {this.Health} TT: {this.ReqToolType} TC: {this.ReqToolClass} " + + $"W: {this.IsWalkable} DM ID: {((droppedMaterial != null)?this.droppedMaterial.stock_id:null)}"; + } + } +} diff --git a/Mundus/Service/Tiles/Items/Types/Tool.cs b/Mundus/Service/Tiles/Items/Types/Tool.cs new file mode 100644 index 0000000..424a15a --- /dev/null +++ b/Mundus/Service/Tiles/Items/Types/Tool.cs @@ -0,0 +1,20 @@ +using static Mundus.Data.Values; + +namespace Mundus.Service.Tiles.Items.Types { + public class Tool : ItemTile { + public ToolType Type { get; private set; } + public int Class { get; private set; } + + public Tool(Tool tool) : this(tool.stock_id, tool.Type, tool.Class) + { } + + public Tool(string stock_id, ToolType toolType, int toolClass) : base(stock_id) { + this.Type = toolType; + this.Class = toolClass; + } + + public override string ToString() { + return $"Tool | ID: {this.stock_id} Type: {this.Type} Class: {this.Class}"; + } + } +} diff --git a/Mundus/Service/Tiles/Mobs/Controllers/MobFighting.cs b/Mundus/Service/Tiles/Mobs/Controllers/MobFighting.cs index 07a67c6..3b813d3 100644 --- a/Mundus/Service/Tiles/Mobs/Controllers/MobFighting.cs +++ b/Mundus/Service/Tiles/Mobs/Controllers/MobFighting.cs @@ -2,8 +2,8 @@ using Mundus.Data; using Mundus.Data.Superlayers.Mobs; using Mundus.Service.Tiles.Items; +using Mundus.Service.Tiles.Items.Types; using Mundus.Service.Tiles.Mobs.LandMobs; -using static Mundus.Data.Values; namespace Mundus.Service.Tiles.Mobs.Controllers { public static class MobFighting { @@ -35,16 +35,16 @@ namespace Mundus.Service.Tiles.Mobs.Controllers { /// Inventory index of the selected item place (item will be checked if its a valid tool) /// YPos of target mob /// XPos of target mob - public static void PlayerTryFight(string selPlace, int selIndex, int mapYPos, int mapXPos) { - if (MobTryFight(MI.Player, selPlace, selIndex, mapYPos, mapXPos)) { - MI.Player.DrainEnergy(TAKEN_ENERGY_FROM_FIGHTING + DifficultyValueModifier()); + public static void PlayerTryFight(int mapYPos, int mapXPos) { + if (MobTryFight(MI.Player, mapYPos, mapXPos)) { + MI.Player.DrainEnergy(TAKEN_ENERGY_FROM_FIGHTING + Values.DifficultyValueModifier()); } } // Checks if the mob has a proper fighting item selected - private static bool MobCanFight(MobTile mob, string selPlace, int selIndex, int mapYPos, int mapXPos) { - return Inventory.GetPlayerItem(selPlace, selIndex).GetType() == typeof(Tool) && - ((Tool)Inventory.GetPlayerItem(selPlace, selIndex)).Type == ToolType.Sword && + private static bool MobCanFight(MobTile mob, int mapYPos, int mapXPos) { + return Inventory.GetPlayerItemFromItemSelection().GetType() == typeof(Tool) && + ((Tool)Inventory.GetPlayerItemFromItemSelection()).Type == Values.ToolType.Sword && mob.CurrSuperLayer.GetMobLayerStock(mapYPos, mapXPos) != null; } @@ -58,9 +58,9 @@ namespace Mundus.Service.Tiles.Mobs.Controllers { /// Inventory index of the selected item place (item will be checked if its a valid tool) /// YPos of target mob /// XPos of target mob - public static bool MobTryFight(MobTile mob, string selPlace, int selIndex, int mapYPos, int mapXPos) { - if (MobCanFight(mob, selPlace, selIndex, mapYPos, mapXPos)) { - Tool selTool = (Tool)Inventory.GetPlayerItem(selPlace, selIndex); + public static bool MobTryFight(MobTile mob, int mapYPos, int mapXPos) { + if (MobCanFight(mob, mapYPos, mapXPos)) { + Tool selTool = (Tool)Inventory.GetPlayerItemFromItemSelection(); MobTile targetMob = LandMobsPresets.GetFromStock(mob.CurrSuperLayer.GetMobLayerStock(mapYPos, mapXPos)); if (selTool.Class >= targetMob.Defense) { @@ -89,7 +89,7 @@ namespace Mundus.Service.Tiles.Mobs.Controllers { GameEventLogController.AddMessage($"There is no mob to fight on \"{mob.CurrSuperLayer}\" at Y:{mapYPos}, X:{mapXPos}"); } else if (mob.GetType() == typeof(Player)) { // Inventory.GetPlayerItem(selPlace, selIndex).GetType() != typeof(Tool) || ((Tool)Inventory.GetPlayerItem(selPlace, selIndex)).Type != ToolTypes.Sword - GameEventLogController.AddMessage($"You need a Tool of type {ToolType.Sword} to fight with other mobs"); + GameEventLogController.AddMessage($"You need a Tool of type {Values.ToolType.Sword} to fight with other mobs"); } return false; } diff --git a/Mundus/Service/Tiles/Mobs/Controllers/MobTerraforming.cs b/Mundus/Service/Tiles/Mobs/Controllers/MobTerraforming.cs index e4ba86c..0e641f8 100644 --- a/Mundus/Service/Tiles/Mobs/Controllers/MobTerraforming.cs +++ b/Mundus/Service/Tiles/Mobs/Controllers/MobTerraforming.cs @@ -6,22 +6,21 @@ using Mundus.Service.SuperLayers; using Mundus.Service.Tiles.Items; using Mundus.Service.Tiles.Items.Presets; using Mundus.Data; +using Mundus.Service.Tiles.Items.Types; namespace Mundus.Service.Tiles.Mobs.Controllers { public static class MobTerraforming { /// /// Tries to place a selected structure/ground tile or to mine/dig (destroy) at the selected location /// - /// Place where the selected item is located ("hotbar", "items", ...) - /// Index of the place where the item is located - public static void PlayerTerraformAt(int mapYPos, int mapXPos, string inventoryPlace, int inventoryIndex) { - var selectedItemType = Inventory.GetPlayerItem(inventoryPlace, inventoryIndex).GetType(); + public static void PlayerTerraformAt(int mapYPos, int mapXPos) { + var selectedItemType = Inventory.GetPlayerItemFromItemSelection().GetType(); // If player can place strucure if (selectedItemType == typeof(Structure)) { if (PlayerCanBuildStructureAt(mapYPos, mapXPos)) { - PlayerBuildStructureAt(mapYPos, mapXPos, inventoryPlace, inventoryIndex); - MI.Player.Inventory.DeleteItemTile(inventoryPlace, inventoryIndex); + PlayerBuildStructureAt(mapYPos, mapXPos); + Inventory.DeletePlayerItemTileFromItemSelection(); } else { GameEventLogController.AddMessage($"Cannot build structure at Y:{mapYPos}, X:{mapXPos}"); @@ -31,8 +30,8 @@ namespace Mundus.Service.Tiles.Mobs.Controllers { // If Player can place ground else if (selectedItemType == typeof(GroundTile)) { if (PlayerCanPlaceGroundAt(mapYPos, mapXPos)) { - PlayerPlaceGroundAt(mapYPos, mapXPos, inventoryPlace, inventoryIndex); - MI.Player.Inventory.DeleteItemTile(inventoryPlace, inventoryIndex); + PlayerPlaceGroundAt(mapYPos, mapXPos); + Inventory.DeletePlayerItemTileFromItemSelection(); } else { GameEventLogController.AddMessage($"Cannot place ground at Y:{mapYPos}, X:{mapXPos}"); @@ -41,7 +40,7 @@ namespace Mundus.Service.Tiles.Mobs.Controllers { // If player can mine/dig else if (selectedItemType == typeof(Tool)) { if (PlayerCanDestroyAt(mapYPos, mapXPos)) { - PlayerDestroyAt(mapYPos, mapXPos, inventoryPlace, inventoryIndex); + PlayerDestroyAt(mapYPos, mapXPos); } else { GameEventLogController.AddMessage($"Cannot destroy at Y:{mapYPos}, X:{mapXPos}"); @@ -56,8 +55,8 @@ namespace Mundus.Service.Tiles.Mobs.Controllers { } private const double ENERGY_TAKEN_FROM_DESTROYING = 0.6; - private static void PlayerDestroyAt(int mapYPos, int mapXPos, string place, int index) { - var selectedTool = (Tool)MI.Player.Inventory.GetItemTile(place, index); + private static void PlayerDestroyAt(int mapYPos, int mapXPos) { + var selectedTool = (Tool)Inventory.GetPlayerItemFromItemSelection(); // Only shovels can destroy ground layer tiles, but not when there is something over the ground tile if (selectedTool.Type == ToolType.Shovel && MI.Player.CurrSuperLayer.GetStructureLayerStock(mapYPos, mapXPos) == null) { @@ -150,8 +149,8 @@ namespace Mundus.Service.Tiles.Mobs.Controllers { } private const double ENERGY_TAKEN_FROM_PLACING_GROUND = 0.4; - private static void PlayerPlaceGroundAt(int yPos, int xPos, string inventoryPlace, int inventoryIndex) { - GroundTile toPlace = (GroundTile)MI.Player.Inventory.GetItemTile(inventoryPlace, inventoryIndex); + private static void PlayerPlaceGroundAt(int yPos, int xPos) { + GroundTile toPlace = (GroundTile)Inventory.GetPlayerItemFromItemSelection(); MI.Player.CurrSuperLayer.SetGroundAtPosition(toPlace.stock_id, yPos, xPos); MI.Player.DrainEnergy(ENERGY_TAKEN_FROM_PLACING_GROUND + Values.DifficultyValueModifier()); @@ -165,8 +164,8 @@ namespace Mundus.Service.Tiles.Mobs.Controllers { } private const double ENERGY_TAKEN_FROM_BUILDING_STRUCTURE = 0.5; - private static void PlayerBuildStructureAt(int yPos, int xPos, string inventoryPlace, int inventoryIndex) { - Structure toBuild = (Structure)MI.Player.Inventory.GetItemTile(inventoryPlace, inventoryIndex); + private static void PlayerBuildStructureAt(int yPos, int xPos) { + Structure toBuild = (Structure)Inventory.GetPlayerItemFromItemSelection(); // Climable structures will be placed under a hole (if they can be). // Non climable structures won't be placed anywhere if there is a hole. diff --git a/Mundus/Service/Tiles/Mobs/Inventory.cs b/Mundus/Service/Tiles/Mobs/Inventory.cs index 58e1767..ae4f141 100644 --- a/Mundus/Service/Tiles/Mobs/Inventory.cs +++ b/Mundus/Service/Tiles/Mobs/Inventory.cs @@ -1,9 +1,17 @@ using Mundus.Service.Tiles.Items; +using Mundus.Service.Tiles.Items.Types; using System; using System.Linq; namespace Mundus.Service.Tiles.Mobs { public class Inventory { + public enum InventoryPlace { + Hotbar, + Items, + Accessories, + Gear + } + /// /// Has a size of "Screen and Inventory" and can hold Tools, Materials, Structures and Gear /// @@ -84,14 +92,14 @@ namespace Mundus.Service.Tiles.Mobs { /// Returns an ItemTile depending on specified place ("hotbar", "items", "accessories" or "gear") /// and specified index /// - public ItemTile GetItemTile(string place, int index) { + public ItemTile GetItemTile(InventoryPlace place, int index) { ItemTile toReturn = null; - switch (place.ToLower()) { - case "hotbar": toReturn = this.Hotbar[index]; break; - case "items": toReturn = this.Items[index]; break; - case "accessories": toReturn = this.Accessories[index]; break; - case "gear": toReturn = this.Gear[index]; break; + switch (place) { + case InventoryPlace.Hotbar: toReturn = this.Hotbar[index]; break; + case InventoryPlace.Items: toReturn = this.Items[index]; break; + case InventoryPlace.Accessories: toReturn = this.Accessories[index]; break; + case InventoryPlace.Gear: toReturn = this.Gear[index]; break; } return toReturn; } @@ -100,21 +108,25 @@ namespace Mundus.Service.Tiles.Mobs { /// Deletes an ItemTile depending on specified place ("hotbar", "items", "accessories" or "gear") /// and specified index /// - public void DeleteItemTile(string place, int index) { - switch (place.ToLower()) { - case "hotbar": this.Hotbar[index] = null; break; - case "items": this.Items[index] = null; break; - case "accessories": this.Accessories[index] = null; break; - case "gear": this.Gear[index] = null; break; - } + public static void DeletePlayerItemTileFromItemSelection() { + Data.Superlayers.Mobs.MI.Player.Inventory.DeleteItem(ItemController.SelItemPlace, ItemController.SelItemIndex); } /// /// Returns an ItemTile depending on specified place ("hotbar", "items", "accessories" or "gear") /// and specified index in player's inventory /// - public static ItemTile GetPlayerItem(string place, int index) { - return Data.Superlayers.Mobs.MI.Player.Inventory.GetItemTile(place, index); + public static ItemTile GetPlayerItemFromItemSelection() { + return Data.Superlayers.Mobs.MI.Player.Inventory.GetItemTile(ItemController.SelItemPlace, ItemController.SelItemIndex); + } + + public void DeleteItem(InventoryPlace place, int index) { + switch (place) { + case InventoryPlace.Hotbar: this.Hotbar[index] = null; break; + case InventoryPlace.Items: this.Items[index] = null; break; + case InventoryPlace.Accessories: this.Accessories[index] = null; break; + case InventoryPlace.Gear: this.Gear[index] = null; break; + } } } } diff --git a/Mundus/Service/Tiles/Mobs/LandMobs/Player.cs b/Mundus/Service/Tiles/Mobs/LandMobs/Player.cs index 80c10d9..f7a1329 100644 --- a/Mundus/Service/Tiles/Mobs/LandMobs/Player.cs +++ b/Mundus/Service/Tiles/Mobs/LandMobs/Player.cs @@ -2,6 +2,7 @@ using Mundus.Data.SuperLayers; using Mundus.Data.Windows; using Mundus.Service.Tiles.Items; +using Mundus.Service.Tiles.Items.Types; namespace Mundus.Service.Tiles.Mobs.LandMobs { public class Player : MobTile { diff --git a/Mundus/Service/Tiles/Mobs/MobTile.cs b/Mundus/Service/Tiles/Mobs/MobTile.cs index a3702af..10d9fef 100644 --- a/Mundus/Service/Tiles/Mobs/MobTile.cs +++ b/Mundus/Service/Tiles/Mobs/MobTile.cs @@ -3,6 +3,7 @@ using Mundus.Data; using Mundus.Data.SuperLayers; using Mundus.Data.Windows; using Mundus.Service.Tiles.Items; +using Mundus.Service.Tiles.Items.Types; namespace Mundus.Service.Tiles.Mobs { public class MobTile : ITile { diff --git a/Mundus/Service/WindowController.cs b/Mundus/Service/WindowController.cs deleted file mode 100644 index d662a19..0000000 --- a/Mundus/Service/WindowController.cs +++ /dev/null @@ -1,65 +0,0 @@ -using Gtk; -using Mundus.Data.Windows; - -namespace Mundus.Service { - public static class WindowController { - /// - /// Shows the settings window and hides the sender - /// - public static void ShowSettingsWindow(Window sender) { - sender.Hide(); - WI.WSettings.Show(sender); - } - - /// - /// Shows the new game window, sets it's default values and hides the sender - /// - public static void ShowNewGameWindow(Window sender) { - sender.Hide(); - WI.WNewGame.SetDefaults(); - WI.WNewGame.Show(); - } - - /// - /// Shows the main window and hides the sender - /// - public static void ShowMainWindow(Window sender) { - sender.Hide(); - WI.WMain.Show(); - } - - public static bool PauseWindowVisible { get; set; } - - /// - /// Shows the pause window on top of all windows and "pauses" game input (bool PauseWindowVisible) - /// - public static void ShowPauseWindow() { - WI.WPause.Show(); - WI.WPause.Present(); - PauseWindowVisible = true; - } - - /// - /// Shows the music window on top of all windows - /// - public static void ShowMusicWindow() { - WI.WMusic.Show(); - WI.WMusic.Present(); - } - - /// - /// Shows the crafting window on top of all windows and does initializes it - /// - public static void ShowCraftingWindow() { - WI.WCrafting.Initialize(); - WI.WCrafting.Show(); - WI.WCrafting.Present(); - } - - public static void ShowLogWindow() { - WI.WLog.Initialize(); - WI.WLog.Show(); - WI.WLog.Present(); - } - } -} diff --git a/Mundus/Service/Windows/Calculate.cs b/Mundus/Service/Windows/Calculate.cs new file mode 100644 index 0000000..873bf63 --- /dev/null +++ b/Mundus/Service/Windows/Calculate.cs @@ -0,0 +1,45 @@ +using Mundus.Data; +using Mundus.Data.Superlayers.Mobs; +using System; + +namespace Mundus.Service.Windows { + public static class Calculate { + /*Depending on whether you are on the edge of the map or in the center, the screen renders a bit differently. + *On the edge it doesn't follow the player and only shows the corner "chunk". In the other parts it follows the + *the player, making sure he stays in the center of the screen. + *This means that when the player is followed, rendered part of the map depend on the player position, but when + *he isn't, it depends on the screen and map sizes.*/ + public static int CalculateMaxY(int size) { + int maxY = (MI.Player.YPos - size/2 >= 0) ? MI.Player.YPos + size/2 : size - 1; + if (maxY >= (int)Values.CurrMapSize) maxY = (int)Values.CurrMapSize - 1; + return maxY; + } + public static int CalculateStartY(int size) { + int startY = (MI.Player.YPos - size/2 <= (int)Values.CurrMapSize - size) ? MI.Player.YPos - size/2 : (int)Values.CurrMapSize - size; + if (startY < 0) startY = 0; + return startY; + } + public static int CalculateMaxX(int size) { + int maxX = (MI.Player.XPos - size/2 >= 0) ? MI.Player.XPos + size/2 : size - 1; + if (maxX >= (int)Values.CurrMapSize) maxX = (int)Values.CurrMapSize - 1; + return maxX; + } + public static int CalculateStartX(int size) { + int startX = (MI.Player.XPos - size/2 <= (int)Values.CurrMapSize - size) ? MI.Player.XPos - size/2 : (int)Values.CurrMapSize - size; + if (startX < 0) startX = 0; + return startX; + } + + //Screen buttons show only a certain part of the whole map + public static int CalculateYFromButton(int buttonYPos, int size) { + int newYPos = (MI.Player.YPos - size/2 >= 0) ? MI.Player.YPos - size/2 + buttonYPos : buttonYPos; + if (MI.Player.YPos > (int)Values.CurrMapSize - Math.Ceiling(size/2.0)) newYPos = buttonYPos + (int)Values.CurrMapSize - size; + return newYPos; + } + public static int CalculateXFromButton(int buttonXPos, int size) { + int newXPos = (MI.Player.XPos - size/2 >= 0) ? MI.Player.XPos - size/2 + buttonXPos : buttonXPos; + if (MI.Player.XPos > (int)Values.CurrMapSize - Math.Ceiling(size/2.0)) newXPos = buttonXPos + (int)Values.CurrMapSize - size; + return newXPos; + } + } +} diff --git a/Mundus/Service/Windows/WindowController.cs b/Mundus/Service/Windows/WindowController.cs new file mode 100644 index 0000000..09174ed --- /dev/null +++ b/Mundus/Service/Windows/WindowController.cs @@ -0,0 +1,104 @@ +using System; +using Gtk; +using Mundus.Data.Windows; +using Mundus.Service.Tiles.Items; +using Mundus.Service.Tiles.Mobs; +using Mundus.Service.Tiles.Mobs.Controllers; +using Mundus.Views.Windows; + +namespace Mundus.Service.Windows { + public static class WindowController { + + /// + /// Shows the settings window and hides the sender + /// + public static void ShowSettingsWindow(Window sender) { + sender.Hide(); + WI.WSettings.Show(sender); + } + + /// + /// Shows the new game window, sets it's default values and hides the sender + /// + public static void ShowNewGameWindow(Window sender) { + sender.Hide(); + WI.WNewGame.SetDefaults(); + WI.WNewGame.Show(); + } + + /// + /// Shows the main window and hides the sender + /// + public static void ShowMainWindow(Window sender) { + sender.Hide(); + WI.WMain.Show(); + } + + public static bool PauseWindowVisible { get; set; } + + /// + /// Shows the pause window on top of all windows and "pauses" game input (bool PauseWindowVisible) + /// + public static void ShowPauseWindow() { + WI.WPause.Show(); + WI.WPause.Present(); + PauseWindowVisible = true; + } + + /// + /// Shows the music window on top of all windows + /// + public static void ShowMusicWindow() { + WI.WMusic.Show(); + WI.WMusic.Present(); + } + + /// + /// Shows the crafting window on top of all windows and does initializes it + /// + public static void ShowCraftingWindow() { + WI.WCrafting.Initialize(); + WI.WCrafting.Show(); + WI.WCrafting.Present(); + } + + public static void ShowLogWindow() { + WI.WLog.Initialize(); + WI.WLog.Show(); + WI.WLog.Present(); + } + + public static void React(int button) + { + int size = WI.SelWin.Size; + + int buttonYPos = (button - 1) / size; + int buttonXPos = (button - (buttonYPos * size)) - 1; + + int mapXPos = Calculate.CalculateXFromButton(buttonXPos, size); + int mapYPos = Calculate.CalculateYFromButton(buttonYPos, size); + + if (!ItemController.HasSelectedItem()) { + MobMovement.MovePlayer(mapYPos, mapXPos, size); + MobMovement.MoveRandomlyAllMobs(); + } + else { + if (Inventory.GetPlayerItemFromItemSelection() != null) { + if (MobFighting.ExistsFightTargetForPlayer(mapYPos, mapXPos)) { + MobFighting.PlayerTryFight(mapYPos, mapXPos); + } + else { + MobTerraforming.PlayerTerraformAt(mapYPos, mapXPos); + } + } + + ItemController.ResetSelection(); + } + + WI.SelWin.PrintWorldScreen(); + WI.SelWin.PrintMainMenu(); + + WI.SelWin.PrintMapOrInv(); + } + } +} diff --git a/Mundus/Views/Windows/GameWindows/IGameWindow.cs b/Mundus/Views/Windows/GameWindows/IGameWindow.cs index c864fe9..7f05216 100644 --- a/Mundus/Views/Windows/GameWindows/IGameWindow.cs +++ b/Mundus/Views/Windows/GameWindows/IGameWindow.cs @@ -21,6 +21,8 @@ void PrintInventory(); + void PrintMapOrInv(); + void PrintSelectedItemInfo(ItemTile itemTile); void Show(); diff --git a/Mundus/Views/Windows/GameWindows/Large/LargeButtonClickedEvents.cs b/Mundus/Views/Windows/GameWindows/Large/LargeButtonClickedEvents.cs index e69e04c..3590c25 100644 --- a/Mundus/Views/Windows/GameWindows/Large/LargeButtonClickedEvents.cs +++ b/Mundus/Views/Windows/GameWindows/Large/LargeButtonClickedEvents.cs @@ -1,7 +1,8 @@ -namespace Mundus.Views.Windows +namespace Mundus.Views.Windows.GameWindows.Large { using System; - using Mundus.Service; + using Mundus.Service.Windows; + using static Mundus.Service.Tiles.Mobs.Inventory; public partial class LargeGameWindow { @@ -59,7 +60,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(1); + WindowController.React(1); } } @@ -67,7 +68,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(2); + WindowController.React(2); } } @@ -75,7 +76,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(3); + WindowController.React(3); } } @@ -83,7 +84,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(4); + WindowController.React(4); } } @@ -91,7 +92,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(5); + WindowController.React(5); } } @@ -99,7 +100,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(6); + WindowController.React(6); } } @@ -107,7 +108,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(7); + WindowController.React(7); } } @@ -115,7 +116,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(8); + WindowController.React(8); } } @@ -123,7 +124,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(9); + WindowController.React(9); } } @@ -131,7 +132,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(10); + WindowController.React(10); } } @@ -139,7 +140,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(11); + WindowController.React(11); } } @@ -147,7 +148,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(12); + WindowController.React(12); } } @@ -155,7 +156,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(13); + WindowController.React(13); } } @@ -163,7 +164,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(14); + WindowController.React(14); } } @@ -171,7 +172,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(15); + WindowController.React(15); } } @@ -179,7 +180,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(16); + WindowController.React(16); } } @@ -187,7 +188,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(17); + WindowController.React(17); } } @@ -195,7 +196,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(18); + WindowController.React(18); } } @@ -203,7 +204,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(19); + WindowController.React(19); } } @@ -211,7 +212,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(20); + WindowController.React(20); } } @@ -219,7 +220,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(21); + WindowController.React(21); } } @@ -227,7 +228,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(22); + WindowController.React(22); } } @@ -235,7 +236,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(23); + WindowController.React(23); } } @@ -243,7 +244,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(24); + WindowController.React(24); } } @@ -251,7 +252,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(25); + WindowController.React(25); } } @@ -259,7 +260,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(26); + WindowController.React(26); } } @@ -267,7 +268,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(27); + WindowController.React(27); } } @@ -275,7 +276,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(28); + WindowController.React(28); } } @@ -283,7 +284,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(29); + WindowController.React(29); } } @@ -291,7 +292,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(30); + WindowController.React(30); } } @@ -299,7 +300,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(31); + WindowController.React(31); } } @@ -307,7 +308,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(32); + WindowController.React(32); } } @@ -315,7 +316,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(33); + WindowController.React(33); } } @@ -323,7 +324,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(34); + WindowController.React(34); } } @@ -331,7 +332,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(35); + WindowController.React(35); } } @@ -339,7 +340,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(36); + WindowController.React(36); } } @@ -347,7 +348,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(37); + WindowController.React(37); } } @@ -355,7 +356,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(38); + WindowController.React(38); } } @@ -363,7 +364,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(39); + WindowController.React(39); } } @@ -371,7 +372,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(40); + WindowController.React(40); } } @@ -379,7 +380,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(41); + WindowController.React(41); } } @@ -387,7 +388,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(42); + WindowController.React(42); } } @@ -395,7 +396,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(43); + WindowController.React(43); } } @@ -403,7 +404,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(44); + WindowController.React(44); } } @@ -411,7 +412,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(45); + WindowController.React(45); } } @@ -419,7 +420,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(46); + WindowController.React(46); } } @@ -427,7 +428,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(47); + WindowController.React(47); } } @@ -435,7 +436,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(48); + WindowController.React(48); } } @@ -443,7 +444,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(49); + WindowController.React(49); } } @@ -451,7 +452,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(50); + WindowController.React(50); } } @@ -459,7 +460,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(51); + WindowController.React(51); } } @@ -467,7 +468,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(52); + WindowController.React(52); } } @@ -475,7 +476,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(53); + WindowController.React(53); } } @@ -483,7 +484,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(54); + WindowController.React(54); } } @@ -491,7 +492,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(55); + WindowController.React(55); } } @@ -499,7 +500,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(56); + WindowController.React(56); } } @@ -507,7 +508,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(57); + WindowController.React(57); } } @@ -515,7 +516,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(58); + WindowController.React(58); } } @@ -523,7 +524,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(59); + WindowController.React(59); } } @@ -531,7 +532,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(60); + WindowController.React(60); } } @@ -539,7 +540,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(61); + WindowController.React(61); } } @@ -547,7 +548,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(62); + WindowController.React(62); } } @@ -555,7 +556,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(63); + WindowController.React(63); } } @@ -563,7 +564,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(64); + WindowController.React(64); } } @@ -571,7 +572,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(65); + WindowController.React(65); } } @@ -579,7 +580,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(66); + WindowController.React(66); } } @@ -587,7 +588,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(67); + WindowController.React(67); } } @@ -595,7 +596,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(68); + WindowController.React(68); } } @@ -603,7 +604,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(69); + WindowController.React(69); } } @@ -611,7 +612,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(70); + WindowController.React(70); } } @@ -619,7 +620,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(71); + WindowController.React(71); } } @@ -627,7 +628,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(72); + WindowController.React(72); } } @@ -635,7 +636,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(73); + WindowController.React(73); } } @@ -643,7 +644,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(74); + WindowController.React(74); } } @@ -651,7 +652,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(75); + WindowController.React(75); } } @@ -659,7 +660,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(76); + WindowController.React(76); } } @@ -667,7 +668,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(77); + WindowController.React(77); } } @@ -675,7 +676,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(78); + WindowController.React(78); } } @@ -683,7 +684,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(79); + WindowController.React(79); } } @@ -691,7 +692,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(80); + WindowController.React(80); } } @@ -699,7 +700,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(81); + WindowController.React(81); } } @@ -711,7 +712,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 0); + this.SelectItem(InventoryPlace.Hotbar, 0); this.PrintMainMenu(); } } @@ -720,7 +721,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 1); + this.SelectItem(InventoryPlace.Hotbar, 1); this.PrintMainMenu(); } } @@ -729,7 +730,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 2); + this.SelectItem(InventoryPlace.Hotbar, 2); this.PrintMainMenu(); } } @@ -738,7 +739,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 3); + this.SelectItem(InventoryPlace.Hotbar, 3); this.PrintMainMenu(); } } @@ -747,7 +748,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 4); + this.SelectItem(InventoryPlace.Hotbar, 4); this.PrintMainMenu(); } } @@ -756,7 +757,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 5); + this.SelectItem(InventoryPlace.Hotbar, 5); this.PrintMainMenu(); } } @@ -765,7 +766,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 6); + this.SelectItem(InventoryPlace.Hotbar, 6); this.PrintMainMenu(); } } @@ -774,7 +775,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 7); + this.SelectItem(InventoryPlace.Hotbar, 7); this.PrintMainMenu(); } } @@ -783,7 +784,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 8); + this.SelectItem(InventoryPlace.Hotbar, 8); this.PrintMainMenu(); } } @@ -801,7 +802,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 0); + this.SelectItem(InventoryPlace.Items, 0); this.PrintInventory(); } } @@ -810,7 +811,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 1); + this.SelectItem(InventoryPlace.Items, 1); this.PrintInventory(); } } @@ -819,7 +820,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 2); + this.SelectItem(InventoryPlace.Items, 2); this.PrintInventory(); } } @@ -828,7 +829,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 3); + this.SelectItem(InventoryPlace.Items, 3); this.PrintInventory(); } } @@ -837,7 +838,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 4); + this.SelectItem(InventoryPlace.Items, 4); this.PrintInventory(); } } @@ -846,7 +847,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 5); + this.SelectItem(InventoryPlace.Items, 5); this.PrintInventory(); } } @@ -855,7 +856,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 6); + this.SelectItem(InventoryPlace.Items, 6); this.PrintInventory(); } } @@ -864,7 +865,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 7); + this.SelectItem(InventoryPlace.Items, 7); this.PrintInventory(); } } @@ -873,7 +874,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 8); + this.SelectItem(InventoryPlace.Items, 8); this.PrintInventory(); } } @@ -882,7 +883,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 9); + this.SelectItem(InventoryPlace.Items, 9); this.PrintInventory(); } } @@ -891,7 +892,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 10); + this.SelectItem(InventoryPlace.Items, 10); this.PrintInventory(); } } @@ -900,7 +901,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 11); + this.SelectItem(InventoryPlace.Items, 11); this.PrintInventory(); } } @@ -909,7 +910,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 12); + this.SelectItem(InventoryPlace.Items, 12); this.PrintInventory(); } } @@ -918,7 +919,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 13); + this.SelectItem(InventoryPlace.Items, 13); this.PrintInventory(); } } @@ -927,7 +928,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 14); + this.SelectItem(InventoryPlace.Items, 14); this.PrintInventory(); } } @@ -936,7 +937,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 15); + this.SelectItem(InventoryPlace.Items, 15); this.PrintInventory(); } } @@ -945,7 +946,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 16); + this.SelectItem(InventoryPlace.Items, 16); this.PrintInventory(); } } @@ -954,7 +955,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 17); + this.SelectItem(InventoryPlace.Items, 17); this.PrintInventory(); } } @@ -963,7 +964,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 18); + this.SelectItem(InventoryPlace.Items, 18); this.PrintInventory(); } } @@ -972,7 +973,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 19); + this.SelectItem(InventoryPlace.Items, 19); this.PrintInventory(); } } @@ -981,7 +982,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 20); + this.SelectItem(InventoryPlace.Items, 20); this.PrintInventory(); } } @@ -990,7 +991,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 21); + this.SelectItem(InventoryPlace.Items, 21); this.PrintInventory(); } } @@ -999,7 +1000,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 22); + this.SelectItem(InventoryPlace.Items, 22); this.PrintInventory(); } } @@ -1008,7 +1009,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 23); + this.SelectItem(InventoryPlace.Items, 23); this.PrintInventory(); } } @@ -1017,7 +1018,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 24); + this.SelectItem(InventoryPlace.Items, 24); this.PrintInventory(); } } @@ -1026,7 +1027,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 25); + this.SelectItem(InventoryPlace.Items, 25); this.PrintInventory(); } } @@ -1035,7 +1036,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 26); + this.SelectItem(InventoryPlace.Items, 26); this.PrintInventory(); } } @@ -1044,7 +1045,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 27); + this.SelectItem(InventoryPlace.Items, 27); this.PrintInventory(); } } @@ -1053,7 +1054,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 28); + this.SelectItem(InventoryPlace.Items, 28); this.PrintInventory(); } } @@ -1062,7 +1063,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 29); + this.SelectItem(InventoryPlace.Items, 29); this.PrintInventory(); } } @@ -1071,7 +1072,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 30); + this.SelectItem(InventoryPlace.Items, 30); this.PrintInventory(); } } @@ -1080,7 +1081,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 31); + this.SelectItem(InventoryPlace.Items, 31); this.PrintInventory(); } } @@ -1089,7 +1090,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 32); + this.SelectItem(InventoryPlace.Items, 32); this.PrintInventory(); } } @@ -1098,7 +1099,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 33); + this.SelectItem(InventoryPlace.Items, 33); this.PrintInventory(); } } @@ -1107,7 +1108,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 34); + this.SelectItem(InventoryPlace.Items, 34); this.PrintInventory(); } } @@ -1116,7 +1117,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 35); + this.SelectItem(InventoryPlace.Items, 35); this.PrintInventory(); } } @@ -1125,7 +1126,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 36); + this.SelectItem(InventoryPlace.Items, 36); this.PrintInventory(); } } @@ -1134,7 +1135,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 37); + this.SelectItem(InventoryPlace.Items, 37); this.PrintInventory(); } } @@ -1143,7 +1144,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 38); + this.SelectItem(InventoryPlace.Items, 38); this.PrintInventory(); } } @@ -1152,7 +1153,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 39); + this.SelectItem(InventoryPlace.Items, 39); this.PrintInventory(); } } @@ -1161,7 +1162,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 40); + this.SelectItem(InventoryPlace.Items, 40); this.PrintInventory(); } } @@ -1170,7 +1171,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 41); + this.SelectItem(InventoryPlace.Items, 41); this.PrintInventory(); } } @@ -1179,7 +1180,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 42); + this.SelectItem(InventoryPlace.Items, 42); this.PrintInventory(); } } @@ -1188,7 +1189,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 43); + this.SelectItem(InventoryPlace.Items, 43); this.PrintInventory(); } } @@ -1197,7 +1198,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 44); + this.SelectItem(InventoryPlace.Items, 44); this.PrintInventory(); } } @@ -1206,7 +1207,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 45); + this.SelectItem(InventoryPlace.Items, 45); this.PrintInventory(); } } @@ -1215,7 +1216,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 46); + this.SelectItem(InventoryPlace.Items, 46); this.PrintInventory(); } } @@ -1224,7 +1225,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 47); + this.SelectItem(InventoryPlace.Items, 47); this.PrintInventory(); } } @@ -1233,7 +1234,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 48); + this.SelectItem(InventoryPlace.Items, 48); this.PrintInventory(); } } @@ -1242,7 +1243,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 49); + this.SelectItem(InventoryPlace.Items, 49); this.PrintInventory(); } } @@ -1251,7 +1252,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 50); + this.SelectItem(InventoryPlace.Items, 50); this.PrintInventory(); } } @@ -1260,7 +1261,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 51); + this.SelectItem(InventoryPlace.Items, 51); this.PrintInventory(); } } @@ -1269,7 +1270,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 52); + this.SelectItem(InventoryPlace.Items, 52); this.PrintInventory(); } } @@ -1278,7 +1279,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 53); + this.SelectItem(InventoryPlace.Items, 53); this.PrintInventory(); } } @@ -1287,7 +1288,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 54); + this.SelectItem(InventoryPlace.Items, 54); this.PrintInventory(); } } @@ -1296,7 +1297,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 55); + this.SelectItem(InventoryPlace.Items, 55); this.PrintInventory(); } } @@ -1305,7 +1306,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 56); + this.SelectItem(InventoryPlace.Items, 56); this.PrintInventory(); } } @@ -1314,7 +1315,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 57); + this.SelectItem(InventoryPlace.Items, 57); this.PrintInventory(); } } @@ -1323,7 +1324,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 58); + this.SelectItem(InventoryPlace.Items, 58); this.PrintInventory(); } } @@ -1332,7 +1333,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 59); + this.SelectItem(InventoryPlace.Items, 59); this.PrintInventory(); } } @@ -1341,7 +1342,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 60); + this.SelectItem(InventoryPlace.Items, 60); this.PrintInventory(); } } @@ -1350,7 +1351,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 61); + this.SelectItem(InventoryPlace.Items, 61); this.PrintInventory(); } } @@ -1359,7 +1360,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 62); + this.SelectItem(InventoryPlace.Items, 62); this.PrintInventory(); } } @@ -1368,7 +1369,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 63); + this.SelectItem(InventoryPlace.Items, 63); this.PrintInventory(); } } @@ -1377,7 +1378,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 64); + this.SelectItem(InventoryPlace.Items, 64); this.PrintInventory(); } } @@ -1386,7 +1387,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 65); + this.SelectItem(InventoryPlace.Items, 65); this.PrintInventory(); } } @@ -1395,7 +1396,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 66); + this.SelectItem(InventoryPlace.Items, 66); this.PrintInventory(); } } @@ -1404,7 +1405,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 67); + this.SelectItem(InventoryPlace.Items, 67); this.PrintInventory(); } } @@ -1413,7 +1414,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 68); + this.SelectItem(InventoryPlace.Items, 68); this.PrintInventory(); } } @@ -1422,7 +1423,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 69); + this.SelectItem(InventoryPlace.Items, 69); this.PrintInventory(); } } @@ -1431,7 +1432,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 70); + this.SelectItem(InventoryPlace.Items, 70); this.PrintInventory(); } } @@ -1440,7 +1441,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 71); + this.SelectItem(InventoryPlace.Items, 71); this.PrintInventory(); } } @@ -1449,7 +1450,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 72); + this.SelectItem(InventoryPlace.Items, 72); this.PrintInventory(); } } @@ -1458,7 +1459,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 73); + this.SelectItem(InventoryPlace.Items, 73); this.PrintInventory(); } } @@ -1467,7 +1468,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 74); + this.SelectItem(InventoryPlace.Items, 74); this.PrintInventory(); } } @@ -1476,7 +1477,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 75); + this.SelectItem(InventoryPlace.Items, 75); this.PrintInventory(); } } @@ -1485,7 +1486,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 76); + this.SelectItem(InventoryPlace.Items, 76); this.PrintInventory(); } } @@ -1494,7 +1495,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 77); + this.SelectItem(InventoryPlace.Items, 77); this.PrintInventory(); } } @@ -1503,7 +1504,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 78); + this.SelectItem(InventoryPlace.Items, 78); this.PrintInventory(); } } @@ -1512,7 +1513,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 79); + this.SelectItem(InventoryPlace.Items, 79); this.PrintInventory(); } } @@ -1521,7 +1522,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 80); + this.SelectItem(InventoryPlace.Items, 80); this.PrintInventory(); } } @@ -1534,7 +1535,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 0); + this.SelectItem(InventoryPlace.Accessories, 0); this.PrintInventory(); } } @@ -1543,7 +1544,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 1); + this.SelectItem(InventoryPlace.Accessories, 1); this.PrintInventory(); } } @@ -1552,7 +1553,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 2); + this.SelectItem(InventoryPlace.Accessories, 2); this.PrintInventory(); } } @@ -1561,7 +1562,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 3); + this.SelectItem(InventoryPlace.Accessories, 3); this.PrintInventory(); } } @@ -1570,7 +1571,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 4); + this.SelectItem(InventoryPlace.Accessories, 4); this.PrintInventory(); } } @@ -1579,7 +1580,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 5); + this.SelectItem(InventoryPlace.Accessories, 5); this.PrintInventory(); } } @@ -1588,7 +1589,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 6); + this.SelectItem(InventoryPlace.Accessories, 6); this.PrintInventory(); } } @@ -1597,7 +1598,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 7); + this.SelectItem(InventoryPlace.Accessories, 7); this.PrintInventory(); } } @@ -1606,7 +1607,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 8); + this.SelectItem(InventoryPlace.Accessories, 8); this.PrintInventory(); } } @@ -1615,7 +1616,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 9); + this.SelectItem(InventoryPlace.Accessories, 9); this.PrintInventory(); } } @@ -1624,7 +1625,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 10); + this.SelectItem(InventoryPlace.Accessories, 10); this.PrintInventory(); } } @@ -1633,7 +1634,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 11); + this.SelectItem(InventoryPlace.Accessories, 11); this.PrintInventory(); } } @@ -1642,7 +1643,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 12); + this.SelectItem(InventoryPlace.Accessories, 12); this.PrintInventory(); } } @@ -1651,7 +1652,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 13); + this.SelectItem(InventoryPlace.Accessories, 13); this.PrintInventory(); } } @@ -1660,7 +1661,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 14); + this.SelectItem(InventoryPlace.Accessories, 14); this.PrintInventory(); } } @@ -1669,7 +1670,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 15); + this.SelectItem(InventoryPlace.Accessories, 15); this.PrintInventory(); } } @@ -1678,7 +1679,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 16); + this.SelectItem(InventoryPlace.Accessories, 16); this.PrintInventory(); } } @@ -1687,7 +1688,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 17); + this.SelectItem(InventoryPlace.Accessories, 17); this.PrintInventory(); } } @@ -1700,7 +1701,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 0); + this.SelectItem(InventoryPlace.Gear, 0); this.PrintInventory(); } } @@ -1709,7 +1710,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 1); + this.SelectItem(InventoryPlace.Gear, 1); this.PrintInventory(); } } @@ -1718,7 +1719,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 2); + this.SelectItem(InventoryPlace.Gear, 2); this.PrintInventory(); } } @@ -1727,7 +1728,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 3); + this.SelectItem(InventoryPlace.Gear, 3); this.PrintInventory(); } } @@ -1736,7 +1737,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 4); + this.SelectItem(InventoryPlace.Gear, 4); this.PrintInventory(); } } @@ -1745,7 +1746,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 5); + this.SelectItem(InventoryPlace.Gear, 5); this.PrintInventory(); } } @@ -1754,7 +1755,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 6); + this.SelectItem(InventoryPlace.Gear, 6); this.PrintInventory(); } } @@ -1763,7 +1764,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 7); + this.SelectItem(InventoryPlace.Gear, 7); this.PrintInventory(); } } @@ -1772,7 +1773,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 8); + this.SelectItem(InventoryPlace.Gear, 8); this.PrintInventory(); } } diff --git a/Mundus/Views/Windows/GameWindows/Large/LargeLogic.cs b/Mundus/Views/Windows/GameWindows/Large/LargeLogic.cs index a4aef01..99806c4 100644 --- a/Mundus/Views/Windows/GameWindows/Large/LargeLogic.cs +++ b/Mundus/Views/Windows/GameWindows/Large/LargeLogic.cs @@ -1,433 +1,370 @@ -namespace Mundus.Views.Windows { +namespace Mundus.Views.Windows.GameWindows.Large +{ using Gtk; - using Mundus.Service; using Mundus.Service.Tiles.Items; - using Mundus.Service.Tiles.Mobs; - using Mundus.Service.Tiles.Mobs.Controllers; + using static Mundus.Service.Tiles.Mobs.Inventory; - public partial class LargeGameWindow : Gtk.Window, IGameWindow - { - /// - /// TODO: Make it an enum - /// Saves the place from which the player has selected an item - /// Must be either: "hotbar", "items", "accessories" or "gear" - /// - private string selPlace = null; - - /// - /// Saves the index of the selected item - /// - private int selIndex = -1; - - public LargeGameWindow() : base(Gtk.WindowType.Toplevel) + public partial class LargeGameWindow : Gtk.Window, IGameWindow + { + + public LargeGameWindow() : base(Gtk.WindowType.Toplevel) { this.Build(); - } - - /// - /// Gets value for the height and width of the game screen, map screens and inventory screen - /// and the width of stats, hotbar, accessories, gear and items on the ground menus + } + + /// + /// Gets value for the height and width of the game screen, map screens and inventory screen + /// and the width of stats, hotbar, accessories, gear and items on the ground menus /// public int Size { get; private set; } - public void OnDeleteEvent(object o, DeleteEventArgs args) + public void OnDeleteEvent(object o, DeleteEventArgs args) { Application.Quit(); } - public void SetDefaults() - { - this.Size = 9; - this.SetMapMenuVisibility(false); - this.SetInvMenuVisibility(false); - } - - private void SelectItem(string place, int index) - { - if (this.HasSelection()) - { - this.ResetSelection(); - SwitchItems.ReplaceItems(place, index); - } - else - { - this.selPlace = place; - this.selIndex = index; - SwitchItems.SetOrigin(place, index); - } - - this.PrintMainMenu(); - this.PrintInventory(); - } - - private void React(int button) - { - int buttonYPos = (button - 1) / this.Size; - int buttonXPos = (button - (buttonYPos * this.Size)) - 1; - - int mapXPos = Calculate.CalculateXFromButton(buttonXPos, this.Size); - int mapYPos = Calculate.CalculateYFromButton(buttonYPos, this.Size); - - if (!this.HasSelection()) - { - MobMovement.MovePlayer(mapYPos, mapXPos, this.Size); - MobMovement.MoveRandomlyAllMobs(); - } - else - { - if (Inventory.GetPlayerItem(this.selPlace, this.selIndex) != null) - { - if (MobFighting.ExistsFightTargetForPlayer(mapYPos, mapXPos)) - { - MobFighting.PlayerTryFight(this.selPlace, this.selIndex, mapYPos, mapXPos); - } - else - { - MobTerraforming.PlayerTerraformAt(mapYPos, mapXPos, this.selPlace, this.selIndex); - } - } - - this.ResetSelection(); - } - - this.PrintWorldScreen(); - this.PrintMainMenu(); - - if (this.MapMenuIsVisible()) - { - this.PrintMap(); - } - else if (this.InvMenuIsVisible()) - { - this.PrintInventory(); - } - } - - private void ResetSelection() - { - this.selPlace = null; - this.selIndex = -1; - } - - private bool HasSelection() - { - return this.selPlace != null; - } - - private bool InvMenuIsVisible() - { - return btnI1.Visible; - } - - private bool MapMenuIsVisible() - { - return imgG1.Visible; + public void SetDefaults() + { + this.Size = 9; + this.SetMapMenuVisibility(false); + this.SetInvMenuVisibility(false); + } + + private void SelectItem(InventoryPlace place, int index) { + if (ItemController.HasSelectedItem()) { + ItemController.SwitchItems(place, index); + } + else { + ItemController.SelectItem(place, index); + } + + this.PrintMainMenu(); + this.PrintInventory(); + } + + public void PrintMapOrInv() { + if (this.MapMenuIsVisible()) { + this.PrintMap(); + } + else if (this.InvMenuIsVisible()) { + this.PrintInventory(); + } + } + + private bool InvMenuIsVisible() + { + return btnI1.Visible; + } + + private bool MapMenuIsVisible() + { + return imgG1.Visible; } - /// - /// The map menu is the left menu with the grond layer, structure layer, coordinates, superlayer and "ground above player" items - /// - private void SetMapMenuVisibility(bool isVisible) - { - lblGroundLayer.Visible = isVisible; - imgG1.Visible = isVisible; - imgG2.Visible = isVisible; - imgG3.Visible = isVisible; - imgG4.Visible = isVisible; - imgG5.Visible = isVisible; - imgG6.Visible = isVisible; - imgG7.Visible = isVisible; - imgG8.Visible = isVisible; - imgG9.Visible = isVisible; - imgG10.Visible = isVisible; - imgG11.Visible = isVisible; - imgG12.Visible = isVisible; - imgG13.Visible = isVisible; - imgG14.Visible = isVisible; - imgG15.Visible = isVisible; - imgG16.Visible = isVisible; - imgG17.Visible = isVisible; - imgG18.Visible = isVisible; - imgG19.Visible = isVisible; - imgG20.Visible = isVisible; - imgG21.Visible = isVisible; - imgG22.Visible = isVisible; - imgG23.Visible = isVisible; - imgG24.Visible = isVisible; - imgG25.Visible = isVisible; - imgG26.Visible = isVisible; - imgG27.Visible = isVisible; - imgG28.Visible = isVisible; - imgG29.Visible = isVisible; - imgG30.Visible = isVisible; - imgG31.Visible = isVisible; - imgG32.Visible = isVisible; - imgG33.Visible = isVisible; - imgG34.Visible = isVisible; - imgG35.Visible = isVisible; - imgG36.Visible = isVisible; - imgG37.Visible = isVisible; - imgG38.Visible = isVisible; - imgG39.Visible = isVisible; - imgG40.Visible = isVisible; - imgG41.Visible = isVisible; - imgG42.Visible = isVisible; - imgG43.Visible = isVisible; - imgG44.Visible = isVisible; - imgG45.Visible = isVisible; - imgG46.Visible = isVisible; - imgG47.Visible = isVisible; - imgG48.Visible = isVisible; - imgG49.Visible = isVisible; - imgG50.Visible = isVisible; - imgG51.Visible = isVisible; - imgG52.Visible = isVisible; - imgG53.Visible = isVisible; - imgG54.Visible = isVisible; - imgG55.Visible = isVisible; - imgG56.Visible = isVisible; - imgG57.Visible = isVisible; - imgG58.Visible = isVisible; - imgG59.Visible = isVisible; - imgG60.Visible = isVisible; - imgG61.Visible = isVisible; - imgG62.Visible = isVisible; - imgG63.Visible = isVisible; - imgG64.Visible = isVisible; - imgG65.Visible = isVisible; - imgG66.Visible = isVisible; - imgG67.Visible = isVisible; - imgG68.Visible = isVisible; - imgG69.Visible = isVisible; - imgG70.Visible = isVisible; - imgG71.Visible = isVisible; - imgG72.Visible = isVisible; - imgG73.Visible = isVisible; - imgG74.Visible = isVisible; - imgG75.Visible = isVisible; - imgG76.Visible = isVisible; - imgG77.Visible = isVisible; - imgG78.Visible = isVisible; - imgG79.Visible = isVisible; - imgG80.Visible = isVisible; - imgG81.Visible = isVisible; - - lblSuperLayer.Visible = isVisible; - lblCoord1.Visible = isVisible; - lblCoord2.Visible = isVisible; - - lblItemLayer.Visible = isVisible; - imgI1.Visible = isVisible; - imgI2.Visible = isVisible; - imgI3.Visible = isVisible; - imgI4.Visible = isVisible; - imgI5.Visible = isVisible; - imgI6.Visible = isVisible; - imgI7.Visible = isVisible; - imgI8.Visible = isVisible; - imgI9.Visible = isVisible; - imgI10.Visible = isVisible; - imgI11.Visible = isVisible; - imgI12.Visible = isVisible; - imgI13.Visible = isVisible; - imgI14.Visible = isVisible; - imgI15.Visible = isVisible; - imgI16.Visible = isVisible; - imgI17.Visible = isVisible; - imgI18.Visible = isVisible; - imgI19.Visible = isVisible; - imgI20.Visible = isVisible; - imgI21.Visible = isVisible; - imgI22.Visible = isVisible; - imgI23.Visible = isVisible; - imgI24.Visible = isVisible; - imgI25.Visible = isVisible; - imgI26.Visible = isVisible; - imgI27.Visible = isVisible; - imgI28.Visible = isVisible; - imgI29.Visible = isVisible; - imgI30.Visible = isVisible; - imgI31.Visible = isVisible; - imgI32.Visible = isVisible; - imgI33.Visible = isVisible; - imgI34.Visible = isVisible; - imgI35.Visible = isVisible; - imgI36.Visible = isVisible; - imgI37.Visible = isVisible; - imgI38.Visible = isVisible; - imgI39.Visible = isVisible; - imgI40.Visible = isVisible; - imgI41.Visible = isVisible; - imgI42.Visible = isVisible; - imgI43.Visible = isVisible; - imgI44.Visible = isVisible; - imgI45.Visible = isVisible; - imgI46.Visible = isVisible; - imgI47.Visible = isVisible; - imgI48.Visible = isVisible; - imgI49.Visible = isVisible; - imgI50.Visible = isVisible; - imgI51.Visible = isVisible; - imgI52.Visible = isVisible; - imgI53.Visible = isVisible; - imgI54.Visible = isVisible; - imgI55.Visible = isVisible; - imgI56.Visible = isVisible; - imgI57.Visible = isVisible; - imgI58.Visible = isVisible; - imgI59.Visible = isVisible; - imgI60.Visible = isVisible; - imgI61.Visible = isVisible; - imgI62.Visible = isVisible; - imgI63.Visible = isVisible; - imgI64.Visible = isVisible; - imgI65.Visible = isVisible; - imgI66.Visible = isVisible; - imgI67.Visible = isVisible; - imgI68.Visible = isVisible; - imgI69.Visible = isVisible; - imgI70.Visible = isVisible; - imgI71.Visible = isVisible; - imgI72.Visible = isVisible; - imgI73.Visible = isVisible; - imgI74.Visible = isVisible; - imgI75.Visible = isVisible; - imgI76.Visible = isVisible; - imgI77.Visible = isVisible; - imgI78.Visible = isVisible; - imgI79.Visible = isVisible; - imgI80.Visible = isVisible; - imgI81.Visible = isVisible; - - lblHoleMsg.Visible = isVisible; - lblHoleOnTop.Visible = isVisible; - - lblBlank6.Visible = isVisible; - } - - /// - /// The inventory menu is the right menu with the items, accessories, gear incentories, item info and crafting button - /// - private void SetInvMenuVisibility(bool isVisible) - { - btnI1.Visible = isVisible; - btnI2.Visible = isVisible; - btnI3.Visible = isVisible; - btnI4.Visible = isVisible; - btnI5.Visible = isVisible; - btnI6.Visible = isVisible; - btnI7.Visible = isVisible; - btnI8.Visible = isVisible; - btnI9.Visible = isVisible; - btnI10.Visible = isVisible; - btnI11.Visible = isVisible; - btnI12.Visible = isVisible; - btnI13.Visible = isVisible; - btnI14.Visible = isVisible; - btnI15.Visible = isVisible; - btnI16.Visible = isVisible; - btnI17.Visible = isVisible; - btnI18.Visible = isVisible; - btnI19.Visible = isVisible; - btnI20.Visible = isVisible; - btnI21.Visible = isVisible; - btnI22.Visible = isVisible; - btnI23.Visible = isVisible; - btnI24.Visible = isVisible; - btnI25.Visible = isVisible; - btnI26.Visible = isVisible; - btnI27.Visible = isVisible; - btnI28.Visible = isVisible; - btnI29.Visible = isVisible; - btnI30.Visible = isVisible; - btnI31.Visible = isVisible; - btnI32.Visible = isVisible; - btnI33.Visible = isVisible; - btnI34.Visible = isVisible; - btnI35.Visible = isVisible; - btnI36.Visible = isVisible; - btnI37.Visible = isVisible; - btnI38.Visible = isVisible; - btnI39.Visible = isVisible; - btnI40.Visible = isVisible; - btnI41.Visible = isVisible; - btnI42.Visible = isVisible; - btnI43.Visible = isVisible; - btnI44.Visible = isVisible; - btnI45.Visible = isVisible; - btnI46.Visible = isVisible; - btnI47.Visible = isVisible; - btnI48.Visible = isVisible; - btnI49.Visible = isVisible; - btnI50.Visible = isVisible; - btnI51.Visible = isVisible; - btnI52.Visible = isVisible; - btnI53.Visible = isVisible; - btnI54.Visible = isVisible; - btnI55.Visible = isVisible; - btnI56.Visible = isVisible; - btnI57.Visible = isVisible; - btnI58.Visible = isVisible; - btnI59.Visible = isVisible; - btnI60.Visible = isVisible; - btnI61.Visible = isVisible; - btnI62.Visible = isVisible; - btnI63.Visible = isVisible; - btnI64.Visible = isVisible; - btnI65.Visible = isVisible; - btnI66.Visible = isVisible; - btnI67.Visible = isVisible; - btnI68.Visible = isVisible; - btnI69.Visible = isVisible; - btnI70.Visible = isVisible; - btnI71.Visible = isVisible; - btnI72.Visible = isVisible; - btnI73.Visible = isVisible; - btnI74.Visible = isVisible; - btnI75.Visible = isVisible; - btnI76.Visible = isVisible; - btnI77.Visible = isVisible; - btnI78.Visible = isVisible; - btnI79.Visible = isVisible; - btnI80.Visible = isVisible; - btnI81.Visible = isVisible; - btnCrafting.Visible = isVisible; - - lblAccessories.Visible = isVisible; - btnA1.Visible = isVisible; - btnA2.Visible = isVisible; - btnA3.Visible = isVisible; - btnA4.Visible = isVisible; - btnA5.Visible = isVisible; - btnA6.Visible = isVisible; - btnA7.Visible = isVisible; - btnA8.Visible = isVisible; - btnA9.Visible = isVisible; - btnA10.Visible = isVisible; - btnA11.Visible = isVisible; - btnA12.Visible = isVisible; - btnA13.Visible = isVisible; - btnA14.Visible = isVisible; - btnA15.Visible = isVisible; - btnA16.Visible = isVisible; - btnA17.Visible = isVisible; - btnA18.Visible = isVisible; - - lblGear.Visible = isVisible; - btnG1.Visible = isVisible; - btnG2.Visible = isVisible; - btnG3.Visible = isVisible; - btnG4.Visible = isVisible; - btnG5.Visible = isVisible; - btnG6.Visible = isVisible; - btnG7.Visible = isVisible; - btnG8.Visible = isVisible; - btnG9.Visible = isVisible; - - imgInfo.Visible = isVisible; - lblInfo.Visible = isVisible; - - lblBlank6.Visible = isVisible; + /// + /// The map menu is the left menu with the grond layer, structure layer, coordinates, superlayer and "ground above player" items + /// + private void SetMapMenuVisibility(bool isVisible) + { + lblGroundLayer.Visible = isVisible; + imgG1.Visible = isVisible; + imgG2.Visible = isVisible; + imgG3.Visible = isVisible; + imgG4.Visible = isVisible; + imgG5.Visible = isVisible; + imgG6.Visible = isVisible; + imgG7.Visible = isVisible; + imgG8.Visible = isVisible; + imgG9.Visible = isVisible; + imgG10.Visible = isVisible; + imgG11.Visible = isVisible; + imgG12.Visible = isVisible; + imgG13.Visible = isVisible; + imgG14.Visible = isVisible; + imgG15.Visible = isVisible; + imgG16.Visible = isVisible; + imgG17.Visible = isVisible; + imgG18.Visible = isVisible; + imgG19.Visible = isVisible; + imgG20.Visible = isVisible; + imgG21.Visible = isVisible; + imgG22.Visible = isVisible; + imgG23.Visible = isVisible; + imgG24.Visible = isVisible; + imgG25.Visible = isVisible; + imgG26.Visible = isVisible; + imgG27.Visible = isVisible; + imgG28.Visible = isVisible; + imgG29.Visible = isVisible; + imgG30.Visible = isVisible; + imgG31.Visible = isVisible; + imgG32.Visible = isVisible; + imgG33.Visible = isVisible; + imgG34.Visible = isVisible; + imgG35.Visible = isVisible; + imgG36.Visible = isVisible; + imgG37.Visible = isVisible; + imgG38.Visible = isVisible; + imgG39.Visible = isVisible; + imgG40.Visible = isVisible; + imgG41.Visible = isVisible; + imgG42.Visible = isVisible; + imgG43.Visible = isVisible; + imgG44.Visible = isVisible; + imgG45.Visible = isVisible; + imgG46.Visible = isVisible; + imgG47.Visible = isVisible; + imgG48.Visible = isVisible; + imgG49.Visible = isVisible; + imgG50.Visible = isVisible; + imgG51.Visible = isVisible; + imgG52.Visible = isVisible; + imgG53.Visible = isVisible; + imgG54.Visible = isVisible; + imgG55.Visible = isVisible; + imgG56.Visible = isVisible; + imgG57.Visible = isVisible; + imgG58.Visible = isVisible; + imgG59.Visible = isVisible; + imgG60.Visible = isVisible; + imgG61.Visible = isVisible; + imgG62.Visible = isVisible; + imgG63.Visible = isVisible; + imgG64.Visible = isVisible; + imgG65.Visible = isVisible; + imgG66.Visible = isVisible; + imgG67.Visible = isVisible; + imgG68.Visible = isVisible; + imgG69.Visible = isVisible; + imgG70.Visible = isVisible; + imgG71.Visible = isVisible; + imgG72.Visible = isVisible; + imgG73.Visible = isVisible; + imgG74.Visible = isVisible; + imgG75.Visible = isVisible; + imgG76.Visible = isVisible; + imgG77.Visible = isVisible; + imgG78.Visible = isVisible; + imgG79.Visible = isVisible; + imgG80.Visible = isVisible; + imgG81.Visible = isVisible; + + lblSuperLayer.Visible = isVisible; + lblCoord1.Visible = isVisible; + lblCoord2.Visible = isVisible; + + lblItemLayer.Visible = isVisible; + imgI1.Visible = isVisible; + imgI2.Visible = isVisible; + imgI3.Visible = isVisible; + imgI4.Visible = isVisible; + imgI5.Visible = isVisible; + imgI6.Visible = isVisible; + imgI7.Visible = isVisible; + imgI8.Visible = isVisible; + imgI9.Visible = isVisible; + imgI10.Visible = isVisible; + imgI11.Visible = isVisible; + imgI12.Visible = isVisible; + imgI13.Visible = isVisible; + imgI14.Visible = isVisible; + imgI15.Visible = isVisible; + imgI16.Visible = isVisible; + imgI17.Visible = isVisible; + imgI18.Visible = isVisible; + imgI19.Visible = isVisible; + imgI20.Visible = isVisible; + imgI21.Visible = isVisible; + imgI22.Visible = isVisible; + imgI23.Visible = isVisible; + imgI24.Visible = isVisible; + imgI25.Visible = isVisible; + imgI26.Visible = isVisible; + imgI27.Visible = isVisible; + imgI28.Visible = isVisible; + imgI29.Visible = isVisible; + imgI30.Visible = isVisible; + imgI31.Visible = isVisible; + imgI32.Visible = isVisible; + imgI33.Visible = isVisible; + imgI34.Visible = isVisible; + imgI35.Visible = isVisible; + imgI36.Visible = isVisible; + imgI37.Visible = isVisible; + imgI38.Visible = isVisible; + imgI39.Visible = isVisible; + imgI40.Visible = isVisible; + imgI41.Visible = isVisible; + imgI42.Visible = isVisible; + imgI43.Visible = isVisible; + imgI44.Visible = isVisible; + imgI45.Visible = isVisible; + imgI46.Visible = isVisible; + imgI47.Visible = isVisible; + imgI48.Visible = isVisible; + imgI49.Visible = isVisible; + imgI50.Visible = isVisible; + imgI51.Visible = isVisible; + imgI52.Visible = isVisible; + imgI53.Visible = isVisible; + imgI54.Visible = isVisible; + imgI55.Visible = isVisible; + imgI56.Visible = isVisible; + imgI57.Visible = isVisible; + imgI58.Visible = isVisible; + imgI59.Visible = isVisible; + imgI60.Visible = isVisible; + imgI61.Visible = isVisible; + imgI62.Visible = isVisible; + imgI63.Visible = isVisible; + imgI64.Visible = isVisible; + imgI65.Visible = isVisible; + imgI66.Visible = isVisible; + imgI67.Visible = isVisible; + imgI68.Visible = isVisible; + imgI69.Visible = isVisible; + imgI70.Visible = isVisible; + imgI71.Visible = isVisible; + imgI72.Visible = isVisible; + imgI73.Visible = isVisible; + imgI74.Visible = isVisible; + imgI75.Visible = isVisible; + imgI76.Visible = isVisible; + imgI77.Visible = isVisible; + imgI78.Visible = isVisible; + imgI79.Visible = isVisible; + imgI80.Visible = isVisible; + imgI81.Visible = isVisible; + + lblHoleMsg.Visible = isVisible; + lblHoleOnTop.Visible = isVisible; + + lblBlank6.Visible = isVisible; + } + + /// + /// The inventory menu is the right menu with the items, accessories, gear incentories, item info and crafting button + /// + private void SetInvMenuVisibility(bool isVisible) + { + btnI1.Visible = isVisible; + btnI2.Visible = isVisible; + btnI3.Visible = isVisible; + btnI4.Visible = isVisible; + btnI5.Visible = isVisible; + btnI6.Visible = isVisible; + btnI7.Visible = isVisible; + btnI8.Visible = isVisible; + btnI9.Visible = isVisible; + btnI10.Visible = isVisible; + btnI11.Visible = isVisible; + btnI12.Visible = isVisible; + btnI13.Visible = isVisible; + btnI14.Visible = isVisible; + btnI15.Visible = isVisible; + btnI16.Visible = isVisible; + btnI17.Visible = isVisible; + btnI18.Visible = isVisible; + btnI19.Visible = isVisible; + btnI20.Visible = isVisible; + btnI21.Visible = isVisible; + btnI22.Visible = isVisible; + btnI23.Visible = isVisible; + btnI24.Visible = isVisible; + btnI25.Visible = isVisible; + btnI26.Visible = isVisible; + btnI27.Visible = isVisible; + btnI28.Visible = isVisible; + btnI29.Visible = isVisible; + btnI30.Visible = isVisible; + btnI31.Visible = isVisible; + btnI32.Visible = isVisible; + btnI33.Visible = isVisible; + btnI34.Visible = isVisible; + btnI35.Visible = isVisible; + btnI36.Visible = isVisible; + btnI37.Visible = isVisible; + btnI38.Visible = isVisible; + btnI39.Visible = isVisible; + btnI40.Visible = isVisible; + btnI41.Visible = isVisible; + btnI42.Visible = isVisible; + btnI43.Visible = isVisible; + btnI44.Visible = isVisible; + btnI45.Visible = isVisible; + btnI46.Visible = isVisible; + btnI47.Visible = isVisible; + btnI48.Visible = isVisible; + btnI49.Visible = isVisible; + btnI50.Visible = isVisible; + btnI51.Visible = isVisible; + btnI52.Visible = isVisible; + btnI53.Visible = isVisible; + btnI54.Visible = isVisible; + btnI55.Visible = isVisible; + btnI56.Visible = isVisible; + btnI57.Visible = isVisible; + btnI58.Visible = isVisible; + btnI59.Visible = isVisible; + btnI60.Visible = isVisible; + btnI61.Visible = isVisible; + btnI62.Visible = isVisible; + btnI63.Visible = isVisible; + btnI64.Visible = isVisible; + btnI65.Visible = isVisible; + btnI66.Visible = isVisible; + btnI67.Visible = isVisible; + btnI68.Visible = isVisible; + btnI69.Visible = isVisible; + btnI70.Visible = isVisible; + btnI71.Visible = isVisible; + btnI72.Visible = isVisible; + btnI73.Visible = isVisible; + btnI74.Visible = isVisible; + btnI75.Visible = isVisible; + btnI76.Visible = isVisible; + btnI77.Visible = isVisible; + btnI78.Visible = isVisible; + btnI79.Visible = isVisible; + btnI80.Visible = isVisible; + btnI81.Visible = isVisible; + btnCrafting.Visible = isVisible; + + lblAccessories.Visible = isVisible; + btnA1.Visible = isVisible; + btnA2.Visible = isVisible; + btnA3.Visible = isVisible; + btnA4.Visible = isVisible; + btnA5.Visible = isVisible; + btnA6.Visible = isVisible; + btnA7.Visible = isVisible; + btnA8.Visible = isVisible; + btnA9.Visible = isVisible; + btnA10.Visible = isVisible; + btnA11.Visible = isVisible; + btnA12.Visible = isVisible; + btnA13.Visible = isVisible; + btnA14.Visible = isVisible; + btnA15.Visible = isVisible; + btnA16.Visible = isVisible; + btnA17.Visible = isVisible; + btnA18.Visible = isVisible; + + lblGear.Visible = isVisible; + btnG1.Visible = isVisible; + btnG2.Visible = isVisible; + btnG3.Visible = isVisible; + btnG4.Visible = isVisible; + btnG5.Visible = isVisible; + btnG6.Visible = isVisible; + btnG7.Visible = isVisible; + btnG8.Visible = isVisible; + btnG9.Visible = isVisible; + + imgInfo.Visible = isVisible; + lblInfo.Visible = isVisible; + + lblBlank6.Visible = isVisible; } } } diff --git a/Mundus/Views/Windows/GameWindows/Large/LargePrinting.cs b/Mundus/Views/Windows/GameWindows/Large/LargePrinting.cs index fce9ad6..2111a17 100644 --- a/Mundus/Views/Windows/GameWindows/Large/LargePrinting.cs +++ b/Mundus/Views/Windows/GameWindows/Large/LargePrinting.cs @@ -1,10 +1,11 @@ -namespace Mundus.Views.Windows +namespace Mundus.Views.Windows.GameWindows.Large { using Gtk; using Mundus.Service; using Mundus.Service.SuperLayers; using Mundus.Service.Tiles.Items; using Mundus.Service.Tiles.Mobs.Controllers; + using Mundus.Service.Windows; public partial class LargeGameWindow { diff --git a/Mundus/Views/Windows/GameWindows/Medium/MediumButtonClickedEvents.cs b/Mundus/Views/Windows/GameWindows/Medium/MediumButtonClickedEvents.cs index 8bc6d9a..f3df190 100644 --- a/Mundus/Views/Windows/GameWindows/Medium/MediumButtonClickedEvents.cs +++ b/Mundus/Views/Windows/GameWindows/Medium/MediumButtonClickedEvents.cs @@ -1,7 +1,8 @@ -namespace Mundus.Views.Windows +namespace Mundus.Views.Windows.GameWindows.Medium { using System; - using Mundus.Service; + using Mundus.Service.Windows; + using static Mundus.Service.Tiles.Mobs.Inventory; public partial class MediumGameWindow { @@ -65,7 +66,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(1); + WindowController.React(1); } } @@ -73,7 +74,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(2); + WindowController.React(2); } } @@ -81,7 +82,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(3); + WindowController.React(3); } } @@ -89,7 +90,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(4); + WindowController.React(4); } } @@ -97,7 +98,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(5); + WindowController.React(5); } } @@ -105,7 +106,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(6); + WindowController.React(6); } } @@ -113,7 +114,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(7); + WindowController.React(7); } } @@ -121,7 +122,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(8); + WindowController.React(8); } } @@ -129,7 +130,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(9); + WindowController.React(9); } } @@ -137,7 +138,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(10); + WindowController.React(10); } } @@ -145,7 +146,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(11); + WindowController.React(11); } } @@ -153,7 +154,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(12); + WindowController.React(12); } } @@ -161,7 +162,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(13); + WindowController.React(13); } } @@ -169,7 +170,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(14); + WindowController.React(14); } } @@ -177,7 +178,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(15); + WindowController.React(15); } } @@ -185,7 +186,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(16); + WindowController.React(16); } } @@ -193,7 +194,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(17); + WindowController.React(17); } } @@ -201,7 +202,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(18); + WindowController.React(18); } } @@ -209,7 +210,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(19); + WindowController.React(19); } } @@ -217,7 +218,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(20); + WindowController.React(20); } } @@ -225,7 +226,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(21); + WindowController.React(21); } } @@ -233,7 +234,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(22); + WindowController.React(22); } } @@ -241,7 +242,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(23); + WindowController.React(23); } } @@ -249,7 +250,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(24); + WindowController.React(24); } } @@ -257,7 +258,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(25); + WindowController.React(25); } } @@ -265,7 +266,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(26); + WindowController.React(26); } } @@ -273,7 +274,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(27); + WindowController.React(27); } } @@ -281,7 +282,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(28); + WindowController.React(28); } } @@ -289,7 +290,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(29); + WindowController.React(29); } } @@ -297,7 +298,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(30); + WindowController.React(30); } } @@ -305,7 +306,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(31); + WindowController.React(31); } } @@ -313,7 +314,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(32); + WindowController.React(32); } } @@ -321,7 +322,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(33); + WindowController.React(33); } } @@ -329,7 +330,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(34); + WindowController.React(34); } } @@ -337,7 +338,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(35); + WindowController.React(35); } } @@ -345,7 +346,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(36); + WindowController.React(36); } } @@ -353,7 +354,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(37); + WindowController.React(37); } } @@ -361,7 +362,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(38); + WindowController.React(38); } } @@ -369,7 +370,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(39); + WindowController.React(39); } } @@ -377,7 +378,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(40); + WindowController.React(40); } } @@ -385,7 +386,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(41); + WindowController.React(41); } } @@ -393,7 +394,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(42); + WindowController.React(42); } } @@ -401,7 +402,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(43); + WindowController.React(43); } } @@ -409,7 +410,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(44); + WindowController.React(44); } } @@ -417,7 +418,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(45); + WindowController.React(45); } } @@ -425,7 +426,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(46); + WindowController.React(46); } } @@ -433,7 +434,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(47); + WindowController.React(47); } } @@ -441,7 +442,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(48); + WindowController.React(48); } } @@ -449,7 +450,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(49); + WindowController.React(49); } } @@ -461,7 +462,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 0); + this.SelectItem(InventoryPlace.Hotbar, 0); this.PrintMainMenu(); } } @@ -470,7 +471,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 1); + this.SelectItem(InventoryPlace.Hotbar, 1); this.PrintMainMenu(); } } @@ -479,7 +480,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 2); + this.SelectItem(InventoryPlace.Hotbar, 2); this.PrintMainMenu(); } } @@ -488,7 +489,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 3); + this.SelectItem(InventoryPlace.Hotbar, 3); this.PrintMainMenu(); } } @@ -497,7 +498,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 4); + this.SelectItem(InventoryPlace.Hotbar, 4); this.PrintMainMenu(); } } @@ -506,7 +507,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 5); + this.SelectItem(InventoryPlace.Hotbar, 5); this.PrintMainMenu(); } } @@ -515,7 +516,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 6); + this.SelectItem(InventoryPlace.Hotbar, 6); this.PrintMainMenu(); } } @@ -533,7 +534,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 0); + this.SelectItem(InventoryPlace.Items, 0); this.PrintInventory(); } } @@ -542,7 +543,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 1); + this.SelectItem(InventoryPlace.Items, 1); this.PrintInventory(); } } @@ -551,7 +552,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 2); + this.SelectItem(InventoryPlace.Items, 2); this.PrintInventory(); } } @@ -560,7 +561,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 3); + this.SelectItem(InventoryPlace.Items, 3); this.PrintInventory(); } } @@ -569,7 +570,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 4); + this.SelectItem(InventoryPlace.Items, 4); this.PrintInventory(); } } @@ -578,7 +579,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 5); + this.SelectItem(InventoryPlace.Items, 5); this.PrintInventory(); } } @@ -587,7 +588,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 6); + this.SelectItem(InventoryPlace.Items, 6); this.PrintInventory(); } } @@ -596,7 +597,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 7); + this.SelectItem(InventoryPlace.Items, 7); this.PrintInventory(); } } @@ -605,7 +606,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 8); + this.SelectItem(InventoryPlace.Items, 8); this.PrintInventory(); } } @@ -614,7 +615,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 9); + this.SelectItem(InventoryPlace.Items, 9); this.PrintInventory(); } } @@ -623,7 +624,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 10); + this.SelectItem(InventoryPlace.Items, 10); this.PrintInventory(); } } @@ -632,7 +633,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 11); + this.SelectItem(InventoryPlace.Items, 11); this.PrintInventory(); } } @@ -641,7 +642,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 12); + this.SelectItem(InventoryPlace.Items, 12); this.PrintInventory(); } } @@ -650,7 +651,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 13); + this.SelectItem(InventoryPlace.Items, 13); this.PrintInventory(); } } @@ -659,7 +660,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 14); + this.SelectItem(InventoryPlace.Items, 14); this.PrintInventory(); } } @@ -668,7 +669,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 15); + this.SelectItem(InventoryPlace.Items, 15); this.PrintInventory(); } } @@ -677,7 +678,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 16); + this.SelectItem(InventoryPlace.Items, 16); this.PrintInventory(); } } @@ -686,7 +687,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 17); + this.SelectItem(InventoryPlace.Items, 17); this.PrintInventory(); } } @@ -695,7 +696,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 18); + this.SelectItem(InventoryPlace.Items, 18); this.PrintInventory(); } } @@ -704,7 +705,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 19); + this.SelectItem(InventoryPlace.Items, 19); this.PrintInventory(); } } @@ -713,7 +714,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 20); + this.SelectItem(InventoryPlace.Items, 20); this.PrintInventory(); } } @@ -722,7 +723,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 21); + this.SelectItem(InventoryPlace.Items, 21); this.PrintInventory(); } } @@ -731,7 +732,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 22); + this.SelectItem(InventoryPlace.Items, 22); this.PrintInventory(); } } @@ -740,7 +741,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 23); + this.SelectItem(InventoryPlace.Items, 23); this.PrintInventory(); } } @@ -749,7 +750,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 24); + this.SelectItem(InventoryPlace.Items, 24); this.PrintInventory(); } } @@ -758,7 +759,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 25); + this.SelectItem(InventoryPlace.Items, 25); this.PrintInventory(); } } @@ -767,7 +768,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 26); + this.SelectItem(InventoryPlace.Items, 26); this.PrintInventory(); } } @@ -776,7 +777,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 27); + this.SelectItem(InventoryPlace.Items, 27); this.PrintInventory(); } } @@ -785,7 +786,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 28); + this.SelectItem(InventoryPlace.Items, 28); this.PrintInventory(); } } @@ -794,7 +795,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 29); + this.SelectItem(InventoryPlace.Items, 29); this.PrintInventory(); } } @@ -803,7 +804,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 30); + this.SelectItem(InventoryPlace.Items, 30); this.PrintInventory(); } } @@ -812,7 +813,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 31); + this.SelectItem(InventoryPlace.Items, 31); this.PrintInventory(); } } @@ -821,7 +822,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 32); + this.SelectItem(InventoryPlace.Items, 32); this.PrintInventory(); } } @@ -830,7 +831,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 33); + this.SelectItem(InventoryPlace.Items, 33); this.PrintInventory(); } } @@ -839,7 +840,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 34); + this.SelectItem(InventoryPlace.Items, 34); this.PrintInventory(); } } @@ -848,7 +849,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 35); + this.SelectItem(InventoryPlace.Items, 35); this.PrintInventory(); } } @@ -857,7 +858,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 36); + this.SelectItem(InventoryPlace.Items, 36); this.PrintInventory(); } } @@ -866,7 +867,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 37); + this.SelectItem(InventoryPlace.Items, 37); this.PrintInventory(); } } @@ -875,7 +876,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 38); + this.SelectItem(InventoryPlace.Items, 38); this.PrintInventory(); } } @@ -884,7 +885,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 39); + this.SelectItem(InventoryPlace.Items, 39); this.PrintInventory(); } } @@ -893,7 +894,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 40); + this.SelectItem(InventoryPlace.Items, 40); this.PrintInventory(); } } @@ -902,7 +903,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 41); + this.SelectItem(InventoryPlace.Items, 41); this.PrintInventory(); } } @@ -911,7 +912,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 42); + this.SelectItem(InventoryPlace.Items, 42); this.PrintInventory(); } } @@ -920,7 +921,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 43); + this.SelectItem(InventoryPlace.Items, 43); this.PrintInventory(); } } @@ -929,7 +930,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 44); + this.SelectItem(InventoryPlace.Items, 44); this.PrintInventory(); } } @@ -938,7 +939,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 45); + this.SelectItem(InventoryPlace.Items, 45); this.PrintInventory(); } } @@ -947,7 +948,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 46); + this.SelectItem(InventoryPlace.Items, 46); this.PrintInventory(); } } @@ -956,7 +957,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 47); + this.SelectItem(InventoryPlace.Items, 47); this.PrintInventory(); } } @@ -965,7 +966,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 48); + this.SelectItem(InventoryPlace.Items, 48); this.PrintInventory(); } } @@ -978,7 +979,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 0); + this.SelectItem(InventoryPlace.Accessories, 0); this.PrintInventory(); } } @@ -987,7 +988,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 1); + this.SelectItem(InventoryPlace.Accessories, 1); this.PrintInventory(); } } @@ -996,7 +997,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 2); + this.SelectItem(InventoryPlace.Accessories, 2); this.PrintInventory(); } } @@ -1005,7 +1006,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 3); + this.SelectItem(InventoryPlace.Accessories, 3); this.PrintInventory(); } } @@ -1014,7 +1015,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 4); + this.SelectItem(InventoryPlace.Accessories, 4); this.PrintInventory(); } } @@ -1023,7 +1024,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 5); + this.SelectItem(InventoryPlace.Accessories, 5); this.PrintInventory(); } } @@ -1032,7 +1033,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 6); + this.SelectItem(InventoryPlace.Accessories, 6); this.PrintInventory(); } } @@ -1041,7 +1042,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 7); + this.SelectItem(InventoryPlace.Accessories, 7); this.PrintInventory(); } } @@ -1050,7 +1051,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 8); + this.SelectItem(InventoryPlace.Accessories, 8); this.PrintInventory(); } } @@ -1059,7 +1060,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 9); + this.SelectItem(InventoryPlace.Accessories, 9); this.PrintInventory(); } } @@ -1068,7 +1069,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 10); + this.SelectItem(InventoryPlace.Accessories, 10); this.PrintInventory(); } } @@ -1077,7 +1078,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 11); + this.SelectItem(InventoryPlace.Accessories, 11); this.PrintInventory(); } } @@ -1086,7 +1087,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 12); + this.SelectItem(InventoryPlace.Accessories, 12); this.PrintInventory(); } } @@ -1095,7 +1096,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 13); + this.SelectItem(InventoryPlace.Accessories, 13); this.PrintInventory(); } } @@ -1108,7 +1109,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 0); + this.SelectItem(InventoryPlace.Gear, 0); this.PrintInventory(); } } @@ -1117,7 +1118,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 1); + this.SelectItem(InventoryPlace.Gear, 1); this.PrintInventory(); } } @@ -1126,7 +1127,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 2); + this.SelectItem(InventoryPlace.Gear, 2); this.PrintInventory(); } } @@ -1135,7 +1136,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 3); + this.SelectItem(InventoryPlace.Gear, 3); this.PrintInventory(); } } @@ -1144,7 +1145,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 4); + this.SelectItem(InventoryPlace.Gear, 4); this.PrintInventory(); } } @@ -1153,7 +1154,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 5); + this.SelectItem(InventoryPlace.Gear, 5); this.PrintInventory(); } } @@ -1162,7 +1163,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 6); + this.SelectItem(InventoryPlace.Gear, 6); this.PrintInventory(); } } diff --git a/Mundus/Views/Windows/GameWindows/Medium/MediumLogic.cs b/Mundus/Views/Windows/GameWindows/Medium/MediumLogic.cs index a7558bd..d283ee6 100644 --- a/Mundus/Views/Windows/GameWindows/Medium/MediumLogic.cs +++ b/Mundus/Views/Windows/GameWindows/Medium/MediumLogic.cs @@ -1,25 +1,11 @@ -namespace Mundus.Views.Windows +namespace Mundus.Views.Windows.GameWindows.Medium { using Gtk; - using Mundus.Service; using Mundus.Service.Tiles.Items; - using Mundus.Service.Tiles.Mobs; - using Mundus.Service.Tiles.Mobs.Controllers; + using static Mundus.Service.Tiles.Mobs.Inventory; public partial class MediumGameWindow : Gtk.Window, IGameWindow { - /// - /// TODO: Make it an enum - /// Saves the place from which the player has selected an item - /// Must be either: "hotbar", "items", "accessories" or "gear" - /// - private string selPlace = null; - - /// - /// Saves the index of the selected item - /// - private int selIndex = -1; - public MediumGameWindow() : base( Gtk.WindowType.Toplevel ) { this.Build(); @@ -44,76 +30,27 @@ this.SetInvMenuVisibility(false); } - private void SelectItem(string place, int index) - { - if (HasSelection()) - { - ResetSelection(); - SwitchItems.ReplaceItems(place, index); + private void SelectItem(InventoryPlace place, int index) { + if (ItemController.HasSelectedItem()) { + ItemController.SwitchItems(place, index); } - else - { - selPlace = place; - selIndex = index; - SwitchItems.SetOrigin(place, index); + else { + ItemController.SelectItem(place, index); } this.PrintMainMenu(); this.PrintInventory(); } - private void React(int button) - { - int buttonYPos = (button - 1) / Size; - int buttonXPos = (button - (buttonYPos * Size)) - 1; - - int mapXPos = Calculate.CalculateXFromButton(buttonXPos, Size); - int mapYPos = Calculate.CalculateYFromButton(buttonYPos, Size); - - if (!HasSelection()) - { - MobMovement.MovePlayer(mapYPos, mapXPos, Size); - MobMovement.MoveRandomlyAllMobs(); - } - else - { - if (Inventory.GetPlayerItem(selPlace, selIndex) != null) - { - if (MobFighting.ExistsFightTargetForPlayer(mapYPos, mapXPos)) - { - MobFighting.PlayerTryFight(selPlace, selIndex, mapYPos, mapXPos); - } - else - { - MobTerraforming.PlayerTerraformAt(mapYPos, mapXPos, selPlace, selIndex); - } - } - ResetSelection(); - } - - this.PrintWorldScreen(); - this.PrintMainMenu(); - - if (this.MapMenuIsVisible()) - { + public void PrintMapOrInv() { + if (this.MapMenuIsVisible()) { this.PrintMap(); } - else if (this.InvMenuIsVisible()) - { + else if (this.InvMenuIsVisible()) { this.PrintInventory(); } } - private void ResetSelection() - { - selPlace = null; - selIndex = -1; - } - private bool HasSelection() - { - return selPlace != null; - } - private bool InvMenuIsVisible() { return btnI1.Visible; diff --git a/Mundus/Views/Windows/GameWindows/Medium/MediumPrinting.cs b/Mundus/Views/Windows/GameWindows/Medium/MediumPrinting.cs index 6301ca0..5010f86 100644 --- a/Mundus/Views/Windows/GameWindows/Medium/MediumPrinting.cs +++ b/Mundus/Views/Windows/GameWindows/Medium/MediumPrinting.cs @@ -1,10 +1,11 @@ -namespace Mundus.Views.Windows +namespace Mundus.Views.Windows.GameWindows.Medium { using Gtk; using Mundus.Service; using Mundus.Service.SuperLayers; using Mundus.Service.Tiles.Items; using Mundus.Service.Tiles.Mobs.Controllers; + using Mundus.Service.Windows; public partial class MediumGameWindow { diff --git a/Mundus/Views/Windows/GameWindows/Small/SmallButtonClickedEvents.cs b/Mundus/Views/Windows/GameWindows/Small/SmallButtonClickedEvents.cs index 5c5daab..87ac695 100644 --- a/Mundus/Views/Windows/GameWindows/Small/SmallButtonClickedEvents.cs +++ b/Mundus/Views/Windows/GameWindows/Small/SmallButtonClickedEvents.cs @@ -1,7 +1,8 @@ -namespace Mundus.Views.Windows +namespace Mundus.Views.Windows.GameWindows.Small { using System; - using Mundus.Service; + using Mundus.Service.Windows; + using static Mundus.Service.Tiles.Mobs.Inventory; public partial class SmallGameWindow : Gtk.Window { @@ -75,7 +76,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(1); + WindowController.React(1); } } @@ -83,7 +84,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(2); + WindowController.React(2); } } @@ -91,7 +92,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(3); + WindowController.React(3); } } @@ -99,7 +100,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(4); + WindowController.React(4); } } @@ -107,7 +108,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(5); + WindowController.React(5); } } @@ -115,7 +116,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(6); + WindowController.React(6); } } @@ -123,7 +124,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(7); + WindowController.React(7); } } @@ -131,7 +132,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(8); + WindowController.React(8); } } @@ -139,7 +140,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(9); + WindowController.React(9); } } @@ -147,7 +148,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(10); + WindowController.React(10); } } @@ -155,7 +156,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(11); + WindowController.React(11); } } @@ -163,7 +164,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(12); + WindowController.React(12); } } @@ -171,7 +172,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(13); + WindowController.React(13); } } @@ -179,7 +180,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(14); + WindowController.React(14); } } @@ -187,7 +188,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(15); + WindowController.React(15); } } @@ -195,7 +196,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(16); + WindowController.React(16); } } @@ -203,7 +204,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(17); + WindowController.React(17); } } @@ -211,7 +212,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(18); + WindowController.React(18); } } @@ -219,7 +220,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(19); + WindowController.React(19); } } @@ -227,7 +228,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(20); + WindowController.React(20); } } @@ -235,7 +236,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(21); + WindowController.React(21); } } @@ -243,7 +244,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(22); + WindowController.React(22); } } @@ -251,7 +252,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(23); + WindowController.React(23); } } @@ -259,7 +260,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(24); + WindowController.React(24); } } @@ -267,7 +268,7 @@ { if (!WindowController.PauseWindowVisible) { - this.React(25); + WindowController.React(25); } } @@ -279,7 +280,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 0); + this.SelectItem(InventoryPlace.Hotbar, 0); this.PrintMainMenu(); } } @@ -288,7 +289,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 1); + this.SelectItem(InventoryPlace.Hotbar, 1); this.PrintMainMenu(); } } @@ -297,7 +298,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 2); + this.SelectItem(InventoryPlace.Hotbar, 2); this.PrintMainMenu(); } } @@ -306,7 +307,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 3); + this.SelectItem(InventoryPlace.Hotbar, 3); this.PrintMainMenu(); } } @@ -315,7 +316,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("hotbar", 4); + this.SelectItem(InventoryPlace.Hotbar, 4); this.PrintMainMenu(); } } @@ -333,7 +334,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 0); + this.SelectItem(InventoryPlace.Items, 0); this.PrintInventory(); } } @@ -342,7 +343,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 1); + this.SelectItem(InventoryPlace.Items, 1); this.PrintInventory(); } } @@ -351,7 +352,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 2); + this.SelectItem(InventoryPlace.Items, 2); this.PrintInventory(); } } @@ -360,7 +361,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 3); + this.SelectItem(InventoryPlace.Items, 3); this.PrintInventory(); } } @@ -369,7 +370,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 4); + this.SelectItem(InventoryPlace.Items, 4); this.PrintInventory(); } } @@ -378,7 +379,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 5); + this.SelectItem(InventoryPlace.Items, 5); this.PrintInventory(); } } @@ -387,7 +388,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 6); + this.SelectItem(InventoryPlace.Items, 6); this.PrintInventory(); } } @@ -396,7 +397,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 7); + this.SelectItem(InventoryPlace.Items, 7); this.PrintInventory(); } } @@ -405,7 +406,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 8); + this.SelectItem(InventoryPlace.Items, 8); this.PrintInventory(); } } @@ -414,7 +415,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 9); + this.SelectItem(InventoryPlace.Items, 9); this.PrintInventory(); } } @@ -423,7 +424,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 10); + this.SelectItem(InventoryPlace.Items, 10); this.PrintInventory(); } } @@ -432,7 +433,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 11); + this.SelectItem(InventoryPlace.Items, 11); this.PrintInventory(); } } @@ -441,7 +442,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 12); + this.SelectItem(InventoryPlace.Items, 12); this.PrintInventory(); } } @@ -450,7 +451,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 13); + this.SelectItem(InventoryPlace.Items, 13); this.PrintInventory(); } } @@ -459,7 +460,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 14); + this.SelectItem(InventoryPlace.Items, 14); this.PrintInventory(); } } @@ -468,7 +469,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 15); + this.SelectItem(InventoryPlace.Items, 15); this.PrintInventory(); } } @@ -477,7 +478,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 16); + this.SelectItem(InventoryPlace.Items, 16); this.PrintInventory(); } } @@ -486,7 +487,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 17); + this.SelectItem(InventoryPlace.Items, 17); this.PrintInventory(); } } @@ -495,7 +496,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 18); + this.SelectItem(InventoryPlace.Items, 18); this.PrintInventory(); } } @@ -504,7 +505,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 19); + this.SelectItem(InventoryPlace.Items, 19); this.PrintInventory(); } } @@ -513,7 +514,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 20); + this.SelectItem(InventoryPlace.Items, 20); this.PrintInventory(); } } @@ -522,7 +523,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 21); + this.SelectItem(InventoryPlace.Items, 21); this.PrintInventory(); } } @@ -531,7 +532,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 22); + this.SelectItem(InventoryPlace.Items, 22); this.PrintInventory(); } } @@ -540,7 +541,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 23); + this.SelectItem(InventoryPlace.Items, 23); this.PrintInventory(); } } @@ -549,7 +550,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("items", 24); + this.SelectItem(InventoryPlace.Items, 24); this.PrintInventory(); } } @@ -562,7 +563,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 0); + this.SelectItem(InventoryPlace.Accessories, 0); this.PrintInventory(); } } @@ -571,7 +572,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 1); + this.SelectItem(InventoryPlace.Accessories, 1); this.PrintInventory(); } } @@ -580,7 +581,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 2); + this.SelectItem(InventoryPlace.Accessories, 2); this.PrintInventory(); } } @@ -589,7 +590,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 3); + this.SelectItem(InventoryPlace.Accessories, 3); this.PrintInventory(); } } @@ -598,7 +599,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 4); + this.SelectItem(InventoryPlace.Accessories, 4); this.PrintInventory(); } } @@ -607,7 +608,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 5); + this.SelectItem(InventoryPlace.Accessories, 5); this.PrintInventory(); } } @@ -616,7 +617,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 6); + this.SelectItem(InventoryPlace.Accessories, 6); this.PrintInventory(); } } @@ -625,7 +626,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 7); + this.SelectItem(InventoryPlace.Accessories, 7); this.PrintInventory(); } } @@ -634,7 +635,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 8); + this.SelectItem(InventoryPlace.Accessories, 8); this.PrintInventory(); } } @@ -643,7 +644,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("accessories", 9); + this.SelectItem(InventoryPlace.Accessories, 9); this.PrintInventory(); } } @@ -655,7 +656,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 0); + this.SelectItem(InventoryPlace.Gear, 0); this.PrintInventory(); } } @@ -664,7 +665,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 1); + this.SelectItem(InventoryPlace.Gear, 1); this.PrintInventory(); } } @@ -673,7 +674,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 2); + this.SelectItem(InventoryPlace.Gear, 2); this.PrintInventory(); } } @@ -682,7 +683,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 3); + this.SelectItem(InventoryPlace.Gear, 3); this.PrintInventory(); } } @@ -691,7 +692,7 @@ { if (!WindowController.PauseWindowVisible) { - this.SelectItem("gear", 4); + this.SelectItem(InventoryPlace.Gear, 4); this.PrintInventory(); } } diff --git a/Mundus/Views/Windows/GameWindows/Small/SmallLogic.cs b/Mundus/Views/Windows/GameWindows/Small/SmallLogic.cs index 42edde0..c5cd1f9 100644 --- a/Mundus/Views/Windows/GameWindows/Small/SmallLogic.cs +++ b/Mundus/Views/Windows/GameWindows/Small/SmallLogic.cs @@ -1,25 +1,11 @@ -namespace Mundus.Views.Windows +namespace Mundus.Views.Windows.GameWindows.Small { using Gtk; - using Mundus.Service; using Mundus.Service.Tiles.Items; - using Mundus.Service.Tiles.Mobs; - using Mundus.Service.Tiles.Mobs.Controllers; + using static Mundus.Service.Tiles.Mobs.Inventory; public partial class SmallGameWindow : Gtk.Window, IGameWindow { - /// - /// TODO: Make it an enum - /// Saves the place from which the player has selected an item - /// Must be either: "hotbar", "items", "accessories" or "gear" - /// - private string selPlace = null; - - /// - /// Saves the index of the selected item - /// - private int selIndex = -1; - public SmallGameWindow() : base(Gtk.WindowType.Toplevel) { this.Build(); @@ -60,57 +46,21 @@ this.SetInvMenuVisibility(false); } - private void SelectItem(string place, int index) - { - if (this.HasItemSelection()) - { - this.ResetSelection(); - SwitchItems.ReplaceItems(place, index); + private void SelectItem(InventoryPlace place, int index) + { + if (ItemController.HasSelectedItem()) { + ItemController.SwitchItems(place, index); } - else - { - this.selPlace = place; - this.selIndex = index; - SwitchItems.SetOrigin(place, index); + else { + ItemController.SelectItem(place, index); } this.PrintMainMenu(); this.PrintInventory(); } - private void React(int button) + public void PrintMapOrInv() { - int buttonYPos = (button - 1) / this.Size; - int buttonXPos = (button - (buttonYPos * this.Size)) - 1; - - int mapXPos = Calculate.CalculateXFromButton(buttonXPos, this.Size); - int mapYPos = Calculate.CalculateYFromButton(buttonYPos, this.Size); - - if (!this.HasItemSelection()) - { - MobMovement.MovePlayer(mapYPos, mapXPos, this.Size); - MobMovement.MoveRandomlyAllMobs(); - } - else - { - if (Inventory.GetPlayerItem(this.selPlace, this.selIndex) != null) - { - if (MobFighting.ExistsFightTargetForPlayer(mapYPos, mapXPos)) - { - MobFighting.PlayerTryFight(this.selPlace, this.selIndex, mapYPos, mapXPos); - } - else - { - MobTerraforming.PlayerTerraformAt(mapYPos, mapXPos, this.selPlace, this.selIndex); - } - } - - this.ResetSelection(); - } - - this.PrintWorldScreen(); - this.PrintMainMenu(); - if (this.MapMenuIsVisible()) { this.PrintMap(); @@ -121,17 +71,6 @@ } } - private void ResetSelection() - { - this.selPlace = null; - this.selIndex = -1; - } - - private bool HasItemSelection() - { - return this.selPlace != null; - } - private bool MapMenuIsVisible() { return imgG1.Visible; diff --git a/Mundus/Views/Windows/GameWindows/Small/SmallPrinting.cs b/Mundus/Views/Windows/GameWindows/Small/SmallPrinting.cs index a076771..bbf3594 100644 --- a/Mundus/Views/Windows/GameWindows/Small/SmallPrinting.cs +++ b/Mundus/Views/Windows/GameWindows/Small/SmallPrinting.cs @@ -1,10 +1,11 @@ -namespace Mundus.Views.Windows +namespace Mundus.Views.Windows.GameWindows.Small { using Gtk; using Mundus.Service; using Mundus.Service.SuperLayers; using Mundus.Service.Tiles.Items; using Mundus.Service.Tiles.Mobs.Controllers; + using Mundus.Service.Windows; public partial class SmallGameWindow { diff --git a/Mundus/Views/Windows/MainWindow.cs b/Mundus/Views/Windows/MainWindow.cs index fd09fa2..ca3b529 100644 --- a/Mundus/Views/Windows/MainWindow.cs +++ b/Mundus/Views/Windows/MainWindow.cs @@ -2,7 +2,7 @@ { using System; using Gtk; - using Mundus.Service; + using Mundus.Service.Windows; public partial class MainWindow : Gtk.Window { diff --git a/Mundus/Views/Windows/NewGameWindow.cs b/Mundus/Views/Windows/NewGameWindow.cs index 929f8d0..98c52e9 100644 --- a/Mundus/Views/Windows/NewGameWindow.cs +++ b/Mundus/Views/Windows/NewGameWindow.cs @@ -3,6 +3,7 @@ using System; using Gtk; using Mundus.Service; + using Mundus.Service.Windows; public partial class NewGameWindow : Gtk.Window { diff --git a/Mundus/Views/Windows/PauseWindow.cs b/Mundus/Views/Windows/PauseWindow.cs index 45067be..4dde656 100644 --- a/Mundus/Views/Windows/PauseWindow.cs +++ b/Mundus/Views/Windows/PauseWindow.cs @@ -2,7 +2,7 @@ { using System; using Gtk; - using Mundus.Service; + using Mundus.Service.Windows; public partial class PauseWindow : Gtk.Window { diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Large.LargeGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Large.LargeGameWindow.cs new file mode 100644 index 0000000..95086c1 --- /dev/null +++ b/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Large.LargeGameWindow.cs @@ -0,0 +1,7389 @@ + +// This file has been generated by the GUI designer. Do not modify. +namespace Mundus.Views.Windows.GameWindows.Large +{ + public partial class LargeGameWindow + { + private global::Gtk.Table tbUI; + + private global::Gtk.Button btnA1; + + private global::Gtk.Button btnA10; + + private global::Gtk.Button btnA11; + + private global::Gtk.Button btnA12; + + private global::Gtk.Button btnA13; + + private global::Gtk.Button btnA14; + + private global::Gtk.Button btnA15; + + private global::Gtk.Button btnA16; + + private global::Gtk.Button btnA17; + + private global::Gtk.Button btnA18; + + private global::Gtk.Button btnA2; + + private global::Gtk.Button btnA3; + + private global::Gtk.Button btnA4; + + private global::Gtk.Button btnA5; + + private global::Gtk.Button btnA6; + + private global::Gtk.Button btnA7; + + private global::Gtk.Button btnA8; + + private global::Gtk.Button btnA9; + + private global::Gtk.Button btnCrafting; + + private global::Gtk.Button btnG1; + + private global::Gtk.Button btnG2; + + private global::Gtk.Button btnG3; + + private global::Gtk.Button btnG4; + + private global::Gtk.Button btnG5; + + private global::Gtk.Button btnG6; + + private global::Gtk.Button btnG7; + + private global::Gtk.Button btnG8; + + private global::Gtk.Button btnG9; + + private global::Gtk.Button btnH1; + + private global::Gtk.Button btnH2; + + private global::Gtk.Button btnH3; + + private global::Gtk.Button btnH4; + + private global::Gtk.Button btnH5; + + private global::Gtk.Button btnH6; + + private global::Gtk.Button btnH7; + + private global::Gtk.Button btnH8; + + private global::Gtk.Button btnH9; + + private global::Gtk.Button btnI1; + + private global::Gtk.Button btnI10; + + private global::Gtk.Button btnI11; + + private global::Gtk.Button btnI12; + + private global::Gtk.Button btnI13; + + private global::Gtk.Button btnI14; + + private global::Gtk.Button btnI15; + + private global::Gtk.Button btnI16; + + private global::Gtk.Button btnI17; + + private global::Gtk.Button btnI18; + + private global::Gtk.Button btnI19; + + private global::Gtk.Button btnI2; + + private global::Gtk.Button btnI20; + + private global::Gtk.Button btnI21; + + private global::Gtk.Button btnI22; + + private global::Gtk.Button btnI23; + + private global::Gtk.Button btnI24; + + private global::Gtk.Button btnI25; + + private global::Gtk.Button btnI26; + + private global::Gtk.Button btnI27; + + private global::Gtk.Button btnI28; + + private global::Gtk.Button btnI29; + + private global::Gtk.Button btnI3; + + private global::Gtk.Button btnI30; + + private global::Gtk.Button btnI31; + + private global::Gtk.Button btnI32; + + private global::Gtk.Button btnI33; + + private global::Gtk.Button btnI34; + + private global::Gtk.Button btnI35; + + private global::Gtk.Button btnI36; + + private global::Gtk.Button btnI37; + + private global::Gtk.Button btnI38; + + private global::Gtk.Button btnI39; + + private global::Gtk.Button btnI4; + + private global::Gtk.Button btnI40; + + private global::Gtk.Button btnI41; + + private global::Gtk.Button btnI42; + + private global::Gtk.Button btnI43; + + private global::Gtk.Button btnI44; + + private global::Gtk.Button btnI45; + + private global::Gtk.Button btnI46; + + private global::Gtk.Button btnI47; + + private global::Gtk.Button btnI48; + + private global::Gtk.Button btnI49; + + private global::Gtk.Button btnI5; + + private global::Gtk.Button btnI50; + + private global::Gtk.Button btnI51; + + private global::Gtk.Button btnI52; + + private global::Gtk.Button btnI53; + + private global::Gtk.Button btnI54; + + private global::Gtk.Button btnI55; + + private global::Gtk.Button btnI56; + + private global::Gtk.Button btnI57; + + private global::Gtk.Button btnI58; + + private global::Gtk.Button btnI59; + + private global::Gtk.Button btnI6; + + private global::Gtk.Button btnI60; + + private global::Gtk.Button btnI61; + + private global::Gtk.Button btnI62; + + private global::Gtk.Button btnI63; + + private global::Gtk.Button btnI64; + + private global::Gtk.Button btnI65; + + private global::Gtk.Button btnI66; + + private global::Gtk.Button btnI67; + + private global::Gtk.Button btnI68; + + private global::Gtk.Button btnI69; + + private global::Gtk.Button btnI7; + + private global::Gtk.Button btnI70; + + private global::Gtk.Button btnI71; + + private global::Gtk.Button btnI72; + + private global::Gtk.Button btnI73; + + private global::Gtk.Button btnI74; + + private global::Gtk.Button btnI75; + + private global::Gtk.Button btnI76; + + private global::Gtk.Button btnI77; + + private global::Gtk.Button btnI78; + + private global::Gtk.Button btnI79; + + private global::Gtk.Button btnI8; + + private global::Gtk.Button btnI80; + + private global::Gtk.Button btnI81; + + private global::Gtk.Button btnI9; + + private global::Gtk.Button btnInv; + + private global::Gtk.Button btnLog; + + private global::Gtk.Button btnMap; + + private global::Gtk.Button btnMusic; + + private global::Gtk.Button btnP1; + + private global::Gtk.Button btnP10; + + private global::Gtk.Button btnP11; + + private global::Gtk.Button btnP12; + + private global::Gtk.Button btnP13; + + private global::Gtk.Button btnP14; + + private global::Gtk.Button btnP15; + + private global::Gtk.Button btnP16; + + private global::Gtk.Button btnP17; + + private global::Gtk.Button btnP18; + + private global::Gtk.Button btnP19; + + private global::Gtk.Button btnP2; + + private global::Gtk.Button btnP20; + + private global::Gtk.Button btnP21; + + private global::Gtk.Button btnP22; + + private global::Gtk.Button btnP23; + + private global::Gtk.Button btnP24; + + private global::Gtk.Button btnP25; + + private global::Gtk.Button btnP26; + + private global::Gtk.Button btnP27; + + private global::Gtk.Button btnP28; + + private global::Gtk.Button btnP29; + + private global::Gtk.Button btnP3; + + private global::Gtk.Button btnP30; + + private global::Gtk.Button btnP31; + + private global::Gtk.Button btnP32; + + private global::Gtk.Button btnP33; + + private global::Gtk.Button btnP34; + + private global::Gtk.Button btnP35; + + private global::Gtk.Button btnP36; + + private global::Gtk.Button btnP37; + + private global::Gtk.Button btnP38; + + private global::Gtk.Button btnP39; + + private global::Gtk.Button btnP4; + + private global::Gtk.Button btnP40; + + private global::Gtk.Button btnP41; + + private global::Gtk.Button btnP42; + + private global::Gtk.Button btnP43; + + private global::Gtk.Button btnP44; + + private global::Gtk.Button btnP45; + + private global::Gtk.Button btnP46; + + private global::Gtk.Button btnP47; + + private global::Gtk.Button btnP48; + + private global::Gtk.Button btnP49; + + private global::Gtk.Button btnP5; + + private global::Gtk.Button btnP50; + + private global::Gtk.Button btnP51; + + private global::Gtk.Button btnP52; + + private global::Gtk.Button btnP53; + + private global::Gtk.Button btnP54; + + private global::Gtk.Button btnP55; + + private global::Gtk.Button btnP56; + + private global::Gtk.Button btnP57; + + private global::Gtk.Button btnP58; + + private global::Gtk.Button btnP59; + + private global::Gtk.Button btnP6; + + private global::Gtk.Button btnP60; + + private global::Gtk.Button btnP61; + + private global::Gtk.Button btnP62; + + private global::Gtk.Button btnP63; + + private global::Gtk.Button btnP64; + + private global::Gtk.Button btnP65; + + private global::Gtk.Button btnP66; + + private global::Gtk.Button btnP67; + + private global::Gtk.Button btnP68; + + private global::Gtk.Button btnP69; + + private global::Gtk.Button btnP7; + + private global::Gtk.Button btnP70; + + private global::Gtk.Button btnP71; + + private global::Gtk.Button btnP72; + + private global::Gtk.Button btnP73; + + private global::Gtk.Button btnP74; + + private global::Gtk.Button btnP75; + + private global::Gtk.Button btnP76; + + private global::Gtk.Button btnP77; + + private global::Gtk.Button btnP78; + + private global::Gtk.Button btnP79; + + private global::Gtk.Button btnP8; + + private global::Gtk.Button btnP80; + + private global::Gtk.Button btnP81; + + private global::Gtk.Button btnP9; + + private global::Gtk.Button btnPause; + + private global::Gtk.Image imgG1; + + private global::Gtk.Image imgG10; + + private global::Gtk.Image imgG11; + + private global::Gtk.Image imgG12; + + private global::Gtk.Image imgG13; + + private global::Gtk.Image imgG14; + + private global::Gtk.Image imgG15; + + private global::Gtk.Image imgG16; + + private global::Gtk.Image imgG17; + + private global::Gtk.Image imgG18; + + private global::Gtk.Image imgG19; + + private global::Gtk.Image imgG2; + + private global::Gtk.Image imgG20; + + private global::Gtk.Image imgG21; + + private global::Gtk.Image imgG22; + + private global::Gtk.Image imgG23; + + private global::Gtk.Image imgG24; + + private global::Gtk.Image imgG25; + + private global::Gtk.Image imgG26; + + private global::Gtk.Image imgG27; + + private global::Gtk.Image imgG28; + + private global::Gtk.Image imgG29; + + private global::Gtk.Image imgG3; + + private global::Gtk.Image imgG30; + + private global::Gtk.Image imgG31; + + private global::Gtk.Image imgG32; + + private global::Gtk.Image imgG33; + + private global::Gtk.Image imgG34; + + private global::Gtk.Image imgG35; + + private global::Gtk.Image imgG36; + + private global::Gtk.Image imgG37; + + private global::Gtk.Image imgG38; + + private global::Gtk.Image imgG39; + + private global::Gtk.Image imgG4; + + private global::Gtk.Image imgG40; + + private global::Gtk.Image imgG41; + + private global::Gtk.Image imgG42; + + private global::Gtk.Image imgG43; + + private global::Gtk.Image imgG44; + + private global::Gtk.Image imgG45; + + private global::Gtk.Image imgG46; + + private global::Gtk.Image imgG47; + + private global::Gtk.Image imgG48; + + private global::Gtk.Image imgG49; + + private global::Gtk.Image imgG5; + + private global::Gtk.Image imgG50; + + private global::Gtk.Image imgG51; + + private global::Gtk.Image imgG52; + + private global::Gtk.Image imgG53; + + private global::Gtk.Image imgG54; + + private global::Gtk.Image imgG55; + + private global::Gtk.Image imgG56; + + private global::Gtk.Image imgG57; + + private global::Gtk.Image imgG58; + + private global::Gtk.Image imgG59; + + private global::Gtk.Image imgG6; + + private global::Gtk.Image imgG60; + + private global::Gtk.Image imgG61; + + private global::Gtk.Image imgG62; + + private global::Gtk.Image imgG63; + + private global::Gtk.Image imgG64; + + private global::Gtk.Image imgG65; + + private global::Gtk.Image imgG66; + + private global::Gtk.Image imgG67; + + private global::Gtk.Image imgG68; + + private global::Gtk.Image imgG69; + + private global::Gtk.Image imgG7; + + private global::Gtk.Image imgG70; + + private global::Gtk.Image imgG71; + + private global::Gtk.Image imgG72; + + private global::Gtk.Image imgG73; + + private global::Gtk.Image imgG74; + + private global::Gtk.Image imgG75; + + private global::Gtk.Image imgG76; + + private global::Gtk.Image imgG77; + + private global::Gtk.Image imgG78; + + private global::Gtk.Image imgG79; + + private global::Gtk.Image imgG8; + + private global::Gtk.Image imgG80; + + private global::Gtk.Image imgG81; + + private global::Gtk.Image imgG9; + + private global::Gtk.Image imgI1; + + private global::Gtk.Image imgI10; + + private global::Gtk.Image imgI11; + + private global::Gtk.Image imgI12; + + private global::Gtk.Image imgI13; + + private global::Gtk.Image imgI14; + + private global::Gtk.Image imgI15; + + private global::Gtk.Image imgI16; + + private global::Gtk.Image imgI17; + + private global::Gtk.Image imgI18; + + private global::Gtk.Image imgI19; + + private global::Gtk.Image imgI2; + + private global::Gtk.Image imgI20; + + private global::Gtk.Image imgI21; + + private global::Gtk.Image imgI22; + + private global::Gtk.Image imgI23; + + private global::Gtk.Image imgI24; + + private global::Gtk.Image imgI25; + + private global::Gtk.Image imgI26; + + private global::Gtk.Image imgI27; + + private global::Gtk.Image imgI28; + + private global::Gtk.Image imgI29; + + private global::Gtk.Image imgI3; + + private global::Gtk.Image imgI30; + + private global::Gtk.Image imgI31; + + private global::Gtk.Image imgI32; + + private global::Gtk.Image imgI33; + + private global::Gtk.Image imgI34; + + private global::Gtk.Image imgI35; + + private global::Gtk.Image imgI36; + + private global::Gtk.Image imgI37; + + private global::Gtk.Image imgI38; + + private global::Gtk.Image imgI39; + + private global::Gtk.Image imgI4; + + private global::Gtk.Image imgI40; + + private global::Gtk.Image imgI41; + + private global::Gtk.Image imgI42; + + private global::Gtk.Image imgI43; + + private global::Gtk.Image imgI44; + + private global::Gtk.Image imgI45; + + private global::Gtk.Image imgI46; + + private global::Gtk.Image imgI47; + + private global::Gtk.Image imgI48; + + private global::Gtk.Image imgI49; + + private global::Gtk.Image imgI5; + + private global::Gtk.Image imgI50; + + private global::Gtk.Image imgI51; + + private global::Gtk.Image imgI52; + + private global::Gtk.Image imgI53; + + private global::Gtk.Image imgI54; + + private global::Gtk.Image imgI55; + + private global::Gtk.Image imgI56; + + private global::Gtk.Image imgI57; + + private global::Gtk.Image imgI58; + + private global::Gtk.Image imgI59; + + private global::Gtk.Image imgI6; + + private global::Gtk.Image imgI60; + + private global::Gtk.Image imgI61; + + private global::Gtk.Image imgI62; + + private global::Gtk.Image imgI63; + + private global::Gtk.Image imgI64; + + private global::Gtk.Image imgI65; + + private global::Gtk.Image imgI66; + + private global::Gtk.Image imgI67; + + private global::Gtk.Image imgI68; + + private global::Gtk.Image imgI69; + + private global::Gtk.Image imgI7; + + private global::Gtk.Image imgI70; + + private global::Gtk.Image imgI71; + + private global::Gtk.Image imgI72; + + private global::Gtk.Image imgI73; + + private global::Gtk.Image imgI74; + + private global::Gtk.Image imgI75; + + private global::Gtk.Image imgI76; + + private global::Gtk.Image imgI77; + + private global::Gtk.Image imgI78; + + private global::Gtk.Image imgI79; + + private global::Gtk.Image imgI8; + + private global::Gtk.Image imgI80; + + private global::Gtk.Image imgI81; + + private global::Gtk.Image imgI9; + + private global::Gtk.Image imgInfo; + + private global::Gtk.Image imgS1; + + private global::Gtk.Image imgS10; + + private global::Gtk.Image imgS11; + + private global::Gtk.Image imgS12; + + private global::Gtk.Image imgS13; + + private global::Gtk.Image imgS14; + + private global::Gtk.Image imgS15; + + private global::Gtk.Image imgS16; + + private global::Gtk.Image imgS17; + + private global::Gtk.Image imgS18; + + private global::Gtk.Image imgS2; + + private global::Gtk.Image imgS3; + + private global::Gtk.Image imgS4; + + private global::Gtk.Image imgS5; + + private global::Gtk.Image imgS6; + + private global::Gtk.Image imgS7; + + private global::Gtk.Image imgS8; + + private global::Gtk.Image imgS9; + + private global::Gtk.Label lblAccessories; + + private global::Gtk.Label lblBlank1; + + private global::Gtk.Label lblBlank2; + + private global::Gtk.Label lblBlank3; + + private global::Gtk.Label lblBlank4; + + private global::Gtk.Label lblBlank5; + + private global::Gtk.Label lblBlank6; + + private global::Gtk.Label lblBlank8; + + private global::Gtk.Label lblCoord1; + + private global::Gtk.Label lblCoord2; + + private global::Gtk.Label lblGear; + + private global::Gtk.Label lblGroundLayer; + + private global::Gtk.Label lblHoleMsg; + + private global::Gtk.Label lblHoleOnTop; + + private global::Gtk.Label lblHotbar; + + private global::Gtk.Label lblInfo; + + private global::Gtk.Label lblItemLayer; + + private global::Gtk.Label lblLog1; + + private global::Gtk.Label lblLog2; + + private global::Gtk.Label lblLog3; + + private global::Gtk.Label lblLog4; + + private global::Gtk.Label lblLog5; + + private global::Gtk.Label lblLog6; + + private global::Gtk.Label lblLog7; + + private global::Gtk.Label lblLog8; + + private global::Gtk.Label lblSuperLayer; + + protected virtual void Build() + { + global::Stetic.Gui.Initialize(this); + // Widget Mundus.Views.Windows.GameWindows.Large.LargeGameWindow + this.Name = "Mundus.Views.Windows.GameWindows.Large.LargeGameWindow"; + this.Title = "LargeGameWindow"; + this.WindowPosition = ((global::Gtk.WindowPosition)(2)); + this.Resizable = false; + this.AllowGrow = false; + // Container child Mundus.Views.Windows.GameWindows.Large.LargeGameWindow.Gtk.Container+ContainerChild + this.tbUI = new global::Gtk.Table(((uint)(25)), ((uint)(33)), false); + this.tbUI.Name = "tbUI"; + // Container child tbUI.Gtk.Table+TableChild + this.btnA1 = new global::Gtk.Button(); + this.btnA1.WidthRequest = 50; + this.btnA1.HeightRequest = 50; + this.btnA1.CanFocus = true; + this.btnA1.Name = "btnA1"; + this.btnA1.UseUnderline = true; + global::Gtk.Image w1 = new global::Gtk.Image(); + this.btnA1.Image = w1; + this.tbUI.Add(this.btnA1); + global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA1])); + w2.TopAttach = ((uint)(13)); + w2.BottomAttach = ((uint)(14)); + w2.LeftAttach = ((uint)(23)); + w2.RightAttach = ((uint)(24)); + w2.XOptions = ((global::Gtk.AttachOptions)(4)); + w2.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA10 = new global::Gtk.Button(); + this.btnA10.WidthRequest = 50; + this.btnA10.HeightRequest = 50; + this.btnA10.CanFocus = true; + this.btnA10.Name = "btnA10"; + this.btnA10.UseUnderline = true; + global::Gtk.Image w3 = new global::Gtk.Image(); + this.btnA10.Image = w3; + this.tbUI.Add(this.btnA10); + global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA10])); + w4.TopAttach = ((uint)(14)); + w4.BottomAttach = ((uint)(15)); + w4.LeftAttach = ((uint)(23)); + w4.RightAttach = ((uint)(24)); + w4.XOptions = ((global::Gtk.AttachOptions)(4)); + w4.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA11 = new global::Gtk.Button(); + this.btnA11.WidthRequest = 50; + this.btnA11.HeightRequest = 50; + this.btnA11.CanFocus = true; + this.btnA11.Name = "btnA11"; + this.btnA11.UseUnderline = true; + global::Gtk.Image w5 = new global::Gtk.Image(); + this.btnA11.Image = w5; + this.tbUI.Add(this.btnA11); + global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA11])); + w6.TopAttach = ((uint)(14)); + w6.BottomAttach = ((uint)(15)); + w6.LeftAttach = ((uint)(24)); + w6.RightAttach = ((uint)(25)); + w6.XOptions = ((global::Gtk.AttachOptions)(4)); + w6.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA12 = new global::Gtk.Button(); + this.btnA12.WidthRequest = 50; + this.btnA12.HeightRequest = 50; + this.btnA12.CanFocus = true; + this.btnA12.Name = "btnA12"; + this.btnA12.UseUnderline = true; + global::Gtk.Image w7 = new global::Gtk.Image(); + this.btnA12.Image = w7; + this.tbUI.Add(this.btnA12); + global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA12])); + w8.TopAttach = ((uint)(14)); + w8.BottomAttach = ((uint)(15)); + w8.LeftAttach = ((uint)(25)); + w8.RightAttach = ((uint)(26)); + w8.XOptions = ((global::Gtk.AttachOptions)(4)); + w8.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA13 = new global::Gtk.Button(); + this.btnA13.WidthRequest = 50; + this.btnA13.HeightRequest = 50; + this.btnA13.CanFocus = true; + this.btnA13.Name = "btnA13"; + this.btnA13.UseUnderline = true; + global::Gtk.Image w9 = new global::Gtk.Image(); + this.btnA13.Image = w9; + this.tbUI.Add(this.btnA13); + global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA13])); + w10.TopAttach = ((uint)(14)); + w10.BottomAttach = ((uint)(15)); + w10.LeftAttach = ((uint)(26)); + w10.RightAttach = ((uint)(27)); + w10.XOptions = ((global::Gtk.AttachOptions)(4)); + w10.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA14 = new global::Gtk.Button(); + this.btnA14.WidthRequest = 50; + this.btnA14.HeightRequest = 50; + this.btnA14.CanFocus = true; + this.btnA14.Name = "btnA14"; + this.btnA14.UseUnderline = true; + global::Gtk.Image w11 = new global::Gtk.Image(); + this.btnA14.Image = w11; + this.tbUI.Add(this.btnA14); + global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA14])); + w12.TopAttach = ((uint)(14)); + w12.BottomAttach = ((uint)(15)); + w12.LeftAttach = ((uint)(27)); + w12.RightAttach = ((uint)(28)); + w12.XOptions = ((global::Gtk.AttachOptions)(4)); + w12.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA15 = new global::Gtk.Button(); + this.btnA15.WidthRequest = 50; + this.btnA15.HeightRequest = 50; + this.btnA15.CanFocus = true; + this.btnA15.Name = "btnA15"; + this.btnA15.UseUnderline = true; + global::Gtk.Image w13 = new global::Gtk.Image(); + this.btnA15.Image = w13; + this.tbUI.Add(this.btnA15); + global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA15])); + w14.TopAttach = ((uint)(14)); + w14.BottomAttach = ((uint)(15)); + w14.LeftAttach = ((uint)(28)); + w14.RightAttach = ((uint)(29)); + w14.XOptions = ((global::Gtk.AttachOptions)(4)); + w14.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA16 = new global::Gtk.Button(); + this.btnA16.WidthRequest = 50; + this.btnA16.HeightRequest = 50; + this.btnA16.CanFocus = true; + this.btnA16.Name = "btnA16"; + this.btnA16.UseUnderline = true; + global::Gtk.Image w15 = new global::Gtk.Image(); + this.btnA16.Image = w15; + this.tbUI.Add(this.btnA16); + global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA16])); + w16.TopAttach = ((uint)(14)); + w16.BottomAttach = ((uint)(15)); + w16.LeftAttach = ((uint)(29)); + w16.RightAttach = ((uint)(30)); + w16.XOptions = ((global::Gtk.AttachOptions)(4)); + w16.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA17 = new global::Gtk.Button(); + this.btnA17.WidthRequest = 50; + this.btnA17.HeightRequest = 50; + this.btnA17.CanFocus = true; + this.btnA17.Name = "btnA17"; + this.btnA17.UseUnderline = true; + global::Gtk.Image w17 = new global::Gtk.Image(); + this.btnA17.Image = w17; + this.tbUI.Add(this.btnA17); + global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA17])); + w18.TopAttach = ((uint)(14)); + w18.BottomAttach = ((uint)(15)); + w18.LeftAttach = ((uint)(30)); + w18.RightAttach = ((uint)(31)); + w18.XOptions = ((global::Gtk.AttachOptions)(4)); + w18.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA18 = new global::Gtk.Button(); + this.btnA18.WidthRequest = 50; + this.btnA18.HeightRequest = 50; + this.btnA18.CanFocus = true; + this.btnA18.Name = "btnA18"; + this.btnA18.UseUnderline = true; + global::Gtk.Image w19 = new global::Gtk.Image(); + this.btnA18.Image = w19; + this.tbUI.Add(this.btnA18); + global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA18])); + w20.TopAttach = ((uint)(14)); + w20.BottomAttach = ((uint)(15)); + w20.LeftAttach = ((uint)(31)); + w20.RightAttach = ((uint)(32)); + w20.XOptions = ((global::Gtk.AttachOptions)(4)); + w20.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA2 = new global::Gtk.Button(); + this.btnA2.WidthRequest = 50; + this.btnA2.HeightRequest = 50; + this.btnA2.CanFocus = true; + this.btnA2.Name = "btnA2"; + this.btnA2.UseUnderline = true; + global::Gtk.Image w21 = new global::Gtk.Image(); + this.btnA2.Image = w21; + this.tbUI.Add(this.btnA2); + global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA2])); + w22.TopAttach = ((uint)(13)); + w22.BottomAttach = ((uint)(14)); + w22.LeftAttach = ((uint)(24)); + w22.RightAttach = ((uint)(25)); + w22.XOptions = ((global::Gtk.AttachOptions)(4)); + w22.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA3 = new global::Gtk.Button(); + this.btnA3.WidthRequest = 50; + this.btnA3.HeightRequest = 50; + this.btnA3.CanFocus = true; + this.btnA3.Name = "btnA3"; + this.btnA3.UseUnderline = true; + global::Gtk.Image w23 = new global::Gtk.Image(); + this.btnA3.Image = w23; + this.tbUI.Add(this.btnA3); + global::Gtk.Table.TableChild w24 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA3])); + w24.TopAttach = ((uint)(13)); + w24.BottomAttach = ((uint)(14)); + w24.LeftAttach = ((uint)(25)); + w24.RightAttach = ((uint)(26)); + w24.XOptions = ((global::Gtk.AttachOptions)(4)); + w24.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA4 = new global::Gtk.Button(); + this.btnA4.WidthRequest = 50; + this.btnA4.HeightRequest = 50; + this.btnA4.CanFocus = true; + this.btnA4.Name = "btnA4"; + this.btnA4.UseUnderline = true; + global::Gtk.Image w25 = new global::Gtk.Image(); + this.btnA4.Image = w25; + this.tbUI.Add(this.btnA4); + global::Gtk.Table.TableChild w26 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA4])); + w26.TopAttach = ((uint)(13)); + w26.BottomAttach = ((uint)(14)); + w26.LeftAttach = ((uint)(26)); + w26.RightAttach = ((uint)(27)); + w26.XOptions = ((global::Gtk.AttachOptions)(4)); + w26.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA5 = new global::Gtk.Button(); + this.btnA5.WidthRequest = 50; + this.btnA5.HeightRequest = 50; + this.btnA5.CanFocus = true; + this.btnA5.Name = "btnA5"; + this.btnA5.UseUnderline = true; + global::Gtk.Image w27 = new global::Gtk.Image(); + this.btnA5.Image = w27; + this.tbUI.Add(this.btnA5); + global::Gtk.Table.TableChild w28 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA5])); + w28.TopAttach = ((uint)(13)); + w28.BottomAttach = ((uint)(14)); + w28.LeftAttach = ((uint)(27)); + w28.RightAttach = ((uint)(28)); + w28.XOptions = ((global::Gtk.AttachOptions)(4)); + w28.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA6 = new global::Gtk.Button(); + this.btnA6.WidthRequest = 50; + this.btnA6.HeightRequest = 50; + this.btnA6.CanFocus = true; + this.btnA6.Name = "btnA6"; + this.btnA6.UseUnderline = true; + global::Gtk.Image w29 = new global::Gtk.Image(); + this.btnA6.Image = w29; + this.tbUI.Add(this.btnA6); + global::Gtk.Table.TableChild w30 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA6])); + w30.TopAttach = ((uint)(13)); + w30.BottomAttach = ((uint)(14)); + w30.LeftAttach = ((uint)(28)); + w30.RightAttach = ((uint)(29)); + w30.XOptions = ((global::Gtk.AttachOptions)(4)); + w30.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA7 = new global::Gtk.Button(); + this.btnA7.WidthRequest = 50; + this.btnA7.HeightRequest = 50; + this.btnA7.CanFocus = true; + this.btnA7.Name = "btnA7"; + this.btnA7.UseUnderline = true; + global::Gtk.Image w31 = new global::Gtk.Image(); + this.btnA7.Image = w31; + this.tbUI.Add(this.btnA7); + global::Gtk.Table.TableChild w32 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA7])); + w32.TopAttach = ((uint)(13)); + w32.BottomAttach = ((uint)(14)); + w32.LeftAttach = ((uint)(29)); + w32.RightAttach = ((uint)(30)); + w32.XOptions = ((global::Gtk.AttachOptions)(4)); + w32.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA8 = new global::Gtk.Button(); + this.btnA8.WidthRequest = 50; + this.btnA8.HeightRequest = 50; + this.btnA8.CanFocus = true; + this.btnA8.Name = "btnA8"; + this.btnA8.UseUnderline = true; + global::Gtk.Image w33 = new global::Gtk.Image(); + this.btnA8.Image = w33; + this.tbUI.Add(this.btnA8); + global::Gtk.Table.TableChild w34 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA8])); + w34.TopAttach = ((uint)(13)); + w34.BottomAttach = ((uint)(14)); + w34.LeftAttach = ((uint)(30)); + w34.RightAttach = ((uint)(31)); + w34.XOptions = ((global::Gtk.AttachOptions)(4)); + w34.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA9 = new global::Gtk.Button(); + this.btnA9.WidthRequest = 50; + this.btnA9.HeightRequest = 50; + this.btnA9.CanFocus = true; + this.btnA9.Name = "btnA9"; + this.btnA9.UseUnderline = true; + global::Gtk.Image w35 = new global::Gtk.Image(); + this.btnA9.Image = w35; + this.tbUI.Add(this.btnA9); + global::Gtk.Table.TableChild w36 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA9])); + w36.TopAttach = ((uint)(13)); + w36.BottomAttach = ((uint)(14)); + w36.LeftAttach = ((uint)(31)); + w36.RightAttach = ((uint)(32)); + w36.XOptions = ((global::Gtk.AttachOptions)(4)); + w36.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnCrafting = new global::Gtk.Button(); + this.btnCrafting.CanFocus = true; + this.btnCrafting.Name = "btnCrafting"; + this.btnCrafting.UseUnderline = true; + this.btnCrafting.Label = "Crafting"; + this.tbUI.Add(this.btnCrafting); + global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnCrafting])); + w37.TopAttach = ((uint)(10)); + w37.BottomAttach = ((uint)(11)); + w37.LeftAttach = ((uint)(23)); + w37.RightAttach = ((uint)(32)); + w37.XOptions = ((global::Gtk.AttachOptions)(4)); + w37.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG1 = new global::Gtk.Button(); + this.btnG1.WidthRequest = 50; + this.btnG1.HeightRequest = 50; + this.btnG1.CanFocus = true; + this.btnG1.Name = "btnG1"; + this.btnG1.UseUnderline = true; + global::Gtk.Image w38 = new global::Gtk.Image(); + this.btnG1.Image = w38; + this.tbUI.Add(this.btnG1); + global::Gtk.Table.TableChild w39 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG1])); + w39.TopAttach = ((uint)(16)); + w39.BottomAttach = ((uint)(17)); + w39.LeftAttach = ((uint)(23)); + w39.RightAttach = ((uint)(24)); + w39.XOptions = ((global::Gtk.AttachOptions)(4)); + w39.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG2 = new global::Gtk.Button(); + this.btnG2.WidthRequest = 50; + this.btnG2.HeightRequest = 50; + this.btnG2.CanFocus = true; + this.btnG2.Name = "btnG2"; + this.btnG2.UseUnderline = true; + global::Gtk.Image w40 = new global::Gtk.Image(); + this.btnG2.Image = w40; + this.tbUI.Add(this.btnG2); + global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG2])); + w41.TopAttach = ((uint)(16)); + w41.BottomAttach = ((uint)(17)); + w41.LeftAttach = ((uint)(24)); + w41.RightAttach = ((uint)(25)); + w41.XOptions = ((global::Gtk.AttachOptions)(4)); + w41.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG3 = new global::Gtk.Button(); + this.btnG3.WidthRequest = 50; + this.btnG3.HeightRequest = 50; + this.btnG3.CanFocus = true; + this.btnG3.Name = "btnG3"; + this.btnG3.UseUnderline = true; + global::Gtk.Image w42 = new global::Gtk.Image(); + this.btnG3.Image = w42; + this.tbUI.Add(this.btnG3); + global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG3])); + w43.TopAttach = ((uint)(16)); + w43.BottomAttach = ((uint)(17)); + w43.LeftAttach = ((uint)(25)); + w43.RightAttach = ((uint)(26)); + w43.XOptions = ((global::Gtk.AttachOptions)(4)); + w43.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG4 = new global::Gtk.Button(); + this.btnG4.WidthRequest = 50; + this.btnG4.HeightRequest = 50; + this.btnG4.CanFocus = true; + this.btnG4.Name = "btnG4"; + this.btnG4.UseUnderline = true; + global::Gtk.Image w44 = new global::Gtk.Image(); + this.btnG4.Image = w44; + this.tbUI.Add(this.btnG4); + global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG4])); + w45.TopAttach = ((uint)(16)); + w45.BottomAttach = ((uint)(17)); + w45.LeftAttach = ((uint)(26)); + w45.RightAttach = ((uint)(27)); + w45.XOptions = ((global::Gtk.AttachOptions)(4)); + w45.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG5 = new global::Gtk.Button(); + this.btnG5.WidthRequest = 50; + this.btnG5.HeightRequest = 50; + this.btnG5.CanFocus = true; + this.btnG5.Name = "btnG5"; + this.btnG5.UseUnderline = true; + global::Gtk.Image w46 = new global::Gtk.Image(); + this.btnG5.Image = w46; + this.tbUI.Add(this.btnG5); + global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG5])); + w47.TopAttach = ((uint)(16)); + w47.BottomAttach = ((uint)(17)); + w47.LeftAttach = ((uint)(27)); + w47.RightAttach = ((uint)(28)); + w47.XOptions = ((global::Gtk.AttachOptions)(4)); + w47.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG6 = new global::Gtk.Button(); + this.btnG6.WidthRequest = 50; + this.btnG6.HeightRequest = 50; + this.btnG6.CanFocus = true; + this.btnG6.Name = "btnG6"; + this.btnG6.UseUnderline = true; + global::Gtk.Image w48 = new global::Gtk.Image(); + this.btnG6.Image = w48; + this.tbUI.Add(this.btnG6); + global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG6])); + w49.TopAttach = ((uint)(16)); + w49.BottomAttach = ((uint)(17)); + w49.LeftAttach = ((uint)(28)); + w49.RightAttach = ((uint)(29)); + w49.XOptions = ((global::Gtk.AttachOptions)(4)); + w49.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG7 = new global::Gtk.Button(); + this.btnG7.WidthRequest = 50; + this.btnG7.HeightRequest = 50; + this.btnG7.CanFocus = true; + this.btnG7.Name = "btnG7"; + this.btnG7.UseUnderline = true; + global::Gtk.Image w50 = new global::Gtk.Image(); + this.btnG7.Image = w50; + this.tbUI.Add(this.btnG7); + global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG7])); + w51.TopAttach = ((uint)(16)); + w51.BottomAttach = ((uint)(17)); + w51.LeftAttach = ((uint)(29)); + w51.RightAttach = ((uint)(30)); + w51.XOptions = ((global::Gtk.AttachOptions)(4)); + w51.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG8 = new global::Gtk.Button(); + this.btnG8.WidthRequest = 50; + this.btnG8.HeightRequest = 50; + this.btnG8.CanFocus = true; + this.btnG8.Name = "btnG8"; + this.btnG8.UseUnderline = true; + global::Gtk.Image w52 = new global::Gtk.Image(); + this.btnG8.Image = w52; + this.tbUI.Add(this.btnG8); + global::Gtk.Table.TableChild w53 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG8])); + w53.TopAttach = ((uint)(16)); + w53.BottomAttach = ((uint)(17)); + w53.LeftAttach = ((uint)(30)); + w53.RightAttach = ((uint)(31)); + w53.XOptions = ((global::Gtk.AttachOptions)(4)); + w53.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG9 = new global::Gtk.Button(); + this.btnG9.WidthRequest = 50; + this.btnG9.HeightRequest = 50; + this.btnG9.CanFocus = true; + this.btnG9.Name = "btnG9"; + this.btnG9.UseUnderline = true; + global::Gtk.Image w54 = new global::Gtk.Image(); + this.btnG9.Image = w54; + this.tbUI.Add(this.btnG9); + global::Gtk.Table.TableChild w55 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG9])); + w55.TopAttach = ((uint)(16)); + w55.BottomAttach = ((uint)(17)); + w55.LeftAttach = ((uint)(31)); + w55.RightAttach = ((uint)(32)); + w55.XOptions = ((global::Gtk.AttachOptions)(4)); + w55.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH1 = new global::Gtk.Button(); + this.btnH1.WidthRequest = 50; + this.btnH1.HeightRequest = 50; + this.btnH1.CanFocus = true; + this.btnH1.Name = "btnH1"; + this.btnH1.UseUnderline = true; + this.btnH1.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w56 = new global::Gtk.Image(); + this.btnH1.Image = w56; + this.tbUI.Add(this.btnH1); + global::Gtk.Table.TableChild w57 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH1])); + w57.TopAttach = ((uint)(14)); + w57.BottomAttach = ((uint)(15)); + w57.LeftAttach = ((uint)(12)); + w57.RightAttach = ((uint)(13)); + w57.XOptions = ((global::Gtk.AttachOptions)(4)); + w57.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH2 = new global::Gtk.Button(); + this.btnH2.WidthRequest = 50; + this.btnH2.HeightRequest = 50; + this.btnH2.CanFocus = true; + this.btnH2.Name = "btnH2"; + this.btnH2.UseUnderline = true; + this.btnH2.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w58 = new global::Gtk.Image(); + this.btnH2.Image = w58; + this.tbUI.Add(this.btnH2); + global::Gtk.Table.TableChild w59 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH2])); + w59.TopAttach = ((uint)(14)); + w59.BottomAttach = ((uint)(15)); + w59.LeftAttach = ((uint)(13)); + w59.RightAttach = ((uint)(14)); + w59.XOptions = ((global::Gtk.AttachOptions)(4)); + w59.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH3 = new global::Gtk.Button(); + this.btnH3.WidthRequest = 50; + this.btnH3.HeightRequest = 50; + this.btnH3.CanFocus = true; + this.btnH3.Name = "btnH3"; + this.btnH3.UseUnderline = true; + this.btnH3.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w60 = new global::Gtk.Image(); + this.btnH3.Image = w60; + this.tbUI.Add(this.btnH3); + global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH3])); + w61.TopAttach = ((uint)(14)); + w61.BottomAttach = ((uint)(15)); + w61.LeftAttach = ((uint)(14)); + w61.RightAttach = ((uint)(15)); + w61.XOptions = ((global::Gtk.AttachOptions)(4)); + w61.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH4 = new global::Gtk.Button(); + this.btnH4.WidthRequest = 50; + this.btnH4.HeightRequest = 50; + this.btnH4.CanFocus = true; + this.btnH4.Name = "btnH4"; + this.btnH4.UseUnderline = true; + this.btnH4.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w62 = new global::Gtk.Image(); + this.btnH4.Image = w62; + this.tbUI.Add(this.btnH4); + global::Gtk.Table.TableChild w63 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH4])); + w63.TopAttach = ((uint)(14)); + w63.BottomAttach = ((uint)(15)); + w63.LeftAttach = ((uint)(15)); + w63.RightAttach = ((uint)(16)); + w63.XOptions = ((global::Gtk.AttachOptions)(4)); + w63.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH5 = new global::Gtk.Button(); + this.btnH5.WidthRequest = 50; + this.btnH5.HeightRequest = 50; + this.btnH5.CanFocus = true; + this.btnH5.Name = "btnH5"; + this.btnH5.UseUnderline = true; + this.btnH5.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w64 = new global::Gtk.Image(); + this.btnH5.Image = w64; + this.tbUI.Add(this.btnH5); + global::Gtk.Table.TableChild w65 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH5])); + w65.TopAttach = ((uint)(14)); + w65.BottomAttach = ((uint)(15)); + w65.LeftAttach = ((uint)(16)); + w65.RightAttach = ((uint)(17)); + w65.XOptions = ((global::Gtk.AttachOptions)(4)); + w65.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH6 = new global::Gtk.Button(); + this.btnH6.WidthRequest = 50; + this.btnH6.HeightRequest = 50; + this.btnH6.CanFocus = true; + this.btnH6.Name = "btnH6"; + this.btnH6.UseUnderline = true; + this.btnH6.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w66 = new global::Gtk.Image(); + this.btnH6.Image = w66; + this.tbUI.Add(this.btnH6); + global::Gtk.Table.TableChild w67 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH6])); + w67.TopAttach = ((uint)(14)); + w67.BottomAttach = ((uint)(15)); + w67.LeftAttach = ((uint)(17)); + w67.RightAttach = ((uint)(18)); + w67.XOptions = ((global::Gtk.AttachOptions)(4)); + w67.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH7 = new global::Gtk.Button(); + this.btnH7.WidthRequest = 50; + this.btnH7.HeightRequest = 50; + this.btnH7.CanFocus = true; + this.btnH7.Name = "btnH7"; + this.btnH7.UseUnderline = true; + this.btnH7.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w68 = new global::Gtk.Image(); + this.btnH7.Image = w68; + this.tbUI.Add(this.btnH7); + global::Gtk.Table.TableChild w69 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH7])); + w69.TopAttach = ((uint)(14)); + w69.BottomAttach = ((uint)(15)); + w69.LeftAttach = ((uint)(18)); + w69.RightAttach = ((uint)(19)); + w69.XOptions = ((global::Gtk.AttachOptions)(4)); + w69.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH8 = new global::Gtk.Button(); + this.btnH8.WidthRequest = 50; + this.btnH8.HeightRequest = 50; + this.btnH8.CanFocus = true; + this.btnH8.Name = "btnH8"; + this.btnH8.UseUnderline = true; + this.btnH8.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w70 = new global::Gtk.Image(); + this.btnH8.Image = w70; + this.tbUI.Add(this.btnH8); + global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH8])); + w71.TopAttach = ((uint)(14)); + w71.BottomAttach = ((uint)(15)); + w71.LeftAttach = ((uint)(19)); + w71.RightAttach = ((uint)(20)); + w71.XOptions = ((global::Gtk.AttachOptions)(4)); + w71.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH9 = new global::Gtk.Button(); + this.btnH9.WidthRequest = 50; + this.btnH9.HeightRequest = 50; + this.btnH9.CanFocus = true; + this.btnH9.Name = "btnH9"; + this.btnH9.UseUnderline = true; + this.btnH9.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w72 = new global::Gtk.Image(); + this.btnH9.Image = w72; + this.tbUI.Add(this.btnH9); + global::Gtk.Table.TableChild w73 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH9])); + w73.TopAttach = ((uint)(14)); + w73.BottomAttach = ((uint)(15)); + w73.LeftAttach = ((uint)(20)); + w73.RightAttach = ((uint)(21)); + w73.XOptions = ((global::Gtk.AttachOptions)(4)); + w73.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI1 = new global::Gtk.Button(); + this.btnI1.WidthRequest = 50; + this.btnI1.HeightRequest = 50; + this.btnI1.CanFocus = true; + this.btnI1.Name = "btnI1"; + this.btnI1.UseUnderline = true; + this.btnI1.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w74 = new global::Gtk.Image(); + this.btnI1.Image = w74; + this.tbUI.Add(this.btnI1); + global::Gtk.Table.TableChild w75 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI1])); + w75.TopAttach = ((uint)(1)); + w75.BottomAttach = ((uint)(2)); + w75.LeftAttach = ((uint)(23)); + w75.RightAttach = ((uint)(24)); + w75.XOptions = ((global::Gtk.AttachOptions)(4)); + w75.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI10 = new global::Gtk.Button(); + this.btnI10.WidthRequest = 50; + this.btnI10.HeightRequest = 50; + this.btnI10.CanFocus = true; + this.btnI10.Name = "btnI10"; + this.btnI10.UseUnderline = true; + this.btnI10.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w76 = new global::Gtk.Image(); + this.btnI10.Image = w76; + this.tbUI.Add(this.btnI10); + global::Gtk.Table.TableChild w77 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI10])); + w77.TopAttach = ((uint)(2)); + w77.BottomAttach = ((uint)(3)); + w77.LeftAttach = ((uint)(23)); + w77.RightAttach = ((uint)(24)); + w77.XOptions = ((global::Gtk.AttachOptions)(4)); + w77.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI11 = new global::Gtk.Button(); + this.btnI11.WidthRequest = 50; + this.btnI11.HeightRequest = 50; + this.btnI11.CanFocus = true; + this.btnI11.Name = "btnI11"; + this.btnI11.UseUnderline = true; + this.btnI11.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w78 = new global::Gtk.Image(); + this.btnI11.Image = w78; + this.tbUI.Add(this.btnI11); + global::Gtk.Table.TableChild w79 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI11])); + w79.TopAttach = ((uint)(2)); + w79.BottomAttach = ((uint)(3)); + w79.LeftAttach = ((uint)(24)); + w79.RightAttach = ((uint)(25)); + w79.XOptions = ((global::Gtk.AttachOptions)(4)); + w79.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI12 = new global::Gtk.Button(); + this.btnI12.WidthRequest = 50; + this.btnI12.HeightRequest = 50; + this.btnI12.CanFocus = true; + this.btnI12.Name = "btnI12"; + this.btnI12.UseUnderline = true; + this.btnI12.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w80 = new global::Gtk.Image(); + this.btnI12.Image = w80; + this.tbUI.Add(this.btnI12); + global::Gtk.Table.TableChild w81 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI12])); + w81.TopAttach = ((uint)(2)); + w81.BottomAttach = ((uint)(3)); + w81.LeftAttach = ((uint)(25)); + w81.RightAttach = ((uint)(26)); + w81.XOptions = ((global::Gtk.AttachOptions)(4)); + w81.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI13 = new global::Gtk.Button(); + this.btnI13.WidthRequest = 50; + this.btnI13.HeightRequest = 50; + this.btnI13.CanFocus = true; + this.btnI13.Name = "btnI13"; + this.btnI13.UseUnderline = true; + this.btnI13.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w82 = new global::Gtk.Image(); + this.btnI13.Image = w82; + this.tbUI.Add(this.btnI13); + global::Gtk.Table.TableChild w83 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI13])); + w83.TopAttach = ((uint)(2)); + w83.BottomAttach = ((uint)(3)); + w83.LeftAttach = ((uint)(26)); + w83.RightAttach = ((uint)(27)); + w83.XOptions = ((global::Gtk.AttachOptions)(4)); + w83.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI14 = new global::Gtk.Button(); + this.btnI14.WidthRequest = 50; + this.btnI14.HeightRequest = 50; + this.btnI14.CanFocus = true; + this.btnI14.Name = "btnI14"; + this.btnI14.UseUnderline = true; + this.btnI14.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w84 = new global::Gtk.Image(); + this.btnI14.Image = w84; + this.tbUI.Add(this.btnI14); + global::Gtk.Table.TableChild w85 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI14])); + w85.TopAttach = ((uint)(2)); + w85.BottomAttach = ((uint)(3)); + w85.LeftAttach = ((uint)(27)); + w85.RightAttach = ((uint)(28)); + w85.XOptions = ((global::Gtk.AttachOptions)(4)); + w85.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI15 = new global::Gtk.Button(); + this.btnI15.WidthRequest = 50; + this.btnI15.HeightRequest = 50; + this.btnI15.CanFocus = true; + this.btnI15.Name = "btnI15"; + this.btnI15.UseUnderline = true; + this.btnI15.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w86 = new global::Gtk.Image(); + this.btnI15.Image = w86; + this.tbUI.Add(this.btnI15); + global::Gtk.Table.TableChild w87 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI15])); + w87.TopAttach = ((uint)(2)); + w87.BottomAttach = ((uint)(3)); + w87.LeftAttach = ((uint)(28)); + w87.RightAttach = ((uint)(29)); + w87.XOptions = ((global::Gtk.AttachOptions)(4)); + w87.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI16 = new global::Gtk.Button(); + this.btnI16.WidthRequest = 50; + this.btnI16.HeightRequest = 50; + this.btnI16.CanFocus = true; + this.btnI16.Name = "btnI16"; + this.btnI16.UseUnderline = true; + this.btnI16.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w88 = new global::Gtk.Image(); + this.btnI16.Image = w88; + this.tbUI.Add(this.btnI16); + global::Gtk.Table.TableChild w89 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI16])); + w89.TopAttach = ((uint)(2)); + w89.BottomAttach = ((uint)(3)); + w89.LeftAttach = ((uint)(29)); + w89.RightAttach = ((uint)(30)); + w89.XOptions = ((global::Gtk.AttachOptions)(4)); + w89.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI17 = new global::Gtk.Button(); + this.btnI17.WidthRequest = 50; + this.btnI17.HeightRequest = 50; + this.btnI17.CanFocus = true; + this.btnI17.Name = "btnI17"; + this.btnI17.UseUnderline = true; + this.btnI17.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w90 = new global::Gtk.Image(); + this.btnI17.Image = w90; + this.tbUI.Add(this.btnI17); + global::Gtk.Table.TableChild w91 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI17])); + w91.TopAttach = ((uint)(2)); + w91.BottomAttach = ((uint)(3)); + w91.LeftAttach = ((uint)(30)); + w91.RightAttach = ((uint)(31)); + w91.XOptions = ((global::Gtk.AttachOptions)(4)); + w91.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI18 = new global::Gtk.Button(); + this.btnI18.WidthRequest = 50; + this.btnI18.HeightRequest = 50; + this.btnI18.CanFocus = true; + this.btnI18.Name = "btnI18"; + this.btnI18.UseUnderline = true; + this.btnI18.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w92 = new global::Gtk.Image(); + this.btnI18.Image = w92; + this.tbUI.Add(this.btnI18); + global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI18])); + w93.TopAttach = ((uint)(2)); + w93.BottomAttach = ((uint)(3)); + w93.LeftAttach = ((uint)(31)); + w93.RightAttach = ((uint)(32)); + w93.XOptions = ((global::Gtk.AttachOptions)(4)); + w93.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI19 = new global::Gtk.Button(); + this.btnI19.WidthRequest = 50; + this.btnI19.HeightRequest = 50; + this.btnI19.CanFocus = true; + this.btnI19.Name = "btnI19"; + this.btnI19.UseUnderline = true; + this.btnI19.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w94 = new global::Gtk.Image(); + this.btnI19.Image = w94; + this.tbUI.Add(this.btnI19); + global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI19])); + w95.TopAttach = ((uint)(3)); + w95.BottomAttach = ((uint)(4)); + w95.LeftAttach = ((uint)(23)); + w95.RightAttach = ((uint)(24)); + w95.XOptions = ((global::Gtk.AttachOptions)(4)); + w95.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI2 = new global::Gtk.Button(); + this.btnI2.WidthRequest = 50; + this.btnI2.HeightRequest = 50; + this.btnI2.CanFocus = true; + this.btnI2.Name = "btnI2"; + this.btnI2.UseUnderline = true; + this.btnI2.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w96 = new global::Gtk.Image(); + this.btnI2.Image = w96; + this.tbUI.Add(this.btnI2); + global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI2])); + w97.TopAttach = ((uint)(1)); + w97.BottomAttach = ((uint)(2)); + w97.LeftAttach = ((uint)(24)); + w97.RightAttach = ((uint)(25)); + w97.XOptions = ((global::Gtk.AttachOptions)(4)); + w97.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI20 = new global::Gtk.Button(); + this.btnI20.WidthRequest = 50; + this.btnI20.HeightRequest = 50; + this.btnI20.CanFocus = true; + this.btnI20.Name = "btnI20"; + this.btnI20.UseUnderline = true; + this.btnI20.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w98 = new global::Gtk.Image(); + this.btnI20.Image = w98; + this.tbUI.Add(this.btnI20); + global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI20])); + w99.TopAttach = ((uint)(3)); + w99.BottomAttach = ((uint)(4)); + w99.LeftAttach = ((uint)(24)); + w99.RightAttach = ((uint)(25)); + w99.XOptions = ((global::Gtk.AttachOptions)(4)); + w99.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI21 = new global::Gtk.Button(); + this.btnI21.WidthRequest = 50; + this.btnI21.HeightRequest = 50; + this.btnI21.CanFocus = true; + this.btnI21.Name = "btnI21"; + this.btnI21.UseUnderline = true; + this.btnI21.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w100 = new global::Gtk.Image(); + this.btnI21.Image = w100; + this.tbUI.Add(this.btnI21); + global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI21])); + w101.TopAttach = ((uint)(3)); + w101.BottomAttach = ((uint)(4)); + w101.LeftAttach = ((uint)(25)); + w101.RightAttach = ((uint)(26)); + w101.XOptions = ((global::Gtk.AttachOptions)(4)); + w101.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI22 = new global::Gtk.Button(); + this.btnI22.WidthRequest = 50; + this.btnI22.HeightRequest = 50; + this.btnI22.CanFocus = true; + this.btnI22.Name = "btnI22"; + this.btnI22.UseUnderline = true; + this.btnI22.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w102 = new global::Gtk.Image(); + this.btnI22.Image = w102; + this.tbUI.Add(this.btnI22); + global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI22])); + w103.TopAttach = ((uint)(3)); + w103.BottomAttach = ((uint)(4)); + w103.LeftAttach = ((uint)(26)); + w103.RightAttach = ((uint)(27)); + w103.XOptions = ((global::Gtk.AttachOptions)(4)); + w103.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI23 = new global::Gtk.Button(); + this.btnI23.WidthRequest = 50; + this.btnI23.HeightRequest = 50; + this.btnI23.CanFocus = true; + this.btnI23.Name = "btnI23"; + this.btnI23.UseUnderline = true; + this.btnI23.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w104 = new global::Gtk.Image(); + this.btnI23.Image = w104; + this.tbUI.Add(this.btnI23); + global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI23])); + w105.TopAttach = ((uint)(3)); + w105.BottomAttach = ((uint)(4)); + w105.LeftAttach = ((uint)(27)); + w105.RightAttach = ((uint)(28)); + w105.XOptions = ((global::Gtk.AttachOptions)(4)); + w105.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI24 = new global::Gtk.Button(); + this.btnI24.WidthRequest = 50; + this.btnI24.HeightRequest = 50; + this.btnI24.CanFocus = true; + this.btnI24.Name = "btnI24"; + this.btnI24.UseUnderline = true; + this.btnI24.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w106 = new global::Gtk.Image(); + this.btnI24.Image = w106; + this.tbUI.Add(this.btnI24); + global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI24])); + w107.TopAttach = ((uint)(3)); + w107.BottomAttach = ((uint)(4)); + w107.LeftAttach = ((uint)(28)); + w107.RightAttach = ((uint)(29)); + w107.XOptions = ((global::Gtk.AttachOptions)(4)); + w107.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI25 = new global::Gtk.Button(); + this.btnI25.WidthRequest = 50; + this.btnI25.HeightRequest = 50; + this.btnI25.CanFocus = true; + this.btnI25.Name = "btnI25"; + this.btnI25.UseUnderline = true; + this.btnI25.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w108 = new global::Gtk.Image(); + this.btnI25.Image = w108; + this.tbUI.Add(this.btnI25); + global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI25])); + w109.TopAttach = ((uint)(3)); + w109.BottomAttach = ((uint)(4)); + w109.LeftAttach = ((uint)(29)); + w109.RightAttach = ((uint)(30)); + w109.XOptions = ((global::Gtk.AttachOptions)(4)); + w109.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI26 = new global::Gtk.Button(); + this.btnI26.WidthRequest = 50; + this.btnI26.HeightRequest = 50; + this.btnI26.CanFocus = true; + this.btnI26.Name = "btnI26"; + this.btnI26.UseUnderline = true; + this.btnI26.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w110 = new global::Gtk.Image(); + this.btnI26.Image = w110; + this.tbUI.Add(this.btnI26); + global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI26])); + w111.TopAttach = ((uint)(3)); + w111.BottomAttach = ((uint)(4)); + w111.LeftAttach = ((uint)(30)); + w111.RightAttach = ((uint)(31)); + w111.XOptions = ((global::Gtk.AttachOptions)(4)); + w111.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI27 = new global::Gtk.Button(); + this.btnI27.WidthRequest = 50; + this.btnI27.HeightRequest = 50; + this.btnI27.CanFocus = true; + this.btnI27.Name = "btnI27"; + this.btnI27.UseUnderline = true; + this.btnI27.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w112 = new global::Gtk.Image(); + this.btnI27.Image = w112; + this.tbUI.Add(this.btnI27); + global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI27])); + w113.TopAttach = ((uint)(3)); + w113.BottomAttach = ((uint)(4)); + w113.LeftAttach = ((uint)(31)); + w113.RightAttach = ((uint)(32)); + w113.XOptions = ((global::Gtk.AttachOptions)(4)); + w113.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI28 = new global::Gtk.Button(); + this.btnI28.WidthRequest = 50; + this.btnI28.HeightRequest = 50; + this.btnI28.CanFocus = true; + this.btnI28.Name = "btnI28"; + this.btnI28.UseUnderline = true; + this.btnI28.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w114 = new global::Gtk.Image(); + this.btnI28.Image = w114; + this.tbUI.Add(this.btnI28); + global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI28])); + w115.TopAttach = ((uint)(4)); + w115.BottomAttach = ((uint)(5)); + w115.LeftAttach = ((uint)(23)); + w115.RightAttach = ((uint)(24)); + w115.XOptions = ((global::Gtk.AttachOptions)(4)); + w115.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI29 = new global::Gtk.Button(); + this.btnI29.WidthRequest = 50; + this.btnI29.HeightRequest = 50; + this.btnI29.CanFocus = true; + this.btnI29.Name = "btnI29"; + this.btnI29.UseUnderline = true; + this.btnI29.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w116 = new global::Gtk.Image(); + this.btnI29.Image = w116; + this.tbUI.Add(this.btnI29); + global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI29])); + w117.TopAttach = ((uint)(4)); + w117.BottomAttach = ((uint)(5)); + w117.LeftAttach = ((uint)(24)); + w117.RightAttach = ((uint)(25)); + w117.XOptions = ((global::Gtk.AttachOptions)(4)); + w117.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI3 = new global::Gtk.Button(); + this.btnI3.WidthRequest = 50; + this.btnI3.HeightRequest = 50; + this.btnI3.CanFocus = true; + this.btnI3.Name = "btnI3"; + this.btnI3.UseUnderline = true; + this.btnI3.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w118 = new global::Gtk.Image(); + this.btnI3.Image = w118; + this.tbUI.Add(this.btnI3); + global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI3])); + w119.TopAttach = ((uint)(1)); + w119.BottomAttach = ((uint)(2)); + w119.LeftAttach = ((uint)(25)); + w119.RightAttach = ((uint)(26)); + w119.XOptions = ((global::Gtk.AttachOptions)(4)); + w119.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI30 = new global::Gtk.Button(); + this.btnI30.WidthRequest = 50; + this.btnI30.HeightRequest = 50; + this.btnI30.CanFocus = true; + this.btnI30.Name = "btnI30"; + this.btnI30.UseUnderline = true; + this.btnI30.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w120 = new global::Gtk.Image(); + this.btnI30.Image = w120; + this.tbUI.Add(this.btnI30); + global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI30])); + w121.TopAttach = ((uint)(4)); + w121.BottomAttach = ((uint)(5)); + w121.LeftAttach = ((uint)(25)); + w121.RightAttach = ((uint)(26)); + w121.XOptions = ((global::Gtk.AttachOptions)(4)); + w121.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI31 = new global::Gtk.Button(); + this.btnI31.WidthRequest = 50; + this.btnI31.HeightRequest = 50; + this.btnI31.CanFocus = true; + this.btnI31.Name = "btnI31"; + this.btnI31.UseUnderline = true; + this.btnI31.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w122 = new global::Gtk.Image(); + this.btnI31.Image = w122; + this.tbUI.Add(this.btnI31); + global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI31])); + w123.TopAttach = ((uint)(4)); + w123.BottomAttach = ((uint)(5)); + w123.LeftAttach = ((uint)(26)); + w123.RightAttach = ((uint)(27)); + w123.XOptions = ((global::Gtk.AttachOptions)(4)); + w123.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI32 = new global::Gtk.Button(); + this.btnI32.WidthRequest = 50; + this.btnI32.HeightRequest = 50; + this.btnI32.CanFocus = true; + this.btnI32.Name = "btnI32"; + this.btnI32.UseUnderline = true; + this.btnI32.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w124 = new global::Gtk.Image(); + this.btnI32.Image = w124; + this.tbUI.Add(this.btnI32); + global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI32])); + w125.TopAttach = ((uint)(4)); + w125.BottomAttach = ((uint)(5)); + w125.LeftAttach = ((uint)(27)); + w125.RightAttach = ((uint)(28)); + w125.XOptions = ((global::Gtk.AttachOptions)(4)); + w125.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI33 = new global::Gtk.Button(); + this.btnI33.WidthRequest = 50; + this.btnI33.HeightRequest = 50; + this.btnI33.CanFocus = true; + this.btnI33.Name = "btnI33"; + this.btnI33.UseUnderline = true; + this.btnI33.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w126 = new global::Gtk.Image(); + this.btnI33.Image = w126; + this.tbUI.Add(this.btnI33); + global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI33])); + w127.TopAttach = ((uint)(4)); + w127.BottomAttach = ((uint)(5)); + w127.LeftAttach = ((uint)(28)); + w127.RightAttach = ((uint)(29)); + w127.XOptions = ((global::Gtk.AttachOptions)(4)); + w127.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI34 = new global::Gtk.Button(); + this.btnI34.WidthRequest = 50; + this.btnI34.HeightRequest = 50; + this.btnI34.CanFocus = true; + this.btnI34.Name = "btnI34"; + this.btnI34.UseUnderline = true; + this.btnI34.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w128 = new global::Gtk.Image(); + this.btnI34.Image = w128; + this.tbUI.Add(this.btnI34); + global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI34])); + w129.TopAttach = ((uint)(4)); + w129.BottomAttach = ((uint)(5)); + w129.LeftAttach = ((uint)(29)); + w129.RightAttach = ((uint)(30)); + w129.XOptions = ((global::Gtk.AttachOptions)(4)); + w129.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI35 = new global::Gtk.Button(); + this.btnI35.WidthRequest = 50; + this.btnI35.HeightRequest = 50; + this.btnI35.CanFocus = true; + this.btnI35.Name = "btnI35"; + this.btnI35.UseUnderline = true; + this.btnI35.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w130 = new global::Gtk.Image(); + this.btnI35.Image = w130; + this.tbUI.Add(this.btnI35); + global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI35])); + w131.TopAttach = ((uint)(4)); + w131.BottomAttach = ((uint)(5)); + w131.LeftAttach = ((uint)(30)); + w131.RightAttach = ((uint)(31)); + w131.XOptions = ((global::Gtk.AttachOptions)(4)); + w131.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI36 = new global::Gtk.Button(); + this.btnI36.WidthRequest = 50; + this.btnI36.HeightRequest = 50; + this.btnI36.CanFocus = true; + this.btnI36.Name = "btnI36"; + this.btnI36.UseUnderline = true; + this.btnI36.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w132 = new global::Gtk.Image(); + this.btnI36.Image = w132; + this.tbUI.Add(this.btnI36); + global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI36])); + w133.TopAttach = ((uint)(4)); + w133.BottomAttach = ((uint)(5)); + w133.LeftAttach = ((uint)(31)); + w133.RightAttach = ((uint)(32)); + w133.XOptions = ((global::Gtk.AttachOptions)(4)); + w133.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI37 = new global::Gtk.Button(); + this.btnI37.WidthRequest = 50; + this.btnI37.HeightRequest = 50; + this.btnI37.CanFocus = true; + this.btnI37.Name = "btnI37"; + this.btnI37.UseUnderline = true; + this.btnI37.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w134 = new global::Gtk.Image(); + this.btnI37.Image = w134; + this.tbUI.Add(this.btnI37); + global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI37])); + w135.TopAttach = ((uint)(5)); + w135.BottomAttach = ((uint)(6)); + w135.LeftAttach = ((uint)(23)); + w135.RightAttach = ((uint)(24)); + w135.XOptions = ((global::Gtk.AttachOptions)(4)); + w135.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI38 = new global::Gtk.Button(); + this.btnI38.WidthRequest = 50; + this.btnI38.HeightRequest = 50; + this.btnI38.CanFocus = true; + this.btnI38.Name = "btnI38"; + this.btnI38.UseUnderline = true; + this.btnI38.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w136 = new global::Gtk.Image(); + this.btnI38.Image = w136; + this.tbUI.Add(this.btnI38); + global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI38])); + w137.TopAttach = ((uint)(5)); + w137.BottomAttach = ((uint)(6)); + w137.LeftAttach = ((uint)(24)); + w137.RightAttach = ((uint)(25)); + w137.XOptions = ((global::Gtk.AttachOptions)(4)); + w137.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI39 = new global::Gtk.Button(); + this.btnI39.WidthRequest = 50; + this.btnI39.HeightRequest = 50; + this.btnI39.CanFocus = true; + this.btnI39.Name = "btnI39"; + this.btnI39.UseUnderline = true; + this.btnI39.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w138 = new global::Gtk.Image(); + this.btnI39.Image = w138; + this.tbUI.Add(this.btnI39); + global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI39])); + w139.TopAttach = ((uint)(5)); + w139.BottomAttach = ((uint)(6)); + w139.LeftAttach = ((uint)(25)); + w139.RightAttach = ((uint)(26)); + w139.XOptions = ((global::Gtk.AttachOptions)(4)); + w139.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI4 = new global::Gtk.Button(); + this.btnI4.WidthRequest = 50; + this.btnI4.HeightRequest = 50; + this.btnI4.CanFocus = true; + this.btnI4.Name = "btnI4"; + this.btnI4.UseUnderline = true; + this.btnI4.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w140 = new global::Gtk.Image(); + this.btnI4.Image = w140; + this.tbUI.Add(this.btnI4); + global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI4])); + w141.TopAttach = ((uint)(1)); + w141.BottomAttach = ((uint)(2)); + w141.LeftAttach = ((uint)(26)); + w141.RightAttach = ((uint)(27)); + w141.XOptions = ((global::Gtk.AttachOptions)(4)); + w141.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI40 = new global::Gtk.Button(); + this.btnI40.WidthRequest = 50; + this.btnI40.HeightRequest = 50; + this.btnI40.CanFocus = true; + this.btnI40.Name = "btnI40"; + this.btnI40.UseUnderline = true; + this.btnI40.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w142 = new global::Gtk.Image(); + this.btnI40.Image = w142; + this.tbUI.Add(this.btnI40); + global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI40])); + w143.TopAttach = ((uint)(5)); + w143.BottomAttach = ((uint)(6)); + w143.LeftAttach = ((uint)(26)); + w143.RightAttach = ((uint)(27)); + w143.XOptions = ((global::Gtk.AttachOptions)(4)); + w143.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI41 = new global::Gtk.Button(); + this.btnI41.WidthRequest = 50; + this.btnI41.HeightRequest = 50; + this.btnI41.CanFocus = true; + this.btnI41.Name = "btnI41"; + this.btnI41.UseUnderline = true; + this.btnI41.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w144 = new global::Gtk.Image(); + this.btnI41.Image = w144; + this.tbUI.Add(this.btnI41); + global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI41])); + w145.TopAttach = ((uint)(5)); + w145.BottomAttach = ((uint)(6)); + w145.LeftAttach = ((uint)(27)); + w145.RightAttach = ((uint)(28)); + w145.XOptions = ((global::Gtk.AttachOptions)(4)); + w145.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI42 = new global::Gtk.Button(); + this.btnI42.WidthRequest = 50; + this.btnI42.HeightRequest = 50; + this.btnI42.CanFocus = true; + this.btnI42.Name = "btnI42"; + this.btnI42.UseUnderline = true; + this.btnI42.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w146 = new global::Gtk.Image(); + this.btnI42.Image = w146; + this.tbUI.Add(this.btnI42); + global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI42])); + w147.TopAttach = ((uint)(5)); + w147.BottomAttach = ((uint)(6)); + w147.LeftAttach = ((uint)(28)); + w147.RightAttach = ((uint)(29)); + w147.XOptions = ((global::Gtk.AttachOptions)(4)); + w147.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI43 = new global::Gtk.Button(); + this.btnI43.WidthRequest = 50; + this.btnI43.HeightRequest = 50; + this.btnI43.CanFocus = true; + this.btnI43.Name = "btnI43"; + this.btnI43.UseUnderline = true; + this.btnI43.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w148 = new global::Gtk.Image(); + this.btnI43.Image = w148; + this.tbUI.Add(this.btnI43); + global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI43])); + w149.TopAttach = ((uint)(5)); + w149.BottomAttach = ((uint)(6)); + w149.LeftAttach = ((uint)(29)); + w149.RightAttach = ((uint)(30)); + w149.XOptions = ((global::Gtk.AttachOptions)(4)); + w149.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI44 = new global::Gtk.Button(); + this.btnI44.WidthRequest = 50; + this.btnI44.HeightRequest = 50; + this.btnI44.CanFocus = true; + this.btnI44.Name = "btnI44"; + this.btnI44.UseUnderline = true; + this.btnI44.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w150 = new global::Gtk.Image(); + this.btnI44.Image = w150; + this.tbUI.Add(this.btnI44); + global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI44])); + w151.TopAttach = ((uint)(5)); + w151.BottomAttach = ((uint)(6)); + w151.LeftAttach = ((uint)(30)); + w151.RightAttach = ((uint)(31)); + w151.XOptions = ((global::Gtk.AttachOptions)(4)); + w151.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI45 = new global::Gtk.Button(); + this.btnI45.WidthRequest = 50; + this.btnI45.HeightRequest = 50; + this.btnI45.CanFocus = true; + this.btnI45.Name = "btnI45"; + this.btnI45.UseUnderline = true; + this.btnI45.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w152 = new global::Gtk.Image(); + this.btnI45.Image = w152; + this.tbUI.Add(this.btnI45); + global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI45])); + w153.TopAttach = ((uint)(5)); + w153.BottomAttach = ((uint)(6)); + w153.LeftAttach = ((uint)(31)); + w153.RightAttach = ((uint)(32)); + w153.XOptions = ((global::Gtk.AttachOptions)(4)); + w153.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI46 = new global::Gtk.Button(); + this.btnI46.WidthRequest = 50; + this.btnI46.HeightRequest = 50; + this.btnI46.CanFocus = true; + this.btnI46.Name = "btnI46"; + this.btnI46.UseUnderline = true; + this.btnI46.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w154 = new global::Gtk.Image(); + this.btnI46.Image = w154; + this.tbUI.Add(this.btnI46); + global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI46])); + w155.TopAttach = ((uint)(6)); + w155.BottomAttach = ((uint)(7)); + w155.LeftAttach = ((uint)(23)); + w155.RightAttach = ((uint)(24)); + w155.XOptions = ((global::Gtk.AttachOptions)(4)); + w155.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI47 = new global::Gtk.Button(); + this.btnI47.WidthRequest = 50; + this.btnI47.HeightRequest = 50; + this.btnI47.CanFocus = true; + this.btnI47.Name = "btnI47"; + this.btnI47.UseUnderline = true; + this.btnI47.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w156 = new global::Gtk.Image(); + this.btnI47.Image = w156; + this.tbUI.Add(this.btnI47); + global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI47])); + w157.TopAttach = ((uint)(6)); + w157.BottomAttach = ((uint)(7)); + w157.LeftAttach = ((uint)(24)); + w157.RightAttach = ((uint)(25)); + w157.XOptions = ((global::Gtk.AttachOptions)(4)); + w157.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI48 = new global::Gtk.Button(); + this.btnI48.WidthRequest = 50; + this.btnI48.HeightRequest = 50; + this.btnI48.CanFocus = true; + this.btnI48.Name = "btnI48"; + this.btnI48.UseUnderline = true; + this.btnI48.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w158 = new global::Gtk.Image(); + this.btnI48.Image = w158; + this.tbUI.Add(this.btnI48); + global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI48])); + w159.TopAttach = ((uint)(6)); + w159.BottomAttach = ((uint)(7)); + w159.LeftAttach = ((uint)(25)); + w159.RightAttach = ((uint)(26)); + w159.XOptions = ((global::Gtk.AttachOptions)(4)); + w159.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI49 = new global::Gtk.Button(); + this.btnI49.WidthRequest = 50; + this.btnI49.HeightRequest = 50; + this.btnI49.CanFocus = true; + this.btnI49.Name = "btnI49"; + this.btnI49.UseUnderline = true; + this.btnI49.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w160 = new global::Gtk.Image(); + this.btnI49.Image = w160; + this.tbUI.Add(this.btnI49); + global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI49])); + w161.TopAttach = ((uint)(6)); + w161.BottomAttach = ((uint)(7)); + w161.LeftAttach = ((uint)(26)); + w161.RightAttach = ((uint)(27)); + w161.XOptions = ((global::Gtk.AttachOptions)(4)); + w161.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI5 = new global::Gtk.Button(); + this.btnI5.WidthRequest = 50; + this.btnI5.HeightRequest = 50; + this.btnI5.CanFocus = true; + this.btnI5.Name = "btnI5"; + this.btnI5.UseUnderline = true; + this.btnI5.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w162 = new global::Gtk.Image(); + this.btnI5.Image = w162; + this.tbUI.Add(this.btnI5); + global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI5])); + w163.TopAttach = ((uint)(1)); + w163.BottomAttach = ((uint)(2)); + w163.LeftAttach = ((uint)(27)); + w163.RightAttach = ((uint)(28)); + w163.XOptions = ((global::Gtk.AttachOptions)(4)); + w163.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI50 = new global::Gtk.Button(); + this.btnI50.WidthRequest = 50; + this.btnI50.HeightRequest = 50; + this.btnI50.CanFocus = true; + this.btnI50.Name = "btnI50"; + this.btnI50.UseUnderline = true; + this.btnI50.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w164 = new global::Gtk.Image(); + this.btnI50.Image = w164; + this.tbUI.Add(this.btnI50); + global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI50])); + w165.TopAttach = ((uint)(6)); + w165.BottomAttach = ((uint)(7)); + w165.LeftAttach = ((uint)(27)); + w165.RightAttach = ((uint)(28)); + w165.XOptions = ((global::Gtk.AttachOptions)(4)); + w165.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI51 = new global::Gtk.Button(); + this.btnI51.WidthRequest = 50; + this.btnI51.HeightRequest = 50; + this.btnI51.CanFocus = true; + this.btnI51.Name = "btnI51"; + this.btnI51.UseUnderline = true; + this.btnI51.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w166 = new global::Gtk.Image(); + this.btnI51.Image = w166; + this.tbUI.Add(this.btnI51); + global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI51])); + w167.TopAttach = ((uint)(6)); + w167.BottomAttach = ((uint)(7)); + w167.LeftAttach = ((uint)(28)); + w167.RightAttach = ((uint)(29)); + w167.XOptions = ((global::Gtk.AttachOptions)(4)); + w167.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI52 = new global::Gtk.Button(); + this.btnI52.WidthRequest = 50; + this.btnI52.HeightRequest = 50; + this.btnI52.CanFocus = true; + this.btnI52.Name = "btnI52"; + this.btnI52.UseUnderline = true; + this.btnI52.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w168 = new global::Gtk.Image(); + this.btnI52.Image = w168; + this.tbUI.Add(this.btnI52); + global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI52])); + w169.TopAttach = ((uint)(6)); + w169.BottomAttach = ((uint)(7)); + w169.LeftAttach = ((uint)(29)); + w169.RightAttach = ((uint)(30)); + w169.XOptions = ((global::Gtk.AttachOptions)(4)); + w169.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI53 = new global::Gtk.Button(); + this.btnI53.WidthRequest = 50; + this.btnI53.HeightRequest = 50; + this.btnI53.CanFocus = true; + this.btnI53.Name = "btnI53"; + this.btnI53.UseUnderline = true; + this.btnI53.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w170 = new global::Gtk.Image(); + this.btnI53.Image = w170; + this.tbUI.Add(this.btnI53); + global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI53])); + w171.TopAttach = ((uint)(6)); + w171.BottomAttach = ((uint)(7)); + w171.LeftAttach = ((uint)(30)); + w171.RightAttach = ((uint)(31)); + w171.XOptions = ((global::Gtk.AttachOptions)(4)); + w171.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI54 = new global::Gtk.Button(); + this.btnI54.WidthRequest = 50; + this.btnI54.HeightRequest = 50; + this.btnI54.CanFocus = true; + this.btnI54.Name = "btnI54"; + this.btnI54.UseUnderline = true; + this.btnI54.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w172 = new global::Gtk.Image(); + this.btnI54.Image = w172; + this.tbUI.Add(this.btnI54); + global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI54])); + w173.TopAttach = ((uint)(6)); + w173.BottomAttach = ((uint)(7)); + w173.LeftAttach = ((uint)(31)); + w173.RightAttach = ((uint)(32)); + w173.XOptions = ((global::Gtk.AttachOptions)(4)); + w173.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI55 = new global::Gtk.Button(); + this.btnI55.WidthRequest = 50; + this.btnI55.HeightRequest = 50; + this.btnI55.CanFocus = true; + this.btnI55.Name = "btnI55"; + this.btnI55.UseUnderline = true; + this.btnI55.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w174 = new global::Gtk.Image(); + this.btnI55.Image = w174; + this.tbUI.Add(this.btnI55); + global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI55])); + w175.TopAttach = ((uint)(7)); + w175.BottomAttach = ((uint)(8)); + w175.LeftAttach = ((uint)(23)); + w175.RightAttach = ((uint)(24)); + w175.XOptions = ((global::Gtk.AttachOptions)(4)); + w175.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI56 = new global::Gtk.Button(); + this.btnI56.WidthRequest = 50; + this.btnI56.HeightRequest = 50; + this.btnI56.CanFocus = true; + this.btnI56.Name = "btnI56"; + this.btnI56.UseUnderline = true; + this.btnI56.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w176 = new global::Gtk.Image(); + this.btnI56.Image = w176; + this.tbUI.Add(this.btnI56); + global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI56])); + w177.TopAttach = ((uint)(7)); + w177.BottomAttach = ((uint)(8)); + w177.LeftAttach = ((uint)(24)); + w177.RightAttach = ((uint)(25)); + w177.XOptions = ((global::Gtk.AttachOptions)(4)); + w177.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI57 = new global::Gtk.Button(); + this.btnI57.WidthRequest = 50; + this.btnI57.HeightRequest = 50; + this.btnI57.CanFocus = true; + this.btnI57.Name = "btnI57"; + this.btnI57.UseUnderline = true; + this.btnI57.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w178 = new global::Gtk.Image(); + this.btnI57.Image = w178; + this.tbUI.Add(this.btnI57); + global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI57])); + w179.TopAttach = ((uint)(7)); + w179.BottomAttach = ((uint)(8)); + w179.LeftAttach = ((uint)(25)); + w179.RightAttach = ((uint)(26)); + w179.XOptions = ((global::Gtk.AttachOptions)(4)); + w179.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI58 = new global::Gtk.Button(); + this.btnI58.WidthRequest = 50; + this.btnI58.HeightRequest = 50; + this.btnI58.CanFocus = true; + this.btnI58.Name = "btnI58"; + this.btnI58.UseUnderline = true; + this.btnI58.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w180 = new global::Gtk.Image(); + this.btnI58.Image = w180; + this.tbUI.Add(this.btnI58); + global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI58])); + w181.TopAttach = ((uint)(7)); + w181.BottomAttach = ((uint)(8)); + w181.LeftAttach = ((uint)(26)); + w181.RightAttach = ((uint)(27)); + w181.XOptions = ((global::Gtk.AttachOptions)(4)); + w181.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI59 = new global::Gtk.Button(); + this.btnI59.WidthRequest = 50; + this.btnI59.HeightRequest = 50; + this.btnI59.CanFocus = true; + this.btnI59.Name = "btnI59"; + this.btnI59.UseUnderline = true; + this.btnI59.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w182 = new global::Gtk.Image(); + this.btnI59.Image = w182; + this.tbUI.Add(this.btnI59); + global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI59])); + w183.TopAttach = ((uint)(7)); + w183.BottomAttach = ((uint)(8)); + w183.LeftAttach = ((uint)(27)); + w183.RightAttach = ((uint)(28)); + w183.XOptions = ((global::Gtk.AttachOptions)(4)); + w183.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI6 = new global::Gtk.Button(); + this.btnI6.WidthRequest = 50; + this.btnI6.HeightRequest = 50; + this.btnI6.CanFocus = true; + this.btnI6.Name = "btnI6"; + this.btnI6.UseUnderline = true; + this.btnI6.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w184 = new global::Gtk.Image(); + this.btnI6.Image = w184; + this.tbUI.Add(this.btnI6); + global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI6])); + w185.TopAttach = ((uint)(1)); + w185.BottomAttach = ((uint)(2)); + w185.LeftAttach = ((uint)(28)); + w185.RightAttach = ((uint)(29)); + w185.XOptions = ((global::Gtk.AttachOptions)(4)); + w185.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI60 = new global::Gtk.Button(); + this.btnI60.WidthRequest = 50; + this.btnI60.HeightRequest = 50; + this.btnI60.CanFocus = true; + this.btnI60.Name = "btnI60"; + this.btnI60.UseUnderline = true; + this.btnI60.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w186 = new global::Gtk.Image(); + this.btnI60.Image = w186; + this.tbUI.Add(this.btnI60); + global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI60])); + w187.TopAttach = ((uint)(7)); + w187.BottomAttach = ((uint)(8)); + w187.LeftAttach = ((uint)(28)); + w187.RightAttach = ((uint)(29)); + w187.XOptions = ((global::Gtk.AttachOptions)(4)); + w187.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI61 = new global::Gtk.Button(); + this.btnI61.WidthRequest = 50; + this.btnI61.HeightRequest = 50; + this.btnI61.CanFocus = true; + this.btnI61.Name = "btnI61"; + this.btnI61.UseUnderline = true; + this.btnI61.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w188 = new global::Gtk.Image(); + this.btnI61.Image = w188; + this.tbUI.Add(this.btnI61); + global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI61])); + w189.TopAttach = ((uint)(7)); + w189.BottomAttach = ((uint)(8)); + w189.LeftAttach = ((uint)(29)); + w189.RightAttach = ((uint)(30)); + w189.XOptions = ((global::Gtk.AttachOptions)(4)); + w189.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI62 = new global::Gtk.Button(); + this.btnI62.WidthRequest = 50; + this.btnI62.HeightRequest = 50; + this.btnI62.CanFocus = true; + this.btnI62.Name = "btnI62"; + this.btnI62.UseUnderline = true; + this.btnI62.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w190 = new global::Gtk.Image(); + this.btnI62.Image = w190; + this.tbUI.Add(this.btnI62); + global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI62])); + w191.TopAttach = ((uint)(7)); + w191.BottomAttach = ((uint)(8)); + w191.LeftAttach = ((uint)(30)); + w191.RightAttach = ((uint)(31)); + w191.XOptions = ((global::Gtk.AttachOptions)(4)); + w191.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI63 = new global::Gtk.Button(); + this.btnI63.WidthRequest = 50; + this.btnI63.HeightRequest = 50; + this.btnI63.CanFocus = true; + this.btnI63.Name = "btnI63"; + this.btnI63.UseUnderline = true; + this.btnI63.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w192 = new global::Gtk.Image(); + this.btnI63.Image = w192; + this.tbUI.Add(this.btnI63); + global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI63])); + w193.TopAttach = ((uint)(7)); + w193.BottomAttach = ((uint)(8)); + w193.LeftAttach = ((uint)(31)); + w193.RightAttach = ((uint)(32)); + w193.XOptions = ((global::Gtk.AttachOptions)(4)); + w193.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI64 = new global::Gtk.Button(); + this.btnI64.WidthRequest = 50; + this.btnI64.HeightRequest = 50; + this.btnI64.CanFocus = true; + this.btnI64.Name = "btnI64"; + this.btnI64.UseUnderline = true; + this.btnI64.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w194 = new global::Gtk.Image(); + this.btnI64.Image = w194; + this.tbUI.Add(this.btnI64); + global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI64])); + w195.TopAttach = ((uint)(8)); + w195.BottomAttach = ((uint)(9)); + w195.LeftAttach = ((uint)(23)); + w195.RightAttach = ((uint)(24)); + w195.XOptions = ((global::Gtk.AttachOptions)(4)); + w195.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI65 = new global::Gtk.Button(); + this.btnI65.WidthRequest = 50; + this.btnI65.HeightRequest = 50; + this.btnI65.CanFocus = true; + this.btnI65.Name = "btnI65"; + this.btnI65.UseUnderline = true; + this.btnI65.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w196 = new global::Gtk.Image(); + this.btnI65.Image = w196; + this.tbUI.Add(this.btnI65); + global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI65])); + w197.TopAttach = ((uint)(8)); + w197.BottomAttach = ((uint)(9)); + w197.LeftAttach = ((uint)(24)); + w197.RightAttach = ((uint)(25)); + w197.XOptions = ((global::Gtk.AttachOptions)(4)); + w197.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI66 = new global::Gtk.Button(); + this.btnI66.WidthRequest = 50; + this.btnI66.HeightRequest = 50; + this.btnI66.CanFocus = true; + this.btnI66.Name = "btnI66"; + this.btnI66.UseUnderline = true; + this.btnI66.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w198 = new global::Gtk.Image(); + this.btnI66.Image = w198; + this.tbUI.Add(this.btnI66); + global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI66])); + w199.TopAttach = ((uint)(8)); + w199.BottomAttach = ((uint)(9)); + w199.LeftAttach = ((uint)(25)); + w199.RightAttach = ((uint)(26)); + w199.XOptions = ((global::Gtk.AttachOptions)(4)); + w199.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI67 = new global::Gtk.Button(); + this.btnI67.WidthRequest = 50; + this.btnI67.HeightRequest = 50; + this.btnI67.CanFocus = true; + this.btnI67.Name = "btnI67"; + this.btnI67.UseUnderline = true; + this.btnI67.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w200 = new global::Gtk.Image(); + this.btnI67.Image = w200; + this.tbUI.Add(this.btnI67); + global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI67])); + w201.TopAttach = ((uint)(8)); + w201.BottomAttach = ((uint)(9)); + w201.LeftAttach = ((uint)(26)); + w201.RightAttach = ((uint)(27)); + w201.XOptions = ((global::Gtk.AttachOptions)(4)); + w201.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI68 = new global::Gtk.Button(); + this.btnI68.WidthRequest = 50; + this.btnI68.HeightRequest = 50; + this.btnI68.CanFocus = true; + this.btnI68.Name = "btnI68"; + this.btnI68.UseUnderline = true; + this.btnI68.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w202 = new global::Gtk.Image(); + this.btnI68.Image = w202; + this.tbUI.Add(this.btnI68); + global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI68])); + w203.TopAttach = ((uint)(8)); + w203.BottomAttach = ((uint)(9)); + w203.LeftAttach = ((uint)(27)); + w203.RightAttach = ((uint)(28)); + w203.XOptions = ((global::Gtk.AttachOptions)(4)); + w203.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI69 = new global::Gtk.Button(); + this.btnI69.WidthRequest = 50; + this.btnI69.HeightRequest = 50; + this.btnI69.CanFocus = true; + this.btnI69.Name = "btnI69"; + this.btnI69.UseUnderline = true; + this.btnI69.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w204 = new global::Gtk.Image(); + this.btnI69.Image = w204; + this.tbUI.Add(this.btnI69); + global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI69])); + w205.TopAttach = ((uint)(8)); + w205.BottomAttach = ((uint)(9)); + w205.LeftAttach = ((uint)(28)); + w205.RightAttach = ((uint)(29)); + w205.XOptions = ((global::Gtk.AttachOptions)(4)); + w205.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI7 = new global::Gtk.Button(); + this.btnI7.WidthRequest = 50; + this.btnI7.HeightRequest = 50; + this.btnI7.CanFocus = true; + this.btnI7.Name = "btnI7"; + this.btnI7.UseUnderline = true; + this.btnI7.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w206 = new global::Gtk.Image(); + this.btnI7.Image = w206; + this.tbUI.Add(this.btnI7); + global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI7])); + w207.TopAttach = ((uint)(1)); + w207.BottomAttach = ((uint)(2)); + w207.LeftAttach = ((uint)(29)); + w207.RightAttach = ((uint)(30)); + w207.XOptions = ((global::Gtk.AttachOptions)(4)); + w207.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI70 = new global::Gtk.Button(); + this.btnI70.WidthRequest = 50; + this.btnI70.HeightRequest = 50; + this.btnI70.CanFocus = true; + this.btnI70.Name = "btnI70"; + this.btnI70.UseUnderline = true; + this.btnI70.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w208 = new global::Gtk.Image(); + this.btnI70.Image = w208; + this.tbUI.Add(this.btnI70); + global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI70])); + w209.TopAttach = ((uint)(8)); + w209.BottomAttach = ((uint)(9)); + w209.LeftAttach = ((uint)(29)); + w209.RightAttach = ((uint)(30)); + w209.XOptions = ((global::Gtk.AttachOptions)(4)); + w209.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI71 = new global::Gtk.Button(); + this.btnI71.WidthRequest = 50; + this.btnI71.HeightRequest = 50; + this.btnI71.CanFocus = true; + this.btnI71.Name = "btnI71"; + this.btnI71.UseUnderline = true; + this.btnI71.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w210 = new global::Gtk.Image(); + this.btnI71.Image = w210; + this.tbUI.Add(this.btnI71); + global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI71])); + w211.TopAttach = ((uint)(8)); + w211.BottomAttach = ((uint)(9)); + w211.LeftAttach = ((uint)(30)); + w211.RightAttach = ((uint)(31)); + w211.XOptions = ((global::Gtk.AttachOptions)(4)); + w211.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI72 = new global::Gtk.Button(); + this.btnI72.WidthRequest = 50; + this.btnI72.HeightRequest = 50; + this.btnI72.CanFocus = true; + this.btnI72.Name = "btnI72"; + this.btnI72.UseUnderline = true; + this.btnI72.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w212 = new global::Gtk.Image(); + this.btnI72.Image = w212; + this.tbUI.Add(this.btnI72); + global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI72])); + w213.TopAttach = ((uint)(8)); + w213.BottomAttach = ((uint)(9)); + w213.LeftAttach = ((uint)(31)); + w213.RightAttach = ((uint)(32)); + w213.XOptions = ((global::Gtk.AttachOptions)(4)); + w213.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI73 = new global::Gtk.Button(); + this.btnI73.WidthRequest = 50; + this.btnI73.HeightRequest = 50; + this.btnI73.CanFocus = true; + this.btnI73.Name = "btnI73"; + this.btnI73.UseUnderline = true; + this.btnI73.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w214 = new global::Gtk.Image(); + this.btnI73.Image = w214; + this.tbUI.Add(this.btnI73); + global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI73])); + w215.TopAttach = ((uint)(9)); + w215.BottomAttach = ((uint)(10)); + w215.LeftAttach = ((uint)(23)); + w215.RightAttach = ((uint)(24)); + w215.XOptions = ((global::Gtk.AttachOptions)(4)); + w215.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI74 = new global::Gtk.Button(); + this.btnI74.WidthRequest = 50; + this.btnI74.HeightRequest = 50; + this.btnI74.CanFocus = true; + this.btnI74.Name = "btnI74"; + this.btnI74.UseUnderline = true; + this.btnI74.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w216 = new global::Gtk.Image(); + this.btnI74.Image = w216; + this.tbUI.Add(this.btnI74); + global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI74])); + w217.TopAttach = ((uint)(9)); + w217.BottomAttach = ((uint)(10)); + w217.LeftAttach = ((uint)(24)); + w217.RightAttach = ((uint)(25)); + w217.XOptions = ((global::Gtk.AttachOptions)(4)); + w217.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI75 = new global::Gtk.Button(); + this.btnI75.WidthRequest = 50; + this.btnI75.HeightRequest = 50; + this.btnI75.CanFocus = true; + this.btnI75.Name = "btnI75"; + this.btnI75.UseUnderline = true; + this.btnI75.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w218 = new global::Gtk.Image(); + this.btnI75.Image = w218; + this.tbUI.Add(this.btnI75); + global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI75])); + w219.TopAttach = ((uint)(9)); + w219.BottomAttach = ((uint)(10)); + w219.LeftAttach = ((uint)(25)); + w219.RightAttach = ((uint)(26)); + w219.XOptions = ((global::Gtk.AttachOptions)(4)); + w219.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI76 = new global::Gtk.Button(); + this.btnI76.WidthRequest = 50; + this.btnI76.HeightRequest = 50; + this.btnI76.CanFocus = true; + this.btnI76.Name = "btnI76"; + this.btnI76.UseUnderline = true; + this.btnI76.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w220 = new global::Gtk.Image(); + this.btnI76.Image = w220; + this.tbUI.Add(this.btnI76); + global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI76])); + w221.TopAttach = ((uint)(9)); + w221.BottomAttach = ((uint)(10)); + w221.LeftAttach = ((uint)(26)); + w221.RightAttach = ((uint)(27)); + w221.XOptions = ((global::Gtk.AttachOptions)(4)); + w221.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI77 = new global::Gtk.Button(); + this.btnI77.WidthRequest = 50; + this.btnI77.HeightRequest = 50; + this.btnI77.CanFocus = true; + this.btnI77.Name = "btnI77"; + this.btnI77.UseUnderline = true; + this.btnI77.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w222 = new global::Gtk.Image(); + this.btnI77.Image = w222; + this.tbUI.Add(this.btnI77); + global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI77])); + w223.TopAttach = ((uint)(9)); + w223.BottomAttach = ((uint)(10)); + w223.LeftAttach = ((uint)(27)); + w223.RightAttach = ((uint)(28)); + w223.XOptions = ((global::Gtk.AttachOptions)(4)); + w223.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI78 = new global::Gtk.Button(); + this.btnI78.WidthRequest = 50; + this.btnI78.HeightRequest = 50; + this.btnI78.CanFocus = true; + this.btnI78.Name = "btnI78"; + this.btnI78.UseUnderline = true; + this.btnI78.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w224 = new global::Gtk.Image(); + this.btnI78.Image = w224; + this.tbUI.Add(this.btnI78); + global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI78])); + w225.TopAttach = ((uint)(9)); + w225.BottomAttach = ((uint)(10)); + w225.LeftAttach = ((uint)(28)); + w225.RightAttach = ((uint)(29)); + w225.XOptions = ((global::Gtk.AttachOptions)(4)); + w225.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI79 = new global::Gtk.Button(); + this.btnI79.WidthRequest = 50; + this.btnI79.HeightRequest = 50; + this.btnI79.CanFocus = true; + this.btnI79.Name = "btnI79"; + this.btnI79.UseUnderline = true; + this.btnI79.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w226 = new global::Gtk.Image(); + this.btnI79.Image = w226; + this.tbUI.Add(this.btnI79); + global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI79])); + w227.TopAttach = ((uint)(9)); + w227.BottomAttach = ((uint)(10)); + w227.LeftAttach = ((uint)(29)); + w227.RightAttach = ((uint)(30)); + w227.XOptions = ((global::Gtk.AttachOptions)(4)); + w227.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI8 = new global::Gtk.Button(); + this.btnI8.WidthRequest = 50; + this.btnI8.HeightRequest = 50; + this.btnI8.CanFocus = true; + this.btnI8.Name = "btnI8"; + this.btnI8.UseUnderline = true; + this.btnI8.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w228 = new global::Gtk.Image(); + this.btnI8.Image = w228; + this.tbUI.Add(this.btnI8); + global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI8])); + w229.TopAttach = ((uint)(1)); + w229.BottomAttach = ((uint)(2)); + w229.LeftAttach = ((uint)(30)); + w229.RightAttach = ((uint)(31)); + w229.XOptions = ((global::Gtk.AttachOptions)(4)); + w229.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI80 = new global::Gtk.Button(); + this.btnI80.WidthRequest = 50; + this.btnI80.HeightRequest = 50; + this.btnI80.CanFocus = true; + this.btnI80.Name = "btnI80"; + this.btnI80.UseUnderline = true; + this.btnI80.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w230 = new global::Gtk.Image(); + this.btnI80.Image = w230; + this.tbUI.Add(this.btnI80); + global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI80])); + w231.TopAttach = ((uint)(9)); + w231.BottomAttach = ((uint)(10)); + w231.LeftAttach = ((uint)(30)); + w231.RightAttach = ((uint)(31)); + w231.XOptions = ((global::Gtk.AttachOptions)(4)); + w231.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI81 = new global::Gtk.Button(); + this.btnI81.WidthRequest = 50; + this.btnI81.HeightRequest = 50; + this.btnI81.CanFocus = true; + this.btnI81.Name = "btnI81"; + this.btnI81.UseUnderline = true; + this.btnI81.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w232 = new global::Gtk.Image(); + this.btnI81.Image = w232; + this.tbUI.Add(this.btnI81); + global::Gtk.Table.TableChild w233 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI81])); + w233.TopAttach = ((uint)(9)); + w233.BottomAttach = ((uint)(10)); + w233.LeftAttach = ((uint)(31)); + w233.RightAttach = ((uint)(32)); + w233.XOptions = ((global::Gtk.AttachOptions)(4)); + w233.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI9 = new global::Gtk.Button(); + this.btnI9.WidthRequest = 50; + this.btnI9.HeightRequest = 50; + this.btnI9.CanFocus = true; + this.btnI9.Name = "btnI9"; + this.btnI9.UseUnderline = true; + this.btnI9.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w234 = new global::Gtk.Image(); + this.btnI9.Image = w234; + this.tbUI.Add(this.btnI9); + global::Gtk.Table.TableChild w235 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI9])); + w235.TopAttach = ((uint)(1)); + w235.BottomAttach = ((uint)(2)); + w235.LeftAttach = ((uint)(31)); + w235.RightAttach = ((uint)(32)); + w235.XOptions = ((global::Gtk.AttachOptions)(4)); + w235.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnInv = new global::Gtk.Button(); + this.btnInv.WidthRequest = 50; + this.btnInv.HeightRequest = 50; + this.btnInv.CanFocus = true; + this.btnInv.Name = "btnInv"; + this.btnInv.UseUnderline = true; + this.btnInv.Label = "Inv"; + this.tbUI.Add(this.btnInv); + global::Gtk.Table.TableChild w236 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); + w236.TopAttach = ((uint)(13)); + w236.BottomAttach = ((uint)(14)); + w236.LeftAttach = ((uint)(21)); + w236.RightAttach = ((uint)(22)); + w236.XOptions = ((global::Gtk.AttachOptions)(4)); + w236.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnLog = new global::Gtk.Button(); + this.btnLog.WidthRequest = 250; + this.btnLog.HeightRequest = 50; + this.btnLog.CanFocus = true; + this.btnLog.Name = "btnLog"; + this.btnLog.UseUnderline = true; + this.btnLog.FocusOnClick = false; + this.btnLog.Label = "Event Log"; + this.tbUI.Add(this.btnLog); + global::Gtk.Table.TableChild w237 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); + w237.TopAttach = ((uint)(15)); + w237.BottomAttach = ((uint)(16)); + w237.LeftAttach = ((uint)(12)); + w237.RightAttach = ((uint)(21)); + w237.XOptions = ((global::Gtk.AttachOptions)(4)); + w237.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnMap = new global::Gtk.Button(); + this.btnMap.WidthRequest = 50; + this.btnMap.HeightRequest = 50; + this.btnMap.CanFocus = true; + this.btnMap.Name = "btnMap"; + this.btnMap.UseUnderline = true; + this.btnMap.Label = "Map"; + this.tbUI.Add(this.btnMap); + global::Gtk.Table.TableChild w238 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); + w238.TopAttach = ((uint)(13)); + w238.BottomAttach = ((uint)(14)); + w238.LeftAttach = ((uint)(11)); + w238.RightAttach = ((uint)(12)); + w238.XOptions = ((global::Gtk.AttachOptions)(4)); + w238.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnMusic = new global::Gtk.Button(); + this.btnMusic.WidthRequest = 50; + this.btnMusic.HeightRequest = 50; + this.btnMusic.CanFocus = true; + this.btnMusic.Name = "btnMusic"; + this.btnMusic.UseUnderline = true; + this.btnMusic.Label = "Music"; + this.tbUI.Add(this.btnMusic); + global::Gtk.Table.TableChild w239 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); + w239.TopAttach = ((uint)(15)); + w239.BottomAttach = ((uint)(16)); + w239.LeftAttach = ((uint)(11)); + w239.RightAttach = ((uint)(12)); + w239.XOptions = ((global::Gtk.AttachOptions)(4)); + w239.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP1 = new global::Gtk.Button(); + this.btnP1.WidthRequest = 50; + this.btnP1.HeightRequest = 50; + this.btnP1.CanFocus = true; + this.btnP1.Name = "btnP1"; + this.btnP1.UseUnderline = true; + this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w240 = new global::Gtk.Image(); + this.btnP1.Image = w240; + this.tbUI.Add(this.btnP1); + global::Gtk.Table.TableChild w241 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); + w241.TopAttach = ((uint)(1)); + w241.BottomAttach = ((uint)(2)); + w241.LeftAttach = ((uint)(12)); + w241.RightAttach = ((uint)(13)); + w241.XOptions = ((global::Gtk.AttachOptions)(4)); + w241.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP10 = new global::Gtk.Button(); + this.btnP10.WidthRequest = 50; + this.btnP10.HeightRequest = 50; + this.btnP10.CanFocus = true; + this.btnP10.Name = "btnP10"; + this.btnP10.UseUnderline = true; + this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w242 = new global::Gtk.Image(); + this.btnP10.Image = w242; + this.tbUI.Add(this.btnP10); + global::Gtk.Table.TableChild w243 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); + w243.TopAttach = ((uint)(2)); + w243.BottomAttach = ((uint)(3)); + w243.LeftAttach = ((uint)(12)); + w243.RightAttach = ((uint)(13)); + w243.XOptions = ((global::Gtk.AttachOptions)(4)); + w243.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP11 = new global::Gtk.Button(); + this.btnP11.WidthRequest = 50; + this.btnP11.HeightRequest = 50; + this.btnP11.CanFocus = true; + this.btnP11.Name = "btnP11"; + this.btnP11.UseUnderline = true; + this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w244 = new global::Gtk.Image(); + this.btnP11.Image = w244; + this.tbUI.Add(this.btnP11); + global::Gtk.Table.TableChild w245 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); + w245.TopAttach = ((uint)(2)); + w245.BottomAttach = ((uint)(3)); + w245.LeftAttach = ((uint)(13)); + w245.RightAttach = ((uint)(14)); + w245.XOptions = ((global::Gtk.AttachOptions)(4)); + w245.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP12 = new global::Gtk.Button(); + this.btnP12.WidthRequest = 50; + this.btnP12.HeightRequest = 50; + this.btnP12.CanFocus = true; + this.btnP12.Name = "btnP12"; + this.btnP12.UseUnderline = true; + this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w246 = new global::Gtk.Image(); + this.btnP12.Image = w246; + this.tbUI.Add(this.btnP12); + global::Gtk.Table.TableChild w247 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); + w247.TopAttach = ((uint)(2)); + w247.BottomAttach = ((uint)(3)); + w247.LeftAttach = ((uint)(14)); + w247.RightAttach = ((uint)(15)); + w247.XOptions = ((global::Gtk.AttachOptions)(4)); + w247.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP13 = new global::Gtk.Button(); + this.btnP13.WidthRequest = 50; + this.btnP13.HeightRequest = 50; + this.btnP13.CanFocus = true; + this.btnP13.Name = "btnP13"; + this.btnP13.UseUnderline = true; + this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w248 = new global::Gtk.Image(); + this.btnP13.Image = w248; + this.tbUI.Add(this.btnP13); + global::Gtk.Table.TableChild w249 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); + w249.TopAttach = ((uint)(2)); + w249.BottomAttach = ((uint)(3)); + w249.LeftAttach = ((uint)(15)); + w249.RightAttach = ((uint)(16)); + w249.XOptions = ((global::Gtk.AttachOptions)(4)); + w249.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP14 = new global::Gtk.Button(); + this.btnP14.WidthRequest = 50; + this.btnP14.HeightRequest = 50; + this.btnP14.CanFocus = true; + this.btnP14.Name = "btnP14"; + this.btnP14.UseUnderline = true; + this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w250 = new global::Gtk.Image(); + this.btnP14.Image = w250; + this.tbUI.Add(this.btnP14); + global::Gtk.Table.TableChild w251 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); + w251.TopAttach = ((uint)(2)); + w251.BottomAttach = ((uint)(3)); + w251.LeftAttach = ((uint)(16)); + w251.RightAttach = ((uint)(17)); + w251.XOptions = ((global::Gtk.AttachOptions)(4)); + w251.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP15 = new global::Gtk.Button(); + this.btnP15.WidthRequest = 50; + this.btnP15.HeightRequest = 50; + this.btnP15.CanFocus = true; + this.btnP15.Name = "btnP15"; + this.btnP15.UseUnderline = true; + this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w252 = new global::Gtk.Image(); + this.btnP15.Image = w252; + this.tbUI.Add(this.btnP15); + global::Gtk.Table.TableChild w253 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); + w253.TopAttach = ((uint)(2)); + w253.BottomAttach = ((uint)(3)); + w253.LeftAttach = ((uint)(17)); + w253.RightAttach = ((uint)(18)); + w253.XOptions = ((global::Gtk.AttachOptions)(4)); + w253.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP16 = new global::Gtk.Button(); + this.btnP16.WidthRequest = 50; + this.btnP16.HeightRequest = 50; + this.btnP16.CanFocus = true; + this.btnP16.Name = "btnP16"; + this.btnP16.UseUnderline = true; + this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w254 = new global::Gtk.Image(); + this.btnP16.Image = w254; + this.tbUI.Add(this.btnP16); + global::Gtk.Table.TableChild w255 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); + w255.TopAttach = ((uint)(2)); + w255.BottomAttach = ((uint)(3)); + w255.LeftAttach = ((uint)(18)); + w255.RightAttach = ((uint)(19)); + w255.XOptions = ((global::Gtk.AttachOptions)(4)); + w255.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP17 = new global::Gtk.Button(); + this.btnP17.WidthRequest = 50; + this.btnP17.HeightRequest = 50; + this.btnP17.CanFocus = true; + this.btnP17.Name = "btnP17"; + this.btnP17.UseUnderline = true; + this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w256 = new global::Gtk.Image(); + this.btnP17.Image = w256; + this.tbUI.Add(this.btnP17); + global::Gtk.Table.TableChild w257 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); + w257.TopAttach = ((uint)(2)); + w257.BottomAttach = ((uint)(3)); + w257.LeftAttach = ((uint)(19)); + w257.RightAttach = ((uint)(20)); + w257.XOptions = ((global::Gtk.AttachOptions)(4)); + w257.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP18 = new global::Gtk.Button(); + this.btnP18.WidthRequest = 50; + this.btnP18.HeightRequest = 50; + this.btnP18.CanFocus = true; + this.btnP18.Name = "btnP18"; + this.btnP18.UseUnderline = true; + this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w258 = new global::Gtk.Image(); + this.btnP18.Image = w258; + this.tbUI.Add(this.btnP18); + global::Gtk.Table.TableChild w259 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); + w259.TopAttach = ((uint)(2)); + w259.BottomAttach = ((uint)(3)); + w259.LeftAttach = ((uint)(20)); + w259.RightAttach = ((uint)(21)); + w259.XOptions = ((global::Gtk.AttachOptions)(4)); + w259.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP19 = new global::Gtk.Button(); + this.btnP19.WidthRequest = 50; + this.btnP19.HeightRequest = 50; + this.btnP19.CanFocus = true; + this.btnP19.Name = "btnP19"; + this.btnP19.UseUnderline = true; + this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w260 = new global::Gtk.Image(); + this.btnP19.Image = w260; + this.tbUI.Add(this.btnP19); + global::Gtk.Table.TableChild w261 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); + w261.TopAttach = ((uint)(3)); + w261.BottomAttach = ((uint)(4)); + w261.LeftAttach = ((uint)(12)); + w261.RightAttach = ((uint)(13)); + w261.XOptions = ((global::Gtk.AttachOptions)(4)); + w261.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP2 = new global::Gtk.Button(); + this.btnP2.WidthRequest = 50; + this.btnP2.HeightRequest = 50; + this.btnP2.CanFocus = true; + this.btnP2.Name = "btnP2"; + this.btnP2.UseUnderline = true; + this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w262 = new global::Gtk.Image(); + this.btnP2.Image = w262; + this.tbUI.Add(this.btnP2); + global::Gtk.Table.TableChild w263 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); + w263.TopAttach = ((uint)(1)); + w263.BottomAttach = ((uint)(2)); + w263.LeftAttach = ((uint)(13)); + w263.RightAttach = ((uint)(14)); + w263.XOptions = ((global::Gtk.AttachOptions)(4)); + w263.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP20 = new global::Gtk.Button(); + this.btnP20.WidthRequest = 50; + this.btnP20.HeightRequest = 50; + this.btnP20.CanFocus = true; + this.btnP20.Name = "btnP20"; + this.btnP20.UseUnderline = true; + this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w264 = new global::Gtk.Image(); + this.btnP20.Image = w264; + this.tbUI.Add(this.btnP20); + global::Gtk.Table.TableChild w265 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); + w265.TopAttach = ((uint)(3)); + w265.BottomAttach = ((uint)(4)); + w265.LeftAttach = ((uint)(13)); + w265.RightAttach = ((uint)(14)); + w265.XOptions = ((global::Gtk.AttachOptions)(4)); + w265.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP21 = new global::Gtk.Button(); + this.btnP21.WidthRequest = 50; + this.btnP21.HeightRequest = 50; + this.btnP21.CanFocus = true; + this.btnP21.Name = "btnP21"; + this.btnP21.UseUnderline = true; + this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w266 = new global::Gtk.Image(); + this.btnP21.Image = w266; + this.tbUI.Add(this.btnP21); + global::Gtk.Table.TableChild w267 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); + w267.TopAttach = ((uint)(3)); + w267.BottomAttach = ((uint)(4)); + w267.LeftAttach = ((uint)(14)); + w267.RightAttach = ((uint)(15)); + w267.XOptions = ((global::Gtk.AttachOptions)(4)); + w267.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP22 = new global::Gtk.Button(); + this.btnP22.WidthRequest = 50; + this.btnP22.HeightRequest = 50; + this.btnP22.CanFocus = true; + this.btnP22.Name = "btnP22"; + this.btnP22.UseUnderline = true; + this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w268 = new global::Gtk.Image(); + this.btnP22.Image = w268; + this.tbUI.Add(this.btnP22); + global::Gtk.Table.TableChild w269 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); + w269.TopAttach = ((uint)(3)); + w269.BottomAttach = ((uint)(4)); + w269.LeftAttach = ((uint)(15)); + w269.RightAttach = ((uint)(16)); + w269.XOptions = ((global::Gtk.AttachOptions)(4)); + w269.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP23 = new global::Gtk.Button(); + this.btnP23.WidthRequest = 50; + this.btnP23.HeightRequest = 50; + this.btnP23.CanFocus = true; + this.btnP23.Name = "btnP23"; + this.btnP23.UseUnderline = true; + this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w270 = new global::Gtk.Image(); + this.btnP23.Image = w270; + this.tbUI.Add(this.btnP23); + global::Gtk.Table.TableChild w271 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); + w271.TopAttach = ((uint)(3)); + w271.BottomAttach = ((uint)(4)); + w271.LeftAttach = ((uint)(16)); + w271.RightAttach = ((uint)(17)); + w271.XOptions = ((global::Gtk.AttachOptions)(4)); + w271.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP24 = new global::Gtk.Button(); + this.btnP24.WidthRequest = 50; + this.btnP24.HeightRequest = 50; + this.btnP24.CanFocus = true; + this.btnP24.Name = "btnP24"; + this.btnP24.UseUnderline = true; + this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w272 = new global::Gtk.Image(); + this.btnP24.Image = w272; + this.tbUI.Add(this.btnP24); + global::Gtk.Table.TableChild w273 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); + w273.TopAttach = ((uint)(3)); + w273.BottomAttach = ((uint)(4)); + w273.LeftAttach = ((uint)(17)); + w273.RightAttach = ((uint)(18)); + w273.XOptions = ((global::Gtk.AttachOptions)(4)); + w273.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP25 = new global::Gtk.Button(); + this.btnP25.WidthRequest = 50; + this.btnP25.HeightRequest = 50; + this.btnP25.CanFocus = true; + this.btnP25.Name = "btnP25"; + this.btnP25.UseUnderline = true; + this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w274 = new global::Gtk.Image(); + this.btnP25.Image = w274; + this.tbUI.Add(this.btnP25); + global::Gtk.Table.TableChild w275 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); + w275.TopAttach = ((uint)(3)); + w275.BottomAttach = ((uint)(4)); + w275.LeftAttach = ((uint)(18)); + w275.RightAttach = ((uint)(19)); + w275.XOptions = ((global::Gtk.AttachOptions)(4)); + w275.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP26 = new global::Gtk.Button(); + this.btnP26.WidthRequest = 50; + this.btnP26.HeightRequest = 50; + this.btnP26.CanFocus = true; + this.btnP26.Name = "btnP26"; + this.btnP26.UseUnderline = true; + this.btnP26.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w276 = new global::Gtk.Image(); + this.btnP26.Image = w276; + this.tbUI.Add(this.btnP26); + global::Gtk.Table.TableChild w277 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP26])); + w277.TopAttach = ((uint)(3)); + w277.BottomAttach = ((uint)(4)); + w277.LeftAttach = ((uint)(19)); + w277.RightAttach = ((uint)(20)); + w277.XOptions = ((global::Gtk.AttachOptions)(4)); + w277.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP27 = new global::Gtk.Button(); + this.btnP27.WidthRequest = 50; + this.btnP27.HeightRequest = 50; + this.btnP27.CanFocus = true; + this.btnP27.Name = "btnP27"; + this.btnP27.UseUnderline = true; + this.btnP27.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w278 = new global::Gtk.Image(); + this.btnP27.Image = w278; + this.tbUI.Add(this.btnP27); + global::Gtk.Table.TableChild w279 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP27])); + w279.TopAttach = ((uint)(3)); + w279.BottomAttach = ((uint)(4)); + w279.LeftAttach = ((uint)(20)); + w279.RightAttach = ((uint)(21)); + w279.XOptions = ((global::Gtk.AttachOptions)(4)); + w279.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP28 = new global::Gtk.Button(); + this.btnP28.WidthRequest = 50; + this.btnP28.HeightRequest = 50; + this.btnP28.CanFocus = true; + this.btnP28.Name = "btnP28"; + this.btnP28.UseUnderline = true; + this.btnP28.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w280 = new global::Gtk.Image(); + this.btnP28.Image = w280; + this.tbUI.Add(this.btnP28); + global::Gtk.Table.TableChild w281 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP28])); + w281.TopAttach = ((uint)(4)); + w281.BottomAttach = ((uint)(5)); + w281.LeftAttach = ((uint)(12)); + w281.RightAttach = ((uint)(13)); + w281.XOptions = ((global::Gtk.AttachOptions)(4)); + w281.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP29 = new global::Gtk.Button(); + this.btnP29.WidthRequest = 50; + this.btnP29.HeightRequest = 50; + this.btnP29.CanFocus = true; + this.btnP29.Name = "btnP29"; + this.btnP29.UseUnderline = true; + this.btnP29.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w282 = new global::Gtk.Image(); + this.btnP29.Image = w282; + this.tbUI.Add(this.btnP29); + global::Gtk.Table.TableChild w283 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP29])); + w283.TopAttach = ((uint)(4)); + w283.BottomAttach = ((uint)(5)); + w283.LeftAttach = ((uint)(13)); + w283.RightAttach = ((uint)(14)); + w283.XOptions = ((global::Gtk.AttachOptions)(4)); + w283.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP3 = new global::Gtk.Button(); + this.btnP3.WidthRequest = 50; + this.btnP3.HeightRequest = 50; + this.btnP3.CanFocus = true; + this.btnP3.Name = "btnP3"; + this.btnP3.UseUnderline = true; + this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w284 = new global::Gtk.Image(); + this.btnP3.Image = w284; + this.tbUI.Add(this.btnP3); + global::Gtk.Table.TableChild w285 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); + w285.TopAttach = ((uint)(1)); + w285.BottomAttach = ((uint)(2)); + w285.LeftAttach = ((uint)(14)); + w285.RightAttach = ((uint)(15)); + w285.XOptions = ((global::Gtk.AttachOptions)(4)); + w285.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP30 = new global::Gtk.Button(); + this.btnP30.WidthRequest = 50; + this.btnP30.HeightRequest = 50; + this.btnP30.CanFocus = true; + this.btnP30.Name = "btnP30"; + this.btnP30.UseUnderline = true; + this.btnP30.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w286 = new global::Gtk.Image(); + this.btnP30.Image = w286; + this.tbUI.Add(this.btnP30); + global::Gtk.Table.TableChild w287 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP30])); + w287.TopAttach = ((uint)(4)); + w287.BottomAttach = ((uint)(5)); + w287.LeftAttach = ((uint)(14)); + w287.RightAttach = ((uint)(15)); + w287.XOptions = ((global::Gtk.AttachOptions)(4)); + w287.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP31 = new global::Gtk.Button(); + this.btnP31.WidthRequest = 50; + this.btnP31.HeightRequest = 50; + this.btnP31.CanFocus = true; + this.btnP31.Name = "btnP31"; + this.btnP31.UseUnderline = true; + this.btnP31.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w288 = new global::Gtk.Image(); + this.btnP31.Image = w288; + this.tbUI.Add(this.btnP31); + global::Gtk.Table.TableChild w289 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP31])); + w289.TopAttach = ((uint)(4)); + w289.BottomAttach = ((uint)(5)); + w289.LeftAttach = ((uint)(15)); + w289.RightAttach = ((uint)(16)); + w289.XOptions = ((global::Gtk.AttachOptions)(4)); + w289.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP32 = new global::Gtk.Button(); + this.btnP32.WidthRequest = 50; + this.btnP32.HeightRequest = 50; + this.btnP32.CanFocus = true; + this.btnP32.Name = "btnP32"; + this.btnP32.UseUnderline = true; + this.btnP32.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w290 = new global::Gtk.Image(); + this.btnP32.Image = w290; + this.tbUI.Add(this.btnP32); + global::Gtk.Table.TableChild w291 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP32])); + w291.TopAttach = ((uint)(4)); + w291.BottomAttach = ((uint)(5)); + w291.LeftAttach = ((uint)(16)); + w291.RightAttach = ((uint)(17)); + w291.XOptions = ((global::Gtk.AttachOptions)(4)); + w291.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP33 = new global::Gtk.Button(); + this.btnP33.WidthRequest = 50; + this.btnP33.HeightRequest = 50; + this.btnP33.CanFocus = true; + this.btnP33.Name = "btnP33"; + this.btnP33.UseUnderline = true; + this.btnP33.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w292 = new global::Gtk.Image(); + this.btnP33.Image = w292; + this.tbUI.Add(this.btnP33); + global::Gtk.Table.TableChild w293 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP33])); + w293.TopAttach = ((uint)(4)); + w293.BottomAttach = ((uint)(5)); + w293.LeftAttach = ((uint)(17)); + w293.RightAttach = ((uint)(18)); + w293.XOptions = ((global::Gtk.AttachOptions)(4)); + w293.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP34 = new global::Gtk.Button(); + this.btnP34.WidthRequest = 50; + this.btnP34.HeightRequest = 50; + this.btnP34.CanFocus = true; + this.btnP34.Name = "btnP34"; + this.btnP34.UseUnderline = true; + this.btnP34.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w294 = new global::Gtk.Image(); + this.btnP34.Image = w294; + this.tbUI.Add(this.btnP34); + global::Gtk.Table.TableChild w295 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP34])); + w295.TopAttach = ((uint)(4)); + w295.BottomAttach = ((uint)(5)); + w295.LeftAttach = ((uint)(18)); + w295.RightAttach = ((uint)(19)); + w295.XOptions = ((global::Gtk.AttachOptions)(4)); + w295.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP35 = new global::Gtk.Button(); + this.btnP35.WidthRequest = 50; + this.btnP35.HeightRequest = 50; + this.btnP35.CanFocus = true; + this.btnP35.Name = "btnP35"; + this.btnP35.UseUnderline = true; + this.btnP35.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w296 = new global::Gtk.Image(); + this.btnP35.Image = w296; + this.tbUI.Add(this.btnP35); + global::Gtk.Table.TableChild w297 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP35])); + w297.TopAttach = ((uint)(4)); + w297.BottomAttach = ((uint)(5)); + w297.LeftAttach = ((uint)(19)); + w297.RightAttach = ((uint)(20)); + w297.XOptions = ((global::Gtk.AttachOptions)(4)); + w297.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP36 = new global::Gtk.Button(); + this.btnP36.WidthRequest = 50; + this.btnP36.HeightRequest = 50; + this.btnP36.CanFocus = true; + this.btnP36.Name = "btnP36"; + this.btnP36.UseUnderline = true; + this.btnP36.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w298 = new global::Gtk.Image(); + this.btnP36.Image = w298; + this.tbUI.Add(this.btnP36); + global::Gtk.Table.TableChild w299 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP36])); + w299.TopAttach = ((uint)(4)); + w299.BottomAttach = ((uint)(5)); + w299.LeftAttach = ((uint)(20)); + w299.RightAttach = ((uint)(21)); + w299.XOptions = ((global::Gtk.AttachOptions)(4)); + w299.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP37 = new global::Gtk.Button(); + this.btnP37.WidthRequest = 50; + this.btnP37.HeightRequest = 50; + this.btnP37.CanFocus = true; + this.btnP37.Name = "btnP37"; + this.btnP37.UseUnderline = true; + this.btnP37.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w300 = new global::Gtk.Image(); + this.btnP37.Image = w300; + this.tbUI.Add(this.btnP37); + global::Gtk.Table.TableChild w301 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP37])); + w301.TopAttach = ((uint)(5)); + w301.BottomAttach = ((uint)(6)); + w301.LeftAttach = ((uint)(12)); + w301.RightAttach = ((uint)(13)); + w301.XOptions = ((global::Gtk.AttachOptions)(4)); + w301.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP38 = new global::Gtk.Button(); + this.btnP38.WidthRequest = 50; + this.btnP38.HeightRequest = 50; + this.btnP38.CanFocus = true; + this.btnP38.Name = "btnP38"; + this.btnP38.UseUnderline = true; + this.btnP38.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w302 = new global::Gtk.Image(); + this.btnP38.Image = w302; + this.tbUI.Add(this.btnP38); + global::Gtk.Table.TableChild w303 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP38])); + w303.TopAttach = ((uint)(5)); + w303.BottomAttach = ((uint)(6)); + w303.LeftAttach = ((uint)(13)); + w303.RightAttach = ((uint)(14)); + w303.XOptions = ((global::Gtk.AttachOptions)(4)); + w303.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP39 = new global::Gtk.Button(); + this.btnP39.WidthRequest = 50; + this.btnP39.HeightRequest = 50; + this.btnP39.CanFocus = true; + this.btnP39.Name = "btnP39"; + this.btnP39.UseUnderline = true; + this.btnP39.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w304 = new global::Gtk.Image(); + this.btnP39.Image = w304; + this.tbUI.Add(this.btnP39); + global::Gtk.Table.TableChild w305 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP39])); + w305.TopAttach = ((uint)(5)); + w305.BottomAttach = ((uint)(6)); + w305.LeftAttach = ((uint)(14)); + w305.RightAttach = ((uint)(15)); + w305.XOptions = ((global::Gtk.AttachOptions)(4)); + w305.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP4 = new global::Gtk.Button(); + this.btnP4.WidthRequest = 50; + this.btnP4.HeightRequest = 50; + this.btnP4.CanFocus = true; + this.btnP4.Name = "btnP4"; + this.btnP4.UseUnderline = true; + this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w306 = new global::Gtk.Image(); + this.btnP4.Image = w306; + this.tbUI.Add(this.btnP4); + global::Gtk.Table.TableChild w307 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); + w307.TopAttach = ((uint)(1)); + w307.BottomAttach = ((uint)(2)); + w307.LeftAttach = ((uint)(15)); + w307.RightAttach = ((uint)(16)); + w307.XOptions = ((global::Gtk.AttachOptions)(4)); + w307.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP40 = new global::Gtk.Button(); + this.btnP40.WidthRequest = 50; + this.btnP40.HeightRequest = 50; + this.btnP40.CanFocus = true; + this.btnP40.Name = "btnP40"; + this.btnP40.UseUnderline = true; + this.btnP40.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w308 = new global::Gtk.Image(); + this.btnP40.Image = w308; + this.tbUI.Add(this.btnP40); + global::Gtk.Table.TableChild w309 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP40])); + w309.TopAttach = ((uint)(5)); + w309.BottomAttach = ((uint)(6)); + w309.LeftAttach = ((uint)(15)); + w309.RightAttach = ((uint)(16)); + w309.XOptions = ((global::Gtk.AttachOptions)(4)); + w309.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP41 = new global::Gtk.Button(); + this.btnP41.WidthRequest = 50; + this.btnP41.HeightRequest = 50; + this.btnP41.CanFocus = true; + this.btnP41.Name = "btnP41"; + this.btnP41.UseUnderline = true; + this.btnP41.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w310 = new global::Gtk.Image(); + this.btnP41.Image = w310; + this.tbUI.Add(this.btnP41); + global::Gtk.Table.TableChild w311 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP41])); + w311.TopAttach = ((uint)(5)); + w311.BottomAttach = ((uint)(6)); + w311.LeftAttach = ((uint)(16)); + w311.RightAttach = ((uint)(17)); + w311.XOptions = ((global::Gtk.AttachOptions)(4)); + w311.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP42 = new global::Gtk.Button(); + this.btnP42.WidthRequest = 50; + this.btnP42.HeightRequest = 50; + this.btnP42.CanFocus = true; + this.btnP42.Name = "btnP42"; + this.btnP42.UseUnderline = true; + this.btnP42.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w312 = new global::Gtk.Image(); + this.btnP42.Image = w312; + this.tbUI.Add(this.btnP42); + global::Gtk.Table.TableChild w313 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP42])); + w313.TopAttach = ((uint)(5)); + w313.BottomAttach = ((uint)(6)); + w313.LeftAttach = ((uint)(17)); + w313.RightAttach = ((uint)(18)); + w313.XOptions = ((global::Gtk.AttachOptions)(4)); + w313.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP43 = new global::Gtk.Button(); + this.btnP43.WidthRequest = 50; + this.btnP43.HeightRequest = 50; + this.btnP43.CanFocus = true; + this.btnP43.Name = "btnP43"; + this.btnP43.UseUnderline = true; + this.btnP43.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w314 = new global::Gtk.Image(); + this.btnP43.Image = w314; + this.tbUI.Add(this.btnP43); + global::Gtk.Table.TableChild w315 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP43])); + w315.TopAttach = ((uint)(5)); + w315.BottomAttach = ((uint)(6)); + w315.LeftAttach = ((uint)(18)); + w315.RightAttach = ((uint)(19)); + w315.XOptions = ((global::Gtk.AttachOptions)(4)); + w315.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP44 = new global::Gtk.Button(); + this.btnP44.WidthRequest = 50; + this.btnP44.HeightRequest = 50; + this.btnP44.CanFocus = true; + this.btnP44.Name = "btnP44"; + this.btnP44.UseUnderline = true; + this.btnP44.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w316 = new global::Gtk.Image(); + this.btnP44.Image = w316; + this.tbUI.Add(this.btnP44); + global::Gtk.Table.TableChild w317 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP44])); + w317.TopAttach = ((uint)(5)); + w317.BottomAttach = ((uint)(6)); + w317.LeftAttach = ((uint)(19)); + w317.RightAttach = ((uint)(20)); + w317.XOptions = ((global::Gtk.AttachOptions)(4)); + w317.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP45 = new global::Gtk.Button(); + this.btnP45.WidthRequest = 50; + this.btnP45.HeightRequest = 50; + this.btnP45.CanFocus = true; + this.btnP45.Name = "btnP45"; + this.btnP45.UseUnderline = true; + this.btnP45.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w318 = new global::Gtk.Image(); + this.btnP45.Image = w318; + this.tbUI.Add(this.btnP45); + global::Gtk.Table.TableChild w319 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP45])); + w319.TopAttach = ((uint)(5)); + w319.BottomAttach = ((uint)(6)); + w319.LeftAttach = ((uint)(20)); + w319.RightAttach = ((uint)(21)); + w319.XOptions = ((global::Gtk.AttachOptions)(4)); + w319.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP46 = new global::Gtk.Button(); + this.btnP46.WidthRequest = 50; + this.btnP46.HeightRequest = 50; + this.btnP46.CanFocus = true; + this.btnP46.Name = "btnP46"; + this.btnP46.UseUnderline = true; + this.btnP46.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w320 = new global::Gtk.Image(); + this.btnP46.Image = w320; + this.tbUI.Add(this.btnP46); + global::Gtk.Table.TableChild w321 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP46])); + w321.TopAttach = ((uint)(6)); + w321.BottomAttach = ((uint)(7)); + w321.LeftAttach = ((uint)(12)); + w321.RightAttach = ((uint)(13)); + w321.XOptions = ((global::Gtk.AttachOptions)(4)); + w321.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP47 = new global::Gtk.Button(); + this.btnP47.WidthRequest = 50; + this.btnP47.HeightRequest = 50; + this.btnP47.CanFocus = true; + this.btnP47.Name = "btnP47"; + this.btnP47.UseUnderline = true; + this.btnP47.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w322 = new global::Gtk.Image(); + this.btnP47.Image = w322; + this.tbUI.Add(this.btnP47); + global::Gtk.Table.TableChild w323 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP47])); + w323.TopAttach = ((uint)(6)); + w323.BottomAttach = ((uint)(7)); + w323.LeftAttach = ((uint)(13)); + w323.RightAttach = ((uint)(14)); + w323.XOptions = ((global::Gtk.AttachOptions)(4)); + w323.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP48 = new global::Gtk.Button(); + this.btnP48.WidthRequest = 50; + this.btnP48.HeightRequest = 50; + this.btnP48.CanFocus = true; + this.btnP48.Name = "btnP48"; + this.btnP48.UseUnderline = true; + this.btnP48.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w324 = new global::Gtk.Image(); + this.btnP48.Image = w324; + this.tbUI.Add(this.btnP48); + global::Gtk.Table.TableChild w325 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP48])); + w325.TopAttach = ((uint)(6)); + w325.BottomAttach = ((uint)(7)); + w325.LeftAttach = ((uint)(14)); + w325.RightAttach = ((uint)(15)); + w325.XOptions = ((global::Gtk.AttachOptions)(4)); + w325.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP49 = new global::Gtk.Button(); + this.btnP49.WidthRequest = 50; + this.btnP49.HeightRequest = 50; + this.btnP49.CanFocus = true; + this.btnP49.Name = "btnP49"; + this.btnP49.UseUnderline = true; + this.btnP49.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w326 = new global::Gtk.Image(); + this.btnP49.Image = w326; + this.tbUI.Add(this.btnP49); + global::Gtk.Table.TableChild w327 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP49])); + w327.TopAttach = ((uint)(6)); + w327.BottomAttach = ((uint)(7)); + w327.LeftAttach = ((uint)(15)); + w327.RightAttach = ((uint)(16)); + w327.XOptions = ((global::Gtk.AttachOptions)(4)); + w327.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP5 = new global::Gtk.Button(); + this.btnP5.WidthRequest = 50; + this.btnP5.HeightRequest = 50; + this.btnP5.CanFocus = true; + this.btnP5.Name = "btnP5"; + this.btnP5.UseUnderline = true; + this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w328 = new global::Gtk.Image(); + this.btnP5.Image = w328; + this.tbUI.Add(this.btnP5); + global::Gtk.Table.TableChild w329 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); + w329.TopAttach = ((uint)(1)); + w329.BottomAttach = ((uint)(2)); + w329.LeftAttach = ((uint)(16)); + w329.RightAttach = ((uint)(17)); + w329.XOptions = ((global::Gtk.AttachOptions)(4)); + w329.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP50 = new global::Gtk.Button(); + this.btnP50.WidthRequest = 50; + this.btnP50.HeightRequest = 50; + this.btnP50.CanFocus = true; + this.btnP50.Name = "btnP50"; + this.btnP50.UseUnderline = true; + this.btnP50.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w330 = new global::Gtk.Image(); + this.btnP50.Image = w330; + this.tbUI.Add(this.btnP50); + global::Gtk.Table.TableChild w331 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP50])); + w331.TopAttach = ((uint)(6)); + w331.BottomAttach = ((uint)(7)); + w331.LeftAttach = ((uint)(16)); + w331.RightAttach = ((uint)(17)); + w331.XOptions = ((global::Gtk.AttachOptions)(4)); + w331.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP51 = new global::Gtk.Button(); + this.btnP51.WidthRequest = 50; + this.btnP51.HeightRequest = 50; + this.btnP51.CanFocus = true; + this.btnP51.Name = "btnP51"; + this.btnP51.UseUnderline = true; + this.btnP51.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w332 = new global::Gtk.Image(); + this.btnP51.Image = w332; + this.tbUI.Add(this.btnP51); + global::Gtk.Table.TableChild w333 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP51])); + w333.TopAttach = ((uint)(6)); + w333.BottomAttach = ((uint)(7)); + w333.LeftAttach = ((uint)(17)); + w333.RightAttach = ((uint)(18)); + w333.XOptions = ((global::Gtk.AttachOptions)(4)); + w333.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP52 = new global::Gtk.Button(); + this.btnP52.WidthRequest = 50; + this.btnP52.HeightRequest = 50; + this.btnP52.CanFocus = true; + this.btnP52.Name = "btnP52"; + this.btnP52.UseUnderline = true; + this.btnP52.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w334 = new global::Gtk.Image(); + this.btnP52.Image = w334; + this.tbUI.Add(this.btnP52); + global::Gtk.Table.TableChild w335 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP52])); + w335.TopAttach = ((uint)(6)); + w335.BottomAttach = ((uint)(7)); + w335.LeftAttach = ((uint)(18)); + w335.RightAttach = ((uint)(19)); + w335.XOptions = ((global::Gtk.AttachOptions)(4)); + w335.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP53 = new global::Gtk.Button(); + this.btnP53.WidthRequest = 50; + this.btnP53.HeightRequest = 50; + this.btnP53.CanFocus = true; + this.btnP53.Name = "btnP53"; + this.btnP53.UseUnderline = true; + this.btnP53.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w336 = new global::Gtk.Image(); + this.btnP53.Image = w336; + this.tbUI.Add(this.btnP53); + global::Gtk.Table.TableChild w337 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP53])); + w337.TopAttach = ((uint)(6)); + w337.BottomAttach = ((uint)(7)); + w337.LeftAttach = ((uint)(19)); + w337.RightAttach = ((uint)(20)); + w337.XOptions = ((global::Gtk.AttachOptions)(4)); + w337.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP54 = new global::Gtk.Button(); + this.btnP54.WidthRequest = 50; + this.btnP54.HeightRequest = 50; + this.btnP54.CanFocus = true; + this.btnP54.Name = "btnP54"; + this.btnP54.UseUnderline = true; + this.btnP54.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w338 = new global::Gtk.Image(); + this.btnP54.Image = w338; + this.tbUI.Add(this.btnP54); + global::Gtk.Table.TableChild w339 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP54])); + w339.TopAttach = ((uint)(6)); + w339.BottomAttach = ((uint)(7)); + w339.LeftAttach = ((uint)(20)); + w339.RightAttach = ((uint)(21)); + w339.XOptions = ((global::Gtk.AttachOptions)(4)); + w339.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP55 = new global::Gtk.Button(); + this.btnP55.WidthRequest = 50; + this.btnP55.HeightRequest = 50; + this.btnP55.CanFocus = true; + this.btnP55.Name = "btnP55"; + this.btnP55.UseUnderline = true; + this.btnP55.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w340 = new global::Gtk.Image(); + this.btnP55.Image = w340; + this.tbUI.Add(this.btnP55); + global::Gtk.Table.TableChild w341 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP55])); + w341.TopAttach = ((uint)(7)); + w341.BottomAttach = ((uint)(8)); + w341.LeftAttach = ((uint)(12)); + w341.RightAttach = ((uint)(13)); + w341.XOptions = ((global::Gtk.AttachOptions)(4)); + w341.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP56 = new global::Gtk.Button(); + this.btnP56.WidthRequest = 50; + this.btnP56.HeightRequest = 50; + this.btnP56.CanFocus = true; + this.btnP56.Name = "btnP56"; + this.btnP56.UseUnderline = true; + this.btnP56.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w342 = new global::Gtk.Image(); + this.btnP56.Image = w342; + this.tbUI.Add(this.btnP56); + global::Gtk.Table.TableChild w343 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP56])); + w343.TopAttach = ((uint)(7)); + w343.BottomAttach = ((uint)(8)); + w343.LeftAttach = ((uint)(13)); + w343.RightAttach = ((uint)(14)); + w343.XOptions = ((global::Gtk.AttachOptions)(4)); + w343.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP57 = new global::Gtk.Button(); + this.btnP57.WidthRequest = 50; + this.btnP57.HeightRequest = 50; + this.btnP57.CanFocus = true; + this.btnP57.Name = "btnP57"; + this.btnP57.UseUnderline = true; + this.btnP57.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w344 = new global::Gtk.Image(); + this.btnP57.Image = w344; + this.tbUI.Add(this.btnP57); + global::Gtk.Table.TableChild w345 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP57])); + w345.TopAttach = ((uint)(7)); + w345.BottomAttach = ((uint)(8)); + w345.LeftAttach = ((uint)(14)); + w345.RightAttach = ((uint)(15)); + w345.XOptions = ((global::Gtk.AttachOptions)(4)); + w345.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP58 = new global::Gtk.Button(); + this.btnP58.WidthRequest = 50; + this.btnP58.HeightRequest = 50; + this.btnP58.CanFocus = true; + this.btnP58.Name = "btnP58"; + this.btnP58.UseUnderline = true; + this.btnP58.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w346 = new global::Gtk.Image(); + this.btnP58.Image = w346; + this.tbUI.Add(this.btnP58); + global::Gtk.Table.TableChild w347 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP58])); + w347.TopAttach = ((uint)(7)); + w347.BottomAttach = ((uint)(8)); + w347.LeftAttach = ((uint)(15)); + w347.RightAttach = ((uint)(16)); + w347.XOptions = ((global::Gtk.AttachOptions)(4)); + w347.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP59 = new global::Gtk.Button(); + this.btnP59.WidthRequest = 50; + this.btnP59.HeightRequest = 50; + this.btnP59.CanFocus = true; + this.btnP59.Name = "btnP59"; + this.btnP59.UseUnderline = true; + this.btnP59.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w348 = new global::Gtk.Image(); + this.btnP59.Image = w348; + this.tbUI.Add(this.btnP59); + global::Gtk.Table.TableChild w349 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP59])); + w349.TopAttach = ((uint)(7)); + w349.BottomAttach = ((uint)(8)); + w349.LeftAttach = ((uint)(16)); + w349.RightAttach = ((uint)(17)); + w349.XOptions = ((global::Gtk.AttachOptions)(4)); + w349.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP6 = new global::Gtk.Button(); + this.btnP6.WidthRequest = 50; + this.btnP6.HeightRequest = 50; + this.btnP6.CanFocus = true; + this.btnP6.Name = "btnP6"; + this.btnP6.UseUnderline = true; + this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w350 = new global::Gtk.Image(); + this.btnP6.Image = w350; + this.tbUI.Add(this.btnP6); + global::Gtk.Table.TableChild w351 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); + w351.TopAttach = ((uint)(1)); + w351.BottomAttach = ((uint)(2)); + w351.LeftAttach = ((uint)(17)); + w351.RightAttach = ((uint)(18)); + w351.XOptions = ((global::Gtk.AttachOptions)(4)); + w351.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP60 = new global::Gtk.Button(); + this.btnP60.WidthRequest = 50; + this.btnP60.HeightRequest = 50; + this.btnP60.CanFocus = true; + this.btnP60.Name = "btnP60"; + this.btnP60.UseUnderline = true; + this.btnP60.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w352 = new global::Gtk.Image(); + this.btnP60.Image = w352; + this.tbUI.Add(this.btnP60); + global::Gtk.Table.TableChild w353 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP60])); + w353.TopAttach = ((uint)(7)); + w353.BottomAttach = ((uint)(8)); + w353.LeftAttach = ((uint)(17)); + w353.RightAttach = ((uint)(18)); + w353.XOptions = ((global::Gtk.AttachOptions)(4)); + w353.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP61 = new global::Gtk.Button(); + this.btnP61.WidthRequest = 50; + this.btnP61.HeightRequest = 50; + this.btnP61.CanFocus = true; + this.btnP61.Name = "btnP61"; + this.btnP61.UseUnderline = true; + this.btnP61.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w354 = new global::Gtk.Image(); + this.btnP61.Image = w354; + this.tbUI.Add(this.btnP61); + global::Gtk.Table.TableChild w355 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP61])); + w355.TopAttach = ((uint)(7)); + w355.BottomAttach = ((uint)(8)); + w355.LeftAttach = ((uint)(18)); + w355.RightAttach = ((uint)(19)); + w355.XOptions = ((global::Gtk.AttachOptions)(4)); + w355.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP62 = new global::Gtk.Button(); + this.btnP62.WidthRequest = 50; + this.btnP62.HeightRequest = 50; + this.btnP62.CanFocus = true; + this.btnP62.Name = "btnP62"; + this.btnP62.UseUnderline = true; + this.btnP62.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w356 = new global::Gtk.Image(); + this.btnP62.Image = w356; + this.tbUI.Add(this.btnP62); + global::Gtk.Table.TableChild w357 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP62])); + w357.TopAttach = ((uint)(7)); + w357.BottomAttach = ((uint)(8)); + w357.LeftAttach = ((uint)(19)); + w357.RightAttach = ((uint)(20)); + w357.XOptions = ((global::Gtk.AttachOptions)(4)); + w357.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP63 = new global::Gtk.Button(); + this.btnP63.WidthRequest = 50; + this.btnP63.HeightRequest = 50; + this.btnP63.CanFocus = true; + this.btnP63.Name = "btnP63"; + this.btnP63.UseUnderline = true; + this.btnP63.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w358 = new global::Gtk.Image(); + this.btnP63.Image = w358; + this.tbUI.Add(this.btnP63); + global::Gtk.Table.TableChild w359 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP63])); + w359.TopAttach = ((uint)(7)); + w359.BottomAttach = ((uint)(8)); + w359.LeftAttach = ((uint)(20)); + w359.RightAttach = ((uint)(21)); + w359.XOptions = ((global::Gtk.AttachOptions)(4)); + w359.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP64 = new global::Gtk.Button(); + this.btnP64.WidthRequest = 50; + this.btnP64.HeightRequest = 50; + this.btnP64.CanFocus = true; + this.btnP64.Name = "btnP64"; + this.btnP64.UseUnderline = true; + this.btnP64.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w360 = new global::Gtk.Image(); + this.btnP64.Image = w360; + this.tbUI.Add(this.btnP64); + global::Gtk.Table.TableChild w361 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP64])); + w361.TopAttach = ((uint)(8)); + w361.BottomAttach = ((uint)(9)); + w361.LeftAttach = ((uint)(12)); + w361.RightAttach = ((uint)(13)); + w361.XOptions = ((global::Gtk.AttachOptions)(4)); + w361.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP65 = new global::Gtk.Button(); + this.btnP65.WidthRequest = 50; + this.btnP65.HeightRequest = 50; + this.btnP65.CanFocus = true; + this.btnP65.Name = "btnP65"; + this.btnP65.UseUnderline = true; + this.btnP65.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w362 = new global::Gtk.Image(); + this.btnP65.Image = w362; + this.tbUI.Add(this.btnP65); + global::Gtk.Table.TableChild w363 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP65])); + w363.TopAttach = ((uint)(8)); + w363.BottomAttach = ((uint)(9)); + w363.LeftAttach = ((uint)(13)); + w363.RightAttach = ((uint)(14)); + w363.XOptions = ((global::Gtk.AttachOptions)(4)); + w363.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP66 = new global::Gtk.Button(); + this.btnP66.WidthRequest = 50; + this.btnP66.HeightRequest = 50; + this.btnP66.CanFocus = true; + this.btnP66.Name = "btnP66"; + this.btnP66.UseUnderline = true; + this.btnP66.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w364 = new global::Gtk.Image(); + this.btnP66.Image = w364; + this.tbUI.Add(this.btnP66); + global::Gtk.Table.TableChild w365 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP66])); + w365.TopAttach = ((uint)(8)); + w365.BottomAttach = ((uint)(9)); + w365.LeftAttach = ((uint)(14)); + w365.RightAttach = ((uint)(15)); + w365.XOptions = ((global::Gtk.AttachOptions)(4)); + w365.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP67 = new global::Gtk.Button(); + this.btnP67.WidthRequest = 50; + this.btnP67.HeightRequest = 50; + this.btnP67.CanFocus = true; + this.btnP67.Name = "btnP67"; + this.btnP67.UseUnderline = true; + this.btnP67.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w366 = new global::Gtk.Image(); + this.btnP67.Image = w366; + this.tbUI.Add(this.btnP67); + global::Gtk.Table.TableChild w367 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP67])); + w367.TopAttach = ((uint)(8)); + w367.BottomAttach = ((uint)(9)); + w367.LeftAttach = ((uint)(15)); + w367.RightAttach = ((uint)(16)); + w367.XOptions = ((global::Gtk.AttachOptions)(4)); + w367.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP68 = new global::Gtk.Button(); + this.btnP68.WidthRequest = 50; + this.btnP68.HeightRequest = 50; + this.btnP68.CanFocus = true; + this.btnP68.Name = "btnP68"; + this.btnP68.UseUnderline = true; + this.btnP68.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w368 = new global::Gtk.Image(); + this.btnP68.Image = w368; + this.tbUI.Add(this.btnP68); + global::Gtk.Table.TableChild w369 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP68])); + w369.TopAttach = ((uint)(8)); + w369.BottomAttach = ((uint)(9)); + w369.LeftAttach = ((uint)(16)); + w369.RightAttach = ((uint)(17)); + w369.XOptions = ((global::Gtk.AttachOptions)(4)); + w369.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP69 = new global::Gtk.Button(); + this.btnP69.WidthRequest = 50; + this.btnP69.HeightRequest = 50; + this.btnP69.CanFocus = true; + this.btnP69.Name = "btnP69"; + this.btnP69.UseUnderline = true; + this.btnP69.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w370 = new global::Gtk.Image(); + this.btnP69.Image = w370; + this.tbUI.Add(this.btnP69); + global::Gtk.Table.TableChild w371 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP69])); + w371.TopAttach = ((uint)(8)); + w371.BottomAttach = ((uint)(9)); + w371.LeftAttach = ((uint)(17)); + w371.RightAttach = ((uint)(18)); + w371.XOptions = ((global::Gtk.AttachOptions)(4)); + w371.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP7 = new global::Gtk.Button(); + this.btnP7.WidthRequest = 50; + this.btnP7.HeightRequest = 50; + this.btnP7.CanFocus = true; + this.btnP7.Name = "btnP7"; + this.btnP7.UseUnderline = true; + this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w372 = new global::Gtk.Image(); + this.btnP7.Image = w372; + this.tbUI.Add(this.btnP7); + global::Gtk.Table.TableChild w373 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); + w373.TopAttach = ((uint)(1)); + w373.BottomAttach = ((uint)(2)); + w373.LeftAttach = ((uint)(18)); + w373.RightAttach = ((uint)(19)); + w373.XOptions = ((global::Gtk.AttachOptions)(4)); + w373.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP70 = new global::Gtk.Button(); + this.btnP70.WidthRequest = 50; + this.btnP70.HeightRequest = 50; + this.btnP70.CanFocus = true; + this.btnP70.Name = "btnP70"; + this.btnP70.UseUnderline = true; + this.btnP70.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w374 = new global::Gtk.Image(); + this.btnP70.Image = w374; + this.tbUI.Add(this.btnP70); + global::Gtk.Table.TableChild w375 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP70])); + w375.TopAttach = ((uint)(8)); + w375.BottomAttach = ((uint)(9)); + w375.LeftAttach = ((uint)(18)); + w375.RightAttach = ((uint)(19)); + w375.XOptions = ((global::Gtk.AttachOptions)(4)); + w375.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP71 = new global::Gtk.Button(); + this.btnP71.WidthRequest = 50; + this.btnP71.HeightRequest = 50; + this.btnP71.CanFocus = true; + this.btnP71.Name = "btnP71"; + this.btnP71.UseUnderline = true; + this.btnP71.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w376 = new global::Gtk.Image(); + this.btnP71.Image = w376; + this.tbUI.Add(this.btnP71); + global::Gtk.Table.TableChild w377 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP71])); + w377.TopAttach = ((uint)(8)); + w377.BottomAttach = ((uint)(9)); + w377.LeftAttach = ((uint)(19)); + w377.RightAttach = ((uint)(20)); + w377.XOptions = ((global::Gtk.AttachOptions)(4)); + w377.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP72 = new global::Gtk.Button(); + this.btnP72.WidthRequest = 50; + this.btnP72.HeightRequest = 50; + this.btnP72.CanFocus = true; + this.btnP72.Name = "btnP72"; + this.btnP72.UseUnderline = true; + this.btnP72.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w378 = new global::Gtk.Image(); + this.btnP72.Image = w378; + this.tbUI.Add(this.btnP72); + global::Gtk.Table.TableChild w379 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP72])); + w379.TopAttach = ((uint)(8)); + w379.BottomAttach = ((uint)(9)); + w379.LeftAttach = ((uint)(20)); + w379.RightAttach = ((uint)(21)); + w379.XOptions = ((global::Gtk.AttachOptions)(4)); + w379.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP73 = new global::Gtk.Button(); + this.btnP73.WidthRequest = 50; + this.btnP73.HeightRequest = 50; + this.btnP73.CanFocus = true; + this.btnP73.Name = "btnP73"; + this.btnP73.UseUnderline = true; + this.btnP73.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w380 = new global::Gtk.Image(); + this.btnP73.Image = w380; + this.tbUI.Add(this.btnP73); + global::Gtk.Table.TableChild w381 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP73])); + w381.TopAttach = ((uint)(9)); + w381.BottomAttach = ((uint)(10)); + w381.LeftAttach = ((uint)(12)); + w381.RightAttach = ((uint)(13)); + w381.XOptions = ((global::Gtk.AttachOptions)(4)); + w381.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP74 = new global::Gtk.Button(); + this.btnP74.WidthRequest = 50; + this.btnP74.HeightRequest = 50; + this.btnP74.CanFocus = true; + this.btnP74.Name = "btnP74"; + this.btnP74.UseUnderline = true; + this.btnP74.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w382 = new global::Gtk.Image(); + this.btnP74.Image = w382; + this.tbUI.Add(this.btnP74); + global::Gtk.Table.TableChild w383 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP74])); + w383.TopAttach = ((uint)(9)); + w383.BottomAttach = ((uint)(10)); + w383.LeftAttach = ((uint)(13)); + w383.RightAttach = ((uint)(14)); + w383.XOptions = ((global::Gtk.AttachOptions)(4)); + w383.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP75 = new global::Gtk.Button(); + this.btnP75.WidthRequest = 50; + this.btnP75.HeightRequest = 50; + this.btnP75.CanFocus = true; + this.btnP75.Name = "btnP75"; + this.btnP75.UseUnderline = true; + this.btnP75.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w384 = new global::Gtk.Image(); + this.btnP75.Image = w384; + this.tbUI.Add(this.btnP75); + global::Gtk.Table.TableChild w385 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP75])); + w385.TopAttach = ((uint)(9)); + w385.BottomAttach = ((uint)(10)); + w385.LeftAttach = ((uint)(14)); + w385.RightAttach = ((uint)(15)); + w385.XOptions = ((global::Gtk.AttachOptions)(4)); + w385.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP76 = new global::Gtk.Button(); + this.btnP76.WidthRequest = 50; + this.btnP76.HeightRequest = 50; + this.btnP76.CanFocus = true; + this.btnP76.Name = "btnP76"; + this.btnP76.UseUnderline = true; + this.btnP76.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w386 = new global::Gtk.Image(); + this.btnP76.Image = w386; + this.tbUI.Add(this.btnP76); + global::Gtk.Table.TableChild w387 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP76])); + w387.TopAttach = ((uint)(9)); + w387.BottomAttach = ((uint)(10)); + w387.LeftAttach = ((uint)(15)); + w387.RightAttach = ((uint)(16)); + w387.XOptions = ((global::Gtk.AttachOptions)(4)); + w387.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP77 = new global::Gtk.Button(); + this.btnP77.WidthRequest = 50; + this.btnP77.HeightRequest = 50; + this.btnP77.CanFocus = true; + this.btnP77.Name = "btnP77"; + this.btnP77.UseUnderline = true; + this.btnP77.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w388 = new global::Gtk.Image(); + this.btnP77.Image = w388; + this.tbUI.Add(this.btnP77); + global::Gtk.Table.TableChild w389 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP77])); + w389.TopAttach = ((uint)(9)); + w389.BottomAttach = ((uint)(10)); + w389.LeftAttach = ((uint)(16)); + w389.RightAttach = ((uint)(17)); + w389.XOptions = ((global::Gtk.AttachOptions)(4)); + w389.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP78 = new global::Gtk.Button(); + this.btnP78.WidthRequest = 50; + this.btnP78.HeightRequest = 50; + this.btnP78.CanFocus = true; + this.btnP78.Name = "btnP78"; + this.btnP78.UseUnderline = true; + this.btnP78.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w390 = new global::Gtk.Image(); + this.btnP78.Image = w390; + this.tbUI.Add(this.btnP78); + global::Gtk.Table.TableChild w391 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP78])); + w391.TopAttach = ((uint)(9)); + w391.BottomAttach = ((uint)(10)); + w391.LeftAttach = ((uint)(17)); + w391.RightAttach = ((uint)(18)); + w391.XOptions = ((global::Gtk.AttachOptions)(4)); + w391.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP79 = new global::Gtk.Button(); + this.btnP79.WidthRequest = 50; + this.btnP79.HeightRequest = 50; + this.btnP79.CanFocus = true; + this.btnP79.Name = "btnP79"; + this.btnP79.UseUnderline = true; + this.btnP79.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w392 = new global::Gtk.Image(); + this.btnP79.Image = w392; + this.tbUI.Add(this.btnP79); + global::Gtk.Table.TableChild w393 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP79])); + w393.TopAttach = ((uint)(9)); + w393.BottomAttach = ((uint)(10)); + w393.LeftAttach = ((uint)(18)); + w393.RightAttach = ((uint)(19)); + w393.XOptions = ((global::Gtk.AttachOptions)(4)); + w393.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP8 = new global::Gtk.Button(); + this.btnP8.WidthRequest = 50; + this.btnP8.HeightRequest = 50; + this.btnP8.CanFocus = true; + this.btnP8.Name = "btnP8"; + this.btnP8.UseUnderline = true; + this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w394 = new global::Gtk.Image(); + this.btnP8.Image = w394; + this.tbUI.Add(this.btnP8); + global::Gtk.Table.TableChild w395 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); + w395.TopAttach = ((uint)(1)); + w395.BottomAttach = ((uint)(2)); + w395.LeftAttach = ((uint)(19)); + w395.RightAttach = ((uint)(20)); + w395.XOptions = ((global::Gtk.AttachOptions)(4)); + w395.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP80 = new global::Gtk.Button(); + this.btnP80.WidthRequest = 50; + this.btnP80.HeightRequest = 50; + this.btnP80.CanFocus = true; + this.btnP80.Name = "btnP80"; + this.btnP80.UseUnderline = true; + this.btnP80.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w396 = new global::Gtk.Image(); + this.btnP80.Image = w396; + this.tbUI.Add(this.btnP80); + global::Gtk.Table.TableChild w397 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP80])); + w397.TopAttach = ((uint)(9)); + w397.BottomAttach = ((uint)(10)); + w397.LeftAttach = ((uint)(19)); + w397.RightAttach = ((uint)(20)); + w397.XOptions = ((global::Gtk.AttachOptions)(4)); + w397.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP81 = new global::Gtk.Button(); + this.btnP81.WidthRequest = 50; + this.btnP81.HeightRequest = 50; + this.btnP81.CanFocus = true; + this.btnP81.Name = "btnP81"; + this.btnP81.UseUnderline = true; + this.btnP81.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w398 = new global::Gtk.Image(); + this.btnP81.Image = w398; + this.tbUI.Add(this.btnP81); + global::Gtk.Table.TableChild w399 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP81])); + w399.TopAttach = ((uint)(9)); + w399.BottomAttach = ((uint)(10)); + w399.LeftAttach = ((uint)(20)); + w399.RightAttach = ((uint)(21)); + w399.XOptions = ((global::Gtk.AttachOptions)(4)); + w399.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP9 = new global::Gtk.Button(); + this.btnP9.WidthRequest = 50; + this.btnP9.HeightRequest = 50; + this.btnP9.CanFocus = true; + this.btnP9.Name = "btnP9"; + this.btnP9.UseUnderline = true; + this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w400 = new global::Gtk.Image(); + this.btnP9.Image = w400; + this.tbUI.Add(this.btnP9); + global::Gtk.Table.TableChild w401 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); + w401.TopAttach = ((uint)(1)); + w401.BottomAttach = ((uint)(2)); + w401.LeftAttach = ((uint)(20)); + w401.RightAttach = ((uint)(21)); + w401.XOptions = ((global::Gtk.AttachOptions)(4)); + w401.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnPause = new global::Gtk.Button(); + this.btnPause.WidthRequest = 50; + this.btnPause.HeightRequest = 50; + this.btnPause.CanFocus = true; + this.btnPause.Name = "btnPause"; + this.btnPause.UseUnderline = true; + this.btnPause.Label = "Pause"; + this.tbUI.Add(this.btnPause); + global::Gtk.Table.TableChild w402 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); + w402.TopAttach = ((uint)(15)); + w402.BottomAttach = ((uint)(16)); + w402.LeftAttach = ((uint)(21)); + w402.RightAttach = ((uint)(22)); + w402.XOptions = ((global::Gtk.AttachOptions)(4)); + w402.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG1 = new global::Gtk.Image(); + this.imgG1.WidthRequest = 50; + this.imgG1.HeightRequest = 50; + this.imgG1.Name = "imgG1"; + this.tbUI.Add(this.imgG1); + global::Gtk.Table.TableChild w403 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); + w403.TopAttach = ((uint)(2)); + w403.BottomAttach = ((uint)(3)); + w403.LeftAttach = ((uint)(1)); + w403.RightAttach = ((uint)(2)); + w403.XOptions = ((global::Gtk.AttachOptions)(4)); + w403.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG10 = new global::Gtk.Image(); + this.imgG10.WidthRequest = 50; + this.imgG10.HeightRequest = 50; + this.imgG10.Name = "imgG10"; + this.tbUI.Add(this.imgG10); + global::Gtk.Table.TableChild w404 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); + w404.TopAttach = ((uint)(3)); + w404.BottomAttach = ((uint)(4)); + w404.LeftAttach = ((uint)(1)); + w404.RightAttach = ((uint)(2)); + w404.XOptions = ((global::Gtk.AttachOptions)(4)); + w404.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG11 = new global::Gtk.Image(); + this.imgG11.WidthRequest = 50; + this.imgG11.HeightRequest = 50; + this.imgG11.Name = "imgG11"; + this.tbUI.Add(this.imgG11); + global::Gtk.Table.TableChild w405 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); + w405.TopAttach = ((uint)(3)); + w405.BottomAttach = ((uint)(4)); + w405.LeftAttach = ((uint)(2)); + w405.RightAttach = ((uint)(3)); + w405.XOptions = ((global::Gtk.AttachOptions)(4)); + w405.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG12 = new global::Gtk.Image(); + this.imgG12.WidthRequest = 50; + this.imgG12.HeightRequest = 50; + this.imgG12.Name = "imgG12"; + this.tbUI.Add(this.imgG12); + global::Gtk.Table.TableChild w406 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); + w406.TopAttach = ((uint)(3)); + w406.BottomAttach = ((uint)(4)); + w406.LeftAttach = ((uint)(3)); + w406.RightAttach = ((uint)(4)); + w406.XOptions = ((global::Gtk.AttachOptions)(4)); + w406.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG13 = new global::Gtk.Image(); + this.imgG13.WidthRequest = 50; + this.imgG13.HeightRequest = 50; + this.imgG13.Name = "imgG13"; + this.tbUI.Add(this.imgG13); + global::Gtk.Table.TableChild w407 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); + w407.TopAttach = ((uint)(3)); + w407.BottomAttach = ((uint)(4)); + w407.LeftAttach = ((uint)(4)); + w407.RightAttach = ((uint)(5)); + w407.XOptions = ((global::Gtk.AttachOptions)(4)); + w407.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG14 = new global::Gtk.Image(); + this.imgG14.WidthRequest = 50; + this.imgG14.HeightRequest = 50; + this.imgG14.Name = "imgG14"; + this.tbUI.Add(this.imgG14); + global::Gtk.Table.TableChild w408 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); + w408.TopAttach = ((uint)(3)); + w408.BottomAttach = ((uint)(4)); + w408.LeftAttach = ((uint)(5)); + w408.RightAttach = ((uint)(6)); + w408.XOptions = ((global::Gtk.AttachOptions)(4)); + w408.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG15 = new global::Gtk.Image(); + this.imgG15.WidthRequest = 50; + this.imgG15.HeightRequest = 50; + this.imgG15.Name = "imgG15"; + this.tbUI.Add(this.imgG15); + global::Gtk.Table.TableChild w409 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + w409.TopAttach = ((uint)(3)); + w409.BottomAttach = ((uint)(4)); + w409.LeftAttach = ((uint)(6)); + w409.RightAttach = ((uint)(7)); + w409.XOptions = ((global::Gtk.AttachOptions)(4)); + w409.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG16 = new global::Gtk.Image(); + this.imgG16.WidthRequest = 50; + this.imgG16.HeightRequest = 50; + this.imgG16.Name = "imgG16"; + this.tbUI.Add(this.imgG16); + global::Gtk.Table.TableChild w410 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); + w410.TopAttach = ((uint)(3)); + w410.BottomAttach = ((uint)(4)); + w410.LeftAttach = ((uint)(7)); + w410.RightAttach = ((uint)(8)); + w410.XOptions = ((global::Gtk.AttachOptions)(4)); + w410.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG17 = new global::Gtk.Image(); + this.imgG17.WidthRequest = 50; + this.imgG17.HeightRequest = 50; + this.imgG17.Name = "imgG17"; + this.tbUI.Add(this.imgG17); + global::Gtk.Table.TableChild w411 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); + w411.TopAttach = ((uint)(3)); + w411.BottomAttach = ((uint)(4)); + w411.LeftAttach = ((uint)(8)); + w411.RightAttach = ((uint)(9)); + w411.XOptions = ((global::Gtk.AttachOptions)(4)); + w411.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG18 = new global::Gtk.Image(); + this.imgG18.WidthRequest = 50; + this.imgG18.HeightRequest = 50; + this.imgG18.Name = "imgG18"; + this.tbUI.Add(this.imgG18); + global::Gtk.Table.TableChild w412 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); + w412.TopAttach = ((uint)(3)); + w412.BottomAttach = ((uint)(4)); + w412.LeftAttach = ((uint)(9)); + w412.RightAttach = ((uint)(10)); + w412.XOptions = ((global::Gtk.AttachOptions)(4)); + w412.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG19 = new global::Gtk.Image(); + this.imgG19.WidthRequest = 50; + this.imgG19.HeightRequest = 50; + this.imgG19.Name = "imgG19"; + this.tbUI.Add(this.imgG19); + global::Gtk.Table.TableChild w413 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + w413.TopAttach = ((uint)(4)); + w413.BottomAttach = ((uint)(5)); + w413.LeftAttach = ((uint)(1)); + w413.RightAttach = ((uint)(2)); + w413.XOptions = ((global::Gtk.AttachOptions)(4)); + w413.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG2 = new global::Gtk.Image(); + this.imgG2.WidthRequest = 50; + this.imgG2.HeightRequest = 50; + this.imgG2.Name = "imgG2"; + this.tbUI.Add(this.imgG2); + global::Gtk.Table.TableChild w414 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); + w414.TopAttach = ((uint)(2)); + w414.BottomAttach = ((uint)(3)); + w414.LeftAttach = ((uint)(2)); + w414.RightAttach = ((uint)(3)); + w414.XOptions = ((global::Gtk.AttachOptions)(4)); + w414.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG20 = new global::Gtk.Image(); + this.imgG20.WidthRequest = 50; + this.imgG20.HeightRequest = 50; + this.imgG20.Name = "imgG20"; + this.tbUI.Add(this.imgG20); + global::Gtk.Table.TableChild w415 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); + w415.TopAttach = ((uint)(4)); + w415.BottomAttach = ((uint)(5)); + w415.LeftAttach = ((uint)(2)); + w415.RightAttach = ((uint)(3)); + w415.XOptions = ((global::Gtk.AttachOptions)(4)); + w415.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG21 = new global::Gtk.Image(); + this.imgG21.WidthRequest = 50; + this.imgG21.HeightRequest = 50; + this.imgG21.Name = "imgG21"; + this.tbUI.Add(this.imgG21); + global::Gtk.Table.TableChild w416 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); + w416.TopAttach = ((uint)(4)); + w416.BottomAttach = ((uint)(5)); + w416.LeftAttach = ((uint)(3)); + w416.RightAttach = ((uint)(4)); + w416.XOptions = ((global::Gtk.AttachOptions)(4)); + w416.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG22 = new global::Gtk.Image(); + this.imgG22.WidthRequest = 50; + this.imgG22.HeightRequest = 50; + this.imgG22.Name = "imgG22"; + this.tbUI.Add(this.imgG22); + global::Gtk.Table.TableChild w417 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); + w417.TopAttach = ((uint)(4)); + w417.BottomAttach = ((uint)(5)); + w417.LeftAttach = ((uint)(4)); + w417.RightAttach = ((uint)(5)); + w417.XOptions = ((global::Gtk.AttachOptions)(4)); + w417.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG23 = new global::Gtk.Image(); + this.imgG23.WidthRequest = 50; + this.imgG23.HeightRequest = 50; + this.imgG23.Name = "imgG23"; + this.tbUI.Add(this.imgG23); + global::Gtk.Table.TableChild w418 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); + w418.TopAttach = ((uint)(4)); + w418.BottomAttach = ((uint)(5)); + w418.LeftAttach = ((uint)(5)); + w418.RightAttach = ((uint)(6)); + w418.XOptions = ((global::Gtk.AttachOptions)(4)); + w418.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG24 = new global::Gtk.Image(); + this.imgG24.WidthRequest = 50; + this.imgG24.HeightRequest = 50; + this.imgG24.Name = "imgG24"; + this.tbUI.Add(this.imgG24); + global::Gtk.Table.TableChild w419 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); + w419.TopAttach = ((uint)(4)); + w419.BottomAttach = ((uint)(5)); + w419.LeftAttach = ((uint)(6)); + w419.RightAttach = ((uint)(7)); + w419.XOptions = ((global::Gtk.AttachOptions)(4)); + w419.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG25 = new global::Gtk.Image(); + this.imgG25.WidthRequest = 50; + this.imgG25.HeightRequest = 50; + this.imgG25.Name = "imgG25"; + this.tbUI.Add(this.imgG25); + global::Gtk.Table.TableChild w420 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + w420.TopAttach = ((uint)(4)); + w420.BottomAttach = ((uint)(5)); + w420.LeftAttach = ((uint)(7)); + w420.RightAttach = ((uint)(8)); + w420.XOptions = ((global::Gtk.AttachOptions)(4)); + w420.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG26 = new global::Gtk.Image(); + this.imgG26.WidthRequest = 50; + this.imgG26.HeightRequest = 50; + this.imgG26.Name = "imgG26"; + this.tbUI.Add(this.imgG26); + global::Gtk.Table.TableChild w421 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG26])); + w421.TopAttach = ((uint)(4)); + w421.BottomAttach = ((uint)(5)); + w421.LeftAttach = ((uint)(8)); + w421.RightAttach = ((uint)(9)); + w421.XOptions = ((global::Gtk.AttachOptions)(4)); + w421.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG27 = new global::Gtk.Image(); + this.imgG27.WidthRequest = 50; + this.imgG27.HeightRequest = 50; + this.imgG27.Name = "imgG27"; + this.tbUI.Add(this.imgG27); + global::Gtk.Table.TableChild w422 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG27])); + w422.TopAttach = ((uint)(4)); + w422.BottomAttach = ((uint)(5)); + w422.LeftAttach = ((uint)(9)); + w422.RightAttach = ((uint)(10)); + w422.XOptions = ((global::Gtk.AttachOptions)(4)); + w422.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG28 = new global::Gtk.Image(); + this.imgG28.WidthRequest = 50; + this.imgG28.HeightRequest = 50; + this.imgG28.Name = "imgG28"; + this.tbUI.Add(this.imgG28); + global::Gtk.Table.TableChild w423 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG28])); + w423.TopAttach = ((uint)(5)); + w423.BottomAttach = ((uint)(6)); + w423.LeftAttach = ((uint)(1)); + w423.RightAttach = ((uint)(2)); + w423.XOptions = ((global::Gtk.AttachOptions)(4)); + w423.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG29 = new global::Gtk.Image(); + this.imgG29.WidthRequest = 50; + this.imgG29.HeightRequest = 50; + this.imgG29.Name = "imgG29"; + this.tbUI.Add(this.imgG29); + global::Gtk.Table.TableChild w424 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG29])); + w424.TopAttach = ((uint)(5)); + w424.BottomAttach = ((uint)(6)); + w424.LeftAttach = ((uint)(2)); + w424.RightAttach = ((uint)(3)); + w424.XOptions = ((global::Gtk.AttachOptions)(4)); + w424.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG3 = new global::Gtk.Image(); + this.imgG3.WidthRequest = 50; + this.imgG3.HeightRequest = 50; + this.imgG3.Name = "imgG3"; + this.tbUI.Add(this.imgG3); + global::Gtk.Table.TableChild w425 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); + w425.TopAttach = ((uint)(2)); + w425.BottomAttach = ((uint)(3)); + w425.LeftAttach = ((uint)(3)); + w425.RightAttach = ((uint)(4)); + w425.XOptions = ((global::Gtk.AttachOptions)(4)); + w425.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG30 = new global::Gtk.Image(); + this.imgG30.WidthRequest = 50; + this.imgG30.HeightRequest = 50; + this.imgG30.Name = "imgG30"; + this.tbUI.Add(this.imgG30); + global::Gtk.Table.TableChild w426 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG30])); + w426.TopAttach = ((uint)(5)); + w426.BottomAttach = ((uint)(6)); + w426.LeftAttach = ((uint)(3)); + w426.RightAttach = ((uint)(4)); + w426.XOptions = ((global::Gtk.AttachOptions)(4)); + w426.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG31 = new global::Gtk.Image(); + this.imgG31.WidthRequest = 50; + this.imgG31.HeightRequest = 50; + this.imgG31.Name = "imgG31"; + this.tbUI.Add(this.imgG31); + global::Gtk.Table.TableChild w427 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG31])); + w427.TopAttach = ((uint)(5)); + w427.BottomAttach = ((uint)(6)); + w427.LeftAttach = ((uint)(4)); + w427.RightAttach = ((uint)(5)); + w427.XOptions = ((global::Gtk.AttachOptions)(4)); + w427.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG32 = new global::Gtk.Image(); + this.imgG32.WidthRequest = 50; + this.imgG32.HeightRequest = 50; + this.imgG32.Name = "imgG32"; + this.tbUI.Add(this.imgG32); + global::Gtk.Table.TableChild w428 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG32])); + w428.TopAttach = ((uint)(5)); + w428.BottomAttach = ((uint)(6)); + w428.LeftAttach = ((uint)(5)); + w428.RightAttach = ((uint)(6)); + w428.XOptions = ((global::Gtk.AttachOptions)(4)); + w428.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG33 = new global::Gtk.Image(); + this.imgG33.WidthRequest = 50; + this.imgG33.HeightRequest = 50; + this.imgG33.Name = "imgG33"; + this.tbUI.Add(this.imgG33); + global::Gtk.Table.TableChild w429 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG33])); + w429.TopAttach = ((uint)(5)); + w429.BottomAttach = ((uint)(6)); + w429.LeftAttach = ((uint)(6)); + w429.RightAttach = ((uint)(7)); + w429.XOptions = ((global::Gtk.AttachOptions)(4)); + w429.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG34 = new global::Gtk.Image(); + this.imgG34.WidthRequest = 50; + this.imgG34.HeightRequest = 50; + this.imgG34.Name = "imgG34"; + this.tbUI.Add(this.imgG34); + global::Gtk.Table.TableChild w430 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG34])); + w430.TopAttach = ((uint)(5)); + w430.BottomAttach = ((uint)(6)); + w430.LeftAttach = ((uint)(7)); + w430.RightAttach = ((uint)(8)); + w430.XOptions = ((global::Gtk.AttachOptions)(4)); + w430.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG35 = new global::Gtk.Image(); + this.imgG35.WidthRequest = 50; + this.imgG35.HeightRequest = 50; + this.imgG35.Name = "imgG35"; + this.tbUI.Add(this.imgG35); + global::Gtk.Table.TableChild w431 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG35])); + w431.TopAttach = ((uint)(5)); + w431.BottomAttach = ((uint)(6)); + w431.LeftAttach = ((uint)(8)); + w431.RightAttach = ((uint)(9)); + w431.XOptions = ((global::Gtk.AttachOptions)(4)); + w431.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG36 = new global::Gtk.Image(); + this.imgG36.WidthRequest = 50; + this.imgG36.HeightRequest = 50; + this.imgG36.Name = "imgG36"; + this.tbUI.Add(this.imgG36); + global::Gtk.Table.TableChild w432 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG36])); + w432.TopAttach = ((uint)(5)); + w432.BottomAttach = ((uint)(6)); + w432.LeftAttach = ((uint)(9)); + w432.RightAttach = ((uint)(10)); + w432.XOptions = ((global::Gtk.AttachOptions)(4)); + w432.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG37 = new global::Gtk.Image(); + this.imgG37.WidthRequest = 50; + this.imgG37.HeightRequest = 50; + this.imgG37.Name = "imgG37"; + this.tbUI.Add(this.imgG37); + global::Gtk.Table.TableChild w433 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG37])); + w433.TopAttach = ((uint)(6)); + w433.BottomAttach = ((uint)(7)); + w433.LeftAttach = ((uint)(1)); + w433.RightAttach = ((uint)(2)); + w433.XOptions = ((global::Gtk.AttachOptions)(4)); + w433.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG38 = new global::Gtk.Image(); + this.imgG38.WidthRequest = 50; + this.imgG38.HeightRequest = 50; + this.imgG38.Name = "imgG38"; + this.tbUI.Add(this.imgG38); + global::Gtk.Table.TableChild w434 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG38])); + w434.TopAttach = ((uint)(6)); + w434.BottomAttach = ((uint)(7)); + w434.LeftAttach = ((uint)(2)); + w434.RightAttach = ((uint)(3)); + w434.XOptions = ((global::Gtk.AttachOptions)(4)); + w434.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG39 = new global::Gtk.Image(); + this.imgG39.WidthRequest = 50; + this.imgG39.HeightRequest = 50; + this.imgG39.Name = "imgG39"; + this.tbUI.Add(this.imgG39); + global::Gtk.Table.TableChild w435 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG39])); + w435.TopAttach = ((uint)(6)); + w435.BottomAttach = ((uint)(7)); + w435.LeftAttach = ((uint)(3)); + w435.RightAttach = ((uint)(4)); + w435.XOptions = ((global::Gtk.AttachOptions)(4)); + w435.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG4 = new global::Gtk.Image(); + this.imgG4.WidthRequest = 50; + this.imgG4.HeightRequest = 50; + this.imgG4.Name = "imgG4"; + this.tbUI.Add(this.imgG4); + global::Gtk.Table.TableChild w436 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); + w436.TopAttach = ((uint)(2)); + w436.BottomAttach = ((uint)(3)); + w436.LeftAttach = ((uint)(4)); + w436.RightAttach = ((uint)(5)); + w436.XOptions = ((global::Gtk.AttachOptions)(4)); + w436.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG40 = new global::Gtk.Image(); + this.imgG40.WidthRequest = 50; + this.imgG40.HeightRequest = 50; + this.imgG40.Name = "imgG40"; + this.tbUI.Add(this.imgG40); + global::Gtk.Table.TableChild w437 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG40])); + w437.TopAttach = ((uint)(6)); + w437.BottomAttach = ((uint)(7)); + w437.LeftAttach = ((uint)(4)); + w437.RightAttach = ((uint)(5)); + w437.XOptions = ((global::Gtk.AttachOptions)(4)); + w437.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG41 = new global::Gtk.Image(); + this.imgG41.WidthRequest = 50; + this.imgG41.HeightRequest = 50; + this.imgG41.Name = "imgG41"; + this.tbUI.Add(this.imgG41); + global::Gtk.Table.TableChild w438 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG41])); + w438.TopAttach = ((uint)(6)); + w438.BottomAttach = ((uint)(7)); + w438.LeftAttach = ((uint)(5)); + w438.RightAttach = ((uint)(6)); + w438.XOptions = ((global::Gtk.AttachOptions)(4)); + w438.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG42 = new global::Gtk.Image(); + this.imgG42.WidthRequest = 50; + this.imgG42.HeightRequest = 50; + this.imgG42.Name = "imgG42"; + this.tbUI.Add(this.imgG42); + global::Gtk.Table.TableChild w439 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG42])); + w439.TopAttach = ((uint)(6)); + w439.BottomAttach = ((uint)(7)); + w439.LeftAttach = ((uint)(6)); + w439.RightAttach = ((uint)(7)); + w439.XOptions = ((global::Gtk.AttachOptions)(4)); + w439.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG43 = new global::Gtk.Image(); + this.imgG43.WidthRequest = 50; + this.imgG43.HeightRequest = 50; + this.imgG43.Name = "imgG43"; + this.tbUI.Add(this.imgG43); + global::Gtk.Table.TableChild w440 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG43])); + w440.TopAttach = ((uint)(6)); + w440.BottomAttach = ((uint)(7)); + w440.LeftAttach = ((uint)(7)); + w440.RightAttach = ((uint)(8)); + w440.XOptions = ((global::Gtk.AttachOptions)(4)); + w440.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG44 = new global::Gtk.Image(); + this.imgG44.WidthRequest = 50; + this.imgG44.HeightRequest = 50; + this.imgG44.Name = "imgG44"; + this.tbUI.Add(this.imgG44); + global::Gtk.Table.TableChild w441 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG44])); + w441.TopAttach = ((uint)(6)); + w441.BottomAttach = ((uint)(7)); + w441.LeftAttach = ((uint)(8)); + w441.RightAttach = ((uint)(9)); + w441.XOptions = ((global::Gtk.AttachOptions)(4)); + w441.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG45 = new global::Gtk.Image(); + this.imgG45.WidthRequest = 50; + this.imgG45.HeightRequest = 50; + this.imgG45.Name = "imgG45"; + this.tbUI.Add(this.imgG45); + global::Gtk.Table.TableChild w442 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG45])); + w442.TopAttach = ((uint)(6)); + w442.BottomAttach = ((uint)(7)); + w442.LeftAttach = ((uint)(9)); + w442.RightAttach = ((uint)(10)); + w442.XOptions = ((global::Gtk.AttachOptions)(4)); + w442.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG46 = new global::Gtk.Image(); + this.imgG46.WidthRequest = 50; + this.imgG46.HeightRequest = 50; + this.imgG46.Name = "imgG46"; + this.tbUI.Add(this.imgG46); + global::Gtk.Table.TableChild w443 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG46])); + w443.TopAttach = ((uint)(7)); + w443.BottomAttach = ((uint)(8)); + w443.LeftAttach = ((uint)(1)); + w443.RightAttach = ((uint)(2)); + w443.XOptions = ((global::Gtk.AttachOptions)(4)); + w443.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG47 = new global::Gtk.Image(); + this.imgG47.WidthRequest = 50; + this.imgG47.HeightRequest = 50; + this.imgG47.Name = "imgG47"; + this.tbUI.Add(this.imgG47); + global::Gtk.Table.TableChild w444 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG47])); + w444.TopAttach = ((uint)(7)); + w444.BottomAttach = ((uint)(8)); + w444.LeftAttach = ((uint)(2)); + w444.RightAttach = ((uint)(3)); + w444.XOptions = ((global::Gtk.AttachOptions)(4)); + w444.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG48 = new global::Gtk.Image(); + this.imgG48.WidthRequest = 50; + this.imgG48.HeightRequest = 50; + this.imgG48.Name = "imgG48"; + this.tbUI.Add(this.imgG48); + global::Gtk.Table.TableChild w445 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG48])); + w445.TopAttach = ((uint)(7)); + w445.BottomAttach = ((uint)(8)); + w445.LeftAttach = ((uint)(3)); + w445.RightAttach = ((uint)(4)); + w445.XOptions = ((global::Gtk.AttachOptions)(4)); + w445.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG49 = new global::Gtk.Image(); + this.imgG49.WidthRequest = 50; + this.imgG49.HeightRequest = 50; + this.imgG49.Name = "imgG49"; + this.tbUI.Add(this.imgG49); + global::Gtk.Table.TableChild w446 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG49])); + w446.TopAttach = ((uint)(7)); + w446.BottomAttach = ((uint)(8)); + w446.LeftAttach = ((uint)(4)); + w446.RightAttach = ((uint)(5)); + w446.XOptions = ((global::Gtk.AttachOptions)(4)); + w446.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG5 = new global::Gtk.Image(); + this.imgG5.WidthRequest = 50; + this.imgG5.HeightRequest = 50; + this.imgG5.Name = "imgG5"; + this.tbUI.Add(this.imgG5); + global::Gtk.Table.TableChild w447 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + w447.TopAttach = ((uint)(2)); + w447.BottomAttach = ((uint)(3)); + w447.LeftAttach = ((uint)(5)); + w447.RightAttach = ((uint)(6)); + w447.XOptions = ((global::Gtk.AttachOptions)(4)); + w447.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG50 = new global::Gtk.Image(); + this.imgG50.WidthRequest = 50; + this.imgG50.HeightRequest = 50; + this.imgG50.Name = "imgG50"; + this.tbUI.Add(this.imgG50); + global::Gtk.Table.TableChild w448 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG50])); + w448.TopAttach = ((uint)(7)); + w448.BottomAttach = ((uint)(8)); + w448.LeftAttach = ((uint)(5)); + w448.RightAttach = ((uint)(6)); + w448.XOptions = ((global::Gtk.AttachOptions)(4)); + w448.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG51 = new global::Gtk.Image(); + this.imgG51.WidthRequest = 50; + this.imgG51.HeightRequest = 50; + this.imgG51.Name = "imgG51"; + this.tbUI.Add(this.imgG51); + global::Gtk.Table.TableChild w449 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG51])); + w449.TopAttach = ((uint)(7)); + w449.BottomAttach = ((uint)(8)); + w449.LeftAttach = ((uint)(6)); + w449.RightAttach = ((uint)(7)); + w449.XOptions = ((global::Gtk.AttachOptions)(4)); + w449.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG52 = new global::Gtk.Image(); + this.imgG52.WidthRequest = 50; + this.imgG52.HeightRequest = 50; + this.imgG52.Name = "imgG52"; + this.tbUI.Add(this.imgG52); + global::Gtk.Table.TableChild w450 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG52])); + w450.TopAttach = ((uint)(7)); + w450.BottomAttach = ((uint)(8)); + w450.LeftAttach = ((uint)(7)); + w450.RightAttach = ((uint)(8)); + w450.XOptions = ((global::Gtk.AttachOptions)(4)); + w450.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG53 = new global::Gtk.Image(); + this.imgG53.WidthRequest = 50; + this.imgG53.HeightRequest = 50; + this.imgG53.Name = "imgG53"; + this.tbUI.Add(this.imgG53); + global::Gtk.Table.TableChild w451 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG53])); + w451.TopAttach = ((uint)(7)); + w451.BottomAttach = ((uint)(8)); + w451.LeftAttach = ((uint)(8)); + w451.RightAttach = ((uint)(9)); + w451.XOptions = ((global::Gtk.AttachOptions)(4)); + w451.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG54 = new global::Gtk.Image(); + this.imgG54.WidthRequest = 50; + this.imgG54.HeightRequest = 50; + this.imgG54.Name = "imgG54"; + this.tbUI.Add(this.imgG54); + global::Gtk.Table.TableChild w452 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG54])); + w452.TopAttach = ((uint)(7)); + w452.BottomAttach = ((uint)(8)); + w452.LeftAttach = ((uint)(9)); + w452.RightAttach = ((uint)(10)); + w452.XOptions = ((global::Gtk.AttachOptions)(4)); + w452.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG55 = new global::Gtk.Image(); + this.imgG55.WidthRequest = 50; + this.imgG55.HeightRequest = 50; + this.imgG55.Name = "imgG55"; + this.tbUI.Add(this.imgG55); + global::Gtk.Table.TableChild w453 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG55])); + w453.TopAttach = ((uint)(8)); + w453.BottomAttach = ((uint)(9)); + w453.LeftAttach = ((uint)(1)); + w453.RightAttach = ((uint)(2)); + w453.XOptions = ((global::Gtk.AttachOptions)(4)); + w453.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG56 = new global::Gtk.Image(); + this.imgG56.WidthRequest = 50; + this.imgG56.HeightRequest = 50; + this.imgG56.Name = "imgG56"; + this.tbUI.Add(this.imgG56); + global::Gtk.Table.TableChild w454 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG56])); + w454.TopAttach = ((uint)(8)); + w454.BottomAttach = ((uint)(9)); + w454.LeftAttach = ((uint)(2)); + w454.RightAttach = ((uint)(3)); + w454.XOptions = ((global::Gtk.AttachOptions)(4)); + w454.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG57 = new global::Gtk.Image(); + this.imgG57.WidthRequest = 50; + this.imgG57.HeightRequest = 50; + this.imgG57.Name = "imgG57"; + this.tbUI.Add(this.imgG57); + global::Gtk.Table.TableChild w455 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG57])); + w455.TopAttach = ((uint)(8)); + w455.BottomAttach = ((uint)(9)); + w455.LeftAttach = ((uint)(3)); + w455.RightAttach = ((uint)(4)); + w455.XOptions = ((global::Gtk.AttachOptions)(4)); + w455.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG58 = new global::Gtk.Image(); + this.imgG58.WidthRequest = 50; + this.imgG58.HeightRequest = 50; + this.imgG58.Name = "imgG58"; + this.tbUI.Add(this.imgG58); + global::Gtk.Table.TableChild w456 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG58])); + w456.TopAttach = ((uint)(8)); + w456.BottomAttach = ((uint)(9)); + w456.LeftAttach = ((uint)(4)); + w456.RightAttach = ((uint)(5)); + w456.XOptions = ((global::Gtk.AttachOptions)(4)); + w456.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG59 = new global::Gtk.Image(); + this.imgG59.WidthRequest = 50; + this.imgG59.HeightRequest = 50; + this.imgG59.Name = "imgG59"; + this.tbUI.Add(this.imgG59); + global::Gtk.Table.TableChild w457 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG59])); + w457.TopAttach = ((uint)(8)); + w457.BottomAttach = ((uint)(9)); + w457.LeftAttach = ((uint)(5)); + w457.RightAttach = ((uint)(6)); + w457.XOptions = ((global::Gtk.AttachOptions)(4)); + w457.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG6 = new global::Gtk.Image(); + this.imgG6.WidthRequest = 50; + this.imgG6.HeightRequest = 50; + this.imgG6.Name = "imgG6"; + this.tbUI.Add(this.imgG6); + global::Gtk.Table.TableChild w458 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); + w458.TopAttach = ((uint)(2)); + w458.BottomAttach = ((uint)(3)); + w458.LeftAttach = ((uint)(6)); + w458.RightAttach = ((uint)(7)); + w458.XOptions = ((global::Gtk.AttachOptions)(4)); + w458.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG60 = new global::Gtk.Image(); + this.imgG60.WidthRequest = 50; + this.imgG60.HeightRequest = 50; + this.imgG60.Name = "imgG60"; + this.tbUI.Add(this.imgG60); + global::Gtk.Table.TableChild w459 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG60])); + w459.TopAttach = ((uint)(8)); + w459.BottomAttach = ((uint)(9)); + w459.LeftAttach = ((uint)(6)); + w459.RightAttach = ((uint)(7)); + w459.XOptions = ((global::Gtk.AttachOptions)(4)); + w459.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG61 = new global::Gtk.Image(); + this.imgG61.WidthRequest = 50; + this.imgG61.HeightRequest = 50; + this.imgG61.Name = "imgG61"; + this.tbUI.Add(this.imgG61); + global::Gtk.Table.TableChild w460 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG61])); + w460.TopAttach = ((uint)(8)); + w460.BottomAttach = ((uint)(9)); + w460.LeftAttach = ((uint)(7)); + w460.RightAttach = ((uint)(8)); + w460.XOptions = ((global::Gtk.AttachOptions)(4)); + w460.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG62 = new global::Gtk.Image(); + this.imgG62.WidthRequest = 50; + this.imgG62.HeightRequest = 50; + this.imgG62.Name = "imgG62"; + this.tbUI.Add(this.imgG62); + global::Gtk.Table.TableChild w461 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG62])); + w461.TopAttach = ((uint)(8)); + w461.BottomAttach = ((uint)(9)); + w461.LeftAttach = ((uint)(8)); + w461.RightAttach = ((uint)(9)); + w461.XOptions = ((global::Gtk.AttachOptions)(4)); + w461.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG63 = new global::Gtk.Image(); + this.imgG63.WidthRequest = 50; + this.imgG63.HeightRequest = 50; + this.imgG63.Name = "imgG63"; + this.tbUI.Add(this.imgG63); + global::Gtk.Table.TableChild w462 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG63])); + w462.TopAttach = ((uint)(8)); + w462.BottomAttach = ((uint)(9)); + w462.LeftAttach = ((uint)(9)); + w462.RightAttach = ((uint)(10)); + w462.XOptions = ((global::Gtk.AttachOptions)(4)); + w462.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG64 = new global::Gtk.Image(); + this.imgG64.WidthRequest = 50; + this.imgG64.HeightRequest = 50; + this.imgG64.Name = "imgG64"; + this.tbUI.Add(this.imgG64); + global::Gtk.Table.TableChild w463 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG64])); + w463.TopAttach = ((uint)(9)); + w463.BottomAttach = ((uint)(10)); + w463.LeftAttach = ((uint)(1)); + w463.RightAttach = ((uint)(2)); + w463.XOptions = ((global::Gtk.AttachOptions)(4)); + w463.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG65 = new global::Gtk.Image(); + this.imgG65.WidthRequest = 50; + this.imgG65.HeightRequest = 50; + this.imgG65.Name = "imgG65"; + this.tbUI.Add(this.imgG65); + global::Gtk.Table.TableChild w464 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG65])); + w464.TopAttach = ((uint)(9)); + w464.BottomAttach = ((uint)(10)); + w464.LeftAttach = ((uint)(2)); + w464.RightAttach = ((uint)(3)); + w464.XOptions = ((global::Gtk.AttachOptions)(4)); + w464.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG66 = new global::Gtk.Image(); + this.imgG66.WidthRequest = 50; + this.imgG66.HeightRequest = 50; + this.imgG66.Name = "imgG66"; + this.tbUI.Add(this.imgG66); + global::Gtk.Table.TableChild w465 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG66])); + w465.TopAttach = ((uint)(9)); + w465.BottomAttach = ((uint)(10)); + w465.LeftAttach = ((uint)(3)); + w465.RightAttach = ((uint)(4)); + w465.XOptions = ((global::Gtk.AttachOptions)(4)); + w465.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG67 = new global::Gtk.Image(); + this.imgG67.WidthRequest = 50; + this.imgG67.HeightRequest = 50; + this.imgG67.Name = "imgG67"; + this.tbUI.Add(this.imgG67); + global::Gtk.Table.TableChild w466 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG67])); + w466.TopAttach = ((uint)(9)); + w466.BottomAttach = ((uint)(10)); + w466.LeftAttach = ((uint)(4)); + w466.RightAttach = ((uint)(5)); + w466.XOptions = ((global::Gtk.AttachOptions)(4)); + w466.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG68 = new global::Gtk.Image(); + this.imgG68.WidthRequest = 50; + this.imgG68.HeightRequest = 50; + this.imgG68.Name = "imgG68"; + this.tbUI.Add(this.imgG68); + global::Gtk.Table.TableChild w467 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG68])); + w467.TopAttach = ((uint)(9)); + w467.BottomAttach = ((uint)(10)); + w467.LeftAttach = ((uint)(5)); + w467.RightAttach = ((uint)(6)); + w467.XOptions = ((global::Gtk.AttachOptions)(4)); + w467.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG69 = new global::Gtk.Image(); + this.imgG69.WidthRequest = 50; + this.imgG69.HeightRequest = 50; + this.imgG69.Name = "imgG69"; + this.tbUI.Add(this.imgG69); + global::Gtk.Table.TableChild w468 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG69])); + w468.TopAttach = ((uint)(9)); + w468.BottomAttach = ((uint)(10)); + w468.LeftAttach = ((uint)(6)); + w468.RightAttach = ((uint)(7)); + w468.XOptions = ((global::Gtk.AttachOptions)(4)); + w468.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG7 = new global::Gtk.Image(); + this.imgG7.WidthRequest = 50; + this.imgG7.HeightRequest = 50; + this.imgG7.Name = "imgG7"; + this.tbUI.Add(this.imgG7); + global::Gtk.Table.TableChild w469 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); + w469.TopAttach = ((uint)(2)); + w469.BottomAttach = ((uint)(3)); + w469.LeftAttach = ((uint)(7)); + w469.RightAttach = ((uint)(8)); + w469.XOptions = ((global::Gtk.AttachOptions)(4)); + w469.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG70 = new global::Gtk.Image(); + this.imgG70.WidthRequest = 50; + this.imgG70.HeightRequest = 50; + this.imgG70.Name = "imgG70"; + this.tbUI.Add(this.imgG70); + global::Gtk.Table.TableChild w470 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG70])); + w470.TopAttach = ((uint)(9)); + w470.BottomAttach = ((uint)(10)); + w470.LeftAttach = ((uint)(7)); + w470.RightAttach = ((uint)(8)); + w470.XOptions = ((global::Gtk.AttachOptions)(4)); + w470.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG71 = new global::Gtk.Image(); + this.imgG71.WidthRequest = 50; + this.imgG71.HeightRequest = 50; + this.imgG71.Name = "imgG71"; + this.tbUI.Add(this.imgG71); + global::Gtk.Table.TableChild w471 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG71])); + w471.TopAttach = ((uint)(9)); + w471.BottomAttach = ((uint)(10)); + w471.LeftAttach = ((uint)(8)); + w471.RightAttach = ((uint)(9)); + w471.XOptions = ((global::Gtk.AttachOptions)(4)); + w471.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG72 = new global::Gtk.Image(); + this.imgG72.WidthRequest = 50; + this.imgG72.HeightRequest = 50; + this.imgG72.Name = "imgG72"; + this.tbUI.Add(this.imgG72); + global::Gtk.Table.TableChild w472 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG72])); + w472.TopAttach = ((uint)(9)); + w472.BottomAttach = ((uint)(10)); + w472.LeftAttach = ((uint)(9)); + w472.RightAttach = ((uint)(10)); + w472.XOptions = ((global::Gtk.AttachOptions)(4)); + w472.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG73 = new global::Gtk.Image(); + this.imgG73.WidthRequest = 50; + this.imgG73.HeightRequest = 50; + this.imgG73.Name = "imgG73"; + this.tbUI.Add(this.imgG73); + global::Gtk.Table.TableChild w473 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG73])); + w473.TopAttach = ((uint)(10)); + w473.BottomAttach = ((uint)(11)); + w473.LeftAttach = ((uint)(1)); + w473.RightAttach = ((uint)(2)); + w473.XOptions = ((global::Gtk.AttachOptions)(4)); + w473.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG74 = new global::Gtk.Image(); + this.imgG74.WidthRequest = 50; + this.imgG74.HeightRequest = 50; + this.imgG74.Name = "imgG74"; + this.tbUI.Add(this.imgG74); + global::Gtk.Table.TableChild w474 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG74])); + w474.TopAttach = ((uint)(10)); + w474.BottomAttach = ((uint)(11)); + w474.LeftAttach = ((uint)(2)); + w474.RightAttach = ((uint)(3)); + w474.XOptions = ((global::Gtk.AttachOptions)(4)); + w474.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG75 = new global::Gtk.Image(); + this.imgG75.WidthRequest = 50; + this.imgG75.HeightRequest = 50; + this.imgG75.Name = "imgG75"; + this.tbUI.Add(this.imgG75); + global::Gtk.Table.TableChild w475 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG75])); + w475.TopAttach = ((uint)(10)); + w475.BottomAttach = ((uint)(11)); + w475.LeftAttach = ((uint)(3)); + w475.RightAttach = ((uint)(4)); + w475.XOptions = ((global::Gtk.AttachOptions)(4)); + w475.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG76 = new global::Gtk.Image(); + this.imgG76.WidthRequest = 50; + this.imgG76.HeightRequest = 50; + this.imgG76.Name = "imgG76"; + this.tbUI.Add(this.imgG76); + global::Gtk.Table.TableChild w476 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG76])); + w476.TopAttach = ((uint)(10)); + w476.BottomAttach = ((uint)(11)); + w476.LeftAttach = ((uint)(4)); + w476.RightAttach = ((uint)(5)); + w476.XOptions = ((global::Gtk.AttachOptions)(4)); + w476.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG77 = new global::Gtk.Image(); + this.imgG77.WidthRequest = 50; + this.imgG77.HeightRequest = 50; + this.imgG77.Name = "imgG77"; + this.tbUI.Add(this.imgG77); + global::Gtk.Table.TableChild w477 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG77])); + w477.TopAttach = ((uint)(10)); + w477.BottomAttach = ((uint)(11)); + w477.LeftAttach = ((uint)(5)); + w477.RightAttach = ((uint)(6)); + w477.XOptions = ((global::Gtk.AttachOptions)(4)); + w477.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG78 = new global::Gtk.Image(); + this.imgG78.WidthRequest = 50; + this.imgG78.HeightRequest = 50; + this.imgG78.Name = "imgG78"; + this.tbUI.Add(this.imgG78); + global::Gtk.Table.TableChild w478 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG78])); + w478.TopAttach = ((uint)(10)); + w478.BottomAttach = ((uint)(11)); + w478.LeftAttach = ((uint)(6)); + w478.RightAttach = ((uint)(7)); + w478.XOptions = ((global::Gtk.AttachOptions)(4)); + w478.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG79 = new global::Gtk.Image(); + this.imgG79.WidthRequest = 50; + this.imgG79.HeightRequest = 50; + this.imgG79.Name = "imgG79"; + this.tbUI.Add(this.imgG79); + global::Gtk.Table.TableChild w479 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG79])); + w479.TopAttach = ((uint)(10)); + w479.BottomAttach = ((uint)(11)); + w479.LeftAttach = ((uint)(7)); + w479.RightAttach = ((uint)(8)); + w479.XOptions = ((global::Gtk.AttachOptions)(4)); + w479.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG8 = new global::Gtk.Image(); + this.imgG8.WidthRequest = 50; + this.imgG8.HeightRequest = 50; + this.imgG8.Name = "imgG8"; + this.tbUI.Add(this.imgG8); + global::Gtk.Table.TableChild w480 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); + w480.TopAttach = ((uint)(2)); + w480.BottomAttach = ((uint)(3)); + w480.LeftAttach = ((uint)(8)); + w480.RightAttach = ((uint)(9)); + w480.XOptions = ((global::Gtk.AttachOptions)(4)); + w480.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG80 = new global::Gtk.Image(); + this.imgG80.WidthRequest = 50; + this.imgG80.HeightRequest = 50; + this.imgG80.Name = "imgG80"; + this.tbUI.Add(this.imgG80); + global::Gtk.Table.TableChild w481 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG80])); + w481.TopAttach = ((uint)(10)); + w481.BottomAttach = ((uint)(11)); + w481.LeftAttach = ((uint)(8)); + w481.RightAttach = ((uint)(9)); + w481.XOptions = ((global::Gtk.AttachOptions)(4)); + w481.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG81 = new global::Gtk.Image(); + this.imgG81.WidthRequest = 50; + this.imgG81.HeightRequest = 50; + this.imgG81.Name = "imgG81"; + this.tbUI.Add(this.imgG81); + global::Gtk.Table.TableChild w482 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG81])); + w482.TopAttach = ((uint)(10)); + w482.BottomAttach = ((uint)(11)); + w482.LeftAttach = ((uint)(9)); + w482.RightAttach = ((uint)(10)); + w482.XOptions = ((global::Gtk.AttachOptions)(4)); + w482.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG9 = new global::Gtk.Image(); + this.imgG9.WidthRequest = 50; + this.imgG9.HeightRequest = 50; + this.imgG9.Name = "imgG9"; + this.tbUI.Add(this.imgG9); + global::Gtk.Table.TableChild w483 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + w483.TopAttach = ((uint)(2)); + w483.BottomAttach = ((uint)(3)); + w483.LeftAttach = ((uint)(9)); + w483.RightAttach = ((uint)(10)); + w483.XOptions = ((global::Gtk.AttachOptions)(4)); + w483.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI1 = new global::Gtk.Image(); + this.imgI1.WidthRequest = 50; + this.imgI1.HeightRequest = 50; + this.imgI1.Name = "imgI1"; + this.tbUI.Add(this.imgI1); + global::Gtk.Table.TableChild w484 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w484.TopAttach = ((uint)(14)); + w484.BottomAttach = ((uint)(15)); + w484.LeftAttach = ((uint)(1)); + w484.RightAttach = ((uint)(2)); + w484.XOptions = ((global::Gtk.AttachOptions)(4)); + w484.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI10 = new global::Gtk.Image(); + this.imgI10.WidthRequest = 50; + this.imgI10.HeightRequest = 50; + this.imgI10.Name = "imgI10"; + this.tbUI.Add(this.imgI10); + global::Gtk.Table.TableChild w485 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); + w485.TopAttach = ((uint)(15)); + w485.BottomAttach = ((uint)(16)); + w485.LeftAttach = ((uint)(1)); + w485.RightAttach = ((uint)(2)); + w485.XOptions = ((global::Gtk.AttachOptions)(4)); + w485.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI11 = new global::Gtk.Image(); + this.imgI11.WidthRequest = 50; + this.imgI11.HeightRequest = 50; + this.imgI11.Name = "imgI11"; + this.tbUI.Add(this.imgI11); + global::Gtk.Table.TableChild w486 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); + w486.TopAttach = ((uint)(15)); + w486.BottomAttach = ((uint)(16)); + w486.LeftAttach = ((uint)(2)); + w486.RightAttach = ((uint)(3)); + w486.XOptions = ((global::Gtk.AttachOptions)(4)); + w486.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI12 = new global::Gtk.Image(); + this.imgI12.WidthRequest = 50; + this.imgI12.HeightRequest = 50; + this.imgI12.Name = "imgI12"; + this.tbUI.Add(this.imgI12); + global::Gtk.Table.TableChild w487 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); + w487.TopAttach = ((uint)(15)); + w487.BottomAttach = ((uint)(16)); + w487.LeftAttach = ((uint)(3)); + w487.RightAttach = ((uint)(4)); + w487.XOptions = ((global::Gtk.AttachOptions)(4)); + w487.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI13 = new global::Gtk.Image(); + this.imgI13.WidthRequest = 50; + this.imgI13.HeightRequest = 50; + this.imgI13.Name = "imgI13"; + this.tbUI.Add(this.imgI13); + global::Gtk.Table.TableChild w488 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); + w488.TopAttach = ((uint)(15)); + w488.BottomAttach = ((uint)(16)); + w488.LeftAttach = ((uint)(4)); + w488.RightAttach = ((uint)(5)); + w488.XOptions = ((global::Gtk.AttachOptions)(4)); + w488.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI14 = new global::Gtk.Image(); + this.imgI14.WidthRequest = 50; + this.imgI14.HeightRequest = 50; + this.imgI14.Name = "imgI14"; + this.tbUI.Add(this.imgI14); + global::Gtk.Table.TableChild w489 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); + w489.TopAttach = ((uint)(15)); + w489.BottomAttach = ((uint)(16)); + w489.LeftAttach = ((uint)(5)); + w489.RightAttach = ((uint)(6)); + w489.XOptions = ((global::Gtk.AttachOptions)(4)); + w489.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI15 = new global::Gtk.Image(); + this.imgI15.WidthRequest = 50; + this.imgI15.HeightRequest = 50; + this.imgI15.Name = "imgI15"; + this.tbUI.Add(this.imgI15); + global::Gtk.Table.TableChild w490 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); + w490.TopAttach = ((uint)(15)); + w490.BottomAttach = ((uint)(16)); + w490.LeftAttach = ((uint)(6)); + w490.RightAttach = ((uint)(7)); + w490.XOptions = ((global::Gtk.AttachOptions)(4)); + w490.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI16 = new global::Gtk.Image(); + this.imgI16.WidthRequest = 50; + this.imgI16.HeightRequest = 50; + this.imgI16.Name = "imgI16"; + this.tbUI.Add(this.imgI16); + global::Gtk.Table.TableChild w491 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); + w491.TopAttach = ((uint)(15)); + w491.BottomAttach = ((uint)(16)); + w491.LeftAttach = ((uint)(7)); + w491.RightAttach = ((uint)(8)); + w491.XOptions = ((global::Gtk.AttachOptions)(4)); + w491.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI17 = new global::Gtk.Image(); + this.imgI17.WidthRequest = 50; + this.imgI17.HeightRequest = 50; + this.imgI17.Name = "imgI17"; + this.tbUI.Add(this.imgI17); + global::Gtk.Table.TableChild w492 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); + w492.TopAttach = ((uint)(15)); + w492.BottomAttach = ((uint)(16)); + w492.LeftAttach = ((uint)(8)); + w492.RightAttach = ((uint)(9)); + w492.XOptions = ((global::Gtk.AttachOptions)(4)); + w492.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI18 = new global::Gtk.Image(); + this.imgI18.WidthRequest = 50; + this.imgI18.HeightRequest = 50; + this.imgI18.Name = "imgI18"; + this.tbUI.Add(this.imgI18); + global::Gtk.Table.TableChild w493 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); + w493.TopAttach = ((uint)(15)); + w493.BottomAttach = ((uint)(16)); + w493.LeftAttach = ((uint)(9)); + w493.RightAttach = ((uint)(10)); + w493.XOptions = ((global::Gtk.AttachOptions)(4)); + w493.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI19 = new global::Gtk.Image(); + this.imgI19.WidthRequest = 50; + this.imgI19.HeightRequest = 50; + this.imgI19.Name = "imgI19"; + this.tbUI.Add(this.imgI19); + global::Gtk.Table.TableChild w494 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); + w494.TopAttach = ((uint)(16)); + w494.BottomAttach = ((uint)(17)); + w494.LeftAttach = ((uint)(1)); + w494.RightAttach = ((uint)(2)); + w494.XOptions = ((global::Gtk.AttachOptions)(4)); + w494.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI2 = new global::Gtk.Image(); + this.imgI2.WidthRequest = 50; + this.imgI2.HeightRequest = 50; + this.imgI2.Name = "imgI2"; + this.tbUI.Add(this.imgI2); + global::Gtk.Table.TableChild w495 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w495.TopAttach = ((uint)(14)); + w495.BottomAttach = ((uint)(15)); + w495.LeftAttach = ((uint)(2)); + w495.RightAttach = ((uint)(3)); + w495.XOptions = ((global::Gtk.AttachOptions)(4)); + w495.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI20 = new global::Gtk.Image(); + this.imgI20.WidthRequest = 50; + this.imgI20.HeightRequest = 50; + this.imgI20.Name = "imgI20"; + this.tbUI.Add(this.imgI20); + global::Gtk.Table.TableChild w496 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); + w496.TopAttach = ((uint)(16)); + w496.BottomAttach = ((uint)(17)); + w496.LeftAttach = ((uint)(2)); + w496.RightAttach = ((uint)(3)); + w496.XOptions = ((global::Gtk.AttachOptions)(4)); + w496.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI21 = new global::Gtk.Image(); + this.imgI21.WidthRequest = 50; + this.imgI21.HeightRequest = 50; + this.imgI21.Name = "imgI21"; + this.tbUI.Add(this.imgI21); + global::Gtk.Table.TableChild w497 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); + w497.TopAttach = ((uint)(16)); + w497.BottomAttach = ((uint)(17)); + w497.LeftAttach = ((uint)(3)); + w497.RightAttach = ((uint)(4)); + w497.XOptions = ((global::Gtk.AttachOptions)(4)); + w497.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI22 = new global::Gtk.Image(); + this.imgI22.WidthRequest = 50; + this.imgI22.HeightRequest = 50; + this.imgI22.Name = "imgI22"; + this.tbUI.Add(this.imgI22); + global::Gtk.Table.TableChild w498 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); + w498.TopAttach = ((uint)(16)); + w498.BottomAttach = ((uint)(17)); + w498.LeftAttach = ((uint)(4)); + w498.RightAttach = ((uint)(5)); + w498.XOptions = ((global::Gtk.AttachOptions)(4)); + w498.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI23 = new global::Gtk.Image(); + this.imgI23.WidthRequest = 50; + this.imgI23.HeightRequest = 50; + this.imgI23.Name = "imgI23"; + this.tbUI.Add(this.imgI23); + global::Gtk.Table.TableChild w499 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); + w499.TopAttach = ((uint)(16)); + w499.BottomAttach = ((uint)(17)); + w499.LeftAttach = ((uint)(5)); + w499.RightAttach = ((uint)(6)); + w499.XOptions = ((global::Gtk.AttachOptions)(4)); + w499.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI24 = new global::Gtk.Image(); + this.imgI24.WidthRequest = 50; + this.imgI24.HeightRequest = 50; + this.imgI24.Name = "imgI24"; + this.tbUI.Add(this.imgI24); + global::Gtk.Table.TableChild w500 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); + w500.TopAttach = ((uint)(16)); + w500.BottomAttach = ((uint)(17)); + w500.LeftAttach = ((uint)(6)); + w500.RightAttach = ((uint)(7)); + w500.XOptions = ((global::Gtk.AttachOptions)(4)); + w500.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI25 = new global::Gtk.Image(); + this.imgI25.WidthRequest = 50; + this.imgI25.HeightRequest = 50; + this.imgI25.Name = "imgI25"; + this.tbUI.Add(this.imgI25); + global::Gtk.Table.TableChild w501 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); + w501.TopAttach = ((uint)(16)); + w501.BottomAttach = ((uint)(17)); + w501.LeftAttach = ((uint)(7)); + w501.RightAttach = ((uint)(8)); + w501.XOptions = ((global::Gtk.AttachOptions)(4)); + w501.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI26 = new global::Gtk.Image(); + this.imgI26.WidthRequest = 50; + this.imgI26.HeightRequest = 50; + this.imgI26.Name = "imgI26"; + this.tbUI.Add(this.imgI26); + global::Gtk.Table.TableChild w502 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI26])); + w502.TopAttach = ((uint)(16)); + w502.BottomAttach = ((uint)(17)); + w502.LeftAttach = ((uint)(8)); + w502.RightAttach = ((uint)(9)); + w502.XOptions = ((global::Gtk.AttachOptions)(4)); + w502.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI27 = new global::Gtk.Image(); + this.imgI27.WidthRequest = 50; + this.imgI27.HeightRequest = 50; + this.imgI27.Name = "imgI27"; + this.tbUI.Add(this.imgI27); + global::Gtk.Table.TableChild w503 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI27])); + w503.TopAttach = ((uint)(16)); + w503.BottomAttach = ((uint)(17)); + w503.LeftAttach = ((uint)(9)); + w503.RightAttach = ((uint)(10)); + w503.XOptions = ((global::Gtk.AttachOptions)(4)); + w503.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI28 = new global::Gtk.Image(); + this.imgI28.WidthRequest = 50; + this.imgI28.HeightRequest = 50; + this.imgI28.Name = "imgI28"; + this.tbUI.Add(this.imgI28); + global::Gtk.Table.TableChild w504 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI28])); + w504.TopAttach = ((uint)(17)); + w504.BottomAttach = ((uint)(18)); + w504.LeftAttach = ((uint)(1)); + w504.RightAttach = ((uint)(2)); + w504.XOptions = ((global::Gtk.AttachOptions)(4)); + w504.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI29 = new global::Gtk.Image(); + this.imgI29.WidthRequest = 50; + this.imgI29.HeightRequest = 50; + this.imgI29.Name = "imgI29"; + this.tbUI.Add(this.imgI29); + global::Gtk.Table.TableChild w505 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI29])); + w505.TopAttach = ((uint)(17)); + w505.BottomAttach = ((uint)(18)); + w505.LeftAttach = ((uint)(2)); + w505.RightAttach = ((uint)(3)); + w505.XOptions = ((global::Gtk.AttachOptions)(4)); + w505.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI3 = new global::Gtk.Image(); + this.imgI3.WidthRequest = 50; + this.imgI3.HeightRequest = 50; + this.imgI3.Name = "imgI3"; + this.tbUI.Add(this.imgI3); + global::Gtk.Table.TableChild w506 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w506.TopAttach = ((uint)(14)); + w506.BottomAttach = ((uint)(15)); + w506.LeftAttach = ((uint)(3)); + w506.RightAttach = ((uint)(4)); + w506.XOptions = ((global::Gtk.AttachOptions)(4)); + w506.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI30 = new global::Gtk.Image(); + this.imgI30.WidthRequest = 50; + this.imgI30.HeightRequest = 50; + this.imgI30.Name = "imgI30"; + this.tbUI.Add(this.imgI30); + global::Gtk.Table.TableChild w507 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI30])); + w507.TopAttach = ((uint)(17)); + w507.BottomAttach = ((uint)(18)); + w507.LeftAttach = ((uint)(3)); + w507.RightAttach = ((uint)(4)); + w507.XOptions = ((global::Gtk.AttachOptions)(4)); + w507.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI31 = new global::Gtk.Image(); + this.imgI31.WidthRequest = 50; + this.imgI31.HeightRequest = 50; + this.imgI31.Name = "imgI31"; + this.tbUI.Add(this.imgI31); + global::Gtk.Table.TableChild w508 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI31])); + w508.TopAttach = ((uint)(17)); + w508.BottomAttach = ((uint)(18)); + w508.LeftAttach = ((uint)(4)); + w508.RightAttach = ((uint)(5)); + w508.XOptions = ((global::Gtk.AttachOptions)(4)); + w508.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI32 = new global::Gtk.Image(); + this.imgI32.WidthRequest = 50; + this.imgI32.HeightRequest = 50; + this.imgI32.Name = "imgI32"; + this.tbUI.Add(this.imgI32); + global::Gtk.Table.TableChild w509 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI32])); + w509.TopAttach = ((uint)(17)); + w509.BottomAttach = ((uint)(18)); + w509.LeftAttach = ((uint)(5)); + w509.RightAttach = ((uint)(6)); + w509.XOptions = ((global::Gtk.AttachOptions)(4)); + w509.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI33 = new global::Gtk.Image(); + this.imgI33.WidthRequest = 50; + this.imgI33.HeightRequest = 50; + this.imgI33.Name = "imgI33"; + this.tbUI.Add(this.imgI33); + global::Gtk.Table.TableChild w510 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI33])); + w510.TopAttach = ((uint)(17)); + w510.BottomAttach = ((uint)(18)); + w510.LeftAttach = ((uint)(6)); + w510.RightAttach = ((uint)(7)); + w510.XOptions = ((global::Gtk.AttachOptions)(4)); + w510.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI34 = new global::Gtk.Image(); + this.imgI34.WidthRequest = 50; + this.imgI34.HeightRequest = 50; + this.imgI34.Name = "imgI34"; + this.tbUI.Add(this.imgI34); + global::Gtk.Table.TableChild w511 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI34])); + w511.TopAttach = ((uint)(17)); + w511.BottomAttach = ((uint)(18)); + w511.LeftAttach = ((uint)(7)); + w511.RightAttach = ((uint)(8)); + w511.XOptions = ((global::Gtk.AttachOptions)(4)); + w511.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI35 = new global::Gtk.Image(); + this.imgI35.WidthRequest = 50; + this.imgI35.HeightRequest = 50; + this.imgI35.Name = "imgI35"; + this.tbUI.Add(this.imgI35); + global::Gtk.Table.TableChild w512 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI35])); + w512.TopAttach = ((uint)(17)); + w512.BottomAttach = ((uint)(18)); + w512.LeftAttach = ((uint)(8)); + w512.RightAttach = ((uint)(9)); + w512.XOptions = ((global::Gtk.AttachOptions)(4)); + w512.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI36 = new global::Gtk.Image(); + this.imgI36.WidthRequest = 50; + this.imgI36.HeightRequest = 50; + this.imgI36.Name = "imgI36"; + this.tbUI.Add(this.imgI36); + global::Gtk.Table.TableChild w513 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI36])); + w513.TopAttach = ((uint)(17)); + w513.BottomAttach = ((uint)(18)); + w513.LeftAttach = ((uint)(9)); + w513.RightAttach = ((uint)(10)); + w513.XOptions = ((global::Gtk.AttachOptions)(4)); + w513.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI37 = new global::Gtk.Image(); + this.imgI37.WidthRequest = 50; + this.imgI37.HeightRequest = 50; + this.imgI37.Name = "imgI37"; + this.tbUI.Add(this.imgI37); + global::Gtk.Table.TableChild w514 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI37])); + w514.TopAttach = ((uint)(18)); + w514.BottomAttach = ((uint)(19)); + w514.LeftAttach = ((uint)(1)); + w514.RightAttach = ((uint)(2)); + w514.XOptions = ((global::Gtk.AttachOptions)(4)); + w514.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI38 = new global::Gtk.Image(); + this.imgI38.WidthRequest = 50; + this.imgI38.HeightRequest = 50; + this.imgI38.Name = "imgI38"; + this.tbUI.Add(this.imgI38); + global::Gtk.Table.TableChild w515 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI38])); + w515.TopAttach = ((uint)(18)); + w515.BottomAttach = ((uint)(19)); + w515.LeftAttach = ((uint)(2)); + w515.RightAttach = ((uint)(3)); + w515.XOptions = ((global::Gtk.AttachOptions)(4)); + w515.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI39 = new global::Gtk.Image(); + this.imgI39.WidthRequest = 50; + this.imgI39.HeightRequest = 50; + this.imgI39.Name = "imgI39"; + this.tbUI.Add(this.imgI39); + global::Gtk.Table.TableChild w516 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI39])); + w516.TopAttach = ((uint)(18)); + w516.BottomAttach = ((uint)(19)); + w516.LeftAttach = ((uint)(3)); + w516.RightAttach = ((uint)(4)); + w516.XOptions = ((global::Gtk.AttachOptions)(4)); + w516.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI4 = new global::Gtk.Image(); + this.imgI4.WidthRequest = 50; + this.imgI4.HeightRequest = 50; + this.imgI4.Name = "imgI4"; + this.tbUI.Add(this.imgI4); + global::Gtk.Table.TableChild w517 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w517.TopAttach = ((uint)(14)); + w517.BottomAttach = ((uint)(15)); + w517.LeftAttach = ((uint)(4)); + w517.RightAttach = ((uint)(5)); + w517.XOptions = ((global::Gtk.AttachOptions)(4)); + w517.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI40 = new global::Gtk.Image(); + this.imgI40.WidthRequest = 50; + this.imgI40.HeightRequest = 50; + this.imgI40.Name = "imgI40"; + this.tbUI.Add(this.imgI40); + global::Gtk.Table.TableChild w518 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI40])); + w518.TopAttach = ((uint)(18)); + w518.BottomAttach = ((uint)(19)); + w518.LeftAttach = ((uint)(4)); + w518.RightAttach = ((uint)(5)); + w518.XOptions = ((global::Gtk.AttachOptions)(4)); + w518.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI41 = new global::Gtk.Image(); + this.imgI41.WidthRequest = 50; + this.imgI41.HeightRequest = 50; + this.imgI41.Name = "imgI41"; + this.tbUI.Add(this.imgI41); + global::Gtk.Table.TableChild w519 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI41])); + w519.TopAttach = ((uint)(18)); + w519.BottomAttach = ((uint)(19)); + w519.LeftAttach = ((uint)(5)); + w519.RightAttach = ((uint)(6)); + w519.XOptions = ((global::Gtk.AttachOptions)(4)); + w519.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI42 = new global::Gtk.Image(); + this.imgI42.WidthRequest = 50; + this.imgI42.HeightRequest = 50; + this.imgI42.Name = "imgI42"; + this.tbUI.Add(this.imgI42); + global::Gtk.Table.TableChild w520 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI42])); + w520.TopAttach = ((uint)(18)); + w520.BottomAttach = ((uint)(19)); + w520.LeftAttach = ((uint)(6)); + w520.RightAttach = ((uint)(7)); + w520.XOptions = ((global::Gtk.AttachOptions)(4)); + w520.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI43 = new global::Gtk.Image(); + this.imgI43.WidthRequest = 50; + this.imgI43.HeightRequest = 50; + this.imgI43.Name = "imgI43"; + this.tbUI.Add(this.imgI43); + global::Gtk.Table.TableChild w521 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI43])); + w521.TopAttach = ((uint)(18)); + w521.BottomAttach = ((uint)(19)); + w521.LeftAttach = ((uint)(7)); + w521.RightAttach = ((uint)(8)); + w521.XOptions = ((global::Gtk.AttachOptions)(4)); + w521.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI44 = new global::Gtk.Image(); + this.imgI44.WidthRequest = 50; + this.imgI44.HeightRequest = 50; + this.imgI44.Name = "imgI44"; + this.tbUI.Add(this.imgI44); + global::Gtk.Table.TableChild w522 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI44])); + w522.TopAttach = ((uint)(18)); + w522.BottomAttach = ((uint)(19)); + w522.LeftAttach = ((uint)(8)); + w522.RightAttach = ((uint)(9)); + w522.XOptions = ((global::Gtk.AttachOptions)(4)); + w522.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI45 = new global::Gtk.Image(); + this.imgI45.WidthRequest = 50; + this.imgI45.HeightRequest = 50; + this.imgI45.Name = "imgI45"; + this.tbUI.Add(this.imgI45); + global::Gtk.Table.TableChild w523 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI45])); + w523.TopAttach = ((uint)(18)); + w523.BottomAttach = ((uint)(19)); + w523.LeftAttach = ((uint)(9)); + w523.RightAttach = ((uint)(10)); + w523.XOptions = ((global::Gtk.AttachOptions)(4)); + w523.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI46 = new global::Gtk.Image(); + this.imgI46.WidthRequest = 50; + this.imgI46.HeightRequest = 50; + this.imgI46.Name = "imgI46"; + this.tbUI.Add(this.imgI46); + global::Gtk.Table.TableChild w524 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI46])); + w524.TopAttach = ((uint)(19)); + w524.BottomAttach = ((uint)(20)); + w524.LeftAttach = ((uint)(1)); + w524.RightAttach = ((uint)(2)); + w524.XOptions = ((global::Gtk.AttachOptions)(4)); + w524.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI47 = new global::Gtk.Image(); + this.imgI47.WidthRequest = 50; + this.imgI47.HeightRequest = 50; + this.imgI47.Name = "imgI47"; + this.tbUI.Add(this.imgI47); + global::Gtk.Table.TableChild w525 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI47])); + w525.TopAttach = ((uint)(19)); + w525.BottomAttach = ((uint)(20)); + w525.LeftAttach = ((uint)(2)); + w525.RightAttach = ((uint)(3)); + w525.XOptions = ((global::Gtk.AttachOptions)(4)); + w525.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI48 = new global::Gtk.Image(); + this.imgI48.WidthRequest = 50; + this.imgI48.HeightRequest = 50; + this.imgI48.Name = "imgI48"; + this.tbUI.Add(this.imgI48); + global::Gtk.Table.TableChild w526 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI48])); + w526.TopAttach = ((uint)(19)); + w526.BottomAttach = ((uint)(20)); + w526.LeftAttach = ((uint)(3)); + w526.RightAttach = ((uint)(4)); + w526.XOptions = ((global::Gtk.AttachOptions)(4)); + w526.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI49 = new global::Gtk.Image(); + this.imgI49.WidthRequest = 50; + this.imgI49.HeightRequest = 50; + this.imgI49.Name = "imgI49"; + this.tbUI.Add(this.imgI49); + global::Gtk.Table.TableChild w527 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI49])); + w527.TopAttach = ((uint)(19)); + w527.BottomAttach = ((uint)(20)); + w527.LeftAttach = ((uint)(4)); + w527.RightAttach = ((uint)(5)); + w527.XOptions = ((global::Gtk.AttachOptions)(4)); + w527.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI5 = new global::Gtk.Image(); + this.imgI5.WidthRequest = 50; + this.imgI5.HeightRequest = 50; + this.imgI5.Name = "imgI5"; + this.tbUI.Add(this.imgI5); + global::Gtk.Table.TableChild w528 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w528.TopAttach = ((uint)(14)); + w528.BottomAttach = ((uint)(15)); + w528.LeftAttach = ((uint)(5)); + w528.RightAttach = ((uint)(6)); + w528.XOptions = ((global::Gtk.AttachOptions)(4)); + w528.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI50 = new global::Gtk.Image(); + this.imgI50.WidthRequest = 50; + this.imgI50.HeightRequest = 50; + this.imgI50.Name = "imgI50"; + this.tbUI.Add(this.imgI50); + global::Gtk.Table.TableChild w529 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI50])); + w529.TopAttach = ((uint)(19)); + w529.BottomAttach = ((uint)(20)); + w529.LeftAttach = ((uint)(5)); + w529.RightAttach = ((uint)(6)); + w529.XOptions = ((global::Gtk.AttachOptions)(4)); + w529.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI51 = new global::Gtk.Image(); + this.imgI51.WidthRequest = 50; + this.imgI51.HeightRequest = 50; + this.imgI51.Name = "imgI51"; + this.tbUI.Add(this.imgI51); + global::Gtk.Table.TableChild w530 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI51])); + w530.TopAttach = ((uint)(19)); + w530.BottomAttach = ((uint)(20)); + w530.LeftAttach = ((uint)(6)); + w530.RightAttach = ((uint)(7)); + w530.XOptions = ((global::Gtk.AttachOptions)(4)); + w530.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI52 = new global::Gtk.Image(); + this.imgI52.WidthRequest = 50; + this.imgI52.HeightRequest = 50; + this.imgI52.Name = "imgI52"; + this.tbUI.Add(this.imgI52); + global::Gtk.Table.TableChild w531 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI52])); + w531.TopAttach = ((uint)(19)); + w531.BottomAttach = ((uint)(20)); + w531.LeftAttach = ((uint)(7)); + w531.RightAttach = ((uint)(8)); + w531.XOptions = ((global::Gtk.AttachOptions)(4)); + w531.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI53 = new global::Gtk.Image(); + this.imgI53.WidthRequest = 50; + this.imgI53.HeightRequest = 50; + this.imgI53.Name = "imgI53"; + this.tbUI.Add(this.imgI53); + global::Gtk.Table.TableChild w532 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI53])); + w532.TopAttach = ((uint)(19)); + w532.BottomAttach = ((uint)(20)); + w532.LeftAttach = ((uint)(8)); + w532.RightAttach = ((uint)(9)); + w532.XOptions = ((global::Gtk.AttachOptions)(4)); + w532.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI54 = new global::Gtk.Image(); + this.imgI54.WidthRequest = 50; + this.imgI54.HeightRequest = 50; + this.imgI54.Name = "imgI54"; + this.tbUI.Add(this.imgI54); + global::Gtk.Table.TableChild w533 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI54])); + w533.TopAttach = ((uint)(19)); + w533.BottomAttach = ((uint)(20)); + w533.LeftAttach = ((uint)(9)); + w533.RightAttach = ((uint)(10)); + w533.XOptions = ((global::Gtk.AttachOptions)(4)); + w533.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI55 = new global::Gtk.Image(); + this.imgI55.WidthRequest = 50; + this.imgI55.HeightRequest = 50; + this.imgI55.Name = "imgI55"; + this.tbUI.Add(this.imgI55); + global::Gtk.Table.TableChild w534 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI55])); + w534.TopAttach = ((uint)(20)); + w534.BottomAttach = ((uint)(21)); + w534.LeftAttach = ((uint)(1)); + w534.RightAttach = ((uint)(2)); + w534.XOptions = ((global::Gtk.AttachOptions)(4)); + w534.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI56 = new global::Gtk.Image(); + this.imgI56.WidthRequest = 50; + this.imgI56.HeightRequest = 50; + this.imgI56.Name = "imgI56"; + this.tbUI.Add(this.imgI56); + global::Gtk.Table.TableChild w535 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI56])); + w535.TopAttach = ((uint)(20)); + w535.BottomAttach = ((uint)(21)); + w535.LeftAttach = ((uint)(2)); + w535.RightAttach = ((uint)(3)); + w535.XOptions = ((global::Gtk.AttachOptions)(4)); + w535.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI57 = new global::Gtk.Image(); + this.imgI57.WidthRequest = 50; + this.imgI57.HeightRequest = 50; + this.imgI57.Name = "imgI57"; + this.tbUI.Add(this.imgI57); + global::Gtk.Table.TableChild w536 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI57])); + w536.TopAttach = ((uint)(20)); + w536.BottomAttach = ((uint)(21)); + w536.LeftAttach = ((uint)(3)); + w536.RightAttach = ((uint)(4)); + w536.XOptions = ((global::Gtk.AttachOptions)(4)); + w536.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI58 = new global::Gtk.Image(); + this.imgI58.WidthRequest = 50; + this.imgI58.HeightRequest = 50; + this.imgI58.Name = "imgI58"; + this.tbUI.Add(this.imgI58); + global::Gtk.Table.TableChild w537 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI58])); + w537.TopAttach = ((uint)(20)); + w537.BottomAttach = ((uint)(21)); + w537.LeftAttach = ((uint)(4)); + w537.RightAttach = ((uint)(5)); + w537.XOptions = ((global::Gtk.AttachOptions)(4)); + w537.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI59 = new global::Gtk.Image(); + this.imgI59.WidthRequest = 50; + this.imgI59.HeightRequest = 50; + this.imgI59.Name = "imgI59"; + this.tbUI.Add(this.imgI59); + global::Gtk.Table.TableChild w538 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI59])); + w538.TopAttach = ((uint)(20)); + w538.BottomAttach = ((uint)(21)); + w538.LeftAttach = ((uint)(5)); + w538.RightAttach = ((uint)(6)); + w538.XOptions = ((global::Gtk.AttachOptions)(4)); + w538.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI6 = new global::Gtk.Image(); + this.imgI6.WidthRequest = 50; + this.imgI6.HeightRequest = 50; + this.imgI6.Name = "imgI6"; + this.tbUI.Add(this.imgI6); + global::Gtk.Table.TableChild w539 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); + w539.TopAttach = ((uint)(14)); + w539.BottomAttach = ((uint)(15)); + w539.LeftAttach = ((uint)(6)); + w539.RightAttach = ((uint)(7)); + w539.XOptions = ((global::Gtk.AttachOptions)(4)); + w539.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI60 = new global::Gtk.Image(); + this.imgI60.WidthRequest = 50; + this.imgI60.HeightRequest = 50; + this.imgI60.Name = "imgI60"; + this.tbUI.Add(this.imgI60); + global::Gtk.Table.TableChild w540 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI60])); + w540.TopAttach = ((uint)(20)); + w540.BottomAttach = ((uint)(21)); + w540.LeftAttach = ((uint)(6)); + w540.RightAttach = ((uint)(7)); + w540.XOptions = ((global::Gtk.AttachOptions)(4)); + w540.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI61 = new global::Gtk.Image(); + this.imgI61.WidthRequest = 50; + this.imgI61.HeightRequest = 50; + this.imgI61.Name = "imgI61"; + this.tbUI.Add(this.imgI61); + global::Gtk.Table.TableChild w541 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI61])); + w541.TopAttach = ((uint)(20)); + w541.BottomAttach = ((uint)(21)); + w541.LeftAttach = ((uint)(7)); + w541.RightAttach = ((uint)(8)); + w541.XOptions = ((global::Gtk.AttachOptions)(4)); + w541.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI62 = new global::Gtk.Image(); + this.imgI62.WidthRequest = 50; + this.imgI62.HeightRequest = 50; + this.imgI62.Name = "imgI62"; + this.tbUI.Add(this.imgI62); + global::Gtk.Table.TableChild w542 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI62])); + w542.TopAttach = ((uint)(20)); + w542.BottomAttach = ((uint)(21)); + w542.LeftAttach = ((uint)(8)); + w542.RightAttach = ((uint)(9)); + w542.XOptions = ((global::Gtk.AttachOptions)(4)); + w542.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI63 = new global::Gtk.Image(); + this.imgI63.WidthRequest = 50; + this.imgI63.HeightRequest = 50; + this.imgI63.Name = "imgI63"; + this.tbUI.Add(this.imgI63); + global::Gtk.Table.TableChild w543 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI63])); + w543.TopAttach = ((uint)(20)); + w543.BottomAttach = ((uint)(21)); + w543.LeftAttach = ((uint)(9)); + w543.RightAttach = ((uint)(10)); + w543.XOptions = ((global::Gtk.AttachOptions)(4)); + w543.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI64 = new global::Gtk.Image(); + this.imgI64.WidthRequest = 50; + this.imgI64.HeightRequest = 50; + this.imgI64.Name = "imgI64"; + this.tbUI.Add(this.imgI64); + global::Gtk.Table.TableChild w544 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI64])); + w544.TopAttach = ((uint)(21)); + w544.BottomAttach = ((uint)(22)); + w544.LeftAttach = ((uint)(1)); + w544.RightAttach = ((uint)(2)); + w544.XOptions = ((global::Gtk.AttachOptions)(4)); + w544.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI65 = new global::Gtk.Image(); + this.imgI65.WidthRequest = 50; + this.imgI65.HeightRequest = 50; + this.imgI65.Name = "imgI65"; + this.tbUI.Add(this.imgI65); + global::Gtk.Table.TableChild w545 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI65])); + w545.TopAttach = ((uint)(21)); + w545.BottomAttach = ((uint)(22)); + w545.LeftAttach = ((uint)(2)); + w545.RightAttach = ((uint)(3)); + w545.XOptions = ((global::Gtk.AttachOptions)(4)); + w545.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI66 = new global::Gtk.Image(); + this.imgI66.WidthRequest = 50; + this.imgI66.HeightRequest = 50; + this.imgI66.Name = "imgI66"; + this.tbUI.Add(this.imgI66); + global::Gtk.Table.TableChild w546 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI66])); + w546.TopAttach = ((uint)(21)); + w546.BottomAttach = ((uint)(22)); + w546.LeftAttach = ((uint)(3)); + w546.RightAttach = ((uint)(4)); + w546.XOptions = ((global::Gtk.AttachOptions)(4)); + w546.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI67 = new global::Gtk.Image(); + this.imgI67.WidthRequest = 50; + this.imgI67.HeightRequest = 50; + this.imgI67.Name = "imgI67"; + this.tbUI.Add(this.imgI67); + global::Gtk.Table.TableChild w547 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI67])); + w547.TopAttach = ((uint)(21)); + w547.BottomAttach = ((uint)(22)); + w547.LeftAttach = ((uint)(4)); + w547.RightAttach = ((uint)(5)); + w547.XOptions = ((global::Gtk.AttachOptions)(4)); + w547.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI68 = new global::Gtk.Image(); + this.imgI68.WidthRequest = 50; + this.imgI68.HeightRequest = 50; + this.imgI68.Name = "imgI68"; + this.tbUI.Add(this.imgI68); + global::Gtk.Table.TableChild w548 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI68])); + w548.TopAttach = ((uint)(21)); + w548.BottomAttach = ((uint)(22)); + w548.LeftAttach = ((uint)(5)); + w548.RightAttach = ((uint)(6)); + w548.XOptions = ((global::Gtk.AttachOptions)(4)); + w548.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI69 = new global::Gtk.Image(); + this.imgI69.WidthRequest = 50; + this.imgI69.HeightRequest = 50; + this.imgI69.Name = "imgI69"; + this.tbUI.Add(this.imgI69); + global::Gtk.Table.TableChild w549 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI69])); + w549.TopAttach = ((uint)(21)); + w549.BottomAttach = ((uint)(22)); + w549.LeftAttach = ((uint)(6)); + w549.RightAttach = ((uint)(7)); + w549.XOptions = ((global::Gtk.AttachOptions)(4)); + w549.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI7 = new global::Gtk.Image(); + this.imgI7.WidthRequest = 50; + this.imgI7.HeightRequest = 50; + this.imgI7.Name = "imgI7"; + this.tbUI.Add(this.imgI7); + global::Gtk.Table.TableChild w550 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); + w550.TopAttach = ((uint)(14)); + w550.BottomAttach = ((uint)(15)); + w550.LeftAttach = ((uint)(7)); + w550.RightAttach = ((uint)(8)); + w550.XOptions = ((global::Gtk.AttachOptions)(4)); + w550.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI70 = new global::Gtk.Image(); + this.imgI70.WidthRequest = 50; + this.imgI70.HeightRequest = 50; + this.imgI70.Name = "imgI70"; + this.tbUI.Add(this.imgI70); + global::Gtk.Table.TableChild w551 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI70])); + w551.TopAttach = ((uint)(21)); + w551.BottomAttach = ((uint)(22)); + w551.LeftAttach = ((uint)(7)); + w551.RightAttach = ((uint)(8)); + w551.XOptions = ((global::Gtk.AttachOptions)(4)); + w551.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI71 = new global::Gtk.Image(); + this.imgI71.WidthRequest = 50; + this.imgI71.HeightRequest = 50; + this.imgI71.Name = "imgI71"; + this.tbUI.Add(this.imgI71); + global::Gtk.Table.TableChild w552 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI71])); + w552.TopAttach = ((uint)(21)); + w552.BottomAttach = ((uint)(22)); + w552.LeftAttach = ((uint)(8)); + w552.RightAttach = ((uint)(9)); + w552.XOptions = ((global::Gtk.AttachOptions)(4)); + w552.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI72 = new global::Gtk.Image(); + this.imgI72.WidthRequest = 50; + this.imgI72.HeightRequest = 50; + this.imgI72.Name = "imgI72"; + this.tbUI.Add(this.imgI72); + global::Gtk.Table.TableChild w553 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI72])); + w553.TopAttach = ((uint)(21)); + w553.BottomAttach = ((uint)(22)); + w553.LeftAttach = ((uint)(9)); + w553.RightAttach = ((uint)(10)); + w553.XOptions = ((global::Gtk.AttachOptions)(4)); + w553.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI73 = new global::Gtk.Image(); + this.imgI73.WidthRequest = 50; + this.imgI73.HeightRequest = 50; + this.imgI73.Name = "imgI73"; + this.tbUI.Add(this.imgI73); + global::Gtk.Table.TableChild w554 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI73])); + w554.TopAttach = ((uint)(22)); + w554.BottomAttach = ((uint)(23)); + w554.LeftAttach = ((uint)(1)); + w554.RightAttach = ((uint)(2)); + w554.XOptions = ((global::Gtk.AttachOptions)(4)); + w554.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI74 = new global::Gtk.Image(); + this.imgI74.WidthRequest = 50; + this.imgI74.HeightRequest = 50; + this.imgI74.Name = "imgI74"; + this.tbUI.Add(this.imgI74); + global::Gtk.Table.TableChild w555 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI74])); + w555.TopAttach = ((uint)(22)); + w555.BottomAttach = ((uint)(23)); + w555.LeftAttach = ((uint)(2)); + w555.RightAttach = ((uint)(3)); + w555.XOptions = ((global::Gtk.AttachOptions)(4)); + w555.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI75 = new global::Gtk.Image(); + this.imgI75.WidthRequest = 50; + this.imgI75.HeightRequest = 50; + this.imgI75.Name = "imgI75"; + this.tbUI.Add(this.imgI75); + global::Gtk.Table.TableChild w556 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI75])); + w556.TopAttach = ((uint)(22)); + w556.BottomAttach = ((uint)(23)); + w556.LeftAttach = ((uint)(3)); + w556.RightAttach = ((uint)(4)); + w556.XOptions = ((global::Gtk.AttachOptions)(4)); + w556.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI76 = new global::Gtk.Image(); + this.imgI76.WidthRequest = 50; + this.imgI76.HeightRequest = 50; + this.imgI76.Name = "imgI76"; + this.tbUI.Add(this.imgI76); + global::Gtk.Table.TableChild w557 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI76])); + w557.TopAttach = ((uint)(22)); + w557.BottomAttach = ((uint)(23)); + w557.LeftAttach = ((uint)(4)); + w557.RightAttach = ((uint)(5)); + w557.XOptions = ((global::Gtk.AttachOptions)(4)); + w557.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI77 = new global::Gtk.Image(); + this.imgI77.WidthRequest = 50; + this.imgI77.HeightRequest = 50; + this.imgI77.Name = "imgI77"; + this.tbUI.Add(this.imgI77); + global::Gtk.Table.TableChild w558 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI77])); + w558.TopAttach = ((uint)(22)); + w558.BottomAttach = ((uint)(23)); + w558.LeftAttach = ((uint)(5)); + w558.RightAttach = ((uint)(6)); + w558.XOptions = ((global::Gtk.AttachOptions)(4)); + w558.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI78 = new global::Gtk.Image(); + this.imgI78.WidthRequest = 50; + this.imgI78.HeightRequest = 50; + this.imgI78.Name = "imgI78"; + this.tbUI.Add(this.imgI78); + global::Gtk.Table.TableChild w559 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI78])); + w559.TopAttach = ((uint)(22)); + w559.BottomAttach = ((uint)(23)); + w559.LeftAttach = ((uint)(6)); + w559.RightAttach = ((uint)(7)); + w559.XOptions = ((global::Gtk.AttachOptions)(4)); + w559.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI79 = new global::Gtk.Image(); + this.imgI79.WidthRequest = 50; + this.imgI79.HeightRequest = 50; + this.imgI79.Name = "imgI79"; + this.tbUI.Add(this.imgI79); + global::Gtk.Table.TableChild w560 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI79])); + w560.TopAttach = ((uint)(22)); + w560.BottomAttach = ((uint)(23)); + w560.LeftAttach = ((uint)(7)); + w560.RightAttach = ((uint)(8)); + w560.XOptions = ((global::Gtk.AttachOptions)(4)); + w560.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI8 = new global::Gtk.Image(); + this.imgI8.WidthRequest = 50; + this.imgI8.HeightRequest = 50; + this.imgI8.Name = "imgI8"; + this.tbUI.Add(this.imgI8); + global::Gtk.Table.TableChild w561 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); + w561.TopAttach = ((uint)(14)); + w561.BottomAttach = ((uint)(15)); + w561.LeftAttach = ((uint)(8)); + w561.RightAttach = ((uint)(9)); + w561.XOptions = ((global::Gtk.AttachOptions)(4)); + w561.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI80 = new global::Gtk.Image(); + this.imgI80.WidthRequest = 50; + this.imgI80.HeightRequest = 50; + this.imgI80.Name = "imgI80"; + this.tbUI.Add(this.imgI80); + global::Gtk.Table.TableChild w562 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI80])); + w562.TopAttach = ((uint)(22)); + w562.BottomAttach = ((uint)(23)); + w562.LeftAttach = ((uint)(8)); + w562.RightAttach = ((uint)(9)); + w562.XOptions = ((global::Gtk.AttachOptions)(4)); + w562.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI81 = new global::Gtk.Image(); + this.imgI81.WidthRequest = 50; + this.imgI81.HeightRequest = 50; + this.imgI81.Name = "imgI81"; + this.tbUI.Add(this.imgI81); + global::Gtk.Table.TableChild w563 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI81])); + w563.TopAttach = ((uint)(22)); + w563.BottomAttach = ((uint)(23)); + w563.LeftAttach = ((uint)(9)); + w563.RightAttach = ((uint)(10)); + w563.XOptions = ((global::Gtk.AttachOptions)(4)); + w563.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI9 = new global::Gtk.Image(); + this.imgI9.WidthRequest = 50; + this.imgI9.HeightRequest = 50; + this.imgI9.Name = "imgI9"; + this.tbUI.Add(this.imgI9); + global::Gtk.Table.TableChild w564 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); + w564.TopAttach = ((uint)(14)); + w564.BottomAttach = ((uint)(15)); + w564.LeftAttach = ((uint)(9)); + w564.RightAttach = ((uint)(10)); + w564.XOptions = ((global::Gtk.AttachOptions)(4)); + w564.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgInfo = new global::Gtk.Image(); + this.imgInfo.WidthRequest = 50; + this.imgInfo.HeightRequest = 50; + this.imgInfo.Name = "imgInfo"; + this.tbUI.Add(this.imgInfo); + global::Gtk.Table.TableChild w565 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); + w565.TopAttach = ((uint)(22)); + w565.BottomAttach = ((uint)(23)); + w565.LeftAttach = ((uint)(27)); + w565.RightAttach = ((uint)(28)); + w565.XOptions = ((global::Gtk.AttachOptions)(4)); + w565.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS1 = new global::Gtk.Image(); + this.imgS1.WidthRequest = 50; + this.imgS1.HeightRequest = 50; + this.imgS1.Name = "imgS1"; + this.tbUI.Add(this.imgS1); + global::Gtk.Table.TableChild w566 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); + w566.TopAttach = ((uint)(11)); + w566.BottomAttach = ((uint)(12)); + w566.LeftAttach = ((uint)(12)); + w566.RightAttach = ((uint)(13)); + w566.XOptions = ((global::Gtk.AttachOptions)(4)); + w566.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS10 = new global::Gtk.Image(); + this.imgS10.WidthRequest = 50; + this.imgS10.HeightRequest = 50; + this.imgS10.Name = "imgS10"; + this.tbUI.Add(this.imgS10); + global::Gtk.Table.TableChild w567 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); + w567.TopAttach = ((uint)(12)); + w567.BottomAttach = ((uint)(13)); + w567.LeftAttach = ((uint)(12)); + w567.RightAttach = ((uint)(13)); + w567.XOptions = ((global::Gtk.AttachOptions)(4)); + w567.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS11 = new global::Gtk.Image(); + this.imgS11.WidthRequest = 50; + this.imgS11.HeightRequest = 50; + this.imgS11.Name = "imgS11"; + this.tbUI.Add(this.imgS11); + global::Gtk.Table.TableChild w568 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS11])); + w568.TopAttach = ((uint)(12)); + w568.BottomAttach = ((uint)(13)); + w568.LeftAttach = ((uint)(13)); + w568.RightAttach = ((uint)(14)); + w568.XOptions = ((global::Gtk.AttachOptions)(4)); + w568.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS12 = new global::Gtk.Image(); + this.imgS12.WidthRequest = 50; + this.imgS12.HeightRequest = 50; + this.imgS12.Name = "imgS12"; + this.tbUI.Add(this.imgS12); + global::Gtk.Table.TableChild w569 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS12])); + w569.TopAttach = ((uint)(12)); + w569.BottomAttach = ((uint)(13)); + w569.LeftAttach = ((uint)(14)); + w569.RightAttach = ((uint)(15)); + w569.XOptions = ((global::Gtk.AttachOptions)(4)); + w569.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS13 = new global::Gtk.Image(); + this.imgS13.WidthRequest = 50; + this.imgS13.HeightRequest = 50; + this.imgS13.Name = "imgS13"; + this.tbUI.Add(this.imgS13); + global::Gtk.Table.TableChild w570 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS13])); + w570.TopAttach = ((uint)(12)); + w570.BottomAttach = ((uint)(13)); + w570.LeftAttach = ((uint)(15)); + w570.RightAttach = ((uint)(16)); + w570.XOptions = ((global::Gtk.AttachOptions)(4)); + w570.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS14 = new global::Gtk.Image(); + this.imgS14.WidthRequest = 50; + this.imgS14.HeightRequest = 50; + this.imgS14.Name = "imgS14"; + this.tbUI.Add(this.imgS14); + global::Gtk.Table.TableChild w571 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS14])); + w571.TopAttach = ((uint)(12)); + w571.BottomAttach = ((uint)(13)); + w571.LeftAttach = ((uint)(16)); + w571.RightAttach = ((uint)(17)); + w571.XOptions = ((global::Gtk.AttachOptions)(4)); + w571.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS15 = new global::Gtk.Image(); + this.imgS15.WidthRequest = 50; + this.imgS15.HeightRequest = 50; + this.imgS15.Name = "imgS15"; + this.tbUI.Add(this.imgS15); + global::Gtk.Table.TableChild w572 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS15])); + w572.TopAttach = ((uint)(12)); + w572.BottomAttach = ((uint)(13)); + w572.LeftAttach = ((uint)(17)); + w572.RightAttach = ((uint)(18)); + w572.XOptions = ((global::Gtk.AttachOptions)(4)); + w572.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS16 = new global::Gtk.Image(); + this.imgS16.WidthRequest = 50; + this.imgS16.HeightRequest = 50; + this.imgS16.Name = "imgS16"; + this.tbUI.Add(this.imgS16); + global::Gtk.Table.TableChild w573 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS16])); + w573.TopAttach = ((uint)(12)); + w573.BottomAttach = ((uint)(13)); + w573.LeftAttach = ((uint)(18)); + w573.RightAttach = ((uint)(19)); + w573.XOptions = ((global::Gtk.AttachOptions)(4)); + w573.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS17 = new global::Gtk.Image(); + this.imgS17.WidthRequest = 50; + this.imgS17.HeightRequest = 50; + this.imgS17.Name = "imgS17"; + this.tbUI.Add(this.imgS17); + global::Gtk.Table.TableChild w574 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS17])); + w574.TopAttach = ((uint)(12)); + w574.BottomAttach = ((uint)(13)); + w574.LeftAttach = ((uint)(19)); + w574.RightAttach = ((uint)(20)); + w574.XOptions = ((global::Gtk.AttachOptions)(4)); + w574.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS18 = new global::Gtk.Image(); + this.imgS18.WidthRequest = 50; + this.imgS18.HeightRequest = 50; + this.imgS18.Name = "imgS18"; + this.tbUI.Add(this.imgS18); + global::Gtk.Table.TableChild w575 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS18])); + w575.TopAttach = ((uint)(12)); + w575.BottomAttach = ((uint)(13)); + w575.LeftAttach = ((uint)(20)); + w575.RightAttach = ((uint)(21)); + w575.XOptions = ((global::Gtk.AttachOptions)(4)); + w575.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS2 = new global::Gtk.Image(); + this.imgS2.WidthRequest = 50; + this.imgS2.HeightRequest = 50; + this.imgS2.Name = "imgS2"; + this.tbUI.Add(this.imgS2); + global::Gtk.Table.TableChild w576 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); + w576.TopAttach = ((uint)(11)); + w576.BottomAttach = ((uint)(12)); + w576.LeftAttach = ((uint)(13)); + w576.RightAttach = ((uint)(14)); + w576.XOptions = ((global::Gtk.AttachOptions)(4)); + w576.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS3 = new global::Gtk.Image(); + this.imgS3.WidthRequest = 50; + this.imgS3.HeightRequest = 50; + this.imgS3.Name = "imgS3"; + this.tbUI.Add(this.imgS3); + global::Gtk.Table.TableChild w577 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); + w577.TopAttach = ((uint)(11)); + w577.BottomAttach = ((uint)(12)); + w577.LeftAttach = ((uint)(14)); + w577.RightAttach = ((uint)(15)); + w577.XOptions = ((global::Gtk.AttachOptions)(4)); + w577.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS4 = new global::Gtk.Image(); + this.imgS4.WidthRequest = 50; + this.imgS4.HeightRequest = 50; + this.imgS4.Name = "imgS4"; + this.tbUI.Add(this.imgS4); + global::Gtk.Table.TableChild w578 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); + w578.TopAttach = ((uint)(11)); + w578.BottomAttach = ((uint)(12)); + w578.LeftAttach = ((uint)(15)); + w578.RightAttach = ((uint)(16)); + w578.XOptions = ((global::Gtk.AttachOptions)(4)); + w578.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS5 = new global::Gtk.Image(); + this.imgS5.WidthRequest = 50; + this.imgS5.HeightRequest = 50; + this.imgS5.Name = "imgS5"; + this.tbUI.Add(this.imgS5); + global::Gtk.Table.TableChild w579 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); + w579.TopAttach = ((uint)(11)); + w579.BottomAttach = ((uint)(12)); + w579.LeftAttach = ((uint)(16)); + w579.RightAttach = ((uint)(17)); + w579.XOptions = ((global::Gtk.AttachOptions)(4)); + w579.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS6 = new global::Gtk.Image(); + this.imgS6.WidthRequest = 50; + this.imgS6.HeightRequest = 50; + this.imgS6.Name = "imgS6"; + this.tbUI.Add(this.imgS6); + global::Gtk.Table.TableChild w580 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); + w580.TopAttach = ((uint)(11)); + w580.BottomAttach = ((uint)(12)); + w580.LeftAttach = ((uint)(17)); + w580.RightAttach = ((uint)(18)); + w580.XOptions = ((global::Gtk.AttachOptions)(4)); + w580.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS7 = new global::Gtk.Image(); + this.imgS7.WidthRequest = 50; + this.imgS7.HeightRequest = 50; + this.imgS7.Name = "imgS7"; + this.tbUI.Add(this.imgS7); + global::Gtk.Table.TableChild w581 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); + w581.TopAttach = ((uint)(11)); + w581.BottomAttach = ((uint)(12)); + w581.LeftAttach = ((uint)(18)); + w581.RightAttach = ((uint)(19)); + w581.XOptions = ((global::Gtk.AttachOptions)(4)); + w581.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS8 = new global::Gtk.Image(); + this.imgS8.WidthRequest = 50; + this.imgS8.HeightRequest = 50; + this.imgS8.Name = "imgS8"; + this.tbUI.Add(this.imgS8); + global::Gtk.Table.TableChild w582 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); + w582.TopAttach = ((uint)(11)); + w582.BottomAttach = ((uint)(12)); + w582.LeftAttach = ((uint)(19)); + w582.RightAttach = ((uint)(20)); + w582.XOptions = ((global::Gtk.AttachOptions)(4)); + w582.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS9 = new global::Gtk.Image(); + this.imgS9.WidthRequest = 50; + this.imgS9.HeightRequest = 50; + this.imgS9.Name = "imgS9"; + this.tbUI.Add(this.imgS9); + global::Gtk.Table.TableChild w583 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); + w583.TopAttach = ((uint)(11)); + w583.BottomAttach = ((uint)(12)); + w583.LeftAttach = ((uint)(20)); + w583.RightAttach = ((uint)(21)); + w583.XOptions = ((global::Gtk.AttachOptions)(4)); + w583.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblAccessories = new global::Gtk.Label(); + this.lblAccessories.HeightRequest = 50; + this.lblAccessories.Name = "lblAccessories"; + this.lblAccessories.LabelProp = "Accessories"; + this.lblAccessories.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblAccessories); + global::Gtk.Table.TableChild w584 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); + w584.TopAttach = ((uint)(12)); + w584.BottomAttach = ((uint)(13)); + w584.LeftAttach = ((uint)(23)); + w584.RightAttach = ((uint)(32)); + w584.XOptions = ((global::Gtk.AttachOptions)(4)); + w584.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank1 = new global::Gtk.Label(); + this.lblBlank1.WidthRequest = 50; + this.lblBlank1.HeightRequest = 10; + this.lblBlank1.Name = "lblBlank1"; + this.tbUI.Add(this.lblBlank1); + global::Gtk.Table.TableChild w585 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w585.LeftAttach = ((uint)(16)); + w585.RightAttach = ((uint)(17)); + w585.XOptions = ((global::Gtk.AttachOptions)(4)); + w585.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank2 = new global::Gtk.Label(); + this.lblBlank2.WidthRequest = 10; + this.lblBlank2.HeightRequest = 50; + this.lblBlank2.Name = "lblBlank2"; + this.tbUI.Add(this.lblBlank2); + global::Gtk.Table.TableChild w586 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w586.TopAttach = ((uint)(4)); + w586.BottomAttach = ((uint)(5)); + w586.XOptions = ((global::Gtk.AttachOptions)(4)); + w586.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank3 = new global::Gtk.Label(); + this.lblBlank3.WidthRequest = 50; + this.lblBlank3.HeightRequest = 50; + this.lblBlank3.Name = "lblBlank3"; + this.tbUI.Add(this.lblBlank3); + global::Gtk.Table.TableChild w587 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w587.TopAttach = ((uint)(10)); + w587.BottomAttach = ((uint)(11)); + w587.LeftAttach = ((uint)(16)); + w587.RightAttach = ((uint)(17)); + w587.XOptions = ((global::Gtk.AttachOptions)(4)); + w587.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank4 = new global::Gtk.Label(); + this.lblBlank4.WidthRequest = 10; + this.lblBlank4.HeightRequest = 50; + this.lblBlank4.Name = "lblBlank4"; + this.tbUI.Add(this.lblBlank4); + global::Gtk.Table.TableChild w588 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w588.TopAttach = ((uint)(4)); + w588.BottomAttach = ((uint)(5)); + w588.LeftAttach = ((uint)(10)); + w588.RightAttach = ((uint)(11)); + w588.XOptions = ((global::Gtk.AttachOptions)(4)); + w588.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank5 = new global::Gtk.Label(); + this.lblBlank5.WidthRequest = 10; + this.lblBlank5.HeightRequest = 50; + this.lblBlank5.Name = "lblBlank5"; + this.tbUI.Add(this.lblBlank5); + global::Gtk.Table.TableChild w589 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w589.TopAttach = ((uint)(4)); + w589.BottomAttach = ((uint)(5)); + w589.LeftAttach = ((uint)(22)); + w589.RightAttach = ((uint)(23)); + w589.XOptions = ((global::Gtk.AttachOptions)(4)); + w589.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank6 = new global::Gtk.Label(); + this.lblBlank6.WidthRequest = 10; + this.lblBlank6.HeightRequest = 50; + this.lblBlank6.Name = "lblBlank6"; + this.tbUI.Add(this.lblBlank6); + global::Gtk.Table.TableChild w590 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank6])); + w590.TopAttach = ((uint)(4)); + w590.BottomAttach = ((uint)(5)); + w590.LeftAttach = ((uint)(32)); + w590.RightAttach = ((uint)(33)); + w590.XOptions = ((global::Gtk.AttachOptions)(4)); + w590.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank8 = new global::Gtk.Label(); + this.lblBlank8.WidthRequest = 50; + this.lblBlank8.HeightRequest = 10; + this.lblBlank8.Name = "lblBlank8"; + this.tbUI.Add(this.lblBlank8); + global::Gtk.Table.TableChild w591 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); + w591.TopAttach = ((uint)(24)); + w591.BottomAttach = ((uint)(25)); + w591.LeftAttach = ((uint)(16)); + w591.RightAttach = ((uint)(17)); + w591.XOptions = ((global::Gtk.AttachOptions)(4)); + w591.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblCoord1 = new global::Gtk.Label(); + this.lblCoord1.WidthRequest = 50; + this.lblCoord1.HeightRequest = 50; + this.lblCoord1.Name = "lblCoord1"; + this.lblCoord1.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblCoord1); + global::Gtk.Table.TableChild w592 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); + w592.TopAttach = ((uint)(11)); + w592.BottomAttach = ((uint)(12)); + w592.LeftAttach = ((uint)(8)); + w592.RightAttach = ((uint)(9)); + w592.XOptions = ((global::Gtk.AttachOptions)(4)); + w592.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblCoord2 = new global::Gtk.Label(); + this.lblCoord2.WidthRequest = 50; + this.lblCoord2.HeightRequest = 50; + this.lblCoord2.Name = "lblCoord2"; + this.lblCoord2.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblCoord2); + global::Gtk.Table.TableChild w593 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); + w593.TopAttach = ((uint)(11)); + w593.BottomAttach = ((uint)(12)); + w593.LeftAttach = ((uint)(9)); + w593.RightAttach = ((uint)(10)); + w593.XOptions = ((global::Gtk.AttachOptions)(4)); + w593.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblGear = new global::Gtk.Label(); + this.lblGear.HeightRequest = 50; + this.lblGear.Name = "lblGear"; + this.lblGear.LabelProp = "Gear"; + this.lblGear.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblGear); + global::Gtk.Table.TableChild w594 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); + w594.TopAttach = ((uint)(15)); + w594.BottomAttach = ((uint)(16)); + w594.LeftAttach = ((uint)(23)); + w594.RightAttach = ((uint)(32)); + w594.XOptions = ((global::Gtk.AttachOptions)(4)); + w594.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblGroundLayer = new global::Gtk.Label(); + this.lblGroundLayer.WidthRequest = 450; + this.lblGroundLayer.HeightRequest = 50; + this.lblGroundLayer.Name = "lblGroundLayer"; + this.lblGroundLayer.LabelProp = "Ground Layer"; + this.tbUI.Add(this.lblGroundLayer); + global::Gtk.Table.TableChild w595 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); + w595.TopAttach = ((uint)(1)); + w595.BottomAttach = ((uint)(2)); + w595.LeftAttach = ((uint)(1)); + w595.RightAttach = ((uint)(10)); + w595.XOptions = ((global::Gtk.AttachOptions)(4)); + w595.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblHoleMsg = new global::Gtk.Label(); + this.lblHoleMsg.WidthRequest = 400; + this.lblHoleMsg.HeightRequest = 50; + this.lblHoleMsg.Name = "lblHoleMsg"; + this.lblHoleMsg.LabelProp = "There is a hole above player:"; + this.lblHoleMsg.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblHoleMsg); + global::Gtk.Table.TableChild w596 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleMsg])); + w596.TopAttach = ((uint)(23)); + w596.BottomAttach = ((uint)(24)); + w596.LeftAttach = ((uint)(1)); + w596.RightAttach = ((uint)(9)); + w596.XOptions = ((global::Gtk.AttachOptions)(4)); + w596.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblHoleOnTop = new global::Gtk.Label(); + this.lblHoleOnTop.WidthRequest = 50; + this.lblHoleOnTop.HeightRequest = 50; + this.lblHoleOnTop.Name = "lblHoleOnTop"; + this.lblHoleOnTop.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblHoleOnTop); + global::Gtk.Table.TableChild w597 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleOnTop])); + w597.TopAttach = ((uint)(23)); + w597.BottomAttach = ((uint)(24)); + w597.LeftAttach = ((uint)(9)); + w597.RightAttach = ((uint)(10)); + w597.XOptions = ((global::Gtk.AttachOptions)(4)); + w597.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblHotbar = new global::Gtk.Label(); + this.lblHotbar.WidthRequest = 50; + this.lblHotbar.HeightRequest = 25; + this.lblHotbar.Name = "lblHotbar"; + this.lblHotbar.LabelProp = "Hotbar"; + this.tbUI.Add(this.lblHotbar); + global::Gtk.Table.TableChild w598 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); + w598.TopAttach = ((uint)(13)); + w598.BottomAttach = ((uint)(14)); + w598.LeftAttach = ((uint)(12)); + w598.RightAttach = ((uint)(21)); + w598.XOptions = ((global::Gtk.AttachOptions)(4)); + w598.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblInfo = new global::Gtk.Label(); + this.lblInfo.WidthRequest = 250; + this.lblInfo.HeightRequest = 50; + this.lblInfo.Name = "lblInfo"; + this.lblInfo.Wrap = true; + this.lblInfo.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblInfo); + global::Gtk.Table.TableChild w599 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); + w599.TopAttach = ((uint)(23)); + w599.BottomAttach = ((uint)(24)); + w599.LeftAttach = ((uint)(23)); + w599.RightAttach = ((uint)(32)); + w599.XOptions = ((global::Gtk.AttachOptions)(4)); + w599.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblItemLayer = new global::Gtk.Label(); + this.lblItemLayer.HeightRequest = 50; + this.lblItemLayer.Name = "lblItemLayer"; + this.lblItemLayer.LabelProp = "Structure Layer"; + this.tbUI.Add(this.lblItemLayer); + global::Gtk.Table.TableChild w600 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); + w600.TopAttach = ((uint)(13)); + w600.BottomAttach = ((uint)(14)); + w600.LeftAttach = ((uint)(1)); + w600.RightAttach = ((uint)(10)); + w600.XOptions = ((global::Gtk.AttachOptions)(4)); + w600.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog1 = new global::Gtk.Label(); + this.lblLog1.WidthRequest = 450; + this.lblLog1.HeightRequest = 50; + this.lblLog1.Name = "lblLog1"; + this.tbUI.Add(this.lblLog1); + global::Gtk.Table.TableChild w601 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); + w601.TopAttach = ((uint)(16)); + w601.BottomAttach = ((uint)(17)); + w601.LeftAttach = ((uint)(12)); + w601.RightAttach = ((uint)(21)); + w601.XOptions = ((global::Gtk.AttachOptions)(4)); + w601.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog2 = new global::Gtk.Label(); + this.lblLog2.WidthRequest = 450; + this.lblLog2.HeightRequest = 50; + this.lblLog2.Name = "lblLog2"; + this.tbUI.Add(this.lblLog2); + global::Gtk.Table.TableChild w602 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); + w602.TopAttach = ((uint)(17)); + w602.BottomAttach = ((uint)(18)); + w602.LeftAttach = ((uint)(12)); + w602.RightAttach = ((uint)(21)); + w602.XOptions = ((global::Gtk.AttachOptions)(4)); + w602.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog3 = new global::Gtk.Label(); + this.lblLog3.WidthRequest = 450; + this.lblLog3.HeightRequest = 50; + this.lblLog3.Name = "lblLog3"; + this.tbUI.Add(this.lblLog3); + global::Gtk.Table.TableChild w603 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); + w603.TopAttach = ((uint)(18)); + w603.BottomAttach = ((uint)(19)); + w603.LeftAttach = ((uint)(12)); + w603.RightAttach = ((uint)(21)); + w603.XOptions = ((global::Gtk.AttachOptions)(4)); + w603.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog4 = new global::Gtk.Label(); + this.lblLog4.WidthRequest = 450; + this.lblLog4.HeightRequest = 50; + this.lblLog4.Name = "lblLog4"; + this.tbUI.Add(this.lblLog4); + global::Gtk.Table.TableChild w604 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); + w604.TopAttach = ((uint)(19)); + w604.BottomAttach = ((uint)(20)); + w604.LeftAttach = ((uint)(12)); + w604.RightAttach = ((uint)(21)); + w604.XOptions = ((global::Gtk.AttachOptions)(4)); + w604.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog5 = new global::Gtk.Label(); + this.lblLog5.WidthRequest = 450; + this.lblLog5.HeightRequest = 50; + this.lblLog5.Name = "lblLog5"; + this.tbUI.Add(this.lblLog5); + global::Gtk.Table.TableChild w605 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog5])); + w605.TopAttach = ((uint)(20)); + w605.BottomAttach = ((uint)(21)); + w605.LeftAttach = ((uint)(12)); + w605.RightAttach = ((uint)(21)); + w605.XOptions = ((global::Gtk.AttachOptions)(4)); + w605.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog6 = new global::Gtk.Label(); + this.lblLog6.WidthRequest = 450; + this.lblLog6.HeightRequest = 50; + this.lblLog6.Name = "lblLog6"; + this.tbUI.Add(this.lblLog6); + global::Gtk.Table.TableChild w606 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog6])); + w606.TopAttach = ((uint)(21)); + w606.BottomAttach = ((uint)(22)); + w606.LeftAttach = ((uint)(12)); + w606.RightAttach = ((uint)(21)); + w606.XOptions = ((global::Gtk.AttachOptions)(4)); + w606.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog7 = new global::Gtk.Label(); + this.lblLog7.WidthRequest = 450; + this.lblLog7.HeightRequest = 50; + this.lblLog7.Name = "lblLog7"; + this.tbUI.Add(this.lblLog7); + global::Gtk.Table.TableChild w607 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog7])); + w607.TopAttach = ((uint)(22)); + w607.BottomAttach = ((uint)(23)); + w607.LeftAttach = ((uint)(12)); + w607.RightAttach = ((uint)(21)); + w607.XOptions = ((global::Gtk.AttachOptions)(4)); + w607.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog8 = new global::Gtk.Label(); + this.lblLog8.WidthRequest = 450; + this.lblLog8.HeightRequest = 50; + this.lblLog8.Name = "lblLog8"; + this.tbUI.Add(this.lblLog8); + global::Gtk.Table.TableChild w608 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog8])); + w608.TopAttach = ((uint)(23)); + w608.BottomAttach = ((uint)(24)); + w608.LeftAttach = ((uint)(12)); + w608.RightAttach = ((uint)(21)); + w608.XOptions = ((global::Gtk.AttachOptions)(4)); + w608.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblSuperLayer = new global::Gtk.Label(); + this.lblSuperLayer.WidthRequest = 100; + this.lblSuperLayer.HeightRequest = 50; + this.lblSuperLayer.Name = "lblSuperLayer"; + this.lblSuperLayer.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblSuperLayer); + global::Gtk.Table.TableChild w609 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblSuperLayer])); + w609.TopAttach = ((uint)(11)); + w609.BottomAttach = ((uint)(12)); + w609.LeftAttach = ((uint)(1)); + w609.RightAttach = ((uint)(5)); + w609.XOptions = ((global::Gtk.AttachOptions)(4)); + w609.YOptions = ((global::Gtk.AttachOptions)(4)); + this.Add(this.tbUI); + if ((this.Child != null)) + { + this.Child.ShowAll(); + } + this.DefaultWidth = 1690; + this.DefaultHeight = 1170; + this.Show(); + this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent); + this.btnPause.Clicked += new global::System.EventHandler(this.OnBtnPauseClicked); + this.btnP9.Clicked += new global::System.EventHandler(this.OnBtnP9Clicked); + this.btnP81.Clicked += new global::System.EventHandler(this.OnBtnP81Clicked); + this.btnP80.Clicked += new global::System.EventHandler(this.OnBtnP80Clicked); + this.btnP8.Clicked += new global::System.EventHandler(this.OnBtnP8Clicked); + this.btnP79.Clicked += new global::System.EventHandler(this.OnBtnP79Clicked); + this.btnP78.Clicked += new global::System.EventHandler(this.OnBtnP78Clicked); + this.btnP77.Clicked += new global::System.EventHandler(this.OnBtnP77Clicked); + this.btnP76.Clicked += new global::System.EventHandler(this.OnBtnP76Clicked); + this.btnP75.Clicked += new global::System.EventHandler(this.OnBtnP75Clicked); + this.btnP74.Clicked += new global::System.EventHandler(this.OnBtnP74Clicked); + this.btnP73.Clicked += new global::System.EventHandler(this.OnBtnP73Clicked); + this.btnP72.Clicked += new global::System.EventHandler(this.OnBtnP72Clicked); + this.btnP71.Clicked += new global::System.EventHandler(this.OnBtnP71Clicked); + this.btnP70.Clicked += new global::System.EventHandler(this.OnBtnP70Clicked); + this.btnP7.Clicked += new global::System.EventHandler(this.OnBtnP7Clicked); + this.btnP69.Clicked += new global::System.EventHandler(this.OnBtnP69Clicked); + this.btnP68.Clicked += new global::System.EventHandler(this.OnBtnP68Clicked); + this.btnP67.Clicked += new global::System.EventHandler(this.OnBtnP67Clicked); + this.btnP66.Clicked += new global::System.EventHandler(this.OnBtnP66Clicked); + this.btnP65.Clicked += new global::System.EventHandler(this.OnBtnP65Clicked); + this.btnP64.Clicked += new global::System.EventHandler(this.OnBtnP64Clicked); + this.btnP63.Clicked += new global::System.EventHandler(this.OnBtnP63Clicked); + this.btnP62.Clicked += new global::System.EventHandler(this.OnBtnP62Clicked); + this.btnP61.Clicked += new global::System.EventHandler(this.OnBtnP61Clicked); + this.btnP60.Clicked += new global::System.EventHandler(this.OnBtnP60Clicked); + this.btnP6.Clicked += new global::System.EventHandler(this.OnBtnP6Clicked); + this.btnP59.Clicked += new global::System.EventHandler(this.OnBtnP59Clicked); + this.btnP58.Clicked += new global::System.EventHandler(this.OnBtnP58Clicked); + this.btnP57.Clicked += new global::System.EventHandler(this.OnBtnP57Clicked); + this.btnP56.Clicked += new global::System.EventHandler(this.OnBtnP56Clicked); + this.btnP55.Clicked += new global::System.EventHandler(this.OnBtnP55Clicked); + this.btnP54.Clicked += new global::System.EventHandler(this.OnBtnP54Clicked); + this.btnP53.Clicked += new global::System.EventHandler(this.OnBtnP53Clicked); + this.btnP52.Clicked += new global::System.EventHandler(this.OnBtnP52Clicked); + this.btnP51.Clicked += new global::System.EventHandler(this.OnBtnP51Clicked); + this.btnP50.Clicked += new global::System.EventHandler(this.OnBtnP50Clicked); + this.btnP5.Clicked += new global::System.EventHandler(this.OnBtnP5Clicked); + this.btnP49.Clicked += new global::System.EventHandler(this.OnBtnP49Clicked); + this.btnP48.Clicked += new global::System.EventHandler(this.OnBtnP48Clicked); + this.btnP47.Clicked += new global::System.EventHandler(this.OnBtnP47Clicked); + this.btnP46.Clicked += new global::System.EventHandler(this.OnBtnP46Clicked); + this.btnP45.Clicked += new global::System.EventHandler(this.OnBtnP45Clicked); + this.btnP44.Clicked += new global::System.EventHandler(this.OnBtnP44Clicked); + this.btnP43.Clicked += new global::System.EventHandler(this.OnBtnP43Clicked); + this.btnP42.Clicked += new global::System.EventHandler(this.OnBtnP42Clicked); + this.btnP41.Clicked += new global::System.EventHandler(this.OnBtnP41Clicked); + this.btnP40.Clicked += new global::System.EventHandler(this.OnBtnP40Clicked); + this.btnP4.Clicked += new global::System.EventHandler(this.OnBtnP4Clicked); + this.btnP39.Clicked += new global::System.EventHandler(this.OnBtnP39Clicked); + this.btnP38.Clicked += new global::System.EventHandler(this.OnBtnP38Clicked); + this.btnP37.Clicked += new global::System.EventHandler(this.OnBtnP37Clicked); + this.btnP36.Clicked += new global::System.EventHandler(this.OnBtnP36Clicked); + this.btnP35.Clicked += new global::System.EventHandler(this.OnBtnP35Clicked); + this.btnP34.Clicked += new global::System.EventHandler(this.OnBtnP34Clicked); + this.btnP33.Clicked += new global::System.EventHandler(this.OnBtnP33Clicked); + this.btnP32.Clicked += new global::System.EventHandler(this.OnBtnP32Clicked); + this.btnP31.Clicked += new global::System.EventHandler(this.OnBtnP31Clicked); + this.btnP30.Clicked += new global::System.EventHandler(this.OnBtnP30Clicked); + this.btnP3.Clicked += new global::System.EventHandler(this.OnBtnP3Clicked); + this.btnP29.Clicked += new global::System.EventHandler(this.OnBtnP29Clicked); + this.btnP28.Clicked += new global::System.EventHandler(this.OnBtnP28Clicked); + this.btnP27.Clicked += new global::System.EventHandler(this.OnBtnP27Clicked); + this.btnP26.Clicked += new global::System.EventHandler(this.OnBtnP26Clicked); + this.btnP25.Clicked += new global::System.EventHandler(this.OnBtnP25Clicked); + this.btnP24.Clicked += new global::System.EventHandler(this.OnBtnP24Clicked); + this.btnP23.Clicked += new global::System.EventHandler(this.OnBtnP23Clicked); + this.btnP22.Clicked += new global::System.EventHandler(this.OnBtnP22Clicked); + this.btnP21.Clicked += new global::System.EventHandler(this.OnBtnP21Clicked); + this.btnP20.Clicked += new global::System.EventHandler(this.OnBtnP20Clicked); + this.btnP2.Clicked += new global::System.EventHandler(this.OnBtnP2Clicked); + this.btnP19.Clicked += new global::System.EventHandler(this.OnBtnP19Clicked); + this.btnP18.Clicked += new global::System.EventHandler(this.OnBtnP18Clicked); + this.btnP17.Clicked += new global::System.EventHandler(this.OnBtnP17Clicked); + this.btnP16.Clicked += new global::System.EventHandler(this.OnBtnP16Clicked); + this.btnP15.Clicked += new global::System.EventHandler(this.OnBtnP15Clicked); + this.btnP14.Clicked += new global::System.EventHandler(this.OnBtnP14Clicked); + this.btnP13.Clicked += new global::System.EventHandler(this.OnBtnP13Clicked); + this.btnP12.Clicked += new global::System.EventHandler(this.OnBtnP12Clicked); + this.btnP11.Clicked += new global::System.EventHandler(this.OnBtnP11Clicked); + this.btnP10.Clicked += new global::System.EventHandler(this.OnBtnP10Clicked); + this.btnP1.Clicked += new global::System.EventHandler(this.OnBtnP1Clicked); + this.btnMusic.Clicked += new global::System.EventHandler(this.OnBtnMusicClicked); + this.btnMap.Clicked += new global::System.EventHandler(this.OnBtnMapClicked); + this.btnLog.Clicked += new global::System.EventHandler(this.OnBtnLogClicked); + this.btnInv.Clicked += new global::System.EventHandler(this.OnBtnInvClicked); + this.btnI9.Clicked += new global::System.EventHandler(this.OnBtnI9Clicked); + this.btnI81.Clicked += new global::System.EventHandler(this.OnBtnI81Clicked); + this.btnI80.Clicked += new global::System.EventHandler(this.OnBtnI80Clicked); + this.btnI8.Clicked += new global::System.EventHandler(this.OnBtnI8Clicked); + this.btnI79.Clicked += new global::System.EventHandler(this.OnBtnI79Clicked); + this.btnI78.Clicked += new global::System.EventHandler(this.OnBtnI78Clicked); + this.btnI77.Clicked += new global::System.EventHandler(this.OnBtnI77Clicked); + this.btnI76.Clicked += new global::System.EventHandler(this.OnBtnI76Clicked); + this.btnI75.Clicked += new global::System.EventHandler(this.OnBtnI75Clicked); + this.btnI74.Clicked += new global::System.EventHandler(this.OnBtnI74Clicked); + this.btnI73.Clicked += new global::System.EventHandler(this.OnBtnI73Clicked); + this.btnI72.Clicked += new global::System.EventHandler(this.OnBtnI72Clicked); + this.btnI71.Clicked += new global::System.EventHandler(this.OnBtnI71Clicked); + this.btnI70.Clicked += new global::System.EventHandler(this.OnBtnI70Clicked); + this.btnI7.Clicked += new global::System.EventHandler(this.OnBtnI7Clicked); + this.btnI69.Clicked += new global::System.EventHandler(this.OnBtnI69Clicked); + this.btnI68.Clicked += new global::System.EventHandler(this.OnBtnI68Clicked); + this.btnI67.Clicked += new global::System.EventHandler(this.OnBtnI67Clicked); + this.btnI66.Clicked += new global::System.EventHandler(this.OnBtnI66Clicked); + this.btnI65.Clicked += new global::System.EventHandler(this.OnBtnI65Clicked); + this.btnI64.Clicked += new global::System.EventHandler(this.OnBtnI64Clicked); + this.btnI63.Clicked += new global::System.EventHandler(this.OnBtnI63Clicked); + this.btnI62.Clicked += new global::System.EventHandler(this.OnBtnI62Clicked); + this.btnI61.Clicked += new global::System.EventHandler(this.OnBtnI61Clicked); + this.btnI60.Clicked += new global::System.EventHandler(this.OnBtnI60Clicked); + this.btnI6.Clicked += new global::System.EventHandler(this.OnBtnI6Clicked); + this.btnI59.Clicked += new global::System.EventHandler(this.OnBtnI59Clicked); + this.btnI58.Clicked += new global::System.EventHandler(this.OnBtnI58Clicked); + this.btnI57.Clicked += new global::System.EventHandler(this.OnBtnI57Clicked); + this.btnI56.Clicked += new global::System.EventHandler(this.OnBtnI56Clicked); + this.btnI55.Clicked += new global::System.EventHandler(this.OnBtnI55Clicked); + this.btnI54.Clicked += new global::System.EventHandler(this.OnBtnI54Clicked); + this.btnI53.Clicked += new global::System.EventHandler(this.OnBtnI53Clicked); + this.btnI52.Clicked += new global::System.EventHandler(this.OnBtnI52Clicked); + this.btnI51.Clicked += new global::System.EventHandler(this.OnBtnI51Clicked); + this.btnI50.Clicked += new global::System.EventHandler(this.OnBtnI50Clicked); + this.btnI5.Clicked += new global::System.EventHandler(this.OnBtnI5Clicked); + this.btnI49.Clicked += new global::System.EventHandler(this.OnBtnI49Clicked); + this.btnI48.Clicked += new global::System.EventHandler(this.OnBtnI48Clicked); + this.btnI47.Clicked += new global::System.EventHandler(this.OnBtnI47Clicked); + this.btnI46.Clicked += new global::System.EventHandler(this.OnBtnI46Clicked); + this.btnI45.Clicked += new global::System.EventHandler(this.OnBtnI45Clicked); + this.btnI44.Clicked += new global::System.EventHandler(this.OnBtnI44Clicked); + this.btnI43.Clicked += new global::System.EventHandler(this.OnBtnI43Clicked); + this.btnI42.Clicked += new global::System.EventHandler(this.OnBtnI42Clicked); + this.btnI41.Clicked += new global::System.EventHandler(this.OnBtnI41Clicked); + this.btnI40.Clicked += new global::System.EventHandler(this.OnBtnI40Clicked); + this.btnI4.Clicked += new global::System.EventHandler(this.OnBtnI4Clicked); + this.btnI39.Clicked += new global::System.EventHandler(this.OnBtnI39Clicked); + this.btnI38.Clicked += new global::System.EventHandler(this.OnBtnI38Clicked); + this.btnI37.Clicked += new global::System.EventHandler(this.OnBtnI37Clicked); + this.btnI36.Clicked += new global::System.EventHandler(this.OnBtnI36Clicked); + this.btnI35.Clicked += new global::System.EventHandler(this.OnBtnI35Clicked); + this.btnI34.Clicked += new global::System.EventHandler(this.OnBtnI34Clicked); + this.btnI33.Clicked += new global::System.EventHandler(this.OnBtnI33Clicked); + this.btnI32.Clicked += new global::System.EventHandler(this.OnBtnI32Clicked); + this.btnI31.Clicked += new global::System.EventHandler(this.OnBtnI31Clicked); + this.btnI30.Clicked += new global::System.EventHandler(this.OnBtnI30Clicked); + this.btnI3.Clicked += new global::System.EventHandler(this.OnBtnI3Clicked); + this.btnI29.Clicked += new global::System.EventHandler(this.OnBtnI29Clicked); + this.btnI28.Clicked += new global::System.EventHandler(this.OnBtnI28Clicked); + this.btnI27.Clicked += new global::System.EventHandler(this.OnBtnI27Clicked); + this.btnI26.Clicked += new global::System.EventHandler(this.OnBtnI26Clicked); + this.btnI25.Clicked += new global::System.EventHandler(this.OnBtnI25Clicked); + this.btnI24.Clicked += new global::System.EventHandler(this.OnBtnI24Clicked); + this.btnI23.Clicked += new global::System.EventHandler(this.OnBtnI23Clicked); + this.btnI22.Clicked += new global::System.EventHandler(this.OnBtnI22Clicked); + this.btnI21.Clicked += new global::System.EventHandler(this.OnBtnI21Clicked); + this.btnI20.Clicked += new global::System.EventHandler(this.OnBtnI20Clicked); + this.btnI2.Clicked += new global::System.EventHandler(this.OnBtnI2Clicked); + this.btnI19.Clicked += new global::System.EventHandler(this.OnBtnI19Clicked); + this.btnI18.Clicked += new global::System.EventHandler(this.OnBtnI18Clicked); + this.btnI17.Clicked += new global::System.EventHandler(this.OnBtnI17Clicked); + this.btnI16.Clicked += new global::System.EventHandler(this.OnBtnI16Clicked); + this.btnI15.Clicked += new global::System.EventHandler(this.OnBtnI15Clicked); + this.btnI14.Clicked += new global::System.EventHandler(this.OnBtnI14Clicked); + this.btnI13.Clicked += new global::System.EventHandler(this.OnBtnI13Clicked); + this.btnI12.Clicked += new global::System.EventHandler(this.OnBtnI12Clicked); + this.btnI11.Clicked += new global::System.EventHandler(this.OnBtnI11Clicked); + this.btnI10.Clicked += new global::System.EventHandler(this.OnBtnI10Clicked); + this.btnI1.Clicked += new global::System.EventHandler(this.OnBtnI1Clicked); + this.btnH9.Clicked += new global::System.EventHandler(this.OnBtnH9Clicked); + this.btnH8.Clicked += new global::System.EventHandler(this.OnBtnH8Clicked); + this.btnH7.Clicked += new global::System.EventHandler(this.OnBtnH7Clicked); + this.btnH6.Clicked += new global::System.EventHandler(this.OnBtnH6Clicked); + this.btnH5.Clicked += new global::System.EventHandler(this.OnBtnH5Clicked); + this.btnH4.Clicked += new global::System.EventHandler(this.OnBtnH4Clicked); + this.btnH3.Clicked += new global::System.EventHandler(this.OnBtnH3Clicked); + this.btnH2.Clicked += new global::System.EventHandler(this.OnBtnH2Clicked); + this.btnH1.Clicked += new global::System.EventHandler(this.OnBtnH1Clicked); + this.btnG9.Clicked += new global::System.EventHandler(this.OnBtnG9Clicked); + this.btnG8.Clicked += new global::System.EventHandler(this.OnBtnG8Clicked); + this.btnG7.Clicked += new global::System.EventHandler(this.OnBtnG7Clicked); + this.btnG6.Clicked += new global::System.EventHandler(this.OnBtnG6Clicked); + this.btnG5.Clicked += new global::System.EventHandler(this.OnBtnG5Clicked); + this.btnG4.Clicked += new global::System.EventHandler(this.OnBtnG4Clicked); + this.btnG3.Clicked += new global::System.EventHandler(this.OnBtnG3Clicked); + this.btnG2.Clicked += new global::System.EventHandler(this.OnBtnG2Clicked); + this.btnG1.Clicked += new global::System.EventHandler(this.OnBtnG1Clicked); + this.btnCrafting.Clicked += new global::System.EventHandler(this.OnBtnCraftingClicked); + this.btnA9.Clicked += new global::System.EventHandler(this.OnBtnA9Clicked); + this.btnA8.Clicked += new global::System.EventHandler(this.OnBtnA8Clicked); + this.btnA7.Clicked += new global::System.EventHandler(this.OnBtnA7Clicked); + this.btnA6.Clicked += new global::System.EventHandler(this.OnBtnA6Clicked); + this.btnA5.Clicked += new global::System.EventHandler(this.OnBtnA5Clicked); + this.btnA4.Clicked += new global::System.EventHandler(this.OnBtnA4Clicked); + this.btnA3.Clicked += new global::System.EventHandler(this.OnBtnA3Clicked); + this.btnA2.Clicked += new global::System.EventHandler(this.OnBtnA2Clicked); + this.btnA18.Clicked += new global::System.EventHandler(this.OnBtnA18Clicked); + this.btnA17.Clicked += new global::System.EventHandler(this.OnBtnA17Clicked); + this.btnA16.Clicked += new global::System.EventHandler(this.OnBtnA16Clicked); + this.btnA15.Clicked += new global::System.EventHandler(this.OnBtnA15Clicked); + this.btnA14.Clicked += new global::System.EventHandler(this.OnBtnA14Clicked); + this.btnA13.Clicked += new global::System.EventHandler(this.OnBtnA13Clicked); + this.btnA12.Clicked += new global::System.EventHandler(this.OnBtnA12Clicked); + this.btnA11.Clicked += new global::System.EventHandler(this.OnBtnA11Clicked); + this.btnA10.Clicked += new global::System.EventHandler(this.OnBtnA10Clicked); + this.btnA1.Clicked += new global::System.EventHandler(this.OnBtnA1Clicked); + } + } +} diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Medium.MediumGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Medium.MediumGameWindow.cs new file mode 100644 index 0000000..b0b5860 --- /dev/null +++ b/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Medium.MediumGameWindow.cs @@ -0,0 +1,4833 @@ + +// This file has been generated by the GUI designer. Do not modify. +namespace Mundus.Views.Windows.GameWindows.Medium +{ + public partial class MediumGameWindow + { + private global::Gtk.Table tbUI; + + private global::Gtk.Button btnA1; + + private global::Gtk.Button btnA10; + + private global::Gtk.Button btnA11; + + private global::Gtk.Button btnA12; + + private global::Gtk.Button btnA13; + + private global::Gtk.Button btnA14; + + private global::Gtk.Button btnA2; + + private global::Gtk.Button btnA3; + + private global::Gtk.Button btnA4; + + private global::Gtk.Button btnA5; + + private global::Gtk.Button btnA6; + + private global::Gtk.Button btnA7; + + private global::Gtk.Button btnA8; + + private global::Gtk.Button btnA9; + + private global::Gtk.Button btnCrafting; + + private global::Gtk.Button btnG1; + + private global::Gtk.Button btnG2; + + private global::Gtk.Button btnG3; + + private global::Gtk.Button btnG4; + + private global::Gtk.Button btnG5; + + private global::Gtk.Button btnG6; + + private global::Gtk.Button btnG7; + + private global::Gtk.Button btnH1; + + private global::Gtk.Button btnH2; + + private global::Gtk.Button btnH3; + + private global::Gtk.Button btnH4; + + private global::Gtk.Button btnH5; + + private global::Gtk.Button btnH6; + + private global::Gtk.Button btnH7; + + private global::Gtk.Button btnI1; + + private global::Gtk.Button btnI10; + + private global::Gtk.Button btnI11; + + private global::Gtk.Button btnI12; + + private global::Gtk.Button btnI13; + + private global::Gtk.Button btnI14; + + private global::Gtk.Button btnI15; + + private global::Gtk.Button btnI16; + + private global::Gtk.Button btnI17; + + private global::Gtk.Button btnI18; + + private global::Gtk.Button btnI19; + + private global::Gtk.Button btnI2; + + private global::Gtk.Button btnI20; + + private global::Gtk.Button btnI21; + + private global::Gtk.Button btnI22; + + private global::Gtk.Button btnI23; + + private global::Gtk.Button btnI24; + + private global::Gtk.Button btnI25; + + private global::Gtk.Button btnI26; + + private global::Gtk.Button btnI27; + + private global::Gtk.Button btnI28; + + private global::Gtk.Button btnI29; + + private global::Gtk.Button btnI3; + + private global::Gtk.Button btnI30; + + private global::Gtk.Button btnI31; + + private global::Gtk.Button btnI32; + + private global::Gtk.Button btnI33; + + private global::Gtk.Button btnI34; + + private global::Gtk.Button btnI35; + + private global::Gtk.Button btnI36; + + private global::Gtk.Button btnI37; + + private global::Gtk.Button btnI38; + + private global::Gtk.Button btnI39; + + private global::Gtk.Button btnI4; + + private global::Gtk.Button btnI40; + + private global::Gtk.Button btnI41; + + private global::Gtk.Button btnI42; + + private global::Gtk.Button btnI43; + + private global::Gtk.Button btnI44; + + private global::Gtk.Button btnI45; + + private global::Gtk.Button btnI46; + + private global::Gtk.Button btnI47; + + private global::Gtk.Button btnI48; + + private global::Gtk.Button btnI49; + + private global::Gtk.Button btnI5; + + private global::Gtk.Button btnI6; + + private global::Gtk.Button btnI7; + + private global::Gtk.Button btnI8; + + private global::Gtk.Button btnI9; + + private global::Gtk.Button btnInv; + + private global::Gtk.Button btnLog; + + private global::Gtk.Button btnMap; + + private global::Gtk.Button btnMusic; + + private global::Gtk.Button btnP1; + + private global::Gtk.Button btnP10; + + private global::Gtk.Button btnP11; + + private global::Gtk.Button btnP12; + + private global::Gtk.Button btnP13; + + private global::Gtk.Button btnP14; + + private global::Gtk.Button btnP15; + + private global::Gtk.Button btnP16; + + private global::Gtk.Button btnP17; + + private global::Gtk.Button btnP18; + + private global::Gtk.Button btnP19; + + private global::Gtk.Button btnP2; + + private global::Gtk.Button btnP20; + + private global::Gtk.Button btnP21; + + private global::Gtk.Button btnP22; + + private global::Gtk.Button btnP23; + + private global::Gtk.Button btnP24; + + private global::Gtk.Button btnP25; + + private global::Gtk.Button btnP26; + + private global::Gtk.Button btnP27; + + private global::Gtk.Button btnP28; + + private global::Gtk.Button btnP29; + + private global::Gtk.Button btnP3; + + private global::Gtk.Button btnP30; + + private global::Gtk.Button btnP31; + + private global::Gtk.Button btnP32; + + private global::Gtk.Button btnP33; + + private global::Gtk.Button btnP34; + + private global::Gtk.Button btnP35; + + private global::Gtk.Button btnP36; + + private global::Gtk.Button btnP37; + + private global::Gtk.Button btnP38; + + private global::Gtk.Button btnP39; + + private global::Gtk.Button btnP4; + + private global::Gtk.Button btnP40; + + private global::Gtk.Button btnP41; + + private global::Gtk.Button btnP42; + + private global::Gtk.Button btnP43; + + private global::Gtk.Button btnP44; + + private global::Gtk.Button btnP45; + + private global::Gtk.Button btnP46; + + private global::Gtk.Button btnP47; + + private global::Gtk.Button btnP48; + + private global::Gtk.Button btnP49; + + private global::Gtk.Button btnP5; + + private global::Gtk.Button btnP6; + + private global::Gtk.Button btnP7; + + private global::Gtk.Button btnP8; + + private global::Gtk.Button btnP9; + + private global::Gtk.Button btnPause; + + private global::Gtk.Image imgG1; + + private global::Gtk.Image imgG10; + + private global::Gtk.Image imgG11; + + private global::Gtk.Image imgG12; + + private global::Gtk.Image imgG13; + + private global::Gtk.Image imgG14; + + private global::Gtk.Image imgG15; + + private global::Gtk.Image imgG16; + + private global::Gtk.Image imgG17; + + private global::Gtk.Image imgG18; + + private global::Gtk.Image imgG19; + + private global::Gtk.Image imgG2; + + private global::Gtk.Image imgG20; + + private global::Gtk.Image imgG21; + + private global::Gtk.Image imgG22; + + private global::Gtk.Image imgG23; + + private global::Gtk.Image imgG24; + + private global::Gtk.Image imgG25; + + private global::Gtk.Image imgG26; + + private global::Gtk.Image imgG27; + + private global::Gtk.Image imgG28; + + private global::Gtk.Image imgG29; + + private global::Gtk.Image imgG3; + + private global::Gtk.Image imgG30; + + private global::Gtk.Image imgG31; + + private global::Gtk.Image imgG32; + + private global::Gtk.Image imgG33; + + private global::Gtk.Image imgG34; + + private global::Gtk.Image imgG35; + + private global::Gtk.Image imgG36; + + private global::Gtk.Image imgG37; + + private global::Gtk.Image imgG38; + + private global::Gtk.Image imgG39; + + private global::Gtk.Image imgG4; + + private global::Gtk.Image imgG40; + + private global::Gtk.Image imgG41; + + private global::Gtk.Image imgG42; + + private global::Gtk.Image imgG43; + + private global::Gtk.Image imgG44; + + private global::Gtk.Image imgG45; + + private global::Gtk.Image imgG46; + + private global::Gtk.Image imgG47; + + private global::Gtk.Image imgG48; + + private global::Gtk.Image imgG49; + + private global::Gtk.Image imgG5; + + private global::Gtk.Image imgG6; + + private global::Gtk.Image imgG7; + + private global::Gtk.Image imgG8; + + private global::Gtk.Image imgG9; + + private global::Gtk.Image imgI1; + + private global::Gtk.Image imgI10; + + private global::Gtk.Image imgI11; + + private global::Gtk.Image imgI12; + + private global::Gtk.Image imgI13; + + private global::Gtk.Image imgI14; + + private global::Gtk.Image imgI15; + + private global::Gtk.Image imgI16; + + private global::Gtk.Image imgI17; + + private global::Gtk.Image imgI18; + + private global::Gtk.Image imgI19; + + private global::Gtk.Image imgI2; + + private global::Gtk.Image imgI20; + + private global::Gtk.Image imgI21; + + private global::Gtk.Image imgI22; + + private global::Gtk.Image imgI23; + + private global::Gtk.Image imgI24; + + private global::Gtk.Image imgI25; + + private global::Gtk.Image imgI26; + + private global::Gtk.Image imgI27; + + private global::Gtk.Image imgI28; + + private global::Gtk.Image imgI29; + + private global::Gtk.Image imgI3; + + private global::Gtk.Image imgI30; + + private global::Gtk.Image imgI31; + + private global::Gtk.Image imgI32; + + private global::Gtk.Image imgI33; + + private global::Gtk.Image imgI34; + + private global::Gtk.Image imgI35; + + private global::Gtk.Image imgI36; + + private global::Gtk.Image imgI37; + + private global::Gtk.Image imgI38; + + private global::Gtk.Image imgI39; + + private global::Gtk.Image imgI4; + + private global::Gtk.Image imgI40; + + private global::Gtk.Image imgI41; + + private global::Gtk.Image imgI42; + + private global::Gtk.Image imgI43; + + private global::Gtk.Image imgI44; + + private global::Gtk.Image imgI45; + + private global::Gtk.Image imgI46; + + private global::Gtk.Image imgI47; + + private global::Gtk.Image imgI48; + + private global::Gtk.Image imgI49; + + private global::Gtk.Image imgI5; + + private global::Gtk.Image imgI6; + + private global::Gtk.Image imgI7; + + private global::Gtk.Image imgI8; + + private global::Gtk.Image imgI9; + + private global::Gtk.Image imgInfo; + + private global::Gtk.Image imgS1; + + private global::Gtk.Image imgS10; + + private global::Gtk.Image imgS11; + + private global::Gtk.Image imgS12; + + private global::Gtk.Image imgS13; + + private global::Gtk.Image imgS14; + + private global::Gtk.Image imgS2; + + private global::Gtk.Image imgS3; + + private global::Gtk.Image imgS4; + + private global::Gtk.Image imgS5; + + private global::Gtk.Image imgS6; + + private global::Gtk.Image imgS7; + + private global::Gtk.Image imgS8; + + private global::Gtk.Image imgS9; + + private global::Gtk.Label lblAccessories; + + private global::Gtk.Label lblBlank1; + + private global::Gtk.Label lblBlank2; + + private global::Gtk.Label lblBlank3; + + private global::Gtk.Label lblBlank4; + + private global::Gtk.Label lblBlank5; + + private global::Gtk.Label lblBlank6; + + private global::Gtk.Label lblBlank8; + + private global::Gtk.Label lblCoord1; + + private global::Gtk.Label lblCoord2; + + private global::Gtk.Label lblGear; + + private global::Gtk.Label lblGroundLayer; + + private global::Gtk.Label lblHoleMsg; + + private global::Gtk.Label lblHoleOnTop; + + private global::Gtk.Label lblHotbar; + + private global::Gtk.Label lblInfo; + + private global::Gtk.Label lblItemLayer; + + private global::Gtk.Label lblLog1; + + private global::Gtk.Label lblLog2; + + private global::Gtk.Label lblLog3; + + private global::Gtk.Label lblLog4; + + private global::Gtk.Label lblLog5; + + private global::Gtk.Label lblLog6; + + private global::Gtk.Label lblSuperLayer; + + protected virtual void Build() + { + global::Stetic.Gui.Initialize(this); + // Widget Mundus.Views.Windows.GameWindows.Medium.MediumGameWindow + this.Name = "Mundus.Views.Windows.GameWindows.Medium.MediumGameWindow"; + this.Title = "MediumGameWindow"; + this.WindowPosition = ((global::Gtk.WindowPosition)(2)); + this.Resizable = false; + this.AllowGrow = false; + // Container child Mundus.Views.Windows.GameWindows.Medium.MediumGameWindow.Gtk.Container+ContainerChild + this.tbUI = new global::Gtk.Table(((uint)(21)), ((uint)(27)), false); + this.tbUI.Name = "tbUI"; + // Container child tbUI.Gtk.Table+TableChild + this.btnA1 = new global::Gtk.Button(); + this.btnA1.WidthRequest = 50; + this.btnA1.HeightRequest = 50; + this.btnA1.CanFocus = true; + this.btnA1.Name = "btnA1"; + this.btnA1.UseUnderline = true; + global::Gtk.Image w1 = new global::Gtk.Image(); + this.btnA1.Image = w1; + this.tbUI.Add(this.btnA1); + global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA1])); + w2.TopAttach = ((uint)(11)); + w2.BottomAttach = ((uint)(12)); + w2.LeftAttach = ((uint)(19)); + w2.RightAttach = ((uint)(20)); + w2.XOptions = ((global::Gtk.AttachOptions)(4)); + w2.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA10 = new global::Gtk.Button(); + this.btnA10.WidthRequest = 50; + this.btnA10.HeightRequest = 50; + this.btnA10.CanFocus = true; + this.btnA10.Name = "btnA10"; + this.btnA10.UseUnderline = true; + global::Gtk.Image w3 = new global::Gtk.Image(); + this.btnA10.Image = w3; + this.tbUI.Add(this.btnA10); + global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA10])); + w4.TopAttach = ((uint)(12)); + w4.BottomAttach = ((uint)(13)); + w4.LeftAttach = ((uint)(21)); + w4.RightAttach = ((uint)(22)); + w4.XOptions = ((global::Gtk.AttachOptions)(4)); + w4.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA11 = new global::Gtk.Button(); + this.btnA11.WidthRequest = 50; + this.btnA11.HeightRequest = 50; + this.btnA11.CanFocus = true; + this.btnA11.Name = "btnA11"; + this.btnA11.UseUnderline = true; + global::Gtk.Image w5 = new global::Gtk.Image(); + this.btnA11.Image = w5; + this.tbUI.Add(this.btnA11); + global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA11])); + w6.TopAttach = ((uint)(12)); + w6.BottomAttach = ((uint)(13)); + w6.LeftAttach = ((uint)(22)); + w6.RightAttach = ((uint)(23)); + w6.XOptions = ((global::Gtk.AttachOptions)(4)); + w6.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA12 = new global::Gtk.Button(); + this.btnA12.WidthRequest = 50; + this.btnA12.HeightRequest = 50; + this.btnA12.CanFocus = true; + this.btnA12.Name = "btnA12"; + this.btnA12.UseUnderline = true; + global::Gtk.Image w7 = new global::Gtk.Image(); + this.btnA12.Image = w7; + this.tbUI.Add(this.btnA12); + global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA12])); + w8.TopAttach = ((uint)(12)); + w8.BottomAttach = ((uint)(13)); + w8.LeftAttach = ((uint)(23)); + w8.RightAttach = ((uint)(24)); + w8.XOptions = ((global::Gtk.AttachOptions)(4)); + w8.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA13 = new global::Gtk.Button(); + this.btnA13.WidthRequest = 50; + this.btnA13.HeightRequest = 50; + this.btnA13.CanFocus = true; + this.btnA13.Name = "btnA13"; + this.btnA13.UseUnderline = true; + global::Gtk.Image w9 = new global::Gtk.Image(); + this.btnA13.Image = w9; + this.tbUI.Add(this.btnA13); + global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA13])); + w10.TopAttach = ((uint)(12)); + w10.BottomAttach = ((uint)(13)); + w10.LeftAttach = ((uint)(24)); + w10.RightAttach = ((uint)(25)); + w10.XOptions = ((global::Gtk.AttachOptions)(4)); + w10.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA14 = new global::Gtk.Button(); + this.btnA14.WidthRequest = 50; + this.btnA14.HeightRequest = 50; + this.btnA14.CanFocus = true; + this.btnA14.Name = "btnA14"; + this.btnA14.UseUnderline = true; + global::Gtk.Image w11 = new global::Gtk.Image(); + this.btnA14.Image = w11; + this.tbUI.Add(this.btnA14); + global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA14])); + w12.TopAttach = ((uint)(12)); + w12.BottomAttach = ((uint)(13)); + w12.LeftAttach = ((uint)(25)); + w12.RightAttach = ((uint)(26)); + w12.XOptions = ((global::Gtk.AttachOptions)(4)); + w12.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA2 = new global::Gtk.Button(); + this.btnA2.WidthRequest = 50; + this.btnA2.HeightRequest = 50; + this.btnA2.CanFocus = true; + this.btnA2.Name = "btnA2"; + this.btnA2.UseUnderline = true; + global::Gtk.Image w13 = new global::Gtk.Image(); + this.btnA2.Image = w13; + this.tbUI.Add(this.btnA2); + global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA2])); + w14.TopAttach = ((uint)(11)); + w14.BottomAttach = ((uint)(12)); + w14.LeftAttach = ((uint)(20)); + w14.RightAttach = ((uint)(21)); + w14.XOptions = ((global::Gtk.AttachOptions)(4)); + w14.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA3 = new global::Gtk.Button(); + this.btnA3.WidthRequest = 50; + this.btnA3.HeightRequest = 50; + this.btnA3.CanFocus = true; + this.btnA3.Name = "btnA3"; + this.btnA3.UseUnderline = true; + global::Gtk.Image w15 = new global::Gtk.Image(); + this.btnA3.Image = w15; + this.tbUI.Add(this.btnA3); + global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA3])); + w16.TopAttach = ((uint)(11)); + w16.BottomAttach = ((uint)(12)); + w16.LeftAttach = ((uint)(21)); + w16.RightAttach = ((uint)(22)); + w16.XOptions = ((global::Gtk.AttachOptions)(4)); + w16.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA4 = new global::Gtk.Button(); + this.btnA4.WidthRequest = 50; + this.btnA4.HeightRequest = 50; + this.btnA4.CanFocus = true; + this.btnA4.Name = "btnA4"; + this.btnA4.UseUnderline = true; + global::Gtk.Image w17 = new global::Gtk.Image(); + this.btnA4.Image = w17; + this.tbUI.Add(this.btnA4); + global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA4])); + w18.TopAttach = ((uint)(11)); + w18.BottomAttach = ((uint)(12)); + w18.LeftAttach = ((uint)(22)); + w18.RightAttach = ((uint)(23)); + w18.XOptions = ((global::Gtk.AttachOptions)(4)); + w18.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA5 = new global::Gtk.Button(); + this.btnA5.WidthRequest = 50; + this.btnA5.HeightRequest = 50; + this.btnA5.CanFocus = true; + this.btnA5.Name = "btnA5"; + this.btnA5.UseUnderline = true; + global::Gtk.Image w19 = new global::Gtk.Image(); + this.btnA5.Image = w19; + this.tbUI.Add(this.btnA5); + global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA5])); + w20.TopAttach = ((uint)(11)); + w20.BottomAttach = ((uint)(12)); + w20.LeftAttach = ((uint)(23)); + w20.RightAttach = ((uint)(24)); + w20.XOptions = ((global::Gtk.AttachOptions)(4)); + w20.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA6 = new global::Gtk.Button(); + this.btnA6.WidthRequest = 50; + this.btnA6.HeightRequest = 50; + this.btnA6.CanFocus = true; + this.btnA6.Name = "btnA6"; + this.btnA6.UseUnderline = true; + global::Gtk.Image w21 = new global::Gtk.Image(); + this.btnA6.Image = w21; + this.tbUI.Add(this.btnA6); + global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA6])); + w22.TopAttach = ((uint)(11)); + w22.BottomAttach = ((uint)(12)); + w22.LeftAttach = ((uint)(24)); + w22.RightAttach = ((uint)(25)); + w22.XOptions = ((global::Gtk.AttachOptions)(4)); + w22.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA7 = new global::Gtk.Button(); + this.btnA7.WidthRequest = 50; + this.btnA7.HeightRequest = 50; + this.btnA7.CanFocus = true; + this.btnA7.Name = "btnA7"; + this.btnA7.UseUnderline = true; + global::Gtk.Image w23 = new global::Gtk.Image(); + this.btnA7.Image = w23; + this.tbUI.Add(this.btnA7); + global::Gtk.Table.TableChild w24 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA7])); + w24.TopAttach = ((uint)(11)); + w24.BottomAttach = ((uint)(12)); + w24.LeftAttach = ((uint)(25)); + w24.RightAttach = ((uint)(26)); + w24.XOptions = ((global::Gtk.AttachOptions)(4)); + w24.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA8 = new global::Gtk.Button(); + this.btnA8.WidthRequest = 50; + this.btnA8.HeightRequest = 50; + this.btnA8.CanFocus = true; + this.btnA8.Name = "btnA8"; + this.btnA8.UseUnderline = true; + global::Gtk.Image w25 = new global::Gtk.Image(); + this.btnA8.Image = w25; + this.tbUI.Add(this.btnA8); + global::Gtk.Table.TableChild w26 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA8])); + w26.TopAttach = ((uint)(12)); + w26.BottomAttach = ((uint)(13)); + w26.LeftAttach = ((uint)(19)); + w26.RightAttach = ((uint)(20)); + w26.XOptions = ((global::Gtk.AttachOptions)(4)); + w26.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA9 = new global::Gtk.Button(); + this.btnA9.WidthRequest = 50; + this.btnA9.HeightRequest = 50; + this.btnA9.CanFocus = true; + this.btnA9.Name = "btnA9"; + this.btnA9.UseUnderline = true; + global::Gtk.Image w27 = new global::Gtk.Image(); + this.btnA9.Image = w27; + this.tbUI.Add(this.btnA9); + global::Gtk.Table.TableChild w28 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA9])); + w28.TopAttach = ((uint)(12)); + w28.BottomAttach = ((uint)(13)); + w28.LeftAttach = ((uint)(20)); + w28.RightAttach = ((uint)(21)); + w28.XOptions = ((global::Gtk.AttachOptions)(4)); + w28.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnCrafting = new global::Gtk.Button(); + this.btnCrafting.CanFocus = true; + this.btnCrafting.Name = "btnCrafting"; + this.btnCrafting.UseUnderline = true; + this.btnCrafting.Label = "Crafting"; + this.tbUI.Add(this.btnCrafting); + global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnCrafting])); + w29.TopAttach = ((uint)(8)); + w29.BottomAttach = ((uint)(9)); + w29.LeftAttach = ((uint)(19)); + w29.RightAttach = ((uint)(26)); + w29.XOptions = ((global::Gtk.AttachOptions)(4)); + w29.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG1 = new global::Gtk.Button(); + this.btnG1.WidthRequest = 50; + this.btnG1.HeightRequest = 50; + this.btnG1.CanFocus = true; + this.btnG1.Name = "btnG1"; + this.btnG1.UseUnderline = true; + global::Gtk.Image w30 = new global::Gtk.Image(); + this.btnG1.Image = w30; + this.tbUI.Add(this.btnG1); + global::Gtk.Table.TableChild w31 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG1])); + w31.TopAttach = ((uint)(14)); + w31.BottomAttach = ((uint)(15)); + w31.LeftAttach = ((uint)(19)); + w31.RightAttach = ((uint)(20)); + w31.XOptions = ((global::Gtk.AttachOptions)(4)); + w31.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG2 = new global::Gtk.Button(); + this.btnG2.WidthRequest = 50; + this.btnG2.HeightRequest = 50; + this.btnG2.CanFocus = true; + this.btnG2.Name = "btnG2"; + this.btnG2.UseUnderline = true; + global::Gtk.Image w32 = new global::Gtk.Image(); + this.btnG2.Image = w32; + this.tbUI.Add(this.btnG2); + global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG2])); + w33.TopAttach = ((uint)(14)); + w33.BottomAttach = ((uint)(15)); + w33.LeftAttach = ((uint)(20)); + w33.RightAttach = ((uint)(21)); + w33.XOptions = ((global::Gtk.AttachOptions)(4)); + w33.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG3 = new global::Gtk.Button(); + this.btnG3.WidthRequest = 50; + this.btnG3.HeightRequest = 50; + this.btnG3.CanFocus = true; + this.btnG3.Name = "btnG3"; + this.btnG3.UseUnderline = true; + global::Gtk.Image w34 = new global::Gtk.Image(); + this.btnG3.Image = w34; + this.tbUI.Add(this.btnG3); + global::Gtk.Table.TableChild w35 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG3])); + w35.TopAttach = ((uint)(14)); + w35.BottomAttach = ((uint)(15)); + w35.LeftAttach = ((uint)(21)); + w35.RightAttach = ((uint)(22)); + w35.XOptions = ((global::Gtk.AttachOptions)(4)); + w35.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG4 = new global::Gtk.Button(); + this.btnG4.WidthRequest = 50; + this.btnG4.HeightRequest = 50; + this.btnG4.CanFocus = true; + this.btnG4.Name = "btnG4"; + this.btnG4.UseUnderline = true; + global::Gtk.Image w36 = new global::Gtk.Image(); + this.btnG4.Image = w36; + this.tbUI.Add(this.btnG4); + global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG4])); + w37.TopAttach = ((uint)(14)); + w37.BottomAttach = ((uint)(15)); + w37.LeftAttach = ((uint)(22)); + w37.RightAttach = ((uint)(23)); + w37.XOptions = ((global::Gtk.AttachOptions)(4)); + w37.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG5 = new global::Gtk.Button(); + this.btnG5.WidthRequest = 50; + this.btnG5.HeightRequest = 50; + this.btnG5.CanFocus = true; + this.btnG5.Name = "btnG5"; + this.btnG5.UseUnderline = true; + global::Gtk.Image w38 = new global::Gtk.Image(); + this.btnG5.Image = w38; + this.tbUI.Add(this.btnG5); + global::Gtk.Table.TableChild w39 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG5])); + w39.TopAttach = ((uint)(14)); + w39.BottomAttach = ((uint)(15)); + w39.LeftAttach = ((uint)(23)); + w39.RightAttach = ((uint)(24)); + w39.XOptions = ((global::Gtk.AttachOptions)(4)); + w39.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG6 = new global::Gtk.Button(); + this.btnG6.WidthRequest = 50; + this.btnG6.HeightRequest = 50; + this.btnG6.CanFocus = true; + this.btnG6.Name = "btnG6"; + this.btnG6.UseUnderline = true; + global::Gtk.Image w40 = new global::Gtk.Image(); + this.btnG6.Image = w40; + this.tbUI.Add(this.btnG6); + global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG6])); + w41.TopAttach = ((uint)(14)); + w41.BottomAttach = ((uint)(15)); + w41.LeftAttach = ((uint)(24)); + w41.RightAttach = ((uint)(25)); + w41.XOptions = ((global::Gtk.AttachOptions)(4)); + w41.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG7 = new global::Gtk.Button(); + this.btnG7.WidthRequest = 50; + this.btnG7.HeightRequest = 50; + this.btnG7.CanFocus = true; + this.btnG7.Name = "btnG7"; + this.btnG7.UseUnderline = true; + global::Gtk.Image w42 = new global::Gtk.Image(); + this.btnG7.Image = w42; + this.tbUI.Add(this.btnG7); + global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG7])); + w43.TopAttach = ((uint)(14)); + w43.BottomAttach = ((uint)(15)); + w43.LeftAttach = ((uint)(25)); + w43.RightAttach = ((uint)(26)); + w43.XOptions = ((global::Gtk.AttachOptions)(4)); + w43.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH1 = new global::Gtk.Button(); + this.btnH1.WidthRequest = 50; + this.btnH1.HeightRequest = 50; + this.btnH1.CanFocus = true; + this.btnH1.Name = "btnH1"; + this.btnH1.UseUnderline = true; + this.btnH1.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w44 = new global::Gtk.Image(); + this.btnH1.Image = w44; + this.tbUI.Add(this.btnH1); + global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH1])); + w45.TopAttach = ((uint)(12)); + w45.BottomAttach = ((uint)(13)); + w45.LeftAttach = ((uint)(10)); + w45.RightAttach = ((uint)(11)); + w45.XOptions = ((global::Gtk.AttachOptions)(4)); + w45.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH2 = new global::Gtk.Button(); + this.btnH2.WidthRequest = 50; + this.btnH2.HeightRequest = 50; + this.btnH2.CanFocus = true; + this.btnH2.Name = "btnH2"; + this.btnH2.UseUnderline = true; + this.btnH2.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w46 = new global::Gtk.Image(); + this.btnH2.Image = w46; + this.tbUI.Add(this.btnH2); + global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH2])); + w47.TopAttach = ((uint)(12)); + w47.BottomAttach = ((uint)(13)); + w47.LeftAttach = ((uint)(11)); + w47.RightAttach = ((uint)(12)); + w47.XOptions = ((global::Gtk.AttachOptions)(4)); + w47.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH3 = new global::Gtk.Button(); + this.btnH3.WidthRequest = 50; + this.btnH3.HeightRequest = 50; + this.btnH3.CanFocus = true; + this.btnH3.Name = "btnH3"; + this.btnH3.UseUnderline = true; + this.btnH3.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w48 = new global::Gtk.Image(); + this.btnH3.Image = w48; + this.tbUI.Add(this.btnH3); + global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH3])); + w49.TopAttach = ((uint)(12)); + w49.BottomAttach = ((uint)(13)); + w49.LeftAttach = ((uint)(12)); + w49.RightAttach = ((uint)(13)); + w49.XOptions = ((global::Gtk.AttachOptions)(4)); + w49.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH4 = new global::Gtk.Button(); + this.btnH4.WidthRequest = 50; + this.btnH4.HeightRequest = 50; + this.btnH4.CanFocus = true; + this.btnH4.Name = "btnH4"; + this.btnH4.UseUnderline = true; + this.btnH4.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w50 = new global::Gtk.Image(); + this.btnH4.Image = w50; + this.tbUI.Add(this.btnH4); + global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH4])); + w51.TopAttach = ((uint)(12)); + w51.BottomAttach = ((uint)(13)); + w51.LeftAttach = ((uint)(13)); + w51.RightAttach = ((uint)(14)); + w51.XOptions = ((global::Gtk.AttachOptions)(4)); + w51.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH5 = new global::Gtk.Button(); + this.btnH5.WidthRequest = 50; + this.btnH5.HeightRequest = 50; + this.btnH5.CanFocus = true; + this.btnH5.Name = "btnH5"; + this.btnH5.UseUnderline = true; + this.btnH5.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w52 = new global::Gtk.Image(); + this.btnH5.Image = w52; + this.tbUI.Add(this.btnH5); + global::Gtk.Table.TableChild w53 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH5])); + w53.TopAttach = ((uint)(12)); + w53.BottomAttach = ((uint)(13)); + w53.LeftAttach = ((uint)(14)); + w53.RightAttach = ((uint)(15)); + w53.XOptions = ((global::Gtk.AttachOptions)(4)); + w53.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH6 = new global::Gtk.Button(); + this.btnH6.WidthRequest = 50; + this.btnH6.HeightRequest = 50; + this.btnH6.CanFocus = true; + this.btnH6.Name = "btnH6"; + this.btnH6.UseUnderline = true; + this.btnH6.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w54 = new global::Gtk.Image(); + this.btnH6.Image = w54; + this.tbUI.Add(this.btnH6); + global::Gtk.Table.TableChild w55 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH6])); + w55.TopAttach = ((uint)(12)); + w55.BottomAttach = ((uint)(13)); + w55.LeftAttach = ((uint)(15)); + w55.RightAttach = ((uint)(16)); + w55.XOptions = ((global::Gtk.AttachOptions)(4)); + w55.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH7 = new global::Gtk.Button(); + this.btnH7.WidthRequest = 50; + this.btnH7.HeightRequest = 50; + this.btnH7.CanFocus = true; + this.btnH7.Name = "btnH7"; + this.btnH7.UseUnderline = true; + this.btnH7.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w56 = new global::Gtk.Image(); + this.btnH7.Image = w56; + this.tbUI.Add(this.btnH7); + global::Gtk.Table.TableChild w57 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH7])); + w57.TopAttach = ((uint)(12)); + w57.BottomAttach = ((uint)(13)); + w57.LeftAttach = ((uint)(16)); + w57.RightAttach = ((uint)(17)); + w57.XOptions = ((global::Gtk.AttachOptions)(4)); + w57.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI1 = new global::Gtk.Button(); + this.btnI1.WidthRequest = 50; + this.btnI1.HeightRequest = 50; + this.btnI1.CanFocus = true; + this.btnI1.Name = "btnI1"; + this.btnI1.UseUnderline = true; + this.btnI1.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w58 = new global::Gtk.Image(); + this.btnI1.Image = w58; + this.tbUI.Add(this.btnI1); + global::Gtk.Table.TableChild w59 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI1])); + w59.TopAttach = ((uint)(1)); + w59.BottomAttach = ((uint)(2)); + w59.LeftAttach = ((uint)(19)); + w59.RightAttach = ((uint)(20)); + w59.XOptions = ((global::Gtk.AttachOptions)(4)); + w59.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI10 = new global::Gtk.Button(); + this.btnI10.WidthRequest = 50; + this.btnI10.HeightRequest = 50; + this.btnI10.CanFocus = true; + this.btnI10.Name = "btnI10"; + this.btnI10.UseUnderline = true; + this.btnI10.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w60 = new global::Gtk.Image(); + this.btnI10.Image = w60; + this.tbUI.Add(this.btnI10); + global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI10])); + w61.TopAttach = ((uint)(2)); + w61.BottomAttach = ((uint)(3)); + w61.LeftAttach = ((uint)(21)); + w61.RightAttach = ((uint)(22)); + w61.XOptions = ((global::Gtk.AttachOptions)(4)); + w61.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI11 = new global::Gtk.Button(); + this.btnI11.WidthRequest = 50; + this.btnI11.HeightRequest = 50; + this.btnI11.CanFocus = true; + this.btnI11.Name = "btnI11"; + this.btnI11.UseUnderline = true; + this.btnI11.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w62 = new global::Gtk.Image(); + this.btnI11.Image = w62; + this.tbUI.Add(this.btnI11); + global::Gtk.Table.TableChild w63 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI11])); + w63.TopAttach = ((uint)(2)); + w63.BottomAttach = ((uint)(3)); + w63.LeftAttach = ((uint)(22)); + w63.RightAttach = ((uint)(23)); + w63.XOptions = ((global::Gtk.AttachOptions)(4)); + w63.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI12 = new global::Gtk.Button(); + this.btnI12.WidthRequest = 50; + this.btnI12.HeightRequest = 50; + this.btnI12.CanFocus = true; + this.btnI12.Name = "btnI12"; + this.btnI12.UseUnderline = true; + this.btnI12.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w64 = new global::Gtk.Image(); + this.btnI12.Image = w64; + this.tbUI.Add(this.btnI12); + global::Gtk.Table.TableChild w65 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI12])); + w65.TopAttach = ((uint)(2)); + w65.BottomAttach = ((uint)(3)); + w65.LeftAttach = ((uint)(23)); + w65.RightAttach = ((uint)(24)); + w65.XOptions = ((global::Gtk.AttachOptions)(4)); + w65.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI13 = new global::Gtk.Button(); + this.btnI13.WidthRequest = 50; + this.btnI13.HeightRequest = 50; + this.btnI13.CanFocus = true; + this.btnI13.Name = "btnI13"; + this.btnI13.UseUnderline = true; + this.btnI13.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w66 = new global::Gtk.Image(); + this.btnI13.Image = w66; + this.tbUI.Add(this.btnI13); + global::Gtk.Table.TableChild w67 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI13])); + w67.TopAttach = ((uint)(2)); + w67.BottomAttach = ((uint)(3)); + w67.LeftAttach = ((uint)(24)); + w67.RightAttach = ((uint)(25)); + w67.XOptions = ((global::Gtk.AttachOptions)(4)); + w67.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI14 = new global::Gtk.Button(); + this.btnI14.WidthRequest = 50; + this.btnI14.HeightRequest = 50; + this.btnI14.CanFocus = true; + this.btnI14.Name = "btnI14"; + this.btnI14.UseUnderline = true; + this.btnI14.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w68 = new global::Gtk.Image(); + this.btnI14.Image = w68; + this.tbUI.Add(this.btnI14); + global::Gtk.Table.TableChild w69 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI14])); + w69.TopAttach = ((uint)(2)); + w69.BottomAttach = ((uint)(3)); + w69.LeftAttach = ((uint)(25)); + w69.RightAttach = ((uint)(26)); + w69.XOptions = ((global::Gtk.AttachOptions)(4)); + w69.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI15 = new global::Gtk.Button(); + this.btnI15.WidthRequest = 50; + this.btnI15.HeightRequest = 50; + this.btnI15.CanFocus = true; + this.btnI15.Name = "btnI15"; + this.btnI15.UseUnderline = true; + this.btnI15.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w70 = new global::Gtk.Image(); + this.btnI15.Image = w70; + this.tbUI.Add(this.btnI15); + global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI15])); + w71.TopAttach = ((uint)(3)); + w71.BottomAttach = ((uint)(4)); + w71.LeftAttach = ((uint)(19)); + w71.RightAttach = ((uint)(20)); + w71.XOptions = ((global::Gtk.AttachOptions)(4)); + w71.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI16 = new global::Gtk.Button(); + this.btnI16.WidthRequest = 50; + this.btnI16.HeightRequest = 50; + this.btnI16.CanFocus = true; + this.btnI16.Name = "btnI16"; + this.btnI16.UseUnderline = true; + this.btnI16.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w72 = new global::Gtk.Image(); + this.btnI16.Image = w72; + this.tbUI.Add(this.btnI16); + global::Gtk.Table.TableChild w73 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI16])); + w73.TopAttach = ((uint)(3)); + w73.BottomAttach = ((uint)(4)); + w73.LeftAttach = ((uint)(20)); + w73.RightAttach = ((uint)(21)); + w73.XOptions = ((global::Gtk.AttachOptions)(4)); + w73.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI17 = new global::Gtk.Button(); + this.btnI17.WidthRequest = 50; + this.btnI17.HeightRequest = 50; + this.btnI17.CanFocus = true; + this.btnI17.Name = "btnI17"; + this.btnI17.UseUnderline = true; + this.btnI17.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w74 = new global::Gtk.Image(); + this.btnI17.Image = w74; + this.tbUI.Add(this.btnI17); + global::Gtk.Table.TableChild w75 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI17])); + w75.TopAttach = ((uint)(3)); + w75.BottomAttach = ((uint)(4)); + w75.LeftAttach = ((uint)(21)); + w75.RightAttach = ((uint)(22)); + w75.XOptions = ((global::Gtk.AttachOptions)(4)); + w75.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI18 = new global::Gtk.Button(); + this.btnI18.WidthRequest = 50; + this.btnI18.HeightRequest = 50; + this.btnI18.CanFocus = true; + this.btnI18.Name = "btnI18"; + this.btnI18.UseUnderline = true; + this.btnI18.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w76 = new global::Gtk.Image(); + this.btnI18.Image = w76; + this.tbUI.Add(this.btnI18); + global::Gtk.Table.TableChild w77 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI18])); + w77.TopAttach = ((uint)(3)); + w77.BottomAttach = ((uint)(4)); + w77.LeftAttach = ((uint)(22)); + w77.RightAttach = ((uint)(23)); + w77.XOptions = ((global::Gtk.AttachOptions)(4)); + w77.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI19 = new global::Gtk.Button(); + this.btnI19.WidthRequest = 50; + this.btnI19.HeightRequest = 50; + this.btnI19.CanFocus = true; + this.btnI19.Name = "btnI19"; + this.btnI19.UseUnderline = true; + this.btnI19.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w78 = new global::Gtk.Image(); + this.btnI19.Image = w78; + this.tbUI.Add(this.btnI19); + global::Gtk.Table.TableChild w79 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI19])); + w79.TopAttach = ((uint)(3)); + w79.BottomAttach = ((uint)(4)); + w79.LeftAttach = ((uint)(23)); + w79.RightAttach = ((uint)(24)); + w79.XOptions = ((global::Gtk.AttachOptions)(4)); + w79.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI2 = new global::Gtk.Button(); + this.btnI2.WidthRequest = 50; + this.btnI2.HeightRequest = 50; + this.btnI2.CanFocus = true; + this.btnI2.Name = "btnI2"; + this.btnI2.UseUnderline = true; + this.btnI2.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w80 = new global::Gtk.Image(); + this.btnI2.Image = w80; + this.tbUI.Add(this.btnI2); + global::Gtk.Table.TableChild w81 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI2])); + w81.TopAttach = ((uint)(1)); + w81.BottomAttach = ((uint)(2)); + w81.LeftAttach = ((uint)(20)); + w81.RightAttach = ((uint)(21)); + w81.XOptions = ((global::Gtk.AttachOptions)(4)); + w81.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI20 = new global::Gtk.Button(); + this.btnI20.WidthRequest = 50; + this.btnI20.HeightRequest = 50; + this.btnI20.CanFocus = true; + this.btnI20.Name = "btnI20"; + this.btnI20.UseUnderline = true; + this.btnI20.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w82 = new global::Gtk.Image(); + this.btnI20.Image = w82; + this.tbUI.Add(this.btnI20); + global::Gtk.Table.TableChild w83 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI20])); + w83.TopAttach = ((uint)(3)); + w83.BottomAttach = ((uint)(4)); + w83.LeftAttach = ((uint)(24)); + w83.RightAttach = ((uint)(25)); + w83.XOptions = ((global::Gtk.AttachOptions)(4)); + w83.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI21 = new global::Gtk.Button(); + this.btnI21.WidthRequest = 50; + this.btnI21.HeightRequest = 50; + this.btnI21.CanFocus = true; + this.btnI21.Name = "btnI21"; + this.btnI21.UseUnderline = true; + this.btnI21.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w84 = new global::Gtk.Image(); + this.btnI21.Image = w84; + this.tbUI.Add(this.btnI21); + global::Gtk.Table.TableChild w85 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI21])); + w85.TopAttach = ((uint)(3)); + w85.BottomAttach = ((uint)(4)); + w85.LeftAttach = ((uint)(25)); + w85.RightAttach = ((uint)(26)); + w85.XOptions = ((global::Gtk.AttachOptions)(4)); + w85.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI22 = new global::Gtk.Button(); + this.btnI22.WidthRequest = 50; + this.btnI22.HeightRequest = 50; + this.btnI22.CanFocus = true; + this.btnI22.Name = "btnI22"; + this.btnI22.UseUnderline = true; + this.btnI22.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w86 = new global::Gtk.Image(); + this.btnI22.Image = w86; + this.tbUI.Add(this.btnI22); + global::Gtk.Table.TableChild w87 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI22])); + w87.TopAttach = ((uint)(4)); + w87.BottomAttach = ((uint)(5)); + w87.LeftAttach = ((uint)(19)); + w87.RightAttach = ((uint)(20)); + w87.XOptions = ((global::Gtk.AttachOptions)(4)); + w87.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI23 = new global::Gtk.Button(); + this.btnI23.WidthRequest = 50; + this.btnI23.HeightRequest = 50; + this.btnI23.CanFocus = true; + this.btnI23.Name = "btnI23"; + this.btnI23.UseUnderline = true; + this.btnI23.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w88 = new global::Gtk.Image(); + this.btnI23.Image = w88; + this.tbUI.Add(this.btnI23); + global::Gtk.Table.TableChild w89 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI23])); + w89.TopAttach = ((uint)(4)); + w89.BottomAttach = ((uint)(5)); + w89.LeftAttach = ((uint)(20)); + w89.RightAttach = ((uint)(21)); + w89.XOptions = ((global::Gtk.AttachOptions)(4)); + w89.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI24 = new global::Gtk.Button(); + this.btnI24.WidthRequest = 50; + this.btnI24.HeightRequest = 50; + this.btnI24.CanFocus = true; + this.btnI24.Name = "btnI24"; + this.btnI24.UseUnderline = true; + this.btnI24.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w90 = new global::Gtk.Image(); + this.btnI24.Image = w90; + this.tbUI.Add(this.btnI24); + global::Gtk.Table.TableChild w91 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI24])); + w91.TopAttach = ((uint)(4)); + w91.BottomAttach = ((uint)(5)); + w91.LeftAttach = ((uint)(21)); + w91.RightAttach = ((uint)(22)); + w91.XOptions = ((global::Gtk.AttachOptions)(4)); + w91.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI25 = new global::Gtk.Button(); + this.btnI25.WidthRequest = 50; + this.btnI25.HeightRequest = 50; + this.btnI25.CanFocus = true; + this.btnI25.Name = "btnI25"; + this.btnI25.UseUnderline = true; + this.btnI25.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w92 = new global::Gtk.Image(); + this.btnI25.Image = w92; + this.tbUI.Add(this.btnI25); + global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI25])); + w93.TopAttach = ((uint)(4)); + w93.BottomAttach = ((uint)(5)); + w93.LeftAttach = ((uint)(22)); + w93.RightAttach = ((uint)(23)); + w93.XOptions = ((global::Gtk.AttachOptions)(4)); + w93.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI26 = new global::Gtk.Button(); + this.btnI26.WidthRequest = 50; + this.btnI26.HeightRequest = 50; + this.btnI26.CanFocus = true; + this.btnI26.Name = "btnI26"; + this.btnI26.UseUnderline = true; + this.btnI26.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w94 = new global::Gtk.Image(); + this.btnI26.Image = w94; + this.tbUI.Add(this.btnI26); + global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI26])); + w95.TopAttach = ((uint)(4)); + w95.BottomAttach = ((uint)(5)); + w95.LeftAttach = ((uint)(23)); + w95.RightAttach = ((uint)(24)); + w95.XOptions = ((global::Gtk.AttachOptions)(4)); + w95.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI27 = new global::Gtk.Button(); + this.btnI27.WidthRequest = 50; + this.btnI27.HeightRequest = 50; + this.btnI27.CanFocus = true; + this.btnI27.Name = "btnI27"; + this.btnI27.UseUnderline = true; + this.btnI27.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w96 = new global::Gtk.Image(); + this.btnI27.Image = w96; + this.tbUI.Add(this.btnI27); + global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI27])); + w97.TopAttach = ((uint)(4)); + w97.BottomAttach = ((uint)(5)); + w97.LeftAttach = ((uint)(24)); + w97.RightAttach = ((uint)(25)); + w97.XOptions = ((global::Gtk.AttachOptions)(4)); + w97.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI28 = new global::Gtk.Button(); + this.btnI28.WidthRequest = 50; + this.btnI28.HeightRequest = 50; + this.btnI28.CanFocus = true; + this.btnI28.Name = "btnI28"; + this.btnI28.UseUnderline = true; + this.btnI28.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w98 = new global::Gtk.Image(); + this.btnI28.Image = w98; + this.tbUI.Add(this.btnI28); + global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI28])); + w99.TopAttach = ((uint)(4)); + w99.BottomAttach = ((uint)(5)); + w99.LeftAttach = ((uint)(25)); + w99.RightAttach = ((uint)(26)); + w99.XOptions = ((global::Gtk.AttachOptions)(4)); + w99.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI29 = new global::Gtk.Button(); + this.btnI29.WidthRequest = 50; + this.btnI29.HeightRequest = 50; + this.btnI29.CanFocus = true; + this.btnI29.Name = "btnI29"; + this.btnI29.UseUnderline = true; + this.btnI29.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w100 = new global::Gtk.Image(); + this.btnI29.Image = w100; + this.tbUI.Add(this.btnI29); + global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI29])); + w101.TopAttach = ((uint)(5)); + w101.BottomAttach = ((uint)(6)); + w101.LeftAttach = ((uint)(19)); + w101.RightAttach = ((uint)(20)); + w101.XOptions = ((global::Gtk.AttachOptions)(4)); + w101.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI3 = new global::Gtk.Button(); + this.btnI3.WidthRequest = 50; + this.btnI3.HeightRequest = 50; + this.btnI3.CanFocus = true; + this.btnI3.Name = "btnI3"; + this.btnI3.UseUnderline = true; + this.btnI3.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w102 = new global::Gtk.Image(); + this.btnI3.Image = w102; + this.tbUI.Add(this.btnI3); + global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI3])); + w103.TopAttach = ((uint)(1)); + w103.BottomAttach = ((uint)(2)); + w103.LeftAttach = ((uint)(21)); + w103.RightAttach = ((uint)(22)); + w103.XOptions = ((global::Gtk.AttachOptions)(4)); + w103.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI30 = new global::Gtk.Button(); + this.btnI30.WidthRequest = 50; + this.btnI30.HeightRequest = 50; + this.btnI30.CanFocus = true; + this.btnI30.Name = "btnI30"; + this.btnI30.UseUnderline = true; + this.btnI30.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w104 = new global::Gtk.Image(); + this.btnI30.Image = w104; + this.tbUI.Add(this.btnI30); + global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI30])); + w105.TopAttach = ((uint)(5)); + w105.BottomAttach = ((uint)(6)); + w105.LeftAttach = ((uint)(20)); + w105.RightAttach = ((uint)(21)); + w105.XOptions = ((global::Gtk.AttachOptions)(4)); + w105.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI31 = new global::Gtk.Button(); + this.btnI31.WidthRequest = 50; + this.btnI31.HeightRequest = 50; + this.btnI31.CanFocus = true; + this.btnI31.Name = "btnI31"; + this.btnI31.UseUnderline = true; + this.btnI31.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w106 = new global::Gtk.Image(); + this.btnI31.Image = w106; + this.tbUI.Add(this.btnI31); + global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI31])); + w107.TopAttach = ((uint)(5)); + w107.BottomAttach = ((uint)(6)); + w107.LeftAttach = ((uint)(21)); + w107.RightAttach = ((uint)(22)); + w107.XOptions = ((global::Gtk.AttachOptions)(4)); + w107.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI32 = new global::Gtk.Button(); + this.btnI32.WidthRequest = 50; + this.btnI32.HeightRequest = 50; + this.btnI32.CanFocus = true; + this.btnI32.Name = "btnI32"; + this.btnI32.UseUnderline = true; + this.btnI32.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w108 = new global::Gtk.Image(); + this.btnI32.Image = w108; + this.tbUI.Add(this.btnI32); + global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI32])); + w109.TopAttach = ((uint)(5)); + w109.BottomAttach = ((uint)(6)); + w109.LeftAttach = ((uint)(22)); + w109.RightAttach = ((uint)(23)); + w109.XOptions = ((global::Gtk.AttachOptions)(4)); + w109.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI33 = new global::Gtk.Button(); + this.btnI33.WidthRequest = 50; + this.btnI33.HeightRequest = 50; + this.btnI33.CanFocus = true; + this.btnI33.Name = "btnI33"; + this.btnI33.UseUnderline = true; + this.btnI33.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w110 = new global::Gtk.Image(); + this.btnI33.Image = w110; + this.tbUI.Add(this.btnI33); + global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI33])); + w111.TopAttach = ((uint)(5)); + w111.BottomAttach = ((uint)(6)); + w111.LeftAttach = ((uint)(23)); + w111.RightAttach = ((uint)(24)); + w111.XOptions = ((global::Gtk.AttachOptions)(4)); + w111.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI34 = new global::Gtk.Button(); + this.btnI34.WidthRequest = 50; + this.btnI34.HeightRequest = 50; + this.btnI34.CanFocus = true; + this.btnI34.Name = "btnI34"; + this.btnI34.UseUnderline = true; + this.btnI34.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w112 = new global::Gtk.Image(); + this.btnI34.Image = w112; + this.tbUI.Add(this.btnI34); + global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI34])); + w113.TopAttach = ((uint)(5)); + w113.BottomAttach = ((uint)(6)); + w113.LeftAttach = ((uint)(24)); + w113.RightAttach = ((uint)(25)); + w113.XOptions = ((global::Gtk.AttachOptions)(4)); + w113.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI35 = new global::Gtk.Button(); + this.btnI35.WidthRequest = 50; + this.btnI35.HeightRequest = 50; + this.btnI35.CanFocus = true; + this.btnI35.Name = "btnI35"; + this.btnI35.UseUnderline = true; + this.btnI35.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w114 = new global::Gtk.Image(); + this.btnI35.Image = w114; + this.tbUI.Add(this.btnI35); + global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI35])); + w115.TopAttach = ((uint)(5)); + w115.BottomAttach = ((uint)(6)); + w115.LeftAttach = ((uint)(25)); + w115.RightAttach = ((uint)(26)); + w115.XOptions = ((global::Gtk.AttachOptions)(4)); + w115.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI36 = new global::Gtk.Button(); + this.btnI36.WidthRequest = 50; + this.btnI36.HeightRequest = 50; + this.btnI36.CanFocus = true; + this.btnI36.Name = "btnI36"; + this.btnI36.UseUnderline = true; + this.btnI36.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w116 = new global::Gtk.Image(); + this.btnI36.Image = w116; + this.tbUI.Add(this.btnI36); + global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI36])); + w117.TopAttach = ((uint)(6)); + w117.BottomAttach = ((uint)(7)); + w117.LeftAttach = ((uint)(19)); + w117.RightAttach = ((uint)(20)); + w117.XOptions = ((global::Gtk.AttachOptions)(4)); + w117.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI37 = new global::Gtk.Button(); + this.btnI37.WidthRequest = 50; + this.btnI37.HeightRequest = 50; + this.btnI37.CanFocus = true; + this.btnI37.Name = "btnI37"; + this.btnI37.UseUnderline = true; + this.btnI37.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w118 = new global::Gtk.Image(); + this.btnI37.Image = w118; + this.tbUI.Add(this.btnI37); + global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI37])); + w119.TopAttach = ((uint)(6)); + w119.BottomAttach = ((uint)(7)); + w119.LeftAttach = ((uint)(20)); + w119.RightAttach = ((uint)(21)); + w119.XOptions = ((global::Gtk.AttachOptions)(4)); + w119.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI38 = new global::Gtk.Button(); + this.btnI38.WidthRequest = 50; + this.btnI38.HeightRequest = 50; + this.btnI38.CanFocus = true; + this.btnI38.Name = "btnI38"; + this.btnI38.UseUnderline = true; + this.btnI38.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w120 = new global::Gtk.Image(); + this.btnI38.Image = w120; + this.tbUI.Add(this.btnI38); + global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI38])); + w121.TopAttach = ((uint)(6)); + w121.BottomAttach = ((uint)(7)); + w121.LeftAttach = ((uint)(21)); + w121.RightAttach = ((uint)(22)); + w121.XOptions = ((global::Gtk.AttachOptions)(4)); + w121.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI39 = new global::Gtk.Button(); + this.btnI39.WidthRequest = 50; + this.btnI39.HeightRequest = 50; + this.btnI39.CanFocus = true; + this.btnI39.Name = "btnI39"; + this.btnI39.UseUnderline = true; + this.btnI39.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w122 = new global::Gtk.Image(); + this.btnI39.Image = w122; + this.tbUI.Add(this.btnI39); + global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI39])); + w123.TopAttach = ((uint)(6)); + w123.BottomAttach = ((uint)(7)); + w123.LeftAttach = ((uint)(22)); + w123.RightAttach = ((uint)(23)); + w123.XOptions = ((global::Gtk.AttachOptions)(4)); + w123.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI4 = new global::Gtk.Button(); + this.btnI4.WidthRequest = 50; + this.btnI4.HeightRequest = 50; + this.btnI4.CanFocus = true; + this.btnI4.Name = "btnI4"; + this.btnI4.UseUnderline = true; + this.btnI4.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w124 = new global::Gtk.Image(); + this.btnI4.Image = w124; + this.tbUI.Add(this.btnI4); + global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI4])); + w125.TopAttach = ((uint)(1)); + w125.BottomAttach = ((uint)(2)); + w125.LeftAttach = ((uint)(22)); + w125.RightAttach = ((uint)(23)); + w125.XOptions = ((global::Gtk.AttachOptions)(4)); + w125.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI40 = new global::Gtk.Button(); + this.btnI40.WidthRequest = 50; + this.btnI40.HeightRequest = 50; + this.btnI40.CanFocus = true; + this.btnI40.Name = "btnI40"; + this.btnI40.UseUnderline = true; + this.btnI40.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w126 = new global::Gtk.Image(); + this.btnI40.Image = w126; + this.tbUI.Add(this.btnI40); + global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI40])); + w127.TopAttach = ((uint)(6)); + w127.BottomAttach = ((uint)(7)); + w127.LeftAttach = ((uint)(23)); + w127.RightAttach = ((uint)(24)); + w127.XOptions = ((global::Gtk.AttachOptions)(4)); + w127.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI41 = new global::Gtk.Button(); + this.btnI41.WidthRequest = 50; + this.btnI41.HeightRequest = 50; + this.btnI41.CanFocus = true; + this.btnI41.Name = "btnI41"; + this.btnI41.UseUnderline = true; + this.btnI41.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w128 = new global::Gtk.Image(); + this.btnI41.Image = w128; + this.tbUI.Add(this.btnI41); + global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI41])); + w129.TopAttach = ((uint)(6)); + w129.BottomAttach = ((uint)(7)); + w129.LeftAttach = ((uint)(24)); + w129.RightAttach = ((uint)(25)); + w129.XOptions = ((global::Gtk.AttachOptions)(4)); + w129.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI42 = new global::Gtk.Button(); + this.btnI42.WidthRequest = 50; + this.btnI42.HeightRequest = 50; + this.btnI42.CanFocus = true; + this.btnI42.Name = "btnI42"; + this.btnI42.UseUnderline = true; + this.btnI42.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w130 = new global::Gtk.Image(); + this.btnI42.Image = w130; + this.tbUI.Add(this.btnI42); + global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI42])); + w131.TopAttach = ((uint)(6)); + w131.BottomAttach = ((uint)(7)); + w131.LeftAttach = ((uint)(25)); + w131.RightAttach = ((uint)(26)); + w131.XOptions = ((global::Gtk.AttachOptions)(4)); + w131.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI43 = new global::Gtk.Button(); + this.btnI43.WidthRequest = 50; + this.btnI43.HeightRequest = 50; + this.btnI43.CanFocus = true; + this.btnI43.Name = "btnI43"; + this.btnI43.UseUnderline = true; + this.btnI43.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w132 = new global::Gtk.Image(); + this.btnI43.Image = w132; + this.tbUI.Add(this.btnI43); + global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI43])); + w133.TopAttach = ((uint)(7)); + w133.BottomAttach = ((uint)(8)); + w133.LeftAttach = ((uint)(19)); + w133.RightAttach = ((uint)(20)); + w133.XOptions = ((global::Gtk.AttachOptions)(4)); + w133.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI44 = new global::Gtk.Button(); + this.btnI44.WidthRequest = 50; + this.btnI44.HeightRequest = 50; + this.btnI44.CanFocus = true; + this.btnI44.Name = "btnI44"; + this.btnI44.UseUnderline = true; + this.btnI44.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w134 = new global::Gtk.Image(); + this.btnI44.Image = w134; + this.tbUI.Add(this.btnI44); + global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI44])); + w135.TopAttach = ((uint)(7)); + w135.BottomAttach = ((uint)(8)); + w135.LeftAttach = ((uint)(20)); + w135.RightAttach = ((uint)(21)); + w135.XOptions = ((global::Gtk.AttachOptions)(4)); + w135.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI45 = new global::Gtk.Button(); + this.btnI45.WidthRequest = 50; + this.btnI45.HeightRequest = 50; + this.btnI45.CanFocus = true; + this.btnI45.Name = "btnI45"; + this.btnI45.UseUnderline = true; + this.btnI45.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w136 = new global::Gtk.Image(); + this.btnI45.Image = w136; + this.tbUI.Add(this.btnI45); + global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI45])); + w137.TopAttach = ((uint)(7)); + w137.BottomAttach = ((uint)(8)); + w137.LeftAttach = ((uint)(21)); + w137.RightAttach = ((uint)(22)); + w137.XOptions = ((global::Gtk.AttachOptions)(4)); + w137.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI46 = new global::Gtk.Button(); + this.btnI46.WidthRequest = 50; + this.btnI46.HeightRequest = 50; + this.btnI46.CanFocus = true; + this.btnI46.Name = "btnI46"; + this.btnI46.UseUnderline = true; + this.btnI46.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w138 = new global::Gtk.Image(); + this.btnI46.Image = w138; + this.tbUI.Add(this.btnI46); + global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI46])); + w139.TopAttach = ((uint)(7)); + w139.BottomAttach = ((uint)(8)); + w139.LeftAttach = ((uint)(22)); + w139.RightAttach = ((uint)(23)); + w139.XOptions = ((global::Gtk.AttachOptions)(4)); + w139.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI47 = new global::Gtk.Button(); + this.btnI47.WidthRequest = 50; + this.btnI47.HeightRequest = 50; + this.btnI47.CanFocus = true; + this.btnI47.Name = "btnI47"; + this.btnI47.UseUnderline = true; + this.btnI47.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w140 = new global::Gtk.Image(); + this.btnI47.Image = w140; + this.tbUI.Add(this.btnI47); + global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI47])); + w141.TopAttach = ((uint)(7)); + w141.BottomAttach = ((uint)(8)); + w141.LeftAttach = ((uint)(23)); + w141.RightAttach = ((uint)(24)); + w141.XOptions = ((global::Gtk.AttachOptions)(4)); + w141.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI48 = new global::Gtk.Button(); + this.btnI48.WidthRequest = 50; + this.btnI48.HeightRequest = 50; + this.btnI48.CanFocus = true; + this.btnI48.Name = "btnI48"; + this.btnI48.UseUnderline = true; + this.btnI48.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w142 = new global::Gtk.Image(); + this.btnI48.Image = w142; + this.tbUI.Add(this.btnI48); + global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI48])); + w143.TopAttach = ((uint)(7)); + w143.BottomAttach = ((uint)(8)); + w143.LeftAttach = ((uint)(24)); + w143.RightAttach = ((uint)(25)); + w143.XOptions = ((global::Gtk.AttachOptions)(4)); + w143.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI49 = new global::Gtk.Button(); + this.btnI49.WidthRequest = 50; + this.btnI49.HeightRequest = 50; + this.btnI49.CanFocus = true; + this.btnI49.Name = "btnI49"; + this.btnI49.UseUnderline = true; + this.btnI49.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w144 = new global::Gtk.Image(); + this.btnI49.Image = w144; + this.tbUI.Add(this.btnI49); + global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI49])); + w145.TopAttach = ((uint)(7)); + w145.BottomAttach = ((uint)(8)); + w145.LeftAttach = ((uint)(25)); + w145.RightAttach = ((uint)(26)); + w145.XOptions = ((global::Gtk.AttachOptions)(4)); + w145.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI5 = new global::Gtk.Button(); + this.btnI5.WidthRequest = 50; + this.btnI5.HeightRequest = 50; + this.btnI5.CanFocus = true; + this.btnI5.Name = "btnI5"; + this.btnI5.UseUnderline = true; + this.btnI5.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w146 = new global::Gtk.Image(); + this.btnI5.Image = w146; + this.tbUI.Add(this.btnI5); + global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI5])); + w147.TopAttach = ((uint)(1)); + w147.BottomAttach = ((uint)(2)); + w147.LeftAttach = ((uint)(23)); + w147.RightAttach = ((uint)(24)); + w147.XOptions = ((global::Gtk.AttachOptions)(4)); + w147.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI6 = new global::Gtk.Button(); + this.btnI6.WidthRequest = 50; + this.btnI6.HeightRequest = 50; + this.btnI6.CanFocus = true; + this.btnI6.Name = "btnI6"; + this.btnI6.UseUnderline = true; + this.btnI6.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w148 = new global::Gtk.Image(); + this.btnI6.Image = w148; + this.tbUI.Add(this.btnI6); + global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI6])); + w149.TopAttach = ((uint)(1)); + w149.BottomAttach = ((uint)(2)); + w149.LeftAttach = ((uint)(24)); + w149.RightAttach = ((uint)(25)); + w149.XOptions = ((global::Gtk.AttachOptions)(4)); + w149.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI7 = new global::Gtk.Button(); + this.btnI7.WidthRequest = 50; + this.btnI7.HeightRequest = 50; + this.btnI7.CanFocus = true; + this.btnI7.Name = "btnI7"; + this.btnI7.UseUnderline = true; + this.btnI7.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w150 = new global::Gtk.Image(); + this.btnI7.Image = w150; + this.tbUI.Add(this.btnI7); + global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI7])); + w151.TopAttach = ((uint)(1)); + w151.BottomAttach = ((uint)(2)); + w151.LeftAttach = ((uint)(25)); + w151.RightAttach = ((uint)(26)); + w151.XOptions = ((global::Gtk.AttachOptions)(4)); + w151.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI8 = new global::Gtk.Button(); + this.btnI8.WidthRequest = 50; + this.btnI8.HeightRequest = 50; + this.btnI8.CanFocus = true; + this.btnI8.Name = "btnI8"; + this.btnI8.UseUnderline = true; + this.btnI8.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w152 = new global::Gtk.Image(); + this.btnI8.Image = w152; + this.tbUI.Add(this.btnI8); + global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI8])); + w153.TopAttach = ((uint)(2)); + w153.BottomAttach = ((uint)(3)); + w153.LeftAttach = ((uint)(19)); + w153.RightAttach = ((uint)(20)); + w153.XOptions = ((global::Gtk.AttachOptions)(4)); + w153.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI9 = new global::Gtk.Button(); + this.btnI9.WidthRequest = 50; + this.btnI9.HeightRequest = 50; + this.btnI9.CanFocus = true; + this.btnI9.Name = "btnI9"; + this.btnI9.UseUnderline = true; + this.btnI9.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w154 = new global::Gtk.Image(); + this.btnI9.Image = w154; + this.tbUI.Add(this.btnI9); + global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI9])); + w155.TopAttach = ((uint)(2)); + w155.BottomAttach = ((uint)(3)); + w155.LeftAttach = ((uint)(20)); + w155.RightAttach = ((uint)(21)); + w155.XOptions = ((global::Gtk.AttachOptions)(4)); + w155.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnInv = new global::Gtk.Button(); + this.btnInv.WidthRequest = 50; + this.btnInv.HeightRequest = 50; + this.btnInv.CanFocus = true; + this.btnInv.Name = "btnInv"; + this.btnInv.UseUnderline = true; + this.btnInv.Label = "Inv"; + this.tbUI.Add(this.btnInv); + global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); + w156.TopAttach = ((uint)(11)); + w156.BottomAttach = ((uint)(12)); + w156.LeftAttach = ((uint)(17)); + w156.RightAttach = ((uint)(18)); + w156.XOptions = ((global::Gtk.AttachOptions)(4)); + w156.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnLog = new global::Gtk.Button(); + this.btnLog.WidthRequest = 350; + this.btnLog.HeightRequest = 50; + this.btnLog.CanFocus = true; + this.btnLog.Name = "btnLog"; + this.btnLog.UseUnderline = true; + this.btnLog.FocusOnClick = false; + this.btnLog.Label = "Event Log"; + this.tbUI.Add(this.btnLog); + global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); + w157.TopAttach = ((uint)(13)); + w157.BottomAttach = ((uint)(14)); + w157.LeftAttach = ((uint)(10)); + w157.RightAttach = ((uint)(17)); + w157.XOptions = ((global::Gtk.AttachOptions)(4)); + w157.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnMap = new global::Gtk.Button(); + this.btnMap.WidthRequest = 50; + this.btnMap.HeightRequest = 50; + this.btnMap.CanFocus = true; + this.btnMap.Name = "btnMap"; + this.btnMap.UseUnderline = true; + this.btnMap.Label = "Map"; + this.tbUI.Add(this.btnMap); + global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); + w158.TopAttach = ((uint)(11)); + w158.BottomAttach = ((uint)(12)); + w158.LeftAttach = ((uint)(9)); + w158.RightAttach = ((uint)(10)); + w158.XOptions = ((global::Gtk.AttachOptions)(4)); + w158.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnMusic = new global::Gtk.Button(); + this.btnMusic.WidthRequest = 50; + this.btnMusic.HeightRequest = 50; + this.btnMusic.CanFocus = true; + this.btnMusic.Name = "btnMusic"; + this.btnMusic.UseUnderline = true; + this.btnMusic.Label = "Music"; + this.tbUI.Add(this.btnMusic); + global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); + w159.TopAttach = ((uint)(13)); + w159.BottomAttach = ((uint)(14)); + w159.LeftAttach = ((uint)(9)); + w159.RightAttach = ((uint)(10)); + w159.XOptions = ((global::Gtk.AttachOptions)(4)); + w159.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP1 = new global::Gtk.Button(); + this.btnP1.WidthRequest = 50; + this.btnP1.HeightRequest = 50; + this.btnP1.CanFocus = true; + this.btnP1.Name = "btnP1"; + this.btnP1.UseUnderline = true; + this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w160 = new global::Gtk.Image(); + this.btnP1.Image = w160; + this.tbUI.Add(this.btnP1); + global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); + w161.TopAttach = ((uint)(1)); + w161.BottomAttach = ((uint)(2)); + w161.LeftAttach = ((uint)(10)); + w161.RightAttach = ((uint)(11)); + w161.XOptions = ((global::Gtk.AttachOptions)(4)); + w161.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP10 = new global::Gtk.Button(); + this.btnP10.WidthRequest = 50; + this.btnP10.HeightRequest = 50; + this.btnP10.CanFocus = true; + this.btnP10.Name = "btnP10"; + this.btnP10.UseUnderline = true; + this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w162 = new global::Gtk.Image(); + this.btnP10.Image = w162; + this.tbUI.Add(this.btnP10); + global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); + w163.TopAttach = ((uint)(2)); + w163.BottomAttach = ((uint)(3)); + w163.LeftAttach = ((uint)(12)); + w163.RightAttach = ((uint)(13)); + w163.XOptions = ((global::Gtk.AttachOptions)(4)); + w163.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP11 = new global::Gtk.Button(); + this.btnP11.WidthRequest = 50; + this.btnP11.HeightRequest = 50; + this.btnP11.CanFocus = true; + this.btnP11.Name = "btnP11"; + this.btnP11.UseUnderline = true; + this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w164 = new global::Gtk.Image(); + this.btnP11.Image = w164; + this.tbUI.Add(this.btnP11); + global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); + w165.TopAttach = ((uint)(2)); + w165.BottomAttach = ((uint)(3)); + w165.LeftAttach = ((uint)(13)); + w165.RightAttach = ((uint)(14)); + w165.XOptions = ((global::Gtk.AttachOptions)(4)); + w165.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP12 = new global::Gtk.Button(); + this.btnP12.WidthRequest = 50; + this.btnP12.HeightRequest = 50; + this.btnP12.CanFocus = true; + this.btnP12.Name = "btnP12"; + this.btnP12.UseUnderline = true; + this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w166 = new global::Gtk.Image(); + this.btnP12.Image = w166; + this.tbUI.Add(this.btnP12); + global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); + w167.TopAttach = ((uint)(2)); + w167.BottomAttach = ((uint)(3)); + w167.LeftAttach = ((uint)(14)); + w167.RightAttach = ((uint)(15)); + w167.XOptions = ((global::Gtk.AttachOptions)(4)); + w167.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP13 = new global::Gtk.Button(); + this.btnP13.WidthRequest = 50; + this.btnP13.HeightRequest = 50; + this.btnP13.CanFocus = true; + this.btnP13.Name = "btnP13"; + this.btnP13.UseUnderline = true; + this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w168 = new global::Gtk.Image(); + this.btnP13.Image = w168; + this.tbUI.Add(this.btnP13); + global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); + w169.TopAttach = ((uint)(2)); + w169.BottomAttach = ((uint)(3)); + w169.LeftAttach = ((uint)(15)); + w169.RightAttach = ((uint)(16)); + w169.XOptions = ((global::Gtk.AttachOptions)(4)); + w169.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP14 = new global::Gtk.Button(); + this.btnP14.WidthRequest = 50; + this.btnP14.HeightRequest = 50; + this.btnP14.CanFocus = true; + this.btnP14.Name = "btnP14"; + this.btnP14.UseUnderline = true; + this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w170 = new global::Gtk.Image(); + this.btnP14.Image = w170; + this.tbUI.Add(this.btnP14); + global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); + w171.TopAttach = ((uint)(2)); + w171.BottomAttach = ((uint)(3)); + w171.LeftAttach = ((uint)(16)); + w171.RightAttach = ((uint)(17)); + w171.XOptions = ((global::Gtk.AttachOptions)(4)); + w171.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP15 = new global::Gtk.Button(); + this.btnP15.WidthRequest = 50; + this.btnP15.HeightRequest = 50; + this.btnP15.CanFocus = true; + this.btnP15.Name = "btnP15"; + this.btnP15.UseUnderline = true; + this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w172 = new global::Gtk.Image(); + this.btnP15.Image = w172; + this.tbUI.Add(this.btnP15); + global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); + w173.TopAttach = ((uint)(3)); + w173.BottomAttach = ((uint)(4)); + w173.LeftAttach = ((uint)(10)); + w173.RightAttach = ((uint)(11)); + w173.XOptions = ((global::Gtk.AttachOptions)(4)); + w173.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP16 = new global::Gtk.Button(); + this.btnP16.WidthRequest = 50; + this.btnP16.HeightRequest = 50; + this.btnP16.CanFocus = true; + this.btnP16.Name = "btnP16"; + this.btnP16.UseUnderline = true; + this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w174 = new global::Gtk.Image(); + this.btnP16.Image = w174; + this.tbUI.Add(this.btnP16); + global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); + w175.TopAttach = ((uint)(3)); + w175.BottomAttach = ((uint)(4)); + w175.LeftAttach = ((uint)(11)); + w175.RightAttach = ((uint)(12)); + w175.XOptions = ((global::Gtk.AttachOptions)(4)); + w175.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP17 = new global::Gtk.Button(); + this.btnP17.WidthRequest = 50; + this.btnP17.HeightRequest = 50; + this.btnP17.CanFocus = true; + this.btnP17.Name = "btnP17"; + this.btnP17.UseUnderline = true; + this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w176 = new global::Gtk.Image(); + this.btnP17.Image = w176; + this.tbUI.Add(this.btnP17); + global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); + w177.TopAttach = ((uint)(3)); + w177.BottomAttach = ((uint)(4)); + w177.LeftAttach = ((uint)(12)); + w177.RightAttach = ((uint)(13)); + w177.XOptions = ((global::Gtk.AttachOptions)(4)); + w177.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP18 = new global::Gtk.Button(); + this.btnP18.WidthRequest = 50; + this.btnP18.HeightRequest = 50; + this.btnP18.CanFocus = true; + this.btnP18.Name = "btnP18"; + this.btnP18.UseUnderline = true; + this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w178 = new global::Gtk.Image(); + this.btnP18.Image = w178; + this.tbUI.Add(this.btnP18); + global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); + w179.TopAttach = ((uint)(3)); + w179.BottomAttach = ((uint)(4)); + w179.LeftAttach = ((uint)(13)); + w179.RightAttach = ((uint)(14)); + w179.XOptions = ((global::Gtk.AttachOptions)(4)); + w179.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP19 = new global::Gtk.Button(); + this.btnP19.WidthRequest = 50; + this.btnP19.HeightRequest = 50; + this.btnP19.CanFocus = true; + this.btnP19.Name = "btnP19"; + this.btnP19.UseUnderline = true; + this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w180 = new global::Gtk.Image(); + this.btnP19.Image = w180; + this.tbUI.Add(this.btnP19); + global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); + w181.TopAttach = ((uint)(3)); + w181.BottomAttach = ((uint)(4)); + w181.LeftAttach = ((uint)(14)); + w181.RightAttach = ((uint)(15)); + w181.XOptions = ((global::Gtk.AttachOptions)(4)); + w181.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP2 = new global::Gtk.Button(); + this.btnP2.WidthRequest = 50; + this.btnP2.HeightRequest = 50; + this.btnP2.CanFocus = true; + this.btnP2.Name = "btnP2"; + this.btnP2.UseUnderline = true; + this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w182 = new global::Gtk.Image(); + this.btnP2.Image = w182; + this.tbUI.Add(this.btnP2); + global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); + w183.TopAttach = ((uint)(1)); + w183.BottomAttach = ((uint)(2)); + w183.LeftAttach = ((uint)(11)); + w183.RightAttach = ((uint)(12)); + w183.XOptions = ((global::Gtk.AttachOptions)(4)); + w183.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP20 = new global::Gtk.Button(); + this.btnP20.WidthRequest = 50; + this.btnP20.HeightRequest = 50; + this.btnP20.CanFocus = true; + this.btnP20.Name = "btnP20"; + this.btnP20.UseUnderline = true; + this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w184 = new global::Gtk.Image(); + this.btnP20.Image = w184; + this.tbUI.Add(this.btnP20); + global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); + w185.TopAttach = ((uint)(3)); + w185.BottomAttach = ((uint)(4)); + w185.LeftAttach = ((uint)(15)); + w185.RightAttach = ((uint)(16)); + w185.XOptions = ((global::Gtk.AttachOptions)(4)); + w185.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP21 = new global::Gtk.Button(); + this.btnP21.WidthRequest = 50; + this.btnP21.HeightRequest = 50; + this.btnP21.CanFocus = true; + this.btnP21.Name = "btnP21"; + this.btnP21.UseUnderline = true; + this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w186 = new global::Gtk.Image(); + this.btnP21.Image = w186; + this.tbUI.Add(this.btnP21); + global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); + w187.TopAttach = ((uint)(3)); + w187.BottomAttach = ((uint)(4)); + w187.LeftAttach = ((uint)(16)); + w187.RightAttach = ((uint)(17)); + w187.XOptions = ((global::Gtk.AttachOptions)(4)); + w187.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP22 = new global::Gtk.Button(); + this.btnP22.WidthRequest = 50; + this.btnP22.HeightRequest = 50; + this.btnP22.CanFocus = true; + this.btnP22.Name = "btnP22"; + this.btnP22.UseUnderline = true; + this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w188 = new global::Gtk.Image(); + this.btnP22.Image = w188; + this.tbUI.Add(this.btnP22); + global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); + w189.TopAttach = ((uint)(4)); + w189.BottomAttach = ((uint)(5)); + w189.LeftAttach = ((uint)(10)); + w189.RightAttach = ((uint)(11)); + w189.XOptions = ((global::Gtk.AttachOptions)(4)); + w189.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP23 = new global::Gtk.Button(); + this.btnP23.WidthRequest = 50; + this.btnP23.HeightRequest = 50; + this.btnP23.CanFocus = true; + this.btnP23.Name = "btnP23"; + this.btnP23.UseUnderline = true; + this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w190 = new global::Gtk.Image(); + this.btnP23.Image = w190; + this.tbUI.Add(this.btnP23); + global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); + w191.TopAttach = ((uint)(4)); + w191.BottomAttach = ((uint)(5)); + w191.LeftAttach = ((uint)(11)); + w191.RightAttach = ((uint)(12)); + w191.XOptions = ((global::Gtk.AttachOptions)(4)); + w191.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP24 = new global::Gtk.Button(); + this.btnP24.WidthRequest = 50; + this.btnP24.HeightRequest = 50; + this.btnP24.CanFocus = true; + this.btnP24.Name = "btnP24"; + this.btnP24.UseUnderline = true; + this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w192 = new global::Gtk.Image(); + this.btnP24.Image = w192; + this.tbUI.Add(this.btnP24); + global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); + w193.TopAttach = ((uint)(4)); + w193.BottomAttach = ((uint)(5)); + w193.LeftAttach = ((uint)(12)); + w193.RightAttach = ((uint)(13)); + w193.XOptions = ((global::Gtk.AttachOptions)(4)); + w193.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP25 = new global::Gtk.Button(); + this.btnP25.WidthRequest = 50; + this.btnP25.HeightRequest = 50; + this.btnP25.CanFocus = true; + this.btnP25.Name = "btnP25"; + this.btnP25.UseUnderline = true; + this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w194 = new global::Gtk.Image(); + this.btnP25.Image = w194; + this.tbUI.Add(this.btnP25); + global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); + w195.TopAttach = ((uint)(4)); + w195.BottomAttach = ((uint)(5)); + w195.LeftAttach = ((uint)(13)); + w195.RightAttach = ((uint)(14)); + w195.XOptions = ((global::Gtk.AttachOptions)(4)); + w195.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP26 = new global::Gtk.Button(); + this.btnP26.WidthRequest = 50; + this.btnP26.HeightRequest = 50; + this.btnP26.CanFocus = true; + this.btnP26.Name = "btnP26"; + this.btnP26.UseUnderline = true; + this.btnP26.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w196 = new global::Gtk.Image(); + this.btnP26.Image = w196; + this.tbUI.Add(this.btnP26); + global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP26])); + w197.TopAttach = ((uint)(4)); + w197.BottomAttach = ((uint)(5)); + w197.LeftAttach = ((uint)(14)); + w197.RightAttach = ((uint)(15)); + w197.XOptions = ((global::Gtk.AttachOptions)(4)); + w197.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP27 = new global::Gtk.Button(); + this.btnP27.WidthRequest = 50; + this.btnP27.HeightRequest = 50; + this.btnP27.CanFocus = true; + this.btnP27.Name = "btnP27"; + this.btnP27.UseUnderline = true; + this.btnP27.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w198 = new global::Gtk.Image(); + this.btnP27.Image = w198; + this.tbUI.Add(this.btnP27); + global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP27])); + w199.TopAttach = ((uint)(4)); + w199.BottomAttach = ((uint)(5)); + w199.LeftAttach = ((uint)(15)); + w199.RightAttach = ((uint)(16)); + w199.XOptions = ((global::Gtk.AttachOptions)(4)); + w199.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP28 = new global::Gtk.Button(); + this.btnP28.WidthRequest = 50; + this.btnP28.HeightRequest = 50; + this.btnP28.CanFocus = true; + this.btnP28.Name = "btnP28"; + this.btnP28.UseUnderline = true; + this.btnP28.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w200 = new global::Gtk.Image(); + this.btnP28.Image = w200; + this.tbUI.Add(this.btnP28); + global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP28])); + w201.TopAttach = ((uint)(4)); + w201.BottomAttach = ((uint)(5)); + w201.LeftAttach = ((uint)(16)); + w201.RightAttach = ((uint)(17)); + w201.XOptions = ((global::Gtk.AttachOptions)(4)); + w201.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP29 = new global::Gtk.Button(); + this.btnP29.WidthRequest = 50; + this.btnP29.HeightRequest = 50; + this.btnP29.CanFocus = true; + this.btnP29.Name = "btnP29"; + this.btnP29.UseUnderline = true; + this.btnP29.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w202 = new global::Gtk.Image(); + this.btnP29.Image = w202; + this.tbUI.Add(this.btnP29); + global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP29])); + w203.TopAttach = ((uint)(5)); + w203.BottomAttach = ((uint)(6)); + w203.LeftAttach = ((uint)(10)); + w203.RightAttach = ((uint)(11)); + w203.XOptions = ((global::Gtk.AttachOptions)(4)); + w203.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP3 = new global::Gtk.Button(); + this.btnP3.WidthRequest = 50; + this.btnP3.HeightRequest = 50; + this.btnP3.CanFocus = true; + this.btnP3.Name = "btnP3"; + this.btnP3.UseUnderline = true; + this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w204 = new global::Gtk.Image(); + this.btnP3.Image = w204; + this.tbUI.Add(this.btnP3); + global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); + w205.TopAttach = ((uint)(1)); + w205.BottomAttach = ((uint)(2)); + w205.LeftAttach = ((uint)(12)); + w205.RightAttach = ((uint)(13)); + w205.XOptions = ((global::Gtk.AttachOptions)(4)); + w205.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP30 = new global::Gtk.Button(); + this.btnP30.WidthRequest = 50; + this.btnP30.HeightRequest = 50; + this.btnP30.CanFocus = true; + this.btnP30.Name = "btnP30"; + this.btnP30.UseUnderline = true; + this.btnP30.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w206 = new global::Gtk.Image(); + this.btnP30.Image = w206; + this.tbUI.Add(this.btnP30); + global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP30])); + w207.TopAttach = ((uint)(5)); + w207.BottomAttach = ((uint)(6)); + w207.LeftAttach = ((uint)(11)); + w207.RightAttach = ((uint)(12)); + w207.XOptions = ((global::Gtk.AttachOptions)(4)); + w207.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP31 = new global::Gtk.Button(); + this.btnP31.WidthRequest = 50; + this.btnP31.HeightRequest = 50; + this.btnP31.CanFocus = true; + this.btnP31.Name = "btnP31"; + this.btnP31.UseUnderline = true; + this.btnP31.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w208 = new global::Gtk.Image(); + this.btnP31.Image = w208; + this.tbUI.Add(this.btnP31); + global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP31])); + w209.TopAttach = ((uint)(5)); + w209.BottomAttach = ((uint)(6)); + w209.LeftAttach = ((uint)(12)); + w209.RightAttach = ((uint)(13)); + w209.XOptions = ((global::Gtk.AttachOptions)(4)); + w209.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP32 = new global::Gtk.Button(); + this.btnP32.WidthRequest = 50; + this.btnP32.HeightRequest = 50; + this.btnP32.CanFocus = true; + this.btnP32.Name = "btnP32"; + this.btnP32.UseUnderline = true; + this.btnP32.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w210 = new global::Gtk.Image(); + this.btnP32.Image = w210; + this.tbUI.Add(this.btnP32); + global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP32])); + w211.TopAttach = ((uint)(5)); + w211.BottomAttach = ((uint)(6)); + w211.LeftAttach = ((uint)(13)); + w211.RightAttach = ((uint)(14)); + w211.XOptions = ((global::Gtk.AttachOptions)(4)); + w211.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP33 = new global::Gtk.Button(); + this.btnP33.WidthRequest = 50; + this.btnP33.HeightRequest = 50; + this.btnP33.CanFocus = true; + this.btnP33.Name = "btnP33"; + this.btnP33.UseUnderline = true; + this.btnP33.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w212 = new global::Gtk.Image(); + this.btnP33.Image = w212; + this.tbUI.Add(this.btnP33); + global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP33])); + w213.TopAttach = ((uint)(5)); + w213.BottomAttach = ((uint)(6)); + w213.LeftAttach = ((uint)(14)); + w213.RightAttach = ((uint)(15)); + w213.XOptions = ((global::Gtk.AttachOptions)(4)); + w213.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP34 = new global::Gtk.Button(); + this.btnP34.WidthRequest = 50; + this.btnP34.HeightRequest = 50; + this.btnP34.CanFocus = true; + this.btnP34.Name = "btnP34"; + this.btnP34.UseUnderline = true; + this.btnP34.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w214 = new global::Gtk.Image(); + this.btnP34.Image = w214; + this.tbUI.Add(this.btnP34); + global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP34])); + w215.TopAttach = ((uint)(5)); + w215.BottomAttach = ((uint)(6)); + w215.LeftAttach = ((uint)(15)); + w215.RightAttach = ((uint)(16)); + w215.XOptions = ((global::Gtk.AttachOptions)(4)); + w215.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP35 = new global::Gtk.Button(); + this.btnP35.WidthRequest = 50; + this.btnP35.HeightRequest = 50; + this.btnP35.CanFocus = true; + this.btnP35.Name = "btnP35"; + this.btnP35.UseUnderline = true; + this.btnP35.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w216 = new global::Gtk.Image(); + this.btnP35.Image = w216; + this.tbUI.Add(this.btnP35); + global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP35])); + w217.TopAttach = ((uint)(5)); + w217.BottomAttach = ((uint)(6)); + w217.LeftAttach = ((uint)(16)); + w217.RightAttach = ((uint)(17)); + w217.XOptions = ((global::Gtk.AttachOptions)(4)); + w217.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP36 = new global::Gtk.Button(); + this.btnP36.WidthRequest = 50; + this.btnP36.HeightRequest = 50; + this.btnP36.CanFocus = true; + this.btnP36.Name = "btnP36"; + this.btnP36.UseUnderline = true; + this.btnP36.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w218 = new global::Gtk.Image(); + this.btnP36.Image = w218; + this.tbUI.Add(this.btnP36); + global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP36])); + w219.TopAttach = ((uint)(6)); + w219.BottomAttach = ((uint)(7)); + w219.LeftAttach = ((uint)(10)); + w219.RightAttach = ((uint)(11)); + w219.XOptions = ((global::Gtk.AttachOptions)(4)); + w219.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP37 = new global::Gtk.Button(); + this.btnP37.WidthRequest = 50; + this.btnP37.HeightRequest = 50; + this.btnP37.CanFocus = true; + this.btnP37.Name = "btnP37"; + this.btnP37.UseUnderline = true; + this.btnP37.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w220 = new global::Gtk.Image(); + this.btnP37.Image = w220; + this.tbUI.Add(this.btnP37); + global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP37])); + w221.TopAttach = ((uint)(6)); + w221.BottomAttach = ((uint)(7)); + w221.LeftAttach = ((uint)(11)); + w221.RightAttach = ((uint)(12)); + w221.XOptions = ((global::Gtk.AttachOptions)(4)); + w221.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP38 = new global::Gtk.Button(); + this.btnP38.WidthRequest = 50; + this.btnP38.HeightRequest = 50; + this.btnP38.CanFocus = true; + this.btnP38.Name = "btnP38"; + this.btnP38.UseUnderline = true; + this.btnP38.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w222 = new global::Gtk.Image(); + this.btnP38.Image = w222; + this.tbUI.Add(this.btnP38); + global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP38])); + w223.TopAttach = ((uint)(6)); + w223.BottomAttach = ((uint)(7)); + w223.LeftAttach = ((uint)(12)); + w223.RightAttach = ((uint)(13)); + w223.XOptions = ((global::Gtk.AttachOptions)(4)); + w223.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP39 = new global::Gtk.Button(); + this.btnP39.WidthRequest = 50; + this.btnP39.HeightRequest = 50; + this.btnP39.CanFocus = true; + this.btnP39.Name = "btnP39"; + this.btnP39.UseUnderline = true; + this.btnP39.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w224 = new global::Gtk.Image(); + this.btnP39.Image = w224; + this.tbUI.Add(this.btnP39); + global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP39])); + w225.TopAttach = ((uint)(6)); + w225.BottomAttach = ((uint)(7)); + w225.LeftAttach = ((uint)(13)); + w225.RightAttach = ((uint)(14)); + w225.XOptions = ((global::Gtk.AttachOptions)(4)); + w225.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP4 = new global::Gtk.Button(); + this.btnP4.WidthRequest = 50; + this.btnP4.HeightRequest = 50; + this.btnP4.CanFocus = true; + this.btnP4.Name = "btnP4"; + this.btnP4.UseUnderline = true; + this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w226 = new global::Gtk.Image(); + this.btnP4.Image = w226; + this.tbUI.Add(this.btnP4); + global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); + w227.TopAttach = ((uint)(1)); + w227.BottomAttach = ((uint)(2)); + w227.LeftAttach = ((uint)(13)); + w227.RightAttach = ((uint)(14)); + w227.XOptions = ((global::Gtk.AttachOptions)(4)); + w227.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP40 = new global::Gtk.Button(); + this.btnP40.WidthRequest = 50; + this.btnP40.HeightRequest = 50; + this.btnP40.CanFocus = true; + this.btnP40.Name = "btnP40"; + this.btnP40.UseUnderline = true; + this.btnP40.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w228 = new global::Gtk.Image(); + this.btnP40.Image = w228; + this.tbUI.Add(this.btnP40); + global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP40])); + w229.TopAttach = ((uint)(6)); + w229.BottomAttach = ((uint)(7)); + w229.LeftAttach = ((uint)(14)); + w229.RightAttach = ((uint)(15)); + w229.XOptions = ((global::Gtk.AttachOptions)(4)); + w229.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP41 = new global::Gtk.Button(); + this.btnP41.WidthRequest = 50; + this.btnP41.HeightRequest = 50; + this.btnP41.CanFocus = true; + this.btnP41.Name = "btnP41"; + this.btnP41.UseUnderline = true; + this.btnP41.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w230 = new global::Gtk.Image(); + this.btnP41.Image = w230; + this.tbUI.Add(this.btnP41); + global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP41])); + w231.TopAttach = ((uint)(6)); + w231.BottomAttach = ((uint)(7)); + w231.LeftAttach = ((uint)(15)); + w231.RightAttach = ((uint)(16)); + w231.XOptions = ((global::Gtk.AttachOptions)(4)); + w231.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP42 = new global::Gtk.Button(); + this.btnP42.WidthRequest = 50; + this.btnP42.HeightRequest = 50; + this.btnP42.CanFocus = true; + this.btnP42.Name = "btnP42"; + this.btnP42.UseUnderline = true; + this.btnP42.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w232 = new global::Gtk.Image(); + this.btnP42.Image = w232; + this.tbUI.Add(this.btnP42); + global::Gtk.Table.TableChild w233 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP42])); + w233.TopAttach = ((uint)(6)); + w233.BottomAttach = ((uint)(7)); + w233.LeftAttach = ((uint)(16)); + w233.RightAttach = ((uint)(17)); + w233.XOptions = ((global::Gtk.AttachOptions)(4)); + w233.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP43 = new global::Gtk.Button(); + this.btnP43.WidthRequest = 50; + this.btnP43.HeightRequest = 50; + this.btnP43.CanFocus = true; + this.btnP43.Name = "btnP43"; + this.btnP43.UseUnderline = true; + this.btnP43.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w234 = new global::Gtk.Image(); + this.btnP43.Image = w234; + this.tbUI.Add(this.btnP43); + global::Gtk.Table.TableChild w235 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP43])); + w235.TopAttach = ((uint)(7)); + w235.BottomAttach = ((uint)(8)); + w235.LeftAttach = ((uint)(10)); + w235.RightAttach = ((uint)(11)); + w235.XOptions = ((global::Gtk.AttachOptions)(4)); + w235.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP44 = new global::Gtk.Button(); + this.btnP44.WidthRequest = 50; + this.btnP44.HeightRequest = 50; + this.btnP44.CanFocus = true; + this.btnP44.Name = "btnP44"; + this.btnP44.UseUnderline = true; + this.btnP44.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w236 = new global::Gtk.Image(); + this.btnP44.Image = w236; + this.tbUI.Add(this.btnP44); + global::Gtk.Table.TableChild w237 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP44])); + w237.TopAttach = ((uint)(7)); + w237.BottomAttach = ((uint)(8)); + w237.LeftAttach = ((uint)(11)); + w237.RightAttach = ((uint)(12)); + w237.XOptions = ((global::Gtk.AttachOptions)(4)); + w237.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP45 = new global::Gtk.Button(); + this.btnP45.WidthRequest = 50; + this.btnP45.HeightRequest = 50; + this.btnP45.CanFocus = true; + this.btnP45.Name = "btnP45"; + this.btnP45.UseUnderline = true; + this.btnP45.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w238 = new global::Gtk.Image(); + this.btnP45.Image = w238; + this.tbUI.Add(this.btnP45); + global::Gtk.Table.TableChild w239 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP45])); + w239.TopAttach = ((uint)(7)); + w239.BottomAttach = ((uint)(8)); + w239.LeftAttach = ((uint)(12)); + w239.RightAttach = ((uint)(13)); + w239.XOptions = ((global::Gtk.AttachOptions)(4)); + w239.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP46 = new global::Gtk.Button(); + this.btnP46.WidthRequest = 50; + this.btnP46.HeightRequest = 50; + this.btnP46.CanFocus = true; + this.btnP46.Name = "btnP46"; + this.btnP46.UseUnderline = true; + this.btnP46.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w240 = new global::Gtk.Image(); + this.btnP46.Image = w240; + this.tbUI.Add(this.btnP46); + global::Gtk.Table.TableChild w241 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP46])); + w241.TopAttach = ((uint)(7)); + w241.BottomAttach = ((uint)(8)); + w241.LeftAttach = ((uint)(13)); + w241.RightAttach = ((uint)(14)); + w241.XOptions = ((global::Gtk.AttachOptions)(4)); + w241.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP47 = new global::Gtk.Button(); + this.btnP47.WidthRequest = 50; + this.btnP47.HeightRequest = 50; + this.btnP47.CanFocus = true; + this.btnP47.Name = "btnP47"; + this.btnP47.UseUnderline = true; + this.btnP47.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w242 = new global::Gtk.Image(); + this.btnP47.Image = w242; + this.tbUI.Add(this.btnP47); + global::Gtk.Table.TableChild w243 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP47])); + w243.TopAttach = ((uint)(7)); + w243.BottomAttach = ((uint)(8)); + w243.LeftAttach = ((uint)(14)); + w243.RightAttach = ((uint)(15)); + w243.XOptions = ((global::Gtk.AttachOptions)(4)); + w243.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP48 = new global::Gtk.Button(); + this.btnP48.WidthRequest = 50; + this.btnP48.HeightRequest = 50; + this.btnP48.CanFocus = true; + this.btnP48.Name = "btnP48"; + this.btnP48.UseUnderline = true; + this.btnP48.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w244 = new global::Gtk.Image(); + this.btnP48.Image = w244; + this.tbUI.Add(this.btnP48); + global::Gtk.Table.TableChild w245 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP48])); + w245.TopAttach = ((uint)(7)); + w245.BottomAttach = ((uint)(8)); + w245.LeftAttach = ((uint)(15)); + w245.RightAttach = ((uint)(16)); + w245.XOptions = ((global::Gtk.AttachOptions)(4)); + w245.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP49 = new global::Gtk.Button(); + this.btnP49.WidthRequest = 50; + this.btnP49.HeightRequest = 50; + this.btnP49.CanFocus = true; + this.btnP49.Name = "btnP49"; + this.btnP49.UseUnderline = true; + this.btnP49.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w246 = new global::Gtk.Image(); + this.btnP49.Image = w246; + this.tbUI.Add(this.btnP49); + global::Gtk.Table.TableChild w247 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP49])); + w247.TopAttach = ((uint)(7)); + w247.BottomAttach = ((uint)(8)); + w247.LeftAttach = ((uint)(16)); + w247.RightAttach = ((uint)(17)); + w247.XOptions = ((global::Gtk.AttachOptions)(4)); + w247.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP5 = new global::Gtk.Button(); + this.btnP5.WidthRequest = 50; + this.btnP5.HeightRequest = 50; + this.btnP5.CanFocus = true; + this.btnP5.Name = "btnP5"; + this.btnP5.UseUnderline = true; + this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w248 = new global::Gtk.Image(); + this.btnP5.Image = w248; + this.tbUI.Add(this.btnP5); + global::Gtk.Table.TableChild w249 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); + w249.TopAttach = ((uint)(1)); + w249.BottomAttach = ((uint)(2)); + w249.LeftAttach = ((uint)(14)); + w249.RightAttach = ((uint)(15)); + w249.XOptions = ((global::Gtk.AttachOptions)(4)); + w249.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP6 = new global::Gtk.Button(); + this.btnP6.WidthRequest = 50; + this.btnP6.HeightRequest = 50; + this.btnP6.CanFocus = true; + this.btnP6.Name = "btnP6"; + this.btnP6.UseUnderline = true; + this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w250 = new global::Gtk.Image(); + this.btnP6.Image = w250; + this.tbUI.Add(this.btnP6); + global::Gtk.Table.TableChild w251 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); + w251.TopAttach = ((uint)(1)); + w251.BottomAttach = ((uint)(2)); + w251.LeftAttach = ((uint)(15)); + w251.RightAttach = ((uint)(16)); + w251.XOptions = ((global::Gtk.AttachOptions)(4)); + w251.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP7 = new global::Gtk.Button(); + this.btnP7.WidthRequest = 50; + this.btnP7.HeightRequest = 50; + this.btnP7.CanFocus = true; + this.btnP7.Name = "btnP7"; + this.btnP7.UseUnderline = true; + this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w252 = new global::Gtk.Image(); + this.btnP7.Image = w252; + this.tbUI.Add(this.btnP7); + global::Gtk.Table.TableChild w253 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); + w253.TopAttach = ((uint)(1)); + w253.BottomAttach = ((uint)(2)); + w253.LeftAttach = ((uint)(16)); + w253.RightAttach = ((uint)(17)); + w253.XOptions = ((global::Gtk.AttachOptions)(4)); + w253.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP8 = new global::Gtk.Button(); + this.btnP8.WidthRequest = 50; + this.btnP8.HeightRequest = 50; + this.btnP8.CanFocus = true; + this.btnP8.Name = "btnP8"; + this.btnP8.UseUnderline = true; + this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w254 = new global::Gtk.Image(); + this.btnP8.Image = w254; + this.tbUI.Add(this.btnP8); + global::Gtk.Table.TableChild w255 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); + w255.TopAttach = ((uint)(2)); + w255.BottomAttach = ((uint)(3)); + w255.LeftAttach = ((uint)(10)); + w255.RightAttach = ((uint)(11)); + w255.XOptions = ((global::Gtk.AttachOptions)(4)); + w255.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP9 = new global::Gtk.Button(); + this.btnP9.WidthRequest = 50; + this.btnP9.HeightRequest = 50; + this.btnP9.CanFocus = true; + this.btnP9.Name = "btnP9"; + this.btnP9.UseUnderline = true; + this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w256 = new global::Gtk.Image(); + this.btnP9.Image = w256; + this.tbUI.Add(this.btnP9); + global::Gtk.Table.TableChild w257 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); + w257.TopAttach = ((uint)(2)); + w257.BottomAttach = ((uint)(3)); + w257.LeftAttach = ((uint)(11)); + w257.RightAttach = ((uint)(12)); + w257.XOptions = ((global::Gtk.AttachOptions)(4)); + w257.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnPause = new global::Gtk.Button(); + this.btnPause.WidthRequest = 50; + this.btnPause.HeightRequest = 50; + this.btnPause.CanFocus = true; + this.btnPause.Name = "btnPause"; + this.btnPause.UseUnderline = true; + this.btnPause.Label = "Pause"; + this.tbUI.Add(this.btnPause); + global::Gtk.Table.TableChild w258 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); + w258.TopAttach = ((uint)(13)); + w258.BottomAttach = ((uint)(14)); + w258.LeftAttach = ((uint)(17)); + w258.RightAttach = ((uint)(18)); + w258.XOptions = ((global::Gtk.AttachOptions)(4)); + w258.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG1 = new global::Gtk.Image(); + this.imgG1.WidthRequest = 50; + this.imgG1.HeightRequest = 50; + this.imgG1.Name = "imgG1"; + this.tbUI.Add(this.imgG1); + global::Gtk.Table.TableChild w259 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); + w259.TopAttach = ((uint)(2)); + w259.BottomAttach = ((uint)(3)); + w259.LeftAttach = ((uint)(1)); + w259.RightAttach = ((uint)(2)); + w259.XOptions = ((global::Gtk.AttachOptions)(4)); + w259.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG10 = new global::Gtk.Image(); + this.imgG10.WidthRequest = 50; + this.imgG10.HeightRequest = 50; + this.imgG10.Name = "imgG10"; + this.tbUI.Add(this.imgG10); + global::Gtk.Table.TableChild w260 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); + w260.TopAttach = ((uint)(3)); + w260.BottomAttach = ((uint)(4)); + w260.LeftAttach = ((uint)(3)); + w260.RightAttach = ((uint)(4)); + w260.XOptions = ((global::Gtk.AttachOptions)(4)); + w260.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG11 = new global::Gtk.Image(); + this.imgG11.WidthRequest = 50; + this.imgG11.HeightRequest = 50; + this.imgG11.Name = "imgG11"; + this.tbUI.Add(this.imgG11); + global::Gtk.Table.TableChild w261 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); + w261.TopAttach = ((uint)(3)); + w261.BottomAttach = ((uint)(4)); + w261.LeftAttach = ((uint)(4)); + w261.RightAttach = ((uint)(5)); + w261.XOptions = ((global::Gtk.AttachOptions)(4)); + w261.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG12 = new global::Gtk.Image(); + this.imgG12.WidthRequest = 50; + this.imgG12.HeightRequest = 50; + this.imgG12.Name = "imgG12"; + this.tbUI.Add(this.imgG12); + global::Gtk.Table.TableChild w262 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); + w262.TopAttach = ((uint)(3)); + w262.BottomAttach = ((uint)(4)); + w262.LeftAttach = ((uint)(5)); + w262.RightAttach = ((uint)(6)); + w262.XOptions = ((global::Gtk.AttachOptions)(4)); + w262.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG13 = new global::Gtk.Image(); + this.imgG13.WidthRequest = 50; + this.imgG13.HeightRequest = 50; + this.imgG13.Name = "imgG13"; + this.tbUI.Add(this.imgG13); + global::Gtk.Table.TableChild w263 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); + w263.TopAttach = ((uint)(3)); + w263.BottomAttach = ((uint)(4)); + w263.LeftAttach = ((uint)(6)); + w263.RightAttach = ((uint)(7)); + w263.XOptions = ((global::Gtk.AttachOptions)(4)); + w263.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG14 = new global::Gtk.Image(); + this.imgG14.WidthRequest = 50; + this.imgG14.HeightRequest = 50; + this.imgG14.Name = "imgG14"; + this.tbUI.Add(this.imgG14); + global::Gtk.Table.TableChild w264 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); + w264.TopAttach = ((uint)(3)); + w264.BottomAttach = ((uint)(4)); + w264.LeftAttach = ((uint)(7)); + w264.RightAttach = ((uint)(8)); + w264.XOptions = ((global::Gtk.AttachOptions)(4)); + w264.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG15 = new global::Gtk.Image(); + this.imgG15.WidthRequest = 50; + this.imgG15.HeightRequest = 50; + this.imgG15.Name = "imgG15"; + this.tbUI.Add(this.imgG15); + global::Gtk.Table.TableChild w265 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + w265.TopAttach = ((uint)(4)); + w265.BottomAttach = ((uint)(5)); + w265.LeftAttach = ((uint)(1)); + w265.RightAttach = ((uint)(2)); + w265.XOptions = ((global::Gtk.AttachOptions)(4)); + w265.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG16 = new global::Gtk.Image(); + this.imgG16.WidthRequest = 50; + this.imgG16.HeightRequest = 50; + this.imgG16.Name = "imgG16"; + this.tbUI.Add(this.imgG16); + global::Gtk.Table.TableChild w266 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); + w266.TopAttach = ((uint)(4)); + w266.BottomAttach = ((uint)(5)); + w266.LeftAttach = ((uint)(2)); + w266.RightAttach = ((uint)(3)); + w266.XOptions = ((global::Gtk.AttachOptions)(4)); + w266.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG17 = new global::Gtk.Image(); + this.imgG17.WidthRequest = 50; + this.imgG17.HeightRequest = 50; + this.imgG17.Name = "imgG17"; + this.tbUI.Add(this.imgG17); + global::Gtk.Table.TableChild w267 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); + w267.TopAttach = ((uint)(4)); + w267.BottomAttach = ((uint)(5)); + w267.LeftAttach = ((uint)(3)); + w267.RightAttach = ((uint)(4)); + w267.XOptions = ((global::Gtk.AttachOptions)(4)); + w267.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG18 = new global::Gtk.Image(); + this.imgG18.WidthRequest = 50; + this.imgG18.HeightRequest = 50; + this.imgG18.Name = "imgG18"; + this.tbUI.Add(this.imgG18); + global::Gtk.Table.TableChild w268 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); + w268.TopAttach = ((uint)(4)); + w268.BottomAttach = ((uint)(5)); + w268.LeftAttach = ((uint)(4)); + w268.RightAttach = ((uint)(5)); + w268.XOptions = ((global::Gtk.AttachOptions)(4)); + w268.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG19 = new global::Gtk.Image(); + this.imgG19.WidthRequest = 50; + this.imgG19.HeightRequest = 50; + this.imgG19.Name = "imgG19"; + this.tbUI.Add(this.imgG19); + global::Gtk.Table.TableChild w269 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + w269.TopAttach = ((uint)(4)); + w269.BottomAttach = ((uint)(5)); + w269.LeftAttach = ((uint)(5)); + w269.RightAttach = ((uint)(6)); + w269.XOptions = ((global::Gtk.AttachOptions)(4)); + w269.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG2 = new global::Gtk.Image(); + this.imgG2.WidthRequest = 50; + this.imgG2.HeightRequest = 50; + this.imgG2.Name = "imgG2"; + this.tbUI.Add(this.imgG2); + global::Gtk.Table.TableChild w270 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); + w270.TopAttach = ((uint)(2)); + w270.BottomAttach = ((uint)(3)); + w270.LeftAttach = ((uint)(2)); + w270.RightAttach = ((uint)(3)); + w270.XOptions = ((global::Gtk.AttachOptions)(4)); + w270.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG20 = new global::Gtk.Image(); + this.imgG20.WidthRequest = 50; + this.imgG20.HeightRequest = 50; + this.imgG20.Name = "imgG20"; + this.tbUI.Add(this.imgG20); + global::Gtk.Table.TableChild w271 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); + w271.TopAttach = ((uint)(4)); + w271.BottomAttach = ((uint)(5)); + w271.LeftAttach = ((uint)(6)); + w271.RightAttach = ((uint)(7)); + w271.XOptions = ((global::Gtk.AttachOptions)(4)); + w271.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG21 = new global::Gtk.Image(); + this.imgG21.WidthRequest = 50; + this.imgG21.HeightRequest = 50; + this.imgG21.Name = "imgG21"; + this.tbUI.Add(this.imgG21); + global::Gtk.Table.TableChild w272 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); + w272.TopAttach = ((uint)(4)); + w272.BottomAttach = ((uint)(5)); + w272.LeftAttach = ((uint)(7)); + w272.RightAttach = ((uint)(8)); + w272.XOptions = ((global::Gtk.AttachOptions)(4)); + w272.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG22 = new global::Gtk.Image(); + this.imgG22.WidthRequest = 50; + this.imgG22.HeightRequest = 50; + this.imgG22.Name = "imgG22"; + this.tbUI.Add(this.imgG22); + global::Gtk.Table.TableChild w273 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); + w273.TopAttach = ((uint)(5)); + w273.BottomAttach = ((uint)(6)); + w273.LeftAttach = ((uint)(1)); + w273.RightAttach = ((uint)(2)); + w273.XOptions = ((global::Gtk.AttachOptions)(4)); + w273.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG23 = new global::Gtk.Image(); + this.imgG23.WidthRequest = 50; + this.imgG23.HeightRequest = 50; + this.imgG23.Name = "imgG23"; + this.tbUI.Add(this.imgG23); + global::Gtk.Table.TableChild w274 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); + w274.TopAttach = ((uint)(5)); + w274.BottomAttach = ((uint)(6)); + w274.LeftAttach = ((uint)(2)); + w274.RightAttach = ((uint)(3)); + w274.XOptions = ((global::Gtk.AttachOptions)(4)); + w274.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG24 = new global::Gtk.Image(); + this.imgG24.WidthRequest = 50; + this.imgG24.HeightRequest = 50; + this.imgG24.Name = "imgG24"; + this.tbUI.Add(this.imgG24); + global::Gtk.Table.TableChild w275 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); + w275.TopAttach = ((uint)(5)); + w275.BottomAttach = ((uint)(6)); + w275.LeftAttach = ((uint)(3)); + w275.RightAttach = ((uint)(4)); + w275.XOptions = ((global::Gtk.AttachOptions)(4)); + w275.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG25 = new global::Gtk.Image(); + this.imgG25.WidthRequest = 50; + this.imgG25.HeightRequest = 50; + this.imgG25.Name = "imgG25"; + this.tbUI.Add(this.imgG25); + global::Gtk.Table.TableChild w276 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + w276.TopAttach = ((uint)(5)); + w276.BottomAttach = ((uint)(6)); + w276.LeftAttach = ((uint)(4)); + w276.RightAttach = ((uint)(5)); + w276.XOptions = ((global::Gtk.AttachOptions)(4)); + w276.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG26 = new global::Gtk.Image(); + this.imgG26.WidthRequest = 50; + this.imgG26.HeightRequest = 50; + this.imgG26.Name = "imgG26"; + this.tbUI.Add(this.imgG26); + global::Gtk.Table.TableChild w277 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG26])); + w277.TopAttach = ((uint)(5)); + w277.BottomAttach = ((uint)(6)); + w277.LeftAttach = ((uint)(5)); + w277.RightAttach = ((uint)(6)); + w277.XOptions = ((global::Gtk.AttachOptions)(4)); + w277.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG27 = new global::Gtk.Image(); + this.imgG27.WidthRequest = 50; + this.imgG27.HeightRequest = 50; + this.imgG27.Name = "imgG27"; + this.tbUI.Add(this.imgG27); + global::Gtk.Table.TableChild w278 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG27])); + w278.TopAttach = ((uint)(5)); + w278.BottomAttach = ((uint)(6)); + w278.LeftAttach = ((uint)(6)); + w278.RightAttach = ((uint)(7)); + w278.XOptions = ((global::Gtk.AttachOptions)(4)); + w278.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG28 = new global::Gtk.Image(); + this.imgG28.WidthRequest = 50; + this.imgG28.HeightRequest = 50; + this.imgG28.Name = "imgG28"; + this.tbUI.Add(this.imgG28); + global::Gtk.Table.TableChild w279 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG28])); + w279.TopAttach = ((uint)(5)); + w279.BottomAttach = ((uint)(6)); + w279.LeftAttach = ((uint)(7)); + w279.RightAttach = ((uint)(8)); + w279.XOptions = ((global::Gtk.AttachOptions)(4)); + w279.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG29 = new global::Gtk.Image(); + this.imgG29.WidthRequest = 50; + this.imgG29.HeightRequest = 50; + this.imgG29.Name = "imgG29"; + this.tbUI.Add(this.imgG29); + global::Gtk.Table.TableChild w280 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG29])); + w280.TopAttach = ((uint)(6)); + w280.BottomAttach = ((uint)(7)); + w280.LeftAttach = ((uint)(1)); + w280.RightAttach = ((uint)(2)); + w280.XOptions = ((global::Gtk.AttachOptions)(4)); + w280.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG3 = new global::Gtk.Image(); + this.imgG3.WidthRequest = 50; + this.imgG3.HeightRequest = 50; + this.imgG3.Name = "imgG3"; + this.tbUI.Add(this.imgG3); + global::Gtk.Table.TableChild w281 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); + w281.TopAttach = ((uint)(2)); + w281.BottomAttach = ((uint)(3)); + w281.LeftAttach = ((uint)(3)); + w281.RightAttach = ((uint)(4)); + w281.XOptions = ((global::Gtk.AttachOptions)(4)); + w281.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG30 = new global::Gtk.Image(); + this.imgG30.WidthRequest = 50; + this.imgG30.HeightRequest = 50; + this.imgG30.Name = "imgG30"; + this.tbUI.Add(this.imgG30); + global::Gtk.Table.TableChild w282 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG30])); + w282.TopAttach = ((uint)(6)); + w282.BottomAttach = ((uint)(7)); + w282.LeftAttach = ((uint)(2)); + w282.RightAttach = ((uint)(3)); + w282.XOptions = ((global::Gtk.AttachOptions)(4)); + w282.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG31 = new global::Gtk.Image(); + this.imgG31.WidthRequest = 50; + this.imgG31.HeightRequest = 50; + this.imgG31.Name = "imgG31"; + this.tbUI.Add(this.imgG31); + global::Gtk.Table.TableChild w283 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG31])); + w283.TopAttach = ((uint)(6)); + w283.BottomAttach = ((uint)(7)); + w283.LeftAttach = ((uint)(3)); + w283.RightAttach = ((uint)(4)); + w283.XOptions = ((global::Gtk.AttachOptions)(4)); + w283.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG32 = new global::Gtk.Image(); + this.imgG32.WidthRequest = 50; + this.imgG32.HeightRequest = 50; + this.imgG32.Name = "imgG32"; + this.tbUI.Add(this.imgG32); + global::Gtk.Table.TableChild w284 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG32])); + w284.TopAttach = ((uint)(6)); + w284.BottomAttach = ((uint)(7)); + w284.LeftAttach = ((uint)(4)); + w284.RightAttach = ((uint)(5)); + w284.XOptions = ((global::Gtk.AttachOptions)(4)); + w284.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG33 = new global::Gtk.Image(); + this.imgG33.WidthRequest = 50; + this.imgG33.HeightRequest = 50; + this.imgG33.Name = "imgG33"; + this.tbUI.Add(this.imgG33); + global::Gtk.Table.TableChild w285 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG33])); + w285.TopAttach = ((uint)(6)); + w285.BottomAttach = ((uint)(7)); + w285.LeftAttach = ((uint)(5)); + w285.RightAttach = ((uint)(6)); + w285.XOptions = ((global::Gtk.AttachOptions)(4)); + w285.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG34 = new global::Gtk.Image(); + this.imgG34.WidthRequest = 50; + this.imgG34.HeightRequest = 50; + this.imgG34.Name = "imgG34"; + this.tbUI.Add(this.imgG34); + global::Gtk.Table.TableChild w286 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG34])); + w286.TopAttach = ((uint)(6)); + w286.BottomAttach = ((uint)(7)); + w286.LeftAttach = ((uint)(6)); + w286.RightAttach = ((uint)(7)); + w286.XOptions = ((global::Gtk.AttachOptions)(4)); + w286.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG35 = new global::Gtk.Image(); + this.imgG35.WidthRequest = 50; + this.imgG35.HeightRequest = 50; + this.imgG35.Name = "imgG35"; + this.tbUI.Add(this.imgG35); + global::Gtk.Table.TableChild w287 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG35])); + w287.TopAttach = ((uint)(6)); + w287.BottomAttach = ((uint)(7)); + w287.LeftAttach = ((uint)(7)); + w287.RightAttach = ((uint)(8)); + w287.XOptions = ((global::Gtk.AttachOptions)(4)); + w287.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG36 = new global::Gtk.Image(); + this.imgG36.WidthRequest = 50; + this.imgG36.HeightRequest = 50; + this.imgG36.Name = "imgG36"; + this.tbUI.Add(this.imgG36); + global::Gtk.Table.TableChild w288 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG36])); + w288.TopAttach = ((uint)(7)); + w288.BottomAttach = ((uint)(8)); + w288.LeftAttach = ((uint)(1)); + w288.RightAttach = ((uint)(2)); + w288.XOptions = ((global::Gtk.AttachOptions)(4)); + w288.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG37 = new global::Gtk.Image(); + this.imgG37.WidthRequest = 50; + this.imgG37.HeightRequest = 50; + this.imgG37.Name = "imgG37"; + this.tbUI.Add(this.imgG37); + global::Gtk.Table.TableChild w289 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG37])); + w289.TopAttach = ((uint)(7)); + w289.BottomAttach = ((uint)(8)); + w289.LeftAttach = ((uint)(2)); + w289.RightAttach = ((uint)(3)); + w289.XOptions = ((global::Gtk.AttachOptions)(4)); + w289.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG38 = new global::Gtk.Image(); + this.imgG38.WidthRequest = 50; + this.imgG38.HeightRequest = 50; + this.imgG38.Name = "imgG38"; + this.tbUI.Add(this.imgG38); + global::Gtk.Table.TableChild w290 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG38])); + w290.TopAttach = ((uint)(7)); + w290.BottomAttach = ((uint)(8)); + w290.LeftAttach = ((uint)(3)); + w290.RightAttach = ((uint)(4)); + w290.XOptions = ((global::Gtk.AttachOptions)(4)); + w290.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG39 = new global::Gtk.Image(); + this.imgG39.WidthRequest = 50; + this.imgG39.HeightRequest = 50; + this.imgG39.Name = "imgG39"; + this.tbUI.Add(this.imgG39); + global::Gtk.Table.TableChild w291 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG39])); + w291.TopAttach = ((uint)(7)); + w291.BottomAttach = ((uint)(8)); + w291.LeftAttach = ((uint)(4)); + w291.RightAttach = ((uint)(5)); + w291.XOptions = ((global::Gtk.AttachOptions)(4)); + w291.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG4 = new global::Gtk.Image(); + this.imgG4.WidthRequest = 50; + this.imgG4.HeightRequest = 50; + this.imgG4.Name = "imgG4"; + this.tbUI.Add(this.imgG4); + global::Gtk.Table.TableChild w292 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); + w292.TopAttach = ((uint)(2)); + w292.BottomAttach = ((uint)(3)); + w292.LeftAttach = ((uint)(4)); + w292.RightAttach = ((uint)(5)); + w292.XOptions = ((global::Gtk.AttachOptions)(4)); + w292.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG40 = new global::Gtk.Image(); + this.imgG40.WidthRequest = 50; + this.imgG40.HeightRequest = 50; + this.imgG40.Name = "imgG40"; + this.tbUI.Add(this.imgG40); + global::Gtk.Table.TableChild w293 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG40])); + w293.TopAttach = ((uint)(7)); + w293.BottomAttach = ((uint)(8)); + w293.LeftAttach = ((uint)(5)); + w293.RightAttach = ((uint)(6)); + w293.XOptions = ((global::Gtk.AttachOptions)(4)); + w293.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG41 = new global::Gtk.Image(); + this.imgG41.WidthRequest = 50; + this.imgG41.HeightRequest = 50; + this.imgG41.Name = "imgG41"; + this.tbUI.Add(this.imgG41); + global::Gtk.Table.TableChild w294 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG41])); + w294.TopAttach = ((uint)(7)); + w294.BottomAttach = ((uint)(8)); + w294.LeftAttach = ((uint)(6)); + w294.RightAttach = ((uint)(7)); + w294.XOptions = ((global::Gtk.AttachOptions)(4)); + w294.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG42 = new global::Gtk.Image(); + this.imgG42.WidthRequest = 50; + this.imgG42.HeightRequest = 50; + this.imgG42.Name = "imgG42"; + this.tbUI.Add(this.imgG42); + global::Gtk.Table.TableChild w295 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG42])); + w295.TopAttach = ((uint)(7)); + w295.BottomAttach = ((uint)(8)); + w295.LeftAttach = ((uint)(7)); + w295.RightAttach = ((uint)(8)); + w295.XOptions = ((global::Gtk.AttachOptions)(4)); + w295.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG43 = new global::Gtk.Image(); + this.imgG43.WidthRequest = 50; + this.imgG43.HeightRequest = 50; + this.imgG43.Name = "imgG43"; + this.tbUI.Add(this.imgG43); + global::Gtk.Table.TableChild w296 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG43])); + w296.TopAttach = ((uint)(8)); + w296.BottomAttach = ((uint)(9)); + w296.LeftAttach = ((uint)(1)); + w296.RightAttach = ((uint)(2)); + w296.XOptions = ((global::Gtk.AttachOptions)(4)); + w296.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG44 = new global::Gtk.Image(); + this.imgG44.WidthRequest = 50; + this.imgG44.HeightRequest = 50; + this.imgG44.Name = "imgG44"; + this.tbUI.Add(this.imgG44); + global::Gtk.Table.TableChild w297 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG44])); + w297.TopAttach = ((uint)(8)); + w297.BottomAttach = ((uint)(9)); + w297.LeftAttach = ((uint)(2)); + w297.RightAttach = ((uint)(3)); + w297.XOptions = ((global::Gtk.AttachOptions)(4)); + w297.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG45 = new global::Gtk.Image(); + this.imgG45.WidthRequest = 50; + this.imgG45.HeightRequest = 50; + this.imgG45.Name = "imgG45"; + this.tbUI.Add(this.imgG45); + global::Gtk.Table.TableChild w298 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG45])); + w298.TopAttach = ((uint)(8)); + w298.BottomAttach = ((uint)(9)); + w298.LeftAttach = ((uint)(3)); + w298.RightAttach = ((uint)(4)); + w298.XOptions = ((global::Gtk.AttachOptions)(4)); + w298.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG46 = new global::Gtk.Image(); + this.imgG46.WidthRequest = 50; + this.imgG46.HeightRequest = 50; + this.imgG46.Name = "imgG46"; + this.tbUI.Add(this.imgG46); + global::Gtk.Table.TableChild w299 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG46])); + w299.TopAttach = ((uint)(8)); + w299.BottomAttach = ((uint)(9)); + w299.LeftAttach = ((uint)(4)); + w299.RightAttach = ((uint)(5)); + w299.XOptions = ((global::Gtk.AttachOptions)(4)); + w299.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG47 = new global::Gtk.Image(); + this.imgG47.WidthRequest = 50; + this.imgG47.HeightRequest = 50; + this.imgG47.Name = "imgG47"; + this.tbUI.Add(this.imgG47); + global::Gtk.Table.TableChild w300 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG47])); + w300.TopAttach = ((uint)(8)); + w300.BottomAttach = ((uint)(9)); + w300.LeftAttach = ((uint)(5)); + w300.RightAttach = ((uint)(6)); + w300.XOptions = ((global::Gtk.AttachOptions)(4)); + w300.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG48 = new global::Gtk.Image(); + this.imgG48.WidthRequest = 50; + this.imgG48.HeightRequest = 50; + this.imgG48.Name = "imgG48"; + this.tbUI.Add(this.imgG48); + global::Gtk.Table.TableChild w301 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG48])); + w301.TopAttach = ((uint)(8)); + w301.BottomAttach = ((uint)(9)); + w301.LeftAttach = ((uint)(6)); + w301.RightAttach = ((uint)(7)); + w301.XOptions = ((global::Gtk.AttachOptions)(4)); + w301.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG49 = new global::Gtk.Image(); + this.imgG49.WidthRequest = 50; + this.imgG49.HeightRequest = 50; + this.imgG49.Name = "imgG49"; + this.tbUI.Add(this.imgG49); + global::Gtk.Table.TableChild w302 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG49])); + w302.TopAttach = ((uint)(8)); + w302.BottomAttach = ((uint)(9)); + w302.LeftAttach = ((uint)(7)); + w302.RightAttach = ((uint)(8)); + w302.XOptions = ((global::Gtk.AttachOptions)(4)); + w302.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG5 = new global::Gtk.Image(); + this.imgG5.WidthRequest = 50; + this.imgG5.HeightRequest = 50; + this.imgG5.Name = "imgG5"; + this.tbUI.Add(this.imgG5); + global::Gtk.Table.TableChild w303 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + w303.TopAttach = ((uint)(2)); + w303.BottomAttach = ((uint)(3)); + w303.LeftAttach = ((uint)(5)); + w303.RightAttach = ((uint)(6)); + w303.XOptions = ((global::Gtk.AttachOptions)(4)); + w303.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG6 = new global::Gtk.Image(); + this.imgG6.WidthRequest = 50; + this.imgG6.HeightRequest = 50; + this.imgG6.Name = "imgG6"; + this.tbUI.Add(this.imgG6); + global::Gtk.Table.TableChild w304 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); + w304.TopAttach = ((uint)(2)); + w304.BottomAttach = ((uint)(3)); + w304.LeftAttach = ((uint)(6)); + w304.RightAttach = ((uint)(7)); + w304.XOptions = ((global::Gtk.AttachOptions)(4)); + w304.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG7 = new global::Gtk.Image(); + this.imgG7.WidthRequest = 50; + this.imgG7.HeightRequest = 50; + this.imgG7.Name = "imgG7"; + this.tbUI.Add(this.imgG7); + global::Gtk.Table.TableChild w305 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); + w305.TopAttach = ((uint)(2)); + w305.BottomAttach = ((uint)(3)); + w305.LeftAttach = ((uint)(7)); + w305.RightAttach = ((uint)(8)); + w305.XOptions = ((global::Gtk.AttachOptions)(4)); + w305.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG8 = new global::Gtk.Image(); + this.imgG8.WidthRequest = 50; + this.imgG8.HeightRequest = 50; + this.imgG8.Name = "imgG8"; + this.tbUI.Add(this.imgG8); + global::Gtk.Table.TableChild w306 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); + w306.TopAttach = ((uint)(3)); + w306.BottomAttach = ((uint)(4)); + w306.LeftAttach = ((uint)(1)); + w306.RightAttach = ((uint)(2)); + w306.XOptions = ((global::Gtk.AttachOptions)(4)); + w306.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG9 = new global::Gtk.Image(); + this.imgG9.WidthRequest = 50; + this.imgG9.HeightRequest = 50; + this.imgG9.Name = "imgG9"; + this.tbUI.Add(this.imgG9); + global::Gtk.Table.TableChild w307 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + w307.TopAttach = ((uint)(3)); + w307.BottomAttach = ((uint)(4)); + w307.LeftAttach = ((uint)(2)); + w307.RightAttach = ((uint)(3)); + w307.XOptions = ((global::Gtk.AttachOptions)(4)); + w307.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI1 = new global::Gtk.Image(); + this.imgI1.WidthRequest = 50; + this.imgI1.HeightRequest = 50; + this.imgI1.Name = "imgI1"; + this.tbUI.Add(this.imgI1); + global::Gtk.Table.TableChild w308 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w308.TopAttach = ((uint)(12)); + w308.BottomAttach = ((uint)(13)); + w308.LeftAttach = ((uint)(1)); + w308.RightAttach = ((uint)(2)); + w308.XOptions = ((global::Gtk.AttachOptions)(4)); + w308.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI10 = new global::Gtk.Image(); + this.imgI10.WidthRequest = 50; + this.imgI10.HeightRequest = 50; + this.imgI10.Name = "imgI10"; + this.tbUI.Add(this.imgI10); + global::Gtk.Table.TableChild w309 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); + w309.TopAttach = ((uint)(13)); + w309.BottomAttach = ((uint)(14)); + w309.LeftAttach = ((uint)(3)); + w309.RightAttach = ((uint)(4)); + w309.XOptions = ((global::Gtk.AttachOptions)(4)); + w309.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI11 = new global::Gtk.Image(); + this.imgI11.WidthRequest = 50; + this.imgI11.HeightRequest = 50; + this.imgI11.Name = "imgI11"; + this.tbUI.Add(this.imgI11); + global::Gtk.Table.TableChild w310 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); + w310.TopAttach = ((uint)(13)); + w310.BottomAttach = ((uint)(14)); + w310.LeftAttach = ((uint)(4)); + w310.RightAttach = ((uint)(5)); + w310.XOptions = ((global::Gtk.AttachOptions)(4)); + w310.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI12 = new global::Gtk.Image(); + this.imgI12.WidthRequest = 50; + this.imgI12.HeightRequest = 50; + this.imgI12.Name = "imgI12"; + this.tbUI.Add(this.imgI12); + global::Gtk.Table.TableChild w311 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); + w311.TopAttach = ((uint)(13)); + w311.BottomAttach = ((uint)(14)); + w311.LeftAttach = ((uint)(5)); + w311.RightAttach = ((uint)(6)); + w311.XOptions = ((global::Gtk.AttachOptions)(4)); + w311.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI13 = new global::Gtk.Image(); + this.imgI13.WidthRequest = 50; + this.imgI13.HeightRequest = 50; + this.imgI13.Name = "imgI13"; + this.tbUI.Add(this.imgI13); + global::Gtk.Table.TableChild w312 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); + w312.TopAttach = ((uint)(13)); + w312.BottomAttach = ((uint)(14)); + w312.LeftAttach = ((uint)(6)); + w312.RightAttach = ((uint)(7)); + w312.XOptions = ((global::Gtk.AttachOptions)(4)); + w312.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI14 = new global::Gtk.Image(); + this.imgI14.WidthRequest = 50; + this.imgI14.HeightRequest = 50; + this.imgI14.Name = "imgI14"; + this.tbUI.Add(this.imgI14); + global::Gtk.Table.TableChild w313 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); + w313.TopAttach = ((uint)(13)); + w313.BottomAttach = ((uint)(14)); + w313.LeftAttach = ((uint)(7)); + w313.RightAttach = ((uint)(8)); + w313.XOptions = ((global::Gtk.AttachOptions)(4)); + w313.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI15 = new global::Gtk.Image(); + this.imgI15.WidthRequest = 50; + this.imgI15.HeightRequest = 50; + this.imgI15.Name = "imgI15"; + this.tbUI.Add(this.imgI15); + global::Gtk.Table.TableChild w314 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); + w314.TopAttach = ((uint)(14)); + w314.BottomAttach = ((uint)(15)); + w314.LeftAttach = ((uint)(1)); + w314.RightAttach = ((uint)(2)); + w314.XOptions = ((global::Gtk.AttachOptions)(4)); + w314.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI16 = new global::Gtk.Image(); + this.imgI16.WidthRequest = 50; + this.imgI16.HeightRequest = 50; + this.imgI16.Name = "imgI16"; + this.tbUI.Add(this.imgI16); + global::Gtk.Table.TableChild w315 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); + w315.TopAttach = ((uint)(14)); + w315.BottomAttach = ((uint)(15)); + w315.LeftAttach = ((uint)(2)); + w315.RightAttach = ((uint)(3)); + w315.XOptions = ((global::Gtk.AttachOptions)(4)); + w315.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI17 = new global::Gtk.Image(); + this.imgI17.WidthRequest = 50; + this.imgI17.HeightRequest = 50; + this.imgI17.Name = "imgI17"; + this.tbUI.Add(this.imgI17); + global::Gtk.Table.TableChild w316 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); + w316.TopAttach = ((uint)(14)); + w316.BottomAttach = ((uint)(15)); + w316.LeftAttach = ((uint)(3)); + w316.RightAttach = ((uint)(4)); + w316.XOptions = ((global::Gtk.AttachOptions)(4)); + w316.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI18 = new global::Gtk.Image(); + this.imgI18.WidthRequest = 50; + this.imgI18.HeightRequest = 50; + this.imgI18.Name = "imgI18"; + this.tbUI.Add(this.imgI18); + global::Gtk.Table.TableChild w317 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); + w317.TopAttach = ((uint)(14)); + w317.BottomAttach = ((uint)(15)); + w317.LeftAttach = ((uint)(4)); + w317.RightAttach = ((uint)(5)); + w317.XOptions = ((global::Gtk.AttachOptions)(4)); + w317.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI19 = new global::Gtk.Image(); + this.imgI19.WidthRequest = 50; + this.imgI19.HeightRequest = 50; + this.imgI19.Name = "imgI19"; + this.tbUI.Add(this.imgI19); + global::Gtk.Table.TableChild w318 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); + w318.TopAttach = ((uint)(14)); + w318.BottomAttach = ((uint)(15)); + w318.LeftAttach = ((uint)(5)); + w318.RightAttach = ((uint)(6)); + w318.XOptions = ((global::Gtk.AttachOptions)(4)); + w318.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI2 = new global::Gtk.Image(); + this.imgI2.WidthRequest = 50; + this.imgI2.HeightRequest = 50; + this.imgI2.Name = "imgI2"; + this.tbUI.Add(this.imgI2); + global::Gtk.Table.TableChild w319 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w319.TopAttach = ((uint)(12)); + w319.BottomAttach = ((uint)(13)); + w319.LeftAttach = ((uint)(2)); + w319.RightAttach = ((uint)(3)); + w319.XOptions = ((global::Gtk.AttachOptions)(4)); + w319.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI20 = new global::Gtk.Image(); + this.imgI20.WidthRequest = 50; + this.imgI20.HeightRequest = 50; + this.imgI20.Name = "imgI20"; + this.tbUI.Add(this.imgI20); + global::Gtk.Table.TableChild w320 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); + w320.TopAttach = ((uint)(14)); + w320.BottomAttach = ((uint)(15)); + w320.LeftAttach = ((uint)(6)); + w320.RightAttach = ((uint)(7)); + w320.XOptions = ((global::Gtk.AttachOptions)(4)); + w320.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI21 = new global::Gtk.Image(); + this.imgI21.WidthRequest = 50; + this.imgI21.HeightRequest = 50; + this.imgI21.Name = "imgI21"; + this.tbUI.Add(this.imgI21); + global::Gtk.Table.TableChild w321 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); + w321.TopAttach = ((uint)(14)); + w321.BottomAttach = ((uint)(15)); + w321.LeftAttach = ((uint)(7)); + w321.RightAttach = ((uint)(8)); + w321.XOptions = ((global::Gtk.AttachOptions)(4)); + w321.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI22 = new global::Gtk.Image(); + this.imgI22.WidthRequest = 50; + this.imgI22.HeightRequest = 50; + this.imgI22.Name = "imgI22"; + this.tbUI.Add(this.imgI22); + global::Gtk.Table.TableChild w322 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); + w322.TopAttach = ((uint)(15)); + w322.BottomAttach = ((uint)(16)); + w322.LeftAttach = ((uint)(1)); + w322.RightAttach = ((uint)(2)); + w322.XOptions = ((global::Gtk.AttachOptions)(4)); + w322.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI23 = new global::Gtk.Image(); + this.imgI23.WidthRequest = 50; + this.imgI23.HeightRequest = 50; + this.imgI23.Name = "imgI23"; + this.tbUI.Add(this.imgI23); + global::Gtk.Table.TableChild w323 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); + w323.TopAttach = ((uint)(15)); + w323.BottomAttach = ((uint)(16)); + w323.LeftAttach = ((uint)(2)); + w323.RightAttach = ((uint)(3)); + w323.XOptions = ((global::Gtk.AttachOptions)(4)); + w323.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI24 = new global::Gtk.Image(); + this.imgI24.WidthRequest = 50; + this.imgI24.HeightRequest = 50; + this.imgI24.Name = "imgI24"; + this.tbUI.Add(this.imgI24); + global::Gtk.Table.TableChild w324 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); + w324.TopAttach = ((uint)(15)); + w324.BottomAttach = ((uint)(16)); + w324.LeftAttach = ((uint)(3)); + w324.RightAttach = ((uint)(4)); + w324.XOptions = ((global::Gtk.AttachOptions)(4)); + w324.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI25 = new global::Gtk.Image(); + this.imgI25.WidthRequest = 50; + this.imgI25.HeightRequest = 50; + this.imgI25.Name = "imgI25"; + this.tbUI.Add(this.imgI25); + global::Gtk.Table.TableChild w325 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); + w325.TopAttach = ((uint)(15)); + w325.BottomAttach = ((uint)(16)); + w325.LeftAttach = ((uint)(4)); + w325.RightAttach = ((uint)(5)); + w325.XOptions = ((global::Gtk.AttachOptions)(4)); + w325.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI26 = new global::Gtk.Image(); + this.imgI26.WidthRequest = 50; + this.imgI26.HeightRequest = 50; + this.imgI26.Name = "imgI26"; + this.tbUI.Add(this.imgI26); + global::Gtk.Table.TableChild w326 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI26])); + w326.TopAttach = ((uint)(15)); + w326.BottomAttach = ((uint)(16)); + w326.LeftAttach = ((uint)(5)); + w326.RightAttach = ((uint)(6)); + w326.XOptions = ((global::Gtk.AttachOptions)(4)); + w326.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI27 = new global::Gtk.Image(); + this.imgI27.WidthRequest = 50; + this.imgI27.HeightRequest = 50; + this.imgI27.Name = "imgI27"; + this.tbUI.Add(this.imgI27); + global::Gtk.Table.TableChild w327 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI27])); + w327.TopAttach = ((uint)(15)); + w327.BottomAttach = ((uint)(16)); + w327.LeftAttach = ((uint)(6)); + w327.RightAttach = ((uint)(7)); + w327.XOptions = ((global::Gtk.AttachOptions)(4)); + w327.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI28 = new global::Gtk.Image(); + this.imgI28.WidthRequest = 50; + this.imgI28.HeightRequest = 50; + this.imgI28.Name = "imgI28"; + this.tbUI.Add(this.imgI28); + global::Gtk.Table.TableChild w328 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI28])); + w328.TopAttach = ((uint)(15)); + w328.BottomAttach = ((uint)(16)); + w328.LeftAttach = ((uint)(7)); + w328.RightAttach = ((uint)(8)); + w328.XOptions = ((global::Gtk.AttachOptions)(4)); + w328.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI29 = new global::Gtk.Image(); + this.imgI29.WidthRequest = 50; + this.imgI29.HeightRequest = 50; + this.imgI29.Name = "imgI29"; + this.tbUI.Add(this.imgI29); + global::Gtk.Table.TableChild w329 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI29])); + w329.TopAttach = ((uint)(16)); + w329.BottomAttach = ((uint)(17)); + w329.LeftAttach = ((uint)(1)); + w329.RightAttach = ((uint)(2)); + w329.XOptions = ((global::Gtk.AttachOptions)(4)); + w329.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI3 = new global::Gtk.Image(); + this.imgI3.WidthRequest = 50; + this.imgI3.HeightRequest = 50; + this.imgI3.Name = "imgI3"; + this.tbUI.Add(this.imgI3); + global::Gtk.Table.TableChild w330 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w330.TopAttach = ((uint)(12)); + w330.BottomAttach = ((uint)(13)); + w330.LeftAttach = ((uint)(3)); + w330.RightAttach = ((uint)(4)); + w330.XOptions = ((global::Gtk.AttachOptions)(4)); + w330.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI30 = new global::Gtk.Image(); + this.imgI30.WidthRequest = 50; + this.imgI30.HeightRequest = 50; + this.imgI30.Name = "imgI30"; + this.tbUI.Add(this.imgI30); + global::Gtk.Table.TableChild w331 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI30])); + w331.TopAttach = ((uint)(16)); + w331.BottomAttach = ((uint)(17)); + w331.LeftAttach = ((uint)(2)); + w331.RightAttach = ((uint)(3)); + w331.XOptions = ((global::Gtk.AttachOptions)(4)); + w331.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI31 = new global::Gtk.Image(); + this.imgI31.WidthRequest = 50; + this.imgI31.HeightRequest = 50; + this.imgI31.Name = "imgI31"; + this.tbUI.Add(this.imgI31); + global::Gtk.Table.TableChild w332 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI31])); + w332.TopAttach = ((uint)(16)); + w332.BottomAttach = ((uint)(17)); + w332.LeftAttach = ((uint)(3)); + w332.RightAttach = ((uint)(4)); + w332.XOptions = ((global::Gtk.AttachOptions)(4)); + w332.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI32 = new global::Gtk.Image(); + this.imgI32.WidthRequest = 50; + this.imgI32.HeightRequest = 50; + this.imgI32.Name = "imgI32"; + this.tbUI.Add(this.imgI32); + global::Gtk.Table.TableChild w333 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI32])); + w333.TopAttach = ((uint)(16)); + w333.BottomAttach = ((uint)(17)); + w333.LeftAttach = ((uint)(4)); + w333.RightAttach = ((uint)(5)); + w333.XOptions = ((global::Gtk.AttachOptions)(4)); + w333.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI33 = new global::Gtk.Image(); + this.imgI33.WidthRequest = 50; + this.imgI33.HeightRequest = 50; + this.imgI33.Name = "imgI33"; + this.tbUI.Add(this.imgI33); + global::Gtk.Table.TableChild w334 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI33])); + w334.TopAttach = ((uint)(16)); + w334.BottomAttach = ((uint)(17)); + w334.LeftAttach = ((uint)(5)); + w334.RightAttach = ((uint)(6)); + w334.XOptions = ((global::Gtk.AttachOptions)(4)); + w334.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI34 = new global::Gtk.Image(); + this.imgI34.WidthRequest = 50; + this.imgI34.HeightRequest = 50; + this.imgI34.Name = "imgI34"; + this.tbUI.Add(this.imgI34); + global::Gtk.Table.TableChild w335 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI34])); + w335.TopAttach = ((uint)(16)); + w335.BottomAttach = ((uint)(17)); + w335.LeftAttach = ((uint)(6)); + w335.RightAttach = ((uint)(7)); + w335.XOptions = ((global::Gtk.AttachOptions)(4)); + w335.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI35 = new global::Gtk.Image(); + this.imgI35.WidthRequest = 50; + this.imgI35.HeightRequest = 50; + this.imgI35.Name = "imgI35"; + this.tbUI.Add(this.imgI35); + global::Gtk.Table.TableChild w336 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI35])); + w336.TopAttach = ((uint)(16)); + w336.BottomAttach = ((uint)(17)); + w336.LeftAttach = ((uint)(7)); + w336.RightAttach = ((uint)(8)); + w336.XOptions = ((global::Gtk.AttachOptions)(4)); + w336.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI36 = new global::Gtk.Image(); + this.imgI36.WidthRequest = 50; + this.imgI36.HeightRequest = 50; + this.imgI36.Name = "imgI36"; + this.tbUI.Add(this.imgI36); + global::Gtk.Table.TableChild w337 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI36])); + w337.TopAttach = ((uint)(17)); + w337.BottomAttach = ((uint)(18)); + w337.LeftAttach = ((uint)(1)); + w337.RightAttach = ((uint)(2)); + w337.XOptions = ((global::Gtk.AttachOptions)(4)); + w337.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI37 = new global::Gtk.Image(); + this.imgI37.WidthRequest = 50; + this.imgI37.HeightRequest = 50; + this.imgI37.Name = "imgI37"; + this.tbUI.Add(this.imgI37); + global::Gtk.Table.TableChild w338 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI37])); + w338.TopAttach = ((uint)(17)); + w338.BottomAttach = ((uint)(18)); + w338.LeftAttach = ((uint)(2)); + w338.RightAttach = ((uint)(3)); + w338.XOptions = ((global::Gtk.AttachOptions)(4)); + w338.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI38 = new global::Gtk.Image(); + this.imgI38.WidthRequest = 50; + this.imgI38.HeightRequest = 50; + this.imgI38.Name = "imgI38"; + this.tbUI.Add(this.imgI38); + global::Gtk.Table.TableChild w339 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI38])); + w339.TopAttach = ((uint)(17)); + w339.BottomAttach = ((uint)(18)); + w339.LeftAttach = ((uint)(3)); + w339.RightAttach = ((uint)(4)); + w339.XOptions = ((global::Gtk.AttachOptions)(4)); + w339.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI39 = new global::Gtk.Image(); + this.imgI39.WidthRequest = 50; + this.imgI39.HeightRequest = 50; + this.imgI39.Name = "imgI39"; + this.tbUI.Add(this.imgI39); + global::Gtk.Table.TableChild w340 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI39])); + w340.TopAttach = ((uint)(17)); + w340.BottomAttach = ((uint)(18)); + w340.LeftAttach = ((uint)(4)); + w340.RightAttach = ((uint)(5)); + w340.XOptions = ((global::Gtk.AttachOptions)(4)); + w340.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI4 = new global::Gtk.Image(); + this.imgI4.WidthRequest = 50; + this.imgI4.HeightRequest = 50; + this.imgI4.Name = "imgI4"; + this.tbUI.Add(this.imgI4); + global::Gtk.Table.TableChild w341 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w341.TopAttach = ((uint)(12)); + w341.BottomAttach = ((uint)(13)); + w341.LeftAttach = ((uint)(4)); + w341.RightAttach = ((uint)(5)); + w341.XOptions = ((global::Gtk.AttachOptions)(4)); + w341.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI40 = new global::Gtk.Image(); + this.imgI40.WidthRequest = 50; + this.imgI40.HeightRequest = 50; + this.imgI40.Name = "imgI40"; + this.tbUI.Add(this.imgI40); + global::Gtk.Table.TableChild w342 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI40])); + w342.TopAttach = ((uint)(17)); + w342.BottomAttach = ((uint)(18)); + w342.LeftAttach = ((uint)(5)); + w342.RightAttach = ((uint)(6)); + w342.XOptions = ((global::Gtk.AttachOptions)(4)); + w342.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI41 = new global::Gtk.Image(); + this.imgI41.WidthRequest = 50; + this.imgI41.HeightRequest = 50; + this.imgI41.Name = "imgI41"; + this.tbUI.Add(this.imgI41); + global::Gtk.Table.TableChild w343 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI41])); + w343.TopAttach = ((uint)(17)); + w343.BottomAttach = ((uint)(18)); + w343.LeftAttach = ((uint)(6)); + w343.RightAttach = ((uint)(7)); + w343.XOptions = ((global::Gtk.AttachOptions)(4)); + w343.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI42 = new global::Gtk.Image(); + this.imgI42.WidthRequest = 50; + this.imgI42.HeightRequest = 50; + this.imgI42.Name = "imgI42"; + this.tbUI.Add(this.imgI42); + global::Gtk.Table.TableChild w344 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI42])); + w344.TopAttach = ((uint)(17)); + w344.BottomAttach = ((uint)(18)); + w344.LeftAttach = ((uint)(7)); + w344.RightAttach = ((uint)(8)); + w344.XOptions = ((global::Gtk.AttachOptions)(4)); + w344.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI43 = new global::Gtk.Image(); + this.imgI43.WidthRequest = 50; + this.imgI43.HeightRequest = 50; + this.imgI43.Name = "imgI43"; + this.tbUI.Add(this.imgI43); + global::Gtk.Table.TableChild w345 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI43])); + w345.TopAttach = ((uint)(18)); + w345.BottomAttach = ((uint)(19)); + w345.LeftAttach = ((uint)(1)); + w345.RightAttach = ((uint)(2)); + w345.XOptions = ((global::Gtk.AttachOptions)(4)); + w345.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI44 = new global::Gtk.Image(); + this.imgI44.WidthRequest = 50; + this.imgI44.HeightRequest = 50; + this.imgI44.Name = "imgI44"; + this.tbUI.Add(this.imgI44); + global::Gtk.Table.TableChild w346 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI44])); + w346.TopAttach = ((uint)(18)); + w346.BottomAttach = ((uint)(19)); + w346.LeftAttach = ((uint)(2)); + w346.RightAttach = ((uint)(3)); + w346.XOptions = ((global::Gtk.AttachOptions)(4)); + w346.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI45 = new global::Gtk.Image(); + this.imgI45.WidthRequest = 50; + this.imgI45.HeightRequest = 50; + this.imgI45.Name = "imgI45"; + this.tbUI.Add(this.imgI45); + global::Gtk.Table.TableChild w347 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI45])); + w347.TopAttach = ((uint)(18)); + w347.BottomAttach = ((uint)(19)); + w347.LeftAttach = ((uint)(3)); + w347.RightAttach = ((uint)(4)); + w347.XOptions = ((global::Gtk.AttachOptions)(4)); + w347.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI46 = new global::Gtk.Image(); + this.imgI46.WidthRequest = 50; + this.imgI46.HeightRequest = 50; + this.imgI46.Name = "imgI46"; + this.tbUI.Add(this.imgI46); + global::Gtk.Table.TableChild w348 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI46])); + w348.TopAttach = ((uint)(18)); + w348.BottomAttach = ((uint)(19)); + w348.LeftAttach = ((uint)(4)); + w348.RightAttach = ((uint)(5)); + w348.XOptions = ((global::Gtk.AttachOptions)(4)); + w348.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI47 = new global::Gtk.Image(); + this.imgI47.WidthRequest = 50; + this.imgI47.HeightRequest = 50; + this.imgI47.Name = "imgI47"; + this.tbUI.Add(this.imgI47); + global::Gtk.Table.TableChild w349 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI47])); + w349.TopAttach = ((uint)(18)); + w349.BottomAttach = ((uint)(19)); + w349.LeftAttach = ((uint)(5)); + w349.RightAttach = ((uint)(6)); + w349.XOptions = ((global::Gtk.AttachOptions)(4)); + w349.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI48 = new global::Gtk.Image(); + this.imgI48.WidthRequest = 50; + this.imgI48.HeightRequest = 50; + this.imgI48.Name = "imgI48"; + this.tbUI.Add(this.imgI48); + global::Gtk.Table.TableChild w350 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI48])); + w350.TopAttach = ((uint)(18)); + w350.BottomAttach = ((uint)(19)); + w350.LeftAttach = ((uint)(6)); + w350.RightAttach = ((uint)(7)); + w350.XOptions = ((global::Gtk.AttachOptions)(4)); + w350.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI49 = new global::Gtk.Image(); + this.imgI49.WidthRequest = 50; + this.imgI49.HeightRequest = 50; + this.imgI49.Name = "imgI49"; + this.tbUI.Add(this.imgI49); + global::Gtk.Table.TableChild w351 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI49])); + w351.TopAttach = ((uint)(18)); + w351.BottomAttach = ((uint)(19)); + w351.LeftAttach = ((uint)(7)); + w351.RightAttach = ((uint)(8)); + w351.XOptions = ((global::Gtk.AttachOptions)(4)); + w351.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI5 = new global::Gtk.Image(); + this.imgI5.WidthRequest = 50; + this.imgI5.HeightRequest = 50; + this.imgI5.Name = "imgI5"; + this.tbUI.Add(this.imgI5); + global::Gtk.Table.TableChild w352 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w352.TopAttach = ((uint)(12)); + w352.BottomAttach = ((uint)(13)); + w352.LeftAttach = ((uint)(5)); + w352.RightAttach = ((uint)(6)); + w352.XOptions = ((global::Gtk.AttachOptions)(4)); + w352.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI6 = new global::Gtk.Image(); + this.imgI6.WidthRequest = 50; + this.imgI6.HeightRequest = 50; + this.imgI6.Name = "imgI6"; + this.tbUI.Add(this.imgI6); + global::Gtk.Table.TableChild w353 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); + w353.TopAttach = ((uint)(12)); + w353.BottomAttach = ((uint)(13)); + w353.LeftAttach = ((uint)(6)); + w353.RightAttach = ((uint)(7)); + w353.XOptions = ((global::Gtk.AttachOptions)(4)); + w353.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI7 = new global::Gtk.Image(); + this.imgI7.WidthRequest = 50; + this.imgI7.HeightRequest = 50; + this.imgI7.Name = "imgI7"; + this.tbUI.Add(this.imgI7); + global::Gtk.Table.TableChild w354 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); + w354.TopAttach = ((uint)(12)); + w354.BottomAttach = ((uint)(13)); + w354.LeftAttach = ((uint)(7)); + w354.RightAttach = ((uint)(8)); + w354.XOptions = ((global::Gtk.AttachOptions)(4)); + w354.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI8 = new global::Gtk.Image(); + this.imgI8.WidthRequest = 50; + this.imgI8.HeightRequest = 50; + this.imgI8.Name = "imgI8"; + this.tbUI.Add(this.imgI8); + global::Gtk.Table.TableChild w355 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); + w355.TopAttach = ((uint)(13)); + w355.BottomAttach = ((uint)(14)); + w355.LeftAttach = ((uint)(1)); + w355.RightAttach = ((uint)(2)); + w355.XOptions = ((global::Gtk.AttachOptions)(4)); + w355.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI9 = new global::Gtk.Image(); + this.imgI9.WidthRequest = 50; + this.imgI9.HeightRequest = 50; + this.imgI9.Name = "imgI9"; + this.tbUI.Add(this.imgI9); + global::Gtk.Table.TableChild w356 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); + w356.TopAttach = ((uint)(13)); + w356.BottomAttach = ((uint)(14)); + w356.LeftAttach = ((uint)(2)); + w356.RightAttach = ((uint)(3)); + w356.XOptions = ((global::Gtk.AttachOptions)(4)); + w356.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgInfo = new global::Gtk.Image(); + this.imgInfo.WidthRequest = 50; + this.imgInfo.HeightRequest = 50; + this.imgInfo.Name = "imgInfo"; + this.tbUI.Add(this.imgInfo); + global::Gtk.Table.TableChild w357 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); + w357.TopAttach = ((uint)(18)); + w357.BottomAttach = ((uint)(19)); + w357.LeftAttach = ((uint)(22)); + w357.RightAttach = ((uint)(23)); + w357.XOptions = ((global::Gtk.AttachOptions)(4)); + w357.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS1 = new global::Gtk.Image(); + this.imgS1.WidthRequest = 50; + this.imgS1.HeightRequest = 50; + this.imgS1.Name = "imgS1"; + this.tbUI.Add(this.imgS1); + global::Gtk.Table.TableChild w358 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); + w358.TopAttach = ((uint)(9)); + w358.BottomAttach = ((uint)(10)); + w358.LeftAttach = ((uint)(10)); + w358.RightAttach = ((uint)(11)); + w358.XOptions = ((global::Gtk.AttachOptions)(4)); + w358.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS10 = new global::Gtk.Image(); + this.imgS10.WidthRequest = 50; + this.imgS10.HeightRequest = 50; + this.imgS10.Name = "imgS10"; + this.tbUI.Add(this.imgS10); + global::Gtk.Table.TableChild w359 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); + w359.TopAttach = ((uint)(10)); + w359.BottomAttach = ((uint)(11)); + w359.LeftAttach = ((uint)(12)); + w359.RightAttach = ((uint)(13)); + w359.XOptions = ((global::Gtk.AttachOptions)(4)); + w359.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS11 = new global::Gtk.Image(); + this.imgS11.WidthRequest = 50; + this.imgS11.HeightRequest = 50; + this.imgS11.Name = "imgS11"; + this.tbUI.Add(this.imgS11); + global::Gtk.Table.TableChild w360 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS11])); + w360.TopAttach = ((uint)(10)); + w360.BottomAttach = ((uint)(11)); + w360.LeftAttach = ((uint)(13)); + w360.RightAttach = ((uint)(14)); + w360.XOptions = ((global::Gtk.AttachOptions)(4)); + w360.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS12 = new global::Gtk.Image(); + this.imgS12.WidthRequest = 50; + this.imgS12.HeightRequest = 50; + this.imgS12.Name = "imgS12"; + this.tbUI.Add(this.imgS12); + global::Gtk.Table.TableChild w361 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS12])); + w361.TopAttach = ((uint)(10)); + w361.BottomAttach = ((uint)(11)); + w361.LeftAttach = ((uint)(14)); + w361.RightAttach = ((uint)(15)); + w361.XOptions = ((global::Gtk.AttachOptions)(4)); + w361.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS13 = new global::Gtk.Image(); + this.imgS13.WidthRequest = 50; + this.imgS13.HeightRequest = 50; + this.imgS13.Name = "imgS13"; + this.tbUI.Add(this.imgS13); + global::Gtk.Table.TableChild w362 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS13])); + w362.TopAttach = ((uint)(10)); + w362.BottomAttach = ((uint)(11)); + w362.LeftAttach = ((uint)(15)); + w362.RightAttach = ((uint)(16)); + w362.XOptions = ((global::Gtk.AttachOptions)(4)); + w362.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS14 = new global::Gtk.Image(); + this.imgS14.WidthRequest = 50; + this.imgS14.HeightRequest = 50; + this.imgS14.Name = "imgS14"; + this.tbUI.Add(this.imgS14); + global::Gtk.Table.TableChild w363 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS14])); + w363.TopAttach = ((uint)(10)); + w363.BottomAttach = ((uint)(11)); + w363.LeftAttach = ((uint)(16)); + w363.RightAttach = ((uint)(17)); + w363.XOptions = ((global::Gtk.AttachOptions)(4)); + w363.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS2 = new global::Gtk.Image(); + this.imgS2.WidthRequest = 50; + this.imgS2.HeightRequest = 50; + this.imgS2.Name = "imgS2"; + this.tbUI.Add(this.imgS2); + global::Gtk.Table.TableChild w364 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); + w364.TopAttach = ((uint)(9)); + w364.BottomAttach = ((uint)(10)); + w364.LeftAttach = ((uint)(11)); + w364.RightAttach = ((uint)(12)); + w364.XOptions = ((global::Gtk.AttachOptions)(4)); + w364.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS3 = new global::Gtk.Image(); + this.imgS3.WidthRequest = 50; + this.imgS3.HeightRequest = 50; + this.imgS3.Name = "imgS3"; + this.tbUI.Add(this.imgS3); + global::Gtk.Table.TableChild w365 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); + w365.TopAttach = ((uint)(9)); + w365.BottomAttach = ((uint)(10)); + w365.LeftAttach = ((uint)(12)); + w365.RightAttach = ((uint)(13)); + w365.XOptions = ((global::Gtk.AttachOptions)(4)); + w365.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS4 = new global::Gtk.Image(); + this.imgS4.WidthRequest = 50; + this.imgS4.HeightRequest = 50; + this.imgS4.Name = "imgS4"; + this.tbUI.Add(this.imgS4); + global::Gtk.Table.TableChild w366 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); + w366.TopAttach = ((uint)(9)); + w366.BottomAttach = ((uint)(10)); + w366.LeftAttach = ((uint)(13)); + w366.RightAttach = ((uint)(14)); + w366.XOptions = ((global::Gtk.AttachOptions)(4)); + w366.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS5 = new global::Gtk.Image(); + this.imgS5.WidthRequest = 50; + this.imgS5.HeightRequest = 50; + this.imgS5.Name = "imgS5"; + this.tbUI.Add(this.imgS5); + global::Gtk.Table.TableChild w367 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); + w367.TopAttach = ((uint)(9)); + w367.BottomAttach = ((uint)(10)); + w367.LeftAttach = ((uint)(14)); + w367.RightAttach = ((uint)(15)); + w367.XOptions = ((global::Gtk.AttachOptions)(4)); + w367.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS6 = new global::Gtk.Image(); + this.imgS6.WidthRequest = 50; + this.imgS6.HeightRequest = 50; + this.imgS6.Name = "imgS6"; + this.tbUI.Add(this.imgS6); + global::Gtk.Table.TableChild w368 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); + w368.TopAttach = ((uint)(9)); + w368.BottomAttach = ((uint)(10)); + w368.LeftAttach = ((uint)(15)); + w368.RightAttach = ((uint)(16)); + w368.XOptions = ((global::Gtk.AttachOptions)(4)); + w368.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS7 = new global::Gtk.Image(); + this.imgS7.WidthRequest = 50; + this.imgS7.HeightRequest = 50; + this.imgS7.Name = "imgS7"; + this.tbUI.Add(this.imgS7); + global::Gtk.Table.TableChild w369 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); + w369.TopAttach = ((uint)(9)); + w369.BottomAttach = ((uint)(10)); + w369.LeftAttach = ((uint)(16)); + w369.RightAttach = ((uint)(17)); + w369.XOptions = ((global::Gtk.AttachOptions)(4)); + w369.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS8 = new global::Gtk.Image(); + this.imgS8.WidthRequest = 50; + this.imgS8.HeightRequest = 50; + this.imgS8.Name = "imgS8"; + this.tbUI.Add(this.imgS8); + global::Gtk.Table.TableChild w370 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); + w370.TopAttach = ((uint)(10)); + w370.BottomAttach = ((uint)(11)); + w370.LeftAttach = ((uint)(10)); + w370.RightAttach = ((uint)(11)); + w370.XOptions = ((global::Gtk.AttachOptions)(4)); + w370.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS9 = new global::Gtk.Image(); + this.imgS9.WidthRequest = 50; + this.imgS9.HeightRequest = 50; + this.imgS9.Name = "imgS9"; + this.tbUI.Add(this.imgS9); + global::Gtk.Table.TableChild w371 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); + w371.TopAttach = ((uint)(10)); + w371.BottomAttach = ((uint)(11)); + w371.LeftAttach = ((uint)(11)); + w371.RightAttach = ((uint)(12)); + w371.XOptions = ((global::Gtk.AttachOptions)(4)); + w371.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblAccessories = new global::Gtk.Label(); + this.lblAccessories.HeightRequest = 50; + this.lblAccessories.Name = "lblAccessories"; + this.lblAccessories.LabelProp = "Accessories"; + this.lblAccessories.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblAccessories); + global::Gtk.Table.TableChild w372 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); + w372.TopAttach = ((uint)(10)); + w372.BottomAttach = ((uint)(11)); + w372.LeftAttach = ((uint)(19)); + w372.RightAttach = ((uint)(26)); + w372.XOptions = ((global::Gtk.AttachOptions)(4)); + w372.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank1 = new global::Gtk.Label(); + this.lblBlank1.WidthRequest = 50; + this.lblBlank1.HeightRequest = 10; + this.lblBlank1.Name = "lblBlank1"; + this.tbUI.Add(this.lblBlank1); + global::Gtk.Table.TableChild w373 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w373.LeftAttach = ((uint)(13)); + w373.RightAttach = ((uint)(14)); + w373.XOptions = ((global::Gtk.AttachOptions)(4)); + w373.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank2 = new global::Gtk.Label(); + this.lblBlank2.WidthRequest = 10; + this.lblBlank2.HeightRequest = 50; + this.lblBlank2.Name = "lblBlank2"; + this.tbUI.Add(this.lblBlank2); + global::Gtk.Table.TableChild w374 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w374.TopAttach = ((uint)(4)); + w374.BottomAttach = ((uint)(5)); + w374.XOptions = ((global::Gtk.AttachOptions)(4)); + w374.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank3 = new global::Gtk.Label(); + this.lblBlank3.WidthRequest = 50; + this.lblBlank3.HeightRequest = 50; + this.lblBlank3.Name = "lblBlank3"; + this.tbUI.Add(this.lblBlank3); + global::Gtk.Table.TableChild w375 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w375.TopAttach = ((uint)(8)); + w375.BottomAttach = ((uint)(9)); + w375.LeftAttach = ((uint)(13)); + w375.RightAttach = ((uint)(14)); + w375.XOptions = ((global::Gtk.AttachOptions)(4)); + w375.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank4 = new global::Gtk.Label(); + this.lblBlank4.WidthRequest = 10; + this.lblBlank4.HeightRequest = 50; + this.lblBlank4.Name = "lblBlank4"; + this.tbUI.Add(this.lblBlank4); + global::Gtk.Table.TableChild w376 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w376.TopAttach = ((uint)(4)); + w376.BottomAttach = ((uint)(5)); + w376.LeftAttach = ((uint)(8)); + w376.RightAttach = ((uint)(9)); + w376.XOptions = ((global::Gtk.AttachOptions)(4)); + w376.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank5 = new global::Gtk.Label(); + this.lblBlank5.WidthRequest = 10; + this.lblBlank5.HeightRequest = 50; + this.lblBlank5.Name = "lblBlank5"; + this.tbUI.Add(this.lblBlank5); + global::Gtk.Table.TableChild w377 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w377.TopAttach = ((uint)(4)); + w377.BottomAttach = ((uint)(5)); + w377.LeftAttach = ((uint)(18)); + w377.RightAttach = ((uint)(19)); + w377.XOptions = ((global::Gtk.AttachOptions)(4)); + w377.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank6 = new global::Gtk.Label(); + this.lblBlank6.WidthRequest = 10; + this.lblBlank6.HeightRequest = 50; + this.lblBlank6.Name = "lblBlank6"; + this.tbUI.Add(this.lblBlank6); + global::Gtk.Table.TableChild w378 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank6])); + w378.TopAttach = ((uint)(4)); + w378.BottomAttach = ((uint)(5)); + w378.LeftAttach = ((uint)(26)); + w378.RightAttach = ((uint)(27)); + w378.XOptions = ((global::Gtk.AttachOptions)(4)); + w378.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank8 = new global::Gtk.Label(); + this.lblBlank8.WidthRequest = 50; + this.lblBlank8.HeightRequest = 10; + this.lblBlank8.Name = "lblBlank8"; + this.tbUI.Add(this.lblBlank8); + global::Gtk.Table.TableChild w379 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); + w379.TopAttach = ((uint)(20)); + w379.BottomAttach = ((uint)(21)); + w379.LeftAttach = ((uint)(13)); + w379.RightAttach = ((uint)(14)); + w379.XOptions = ((global::Gtk.AttachOptions)(4)); + w379.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblCoord1 = new global::Gtk.Label(); + this.lblCoord1.WidthRequest = 50; + this.lblCoord1.HeightRequest = 50; + this.lblCoord1.Name = "lblCoord1"; + this.lblCoord1.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblCoord1); + global::Gtk.Table.TableChild w380 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); + w380.TopAttach = ((uint)(9)); + w380.BottomAttach = ((uint)(10)); + w380.LeftAttach = ((uint)(6)); + w380.RightAttach = ((uint)(7)); + w380.XOptions = ((global::Gtk.AttachOptions)(4)); + w380.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblCoord2 = new global::Gtk.Label(); + this.lblCoord2.WidthRequest = 50; + this.lblCoord2.HeightRequest = 50; + this.lblCoord2.Name = "lblCoord2"; + this.lblCoord2.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblCoord2); + global::Gtk.Table.TableChild w381 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); + w381.TopAttach = ((uint)(9)); + w381.BottomAttach = ((uint)(10)); + w381.LeftAttach = ((uint)(7)); + w381.RightAttach = ((uint)(8)); + w381.XOptions = ((global::Gtk.AttachOptions)(4)); + w381.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblGear = new global::Gtk.Label(); + this.lblGear.HeightRequest = 50; + this.lblGear.Name = "lblGear"; + this.lblGear.LabelProp = "Gear"; + this.lblGear.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblGear); + global::Gtk.Table.TableChild w382 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); + w382.TopAttach = ((uint)(13)); + w382.BottomAttach = ((uint)(14)); + w382.LeftAttach = ((uint)(19)); + w382.RightAttach = ((uint)(26)); + w382.XOptions = ((global::Gtk.AttachOptions)(4)); + w382.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblGroundLayer = new global::Gtk.Label(); + this.lblGroundLayer.WidthRequest = 350; + this.lblGroundLayer.HeightRequest = 50; + this.lblGroundLayer.Name = "lblGroundLayer"; + this.lblGroundLayer.LabelProp = "Ground Layer"; + this.tbUI.Add(this.lblGroundLayer); + global::Gtk.Table.TableChild w383 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); + w383.TopAttach = ((uint)(1)); + w383.BottomAttach = ((uint)(2)); + w383.LeftAttach = ((uint)(1)); + w383.RightAttach = ((uint)(8)); + w383.XOptions = ((global::Gtk.AttachOptions)(4)); + w383.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblHoleMsg = new global::Gtk.Label(); + this.lblHoleMsg.WidthRequest = 200; + this.lblHoleMsg.HeightRequest = 50; + this.lblHoleMsg.Name = "lblHoleMsg"; + this.lblHoleMsg.LabelProp = "There is a hole above player:"; + this.lblHoleMsg.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblHoleMsg); + global::Gtk.Table.TableChild w384 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleMsg])); + w384.TopAttach = ((uint)(19)); + w384.BottomAttach = ((uint)(20)); + w384.LeftAttach = ((uint)(1)); + w384.RightAttach = ((uint)(7)); + w384.XOptions = ((global::Gtk.AttachOptions)(4)); + w384.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblHoleOnTop = new global::Gtk.Label(); + this.lblHoleOnTop.WidthRequest = 50; + this.lblHoleOnTop.HeightRequest = 50; + this.lblHoleOnTop.Name = "lblHoleOnTop"; + this.lblHoleOnTop.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblHoleOnTop); + global::Gtk.Table.TableChild w385 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleOnTop])); + w385.TopAttach = ((uint)(19)); + w385.BottomAttach = ((uint)(20)); + w385.LeftAttach = ((uint)(7)); + w385.RightAttach = ((uint)(8)); + w385.XOptions = ((global::Gtk.AttachOptions)(4)); + w385.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblHotbar = new global::Gtk.Label(); + this.lblHotbar.WidthRequest = 50; + this.lblHotbar.HeightRequest = 25; + this.lblHotbar.Name = "lblHotbar"; + this.lblHotbar.LabelProp = "Hotbar"; + this.tbUI.Add(this.lblHotbar); + global::Gtk.Table.TableChild w386 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); + w386.TopAttach = ((uint)(11)); + w386.BottomAttach = ((uint)(12)); + w386.LeftAttach = ((uint)(10)); + w386.RightAttach = ((uint)(17)); + w386.XOptions = ((global::Gtk.AttachOptions)(4)); + w386.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblInfo = new global::Gtk.Label(); + this.lblInfo.WidthRequest = 250; + this.lblInfo.HeightRequest = 50; + this.lblInfo.Name = "lblInfo"; + this.lblInfo.Wrap = true; + this.lblInfo.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblInfo); + global::Gtk.Table.TableChild w387 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); + w387.TopAttach = ((uint)(19)); + w387.BottomAttach = ((uint)(20)); + w387.LeftAttach = ((uint)(19)); + w387.RightAttach = ((uint)(26)); + w387.XOptions = ((global::Gtk.AttachOptions)(4)); + w387.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblItemLayer = new global::Gtk.Label(); + this.lblItemLayer.HeightRequest = 50; + this.lblItemLayer.Name = "lblItemLayer"; + this.lblItemLayer.LabelProp = "Structure Layer"; + this.tbUI.Add(this.lblItemLayer); + global::Gtk.Table.TableChild w388 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); + w388.TopAttach = ((uint)(11)); + w388.BottomAttach = ((uint)(12)); + w388.LeftAttach = ((uint)(1)); + w388.RightAttach = ((uint)(8)); + w388.XOptions = ((global::Gtk.AttachOptions)(4)); + w388.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog1 = new global::Gtk.Label(); + this.lblLog1.WidthRequest = 350; + this.lblLog1.HeightRequest = 50; + this.lblLog1.Name = "lblLog1"; + this.tbUI.Add(this.lblLog1); + global::Gtk.Table.TableChild w389 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); + w389.TopAttach = ((uint)(14)); + w389.BottomAttach = ((uint)(15)); + w389.LeftAttach = ((uint)(10)); + w389.RightAttach = ((uint)(17)); + w389.XOptions = ((global::Gtk.AttachOptions)(4)); + w389.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog2 = new global::Gtk.Label(); + this.lblLog2.WidthRequest = 350; + this.lblLog2.HeightRequest = 50; + this.lblLog2.Name = "lblLog2"; + this.tbUI.Add(this.lblLog2); + global::Gtk.Table.TableChild w390 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); + w390.TopAttach = ((uint)(15)); + w390.BottomAttach = ((uint)(16)); + w390.LeftAttach = ((uint)(10)); + w390.RightAttach = ((uint)(17)); + w390.XOptions = ((global::Gtk.AttachOptions)(4)); + w390.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog3 = new global::Gtk.Label(); + this.lblLog3.WidthRequest = 350; + this.lblLog3.HeightRequest = 50; + this.lblLog3.Name = "lblLog3"; + this.tbUI.Add(this.lblLog3); + global::Gtk.Table.TableChild w391 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); + w391.TopAttach = ((uint)(16)); + w391.BottomAttach = ((uint)(17)); + w391.LeftAttach = ((uint)(10)); + w391.RightAttach = ((uint)(17)); + w391.XOptions = ((global::Gtk.AttachOptions)(4)); + w391.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog4 = new global::Gtk.Label(); + this.lblLog4.WidthRequest = 350; + this.lblLog4.HeightRequest = 50; + this.lblLog4.Name = "lblLog4"; + this.tbUI.Add(this.lblLog4); + global::Gtk.Table.TableChild w392 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); + w392.TopAttach = ((uint)(17)); + w392.BottomAttach = ((uint)(18)); + w392.LeftAttach = ((uint)(10)); + w392.RightAttach = ((uint)(17)); + w392.XOptions = ((global::Gtk.AttachOptions)(4)); + w392.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog5 = new global::Gtk.Label(); + this.lblLog5.WidthRequest = 350; + this.lblLog5.HeightRequest = 50; + this.lblLog5.Name = "lblLog5"; + this.tbUI.Add(this.lblLog5); + global::Gtk.Table.TableChild w393 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog5])); + w393.TopAttach = ((uint)(18)); + w393.BottomAttach = ((uint)(19)); + w393.LeftAttach = ((uint)(10)); + w393.RightAttach = ((uint)(17)); + w393.XOptions = ((global::Gtk.AttachOptions)(4)); + w393.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog6 = new global::Gtk.Label(); + this.lblLog6.WidthRequest = 350; + this.lblLog6.HeightRequest = 50; + this.lblLog6.Name = "lblLog6"; + this.tbUI.Add(this.lblLog6); + global::Gtk.Table.TableChild w394 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog6])); + w394.TopAttach = ((uint)(19)); + w394.BottomAttach = ((uint)(20)); + w394.LeftAttach = ((uint)(10)); + w394.RightAttach = ((uint)(17)); + w394.XOptions = ((global::Gtk.AttachOptions)(4)); + w394.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblSuperLayer = new global::Gtk.Label(); + this.lblSuperLayer.WidthRequest = 100; + this.lblSuperLayer.HeightRequest = 50; + this.lblSuperLayer.Name = "lblSuperLayer"; + this.lblSuperLayer.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblSuperLayer); + global::Gtk.Table.TableChild w395 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblSuperLayer])); + w395.TopAttach = ((uint)(9)); + w395.BottomAttach = ((uint)(10)); + w395.LeftAttach = ((uint)(1)); + w395.RightAttach = ((uint)(5)); + w395.XOptions = ((global::Gtk.AttachOptions)(4)); + w395.YOptions = ((global::Gtk.AttachOptions)(4)); + this.Add(this.tbUI); + if ((this.Child != null)) + { + this.Child.ShowAll(); + } + this.DefaultWidth = 1390; + this.DefaultHeight = 970; + this.Show(); + this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent); + this.btnPause.Clicked += new global::System.EventHandler(this.OnBtnPauseClicked); + this.btnP9.Clicked += new global::System.EventHandler(this.OnBtnP9Clicked); + this.btnP8.Clicked += new global::System.EventHandler(this.OnBtnP8Clicked); + this.btnP7.Clicked += new global::System.EventHandler(this.OnBtnP7Clicked); + this.btnP6.Clicked += new global::System.EventHandler(this.OnBtnP6Clicked); + this.btnP5.Clicked += new global::System.EventHandler(this.OnBtnP5Clicked); + this.btnP49.Clicked += new global::System.EventHandler(this.OnBtnP49Clicked); + this.btnP48.Clicked += new global::System.EventHandler(this.OnBtnP48Clicked); + this.btnP47.Clicked += new global::System.EventHandler(this.OnBtnP47Clicked); + this.btnP46.Clicked += new global::System.EventHandler(this.OnBtnP46Clicked); + this.btnP45.Clicked += new global::System.EventHandler(this.OnBtnP45Clicked); + this.btnP44.Clicked += new global::System.EventHandler(this.OnBtnP44Clicked); + this.btnP43.Clicked += new global::System.EventHandler(this.OnBtnP43Clicked); + this.btnP42.Clicked += new global::System.EventHandler(this.OnBtnP42Clicked); + this.btnP41.Clicked += new global::System.EventHandler(this.OnBtnP41Clicked); + this.btnP40.Clicked += new global::System.EventHandler(this.OnBtnP40Clicked); + this.btnP4.Clicked += new global::System.EventHandler(this.OnBtnP4Clicked); + this.btnP39.Clicked += new global::System.EventHandler(this.OnBtnP39Clicked); + this.btnP38.Clicked += new global::System.EventHandler(this.OnBtnP38Clicked); + this.btnP37.Clicked += new global::System.EventHandler(this.OnBtnP37Clicked); + this.btnP36.Clicked += new global::System.EventHandler(this.OnBtnP36Clicked); + this.btnP35.Clicked += new global::System.EventHandler(this.OnBtnP35Clicked); + this.btnP34.Clicked += new global::System.EventHandler(this.OnBtnP34Clicked); + this.btnP33.Clicked += new global::System.EventHandler(this.OnBtnP33Clicked); + this.btnP32.Clicked += new global::System.EventHandler(this.OnBtnP32Clicked); + this.btnP31.Clicked += new global::System.EventHandler(this.OnBtnP31Clicked); + this.btnP30.Clicked += new global::System.EventHandler(this.OnBtnP30Clicked); + this.btnP3.Clicked += new global::System.EventHandler(this.OnBtnP3Clicked); + this.btnP29.Clicked += new global::System.EventHandler(this.OnBtnP29Clicked); + this.btnP28.Clicked += new global::System.EventHandler(this.OnBtnP28Clicked); + this.btnP27.Clicked += new global::System.EventHandler(this.OnBtnP27Clicked); + this.btnP26.Clicked += new global::System.EventHandler(this.OnBtnP26Clicked); + this.btnP25.Clicked += new global::System.EventHandler(this.OnBtnP25Clicked); + this.btnP24.Clicked += new global::System.EventHandler(this.OnBtnP24Clicked); + this.btnP23.Clicked += new global::System.EventHandler(this.OnBtnP23Clicked); + this.btnP22.Clicked += new global::System.EventHandler(this.OnBtnP22Clicked); + this.btnP21.Clicked += new global::System.EventHandler(this.OnBtnP21Clicked); + this.btnP20.Clicked += new global::System.EventHandler(this.OnBtnP20Clicked); + this.btnP2.Clicked += new global::System.EventHandler(this.OnBtnP2Clicked); + this.btnP19.Clicked += new global::System.EventHandler(this.OnBtnP19Clicked); + this.btnP18.Clicked += new global::System.EventHandler(this.OnBtnP18Clicked); + this.btnP17.Clicked += new global::System.EventHandler(this.OnBtnP17Clicked); + this.btnP16.Clicked += new global::System.EventHandler(this.OnBtnP16Clicked); + this.btnP15.Clicked += new global::System.EventHandler(this.OnBtnP15Clicked); + this.btnP14.Clicked += new global::System.EventHandler(this.OnBtnP14Clicked); + this.btnP13.Clicked += new global::System.EventHandler(this.OnBtnP13Clicked); + this.btnP12.Clicked += new global::System.EventHandler(this.OnBtnP12Clicked); + this.btnP11.Clicked += new global::System.EventHandler(this.OnBtnP11Clicked); + this.btnP10.Clicked += new global::System.EventHandler(this.OnBtnP10Clicked); + this.btnP1.Clicked += new global::System.EventHandler(this.OnBtnP1Clicked); + this.btnMusic.Clicked += new global::System.EventHandler(this.OnBtnMusicClicked); + this.btnMap.Clicked += new global::System.EventHandler(this.OnBtnMapClicked); + this.btnLog.Clicked += new global::System.EventHandler(this.OnBtnLogClicked); + this.btnInv.Clicked += new global::System.EventHandler(this.OnBtnInvClicked); + this.btnI9.Clicked += new global::System.EventHandler(this.OnBtnI9Clicked); + this.btnI8.Clicked += new global::System.EventHandler(this.OnBtnI8Clicked); + this.btnI7.Clicked += new global::System.EventHandler(this.OnBtnI7Clicked); + this.btnI6.Clicked += new global::System.EventHandler(this.OnBtnI6Clicked); + this.btnI5.Clicked += new global::System.EventHandler(this.OnBtnI5Clicked); + this.btnI49.Clicked += new global::System.EventHandler(this.OnBtnI49Clicked); + this.btnI48.Clicked += new global::System.EventHandler(this.OnBtnI48Clicked); + this.btnI47.Clicked += new global::System.EventHandler(this.OnBtnI47Clicked); + this.btnI46.Clicked += new global::System.EventHandler(this.OnBtnI46Clicked); + this.btnI45.Clicked += new global::System.EventHandler(this.OnBtnI45Clicked); + this.btnI44.Clicked += new global::System.EventHandler(this.OnBtnI44Clicked); + this.btnI43.Clicked += new global::System.EventHandler(this.OnBtnI43Clicked); + this.btnI42.Clicked += new global::System.EventHandler(this.OnBtnI42Clicked); + this.btnI41.Clicked += new global::System.EventHandler(this.OnBtnI41Clicked); + this.btnI40.Clicked += new global::System.EventHandler(this.OnBtnI40Clicked); + this.btnI4.Clicked += new global::System.EventHandler(this.OnBtnI4Clicked); + this.btnI39.Clicked += new global::System.EventHandler(this.OnBtnI39Clicked); + this.btnI38.Clicked += new global::System.EventHandler(this.OnBtnI38Clicked); + this.btnI37.Clicked += new global::System.EventHandler(this.OnBtnI37Clicked); + this.btnI36.Clicked += new global::System.EventHandler(this.OnBtnI36Clicked); + this.btnI35.Clicked += new global::System.EventHandler(this.OnBtnI35Clicked); + this.btnI34.Clicked += new global::System.EventHandler(this.OnBtnI34Clicked); + this.btnI33.Clicked += new global::System.EventHandler(this.OnBtnI33Clicked); + this.btnI32.Clicked += new global::System.EventHandler(this.OnBtnI32Clicked); + this.btnI31.Clicked += new global::System.EventHandler(this.OnBtnI31Clicked); + this.btnI30.Clicked += new global::System.EventHandler(this.OnBtnI30Clicked); + this.btnI3.Clicked += new global::System.EventHandler(this.OnBtnI3Clicked); + this.btnI29.Clicked += new global::System.EventHandler(this.OnBtnI29Clicked); + this.btnI28.Clicked += new global::System.EventHandler(this.OnBtnI28Clicked); + this.btnI27.Clicked += new global::System.EventHandler(this.OnBtnI27Clicked); + this.btnI26.Clicked += new global::System.EventHandler(this.OnBtnI26Clicked); + this.btnI25.Clicked += new global::System.EventHandler(this.OnBtnI25Clicked); + this.btnI24.Clicked += new global::System.EventHandler(this.OnBtnI24Clicked); + this.btnI23.Clicked += new global::System.EventHandler(this.OnBtnI23Clicked); + this.btnI22.Clicked += new global::System.EventHandler(this.OnBtnI22Clicked); + this.btnI21.Clicked += new global::System.EventHandler(this.OnBtnI21Clicked); + this.btnI20.Clicked += new global::System.EventHandler(this.OnBtnI20Clicked); + this.btnI2.Clicked += new global::System.EventHandler(this.OnBtnI2Clicked); + this.btnI19.Clicked += new global::System.EventHandler(this.OnBtnI19Clicked); + this.btnI18.Clicked += new global::System.EventHandler(this.OnBtnI18Clicked); + this.btnI17.Clicked += new global::System.EventHandler(this.OnBtnI17Clicked); + this.btnI16.Clicked += new global::System.EventHandler(this.OnBtnI16Clicked); + this.btnI15.Clicked += new global::System.EventHandler(this.OnBtnI15Clicked); + this.btnI14.Clicked += new global::System.EventHandler(this.OnBtnI14Clicked); + this.btnI13.Clicked += new global::System.EventHandler(this.OnBtnI13Clicked); + this.btnI12.Clicked += new global::System.EventHandler(this.OnBtnI12Clicked); + this.btnI11.Clicked += new global::System.EventHandler(this.OnBtnI11Clicked); + this.btnI10.Clicked += new global::System.EventHandler(this.OnBtnI10Clicked); + this.btnI1.Clicked += new global::System.EventHandler(this.OnBtnI1Clicked); + this.btnH7.Clicked += new global::System.EventHandler(this.OnBtnH7Clicked); + this.btnH6.Clicked += new global::System.EventHandler(this.OnBtnH6Clicked); + this.btnH5.Clicked += new global::System.EventHandler(this.OnBtnH5Clicked); + this.btnH4.Clicked += new global::System.EventHandler(this.OnBtnH4Clicked); + this.btnH3.Clicked += new global::System.EventHandler(this.OnBtnH3Clicked); + this.btnH2.Clicked += new global::System.EventHandler(this.OnBtnH2Clicked); + this.btnH1.Clicked += new global::System.EventHandler(this.OnBtnH1Clicked); + this.btnG7.Clicked += new global::System.EventHandler(this.OnBtnG7Clicked); + this.btnG6.Clicked += new global::System.EventHandler(this.OnBtnG6Clicked); + this.btnG5.Clicked += new global::System.EventHandler(this.OnBtnG5Clicked); + this.btnG4.Clicked += new global::System.EventHandler(this.OnBtnG4Clicked); + this.btnG3.Clicked += new global::System.EventHandler(this.OnBtnG3Clicked); + this.btnG2.Clicked += new global::System.EventHandler(this.OnBtnG2Clicked); + this.btnG1.Clicked += new global::System.EventHandler(this.OnBtnG1Clicked); + this.btnCrafting.Clicked += new global::System.EventHandler(this.OnBtnCraftingClicked); + this.btnA9.Clicked += new global::System.EventHandler(this.OnBtnA9Clicked); + this.btnA8.Clicked += new global::System.EventHandler(this.OnBtnA8Clicked); + this.btnA7.Clicked += new global::System.EventHandler(this.OnBtnA7Clicked); + this.btnA6.Clicked += new global::System.EventHandler(this.OnBtnA6Clicked); + this.btnA5.Clicked += new global::System.EventHandler(this.OnBtnA5Clicked); + this.btnA4.Clicked += new global::System.EventHandler(this.OnBtnA4Clicked); + this.btnA3.Clicked += new global::System.EventHandler(this.OnBtnA3Clicked); + this.btnA2.Clicked += new global::System.EventHandler(this.OnBtnA2Clicked); + this.btnA14.Clicked += new global::System.EventHandler(this.OnBtnA14Clicked); + this.btnA13.Clicked += new global::System.EventHandler(this.OnBtnA13Clicked); + this.btnA12.Clicked += new global::System.EventHandler(this.OnBtnA12Clicked); + this.btnA11.Clicked += new global::System.EventHandler(this.OnBtnA11Clicked); + this.btnA10.Clicked += new global::System.EventHandler(this.OnBtnA10Clicked); + this.btnA1.Clicked += new global::System.EventHandler(this.OnBtnA1Clicked); + } + } +} diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Small.SmallGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Small.SmallGameWindow.cs new file mode 100644 index 0000000..37b84da --- /dev/null +++ b/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Small.SmallGameWindow.cs @@ -0,0 +1,2874 @@ + +// This file has been generated by the GUI designer. Do not modify. +namespace Mundus.Views.Windows.GameWindows.Small +{ + public partial class SmallGameWindow + { + private global::Gtk.Table tbUI; + + private global::Gtk.Button btnA1; + + private global::Gtk.Button btnA10; + + private global::Gtk.Button btnA2; + + private global::Gtk.Button btnA3; + + private global::Gtk.Button btnA4; + + private global::Gtk.Button btnA5; + + private global::Gtk.Button btnA6; + + private global::Gtk.Button btnA7; + + private global::Gtk.Button btnA8; + + private global::Gtk.Button btnA9; + + private global::Gtk.Button btnCrafting; + + private global::Gtk.Button btnG1; + + private global::Gtk.Button btnG2; + + private global::Gtk.Button btnG3; + + private global::Gtk.Button btnG4; + + private global::Gtk.Button btnG5; + + private global::Gtk.Button btnH1; + + private global::Gtk.Button btnH2; + + private global::Gtk.Button btnH3; + + private global::Gtk.Button btnH4; + + private global::Gtk.Button btnH5; + + private global::Gtk.Button btnI1; + + private global::Gtk.Button btnI10; + + private global::Gtk.Button btnI11; + + private global::Gtk.Button btnI12; + + private global::Gtk.Button btnI13; + + private global::Gtk.Button btnI14; + + private global::Gtk.Button btnI15; + + private global::Gtk.Button btnI16; + + private global::Gtk.Button btnI17; + + private global::Gtk.Button btnI18; + + private global::Gtk.Button btnI19; + + private global::Gtk.Button btnI2; + + private global::Gtk.Button btnI20; + + private global::Gtk.Button btnI21; + + private global::Gtk.Button btnI22; + + private global::Gtk.Button btnI23; + + private global::Gtk.Button btnI24; + + private global::Gtk.Button btnI25; + + private global::Gtk.Button btnI3; + + private global::Gtk.Button btnI4; + + private global::Gtk.Button btnI5; + + private global::Gtk.Button btnI6; + + private global::Gtk.Button btnI7; + + private global::Gtk.Button btnI8; + + private global::Gtk.Button btnI9; + + private global::Gtk.Button btnIG1; + + private global::Gtk.Button btnIG2; + + private global::Gtk.Button btnInv; + + private global::Gtk.Button btnLog; + + private global::Gtk.Button btnMap; + + private global::Gtk.Button btnMusic; + + private global::Gtk.Button btnP1; + + private global::Gtk.Button btnP10; + + private global::Gtk.Button btnP11; + + private global::Gtk.Button btnP12; + + private global::Gtk.Button btnP13; + + private global::Gtk.Button btnP14; + + private global::Gtk.Button btnP15; + + private global::Gtk.Button btnP16; + + private global::Gtk.Button btnP17; + + private global::Gtk.Button btnP18; + + private global::Gtk.Button btnP19; + + private global::Gtk.Button btnP2; + + private global::Gtk.Button btnP20; + + private global::Gtk.Button btnP21; + + private global::Gtk.Button btnP22; + + private global::Gtk.Button btnP23; + + private global::Gtk.Button btnP24; + + private global::Gtk.Button btnP25; + + private global::Gtk.Button btnP3; + + private global::Gtk.Button btnP4; + + private global::Gtk.Button btnP5; + + private global::Gtk.Button btnP6; + + private global::Gtk.Button btnP7; + + private global::Gtk.Button btnP8; + + private global::Gtk.Button btnP9; + + private global::Gtk.Button btnPause; + + private global::Gtk.Image imgG1; + + private global::Gtk.Image imgG10; + + private global::Gtk.Image imgG11; + + private global::Gtk.Image imgG12; + + private global::Gtk.Image imgG13; + + private global::Gtk.Image imgG14; + + private global::Gtk.Image imgG15; + + private global::Gtk.Image imgG16; + + private global::Gtk.Image imgG17; + + private global::Gtk.Image imgG18; + + private global::Gtk.Image imgG19; + + private global::Gtk.Image imgG2; + + private global::Gtk.Image imgG20; + + private global::Gtk.Image imgG21; + + private global::Gtk.Image imgG22; + + private global::Gtk.Image imgG23; + + private global::Gtk.Image imgG24; + + private global::Gtk.Image imgG25; + + private global::Gtk.Image imgG3; + + private global::Gtk.Image imgG4; + + private global::Gtk.Image imgG5; + + private global::Gtk.Image imgG6; + + private global::Gtk.Image imgG7; + + private global::Gtk.Image imgG8; + + private global::Gtk.Image imgG9; + + private global::Gtk.Image imgI1; + + private global::Gtk.Image imgI10; + + private global::Gtk.Image imgI11; + + private global::Gtk.Image imgI12; + + private global::Gtk.Image imgI13; + + private global::Gtk.Image imgI14; + + private global::Gtk.Image imgI15; + + private global::Gtk.Image imgI16; + + private global::Gtk.Image imgI17; + + private global::Gtk.Image imgI18; + + private global::Gtk.Image imgI19; + + private global::Gtk.Image imgI2; + + private global::Gtk.Image imgI20; + + private global::Gtk.Image imgI21; + + private global::Gtk.Image imgI22; + + private global::Gtk.Image imgI23; + + private global::Gtk.Image imgI24; + + private global::Gtk.Image imgI25; + + private global::Gtk.Image imgI3; + + private global::Gtk.Image imgI4; + + private global::Gtk.Image imgI5; + + private global::Gtk.Image imgI6; + + private global::Gtk.Image imgI7; + + private global::Gtk.Image imgI8; + + private global::Gtk.Image imgI9; + + private global::Gtk.Image imgInfo; + + private global::Gtk.Image imgS1; + + private global::Gtk.Image imgS10; + + private global::Gtk.Image imgS2; + + private global::Gtk.Image imgS3; + + private global::Gtk.Image imgS4; + + private global::Gtk.Image imgS5; + + private global::Gtk.Image imgS6; + + private global::Gtk.Image imgS7; + + private global::Gtk.Image imgS8; + + private global::Gtk.Image imgS9; + + private global::Gtk.Label lblAccessories; + + private global::Gtk.Label lblBlank1; + + private global::Gtk.Label lblBlank2; + + private global::Gtk.Label lblBlank3; + + private global::Gtk.Label lblBlank4; + + private global::Gtk.Label lblBlank5; + + private global::Gtk.Label lblBlank8; + + private global::Gtk.Label lblBlank9; + + private global::Gtk.Label lblCoord1; + + private global::Gtk.Label lblCoord2; + + private global::Gtk.Label lblEventLog; + + private global::Gtk.Label lblGear; + + private global::Gtk.Label lblGroundLayer; + + private global::Gtk.Label lblHoleMsg; + + private global::Gtk.Label lblHoleOnTop; + + private global::Gtk.Label lblHotbar; + + private global::Gtk.Label lblInfo; + + private global::Gtk.Label lblItemLayer; + + private global::Gtk.Label lblLog1; + + private global::Gtk.Label lblLog2; + + private global::Gtk.Label lblLog3; + + private global::Gtk.Label lblLog4; + + private global::Gtk.Label lblSuperLayer; + + protected virtual void Build() + { + global::Stetic.Gui.Initialize(this); + // Widget Mundus.Views.Windows.GameWindows.Small.SmallGameWindow + this.Name = "Mundus.Views.Windows.GameWindows.Small.SmallGameWindow"; + this.Title = "Mundus (Small Window)"; + this.WindowPosition = ((global::Gtk.WindowPosition)(2)); + this.Resizable = false; + this.AllowGrow = false; + // Container child Mundus.Views.Windows.GameWindows.Small.SmallGameWindow.Gtk.Container+ContainerChild + this.tbUI = new global::Gtk.Table(((uint)(17)), ((uint)(21)), false); + this.tbUI.Name = "tbUI"; + // Container child tbUI.Gtk.Table+TableChild + this.btnA1 = new global::Gtk.Button(); + this.btnA1.WidthRequest = 50; + this.btnA1.HeightRequest = 50; + this.btnA1.CanFocus = true; + this.btnA1.Name = "btnA1"; + this.btnA1.UseUnderline = true; + global::Gtk.Image w1 = new global::Gtk.Image(); + this.btnA1.Image = w1; + this.tbUI.Add(this.btnA1); + global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA1])); + w2.TopAttach = ((uint)(9)); + w2.BottomAttach = ((uint)(10)); + w2.LeftAttach = ((uint)(15)); + w2.RightAttach = ((uint)(16)); + w2.XOptions = ((global::Gtk.AttachOptions)(4)); + w2.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA10 = new global::Gtk.Button(); + this.btnA10.WidthRequest = 50; + this.btnA10.HeightRequest = 50; + this.btnA10.CanFocus = true; + this.btnA10.Name = "btnA10"; + this.btnA10.UseUnderline = true; + global::Gtk.Image w3 = new global::Gtk.Image(); + this.btnA10.Image = w3; + this.tbUI.Add(this.btnA10); + global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA10])); + w4.TopAttach = ((uint)(10)); + w4.BottomAttach = ((uint)(11)); + w4.LeftAttach = ((uint)(19)); + w4.RightAttach = ((uint)(20)); + w4.XOptions = ((global::Gtk.AttachOptions)(4)); + w4.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA2 = new global::Gtk.Button(); + this.btnA2.WidthRequest = 50; + this.btnA2.HeightRequest = 50; + this.btnA2.CanFocus = true; + this.btnA2.Name = "btnA2"; + this.btnA2.UseUnderline = true; + global::Gtk.Image w5 = new global::Gtk.Image(); + this.btnA2.Image = w5; + this.tbUI.Add(this.btnA2); + global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA2])); + w6.TopAttach = ((uint)(9)); + w6.BottomAttach = ((uint)(10)); + w6.LeftAttach = ((uint)(16)); + w6.RightAttach = ((uint)(17)); + w6.XOptions = ((global::Gtk.AttachOptions)(4)); + w6.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA3 = new global::Gtk.Button(); + this.btnA3.WidthRequest = 50; + this.btnA3.HeightRequest = 50; + this.btnA3.CanFocus = true; + this.btnA3.Name = "btnA3"; + this.btnA3.UseUnderline = true; + global::Gtk.Image w7 = new global::Gtk.Image(); + this.btnA3.Image = w7; + this.tbUI.Add(this.btnA3); + global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA3])); + w8.TopAttach = ((uint)(9)); + w8.BottomAttach = ((uint)(10)); + w8.LeftAttach = ((uint)(17)); + w8.RightAttach = ((uint)(18)); + w8.XOptions = ((global::Gtk.AttachOptions)(4)); + w8.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA4 = new global::Gtk.Button(); + this.btnA4.WidthRequest = 50; + this.btnA4.HeightRequest = 50; + this.btnA4.CanFocus = true; + this.btnA4.Name = "btnA4"; + this.btnA4.UseUnderline = true; + global::Gtk.Image w9 = new global::Gtk.Image(); + this.btnA4.Image = w9; + this.tbUI.Add(this.btnA4); + global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA4])); + w10.TopAttach = ((uint)(9)); + w10.BottomAttach = ((uint)(10)); + w10.LeftAttach = ((uint)(18)); + w10.RightAttach = ((uint)(19)); + w10.XOptions = ((global::Gtk.AttachOptions)(4)); + w10.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA5 = new global::Gtk.Button(); + this.btnA5.WidthRequest = 50; + this.btnA5.HeightRequest = 50; + this.btnA5.CanFocus = true; + this.btnA5.Name = "btnA5"; + this.btnA5.UseUnderline = true; + global::Gtk.Image w11 = new global::Gtk.Image(); + this.btnA5.Image = w11; + this.tbUI.Add(this.btnA5); + global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA5])); + w12.TopAttach = ((uint)(9)); + w12.BottomAttach = ((uint)(10)); + w12.LeftAttach = ((uint)(19)); + w12.RightAttach = ((uint)(20)); + w12.XOptions = ((global::Gtk.AttachOptions)(4)); + w12.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA6 = new global::Gtk.Button(); + this.btnA6.WidthRequest = 50; + this.btnA6.HeightRequest = 50; + this.btnA6.CanFocus = true; + this.btnA6.Name = "btnA6"; + this.btnA6.UseUnderline = true; + global::Gtk.Image w13 = new global::Gtk.Image(); + this.btnA6.Image = w13; + this.tbUI.Add(this.btnA6); + global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA6])); + w14.TopAttach = ((uint)(10)); + w14.BottomAttach = ((uint)(11)); + w14.LeftAttach = ((uint)(15)); + w14.RightAttach = ((uint)(16)); + w14.XOptions = ((global::Gtk.AttachOptions)(4)); + w14.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA7 = new global::Gtk.Button(); + this.btnA7.WidthRequest = 50; + this.btnA7.HeightRequest = 50; + this.btnA7.CanFocus = true; + this.btnA7.Name = "btnA7"; + this.btnA7.UseUnderline = true; + global::Gtk.Image w15 = new global::Gtk.Image(); + this.btnA7.Image = w15; + this.tbUI.Add(this.btnA7); + global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA7])); + w16.TopAttach = ((uint)(10)); + w16.BottomAttach = ((uint)(11)); + w16.LeftAttach = ((uint)(16)); + w16.RightAttach = ((uint)(17)); + w16.XOptions = ((global::Gtk.AttachOptions)(4)); + w16.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA8 = new global::Gtk.Button(); + this.btnA8.WidthRequest = 50; + this.btnA8.HeightRequest = 50; + this.btnA8.CanFocus = true; + this.btnA8.Name = "btnA8"; + this.btnA8.UseUnderline = true; + global::Gtk.Image w17 = new global::Gtk.Image(); + this.btnA8.Image = w17; + this.tbUI.Add(this.btnA8); + global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA8])); + w18.TopAttach = ((uint)(10)); + w18.BottomAttach = ((uint)(11)); + w18.LeftAttach = ((uint)(17)); + w18.RightAttach = ((uint)(18)); + w18.XOptions = ((global::Gtk.AttachOptions)(4)); + w18.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnA9 = new global::Gtk.Button(); + this.btnA9.WidthRequest = 50; + this.btnA9.HeightRequest = 50; + this.btnA9.CanFocus = true; + this.btnA9.Name = "btnA9"; + this.btnA9.UseUnderline = true; + global::Gtk.Image w19 = new global::Gtk.Image(); + this.btnA9.Image = w19; + this.tbUI.Add(this.btnA9); + global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA9])); + w20.TopAttach = ((uint)(10)); + w20.BottomAttach = ((uint)(11)); + w20.LeftAttach = ((uint)(18)); + w20.RightAttach = ((uint)(19)); + w20.XOptions = ((global::Gtk.AttachOptions)(4)); + w20.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnCrafting = new global::Gtk.Button(); + this.btnCrafting.CanFocus = true; + this.btnCrafting.Name = "btnCrafting"; + this.btnCrafting.UseUnderline = true; + this.btnCrafting.Label = "Crafting"; + this.tbUI.Add(this.btnCrafting); + global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnCrafting])); + w21.TopAttach = ((uint)(6)); + w21.BottomAttach = ((uint)(7)); + w21.LeftAttach = ((uint)(15)); + w21.RightAttach = ((uint)(20)); + w21.XOptions = ((global::Gtk.AttachOptions)(4)); + w21.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG1 = new global::Gtk.Button(); + this.btnG1.WidthRequest = 50; + this.btnG1.HeightRequest = 50; + this.btnG1.CanFocus = true; + this.btnG1.Name = "btnG1"; + this.btnG1.UseUnderline = true; + global::Gtk.Image w22 = new global::Gtk.Image(); + this.btnG1.Image = w22; + this.tbUI.Add(this.btnG1); + global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG1])); + w23.TopAttach = ((uint)(12)); + w23.BottomAttach = ((uint)(13)); + w23.LeftAttach = ((uint)(15)); + w23.RightAttach = ((uint)(16)); + w23.XOptions = ((global::Gtk.AttachOptions)(4)); + w23.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG2 = new global::Gtk.Button(); + this.btnG2.WidthRequest = 50; + this.btnG2.HeightRequest = 50; + this.btnG2.CanFocus = true; + this.btnG2.Name = "btnG2"; + this.btnG2.UseUnderline = true; + global::Gtk.Image w24 = new global::Gtk.Image(); + this.btnG2.Image = w24; + this.tbUI.Add(this.btnG2); + global::Gtk.Table.TableChild w25 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG2])); + w25.TopAttach = ((uint)(12)); + w25.BottomAttach = ((uint)(13)); + w25.LeftAttach = ((uint)(16)); + w25.RightAttach = ((uint)(17)); + w25.XOptions = ((global::Gtk.AttachOptions)(4)); + w25.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG3 = new global::Gtk.Button(); + this.btnG3.WidthRequest = 50; + this.btnG3.HeightRequest = 50; + this.btnG3.CanFocus = true; + this.btnG3.Name = "btnG3"; + this.btnG3.UseUnderline = true; + global::Gtk.Image w26 = new global::Gtk.Image(); + this.btnG3.Image = w26; + this.tbUI.Add(this.btnG3); + global::Gtk.Table.TableChild w27 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG3])); + w27.TopAttach = ((uint)(12)); + w27.BottomAttach = ((uint)(13)); + w27.LeftAttach = ((uint)(17)); + w27.RightAttach = ((uint)(18)); + w27.XOptions = ((global::Gtk.AttachOptions)(4)); + w27.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG4 = new global::Gtk.Button(); + this.btnG4.WidthRequest = 50; + this.btnG4.HeightRequest = 50; + this.btnG4.CanFocus = true; + this.btnG4.Name = "btnG4"; + this.btnG4.UseUnderline = true; + global::Gtk.Image w28 = new global::Gtk.Image(); + this.btnG4.Image = w28; + this.tbUI.Add(this.btnG4); + global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG4])); + w29.TopAttach = ((uint)(12)); + w29.BottomAttach = ((uint)(13)); + w29.LeftAttach = ((uint)(18)); + w29.RightAttach = ((uint)(19)); + w29.XOptions = ((global::Gtk.AttachOptions)(4)); + w29.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnG5 = new global::Gtk.Button(); + this.btnG5.WidthRequest = 50; + this.btnG5.HeightRequest = 50; + this.btnG5.CanFocus = true; + this.btnG5.Name = "btnG5"; + this.btnG5.UseUnderline = true; + global::Gtk.Image w30 = new global::Gtk.Image(); + this.btnG5.Image = w30; + this.tbUI.Add(this.btnG5); + global::Gtk.Table.TableChild w31 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG5])); + w31.TopAttach = ((uint)(12)); + w31.BottomAttach = ((uint)(13)); + w31.LeftAttach = ((uint)(19)); + w31.RightAttach = ((uint)(20)); + w31.XOptions = ((global::Gtk.AttachOptions)(4)); + w31.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH1 = new global::Gtk.Button(); + this.btnH1.WidthRequest = 50; + this.btnH1.HeightRequest = 50; + this.btnH1.CanFocus = true; + this.btnH1.Name = "btnH1"; + this.btnH1.UseUnderline = true; + this.btnH1.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w32 = new global::Gtk.Image(); + this.btnH1.Image = w32; + this.tbUI.Add(this.btnH1); + global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH1])); + w33.TopAttach = ((uint)(10)); + w33.BottomAttach = ((uint)(11)); + w33.LeftAttach = ((uint)(8)); + w33.RightAttach = ((uint)(9)); + w33.XOptions = ((global::Gtk.AttachOptions)(4)); + w33.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH2 = new global::Gtk.Button(); + this.btnH2.WidthRequest = 50; + this.btnH2.HeightRequest = 50; + this.btnH2.CanFocus = true; + this.btnH2.Name = "btnH2"; + this.btnH2.UseUnderline = true; + this.btnH2.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w34 = new global::Gtk.Image(); + this.btnH2.Image = w34; + this.tbUI.Add(this.btnH2); + global::Gtk.Table.TableChild w35 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH2])); + w35.TopAttach = ((uint)(10)); + w35.BottomAttach = ((uint)(11)); + w35.LeftAttach = ((uint)(9)); + w35.RightAttach = ((uint)(10)); + w35.XOptions = ((global::Gtk.AttachOptions)(4)); + w35.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH3 = new global::Gtk.Button(); + this.btnH3.WidthRequest = 50; + this.btnH3.HeightRequest = 50; + this.btnH3.CanFocus = true; + this.btnH3.Name = "btnH3"; + this.btnH3.UseUnderline = true; + this.btnH3.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w36 = new global::Gtk.Image(); + this.btnH3.Image = w36; + this.tbUI.Add(this.btnH3); + global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH3])); + w37.TopAttach = ((uint)(10)); + w37.BottomAttach = ((uint)(11)); + w37.LeftAttach = ((uint)(10)); + w37.RightAttach = ((uint)(11)); + w37.XOptions = ((global::Gtk.AttachOptions)(4)); + w37.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH4 = new global::Gtk.Button(); + this.btnH4.WidthRequest = 50; + this.btnH4.HeightRequest = 50; + this.btnH4.CanFocus = true; + this.btnH4.Name = "btnH4"; + this.btnH4.UseUnderline = true; + this.btnH4.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w38 = new global::Gtk.Image(); + this.btnH4.Image = w38; + this.tbUI.Add(this.btnH4); + global::Gtk.Table.TableChild w39 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH4])); + w39.TopAttach = ((uint)(10)); + w39.BottomAttach = ((uint)(11)); + w39.LeftAttach = ((uint)(11)); + w39.RightAttach = ((uint)(12)); + w39.XOptions = ((global::Gtk.AttachOptions)(4)); + w39.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnH5 = new global::Gtk.Button(); + this.btnH5.WidthRequest = 50; + this.btnH5.HeightRequest = 50; + this.btnH5.CanFocus = true; + this.btnH5.Name = "btnH5"; + this.btnH5.UseUnderline = true; + this.btnH5.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w40 = new global::Gtk.Image(); + this.btnH5.Image = w40; + this.tbUI.Add(this.btnH5); + global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH5])); + w41.TopAttach = ((uint)(10)); + w41.BottomAttach = ((uint)(11)); + w41.LeftAttach = ((uint)(12)); + w41.RightAttach = ((uint)(13)); + w41.XOptions = ((global::Gtk.AttachOptions)(4)); + w41.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI1 = new global::Gtk.Button(); + this.btnI1.WidthRequest = 50; + this.btnI1.HeightRequest = 50; + this.btnI1.CanFocus = true; + this.btnI1.Name = "btnI1"; + this.btnI1.UseUnderline = true; + this.btnI1.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w42 = new global::Gtk.Image(); + this.btnI1.Image = w42; + this.tbUI.Add(this.btnI1); + global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI1])); + w43.TopAttach = ((uint)(1)); + w43.BottomAttach = ((uint)(2)); + w43.LeftAttach = ((uint)(15)); + w43.RightAttach = ((uint)(16)); + w43.XOptions = ((global::Gtk.AttachOptions)(4)); + w43.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI10 = new global::Gtk.Button(); + this.btnI10.WidthRequest = 50; + this.btnI10.HeightRequest = 50; + this.btnI10.CanFocus = true; + this.btnI10.Name = "btnI10"; + this.btnI10.UseUnderline = true; + this.btnI10.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w44 = new global::Gtk.Image(); + this.btnI10.Image = w44; + this.tbUI.Add(this.btnI10); + global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI10])); + w45.TopAttach = ((uint)(2)); + w45.BottomAttach = ((uint)(3)); + w45.LeftAttach = ((uint)(19)); + w45.RightAttach = ((uint)(20)); + w45.XOptions = ((global::Gtk.AttachOptions)(4)); + w45.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI11 = new global::Gtk.Button(); + this.btnI11.WidthRequest = 50; + this.btnI11.HeightRequest = 50; + this.btnI11.CanFocus = true; + this.btnI11.Name = "btnI11"; + this.btnI11.UseUnderline = true; + this.btnI11.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w46 = new global::Gtk.Image(); + this.btnI11.Image = w46; + this.tbUI.Add(this.btnI11); + global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI11])); + w47.TopAttach = ((uint)(3)); + w47.BottomAttach = ((uint)(4)); + w47.LeftAttach = ((uint)(15)); + w47.RightAttach = ((uint)(16)); + w47.XOptions = ((global::Gtk.AttachOptions)(4)); + w47.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI12 = new global::Gtk.Button(); + this.btnI12.WidthRequest = 50; + this.btnI12.HeightRequest = 50; + this.btnI12.CanFocus = true; + this.btnI12.Name = "btnI12"; + this.btnI12.UseUnderline = true; + this.btnI12.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w48 = new global::Gtk.Image(); + this.btnI12.Image = w48; + this.tbUI.Add(this.btnI12); + global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI12])); + w49.TopAttach = ((uint)(3)); + w49.BottomAttach = ((uint)(4)); + w49.LeftAttach = ((uint)(16)); + w49.RightAttach = ((uint)(17)); + w49.XOptions = ((global::Gtk.AttachOptions)(4)); + w49.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI13 = new global::Gtk.Button(); + this.btnI13.WidthRequest = 50; + this.btnI13.HeightRequest = 50; + this.btnI13.CanFocus = true; + this.btnI13.Name = "btnI13"; + this.btnI13.UseUnderline = true; + this.btnI13.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w50 = new global::Gtk.Image(); + this.btnI13.Image = w50; + this.tbUI.Add(this.btnI13); + global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI13])); + w51.TopAttach = ((uint)(3)); + w51.BottomAttach = ((uint)(4)); + w51.LeftAttach = ((uint)(17)); + w51.RightAttach = ((uint)(18)); + w51.XOptions = ((global::Gtk.AttachOptions)(4)); + w51.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI14 = new global::Gtk.Button(); + this.btnI14.WidthRequest = 50; + this.btnI14.HeightRequest = 50; + this.btnI14.CanFocus = true; + this.btnI14.Name = "btnI14"; + this.btnI14.UseUnderline = true; + this.btnI14.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w52 = new global::Gtk.Image(); + this.btnI14.Image = w52; + this.tbUI.Add(this.btnI14); + global::Gtk.Table.TableChild w53 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI14])); + w53.TopAttach = ((uint)(3)); + w53.BottomAttach = ((uint)(4)); + w53.LeftAttach = ((uint)(18)); + w53.RightAttach = ((uint)(19)); + w53.XOptions = ((global::Gtk.AttachOptions)(4)); + w53.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI15 = new global::Gtk.Button(); + this.btnI15.WidthRequest = 50; + this.btnI15.HeightRequest = 50; + this.btnI15.CanFocus = true; + this.btnI15.Name = "btnI15"; + this.btnI15.UseUnderline = true; + this.btnI15.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w54 = new global::Gtk.Image(); + this.btnI15.Image = w54; + this.tbUI.Add(this.btnI15); + global::Gtk.Table.TableChild w55 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI15])); + w55.TopAttach = ((uint)(3)); + w55.BottomAttach = ((uint)(4)); + w55.LeftAttach = ((uint)(19)); + w55.RightAttach = ((uint)(20)); + w55.XOptions = ((global::Gtk.AttachOptions)(4)); + w55.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI16 = new global::Gtk.Button(); + this.btnI16.WidthRequest = 50; + this.btnI16.HeightRequest = 50; + this.btnI16.CanFocus = true; + this.btnI16.Name = "btnI16"; + this.btnI16.UseUnderline = true; + this.btnI16.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w56 = new global::Gtk.Image(); + this.btnI16.Image = w56; + this.tbUI.Add(this.btnI16); + global::Gtk.Table.TableChild w57 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI16])); + w57.TopAttach = ((uint)(4)); + w57.BottomAttach = ((uint)(5)); + w57.LeftAttach = ((uint)(15)); + w57.RightAttach = ((uint)(16)); + w57.XOptions = ((global::Gtk.AttachOptions)(4)); + w57.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI17 = new global::Gtk.Button(); + this.btnI17.WidthRequest = 50; + this.btnI17.HeightRequest = 50; + this.btnI17.CanFocus = true; + this.btnI17.Name = "btnI17"; + this.btnI17.UseUnderline = true; + this.btnI17.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w58 = new global::Gtk.Image(); + this.btnI17.Image = w58; + this.tbUI.Add(this.btnI17); + global::Gtk.Table.TableChild w59 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI17])); + w59.TopAttach = ((uint)(4)); + w59.BottomAttach = ((uint)(5)); + w59.LeftAttach = ((uint)(16)); + w59.RightAttach = ((uint)(17)); + w59.XOptions = ((global::Gtk.AttachOptions)(4)); + w59.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI18 = new global::Gtk.Button(); + this.btnI18.WidthRequest = 50; + this.btnI18.HeightRequest = 50; + this.btnI18.CanFocus = true; + this.btnI18.Name = "btnI18"; + this.btnI18.UseUnderline = true; + this.btnI18.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w60 = new global::Gtk.Image(); + this.btnI18.Image = w60; + this.tbUI.Add(this.btnI18); + global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI18])); + w61.TopAttach = ((uint)(4)); + w61.BottomAttach = ((uint)(5)); + w61.LeftAttach = ((uint)(17)); + w61.RightAttach = ((uint)(18)); + w61.XOptions = ((global::Gtk.AttachOptions)(4)); + w61.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI19 = new global::Gtk.Button(); + this.btnI19.WidthRequest = 50; + this.btnI19.HeightRequest = 50; + this.btnI19.CanFocus = true; + this.btnI19.Name = "btnI19"; + this.btnI19.UseUnderline = true; + this.btnI19.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w62 = new global::Gtk.Image(); + this.btnI19.Image = w62; + this.tbUI.Add(this.btnI19); + global::Gtk.Table.TableChild w63 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI19])); + w63.TopAttach = ((uint)(4)); + w63.BottomAttach = ((uint)(5)); + w63.LeftAttach = ((uint)(18)); + w63.RightAttach = ((uint)(19)); + w63.XOptions = ((global::Gtk.AttachOptions)(4)); + w63.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI2 = new global::Gtk.Button(); + this.btnI2.WidthRequest = 50; + this.btnI2.HeightRequest = 50; + this.btnI2.CanFocus = true; + this.btnI2.Name = "btnI2"; + this.btnI2.UseUnderline = true; + this.btnI2.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w64 = new global::Gtk.Image(); + this.btnI2.Image = w64; + this.tbUI.Add(this.btnI2); + global::Gtk.Table.TableChild w65 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI2])); + w65.TopAttach = ((uint)(1)); + w65.BottomAttach = ((uint)(2)); + w65.LeftAttach = ((uint)(16)); + w65.RightAttach = ((uint)(17)); + w65.XOptions = ((global::Gtk.AttachOptions)(4)); + w65.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI20 = new global::Gtk.Button(); + this.btnI20.WidthRequest = 50; + this.btnI20.HeightRequest = 50; + this.btnI20.CanFocus = true; + this.btnI20.Name = "btnI20"; + this.btnI20.UseUnderline = true; + this.btnI20.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w66 = new global::Gtk.Image(); + this.btnI20.Image = w66; + this.tbUI.Add(this.btnI20); + global::Gtk.Table.TableChild w67 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI20])); + w67.TopAttach = ((uint)(4)); + w67.BottomAttach = ((uint)(5)); + w67.LeftAttach = ((uint)(19)); + w67.RightAttach = ((uint)(20)); + w67.XOptions = ((global::Gtk.AttachOptions)(4)); + w67.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI21 = new global::Gtk.Button(); + this.btnI21.WidthRequest = 50; + this.btnI21.HeightRequest = 50; + this.btnI21.CanFocus = true; + this.btnI21.Name = "btnI21"; + this.btnI21.UseUnderline = true; + this.btnI21.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w68 = new global::Gtk.Image(); + this.btnI21.Image = w68; + this.tbUI.Add(this.btnI21); + global::Gtk.Table.TableChild w69 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI21])); + w69.TopAttach = ((uint)(5)); + w69.BottomAttach = ((uint)(6)); + w69.LeftAttach = ((uint)(15)); + w69.RightAttach = ((uint)(16)); + w69.XOptions = ((global::Gtk.AttachOptions)(4)); + w69.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI22 = new global::Gtk.Button(); + this.btnI22.WidthRequest = 50; + this.btnI22.HeightRequest = 50; + this.btnI22.CanFocus = true; + this.btnI22.Name = "btnI22"; + this.btnI22.UseUnderline = true; + this.btnI22.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w70 = new global::Gtk.Image(); + this.btnI22.Image = w70; + this.tbUI.Add(this.btnI22); + global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI22])); + w71.TopAttach = ((uint)(5)); + w71.BottomAttach = ((uint)(6)); + w71.LeftAttach = ((uint)(16)); + w71.RightAttach = ((uint)(17)); + w71.XOptions = ((global::Gtk.AttachOptions)(4)); + w71.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI23 = new global::Gtk.Button(); + this.btnI23.WidthRequest = 50; + this.btnI23.HeightRequest = 50; + this.btnI23.CanFocus = true; + this.btnI23.Name = "btnI23"; + this.btnI23.UseUnderline = true; + this.btnI23.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w72 = new global::Gtk.Image(); + this.btnI23.Image = w72; + this.tbUI.Add(this.btnI23); + global::Gtk.Table.TableChild w73 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI23])); + w73.TopAttach = ((uint)(5)); + w73.BottomAttach = ((uint)(6)); + w73.LeftAttach = ((uint)(17)); + w73.RightAttach = ((uint)(18)); + w73.XOptions = ((global::Gtk.AttachOptions)(4)); + w73.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI24 = new global::Gtk.Button(); + this.btnI24.WidthRequest = 50; + this.btnI24.HeightRequest = 50; + this.btnI24.CanFocus = true; + this.btnI24.Name = "btnI24"; + this.btnI24.UseUnderline = true; + this.btnI24.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w74 = new global::Gtk.Image(); + this.btnI24.Image = w74; + this.tbUI.Add(this.btnI24); + global::Gtk.Table.TableChild w75 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI24])); + w75.TopAttach = ((uint)(5)); + w75.BottomAttach = ((uint)(6)); + w75.LeftAttach = ((uint)(18)); + w75.RightAttach = ((uint)(19)); + w75.XOptions = ((global::Gtk.AttachOptions)(4)); + w75.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI25 = new global::Gtk.Button(); + this.btnI25.WidthRequest = 50; + this.btnI25.HeightRequest = 50; + this.btnI25.CanFocus = true; + this.btnI25.Name = "btnI25"; + this.btnI25.UseUnderline = true; + this.btnI25.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w76 = new global::Gtk.Image(); + this.btnI25.Image = w76; + this.tbUI.Add(this.btnI25); + global::Gtk.Table.TableChild w77 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI25])); + w77.TopAttach = ((uint)(5)); + w77.BottomAttach = ((uint)(6)); + w77.LeftAttach = ((uint)(19)); + w77.RightAttach = ((uint)(20)); + w77.XOptions = ((global::Gtk.AttachOptions)(4)); + w77.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI3 = new global::Gtk.Button(); + this.btnI3.WidthRequest = 50; + this.btnI3.HeightRequest = 50; + this.btnI3.CanFocus = true; + this.btnI3.Name = "btnI3"; + this.btnI3.UseUnderline = true; + this.btnI3.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w78 = new global::Gtk.Image(); + this.btnI3.Image = w78; + this.tbUI.Add(this.btnI3); + global::Gtk.Table.TableChild w79 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI3])); + w79.TopAttach = ((uint)(1)); + w79.BottomAttach = ((uint)(2)); + w79.LeftAttach = ((uint)(17)); + w79.RightAttach = ((uint)(18)); + w79.XOptions = ((global::Gtk.AttachOptions)(4)); + w79.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI4 = new global::Gtk.Button(); + this.btnI4.WidthRequest = 50; + this.btnI4.HeightRequest = 50; + this.btnI4.CanFocus = true; + this.btnI4.Name = "btnI4"; + this.btnI4.UseUnderline = true; + this.btnI4.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w80 = new global::Gtk.Image(); + this.btnI4.Image = w80; + this.tbUI.Add(this.btnI4); + global::Gtk.Table.TableChild w81 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI4])); + w81.TopAttach = ((uint)(1)); + w81.BottomAttach = ((uint)(2)); + w81.LeftAttach = ((uint)(18)); + w81.RightAttach = ((uint)(19)); + w81.XOptions = ((global::Gtk.AttachOptions)(4)); + w81.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI5 = new global::Gtk.Button(); + this.btnI5.WidthRequest = 50; + this.btnI5.HeightRequest = 50; + this.btnI5.CanFocus = true; + this.btnI5.Name = "btnI5"; + this.btnI5.UseUnderline = true; + this.btnI5.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w82 = new global::Gtk.Image(); + this.btnI5.Image = w82; + this.tbUI.Add(this.btnI5); + global::Gtk.Table.TableChild w83 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI5])); + w83.TopAttach = ((uint)(1)); + w83.BottomAttach = ((uint)(2)); + w83.LeftAttach = ((uint)(19)); + w83.RightAttach = ((uint)(20)); + w83.XOptions = ((global::Gtk.AttachOptions)(4)); + w83.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI6 = new global::Gtk.Button(); + this.btnI6.WidthRequest = 50; + this.btnI6.HeightRequest = 50; + this.btnI6.CanFocus = true; + this.btnI6.Name = "btnI6"; + this.btnI6.UseUnderline = true; + this.btnI6.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w84 = new global::Gtk.Image(); + this.btnI6.Image = w84; + this.tbUI.Add(this.btnI6); + global::Gtk.Table.TableChild w85 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI6])); + w85.TopAttach = ((uint)(2)); + w85.BottomAttach = ((uint)(3)); + w85.LeftAttach = ((uint)(15)); + w85.RightAttach = ((uint)(16)); + w85.XOptions = ((global::Gtk.AttachOptions)(4)); + w85.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI7 = new global::Gtk.Button(); + this.btnI7.WidthRequest = 50; + this.btnI7.HeightRequest = 50; + this.btnI7.CanFocus = true; + this.btnI7.Name = "btnI7"; + this.btnI7.UseUnderline = true; + this.btnI7.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w86 = new global::Gtk.Image(); + this.btnI7.Image = w86; + this.tbUI.Add(this.btnI7); + global::Gtk.Table.TableChild w87 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI7])); + w87.TopAttach = ((uint)(2)); + w87.BottomAttach = ((uint)(3)); + w87.LeftAttach = ((uint)(16)); + w87.RightAttach = ((uint)(17)); + w87.XOptions = ((global::Gtk.AttachOptions)(4)); + w87.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI8 = new global::Gtk.Button(); + this.btnI8.WidthRequest = 50; + this.btnI8.HeightRequest = 50; + this.btnI8.CanFocus = true; + this.btnI8.Name = "btnI8"; + this.btnI8.UseUnderline = true; + this.btnI8.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w88 = new global::Gtk.Image(); + this.btnI8.Image = w88; + this.tbUI.Add(this.btnI8); + global::Gtk.Table.TableChild w89 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI8])); + w89.TopAttach = ((uint)(2)); + w89.BottomAttach = ((uint)(3)); + w89.LeftAttach = ((uint)(17)); + w89.RightAttach = ((uint)(18)); + w89.XOptions = ((global::Gtk.AttachOptions)(4)); + w89.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnI9 = new global::Gtk.Button(); + this.btnI9.WidthRequest = 50; + this.btnI9.HeightRequest = 50; + this.btnI9.CanFocus = true; + this.btnI9.Name = "btnI9"; + this.btnI9.UseUnderline = true; + this.btnI9.Relief = ((global::Gtk.ReliefStyle)(1)); + global::Gtk.Image w90 = new global::Gtk.Image(); + this.btnI9.Image = w90; + this.tbUI.Add(this.btnI9); + global::Gtk.Table.TableChild w91 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI9])); + w91.TopAttach = ((uint)(2)); + w91.BottomAttach = ((uint)(3)); + w91.LeftAttach = ((uint)(18)); + w91.RightAttach = ((uint)(19)); + w91.XOptions = ((global::Gtk.AttachOptions)(4)); + w91.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnIG1 = new global::Gtk.Button(); + this.btnIG1.WidthRequest = 50; + this.btnIG1.HeightRequest = 50; + this.btnIG1.CanFocus = true; + this.btnIG1.Name = "btnIG1"; + this.btnIG1.UseUnderline = true; + this.btnIG1.Label = "TESTING"; + this.tbUI.Add(this.btnIG1); + global::Gtk.Table.TableChild w92 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG1])); + w92.TopAttach = ((uint)(13)); + w92.BottomAttach = ((uint)(14)); + w92.LeftAttach = ((uint)(15)); + w92.RightAttach = ((uint)(16)); + w92.XOptions = ((global::Gtk.AttachOptions)(4)); + w92.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnIG2 = new global::Gtk.Button(); + this.btnIG2.WidthRequest = 50; + this.btnIG2.HeightRequest = 50; + this.btnIG2.CanFocus = true; + this.btnIG2.Name = "btnIG2"; + this.btnIG2.UseUnderline = true; + this.btnIG2.Label = "TESTING"; + this.tbUI.Add(this.btnIG2); + global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG2])); + w93.TopAttach = ((uint)(13)); + w93.BottomAttach = ((uint)(14)); + w93.LeftAttach = ((uint)(16)); + w93.RightAttach = ((uint)(17)); + w93.XOptions = ((global::Gtk.AttachOptions)(4)); + w93.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnInv = new global::Gtk.Button(); + this.btnInv.WidthRequest = 50; + this.btnInv.HeightRequest = 50; + this.btnInv.CanFocus = true; + this.btnInv.Name = "btnInv"; + this.btnInv.UseUnderline = true; + this.btnInv.Label = "Inv"; + this.tbUI.Add(this.btnInv); + global::Gtk.Table.TableChild w94 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); + w94.TopAttach = ((uint)(9)); + w94.BottomAttach = ((uint)(10)); + w94.LeftAttach = ((uint)(13)); + w94.RightAttach = ((uint)(14)); + w94.XOptions = ((global::Gtk.AttachOptions)(4)); + w94.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnLog = new global::Gtk.Button(); + this.btnLog.WidthRequest = 250; + this.btnLog.HeightRequest = 50; + this.btnLog.CanFocus = true; + this.btnLog.Name = "btnLog"; + this.btnLog.UseUnderline = true; + this.btnLog.FocusOnClick = false; + this.btnLog.Label = "Event Log"; + this.tbUI.Add(this.btnLog); + global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); + w95.TopAttach = ((uint)(11)); + w95.BottomAttach = ((uint)(12)); + w95.LeftAttach = ((uint)(8)); + w95.RightAttach = ((uint)(13)); + w95.XOptions = ((global::Gtk.AttachOptions)(0)); + w95.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnMap = new global::Gtk.Button(); + this.btnMap.WidthRequest = 50; + this.btnMap.HeightRequest = 50; + this.btnMap.CanFocus = true; + this.btnMap.Name = "btnMap"; + this.btnMap.UseUnderline = true; + this.btnMap.Label = "Map"; + this.tbUI.Add(this.btnMap); + global::Gtk.Table.TableChild w96 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); + w96.TopAttach = ((uint)(9)); + w96.BottomAttach = ((uint)(10)); + w96.LeftAttach = ((uint)(7)); + w96.RightAttach = ((uint)(8)); + w96.XOptions = ((global::Gtk.AttachOptions)(4)); + w96.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnMusic = new global::Gtk.Button(); + this.btnMusic.WidthRequest = 50; + this.btnMusic.HeightRequest = 50; + this.btnMusic.CanFocus = true; + this.btnMusic.Name = "btnMusic"; + this.btnMusic.UseUnderline = true; + this.btnMusic.Label = "Music"; + this.tbUI.Add(this.btnMusic); + global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); + w97.TopAttach = ((uint)(11)); + w97.BottomAttach = ((uint)(12)); + w97.LeftAttach = ((uint)(7)); + w97.RightAttach = ((uint)(8)); + w97.XOptions = ((global::Gtk.AttachOptions)(4)); + w97.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP1 = new global::Gtk.Button(); + this.btnP1.WidthRequest = 50; + this.btnP1.HeightRequest = 50; + this.btnP1.CanFocus = true; + this.btnP1.Name = "btnP1"; + this.btnP1.UseUnderline = true; + this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w98 = new global::Gtk.Image(); + this.btnP1.Image = w98; + this.tbUI.Add(this.btnP1); + global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); + w99.TopAttach = ((uint)(1)); + w99.BottomAttach = ((uint)(2)); + w99.LeftAttach = ((uint)(8)); + w99.RightAttach = ((uint)(9)); + w99.XOptions = ((global::Gtk.AttachOptions)(4)); + w99.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP10 = new global::Gtk.Button(); + this.btnP10.WidthRequest = 50; + this.btnP10.HeightRequest = 50; + this.btnP10.CanFocus = true; + this.btnP10.Name = "btnP10"; + this.btnP10.UseUnderline = true; + this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w100 = new global::Gtk.Image(); + this.btnP10.Image = w100; + this.tbUI.Add(this.btnP10); + global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); + w101.TopAttach = ((uint)(2)); + w101.BottomAttach = ((uint)(3)); + w101.LeftAttach = ((uint)(12)); + w101.RightAttach = ((uint)(13)); + w101.XOptions = ((global::Gtk.AttachOptions)(4)); + w101.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP11 = new global::Gtk.Button(); + this.btnP11.WidthRequest = 50; + this.btnP11.HeightRequest = 50; + this.btnP11.CanFocus = true; + this.btnP11.Name = "btnP11"; + this.btnP11.UseUnderline = true; + this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w102 = new global::Gtk.Image(); + this.btnP11.Image = w102; + this.tbUI.Add(this.btnP11); + global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); + w103.TopAttach = ((uint)(3)); + w103.BottomAttach = ((uint)(4)); + w103.LeftAttach = ((uint)(8)); + w103.RightAttach = ((uint)(9)); + w103.XOptions = ((global::Gtk.AttachOptions)(4)); + w103.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP12 = new global::Gtk.Button(); + this.btnP12.WidthRequest = 50; + this.btnP12.HeightRequest = 50; + this.btnP12.CanFocus = true; + this.btnP12.Name = "btnP12"; + this.btnP12.UseUnderline = true; + this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w104 = new global::Gtk.Image(); + this.btnP12.Image = w104; + this.tbUI.Add(this.btnP12); + global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); + w105.TopAttach = ((uint)(3)); + w105.BottomAttach = ((uint)(4)); + w105.LeftAttach = ((uint)(9)); + w105.RightAttach = ((uint)(10)); + w105.XOptions = ((global::Gtk.AttachOptions)(4)); + w105.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP13 = new global::Gtk.Button(); + this.btnP13.WidthRequest = 50; + this.btnP13.HeightRequest = 50; + this.btnP13.CanFocus = true; + this.btnP13.Name = "btnP13"; + this.btnP13.UseUnderline = true; + this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w106 = new global::Gtk.Image(); + this.btnP13.Image = w106; + this.tbUI.Add(this.btnP13); + global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); + w107.TopAttach = ((uint)(3)); + w107.BottomAttach = ((uint)(4)); + w107.LeftAttach = ((uint)(10)); + w107.RightAttach = ((uint)(11)); + w107.XOptions = ((global::Gtk.AttachOptions)(4)); + w107.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP14 = new global::Gtk.Button(); + this.btnP14.WidthRequest = 50; + this.btnP14.HeightRequest = 50; + this.btnP14.CanFocus = true; + this.btnP14.Name = "btnP14"; + this.btnP14.UseUnderline = true; + this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w108 = new global::Gtk.Image(); + this.btnP14.Image = w108; + this.tbUI.Add(this.btnP14); + global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); + w109.TopAttach = ((uint)(3)); + w109.BottomAttach = ((uint)(4)); + w109.LeftAttach = ((uint)(11)); + w109.RightAttach = ((uint)(12)); + w109.XOptions = ((global::Gtk.AttachOptions)(4)); + w109.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP15 = new global::Gtk.Button(); + this.btnP15.WidthRequest = 50; + this.btnP15.HeightRequest = 50; + this.btnP15.CanFocus = true; + this.btnP15.Name = "btnP15"; + this.btnP15.UseUnderline = true; + this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w110 = new global::Gtk.Image(); + this.btnP15.Image = w110; + this.tbUI.Add(this.btnP15); + global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); + w111.TopAttach = ((uint)(3)); + w111.BottomAttach = ((uint)(4)); + w111.LeftAttach = ((uint)(12)); + w111.RightAttach = ((uint)(13)); + w111.XOptions = ((global::Gtk.AttachOptions)(4)); + w111.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP16 = new global::Gtk.Button(); + this.btnP16.WidthRequest = 50; + this.btnP16.HeightRequest = 50; + this.btnP16.CanFocus = true; + this.btnP16.Name = "btnP16"; + this.btnP16.UseUnderline = true; + this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w112 = new global::Gtk.Image(); + this.btnP16.Image = w112; + this.tbUI.Add(this.btnP16); + global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); + w113.TopAttach = ((uint)(4)); + w113.BottomAttach = ((uint)(5)); + w113.LeftAttach = ((uint)(8)); + w113.RightAttach = ((uint)(9)); + w113.XOptions = ((global::Gtk.AttachOptions)(4)); + w113.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP17 = new global::Gtk.Button(); + this.btnP17.WidthRequest = 50; + this.btnP17.HeightRequest = 50; + this.btnP17.CanFocus = true; + this.btnP17.Name = "btnP17"; + this.btnP17.UseUnderline = true; + this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w114 = new global::Gtk.Image(); + this.btnP17.Image = w114; + this.tbUI.Add(this.btnP17); + global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); + w115.TopAttach = ((uint)(4)); + w115.BottomAttach = ((uint)(5)); + w115.LeftAttach = ((uint)(9)); + w115.RightAttach = ((uint)(10)); + w115.XOptions = ((global::Gtk.AttachOptions)(4)); + w115.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP18 = new global::Gtk.Button(); + this.btnP18.WidthRequest = 50; + this.btnP18.HeightRequest = 50; + this.btnP18.CanFocus = true; + this.btnP18.Name = "btnP18"; + this.btnP18.UseUnderline = true; + this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w116 = new global::Gtk.Image(); + this.btnP18.Image = w116; + this.tbUI.Add(this.btnP18); + global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); + w117.TopAttach = ((uint)(4)); + w117.BottomAttach = ((uint)(5)); + w117.LeftAttach = ((uint)(10)); + w117.RightAttach = ((uint)(11)); + w117.XOptions = ((global::Gtk.AttachOptions)(4)); + w117.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP19 = new global::Gtk.Button(); + this.btnP19.WidthRequest = 50; + this.btnP19.HeightRequest = 50; + this.btnP19.CanFocus = true; + this.btnP19.Name = "btnP19"; + this.btnP19.UseUnderline = true; + this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w118 = new global::Gtk.Image(); + this.btnP19.Image = w118; + this.tbUI.Add(this.btnP19); + global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); + w119.TopAttach = ((uint)(4)); + w119.BottomAttach = ((uint)(5)); + w119.LeftAttach = ((uint)(11)); + w119.RightAttach = ((uint)(12)); + w119.XOptions = ((global::Gtk.AttachOptions)(4)); + w119.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP2 = new global::Gtk.Button(); + this.btnP2.WidthRequest = 50; + this.btnP2.HeightRequest = 50; + this.btnP2.CanFocus = true; + this.btnP2.Name = "btnP2"; + this.btnP2.UseUnderline = true; + this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w120 = new global::Gtk.Image(); + this.btnP2.Image = w120; + this.tbUI.Add(this.btnP2); + global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); + w121.TopAttach = ((uint)(1)); + w121.BottomAttach = ((uint)(2)); + w121.LeftAttach = ((uint)(9)); + w121.RightAttach = ((uint)(10)); + w121.XOptions = ((global::Gtk.AttachOptions)(4)); + w121.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP20 = new global::Gtk.Button(); + this.btnP20.WidthRequest = 50; + this.btnP20.HeightRequest = 50; + this.btnP20.CanFocus = true; + this.btnP20.Name = "btnP20"; + this.btnP20.UseUnderline = true; + this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w122 = new global::Gtk.Image(); + this.btnP20.Image = w122; + this.tbUI.Add(this.btnP20); + global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); + w123.TopAttach = ((uint)(4)); + w123.BottomAttach = ((uint)(5)); + w123.LeftAttach = ((uint)(12)); + w123.RightAttach = ((uint)(13)); + w123.XOptions = ((global::Gtk.AttachOptions)(4)); + w123.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP21 = new global::Gtk.Button(); + this.btnP21.WidthRequest = 50; + this.btnP21.HeightRequest = 50; + this.btnP21.CanFocus = true; + this.btnP21.Name = "btnP21"; + this.btnP21.UseUnderline = true; + this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w124 = new global::Gtk.Image(); + this.btnP21.Image = w124; + this.tbUI.Add(this.btnP21); + global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); + w125.TopAttach = ((uint)(5)); + w125.BottomAttach = ((uint)(6)); + w125.LeftAttach = ((uint)(8)); + w125.RightAttach = ((uint)(9)); + w125.XOptions = ((global::Gtk.AttachOptions)(4)); + w125.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP22 = new global::Gtk.Button(); + this.btnP22.WidthRequest = 50; + this.btnP22.HeightRequest = 50; + this.btnP22.CanFocus = true; + this.btnP22.Name = "btnP22"; + this.btnP22.UseUnderline = true; + this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w126 = new global::Gtk.Image(); + this.btnP22.Image = w126; + this.tbUI.Add(this.btnP22); + global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); + w127.TopAttach = ((uint)(5)); + w127.BottomAttach = ((uint)(6)); + w127.LeftAttach = ((uint)(9)); + w127.RightAttach = ((uint)(10)); + w127.XOptions = ((global::Gtk.AttachOptions)(4)); + w127.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP23 = new global::Gtk.Button(); + this.btnP23.WidthRequest = 50; + this.btnP23.HeightRequest = 50; + this.btnP23.CanFocus = true; + this.btnP23.Name = "btnP23"; + this.btnP23.UseUnderline = true; + this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w128 = new global::Gtk.Image(); + this.btnP23.Image = w128; + this.tbUI.Add(this.btnP23); + global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); + w129.TopAttach = ((uint)(5)); + w129.BottomAttach = ((uint)(6)); + w129.LeftAttach = ((uint)(10)); + w129.RightAttach = ((uint)(11)); + w129.XOptions = ((global::Gtk.AttachOptions)(4)); + w129.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP24 = new global::Gtk.Button(); + this.btnP24.WidthRequest = 50; + this.btnP24.HeightRequest = 50; + this.btnP24.CanFocus = true; + this.btnP24.Name = "btnP24"; + this.btnP24.UseUnderline = true; + this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w130 = new global::Gtk.Image(); + this.btnP24.Image = w130; + this.tbUI.Add(this.btnP24); + global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); + w131.TopAttach = ((uint)(5)); + w131.BottomAttach = ((uint)(6)); + w131.LeftAttach = ((uint)(11)); + w131.RightAttach = ((uint)(12)); + w131.XOptions = ((global::Gtk.AttachOptions)(4)); + w131.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP25 = new global::Gtk.Button(); + this.btnP25.WidthRequest = 50; + this.btnP25.HeightRequest = 50; + this.btnP25.CanFocus = true; + this.btnP25.Name = "btnP25"; + this.btnP25.UseUnderline = true; + this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w132 = new global::Gtk.Image(); + this.btnP25.Image = w132; + this.tbUI.Add(this.btnP25); + global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); + w133.TopAttach = ((uint)(5)); + w133.BottomAttach = ((uint)(6)); + w133.LeftAttach = ((uint)(12)); + w133.RightAttach = ((uint)(13)); + w133.XOptions = ((global::Gtk.AttachOptions)(4)); + w133.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP3 = new global::Gtk.Button(); + this.btnP3.WidthRequest = 50; + this.btnP3.HeightRequest = 50; + this.btnP3.CanFocus = true; + this.btnP3.Name = "btnP3"; + this.btnP3.UseUnderline = true; + this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w134 = new global::Gtk.Image(); + this.btnP3.Image = w134; + this.tbUI.Add(this.btnP3); + global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); + w135.TopAttach = ((uint)(1)); + w135.BottomAttach = ((uint)(2)); + w135.LeftAttach = ((uint)(10)); + w135.RightAttach = ((uint)(11)); + w135.XOptions = ((global::Gtk.AttachOptions)(4)); + w135.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP4 = new global::Gtk.Button(); + this.btnP4.WidthRequest = 50; + this.btnP4.HeightRequest = 50; + this.btnP4.CanFocus = true; + this.btnP4.Name = "btnP4"; + this.btnP4.UseUnderline = true; + this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w136 = new global::Gtk.Image(); + this.btnP4.Image = w136; + this.tbUI.Add(this.btnP4); + global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); + w137.TopAttach = ((uint)(1)); + w137.BottomAttach = ((uint)(2)); + w137.LeftAttach = ((uint)(11)); + w137.RightAttach = ((uint)(12)); + w137.XOptions = ((global::Gtk.AttachOptions)(4)); + w137.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP5 = new global::Gtk.Button(); + this.btnP5.WidthRequest = 50; + this.btnP5.HeightRequest = 50; + this.btnP5.CanFocus = true; + this.btnP5.Name = "btnP5"; + this.btnP5.UseUnderline = true; + this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w138 = new global::Gtk.Image(); + this.btnP5.Image = w138; + this.tbUI.Add(this.btnP5); + global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); + w139.TopAttach = ((uint)(1)); + w139.BottomAttach = ((uint)(2)); + w139.LeftAttach = ((uint)(12)); + w139.RightAttach = ((uint)(13)); + w139.XOptions = ((global::Gtk.AttachOptions)(4)); + w139.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP6 = new global::Gtk.Button(); + this.btnP6.WidthRequest = 50; + this.btnP6.HeightRequest = 50; + this.btnP6.CanFocus = true; + this.btnP6.Name = "btnP6"; + this.btnP6.UseUnderline = true; + this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w140 = new global::Gtk.Image(); + this.btnP6.Image = w140; + this.tbUI.Add(this.btnP6); + global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); + w141.TopAttach = ((uint)(2)); + w141.BottomAttach = ((uint)(3)); + w141.LeftAttach = ((uint)(8)); + w141.RightAttach = ((uint)(9)); + w141.XOptions = ((global::Gtk.AttachOptions)(4)); + w141.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP7 = new global::Gtk.Button(); + this.btnP7.WidthRequest = 50; + this.btnP7.HeightRequest = 50; + this.btnP7.CanFocus = true; + this.btnP7.Name = "btnP7"; + this.btnP7.UseUnderline = true; + this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w142 = new global::Gtk.Image(); + this.btnP7.Image = w142; + this.tbUI.Add(this.btnP7); + global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); + w143.TopAttach = ((uint)(2)); + w143.BottomAttach = ((uint)(3)); + w143.LeftAttach = ((uint)(9)); + w143.RightAttach = ((uint)(10)); + w143.XOptions = ((global::Gtk.AttachOptions)(4)); + w143.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP8 = new global::Gtk.Button(); + this.btnP8.WidthRequest = 50; + this.btnP8.HeightRequest = 50; + this.btnP8.CanFocus = true; + this.btnP8.Name = "btnP8"; + this.btnP8.UseUnderline = true; + this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w144 = new global::Gtk.Image(); + this.btnP8.Image = w144; + this.tbUI.Add(this.btnP8); + global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); + w145.TopAttach = ((uint)(2)); + w145.BottomAttach = ((uint)(3)); + w145.LeftAttach = ((uint)(10)); + w145.RightAttach = ((uint)(11)); + w145.XOptions = ((global::Gtk.AttachOptions)(4)); + w145.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnP9 = new global::Gtk.Button(); + this.btnP9.WidthRequest = 50; + this.btnP9.HeightRequest = 50; + this.btnP9.CanFocus = true; + this.btnP9.Name = "btnP9"; + this.btnP9.UseUnderline = true; + this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); + global::Gtk.Image w146 = new global::Gtk.Image(); + this.btnP9.Image = w146; + this.tbUI.Add(this.btnP9); + global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); + w147.TopAttach = ((uint)(2)); + w147.BottomAttach = ((uint)(3)); + w147.LeftAttach = ((uint)(11)); + w147.RightAttach = ((uint)(12)); + w147.XOptions = ((global::Gtk.AttachOptions)(4)); + w147.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnPause = new global::Gtk.Button(); + this.btnPause.WidthRequest = 50; + this.btnPause.HeightRequest = 50; + this.btnPause.CanFocus = true; + this.btnPause.Name = "btnPause"; + this.btnPause.UseUnderline = true; + this.btnPause.Label = "Pause"; + this.tbUI.Add(this.btnPause); + global::Gtk.Table.TableChild w148 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); + w148.TopAttach = ((uint)(11)); + w148.BottomAttach = ((uint)(12)); + w148.LeftAttach = ((uint)(13)); + w148.RightAttach = ((uint)(14)); + w148.XOptions = ((global::Gtk.AttachOptions)(4)); + w148.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG1 = new global::Gtk.Image(); + this.imgG1.WidthRequest = 50; + this.imgG1.HeightRequest = 50; + this.imgG1.Name = "imgG1"; + this.tbUI.Add(this.imgG1); + global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); + w149.TopAttach = ((uint)(2)); + w149.BottomAttach = ((uint)(3)); + w149.LeftAttach = ((uint)(1)); + w149.RightAttach = ((uint)(2)); + w149.XOptions = ((global::Gtk.AttachOptions)(4)); + w149.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG10 = new global::Gtk.Image(); + this.imgG10.Name = "imgG10"; + this.tbUI.Add(this.imgG10); + global::Gtk.Table.TableChild w150 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); + w150.TopAttach = ((uint)(3)); + w150.BottomAttach = ((uint)(4)); + w150.LeftAttach = ((uint)(5)); + w150.RightAttach = ((uint)(6)); + w150.XOptions = ((global::Gtk.AttachOptions)(4)); + w150.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG11 = new global::Gtk.Image(); + this.imgG11.WidthRequest = 50; + this.imgG11.HeightRequest = 50; + this.imgG11.Name = "imgG11"; + this.tbUI.Add(this.imgG11); + global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); + w151.TopAttach = ((uint)(4)); + w151.BottomAttach = ((uint)(5)); + w151.LeftAttach = ((uint)(1)); + w151.RightAttach = ((uint)(2)); + w151.XOptions = ((global::Gtk.AttachOptions)(4)); + w151.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG12 = new global::Gtk.Image(); + this.imgG12.Name = "imgG12"; + this.tbUI.Add(this.imgG12); + global::Gtk.Table.TableChild w152 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); + w152.TopAttach = ((uint)(4)); + w152.BottomAttach = ((uint)(5)); + w152.LeftAttach = ((uint)(2)); + w152.RightAttach = ((uint)(3)); + w152.XOptions = ((global::Gtk.AttachOptions)(4)); + w152.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG13 = new global::Gtk.Image(); + this.imgG13.Name = "imgG13"; + this.tbUI.Add(this.imgG13); + global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); + w153.TopAttach = ((uint)(4)); + w153.BottomAttach = ((uint)(5)); + w153.LeftAttach = ((uint)(3)); + w153.RightAttach = ((uint)(4)); + w153.XOptions = ((global::Gtk.AttachOptions)(4)); + w153.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG14 = new global::Gtk.Image(); + this.imgG14.Name = "imgG14"; + this.tbUI.Add(this.imgG14); + global::Gtk.Table.TableChild w154 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); + w154.TopAttach = ((uint)(4)); + w154.BottomAttach = ((uint)(5)); + w154.LeftAttach = ((uint)(4)); + w154.RightAttach = ((uint)(5)); + w154.XOptions = ((global::Gtk.AttachOptions)(4)); + w154.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG15 = new global::Gtk.Image(); + this.imgG15.Name = "imgG15"; + this.tbUI.Add(this.imgG15); + global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + w155.TopAttach = ((uint)(4)); + w155.BottomAttach = ((uint)(5)); + w155.LeftAttach = ((uint)(5)); + w155.RightAttach = ((uint)(6)); + w155.XOptions = ((global::Gtk.AttachOptions)(4)); + w155.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG16 = new global::Gtk.Image(); + this.imgG16.WidthRequest = 50; + this.imgG16.HeightRequest = 50; + this.imgG16.Name = "imgG16"; + this.tbUI.Add(this.imgG16); + global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); + w156.TopAttach = ((uint)(5)); + w156.BottomAttach = ((uint)(6)); + w156.LeftAttach = ((uint)(1)); + w156.RightAttach = ((uint)(2)); + w156.XOptions = ((global::Gtk.AttachOptions)(4)); + w156.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG17 = new global::Gtk.Image(); + this.imgG17.HeightRequest = 50; + this.imgG17.Name = "imgG17"; + this.tbUI.Add(this.imgG17); + global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); + w157.TopAttach = ((uint)(5)); + w157.BottomAttach = ((uint)(6)); + w157.LeftAttach = ((uint)(2)); + w157.RightAttach = ((uint)(3)); + w157.XOptions = ((global::Gtk.AttachOptions)(4)); + w157.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG18 = new global::Gtk.Image(); + this.imgG18.HeightRequest = 50; + this.imgG18.Name = "imgG18"; + this.tbUI.Add(this.imgG18); + global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); + w158.TopAttach = ((uint)(5)); + w158.BottomAttach = ((uint)(6)); + w158.LeftAttach = ((uint)(3)); + w158.RightAttach = ((uint)(4)); + w158.XOptions = ((global::Gtk.AttachOptions)(4)); + w158.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG19 = new global::Gtk.Image(); + this.imgG19.Name = "imgG19"; + this.tbUI.Add(this.imgG19); + global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + w159.TopAttach = ((uint)(5)); + w159.BottomAttach = ((uint)(6)); + w159.LeftAttach = ((uint)(4)); + w159.RightAttach = ((uint)(5)); + w159.XOptions = ((global::Gtk.AttachOptions)(4)); + w159.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG2 = new global::Gtk.Image(); + this.imgG2.Name = "imgG2"; + this.tbUI.Add(this.imgG2); + global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); + w160.TopAttach = ((uint)(2)); + w160.BottomAttach = ((uint)(3)); + w160.LeftAttach = ((uint)(2)); + w160.RightAttach = ((uint)(3)); + w160.XOptions = ((global::Gtk.AttachOptions)(4)); + w160.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG20 = new global::Gtk.Image(); + this.imgG20.Name = "imgG20"; + this.tbUI.Add(this.imgG20); + global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); + w161.TopAttach = ((uint)(5)); + w161.BottomAttach = ((uint)(6)); + w161.LeftAttach = ((uint)(5)); + w161.RightAttach = ((uint)(6)); + w161.XOptions = ((global::Gtk.AttachOptions)(4)); + w161.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG21 = new global::Gtk.Image(); + this.imgG21.WidthRequest = 50; + this.imgG21.HeightRequest = 50; + this.imgG21.Name = "imgG21"; + this.tbUI.Add(this.imgG21); + global::Gtk.Table.TableChild w162 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); + w162.TopAttach = ((uint)(6)); + w162.BottomAttach = ((uint)(7)); + w162.LeftAttach = ((uint)(1)); + w162.RightAttach = ((uint)(2)); + w162.XOptions = ((global::Gtk.AttachOptions)(4)); + w162.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG22 = new global::Gtk.Image(); + this.imgG22.Name = "imgG22"; + this.tbUI.Add(this.imgG22); + global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); + w163.TopAttach = ((uint)(6)); + w163.BottomAttach = ((uint)(7)); + w163.LeftAttach = ((uint)(2)); + w163.RightAttach = ((uint)(3)); + w163.XOptions = ((global::Gtk.AttachOptions)(4)); + w163.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG23 = new global::Gtk.Image(); + this.imgG23.Name = "imgG23"; + this.tbUI.Add(this.imgG23); + global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); + w164.TopAttach = ((uint)(6)); + w164.BottomAttach = ((uint)(7)); + w164.LeftAttach = ((uint)(3)); + w164.RightAttach = ((uint)(4)); + w164.XOptions = ((global::Gtk.AttachOptions)(4)); + w164.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG24 = new global::Gtk.Image(); + this.imgG24.Name = "imgG24"; + this.tbUI.Add(this.imgG24); + global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); + w165.TopAttach = ((uint)(6)); + w165.BottomAttach = ((uint)(7)); + w165.LeftAttach = ((uint)(4)); + w165.RightAttach = ((uint)(5)); + w165.XOptions = ((global::Gtk.AttachOptions)(4)); + w165.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG25 = new global::Gtk.Image(); + this.imgG25.Name = "imgG25"; + this.tbUI.Add(this.imgG25); + global::Gtk.Table.TableChild w166 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + w166.TopAttach = ((uint)(6)); + w166.BottomAttach = ((uint)(7)); + w166.LeftAttach = ((uint)(5)); + w166.RightAttach = ((uint)(6)); + w166.XOptions = ((global::Gtk.AttachOptions)(4)); + w166.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG3 = new global::Gtk.Image(); + this.imgG3.Name = "imgG3"; + this.tbUI.Add(this.imgG3); + global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); + w167.TopAttach = ((uint)(2)); + w167.BottomAttach = ((uint)(3)); + w167.LeftAttach = ((uint)(3)); + w167.RightAttach = ((uint)(4)); + w167.XOptions = ((global::Gtk.AttachOptions)(4)); + w167.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG4 = new global::Gtk.Image(); + this.imgG4.Name = "imgG4"; + this.tbUI.Add(this.imgG4); + global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); + w168.TopAttach = ((uint)(2)); + w168.BottomAttach = ((uint)(3)); + w168.LeftAttach = ((uint)(4)); + w168.RightAttach = ((uint)(5)); + w168.XOptions = ((global::Gtk.AttachOptions)(4)); + w168.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG5 = new global::Gtk.Image(); + this.imgG5.Name = "imgG5"; + this.tbUI.Add(this.imgG5); + global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + w169.TopAttach = ((uint)(2)); + w169.BottomAttach = ((uint)(3)); + w169.LeftAttach = ((uint)(5)); + w169.RightAttach = ((uint)(6)); + w169.XOptions = ((global::Gtk.AttachOptions)(4)); + w169.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG6 = new global::Gtk.Image(); + this.imgG6.WidthRequest = 50; + this.imgG6.HeightRequest = 50; + this.imgG6.Name = "imgG6"; + this.tbUI.Add(this.imgG6); + global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); + w170.TopAttach = ((uint)(3)); + w170.BottomAttach = ((uint)(4)); + w170.LeftAttach = ((uint)(1)); + w170.RightAttach = ((uint)(2)); + w170.XOptions = ((global::Gtk.AttachOptions)(4)); + w170.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG7 = new global::Gtk.Image(); + this.imgG7.Name = "imgG7"; + this.tbUI.Add(this.imgG7); + global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); + w171.TopAttach = ((uint)(3)); + w171.BottomAttach = ((uint)(4)); + w171.LeftAttach = ((uint)(2)); + w171.RightAttach = ((uint)(3)); + w171.XOptions = ((global::Gtk.AttachOptions)(4)); + w171.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG8 = new global::Gtk.Image(); + this.imgG8.Name = "imgG8"; + this.tbUI.Add(this.imgG8); + global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); + w172.TopAttach = ((uint)(3)); + w172.BottomAttach = ((uint)(4)); + w172.LeftAttach = ((uint)(3)); + w172.RightAttach = ((uint)(4)); + w172.XOptions = ((global::Gtk.AttachOptions)(4)); + w172.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgG9 = new global::Gtk.Image(); + this.imgG9.Name = "imgG9"; + this.tbUI.Add(this.imgG9); + global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + w173.TopAttach = ((uint)(3)); + w173.BottomAttach = ((uint)(4)); + w173.LeftAttach = ((uint)(4)); + w173.RightAttach = ((uint)(5)); + w173.XOptions = ((global::Gtk.AttachOptions)(4)); + w173.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI1 = new global::Gtk.Image(); + this.imgI1.WidthRequest = 50; + this.imgI1.HeightRequest = 50; + this.imgI1.Name = "imgI1"; + this.tbUI.Add(this.imgI1); + global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w174.TopAttach = ((uint)(10)); + w174.BottomAttach = ((uint)(11)); + w174.LeftAttach = ((uint)(1)); + w174.RightAttach = ((uint)(2)); + w174.XOptions = ((global::Gtk.AttachOptions)(4)); + w174.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI10 = new global::Gtk.Image(); + this.imgI10.WidthRequest = 50; + this.imgI10.HeightRequest = 50; + this.imgI10.Name = "imgI10"; + this.tbUI.Add(this.imgI10); + global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); + w175.TopAttach = ((uint)(11)); + w175.BottomAttach = ((uint)(12)); + w175.LeftAttach = ((uint)(5)); + w175.RightAttach = ((uint)(6)); + w175.XOptions = ((global::Gtk.AttachOptions)(4)); + w175.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI11 = new global::Gtk.Image(); + this.imgI11.WidthRequest = 50; + this.imgI11.HeightRequest = 50; + this.imgI11.Name = "imgI11"; + this.tbUI.Add(this.imgI11); + global::Gtk.Table.TableChild w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); + w176.TopAttach = ((uint)(12)); + w176.BottomAttach = ((uint)(13)); + w176.LeftAttach = ((uint)(1)); + w176.RightAttach = ((uint)(2)); + w176.XOptions = ((global::Gtk.AttachOptions)(4)); + w176.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI12 = new global::Gtk.Image(); + this.imgI12.WidthRequest = 50; + this.imgI12.HeightRequest = 50; + this.imgI12.Name = "imgI12"; + this.tbUI.Add(this.imgI12); + global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); + w177.TopAttach = ((uint)(12)); + w177.BottomAttach = ((uint)(13)); + w177.LeftAttach = ((uint)(2)); + w177.RightAttach = ((uint)(3)); + w177.XOptions = ((global::Gtk.AttachOptions)(4)); + w177.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI13 = new global::Gtk.Image(); + this.imgI13.WidthRequest = 50; + this.imgI13.HeightRequest = 50; + this.imgI13.Name = "imgI13"; + this.tbUI.Add(this.imgI13); + global::Gtk.Table.TableChild w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); + w178.TopAttach = ((uint)(12)); + w178.BottomAttach = ((uint)(13)); + w178.LeftAttach = ((uint)(3)); + w178.RightAttach = ((uint)(4)); + w178.XOptions = ((global::Gtk.AttachOptions)(4)); + w178.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI14 = new global::Gtk.Image(); + this.imgI14.WidthRequest = 50; + this.imgI14.HeightRequest = 50; + this.imgI14.Name = "imgI14"; + this.tbUI.Add(this.imgI14); + global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); + w179.TopAttach = ((uint)(12)); + w179.BottomAttach = ((uint)(13)); + w179.LeftAttach = ((uint)(4)); + w179.RightAttach = ((uint)(5)); + w179.XOptions = ((global::Gtk.AttachOptions)(4)); + w179.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI15 = new global::Gtk.Image(); + this.imgI15.WidthRequest = 50; + this.imgI15.HeightRequest = 50; + this.imgI15.Name = "imgI15"; + this.tbUI.Add(this.imgI15); + global::Gtk.Table.TableChild w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); + w180.TopAttach = ((uint)(12)); + w180.BottomAttach = ((uint)(13)); + w180.LeftAttach = ((uint)(5)); + w180.RightAttach = ((uint)(6)); + w180.XOptions = ((global::Gtk.AttachOptions)(4)); + w180.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI16 = new global::Gtk.Image(); + this.imgI16.WidthRequest = 50; + this.imgI16.HeightRequest = 50; + this.imgI16.Name = "imgI16"; + this.tbUI.Add(this.imgI16); + global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); + w181.TopAttach = ((uint)(13)); + w181.BottomAttach = ((uint)(14)); + w181.LeftAttach = ((uint)(1)); + w181.RightAttach = ((uint)(2)); + w181.XOptions = ((global::Gtk.AttachOptions)(4)); + w181.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI17 = new global::Gtk.Image(); + this.imgI17.WidthRequest = 50; + this.imgI17.HeightRequest = 50; + this.imgI17.Name = "imgI17"; + this.tbUI.Add(this.imgI17); + global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); + w182.TopAttach = ((uint)(13)); + w182.BottomAttach = ((uint)(14)); + w182.LeftAttach = ((uint)(2)); + w182.RightAttach = ((uint)(3)); + w182.XOptions = ((global::Gtk.AttachOptions)(4)); + w182.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI18 = new global::Gtk.Image(); + this.imgI18.WidthRequest = 50; + this.imgI18.HeightRequest = 50; + this.imgI18.Name = "imgI18"; + this.tbUI.Add(this.imgI18); + global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); + w183.TopAttach = ((uint)(13)); + w183.BottomAttach = ((uint)(14)); + w183.LeftAttach = ((uint)(3)); + w183.RightAttach = ((uint)(4)); + w183.XOptions = ((global::Gtk.AttachOptions)(4)); + w183.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI19 = new global::Gtk.Image(); + this.imgI19.WidthRequest = 50; + this.imgI19.HeightRequest = 50; + this.imgI19.Name = "imgI19"; + this.tbUI.Add(this.imgI19); + global::Gtk.Table.TableChild w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); + w184.TopAttach = ((uint)(13)); + w184.BottomAttach = ((uint)(14)); + w184.LeftAttach = ((uint)(4)); + w184.RightAttach = ((uint)(5)); + w184.XOptions = ((global::Gtk.AttachOptions)(4)); + w184.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI2 = new global::Gtk.Image(); + this.imgI2.WidthRequest = 50; + this.imgI2.HeightRequest = 50; + this.imgI2.Name = "imgI2"; + this.tbUI.Add(this.imgI2); + global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w185.TopAttach = ((uint)(10)); + w185.BottomAttach = ((uint)(11)); + w185.LeftAttach = ((uint)(2)); + w185.RightAttach = ((uint)(3)); + w185.XOptions = ((global::Gtk.AttachOptions)(4)); + w185.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI20 = new global::Gtk.Image(); + this.imgI20.WidthRequest = 50; + this.imgI20.HeightRequest = 50; + this.imgI20.Name = "imgI20"; + this.tbUI.Add(this.imgI20); + global::Gtk.Table.TableChild w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); + w186.TopAttach = ((uint)(13)); + w186.BottomAttach = ((uint)(14)); + w186.LeftAttach = ((uint)(5)); + w186.RightAttach = ((uint)(6)); + w186.XOptions = ((global::Gtk.AttachOptions)(4)); + w186.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI21 = new global::Gtk.Image(); + this.imgI21.WidthRequest = 50; + this.imgI21.HeightRequest = 50; + this.imgI21.Name = "imgI21"; + this.tbUI.Add(this.imgI21); + global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); + w187.TopAttach = ((uint)(14)); + w187.BottomAttach = ((uint)(15)); + w187.LeftAttach = ((uint)(1)); + w187.RightAttach = ((uint)(2)); + w187.XOptions = ((global::Gtk.AttachOptions)(4)); + w187.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI22 = new global::Gtk.Image(); + this.imgI22.WidthRequest = 50; + this.imgI22.HeightRequest = 50; + this.imgI22.Name = "imgI22"; + this.tbUI.Add(this.imgI22); + global::Gtk.Table.TableChild w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); + w188.TopAttach = ((uint)(14)); + w188.BottomAttach = ((uint)(15)); + w188.LeftAttach = ((uint)(2)); + w188.RightAttach = ((uint)(3)); + w188.XOptions = ((global::Gtk.AttachOptions)(4)); + w188.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI23 = new global::Gtk.Image(); + this.imgI23.WidthRequest = 50; + this.imgI23.HeightRequest = 50; + this.imgI23.Name = "imgI23"; + this.tbUI.Add(this.imgI23); + global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); + w189.TopAttach = ((uint)(14)); + w189.BottomAttach = ((uint)(15)); + w189.LeftAttach = ((uint)(3)); + w189.RightAttach = ((uint)(4)); + w189.XOptions = ((global::Gtk.AttachOptions)(4)); + w189.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI24 = new global::Gtk.Image(); + this.imgI24.WidthRequest = 50; + this.imgI24.HeightRequest = 50; + this.imgI24.Name = "imgI24"; + this.tbUI.Add(this.imgI24); + global::Gtk.Table.TableChild w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); + w190.TopAttach = ((uint)(14)); + w190.BottomAttach = ((uint)(15)); + w190.LeftAttach = ((uint)(4)); + w190.RightAttach = ((uint)(5)); + w190.XOptions = ((global::Gtk.AttachOptions)(4)); + w190.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI25 = new global::Gtk.Image(); + this.imgI25.WidthRequest = 50; + this.imgI25.HeightRequest = 50; + this.imgI25.Name = "imgI25"; + this.tbUI.Add(this.imgI25); + global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); + w191.TopAttach = ((uint)(14)); + w191.BottomAttach = ((uint)(15)); + w191.LeftAttach = ((uint)(5)); + w191.RightAttach = ((uint)(6)); + w191.XOptions = ((global::Gtk.AttachOptions)(4)); + w191.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI3 = new global::Gtk.Image(); + this.imgI3.WidthRequest = 50; + this.imgI3.HeightRequest = 50; + this.imgI3.Name = "imgI3"; + this.tbUI.Add(this.imgI3); + global::Gtk.Table.TableChild w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w192.TopAttach = ((uint)(10)); + w192.BottomAttach = ((uint)(11)); + w192.LeftAttach = ((uint)(3)); + w192.RightAttach = ((uint)(4)); + w192.XOptions = ((global::Gtk.AttachOptions)(4)); + w192.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI4 = new global::Gtk.Image(); + this.imgI4.WidthRequest = 50; + this.imgI4.HeightRequest = 50; + this.imgI4.Name = "imgI4"; + this.tbUI.Add(this.imgI4); + global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w193.TopAttach = ((uint)(10)); + w193.BottomAttach = ((uint)(11)); + w193.LeftAttach = ((uint)(4)); + w193.RightAttach = ((uint)(5)); + w193.XOptions = ((global::Gtk.AttachOptions)(4)); + w193.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI5 = new global::Gtk.Image(); + this.imgI5.WidthRequest = 50; + this.imgI5.HeightRequest = 50; + this.imgI5.Name = "imgI5"; + this.tbUI.Add(this.imgI5); + global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w194.TopAttach = ((uint)(10)); + w194.BottomAttach = ((uint)(11)); + w194.LeftAttach = ((uint)(5)); + w194.RightAttach = ((uint)(6)); + w194.XOptions = ((global::Gtk.AttachOptions)(4)); + w194.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI6 = new global::Gtk.Image(); + this.imgI6.WidthRequest = 50; + this.imgI6.HeightRequest = 50; + this.imgI6.Name = "imgI6"; + this.tbUI.Add(this.imgI6); + global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); + w195.TopAttach = ((uint)(11)); + w195.BottomAttach = ((uint)(12)); + w195.LeftAttach = ((uint)(1)); + w195.RightAttach = ((uint)(2)); + w195.XOptions = ((global::Gtk.AttachOptions)(4)); + w195.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI7 = new global::Gtk.Image(); + this.imgI7.WidthRequest = 50; + this.imgI7.HeightRequest = 50; + this.imgI7.Name = "imgI7"; + this.tbUI.Add(this.imgI7); + global::Gtk.Table.TableChild w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); + w196.TopAttach = ((uint)(11)); + w196.BottomAttach = ((uint)(12)); + w196.LeftAttach = ((uint)(2)); + w196.RightAttach = ((uint)(3)); + w196.XOptions = ((global::Gtk.AttachOptions)(4)); + w196.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI8 = new global::Gtk.Image(); + this.imgI8.WidthRequest = 50; + this.imgI8.HeightRequest = 50; + this.imgI8.Name = "imgI8"; + this.tbUI.Add(this.imgI8); + global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); + w197.TopAttach = ((uint)(11)); + w197.BottomAttach = ((uint)(12)); + w197.LeftAttach = ((uint)(3)); + w197.RightAttach = ((uint)(4)); + w197.XOptions = ((global::Gtk.AttachOptions)(4)); + w197.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgI9 = new global::Gtk.Image(); + this.imgI9.WidthRequest = 50; + this.imgI9.HeightRequest = 50; + this.imgI9.Name = "imgI9"; + this.tbUI.Add(this.imgI9); + global::Gtk.Table.TableChild w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); + w198.TopAttach = ((uint)(11)); + w198.BottomAttach = ((uint)(12)); + w198.LeftAttach = ((uint)(4)); + w198.RightAttach = ((uint)(5)); + w198.XOptions = ((global::Gtk.AttachOptions)(4)); + w198.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgInfo = new global::Gtk.Image(); + this.imgInfo.WidthRequest = 50; + this.imgInfo.HeightRequest = 50; + this.imgInfo.Name = "imgInfo"; + this.tbUI.Add(this.imgInfo); + global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); + w199.TopAttach = ((uint)(14)); + w199.BottomAttach = ((uint)(15)); + w199.LeftAttach = ((uint)(17)); + w199.RightAttach = ((uint)(18)); + w199.XOptions = ((global::Gtk.AttachOptions)(4)); + w199.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS1 = new global::Gtk.Image(); + this.imgS1.WidthRequest = 50; + this.imgS1.HeightRequest = 50; + this.imgS1.Name = "imgS1"; + this.tbUI.Add(this.imgS1); + global::Gtk.Table.TableChild w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); + w200.TopAttach = ((uint)(7)); + w200.BottomAttach = ((uint)(8)); + w200.LeftAttach = ((uint)(8)); + w200.RightAttach = ((uint)(9)); + w200.XOptions = ((global::Gtk.AttachOptions)(4)); + w200.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS10 = new global::Gtk.Image(); + this.imgS10.WidthRequest = 50; + this.imgS10.HeightRequest = 50; + this.imgS10.Name = "imgS10"; + this.tbUI.Add(this.imgS10); + global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); + w201.TopAttach = ((uint)(8)); + w201.BottomAttach = ((uint)(9)); + w201.LeftAttach = ((uint)(12)); + w201.RightAttach = ((uint)(13)); + w201.XOptions = ((global::Gtk.AttachOptions)(4)); + w201.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS2 = new global::Gtk.Image(); + this.imgS2.WidthRequest = 50; + this.imgS2.HeightRequest = 50; + this.imgS2.Name = "imgS2"; + this.tbUI.Add(this.imgS2); + global::Gtk.Table.TableChild w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); + w202.TopAttach = ((uint)(7)); + w202.BottomAttach = ((uint)(8)); + w202.LeftAttach = ((uint)(9)); + w202.RightAttach = ((uint)(10)); + w202.XOptions = ((global::Gtk.AttachOptions)(4)); + w202.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS3 = new global::Gtk.Image(); + this.imgS3.WidthRequest = 50; + this.imgS3.HeightRequest = 50; + this.imgS3.Name = "imgS3"; + this.tbUI.Add(this.imgS3); + global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); + w203.TopAttach = ((uint)(7)); + w203.BottomAttach = ((uint)(8)); + w203.LeftAttach = ((uint)(10)); + w203.RightAttach = ((uint)(11)); + w203.XOptions = ((global::Gtk.AttachOptions)(4)); + w203.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS4 = new global::Gtk.Image(); + this.imgS4.WidthRequest = 50; + this.imgS4.HeightRequest = 50; + this.imgS4.Name = "imgS4"; + this.tbUI.Add(this.imgS4); + global::Gtk.Table.TableChild w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); + w204.TopAttach = ((uint)(7)); + w204.BottomAttach = ((uint)(8)); + w204.LeftAttach = ((uint)(11)); + w204.RightAttach = ((uint)(12)); + w204.XOptions = ((global::Gtk.AttachOptions)(4)); + w204.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS5 = new global::Gtk.Image(); + this.imgS5.WidthRequest = 50; + this.imgS5.HeightRequest = 50; + this.imgS5.Name = "imgS5"; + this.tbUI.Add(this.imgS5); + global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); + w205.TopAttach = ((uint)(7)); + w205.BottomAttach = ((uint)(8)); + w205.LeftAttach = ((uint)(12)); + w205.RightAttach = ((uint)(13)); + w205.XOptions = ((global::Gtk.AttachOptions)(4)); + w205.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS6 = new global::Gtk.Image(); + this.imgS6.WidthRequest = 50; + this.imgS6.HeightRequest = 50; + this.imgS6.Name = "imgS6"; + this.tbUI.Add(this.imgS6); + global::Gtk.Table.TableChild w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); + w206.TopAttach = ((uint)(8)); + w206.BottomAttach = ((uint)(9)); + w206.LeftAttach = ((uint)(8)); + w206.RightAttach = ((uint)(9)); + w206.XOptions = ((global::Gtk.AttachOptions)(4)); + w206.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS7 = new global::Gtk.Image(); + this.imgS7.WidthRequest = 50; + this.imgS7.HeightRequest = 50; + this.imgS7.Name = "imgS7"; + this.tbUI.Add(this.imgS7); + global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); + w207.TopAttach = ((uint)(8)); + w207.BottomAttach = ((uint)(9)); + w207.LeftAttach = ((uint)(9)); + w207.RightAttach = ((uint)(10)); + w207.XOptions = ((global::Gtk.AttachOptions)(4)); + w207.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS8 = new global::Gtk.Image(); + this.imgS8.WidthRequest = 50; + this.imgS8.HeightRequest = 50; + this.imgS8.Name = "imgS8"; + this.tbUI.Add(this.imgS8); + global::Gtk.Table.TableChild w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); + w208.TopAttach = ((uint)(8)); + w208.BottomAttach = ((uint)(9)); + w208.LeftAttach = ((uint)(10)); + w208.RightAttach = ((uint)(11)); + w208.XOptions = ((global::Gtk.AttachOptions)(4)); + w208.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgS9 = new global::Gtk.Image(); + this.imgS9.WidthRequest = 50; + this.imgS9.HeightRequest = 50; + this.imgS9.Name = "imgS9"; + this.tbUI.Add(this.imgS9); + global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); + w209.TopAttach = ((uint)(8)); + w209.BottomAttach = ((uint)(9)); + w209.LeftAttach = ((uint)(11)); + w209.RightAttach = ((uint)(12)); + w209.XOptions = ((global::Gtk.AttachOptions)(4)); + w209.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblAccessories = new global::Gtk.Label(); + this.lblAccessories.HeightRequest = 50; + this.lblAccessories.Name = "lblAccessories"; + this.lblAccessories.LabelProp = "Accessories"; + this.lblAccessories.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblAccessories); + global::Gtk.Table.TableChild w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); + w210.TopAttach = ((uint)(8)); + w210.BottomAttach = ((uint)(9)); + w210.LeftAttach = ((uint)(15)); + w210.RightAttach = ((uint)(20)); + w210.XOptions = ((global::Gtk.AttachOptions)(4)); + w210.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank1 = new global::Gtk.Label(); + this.lblBlank1.WidthRequest = 10; + this.lblBlank1.HeightRequest = 50; + this.lblBlank1.Name = "lblBlank1"; + this.tbUI.Add(this.lblBlank1); + global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w211.TopAttach = ((uint)(3)); + w211.BottomAttach = ((uint)(4)); + w211.LeftAttach = ((uint)(6)); + w211.RightAttach = ((uint)(7)); + w211.XOptions = ((global::Gtk.AttachOptions)(4)); + w211.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank2 = new global::Gtk.Label(); + this.lblBlank2.WidthRequest = 50; + this.lblBlank2.HeightRequest = 50; + this.lblBlank2.Name = "lblBlank2"; + this.tbUI.Add(this.lblBlank2); + global::Gtk.Table.TableChild w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w212.TopAttach = ((uint)(6)); + w212.BottomAttach = ((uint)(7)); + w212.LeftAttach = ((uint)(10)); + w212.RightAttach = ((uint)(11)); + w212.XOptions = ((global::Gtk.AttachOptions)(4)); + w212.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank3 = new global::Gtk.Label(); + this.lblBlank3.WidthRequest = 10; + this.lblBlank3.HeightRequest = 50; + this.lblBlank3.Name = "lblBlank3"; + this.tbUI.Add(this.lblBlank3); + global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w213.TopAttach = ((uint)(3)); + w213.BottomAttach = ((uint)(4)); + w213.LeftAttach = ((uint)(14)); + w213.RightAttach = ((uint)(15)); + w213.XOptions = ((global::Gtk.AttachOptions)(4)); + w213.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank4 = new global::Gtk.Label(); + this.lblBlank4.WidthRequest = 10; + this.lblBlank4.HeightRequest = 50; + this.lblBlank4.Name = "lblBlank4"; + this.tbUI.Add(this.lblBlank4); + global::Gtk.Table.TableChild w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w214.TopAttach = ((uint)(3)); + w214.BottomAttach = ((uint)(4)); + w214.LeftAttach = ((uint)(20)); + w214.RightAttach = ((uint)(21)); + w214.XOptions = ((global::Gtk.AttachOptions)(4)); + w214.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank5 = new global::Gtk.Label(); + this.lblBlank5.WidthRequest = 10; + this.lblBlank5.HeightRequest = 50; + this.lblBlank5.Name = "lblBlank5"; + this.tbUI.Add(this.lblBlank5); + global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w215.TopAttach = ((uint)(3)); + w215.BottomAttach = ((uint)(4)); + w215.XOptions = ((global::Gtk.AttachOptions)(4)); + w215.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank8 = new global::Gtk.Label(); + this.lblBlank8.WidthRequest = 50; + this.lblBlank8.HeightRequest = 10; + this.lblBlank8.Name = "lblBlank8"; + this.tbUI.Add(this.lblBlank8); + global::Gtk.Table.TableChild w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); + w216.TopAttach = ((uint)(16)); + w216.BottomAttach = ((uint)(17)); + w216.LeftAttach = ((uint)(10)); + w216.RightAttach = ((uint)(11)); + w216.XOptions = ((global::Gtk.AttachOptions)(4)); + w216.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank9 = new global::Gtk.Label(); + this.lblBlank9.WidthRequest = 50; + this.lblBlank9.HeightRequest = 10; + this.lblBlank9.Name = "lblBlank9"; + this.tbUI.Add(this.lblBlank9); + global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank9])); + w217.LeftAttach = ((uint)(10)); + w217.RightAttach = ((uint)(11)); + w217.XOptions = ((global::Gtk.AttachOptions)(4)); + w217.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblCoord1 = new global::Gtk.Label(); + this.lblCoord1.WidthRequest = 50; + this.lblCoord1.HeightRequest = 50; + this.lblCoord1.Name = "lblCoord1"; + this.lblCoord1.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblCoord1); + global::Gtk.Table.TableChild w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); + w218.TopAttach = ((uint)(7)); + w218.BottomAttach = ((uint)(8)); + w218.LeftAttach = ((uint)(4)); + w218.RightAttach = ((uint)(5)); + w218.XOptions = ((global::Gtk.AttachOptions)(4)); + w218.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblCoord2 = new global::Gtk.Label(); + this.lblCoord2.WidthRequest = 50; + this.lblCoord2.HeightRequest = 50; + this.lblCoord2.Name = "lblCoord2"; + this.lblCoord2.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblCoord2); + global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); + w219.TopAttach = ((uint)(7)); + w219.BottomAttach = ((uint)(8)); + w219.LeftAttach = ((uint)(5)); + w219.RightAttach = ((uint)(6)); + w219.XOptions = ((global::Gtk.AttachOptions)(4)); + w219.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblEventLog = new global::Gtk.Label(); + this.lblEventLog.WidthRequest = 50; + this.lblEventLog.HeightRequest = 50; + this.lblEventLog.Name = "lblEventLog"; + this.lblEventLog.LabelProp = "Event Log"; + this.tbUI.Add(this.lblEventLog); + global::Gtk.Table.TableChild w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); + w220.TopAttach = ((uint)(11)); + w220.BottomAttach = ((uint)(12)); + w220.LeftAttach = ((uint)(8)); + w220.RightAttach = ((uint)(13)); + w220.XOptions = ((global::Gtk.AttachOptions)(4)); + w220.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblGear = new global::Gtk.Label(); + this.lblGear.HeightRequest = 50; + this.lblGear.Name = "lblGear"; + this.lblGear.LabelProp = "Gear"; + this.lblGear.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblGear); + global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); + w221.TopAttach = ((uint)(11)); + w221.BottomAttach = ((uint)(12)); + w221.LeftAttach = ((uint)(15)); + w221.RightAttach = ((uint)(20)); + w221.XOptions = ((global::Gtk.AttachOptions)(4)); + w221.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblGroundLayer = new global::Gtk.Label(); + this.lblGroundLayer.Name = "lblGroundLayer"; + this.lblGroundLayer.LabelProp = "Ground Layer"; + this.tbUI.Add(this.lblGroundLayer); + global::Gtk.Table.TableChild w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); + w222.TopAttach = ((uint)(1)); + w222.BottomAttach = ((uint)(2)); + w222.LeftAttach = ((uint)(1)); + w222.RightAttach = ((uint)(6)); + w222.XOptions = ((global::Gtk.AttachOptions)(4)); + w222.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblHoleMsg = new global::Gtk.Label(); + this.lblHoleMsg.WidthRequest = 200; + this.lblHoleMsg.HeightRequest = 50; + this.lblHoleMsg.Name = "lblHoleMsg"; + this.lblHoleMsg.LabelProp = "There is a hole above player:"; + this.lblHoleMsg.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblHoleMsg); + global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleMsg])); + w223.TopAttach = ((uint)(15)); + w223.BottomAttach = ((uint)(16)); + w223.LeftAttach = ((uint)(1)); + w223.RightAttach = ((uint)(5)); + w223.XOptions = ((global::Gtk.AttachOptions)(4)); + w223.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblHoleOnTop = new global::Gtk.Label(); + this.lblHoleOnTop.WidthRequest = 50; + this.lblHoleOnTop.HeightRequest = 50; + this.lblHoleOnTop.Name = "lblHoleOnTop"; + this.lblHoleOnTop.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblHoleOnTop); + global::Gtk.Table.TableChild w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleOnTop])); + w224.TopAttach = ((uint)(15)); + w224.BottomAttach = ((uint)(16)); + w224.LeftAttach = ((uint)(5)); + w224.RightAttach = ((uint)(6)); + w224.XOptions = ((global::Gtk.AttachOptions)(4)); + w224.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblHotbar = new global::Gtk.Label(); + this.lblHotbar.WidthRequest = 50; + this.lblHotbar.HeightRequest = 25; + this.lblHotbar.Name = "lblHotbar"; + this.lblHotbar.LabelProp = "Hotbar"; + this.tbUI.Add(this.lblHotbar); + global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); + w225.TopAttach = ((uint)(9)); + w225.BottomAttach = ((uint)(10)); + w225.LeftAttach = ((uint)(8)); + w225.RightAttach = ((uint)(13)); + w225.XOptions = ((global::Gtk.AttachOptions)(4)); + w225.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblInfo = new global::Gtk.Label(); + this.lblInfo.WidthRequest = 250; + this.lblInfo.HeightRequest = 50; + this.lblInfo.Name = "lblInfo"; + this.lblInfo.Wrap = true; + this.lblInfo.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblInfo); + global::Gtk.Table.TableChild w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); + w226.TopAttach = ((uint)(15)); + w226.BottomAttach = ((uint)(16)); + w226.LeftAttach = ((uint)(15)); + w226.RightAttach = ((uint)(20)); + w226.XOptions = ((global::Gtk.AttachOptions)(4)); + w226.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblItemLayer = new global::Gtk.Label(); + this.lblItemLayer.Name = "lblItemLayer"; + this.lblItemLayer.LabelProp = "Structure Layer"; + this.tbUI.Add(this.lblItemLayer); + global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); + w227.TopAttach = ((uint)(9)); + w227.BottomAttach = ((uint)(10)); + w227.LeftAttach = ((uint)(1)); + w227.RightAttach = ((uint)(6)); + w227.XOptions = ((global::Gtk.AttachOptions)(4)); + w227.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog1 = new global::Gtk.Label(); + this.lblLog1.WidthRequest = 250; + this.lblLog1.HeightRequest = 50; + this.lblLog1.Name = "lblLog1"; + this.lblLog1.LabelProp = "ERROR"; + this.lblLog1.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog1); + global::Gtk.Table.TableChild w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); + w228.TopAttach = ((uint)(12)); + w228.BottomAttach = ((uint)(13)); + w228.LeftAttach = ((uint)(8)); + w228.RightAttach = ((uint)(13)); + w228.XOptions = ((global::Gtk.AttachOptions)(4)); + w228.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog2 = new global::Gtk.Label(); + this.lblLog2.WidthRequest = 250; + this.lblLog2.HeightRequest = 50; + this.lblLog2.Name = "lblLog2"; + this.lblLog2.LabelProp = "ERROR"; + this.lblLog2.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog2); + global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); + w229.TopAttach = ((uint)(13)); + w229.BottomAttach = ((uint)(14)); + w229.LeftAttach = ((uint)(8)); + w229.RightAttach = ((uint)(13)); + w229.XOptions = ((global::Gtk.AttachOptions)(4)); + w229.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog3 = new global::Gtk.Label(); + this.lblLog3.WidthRequest = 250; + this.lblLog3.HeightRequest = 50; + this.lblLog3.Name = "lblLog3"; + this.lblLog3.LabelProp = "ERROR"; + this.lblLog3.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog3); + global::Gtk.Table.TableChild w230 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); + w230.TopAttach = ((uint)(14)); + w230.BottomAttach = ((uint)(15)); + w230.LeftAttach = ((uint)(8)); + w230.RightAttach = ((uint)(13)); + w230.XOptions = ((global::Gtk.AttachOptions)(4)); + w230.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog4 = new global::Gtk.Label(); + this.lblLog4.WidthRequest = 250; + this.lblLog4.HeightRequest = 50; + this.lblLog4.Name = "lblLog4"; + this.lblLog4.LabelProp = "ERROR"; + this.lblLog4.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog4); + global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); + w231.TopAttach = ((uint)(15)); + w231.BottomAttach = ((uint)(16)); + w231.LeftAttach = ((uint)(8)); + w231.RightAttach = ((uint)(13)); + w231.XOptions = ((global::Gtk.AttachOptions)(4)); + w231.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblSuperLayer = new global::Gtk.Label(); + this.lblSuperLayer.WidthRequest = 100; + this.lblSuperLayer.HeightRequest = 50; + this.lblSuperLayer.Name = "lblSuperLayer"; + this.lblSuperLayer.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblSuperLayer); + global::Gtk.Table.TableChild w232 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblSuperLayer])); + w232.TopAttach = ((uint)(7)); + w232.BottomAttach = ((uint)(8)); + w232.LeftAttach = ((uint)(1)); + w232.RightAttach = ((uint)(3)); + w232.XOptions = ((global::Gtk.AttachOptions)(4)); + w232.YOptions = ((global::Gtk.AttachOptions)(4)); + this.Add(this.tbUI); + if ((this.Child != null)) + { + this.Child.ShowAll(); + } + this.DefaultWidth = 890; + this.DefaultHeight = 770; + this.Show(); + this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent); + this.btnPause.Clicked += new global::System.EventHandler(this.OnBtnPauseClicked); + this.btnP9.Clicked += new global::System.EventHandler(this.OnBtnP9Clicked); + this.btnP8.Clicked += new global::System.EventHandler(this.OnBtnP8Clicked); + this.btnP7.Clicked += new global::System.EventHandler(this.OnBtnP7Clicked); + this.btnP6.Clicked += new global::System.EventHandler(this.OnBtnP6Clicked); + this.btnP5.Clicked += new global::System.EventHandler(this.OnBtnP5Clicked); + this.btnP4.Clicked += new global::System.EventHandler(this.OnBtnP4Clicked); + this.btnP3.Clicked += new global::System.EventHandler(this.OnBtnP3Clicked); + this.btnP25.Clicked += new global::System.EventHandler(this.OnBtnP25Clicked); + this.btnP24.Clicked += new global::System.EventHandler(this.OnBtnP24Clicked); + this.btnP23.Clicked += new global::System.EventHandler(this.OnBtnP23Clicked); + this.btnP22.Clicked += new global::System.EventHandler(this.OnBtnP22Clicked); + this.btnP21.Clicked += new global::System.EventHandler(this.OnBtnP21Clicked); + this.btnP20.Clicked += new global::System.EventHandler(this.OnBtnP20Clicked); + this.btnP2.Clicked += new global::System.EventHandler(this.OnBtnP2Clicked); + this.btnP19.Clicked += new global::System.EventHandler(this.OnBtnP19Clicked); + this.btnP18.Clicked += new global::System.EventHandler(this.OnBtnP18Clicked); + this.btnP17.Clicked += new global::System.EventHandler(this.OnBtnP17Clicked); + this.btnP16.Clicked += new global::System.EventHandler(this.OnBtnP16Clicked); + this.btnP15.Clicked += new global::System.EventHandler(this.OnBtnP15Clicked); + this.btnP14.Clicked += new global::System.EventHandler(this.OnBtnP14Clicked); + this.btnP13.Clicked += new global::System.EventHandler(this.OnBtnP13Clicked); + this.btnP12.Clicked += new global::System.EventHandler(this.OnBtnP12Clicked); + this.btnP11.Clicked += new global::System.EventHandler(this.OnBtnP11Clicked); + this.btnP10.Clicked += new global::System.EventHandler(this.OnBtnP10Clicked); + this.btnP1.Clicked += new global::System.EventHandler(this.OnBtnP1Clicked); + this.btnMusic.Clicked += new global::System.EventHandler(this.OnBtnMusicClicked); + this.btnMap.Clicked += new global::System.EventHandler(this.OnBtnMapClicked); + this.btnLog.Clicked += new global::System.EventHandler(this.OnBtnLogClicked); + this.btnInv.Clicked += new global::System.EventHandler(this.OnBtnInvClicked); + this.btnIG2.Clicked += new global::System.EventHandler(this.OnBtnIG2Clicked); + this.btnIG1.Clicked += new global::System.EventHandler(this.OnBtnIG1Clicked); + this.btnI9.Clicked += new global::System.EventHandler(this.OnBtnI9Clicked); + this.btnI8.Clicked += new global::System.EventHandler(this.OnBtnI8Clicked); + this.btnI7.Clicked += new global::System.EventHandler(this.OnBtnI7Clicked); + this.btnI6.Clicked += new global::System.EventHandler(this.OnBtnI6Clicked); + this.btnI5.Clicked += new global::System.EventHandler(this.OnBtnI5Clicked); + this.btnI4.Clicked += new global::System.EventHandler(this.OnBtnI4Clicked); + this.btnI3.Clicked += new global::System.EventHandler(this.OnBtnI3Clicked); + this.btnI25.Clicked += new global::System.EventHandler(this.OnBtnI25Clicked); + this.btnI24.Clicked += new global::System.EventHandler(this.OnBtnI24Clicked); + this.btnI23.Clicked += new global::System.EventHandler(this.OnBtnI23Clicked); + this.btnI22.Clicked += new global::System.EventHandler(this.OnBtnI22Clicked); + this.btnI21.Clicked += new global::System.EventHandler(this.OnBtnI21Clicked); + this.btnI20.Clicked += new global::System.EventHandler(this.OnBtnI20Clicked); + this.btnI2.Clicked += new global::System.EventHandler(this.OnBtnI2Clicked); + this.btnI19.Clicked += new global::System.EventHandler(this.OnBtnI19Clicked); + this.btnI18.Clicked += new global::System.EventHandler(this.OnBtnI18Clicked); + this.btnI17.Clicked += new global::System.EventHandler(this.OnBtnI17Clicked); + this.btnI16.Clicked += new global::System.EventHandler(this.OnBtnI16Clicked); + this.btnI15.Clicked += new global::System.EventHandler(this.OnBtnI15Clicked); + this.btnI14.Clicked += new global::System.EventHandler(this.OnBtnI14Clicked); + this.btnI13.Clicked += new global::System.EventHandler(this.OnBtnI13Clicked); + this.btnI12.Clicked += new global::System.EventHandler(this.OnBtnI12Clicked); + this.btnI11.Clicked += new global::System.EventHandler(this.OnBtnI11Clicked); + this.btnI10.Clicked += new global::System.EventHandler(this.OnBtnI10Clicked); + this.btnI1.Clicked += new global::System.EventHandler(this.OnBtnI1Clicked); + this.btnH5.Clicked += new global::System.EventHandler(this.OnBtnH5Clicked); + this.btnH4.Clicked += new global::System.EventHandler(this.OnBtnH4Clicked); + this.btnH3.Clicked += new global::System.EventHandler(this.OnBtnH3Clicked); + this.btnH2.Clicked += new global::System.EventHandler(this.OnBtnH2Clicked); + this.btnH1.Clicked += new global::System.EventHandler(this.OnBtnH1Clicked); + this.btnG5.Clicked += new global::System.EventHandler(this.OnBtnG5Clicked); + this.btnG4.Clicked += new global::System.EventHandler(this.OnBtnG4Clicked); + this.btnG3.Clicked += new global::System.EventHandler(this.OnBtnG3Clicked); + this.btnG2.Clicked += new global::System.EventHandler(this.OnBtnG2Clicked); + this.btnG1.Clicked += new global::System.EventHandler(this.OnBtnG1Clicked); + this.btnCrafting.Clicked += new global::System.EventHandler(this.OnBtnCraftingClicked); + this.btnA9.Clicked += new global::System.EventHandler(this.OnBtnA9Clicked); + this.btnA8.Clicked += new global::System.EventHandler(this.OnBtnA8Clicked); + this.btnA7.Clicked += new global::System.EventHandler(this.OnBtnA7Clicked); + this.btnA6.Clicked += new global::System.EventHandler(this.OnBtnA6Clicked); + this.btnA5.Clicked += new global::System.EventHandler(this.OnBtnA5Clicked); + this.btnA4.Clicked += new global::System.EventHandler(this.OnBtnA4Clicked); + this.btnA3.Clicked += new global::System.EventHandler(this.OnBtnA3Clicked); + this.btnA2.Clicked += new global::System.EventHandler(this.OnBtnA2Clicked); + this.btnA10.Clicked += new global::System.EventHandler(this.OnBtnA10Clicked); + this.btnA1.Clicked += new global::System.EventHandler(this.OnBtnA1Clicked); + } + } +} diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.LargeGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.LargeGameWindow.cs deleted file mode 100644 index 3a31e9d..0000000 --- a/Mundus/gtk-gui/Mundus.Views.Windows.LargeGameWindow.cs +++ /dev/null @@ -1,7389 +0,0 @@ - -// This file has been generated by the GUI designer. Do not modify. -namespace Mundus.Views.Windows -{ - public partial class LargeGameWindow - { - private global::Gtk.Table tbUI; - - private global::Gtk.Button btnA1; - - private global::Gtk.Button btnA10; - - private global::Gtk.Button btnA11; - - private global::Gtk.Button btnA12; - - private global::Gtk.Button btnA13; - - private global::Gtk.Button btnA14; - - private global::Gtk.Button btnA15; - - private global::Gtk.Button btnA16; - - private global::Gtk.Button btnA17; - - private global::Gtk.Button btnA18; - - private global::Gtk.Button btnA2; - - private global::Gtk.Button btnA3; - - private global::Gtk.Button btnA4; - - private global::Gtk.Button btnA5; - - private global::Gtk.Button btnA6; - - private global::Gtk.Button btnA7; - - private global::Gtk.Button btnA8; - - private global::Gtk.Button btnA9; - - private global::Gtk.Button btnCrafting; - - private global::Gtk.Button btnG1; - - private global::Gtk.Button btnG2; - - private global::Gtk.Button btnG3; - - private global::Gtk.Button btnG4; - - private global::Gtk.Button btnG5; - - private global::Gtk.Button btnG6; - - private global::Gtk.Button btnG7; - - private global::Gtk.Button btnG8; - - private global::Gtk.Button btnG9; - - private global::Gtk.Button btnH1; - - private global::Gtk.Button btnH2; - - private global::Gtk.Button btnH3; - - private global::Gtk.Button btnH4; - - private global::Gtk.Button btnH5; - - private global::Gtk.Button btnH6; - - private global::Gtk.Button btnH7; - - private global::Gtk.Button btnH8; - - private global::Gtk.Button btnH9; - - private global::Gtk.Button btnI1; - - private global::Gtk.Button btnI10; - - private global::Gtk.Button btnI11; - - private global::Gtk.Button btnI12; - - private global::Gtk.Button btnI13; - - private global::Gtk.Button btnI14; - - private global::Gtk.Button btnI15; - - private global::Gtk.Button btnI16; - - private global::Gtk.Button btnI17; - - private global::Gtk.Button btnI18; - - private global::Gtk.Button btnI19; - - private global::Gtk.Button btnI2; - - private global::Gtk.Button btnI20; - - private global::Gtk.Button btnI21; - - private global::Gtk.Button btnI22; - - private global::Gtk.Button btnI23; - - private global::Gtk.Button btnI24; - - private global::Gtk.Button btnI25; - - private global::Gtk.Button btnI26; - - private global::Gtk.Button btnI27; - - private global::Gtk.Button btnI28; - - private global::Gtk.Button btnI29; - - private global::Gtk.Button btnI3; - - private global::Gtk.Button btnI30; - - private global::Gtk.Button btnI31; - - private global::Gtk.Button btnI32; - - private global::Gtk.Button btnI33; - - private global::Gtk.Button btnI34; - - private global::Gtk.Button btnI35; - - private global::Gtk.Button btnI36; - - private global::Gtk.Button btnI37; - - private global::Gtk.Button btnI38; - - private global::Gtk.Button btnI39; - - private global::Gtk.Button btnI4; - - private global::Gtk.Button btnI40; - - private global::Gtk.Button btnI41; - - private global::Gtk.Button btnI42; - - private global::Gtk.Button btnI43; - - private global::Gtk.Button btnI44; - - private global::Gtk.Button btnI45; - - private global::Gtk.Button btnI46; - - private global::Gtk.Button btnI47; - - private global::Gtk.Button btnI48; - - private global::Gtk.Button btnI49; - - private global::Gtk.Button btnI5; - - private global::Gtk.Button btnI50; - - private global::Gtk.Button btnI51; - - private global::Gtk.Button btnI52; - - private global::Gtk.Button btnI53; - - private global::Gtk.Button btnI54; - - private global::Gtk.Button btnI55; - - private global::Gtk.Button btnI56; - - private global::Gtk.Button btnI57; - - private global::Gtk.Button btnI58; - - private global::Gtk.Button btnI59; - - private global::Gtk.Button btnI6; - - private global::Gtk.Button btnI60; - - private global::Gtk.Button btnI61; - - private global::Gtk.Button btnI62; - - private global::Gtk.Button btnI63; - - private global::Gtk.Button btnI64; - - private global::Gtk.Button btnI65; - - private global::Gtk.Button btnI66; - - private global::Gtk.Button btnI67; - - private global::Gtk.Button btnI68; - - private global::Gtk.Button btnI69; - - private global::Gtk.Button btnI7; - - private global::Gtk.Button btnI70; - - private global::Gtk.Button btnI71; - - private global::Gtk.Button btnI72; - - private global::Gtk.Button btnI73; - - private global::Gtk.Button btnI74; - - private global::Gtk.Button btnI75; - - private global::Gtk.Button btnI76; - - private global::Gtk.Button btnI77; - - private global::Gtk.Button btnI78; - - private global::Gtk.Button btnI79; - - private global::Gtk.Button btnI8; - - private global::Gtk.Button btnI80; - - private global::Gtk.Button btnI81; - - private global::Gtk.Button btnI9; - - private global::Gtk.Button btnInv; - - private global::Gtk.Button btnLog; - - private global::Gtk.Button btnMap; - - private global::Gtk.Button btnMusic; - - private global::Gtk.Button btnP1; - - private global::Gtk.Button btnP10; - - private global::Gtk.Button btnP11; - - private global::Gtk.Button btnP12; - - private global::Gtk.Button btnP13; - - private global::Gtk.Button btnP14; - - private global::Gtk.Button btnP15; - - private global::Gtk.Button btnP16; - - private global::Gtk.Button btnP17; - - private global::Gtk.Button btnP18; - - private global::Gtk.Button btnP19; - - private global::Gtk.Button btnP2; - - private global::Gtk.Button btnP20; - - private global::Gtk.Button btnP21; - - private global::Gtk.Button btnP22; - - private global::Gtk.Button btnP23; - - private global::Gtk.Button btnP24; - - private global::Gtk.Button btnP25; - - private global::Gtk.Button btnP26; - - private global::Gtk.Button btnP27; - - private global::Gtk.Button btnP28; - - private global::Gtk.Button btnP29; - - private global::Gtk.Button btnP3; - - private global::Gtk.Button btnP30; - - private global::Gtk.Button btnP31; - - private global::Gtk.Button btnP32; - - private global::Gtk.Button btnP33; - - private global::Gtk.Button btnP34; - - private global::Gtk.Button btnP35; - - private global::Gtk.Button btnP36; - - private global::Gtk.Button btnP37; - - private global::Gtk.Button btnP38; - - private global::Gtk.Button btnP39; - - private global::Gtk.Button btnP4; - - private global::Gtk.Button btnP40; - - private global::Gtk.Button btnP41; - - private global::Gtk.Button btnP42; - - private global::Gtk.Button btnP43; - - private global::Gtk.Button btnP44; - - private global::Gtk.Button btnP45; - - private global::Gtk.Button btnP46; - - private global::Gtk.Button btnP47; - - private global::Gtk.Button btnP48; - - private global::Gtk.Button btnP49; - - private global::Gtk.Button btnP5; - - private global::Gtk.Button btnP50; - - private global::Gtk.Button btnP51; - - private global::Gtk.Button btnP52; - - private global::Gtk.Button btnP53; - - private global::Gtk.Button btnP54; - - private global::Gtk.Button btnP55; - - private global::Gtk.Button btnP56; - - private global::Gtk.Button btnP57; - - private global::Gtk.Button btnP58; - - private global::Gtk.Button btnP59; - - private global::Gtk.Button btnP6; - - private global::Gtk.Button btnP60; - - private global::Gtk.Button btnP61; - - private global::Gtk.Button btnP62; - - private global::Gtk.Button btnP63; - - private global::Gtk.Button btnP64; - - private global::Gtk.Button btnP65; - - private global::Gtk.Button btnP66; - - private global::Gtk.Button btnP67; - - private global::Gtk.Button btnP68; - - private global::Gtk.Button btnP69; - - private global::Gtk.Button btnP7; - - private global::Gtk.Button btnP70; - - private global::Gtk.Button btnP71; - - private global::Gtk.Button btnP72; - - private global::Gtk.Button btnP73; - - private global::Gtk.Button btnP74; - - private global::Gtk.Button btnP75; - - private global::Gtk.Button btnP76; - - private global::Gtk.Button btnP77; - - private global::Gtk.Button btnP78; - - private global::Gtk.Button btnP79; - - private global::Gtk.Button btnP8; - - private global::Gtk.Button btnP80; - - private global::Gtk.Button btnP81; - - private global::Gtk.Button btnP9; - - private global::Gtk.Button btnPause; - - private global::Gtk.Image imgG1; - - private global::Gtk.Image imgG10; - - private global::Gtk.Image imgG11; - - private global::Gtk.Image imgG12; - - private global::Gtk.Image imgG13; - - private global::Gtk.Image imgG14; - - private global::Gtk.Image imgG15; - - private global::Gtk.Image imgG16; - - private global::Gtk.Image imgG17; - - private global::Gtk.Image imgG18; - - private global::Gtk.Image imgG19; - - private global::Gtk.Image imgG2; - - private global::Gtk.Image imgG20; - - private global::Gtk.Image imgG21; - - private global::Gtk.Image imgG22; - - private global::Gtk.Image imgG23; - - private global::Gtk.Image imgG24; - - private global::Gtk.Image imgG25; - - private global::Gtk.Image imgG26; - - private global::Gtk.Image imgG27; - - private global::Gtk.Image imgG28; - - private global::Gtk.Image imgG29; - - private global::Gtk.Image imgG3; - - private global::Gtk.Image imgG30; - - private global::Gtk.Image imgG31; - - private global::Gtk.Image imgG32; - - private global::Gtk.Image imgG33; - - private global::Gtk.Image imgG34; - - private global::Gtk.Image imgG35; - - private global::Gtk.Image imgG36; - - private global::Gtk.Image imgG37; - - private global::Gtk.Image imgG38; - - private global::Gtk.Image imgG39; - - private global::Gtk.Image imgG4; - - private global::Gtk.Image imgG40; - - private global::Gtk.Image imgG41; - - private global::Gtk.Image imgG42; - - private global::Gtk.Image imgG43; - - private global::Gtk.Image imgG44; - - private global::Gtk.Image imgG45; - - private global::Gtk.Image imgG46; - - private global::Gtk.Image imgG47; - - private global::Gtk.Image imgG48; - - private global::Gtk.Image imgG49; - - private global::Gtk.Image imgG5; - - private global::Gtk.Image imgG50; - - private global::Gtk.Image imgG51; - - private global::Gtk.Image imgG52; - - private global::Gtk.Image imgG53; - - private global::Gtk.Image imgG54; - - private global::Gtk.Image imgG55; - - private global::Gtk.Image imgG56; - - private global::Gtk.Image imgG57; - - private global::Gtk.Image imgG58; - - private global::Gtk.Image imgG59; - - private global::Gtk.Image imgG6; - - private global::Gtk.Image imgG60; - - private global::Gtk.Image imgG61; - - private global::Gtk.Image imgG62; - - private global::Gtk.Image imgG63; - - private global::Gtk.Image imgG64; - - private global::Gtk.Image imgG65; - - private global::Gtk.Image imgG66; - - private global::Gtk.Image imgG67; - - private global::Gtk.Image imgG68; - - private global::Gtk.Image imgG69; - - private global::Gtk.Image imgG7; - - private global::Gtk.Image imgG70; - - private global::Gtk.Image imgG71; - - private global::Gtk.Image imgG72; - - private global::Gtk.Image imgG73; - - private global::Gtk.Image imgG74; - - private global::Gtk.Image imgG75; - - private global::Gtk.Image imgG76; - - private global::Gtk.Image imgG77; - - private global::Gtk.Image imgG78; - - private global::Gtk.Image imgG79; - - private global::Gtk.Image imgG8; - - private global::Gtk.Image imgG80; - - private global::Gtk.Image imgG81; - - private global::Gtk.Image imgG9; - - private global::Gtk.Image imgI1; - - private global::Gtk.Image imgI10; - - private global::Gtk.Image imgI11; - - private global::Gtk.Image imgI12; - - private global::Gtk.Image imgI13; - - private global::Gtk.Image imgI14; - - private global::Gtk.Image imgI15; - - private global::Gtk.Image imgI16; - - private global::Gtk.Image imgI17; - - private global::Gtk.Image imgI18; - - private global::Gtk.Image imgI19; - - private global::Gtk.Image imgI2; - - private global::Gtk.Image imgI20; - - private global::Gtk.Image imgI21; - - private global::Gtk.Image imgI22; - - private global::Gtk.Image imgI23; - - private global::Gtk.Image imgI24; - - private global::Gtk.Image imgI25; - - private global::Gtk.Image imgI26; - - private global::Gtk.Image imgI27; - - private global::Gtk.Image imgI28; - - private global::Gtk.Image imgI29; - - private global::Gtk.Image imgI3; - - private global::Gtk.Image imgI30; - - private global::Gtk.Image imgI31; - - private global::Gtk.Image imgI32; - - private global::Gtk.Image imgI33; - - private global::Gtk.Image imgI34; - - private global::Gtk.Image imgI35; - - private global::Gtk.Image imgI36; - - private global::Gtk.Image imgI37; - - private global::Gtk.Image imgI38; - - private global::Gtk.Image imgI39; - - private global::Gtk.Image imgI4; - - private global::Gtk.Image imgI40; - - private global::Gtk.Image imgI41; - - private global::Gtk.Image imgI42; - - private global::Gtk.Image imgI43; - - private global::Gtk.Image imgI44; - - private global::Gtk.Image imgI45; - - private global::Gtk.Image imgI46; - - private global::Gtk.Image imgI47; - - private global::Gtk.Image imgI48; - - private global::Gtk.Image imgI49; - - private global::Gtk.Image imgI5; - - private global::Gtk.Image imgI50; - - private global::Gtk.Image imgI51; - - private global::Gtk.Image imgI52; - - private global::Gtk.Image imgI53; - - private global::Gtk.Image imgI54; - - private global::Gtk.Image imgI55; - - private global::Gtk.Image imgI56; - - private global::Gtk.Image imgI57; - - private global::Gtk.Image imgI58; - - private global::Gtk.Image imgI59; - - private global::Gtk.Image imgI6; - - private global::Gtk.Image imgI60; - - private global::Gtk.Image imgI61; - - private global::Gtk.Image imgI62; - - private global::Gtk.Image imgI63; - - private global::Gtk.Image imgI64; - - private global::Gtk.Image imgI65; - - private global::Gtk.Image imgI66; - - private global::Gtk.Image imgI67; - - private global::Gtk.Image imgI68; - - private global::Gtk.Image imgI69; - - private global::Gtk.Image imgI7; - - private global::Gtk.Image imgI70; - - private global::Gtk.Image imgI71; - - private global::Gtk.Image imgI72; - - private global::Gtk.Image imgI73; - - private global::Gtk.Image imgI74; - - private global::Gtk.Image imgI75; - - private global::Gtk.Image imgI76; - - private global::Gtk.Image imgI77; - - private global::Gtk.Image imgI78; - - private global::Gtk.Image imgI79; - - private global::Gtk.Image imgI8; - - private global::Gtk.Image imgI80; - - private global::Gtk.Image imgI81; - - private global::Gtk.Image imgI9; - - private global::Gtk.Image imgInfo; - - private global::Gtk.Image imgS1; - - private global::Gtk.Image imgS10; - - private global::Gtk.Image imgS11; - - private global::Gtk.Image imgS12; - - private global::Gtk.Image imgS13; - - private global::Gtk.Image imgS14; - - private global::Gtk.Image imgS15; - - private global::Gtk.Image imgS16; - - private global::Gtk.Image imgS17; - - private global::Gtk.Image imgS18; - - private global::Gtk.Image imgS2; - - private global::Gtk.Image imgS3; - - private global::Gtk.Image imgS4; - - private global::Gtk.Image imgS5; - - private global::Gtk.Image imgS6; - - private global::Gtk.Image imgS7; - - private global::Gtk.Image imgS8; - - private global::Gtk.Image imgS9; - - private global::Gtk.Label lblAccessories; - - private global::Gtk.Label lblBlank1; - - private global::Gtk.Label lblBlank2; - - private global::Gtk.Label lblBlank3; - - private global::Gtk.Label lblBlank4; - - private global::Gtk.Label lblBlank5; - - private global::Gtk.Label lblBlank6; - - private global::Gtk.Label lblBlank8; - - private global::Gtk.Label lblCoord1; - - private global::Gtk.Label lblCoord2; - - private global::Gtk.Label lblGear; - - private global::Gtk.Label lblGroundLayer; - - private global::Gtk.Label lblHoleMsg; - - private global::Gtk.Label lblHoleOnTop; - - private global::Gtk.Label lblHotbar; - - private global::Gtk.Label lblInfo; - - private global::Gtk.Label lblItemLayer; - - private global::Gtk.Label lblLog1; - - private global::Gtk.Label lblLog2; - - private global::Gtk.Label lblLog3; - - private global::Gtk.Label lblLog4; - - private global::Gtk.Label lblLog5; - - private global::Gtk.Label lblLog6; - - private global::Gtk.Label lblLog7; - - private global::Gtk.Label lblLog8; - - private global::Gtk.Label lblSuperLayer; - - protected virtual void Build() - { - global::Stetic.Gui.Initialize(this); - // Widget Mundus.Views.Windows.LargeGameWindow - this.Name = "Mundus.Views.Windows.LargeGameWindow"; - this.Title = "LargeGameWindow"; - this.WindowPosition = ((global::Gtk.WindowPosition)(2)); - this.Resizable = false; - this.AllowGrow = false; - // Container child Mundus.Views.Windows.LargeGameWindow.Gtk.Container+ContainerChild - this.tbUI = new global::Gtk.Table(((uint)(25)), ((uint)(33)), false); - this.tbUI.Name = "tbUI"; - // Container child tbUI.Gtk.Table+TableChild - this.btnA1 = new global::Gtk.Button(); - this.btnA1.WidthRequest = 50; - this.btnA1.HeightRequest = 50; - this.btnA1.CanFocus = true; - this.btnA1.Name = "btnA1"; - this.btnA1.UseUnderline = true; - global::Gtk.Image w1 = new global::Gtk.Image(); - this.btnA1.Image = w1; - this.tbUI.Add(this.btnA1); - global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA1])); - w2.TopAttach = ((uint)(13)); - w2.BottomAttach = ((uint)(14)); - w2.LeftAttach = ((uint)(23)); - w2.RightAttach = ((uint)(24)); - w2.XOptions = ((global::Gtk.AttachOptions)(4)); - w2.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA10 = new global::Gtk.Button(); - this.btnA10.WidthRequest = 50; - this.btnA10.HeightRequest = 50; - this.btnA10.CanFocus = true; - this.btnA10.Name = "btnA10"; - this.btnA10.UseUnderline = true; - global::Gtk.Image w3 = new global::Gtk.Image(); - this.btnA10.Image = w3; - this.tbUI.Add(this.btnA10); - global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA10])); - w4.TopAttach = ((uint)(14)); - w4.BottomAttach = ((uint)(15)); - w4.LeftAttach = ((uint)(23)); - w4.RightAttach = ((uint)(24)); - w4.XOptions = ((global::Gtk.AttachOptions)(4)); - w4.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA11 = new global::Gtk.Button(); - this.btnA11.WidthRequest = 50; - this.btnA11.HeightRequest = 50; - this.btnA11.CanFocus = true; - this.btnA11.Name = "btnA11"; - this.btnA11.UseUnderline = true; - global::Gtk.Image w5 = new global::Gtk.Image(); - this.btnA11.Image = w5; - this.tbUI.Add(this.btnA11); - global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA11])); - w6.TopAttach = ((uint)(14)); - w6.BottomAttach = ((uint)(15)); - w6.LeftAttach = ((uint)(24)); - w6.RightAttach = ((uint)(25)); - w6.XOptions = ((global::Gtk.AttachOptions)(4)); - w6.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA12 = new global::Gtk.Button(); - this.btnA12.WidthRequest = 50; - this.btnA12.HeightRequest = 50; - this.btnA12.CanFocus = true; - this.btnA12.Name = "btnA12"; - this.btnA12.UseUnderline = true; - global::Gtk.Image w7 = new global::Gtk.Image(); - this.btnA12.Image = w7; - this.tbUI.Add(this.btnA12); - global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA12])); - w8.TopAttach = ((uint)(14)); - w8.BottomAttach = ((uint)(15)); - w8.LeftAttach = ((uint)(25)); - w8.RightAttach = ((uint)(26)); - w8.XOptions = ((global::Gtk.AttachOptions)(4)); - w8.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA13 = new global::Gtk.Button(); - this.btnA13.WidthRequest = 50; - this.btnA13.HeightRequest = 50; - this.btnA13.CanFocus = true; - this.btnA13.Name = "btnA13"; - this.btnA13.UseUnderline = true; - global::Gtk.Image w9 = new global::Gtk.Image(); - this.btnA13.Image = w9; - this.tbUI.Add(this.btnA13); - global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA13])); - w10.TopAttach = ((uint)(14)); - w10.BottomAttach = ((uint)(15)); - w10.LeftAttach = ((uint)(26)); - w10.RightAttach = ((uint)(27)); - w10.XOptions = ((global::Gtk.AttachOptions)(4)); - w10.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA14 = new global::Gtk.Button(); - this.btnA14.WidthRequest = 50; - this.btnA14.HeightRequest = 50; - this.btnA14.CanFocus = true; - this.btnA14.Name = "btnA14"; - this.btnA14.UseUnderline = true; - global::Gtk.Image w11 = new global::Gtk.Image(); - this.btnA14.Image = w11; - this.tbUI.Add(this.btnA14); - global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA14])); - w12.TopAttach = ((uint)(14)); - w12.BottomAttach = ((uint)(15)); - w12.LeftAttach = ((uint)(27)); - w12.RightAttach = ((uint)(28)); - w12.XOptions = ((global::Gtk.AttachOptions)(4)); - w12.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA15 = new global::Gtk.Button(); - this.btnA15.WidthRequest = 50; - this.btnA15.HeightRequest = 50; - this.btnA15.CanFocus = true; - this.btnA15.Name = "btnA15"; - this.btnA15.UseUnderline = true; - global::Gtk.Image w13 = new global::Gtk.Image(); - this.btnA15.Image = w13; - this.tbUI.Add(this.btnA15); - global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA15])); - w14.TopAttach = ((uint)(14)); - w14.BottomAttach = ((uint)(15)); - w14.LeftAttach = ((uint)(28)); - w14.RightAttach = ((uint)(29)); - w14.XOptions = ((global::Gtk.AttachOptions)(4)); - w14.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA16 = new global::Gtk.Button(); - this.btnA16.WidthRequest = 50; - this.btnA16.HeightRequest = 50; - this.btnA16.CanFocus = true; - this.btnA16.Name = "btnA16"; - this.btnA16.UseUnderline = true; - global::Gtk.Image w15 = new global::Gtk.Image(); - this.btnA16.Image = w15; - this.tbUI.Add(this.btnA16); - global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA16])); - w16.TopAttach = ((uint)(14)); - w16.BottomAttach = ((uint)(15)); - w16.LeftAttach = ((uint)(29)); - w16.RightAttach = ((uint)(30)); - w16.XOptions = ((global::Gtk.AttachOptions)(4)); - w16.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA17 = new global::Gtk.Button(); - this.btnA17.WidthRequest = 50; - this.btnA17.HeightRequest = 50; - this.btnA17.CanFocus = true; - this.btnA17.Name = "btnA17"; - this.btnA17.UseUnderline = true; - global::Gtk.Image w17 = new global::Gtk.Image(); - this.btnA17.Image = w17; - this.tbUI.Add(this.btnA17); - global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA17])); - w18.TopAttach = ((uint)(14)); - w18.BottomAttach = ((uint)(15)); - w18.LeftAttach = ((uint)(30)); - w18.RightAttach = ((uint)(31)); - w18.XOptions = ((global::Gtk.AttachOptions)(4)); - w18.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA18 = new global::Gtk.Button(); - this.btnA18.WidthRequest = 50; - this.btnA18.HeightRequest = 50; - this.btnA18.CanFocus = true; - this.btnA18.Name = "btnA18"; - this.btnA18.UseUnderline = true; - global::Gtk.Image w19 = new global::Gtk.Image(); - this.btnA18.Image = w19; - this.tbUI.Add(this.btnA18); - global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA18])); - w20.TopAttach = ((uint)(14)); - w20.BottomAttach = ((uint)(15)); - w20.LeftAttach = ((uint)(31)); - w20.RightAttach = ((uint)(32)); - w20.XOptions = ((global::Gtk.AttachOptions)(4)); - w20.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA2 = new global::Gtk.Button(); - this.btnA2.WidthRequest = 50; - this.btnA2.HeightRequest = 50; - this.btnA2.CanFocus = true; - this.btnA2.Name = "btnA2"; - this.btnA2.UseUnderline = true; - global::Gtk.Image w21 = new global::Gtk.Image(); - this.btnA2.Image = w21; - this.tbUI.Add(this.btnA2); - global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA2])); - w22.TopAttach = ((uint)(13)); - w22.BottomAttach = ((uint)(14)); - w22.LeftAttach = ((uint)(24)); - w22.RightAttach = ((uint)(25)); - w22.XOptions = ((global::Gtk.AttachOptions)(4)); - w22.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA3 = new global::Gtk.Button(); - this.btnA3.WidthRequest = 50; - this.btnA3.HeightRequest = 50; - this.btnA3.CanFocus = true; - this.btnA3.Name = "btnA3"; - this.btnA3.UseUnderline = true; - global::Gtk.Image w23 = new global::Gtk.Image(); - this.btnA3.Image = w23; - this.tbUI.Add(this.btnA3); - global::Gtk.Table.TableChild w24 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA3])); - w24.TopAttach = ((uint)(13)); - w24.BottomAttach = ((uint)(14)); - w24.LeftAttach = ((uint)(25)); - w24.RightAttach = ((uint)(26)); - w24.XOptions = ((global::Gtk.AttachOptions)(4)); - w24.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA4 = new global::Gtk.Button(); - this.btnA4.WidthRequest = 50; - this.btnA4.HeightRequest = 50; - this.btnA4.CanFocus = true; - this.btnA4.Name = "btnA4"; - this.btnA4.UseUnderline = true; - global::Gtk.Image w25 = new global::Gtk.Image(); - this.btnA4.Image = w25; - this.tbUI.Add(this.btnA4); - global::Gtk.Table.TableChild w26 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA4])); - w26.TopAttach = ((uint)(13)); - w26.BottomAttach = ((uint)(14)); - w26.LeftAttach = ((uint)(26)); - w26.RightAttach = ((uint)(27)); - w26.XOptions = ((global::Gtk.AttachOptions)(4)); - w26.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA5 = new global::Gtk.Button(); - this.btnA5.WidthRequest = 50; - this.btnA5.HeightRequest = 50; - this.btnA5.CanFocus = true; - this.btnA5.Name = "btnA5"; - this.btnA5.UseUnderline = true; - global::Gtk.Image w27 = new global::Gtk.Image(); - this.btnA5.Image = w27; - this.tbUI.Add(this.btnA5); - global::Gtk.Table.TableChild w28 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA5])); - w28.TopAttach = ((uint)(13)); - w28.BottomAttach = ((uint)(14)); - w28.LeftAttach = ((uint)(27)); - w28.RightAttach = ((uint)(28)); - w28.XOptions = ((global::Gtk.AttachOptions)(4)); - w28.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA6 = new global::Gtk.Button(); - this.btnA6.WidthRequest = 50; - this.btnA6.HeightRequest = 50; - this.btnA6.CanFocus = true; - this.btnA6.Name = "btnA6"; - this.btnA6.UseUnderline = true; - global::Gtk.Image w29 = new global::Gtk.Image(); - this.btnA6.Image = w29; - this.tbUI.Add(this.btnA6); - global::Gtk.Table.TableChild w30 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA6])); - w30.TopAttach = ((uint)(13)); - w30.BottomAttach = ((uint)(14)); - w30.LeftAttach = ((uint)(28)); - w30.RightAttach = ((uint)(29)); - w30.XOptions = ((global::Gtk.AttachOptions)(4)); - w30.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA7 = new global::Gtk.Button(); - this.btnA7.WidthRequest = 50; - this.btnA7.HeightRequest = 50; - this.btnA7.CanFocus = true; - this.btnA7.Name = "btnA7"; - this.btnA7.UseUnderline = true; - global::Gtk.Image w31 = new global::Gtk.Image(); - this.btnA7.Image = w31; - this.tbUI.Add(this.btnA7); - global::Gtk.Table.TableChild w32 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA7])); - w32.TopAttach = ((uint)(13)); - w32.BottomAttach = ((uint)(14)); - w32.LeftAttach = ((uint)(29)); - w32.RightAttach = ((uint)(30)); - w32.XOptions = ((global::Gtk.AttachOptions)(4)); - w32.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA8 = new global::Gtk.Button(); - this.btnA8.WidthRequest = 50; - this.btnA8.HeightRequest = 50; - this.btnA8.CanFocus = true; - this.btnA8.Name = "btnA8"; - this.btnA8.UseUnderline = true; - global::Gtk.Image w33 = new global::Gtk.Image(); - this.btnA8.Image = w33; - this.tbUI.Add(this.btnA8); - global::Gtk.Table.TableChild w34 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA8])); - w34.TopAttach = ((uint)(13)); - w34.BottomAttach = ((uint)(14)); - w34.LeftAttach = ((uint)(30)); - w34.RightAttach = ((uint)(31)); - w34.XOptions = ((global::Gtk.AttachOptions)(4)); - w34.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA9 = new global::Gtk.Button(); - this.btnA9.WidthRequest = 50; - this.btnA9.HeightRequest = 50; - this.btnA9.CanFocus = true; - this.btnA9.Name = "btnA9"; - this.btnA9.UseUnderline = true; - global::Gtk.Image w35 = new global::Gtk.Image(); - this.btnA9.Image = w35; - this.tbUI.Add(this.btnA9); - global::Gtk.Table.TableChild w36 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA9])); - w36.TopAttach = ((uint)(13)); - w36.BottomAttach = ((uint)(14)); - w36.LeftAttach = ((uint)(31)); - w36.RightAttach = ((uint)(32)); - w36.XOptions = ((global::Gtk.AttachOptions)(4)); - w36.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnCrafting = new global::Gtk.Button(); - this.btnCrafting.CanFocus = true; - this.btnCrafting.Name = "btnCrafting"; - this.btnCrafting.UseUnderline = true; - this.btnCrafting.Label = "Crafting"; - this.tbUI.Add(this.btnCrafting); - global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnCrafting])); - w37.TopAttach = ((uint)(10)); - w37.BottomAttach = ((uint)(11)); - w37.LeftAttach = ((uint)(23)); - w37.RightAttach = ((uint)(32)); - w37.XOptions = ((global::Gtk.AttachOptions)(4)); - w37.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG1 = new global::Gtk.Button(); - this.btnG1.WidthRequest = 50; - this.btnG1.HeightRequest = 50; - this.btnG1.CanFocus = true; - this.btnG1.Name = "btnG1"; - this.btnG1.UseUnderline = true; - global::Gtk.Image w38 = new global::Gtk.Image(); - this.btnG1.Image = w38; - this.tbUI.Add(this.btnG1); - global::Gtk.Table.TableChild w39 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG1])); - w39.TopAttach = ((uint)(16)); - w39.BottomAttach = ((uint)(17)); - w39.LeftAttach = ((uint)(23)); - w39.RightAttach = ((uint)(24)); - w39.XOptions = ((global::Gtk.AttachOptions)(4)); - w39.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG2 = new global::Gtk.Button(); - this.btnG2.WidthRequest = 50; - this.btnG2.HeightRequest = 50; - this.btnG2.CanFocus = true; - this.btnG2.Name = "btnG2"; - this.btnG2.UseUnderline = true; - global::Gtk.Image w40 = new global::Gtk.Image(); - this.btnG2.Image = w40; - this.tbUI.Add(this.btnG2); - global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG2])); - w41.TopAttach = ((uint)(16)); - w41.BottomAttach = ((uint)(17)); - w41.LeftAttach = ((uint)(24)); - w41.RightAttach = ((uint)(25)); - w41.XOptions = ((global::Gtk.AttachOptions)(4)); - w41.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG3 = new global::Gtk.Button(); - this.btnG3.WidthRequest = 50; - this.btnG3.HeightRequest = 50; - this.btnG3.CanFocus = true; - this.btnG3.Name = "btnG3"; - this.btnG3.UseUnderline = true; - global::Gtk.Image w42 = new global::Gtk.Image(); - this.btnG3.Image = w42; - this.tbUI.Add(this.btnG3); - global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG3])); - w43.TopAttach = ((uint)(16)); - w43.BottomAttach = ((uint)(17)); - w43.LeftAttach = ((uint)(25)); - w43.RightAttach = ((uint)(26)); - w43.XOptions = ((global::Gtk.AttachOptions)(4)); - w43.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG4 = new global::Gtk.Button(); - this.btnG4.WidthRequest = 50; - this.btnG4.HeightRequest = 50; - this.btnG4.CanFocus = true; - this.btnG4.Name = "btnG4"; - this.btnG4.UseUnderline = true; - global::Gtk.Image w44 = new global::Gtk.Image(); - this.btnG4.Image = w44; - this.tbUI.Add(this.btnG4); - global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG4])); - w45.TopAttach = ((uint)(16)); - w45.BottomAttach = ((uint)(17)); - w45.LeftAttach = ((uint)(26)); - w45.RightAttach = ((uint)(27)); - w45.XOptions = ((global::Gtk.AttachOptions)(4)); - w45.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG5 = new global::Gtk.Button(); - this.btnG5.WidthRequest = 50; - this.btnG5.HeightRequest = 50; - this.btnG5.CanFocus = true; - this.btnG5.Name = "btnG5"; - this.btnG5.UseUnderline = true; - global::Gtk.Image w46 = new global::Gtk.Image(); - this.btnG5.Image = w46; - this.tbUI.Add(this.btnG5); - global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG5])); - w47.TopAttach = ((uint)(16)); - w47.BottomAttach = ((uint)(17)); - w47.LeftAttach = ((uint)(27)); - w47.RightAttach = ((uint)(28)); - w47.XOptions = ((global::Gtk.AttachOptions)(4)); - w47.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG6 = new global::Gtk.Button(); - this.btnG6.WidthRequest = 50; - this.btnG6.HeightRequest = 50; - this.btnG6.CanFocus = true; - this.btnG6.Name = "btnG6"; - this.btnG6.UseUnderline = true; - global::Gtk.Image w48 = new global::Gtk.Image(); - this.btnG6.Image = w48; - this.tbUI.Add(this.btnG6); - global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG6])); - w49.TopAttach = ((uint)(16)); - w49.BottomAttach = ((uint)(17)); - w49.LeftAttach = ((uint)(28)); - w49.RightAttach = ((uint)(29)); - w49.XOptions = ((global::Gtk.AttachOptions)(4)); - w49.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG7 = new global::Gtk.Button(); - this.btnG7.WidthRequest = 50; - this.btnG7.HeightRequest = 50; - this.btnG7.CanFocus = true; - this.btnG7.Name = "btnG7"; - this.btnG7.UseUnderline = true; - global::Gtk.Image w50 = new global::Gtk.Image(); - this.btnG7.Image = w50; - this.tbUI.Add(this.btnG7); - global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG7])); - w51.TopAttach = ((uint)(16)); - w51.BottomAttach = ((uint)(17)); - w51.LeftAttach = ((uint)(29)); - w51.RightAttach = ((uint)(30)); - w51.XOptions = ((global::Gtk.AttachOptions)(4)); - w51.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG8 = new global::Gtk.Button(); - this.btnG8.WidthRequest = 50; - this.btnG8.HeightRequest = 50; - this.btnG8.CanFocus = true; - this.btnG8.Name = "btnG8"; - this.btnG8.UseUnderline = true; - global::Gtk.Image w52 = new global::Gtk.Image(); - this.btnG8.Image = w52; - this.tbUI.Add(this.btnG8); - global::Gtk.Table.TableChild w53 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG8])); - w53.TopAttach = ((uint)(16)); - w53.BottomAttach = ((uint)(17)); - w53.LeftAttach = ((uint)(30)); - w53.RightAttach = ((uint)(31)); - w53.XOptions = ((global::Gtk.AttachOptions)(4)); - w53.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG9 = new global::Gtk.Button(); - this.btnG9.WidthRequest = 50; - this.btnG9.HeightRequest = 50; - this.btnG9.CanFocus = true; - this.btnG9.Name = "btnG9"; - this.btnG9.UseUnderline = true; - global::Gtk.Image w54 = new global::Gtk.Image(); - this.btnG9.Image = w54; - this.tbUI.Add(this.btnG9); - global::Gtk.Table.TableChild w55 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG9])); - w55.TopAttach = ((uint)(16)); - w55.BottomAttach = ((uint)(17)); - w55.LeftAttach = ((uint)(31)); - w55.RightAttach = ((uint)(32)); - w55.XOptions = ((global::Gtk.AttachOptions)(4)); - w55.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH1 = new global::Gtk.Button(); - this.btnH1.WidthRequest = 50; - this.btnH1.HeightRequest = 50; - this.btnH1.CanFocus = true; - this.btnH1.Name = "btnH1"; - this.btnH1.UseUnderline = true; - this.btnH1.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w56 = new global::Gtk.Image(); - this.btnH1.Image = w56; - this.tbUI.Add(this.btnH1); - global::Gtk.Table.TableChild w57 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH1])); - w57.TopAttach = ((uint)(14)); - w57.BottomAttach = ((uint)(15)); - w57.LeftAttach = ((uint)(12)); - w57.RightAttach = ((uint)(13)); - w57.XOptions = ((global::Gtk.AttachOptions)(4)); - w57.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH2 = new global::Gtk.Button(); - this.btnH2.WidthRequest = 50; - this.btnH2.HeightRequest = 50; - this.btnH2.CanFocus = true; - this.btnH2.Name = "btnH2"; - this.btnH2.UseUnderline = true; - this.btnH2.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w58 = new global::Gtk.Image(); - this.btnH2.Image = w58; - this.tbUI.Add(this.btnH2); - global::Gtk.Table.TableChild w59 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH2])); - w59.TopAttach = ((uint)(14)); - w59.BottomAttach = ((uint)(15)); - w59.LeftAttach = ((uint)(13)); - w59.RightAttach = ((uint)(14)); - w59.XOptions = ((global::Gtk.AttachOptions)(4)); - w59.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH3 = new global::Gtk.Button(); - this.btnH3.WidthRequest = 50; - this.btnH3.HeightRequest = 50; - this.btnH3.CanFocus = true; - this.btnH3.Name = "btnH3"; - this.btnH3.UseUnderline = true; - this.btnH3.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w60 = new global::Gtk.Image(); - this.btnH3.Image = w60; - this.tbUI.Add(this.btnH3); - global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH3])); - w61.TopAttach = ((uint)(14)); - w61.BottomAttach = ((uint)(15)); - w61.LeftAttach = ((uint)(14)); - w61.RightAttach = ((uint)(15)); - w61.XOptions = ((global::Gtk.AttachOptions)(4)); - w61.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH4 = new global::Gtk.Button(); - this.btnH4.WidthRequest = 50; - this.btnH4.HeightRequest = 50; - this.btnH4.CanFocus = true; - this.btnH4.Name = "btnH4"; - this.btnH4.UseUnderline = true; - this.btnH4.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w62 = new global::Gtk.Image(); - this.btnH4.Image = w62; - this.tbUI.Add(this.btnH4); - global::Gtk.Table.TableChild w63 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH4])); - w63.TopAttach = ((uint)(14)); - w63.BottomAttach = ((uint)(15)); - w63.LeftAttach = ((uint)(15)); - w63.RightAttach = ((uint)(16)); - w63.XOptions = ((global::Gtk.AttachOptions)(4)); - w63.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH5 = new global::Gtk.Button(); - this.btnH5.WidthRequest = 50; - this.btnH5.HeightRequest = 50; - this.btnH5.CanFocus = true; - this.btnH5.Name = "btnH5"; - this.btnH5.UseUnderline = true; - this.btnH5.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w64 = new global::Gtk.Image(); - this.btnH5.Image = w64; - this.tbUI.Add(this.btnH5); - global::Gtk.Table.TableChild w65 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH5])); - w65.TopAttach = ((uint)(14)); - w65.BottomAttach = ((uint)(15)); - w65.LeftAttach = ((uint)(16)); - w65.RightAttach = ((uint)(17)); - w65.XOptions = ((global::Gtk.AttachOptions)(4)); - w65.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH6 = new global::Gtk.Button(); - this.btnH6.WidthRequest = 50; - this.btnH6.HeightRequest = 50; - this.btnH6.CanFocus = true; - this.btnH6.Name = "btnH6"; - this.btnH6.UseUnderline = true; - this.btnH6.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w66 = new global::Gtk.Image(); - this.btnH6.Image = w66; - this.tbUI.Add(this.btnH6); - global::Gtk.Table.TableChild w67 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH6])); - w67.TopAttach = ((uint)(14)); - w67.BottomAttach = ((uint)(15)); - w67.LeftAttach = ((uint)(17)); - w67.RightAttach = ((uint)(18)); - w67.XOptions = ((global::Gtk.AttachOptions)(4)); - w67.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH7 = new global::Gtk.Button(); - this.btnH7.WidthRequest = 50; - this.btnH7.HeightRequest = 50; - this.btnH7.CanFocus = true; - this.btnH7.Name = "btnH7"; - this.btnH7.UseUnderline = true; - this.btnH7.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w68 = new global::Gtk.Image(); - this.btnH7.Image = w68; - this.tbUI.Add(this.btnH7); - global::Gtk.Table.TableChild w69 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH7])); - w69.TopAttach = ((uint)(14)); - w69.BottomAttach = ((uint)(15)); - w69.LeftAttach = ((uint)(18)); - w69.RightAttach = ((uint)(19)); - w69.XOptions = ((global::Gtk.AttachOptions)(4)); - w69.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH8 = new global::Gtk.Button(); - this.btnH8.WidthRequest = 50; - this.btnH8.HeightRequest = 50; - this.btnH8.CanFocus = true; - this.btnH8.Name = "btnH8"; - this.btnH8.UseUnderline = true; - this.btnH8.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w70 = new global::Gtk.Image(); - this.btnH8.Image = w70; - this.tbUI.Add(this.btnH8); - global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH8])); - w71.TopAttach = ((uint)(14)); - w71.BottomAttach = ((uint)(15)); - w71.LeftAttach = ((uint)(19)); - w71.RightAttach = ((uint)(20)); - w71.XOptions = ((global::Gtk.AttachOptions)(4)); - w71.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH9 = new global::Gtk.Button(); - this.btnH9.WidthRequest = 50; - this.btnH9.HeightRequest = 50; - this.btnH9.CanFocus = true; - this.btnH9.Name = "btnH9"; - this.btnH9.UseUnderline = true; - this.btnH9.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w72 = new global::Gtk.Image(); - this.btnH9.Image = w72; - this.tbUI.Add(this.btnH9); - global::Gtk.Table.TableChild w73 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH9])); - w73.TopAttach = ((uint)(14)); - w73.BottomAttach = ((uint)(15)); - w73.LeftAttach = ((uint)(20)); - w73.RightAttach = ((uint)(21)); - w73.XOptions = ((global::Gtk.AttachOptions)(4)); - w73.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI1 = new global::Gtk.Button(); - this.btnI1.WidthRequest = 50; - this.btnI1.HeightRequest = 50; - this.btnI1.CanFocus = true; - this.btnI1.Name = "btnI1"; - this.btnI1.UseUnderline = true; - this.btnI1.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w74 = new global::Gtk.Image(); - this.btnI1.Image = w74; - this.tbUI.Add(this.btnI1); - global::Gtk.Table.TableChild w75 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI1])); - w75.TopAttach = ((uint)(1)); - w75.BottomAttach = ((uint)(2)); - w75.LeftAttach = ((uint)(23)); - w75.RightAttach = ((uint)(24)); - w75.XOptions = ((global::Gtk.AttachOptions)(4)); - w75.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI10 = new global::Gtk.Button(); - this.btnI10.WidthRequest = 50; - this.btnI10.HeightRequest = 50; - this.btnI10.CanFocus = true; - this.btnI10.Name = "btnI10"; - this.btnI10.UseUnderline = true; - this.btnI10.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w76 = new global::Gtk.Image(); - this.btnI10.Image = w76; - this.tbUI.Add(this.btnI10); - global::Gtk.Table.TableChild w77 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI10])); - w77.TopAttach = ((uint)(2)); - w77.BottomAttach = ((uint)(3)); - w77.LeftAttach = ((uint)(23)); - w77.RightAttach = ((uint)(24)); - w77.XOptions = ((global::Gtk.AttachOptions)(4)); - w77.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI11 = new global::Gtk.Button(); - this.btnI11.WidthRequest = 50; - this.btnI11.HeightRequest = 50; - this.btnI11.CanFocus = true; - this.btnI11.Name = "btnI11"; - this.btnI11.UseUnderline = true; - this.btnI11.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w78 = new global::Gtk.Image(); - this.btnI11.Image = w78; - this.tbUI.Add(this.btnI11); - global::Gtk.Table.TableChild w79 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI11])); - w79.TopAttach = ((uint)(2)); - w79.BottomAttach = ((uint)(3)); - w79.LeftAttach = ((uint)(24)); - w79.RightAttach = ((uint)(25)); - w79.XOptions = ((global::Gtk.AttachOptions)(4)); - w79.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI12 = new global::Gtk.Button(); - this.btnI12.WidthRequest = 50; - this.btnI12.HeightRequest = 50; - this.btnI12.CanFocus = true; - this.btnI12.Name = "btnI12"; - this.btnI12.UseUnderline = true; - this.btnI12.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w80 = new global::Gtk.Image(); - this.btnI12.Image = w80; - this.tbUI.Add(this.btnI12); - global::Gtk.Table.TableChild w81 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI12])); - w81.TopAttach = ((uint)(2)); - w81.BottomAttach = ((uint)(3)); - w81.LeftAttach = ((uint)(25)); - w81.RightAttach = ((uint)(26)); - w81.XOptions = ((global::Gtk.AttachOptions)(4)); - w81.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI13 = new global::Gtk.Button(); - this.btnI13.WidthRequest = 50; - this.btnI13.HeightRequest = 50; - this.btnI13.CanFocus = true; - this.btnI13.Name = "btnI13"; - this.btnI13.UseUnderline = true; - this.btnI13.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w82 = new global::Gtk.Image(); - this.btnI13.Image = w82; - this.tbUI.Add(this.btnI13); - global::Gtk.Table.TableChild w83 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI13])); - w83.TopAttach = ((uint)(2)); - w83.BottomAttach = ((uint)(3)); - w83.LeftAttach = ((uint)(26)); - w83.RightAttach = ((uint)(27)); - w83.XOptions = ((global::Gtk.AttachOptions)(4)); - w83.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI14 = new global::Gtk.Button(); - this.btnI14.WidthRequest = 50; - this.btnI14.HeightRequest = 50; - this.btnI14.CanFocus = true; - this.btnI14.Name = "btnI14"; - this.btnI14.UseUnderline = true; - this.btnI14.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w84 = new global::Gtk.Image(); - this.btnI14.Image = w84; - this.tbUI.Add(this.btnI14); - global::Gtk.Table.TableChild w85 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI14])); - w85.TopAttach = ((uint)(2)); - w85.BottomAttach = ((uint)(3)); - w85.LeftAttach = ((uint)(27)); - w85.RightAttach = ((uint)(28)); - w85.XOptions = ((global::Gtk.AttachOptions)(4)); - w85.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI15 = new global::Gtk.Button(); - this.btnI15.WidthRequest = 50; - this.btnI15.HeightRequest = 50; - this.btnI15.CanFocus = true; - this.btnI15.Name = "btnI15"; - this.btnI15.UseUnderline = true; - this.btnI15.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w86 = new global::Gtk.Image(); - this.btnI15.Image = w86; - this.tbUI.Add(this.btnI15); - global::Gtk.Table.TableChild w87 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI15])); - w87.TopAttach = ((uint)(2)); - w87.BottomAttach = ((uint)(3)); - w87.LeftAttach = ((uint)(28)); - w87.RightAttach = ((uint)(29)); - w87.XOptions = ((global::Gtk.AttachOptions)(4)); - w87.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI16 = new global::Gtk.Button(); - this.btnI16.WidthRequest = 50; - this.btnI16.HeightRequest = 50; - this.btnI16.CanFocus = true; - this.btnI16.Name = "btnI16"; - this.btnI16.UseUnderline = true; - this.btnI16.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w88 = new global::Gtk.Image(); - this.btnI16.Image = w88; - this.tbUI.Add(this.btnI16); - global::Gtk.Table.TableChild w89 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI16])); - w89.TopAttach = ((uint)(2)); - w89.BottomAttach = ((uint)(3)); - w89.LeftAttach = ((uint)(29)); - w89.RightAttach = ((uint)(30)); - w89.XOptions = ((global::Gtk.AttachOptions)(4)); - w89.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI17 = new global::Gtk.Button(); - this.btnI17.WidthRequest = 50; - this.btnI17.HeightRequest = 50; - this.btnI17.CanFocus = true; - this.btnI17.Name = "btnI17"; - this.btnI17.UseUnderline = true; - this.btnI17.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w90 = new global::Gtk.Image(); - this.btnI17.Image = w90; - this.tbUI.Add(this.btnI17); - global::Gtk.Table.TableChild w91 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI17])); - w91.TopAttach = ((uint)(2)); - w91.BottomAttach = ((uint)(3)); - w91.LeftAttach = ((uint)(30)); - w91.RightAttach = ((uint)(31)); - w91.XOptions = ((global::Gtk.AttachOptions)(4)); - w91.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI18 = new global::Gtk.Button(); - this.btnI18.WidthRequest = 50; - this.btnI18.HeightRequest = 50; - this.btnI18.CanFocus = true; - this.btnI18.Name = "btnI18"; - this.btnI18.UseUnderline = true; - this.btnI18.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w92 = new global::Gtk.Image(); - this.btnI18.Image = w92; - this.tbUI.Add(this.btnI18); - global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI18])); - w93.TopAttach = ((uint)(2)); - w93.BottomAttach = ((uint)(3)); - w93.LeftAttach = ((uint)(31)); - w93.RightAttach = ((uint)(32)); - w93.XOptions = ((global::Gtk.AttachOptions)(4)); - w93.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI19 = new global::Gtk.Button(); - this.btnI19.WidthRequest = 50; - this.btnI19.HeightRequest = 50; - this.btnI19.CanFocus = true; - this.btnI19.Name = "btnI19"; - this.btnI19.UseUnderline = true; - this.btnI19.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w94 = new global::Gtk.Image(); - this.btnI19.Image = w94; - this.tbUI.Add(this.btnI19); - global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI19])); - w95.TopAttach = ((uint)(3)); - w95.BottomAttach = ((uint)(4)); - w95.LeftAttach = ((uint)(23)); - w95.RightAttach = ((uint)(24)); - w95.XOptions = ((global::Gtk.AttachOptions)(4)); - w95.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI2 = new global::Gtk.Button(); - this.btnI2.WidthRequest = 50; - this.btnI2.HeightRequest = 50; - this.btnI2.CanFocus = true; - this.btnI2.Name = "btnI2"; - this.btnI2.UseUnderline = true; - this.btnI2.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w96 = new global::Gtk.Image(); - this.btnI2.Image = w96; - this.tbUI.Add(this.btnI2); - global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI2])); - w97.TopAttach = ((uint)(1)); - w97.BottomAttach = ((uint)(2)); - w97.LeftAttach = ((uint)(24)); - w97.RightAttach = ((uint)(25)); - w97.XOptions = ((global::Gtk.AttachOptions)(4)); - w97.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI20 = new global::Gtk.Button(); - this.btnI20.WidthRequest = 50; - this.btnI20.HeightRequest = 50; - this.btnI20.CanFocus = true; - this.btnI20.Name = "btnI20"; - this.btnI20.UseUnderline = true; - this.btnI20.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w98 = new global::Gtk.Image(); - this.btnI20.Image = w98; - this.tbUI.Add(this.btnI20); - global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI20])); - w99.TopAttach = ((uint)(3)); - w99.BottomAttach = ((uint)(4)); - w99.LeftAttach = ((uint)(24)); - w99.RightAttach = ((uint)(25)); - w99.XOptions = ((global::Gtk.AttachOptions)(4)); - w99.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI21 = new global::Gtk.Button(); - this.btnI21.WidthRequest = 50; - this.btnI21.HeightRequest = 50; - this.btnI21.CanFocus = true; - this.btnI21.Name = "btnI21"; - this.btnI21.UseUnderline = true; - this.btnI21.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w100 = new global::Gtk.Image(); - this.btnI21.Image = w100; - this.tbUI.Add(this.btnI21); - global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI21])); - w101.TopAttach = ((uint)(3)); - w101.BottomAttach = ((uint)(4)); - w101.LeftAttach = ((uint)(25)); - w101.RightAttach = ((uint)(26)); - w101.XOptions = ((global::Gtk.AttachOptions)(4)); - w101.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI22 = new global::Gtk.Button(); - this.btnI22.WidthRequest = 50; - this.btnI22.HeightRequest = 50; - this.btnI22.CanFocus = true; - this.btnI22.Name = "btnI22"; - this.btnI22.UseUnderline = true; - this.btnI22.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w102 = new global::Gtk.Image(); - this.btnI22.Image = w102; - this.tbUI.Add(this.btnI22); - global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI22])); - w103.TopAttach = ((uint)(3)); - w103.BottomAttach = ((uint)(4)); - w103.LeftAttach = ((uint)(26)); - w103.RightAttach = ((uint)(27)); - w103.XOptions = ((global::Gtk.AttachOptions)(4)); - w103.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI23 = new global::Gtk.Button(); - this.btnI23.WidthRequest = 50; - this.btnI23.HeightRequest = 50; - this.btnI23.CanFocus = true; - this.btnI23.Name = "btnI23"; - this.btnI23.UseUnderline = true; - this.btnI23.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w104 = new global::Gtk.Image(); - this.btnI23.Image = w104; - this.tbUI.Add(this.btnI23); - global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI23])); - w105.TopAttach = ((uint)(3)); - w105.BottomAttach = ((uint)(4)); - w105.LeftAttach = ((uint)(27)); - w105.RightAttach = ((uint)(28)); - w105.XOptions = ((global::Gtk.AttachOptions)(4)); - w105.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI24 = new global::Gtk.Button(); - this.btnI24.WidthRequest = 50; - this.btnI24.HeightRequest = 50; - this.btnI24.CanFocus = true; - this.btnI24.Name = "btnI24"; - this.btnI24.UseUnderline = true; - this.btnI24.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w106 = new global::Gtk.Image(); - this.btnI24.Image = w106; - this.tbUI.Add(this.btnI24); - global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI24])); - w107.TopAttach = ((uint)(3)); - w107.BottomAttach = ((uint)(4)); - w107.LeftAttach = ((uint)(28)); - w107.RightAttach = ((uint)(29)); - w107.XOptions = ((global::Gtk.AttachOptions)(4)); - w107.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI25 = new global::Gtk.Button(); - this.btnI25.WidthRequest = 50; - this.btnI25.HeightRequest = 50; - this.btnI25.CanFocus = true; - this.btnI25.Name = "btnI25"; - this.btnI25.UseUnderline = true; - this.btnI25.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w108 = new global::Gtk.Image(); - this.btnI25.Image = w108; - this.tbUI.Add(this.btnI25); - global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI25])); - w109.TopAttach = ((uint)(3)); - w109.BottomAttach = ((uint)(4)); - w109.LeftAttach = ((uint)(29)); - w109.RightAttach = ((uint)(30)); - w109.XOptions = ((global::Gtk.AttachOptions)(4)); - w109.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI26 = new global::Gtk.Button(); - this.btnI26.WidthRequest = 50; - this.btnI26.HeightRequest = 50; - this.btnI26.CanFocus = true; - this.btnI26.Name = "btnI26"; - this.btnI26.UseUnderline = true; - this.btnI26.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w110 = new global::Gtk.Image(); - this.btnI26.Image = w110; - this.tbUI.Add(this.btnI26); - global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI26])); - w111.TopAttach = ((uint)(3)); - w111.BottomAttach = ((uint)(4)); - w111.LeftAttach = ((uint)(30)); - w111.RightAttach = ((uint)(31)); - w111.XOptions = ((global::Gtk.AttachOptions)(4)); - w111.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI27 = new global::Gtk.Button(); - this.btnI27.WidthRequest = 50; - this.btnI27.HeightRequest = 50; - this.btnI27.CanFocus = true; - this.btnI27.Name = "btnI27"; - this.btnI27.UseUnderline = true; - this.btnI27.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w112 = new global::Gtk.Image(); - this.btnI27.Image = w112; - this.tbUI.Add(this.btnI27); - global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI27])); - w113.TopAttach = ((uint)(3)); - w113.BottomAttach = ((uint)(4)); - w113.LeftAttach = ((uint)(31)); - w113.RightAttach = ((uint)(32)); - w113.XOptions = ((global::Gtk.AttachOptions)(4)); - w113.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI28 = new global::Gtk.Button(); - this.btnI28.WidthRequest = 50; - this.btnI28.HeightRequest = 50; - this.btnI28.CanFocus = true; - this.btnI28.Name = "btnI28"; - this.btnI28.UseUnderline = true; - this.btnI28.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w114 = new global::Gtk.Image(); - this.btnI28.Image = w114; - this.tbUI.Add(this.btnI28); - global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI28])); - w115.TopAttach = ((uint)(4)); - w115.BottomAttach = ((uint)(5)); - w115.LeftAttach = ((uint)(23)); - w115.RightAttach = ((uint)(24)); - w115.XOptions = ((global::Gtk.AttachOptions)(4)); - w115.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI29 = new global::Gtk.Button(); - this.btnI29.WidthRequest = 50; - this.btnI29.HeightRequest = 50; - this.btnI29.CanFocus = true; - this.btnI29.Name = "btnI29"; - this.btnI29.UseUnderline = true; - this.btnI29.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w116 = new global::Gtk.Image(); - this.btnI29.Image = w116; - this.tbUI.Add(this.btnI29); - global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI29])); - w117.TopAttach = ((uint)(4)); - w117.BottomAttach = ((uint)(5)); - w117.LeftAttach = ((uint)(24)); - w117.RightAttach = ((uint)(25)); - w117.XOptions = ((global::Gtk.AttachOptions)(4)); - w117.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI3 = new global::Gtk.Button(); - this.btnI3.WidthRequest = 50; - this.btnI3.HeightRequest = 50; - this.btnI3.CanFocus = true; - this.btnI3.Name = "btnI3"; - this.btnI3.UseUnderline = true; - this.btnI3.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w118 = new global::Gtk.Image(); - this.btnI3.Image = w118; - this.tbUI.Add(this.btnI3); - global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI3])); - w119.TopAttach = ((uint)(1)); - w119.BottomAttach = ((uint)(2)); - w119.LeftAttach = ((uint)(25)); - w119.RightAttach = ((uint)(26)); - w119.XOptions = ((global::Gtk.AttachOptions)(4)); - w119.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI30 = new global::Gtk.Button(); - this.btnI30.WidthRequest = 50; - this.btnI30.HeightRequest = 50; - this.btnI30.CanFocus = true; - this.btnI30.Name = "btnI30"; - this.btnI30.UseUnderline = true; - this.btnI30.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w120 = new global::Gtk.Image(); - this.btnI30.Image = w120; - this.tbUI.Add(this.btnI30); - global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI30])); - w121.TopAttach = ((uint)(4)); - w121.BottomAttach = ((uint)(5)); - w121.LeftAttach = ((uint)(25)); - w121.RightAttach = ((uint)(26)); - w121.XOptions = ((global::Gtk.AttachOptions)(4)); - w121.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI31 = new global::Gtk.Button(); - this.btnI31.WidthRequest = 50; - this.btnI31.HeightRequest = 50; - this.btnI31.CanFocus = true; - this.btnI31.Name = "btnI31"; - this.btnI31.UseUnderline = true; - this.btnI31.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w122 = new global::Gtk.Image(); - this.btnI31.Image = w122; - this.tbUI.Add(this.btnI31); - global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI31])); - w123.TopAttach = ((uint)(4)); - w123.BottomAttach = ((uint)(5)); - w123.LeftAttach = ((uint)(26)); - w123.RightAttach = ((uint)(27)); - w123.XOptions = ((global::Gtk.AttachOptions)(4)); - w123.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI32 = new global::Gtk.Button(); - this.btnI32.WidthRequest = 50; - this.btnI32.HeightRequest = 50; - this.btnI32.CanFocus = true; - this.btnI32.Name = "btnI32"; - this.btnI32.UseUnderline = true; - this.btnI32.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w124 = new global::Gtk.Image(); - this.btnI32.Image = w124; - this.tbUI.Add(this.btnI32); - global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI32])); - w125.TopAttach = ((uint)(4)); - w125.BottomAttach = ((uint)(5)); - w125.LeftAttach = ((uint)(27)); - w125.RightAttach = ((uint)(28)); - w125.XOptions = ((global::Gtk.AttachOptions)(4)); - w125.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI33 = new global::Gtk.Button(); - this.btnI33.WidthRequest = 50; - this.btnI33.HeightRequest = 50; - this.btnI33.CanFocus = true; - this.btnI33.Name = "btnI33"; - this.btnI33.UseUnderline = true; - this.btnI33.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w126 = new global::Gtk.Image(); - this.btnI33.Image = w126; - this.tbUI.Add(this.btnI33); - global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI33])); - w127.TopAttach = ((uint)(4)); - w127.BottomAttach = ((uint)(5)); - w127.LeftAttach = ((uint)(28)); - w127.RightAttach = ((uint)(29)); - w127.XOptions = ((global::Gtk.AttachOptions)(4)); - w127.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI34 = new global::Gtk.Button(); - this.btnI34.WidthRequest = 50; - this.btnI34.HeightRequest = 50; - this.btnI34.CanFocus = true; - this.btnI34.Name = "btnI34"; - this.btnI34.UseUnderline = true; - this.btnI34.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w128 = new global::Gtk.Image(); - this.btnI34.Image = w128; - this.tbUI.Add(this.btnI34); - global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI34])); - w129.TopAttach = ((uint)(4)); - w129.BottomAttach = ((uint)(5)); - w129.LeftAttach = ((uint)(29)); - w129.RightAttach = ((uint)(30)); - w129.XOptions = ((global::Gtk.AttachOptions)(4)); - w129.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI35 = new global::Gtk.Button(); - this.btnI35.WidthRequest = 50; - this.btnI35.HeightRequest = 50; - this.btnI35.CanFocus = true; - this.btnI35.Name = "btnI35"; - this.btnI35.UseUnderline = true; - this.btnI35.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w130 = new global::Gtk.Image(); - this.btnI35.Image = w130; - this.tbUI.Add(this.btnI35); - global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI35])); - w131.TopAttach = ((uint)(4)); - w131.BottomAttach = ((uint)(5)); - w131.LeftAttach = ((uint)(30)); - w131.RightAttach = ((uint)(31)); - w131.XOptions = ((global::Gtk.AttachOptions)(4)); - w131.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI36 = new global::Gtk.Button(); - this.btnI36.WidthRequest = 50; - this.btnI36.HeightRequest = 50; - this.btnI36.CanFocus = true; - this.btnI36.Name = "btnI36"; - this.btnI36.UseUnderline = true; - this.btnI36.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w132 = new global::Gtk.Image(); - this.btnI36.Image = w132; - this.tbUI.Add(this.btnI36); - global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI36])); - w133.TopAttach = ((uint)(4)); - w133.BottomAttach = ((uint)(5)); - w133.LeftAttach = ((uint)(31)); - w133.RightAttach = ((uint)(32)); - w133.XOptions = ((global::Gtk.AttachOptions)(4)); - w133.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI37 = new global::Gtk.Button(); - this.btnI37.WidthRequest = 50; - this.btnI37.HeightRequest = 50; - this.btnI37.CanFocus = true; - this.btnI37.Name = "btnI37"; - this.btnI37.UseUnderline = true; - this.btnI37.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w134 = new global::Gtk.Image(); - this.btnI37.Image = w134; - this.tbUI.Add(this.btnI37); - global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI37])); - w135.TopAttach = ((uint)(5)); - w135.BottomAttach = ((uint)(6)); - w135.LeftAttach = ((uint)(23)); - w135.RightAttach = ((uint)(24)); - w135.XOptions = ((global::Gtk.AttachOptions)(4)); - w135.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI38 = new global::Gtk.Button(); - this.btnI38.WidthRequest = 50; - this.btnI38.HeightRequest = 50; - this.btnI38.CanFocus = true; - this.btnI38.Name = "btnI38"; - this.btnI38.UseUnderline = true; - this.btnI38.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w136 = new global::Gtk.Image(); - this.btnI38.Image = w136; - this.tbUI.Add(this.btnI38); - global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI38])); - w137.TopAttach = ((uint)(5)); - w137.BottomAttach = ((uint)(6)); - w137.LeftAttach = ((uint)(24)); - w137.RightAttach = ((uint)(25)); - w137.XOptions = ((global::Gtk.AttachOptions)(4)); - w137.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI39 = new global::Gtk.Button(); - this.btnI39.WidthRequest = 50; - this.btnI39.HeightRequest = 50; - this.btnI39.CanFocus = true; - this.btnI39.Name = "btnI39"; - this.btnI39.UseUnderline = true; - this.btnI39.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w138 = new global::Gtk.Image(); - this.btnI39.Image = w138; - this.tbUI.Add(this.btnI39); - global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI39])); - w139.TopAttach = ((uint)(5)); - w139.BottomAttach = ((uint)(6)); - w139.LeftAttach = ((uint)(25)); - w139.RightAttach = ((uint)(26)); - w139.XOptions = ((global::Gtk.AttachOptions)(4)); - w139.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI4 = new global::Gtk.Button(); - this.btnI4.WidthRequest = 50; - this.btnI4.HeightRequest = 50; - this.btnI4.CanFocus = true; - this.btnI4.Name = "btnI4"; - this.btnI4.UseUnderline = true; - this.btnI4.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w140 = new global::Gtk.Image(); - this.btnI4.Image = w140; - this.tbUI.Add(this.btnI4); - global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI4])); - w141.TopAttach = ((uint)(1)); - w141.BottomAttach = ((uint)(2)); - w141.LeftAttach = ((uint)(26)); - w141.RightAttach = ((uint)(27)); - w141.XOptions = ((global::Gtk.AttachOptions)(4)); - w141.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI40 = new global::Gtk.Button(); - this.btnI40.WidthRequest = 50; - this.btnI40.HeightRequest = 50; - this.btnI40.CanFocus = true; - this.btnI40.Name = "btnI40"; - this.btnI40.UseUnderline = true; - this.btnI40.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w142 = new global::Gtk.Image(); - this.btnI40.Image = w142; - this.tbUI.Add(this.btnI40); - global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI40])); - w143.TopAttach = ((uint)(5)); - w143.BottomAttach = ((uint)(6)); - w143.LeftAttach = ((uint)(26)); - w143.RightAttach = ((uint)(27)); - w143.XOptions = ((global::Gtk.AttachOptions)(4)); - w143.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI41 = new global::Gtk.Button(); - this.btnI41.WidthRequest = 50; - this.btnI41.HeightRequest = 50; - this.btnI41.CanFocus = true; - this.btnI41.Name = "btnI41"; - this.btnI41.UseUnderline = true; - this.btnI41.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w144 = new global::Gtk.Image(); - this.btnI41.Image = w144; - this.tbUI.Add(this.btnI41); - global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI41])); - w145.TopAttach = ((uint)(5)); - w145.BottomAttach = ((uint)(6)); - w145.LeftAttach = ((uint)(27)); - w145.RightAttach = ((uint)(28)); - w145.XOptions = ((global::Gtk.AttachOptions)(4)); - w145.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI42 = new global::Gtk.Button(); - this.btnI42.WidthRequest = 50; - this.btnI42.HeightRequest = 50; - this.btnI42.CanFocus = true; - this.btnI42.Name = "btnI42"; - this.btnI42.UseUnderline = true; - this.btnI42.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w146 = new global::Gtk.Image(); - this.btnI42.Image = w146; - this.tbUI.Add(this.btnI42); - global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI42])); - w147.TopAttach = ((uint)(5)); - w147.BottomAttach = ((uint)(6)); - w147.LeftAttach = ((uint)(28)); - w147.RightAttach = ((uint)(29)); - w147.XOptions = ((global::Gtk.AttachOptions)(4)); - w147.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI43 = new global::Gtk.Button(); - this.btnI43.WidthRequest = 50; - this.btnI43.HeightRequest = 50; - this.btnI43.CanFocus = true; - this.btnI43.Name = "btnI43"; - this.btnI43.UseUnderline = true; - this.btnI43.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w148 = new global::Gtk.Image(); - this.btnI43.Image = w148; - this.tbUI.Add(this.btnI43); - global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI43])); - w149.TopAttach = ((uint)(5)); - w149.BottomAttach = ((uint)(6)); - w149.LeftAttach = ((uint)(29)); - w149.RightAttach = ((uint)(30)); - w149.XOptions = ((global::Gtk.AttachOptions)(4)); - w149.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI44 = new global::Gtk.Button(); - this.btnI44.WidthRequest = 50; - this.btnI44.HeightRequest = 50; - this.btnI44.CanFocus = true; - this.btnI44.Name = "btnI44"; - this.btnI44.UseUnderline = true; - this.btnI44.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w150 = new global::Gtk.Image(); - this.btnI44.Image = w150; - this.tbUI.Add(this.btnI44); - global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI44])); - w151.TopAttach = ((uint)(5)); - w151.BottomAttach = ((uint)(6)); - w151.LeftAttach = ((uint)(30)); - w151.RightAttach = ((uint)(31)); - w151.XOptions = ((global::Gtk.AttachOptions)(4)); - w151.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI45 = new global::Gtk.Button(); - this.btnI45.WidthRequest = 50; - this.btnI45.HeightRequest = 50; - this.btnI45.CanFocus = true; - this.btnI45.Name = "btnI45"; - this.btnI45.UseUnderline = true; - this.btnI45.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w152 = new global::Gtk.Image(); - this.btnI45.Image = w152; - this.tbUI.Add(this.btnI45); - global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI45])); - w153.TopAttach = ((uint)(5)); - w153.BottomAttach = ((uint)(6)); - w153.LeftAttach = ((uint)(31)); - w153.RightAttach = ((uint)(32)); - w153.XOptions = ((global::Gtk.AttachOptions)(4)); - w153.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI46 = new global::Gtk.Button(); - this.btnI46.WidthRequest = 50; - this.btnI46.HeightRequest = 50; - this.btnI46.CanFocus = true; - this.btnI46.Name = "btnI46"; - this.btnI46.UseUnderline = true; - this.btnI46.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w154 = new global::Gtk.Image(); - this.btnI46.Image = w154; - this.tbUI.Add(this.btnI46); - global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI46])); - w155.TopAttach = ((uint)(6)); - w155.BottomAttach = ((uint)(7)); - w155.LeftAttach = ((uint)(23)); - w155.RightAttach = ((uint)(24)); - w155.XOptions = ((global::Gtk.AttachOptions)(4)); - w155.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI47 = new global::Gtk.Button(); - this.btnI47.WidthRequest = 50; - this.btnI47.HeightRequest = 50; - this.btnI47.CanFocus = true; - this.btnI47.Name = "btnI47"; - this.btnI47.UseUnderline = true; - this.btnI47.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w156 = new global::Gtk.Image(); - this.btnI47.Image = w156; - this.tbUI.Add(this.btnI47); - global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI47])); - w157.TopAttach = ((uint)(6)); - w157.BottomAttach = ((uint)(7)); - w157.LeftAttach = ((uint)(24)); - w157.RightAttach = ((uint)(25)); - w157.XOptions = ((global::Gtk.AttachOptions)(4)); - w157.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI48 = new global::Gtk.Button(); - this.btnI48.WidthRequest = 50; - this.btnI48.HeightRequest = 50; - this.btnI48.CanFocus = true; - this.btnI48.Name = "btnI48"; - this.btnI48.UseUnderline = true; - this.btnI48.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w158 = new global::Gtk.Image(); - this.btnI48.Image = w158; - this.tbUI.Add(this.btnI48); - global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI48])); - w159.TopAttach = ((uint)(6)); - w159.BottomAttach = ((uint)(7)); - w159.LeftAttach = ((uint)(25)); - w159.RightAttach = ((uint)(26)); - w159.XOptions = ((global::Gtk.AttachOptions)(4)); - w159.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI49 = new global::Gtk.Button(); - this.btnI49.WidthRequest = 50; - this.btnI49.HeightRequest = 50; - this.btnI49.CanFocus = true; - this.btnI49.Name = "btnI49"; - this.btnI49.UseUnderline = true; - this.btnI49.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w160 = new global::Gtk.Image(); - this.btnI49.Image = w160; - this.tbUI.Add(this.btnI49); - global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI49])); - w161.TopAttach = ((uint)(6)); - w161.BottomAttach = ((uint)(7)); - w161.LeftAttach = ((uint)(26)); - w161.RightAttach = ((uint)(27)); - w161.XOptions = ((global::Gtk.AttachOptions)(4)); - w161.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI5 = new global::Gtk.Button(); - this.btnI5.WidthRequest = 50; - this.btnI5.HeightRequest = 50; - this.btnI5.CanFocus = true; - this.btnI5.Name = "btnI5"; - this.btnI5.UseUnderline = true; - this.btnI5.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w162 = new global::Gtk.Image(); - this.btnI5.Image = w162; - this.tbUI.Add(this.btnI5); - global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI5])); - w163.TopAttach = ((uint)(1)); - w163.BottomAttach = ((uint)(2)); - w163.LeftAttach = ((uint)(27)); - w163.RightAttach = ((uint)(28)); - w163.XOptions = ((global::Gtk.AttachOptions)(4)); - w163.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI50 = new global::Gtk.Button(); - this.btnI50.WidthRequest = 50; - this.btnI50.HeightRequest = 50; - this.btnI50.CanFocus = true; - this.btnI50.Name = "btnI50"; - this.btnI50.UseUnderline = true; - this.btnI50.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w164 = new global::Gtk.Image(); - this.btnI50.Image = w164; - this.tbUI.Add(this.btnI50); - global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI50])); - w165.TopAttach = ((uint)(6)); - w165.BottomAttach = ((uint)(7)); - w165.LeftAttach = ((uint)(27)); - w165.RightAttach = ((uint)(28)); - w165.XOptions = ((global::Gtk.AttachOptions)(4)); - w165.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI51 = new global::Gtk.Button(); - this.btnI51.WidthRequest = 50; - this.btnI51.HeightRequest = 50; - this.btnI51.CanFocus = true; - this.btnI51.Name = "btnI51"; - this.btnI51.UseUnderline = true; - this.btnI51.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w166 = new global::Gtk.Image(); - this.btnI51.Image = w166; - this.tbUI.Add(this.btnI51); - global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI51])); - w167.TopAttach = ((uint)(6)); - w167.BottomAttach = ((uint)(7)); - w167.LeftAttach = ((uint)(28)); - w167.RightAttach = ((uint)(29)); - w167.XOptions = ((global::Gtk.AttachOptions)(4)); - w167.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI52 = new global::Gtk.Button(); - this.btnI52.WidthRequest = 50; - this.btnI52.HeightRequest = 50; - this.btnI52.CanFocus = true; - this.btnI52.Name = "btnI52"; - this.btnI52.UseUnderline = true; - this.btnI52.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w168 = new global::Gtk.Image(); - this.btnI52.Image = w168; - this.tbUI.Add(this.btnI52); - global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI52])); - w169.TopAttach = ((uint)(6)); - w169.BottomAttach = ((uint)(7)); - w169.LeftAttach = ((uint)(29)); - w169.RightAttach = ((uint)(30)); - w169.XOptions = ((global::Gtk.AttachOptions)(4)); - w169.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI53 = new global::Gtk.Button(); - this.btnI53.WidthRequest = 50; - this.btnI53.HeightRequest = 50; - this.btnI53.CanFocus = true; - this.btnI53.Name = "btnI53"; - this.btnI53.UseUnderline = true; - this.btnI53.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w170 = new global::Gtk.Image(); - this.btnI53.Image = w170; - this.tbUI.Add(this.btnI53); - global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI53])); - w171.TopAttach = ((uint)(6)); - w171.BottomAttach = ((uint)(7)); - w171.LeftAttach = ((uint)(30)); - w171.RightAttach = ((uint)(31)); - w171.XOptions = ((global::Gtk.AttachOptions)(4)); - w171.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI54 = new global::Gtk.Button(); - this.btnI54.WidthRequest = 50; - this.btnI54.HeightRequest = 50; - this.btnI54.CanFocus = true; - this.btnI54.Name = "btnI54"; - this.btnI54.UseUnderline = true; - this.btnI54.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w172 = new global::Gtk.Image(); - this.btnI54.Image = w172; - this.tbUI.Add(this.btnI54); - global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI54])); - w173.TopAttach = ((uint)(6)); - w173.BottomAttach = ((uint)(7)); - w173.LeftAttach = ((uint)(31)); - w173.RightAttach = ((uint)(32)); - w173.XOptions = ((global::Gtk.AttachOptions)(4)); - w173.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI55 = new global::Gtk.Button(); - this.btnI55.WidthRequest = 50; - this.btnI55.HeightRequest = 50; - this.btnI55.CanFocus = true; - this.btnI55.Name = "btnI55"; - this.btnI55.UseUnderline = true; - this.btnI55.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w174 = new global::Gtk.Image(); - this.btnI55.Image = w174; - this.tbUI.Add(this.btnI55); - global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI55])); - w175.TopAttach = ((uint)(7)); - w175.BottomAttach = ((uint)(8)); - w175.LeftAttach = ((uint)(23)); - w175.RightAttach = ((uint)(24)); - w175.XOptions = ((global::Gtk.AttachOptions)(4)); - w175.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI56 = new global::Gtk.Button(); - this.btnI56.WidthRequest = 50; - this.btnI56.HeightRequest = 50; - this.btnI56.CanFocus = true; - this.btnI56.Name = "btnI56"; - this.btnI56.UseUnderline = true; - this.btnI56.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w176 = new global::Gtk.Image(); - this.btnI56.Image = w176; - this.tbUI.Add(this.btnI56); - global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI56])); - w177.TopAttach = ((uint)(7)); - w177.BottomAttach = ((uint)(8)); - w177.LeftAttach = ((uint)(24)); - w177.RightAttach = ((uint)(25)); - w177.XOptions = ((global::Gtk.AttachOptions)(4)); - w177.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI57 = new global::Gtk.Button(); - this.btnI57.WidthRequest = 50; - this.btnI57.HeightRequest = 50; - this.btnI57.CanFocus = true; - this.btnI57.Name = "btnI57"; - this.btnI57.UseUnderline = true; - this.btnI57.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w178 = new global::Gtk.Image(); - this.btnI57.Image = w178; - this.tbUI.Add(this.btnI57); - global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI57])); - w179.TopAttach = ((uint)(7)); - w179.BottomAttach = ((uint)(8)); - w179.LeftAttach = ((uint)(25)); - w179.RightAttach = ((uint)(26)); - w179.XOptions = ((global::Gtk.AttachOptions)(4)); - w179.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI58 = new global::Gtk.Button(); - this.btnI58.WidthRequest = 50; - this.btnI58.HeightRequest = 50; - this.btnI58.CanFocus = true; - this.btnI58.Name = "btnI58"; - this.btnI58.UseUnderline = true; - this.btnI58.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w180 = new global::Gtk.Image(); - this.btnI58.Image = w180; - this.tbUI.Add(this.btnI58); - global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI58])); - w181.TopAttach = ((uint)(7)); - w181.BottomAttach = ((uint)(8)); - w181.LeftAttach = ((uint)(26)); - w181.RightAttach = ((uint)(27)); - w181.XOptions = ((global::Gtk.AttachOptions)(4)); - w181.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI59 = new global::Gtk.Button(); - this.btnI59.WidthRequest = 50; - this.btnI59.HeightRequest = 50; - this.btnI59.CanFocus = true; - this.btnI59.Name = "btnI59"; - this.btnI59.UseUnderline = true; - this.btnI59.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w182 = new global::Gtk.Image(); - this.btnI59.Image = w182; - this.tbUI.Add(this.btnI59); - global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI59])); - w183.TopAttach = ((uint)(7)); - w183.BottomAttach = ((uint)(8)); - w183.LeftAttach = ((uint)(27)); - w183.RightAttach = ((uint)(28)); - w183.XOptions = ((global::Gtk.AttachOptions)(4)); - w183.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI6 = new global::Gtk.Button(); - this.btnI6.WidthRequest = 50; - this.btnI6.HeightRequest = 50; - this.btnI6.CanFocus = true; - this.btnI6.Name = "btnI6"; - this.btnI6.UseUnderline = true; - this.btnI6.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w184 = new global::Gtk.Image(); - this.btnI6.Image = w184; - this.tbUI.Add(this.btnI6); - global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI6])); - w185.TopAttach = ((uint)(1)); - w185.BottomAttach = ((uint)(2)); - w185.LeftAttach = ((uint)(28)); - w185.RightAttach = ((uint)(29)); - w185.XOptions = ((global::Gtk.AttachOptions)(4)); - w185.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI60 = new global::Gtk.Button(); - this.btnI60.WidthRequest = 50; - this.btnI60.HeightRequest = 50; - this.btnI60.CanFocus = true; - this.btnI60.Name = "btnI60"; - this.btnI60.UseUnderline = true; - this.btnI60.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w186 = new global::Gtk.Image(); - this.btnI60.Image = w186; - this.tbUI.Add(this.btnI60); - global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI60])); - w187.TopAttach = ((uint)(7)); - w187.BottomAttach = ((uint)(8)); - w187.LeftAttach = ((uint)(28)); - w187.RightAttach = ((uint)(29)); - w187.XOptions = ((global::Gtk.AttachOptions)(4)); - w187.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI61 = new global::Gtk.Button(); - this.btnI61.WidthRequest = 50; - this.btnI61.HeightRequest = 50; - this.btnI61.CanFocus = true; - this.btnI61.Name = "btnI61"; - this.btnI61.UseUnderline = true; - this.btnI61.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w188 = new global::Gtk.Image(); - this.btnI61.Image = w188; - this.tbUI.Add(this.btnI61); - global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI61])); - w189.TopAttach = ((uint)(7)); - w189.BottomAttach = ((uint)(8)); - w189.LeftAttach = ((uint)(29)); - w189.RightAttach = ((uint)(30)); - w189.XOptions = ((global::Gtk.AttachOptions)(4)); - w189.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI62 = new global::Gtk.Button(); - this.btnI62.WidthRequest = 50; - this.btnI62.HeightRequest = 50; - this.btnI62.CanFocus = true; - this.btnI62.Name = "btnI62"; - this.btnI62.UseUnderline = true; - this.btnI62.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w190 = new global::Gtk.Image(); - this.btnI62.Image = w190; - this.tbUI.Add(this.btnI62); - global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI62])); - w191.TopAttach = ((uint)(7)); - w191.BottomAttach = ((uint)(8)); - w191.LeftAttach = ((uint)(30)); - w191.RightAttach = ((uint)(31)); - w191.XOptions = ((global::Gtk.AttachOptions)(4)); - w191.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI63 = new global::Gtk.Button(); - this.btnI63.WidthRequest = 50; - this.btnI63.HeightRequest = 50; - this.btnI63.CanFocus = true; - this.btnI63.Name = "btnI63"; - this.btnI63.UseUnderline = true; - this.btnI63.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w192 = new global::Gtk.Image(); - this.btnI63.Image = w192; - this.tbUI.Add(this.btnI63); - global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI63])); - w193.TopAttach = ((uint)(7)); - w193.BottomAttach = ((uint)(8)); - w193.LeftAttach = ((uint)(31)); - w193.RightAttach = ((uint)(32)); - w193.XOptions = ((global::Gtk.AttachOptions)(4)); - w193.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI64 = new global::Gtk.Button(); - this.btnI64.WidthRequest = 50; - this.btnI64.HeightRequest = 50; - this.btnI64.CanFocus = true; - this.btnI64.Name = "btnI64"; - this.btnI64.UseUnderline = true; - this.btnI64.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w194 = new global::Gtk.Image(); - this.btnI64.Image = w194; - this.tbUI.Add(this.btnI64); - global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI64])); - w195.TopAttach = ((uint)(8)); - w195.BottomAttach = ((uint)(9)); - w195.LeftAttach = ((uint)(23)); - w195.RightAttach = ((uint)(24)); - w195.XOptions = ((global::Gtk.AttachOptions)(4)); - w195.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI65 = new global::Gtk.Button(); - this.btnI65.WidthRequest = 50; - this.btnI65.HeightRequest = 50; - this.btnI65.CanFocus = true; - this.btnI65.Name = "btnI65"; - this.btnI65.UseUnderline = true; - this.btnI65.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w196 = new global::Gtk.Image(); - this.btnI65.Image = w196; - this.tbUI.Add(this.btnI65); - global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI65])); - w197.TopAttach = ((uint)(8)); - w197.BottomAttach = ((uint)(9)); - w197.LeftAttach = ((uint)(24)); - w197.RightAttach = ((uint)(25)); - w197.XOptions = ((global::Gtk.AttachOptions)(4)); - w197.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI66 = new global::Gtk.Button(); - this.btnI66.WidthRequest = 50; - this.btnI66.HeightRequest = 50; - this.btnI66.CanFocus = true; - this.btnI66.Name = "btnI66"; - this.btnI66.UseUnderline = true; - this.btnI66.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w198 = new global::Gtk.Image(); - this.btnI66.Image = w198; - this.tbUI.Add(this.btnI66); - global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI66])); - w199.TopAttach = ((uint)(8)); - w199.BottomAttach = ((uint)(9)); - w199.LeftAttach = ((uint)(25)); - w199.RightAttach = ((uint)(26)); - w199.XOptions = ((global::Gtk.AttachOptions)(4)); - w199.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI67 = new global::Gtk.Button(); - this.btnI67.WidthRequest = 50; - this.btnI67.HeightRequest = 50; - this.btnI67.CanFocus = true; - this.btnI67.Name = "btnI67"; - this.btnI67.UseUnderline = true; - this.btnI67.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w200 = new global::Gtk.Image(); - this.btnI67.Image = w200; - this.tbUI.Add(this.btnI67); - global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI67])); - w201.TopAttach = ((uint)(8)); - w201.BottomAttach = ((uint)(9)); - w201.LeftAttach = ((uint)(26)); - w201.RightAttach = ((uint)(27)); - w201.XOptions = ((global::Gtk.AttachOptions)(4)); - w201.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI68 = new global::Gtk.Button(); - this.btnI68.WidthRequest = 50; - this.btnI68.HeightRequest = 50; - this.btnI68.CanFocus = true; - this.btnI68.Name = "btnI68"; - this.btnI68.UseUnderline = true; - this.btnI68.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w202 = new global::Gtk.Image(); - this.btnI68.Image = w202; - this.tbUI.Add(this.btnI68); - global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI68])); - w203.TopAttach = ((uint)(8)); - w203.BottomAttach = ((uint)(9)); - w203.LeftAttach = ((uint)(27)); - w203.RightAttach = ((uint)(28)); - w203.XOptions = ((global::Gtk.AttachOptions)(4)); - w203.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI69 = new global::Gtk.Button(); - this.btnI69.WidthRequest = 50; - this.btnI69.HeightRequest = 50; - this.btnI69.CanFocus = true; - this.btnI69.Name = "btnI69"; - this.btnI69.UseUnderline = true; - this.btnI69.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w204 = new global::Gtk.Image(); - this.btnI69.Image = w204; - this.tbUI.Add(this.btnI69); - global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI69])); - w205.TopAttach = ((uint)(8)); - w205.BottomAttach = ((uint)(9)); - w205.LeftAttach = ((uint)(28)); - w205.RightAttach = ((uint)(29)); - w205.XOptions = ((global::Gtk.AttachOptions)(4)); - w205.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI7 = new global::Gtk.Button(); - this.btnI7.WidthRequest = 50; - this.btnI7.HeightRequest = 50; - this.btnI7.CanFocus = true; - this.btnI7.Name = "btnI7"; - this.btnI7.UseUnderline = true; - this.btnI7.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w206 = new global::Gtk.Image(); - this.btnI7.Image = w206; - this.tbUI.Add(this.btnI7); - global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI7])); - w207.TopAttach = ((uint)(1)); - w207.BottomAttach = ((uint)(2)); - w207.LeftAttach = ((uint)(29)); - w207.RightAttach = ((uint)(30)); - w207.XOptions = ((global::Gtk.AttachOptions)(4)); - w207.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI70 = new global::Gtk.Button(); - this.btnI70.WidthRequest = 50; - this.btnI70.HeightRequest = 50; - this.btnI70.CanFocus = true; - this.btnI70.Name = "btnI70"; - this.btnI70.UseUnderline = true; - this.btnI70.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w208 = new global::Gtk.Image(); - this.btnI70.Image = w208; - this.tbUI.Add(this.btnI70); - global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI70])); - w209.TopAttach = ((uint)(8)); - w209.BottomAttach = ((uint)(9)); - w209.LeftAttach = ((uint)(29)); - w209.RightAttach = ((uint)(30)); - w209.XOptions = ((global::Gtk.AttachOptions)(4)); - w209.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI71 = new global::Gtk.Button(); - this.btnI71.WidthRequest = 50; - this.btnI71.HeightRequest = 50; - this.btnI71.CanFocus = true; - this.btnI71.Name = "btnI71"; - this.btnI71.UseUnderline = true; - this.btnI71.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w210 = new global::Gtk.Image(); - this.btnI71.Image = w210; - this.tbUI.Add(this.btnI71); - global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI71])); - w211.TopAttach = ((uint)(8)); - w211.BottomAttach = ((uint)(9)); - w211.LeftAttach = ((uint)(30)); - w211.RightAttach = ((uint)(31)); - w211.XOptions = ((global::Gtk.AttachOptions)(4)); - w211.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI72 = new global::Gtk.Button(); - this.btnI72.WidthRequest = 50; - this.btnI72.HeightRequest = 50; - this.btnI72.CanFocus = true; - this.btnI72.Name = "btnI72"; - this.btnI72.UseUnderline = true; - this.btnI72.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w212 = new global::Gtk.Image(); - this.btnI72.Image = w212; - this.tbUI.Add(this.btnI72); - global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI72])); - w213.TopAttach = ((uint)(8)); - w213.BottomAttach = ((uint)(9)); - w213.LeftAttach = ((uint)(31)); - w213.RightAttach = ((uint)(32)); - w213.XOptions = ((global::Gtk.AttachOptions)(4)); - w213.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI73 = new global::Gtk.Button(); - this.btnI73.WidthRequest = 50; - this.btnI73.HeightRequest = 50; - this.btnI73.CanFocus = true; - this.btnI73.Name = "btnI73"; - this.btnI73.UseUnderline = true; - this.btnI73.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w214 = new global::Gtk.Image(); - this.btnI73.Image = w214; - this.tbUI.Add(this.btnI73); - global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI73])); - w215.TopAttach = ((uint)(9)); - w215.BottomAttach = ((uint)(10)); - w215.LeftAttach = ((uint)(23)); - w215.RightAttach = ((uint)(24)); - w215.XOptions = ((global::Gtk.AttachOptions)(4)); - w215.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI74 = new global::Gtk.Button(); - this.btnI74.WidthRequest = 50; - this.btnI74.HeightRequest = 50; - this.btnI74.CanFocus = true; - this.btnI74.Name = "btnI74"; - this.btnI74.UseUnderline = true; - this.btnI74.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w216 = new global::Gtk.Image(); - this.btnI74.Image = w216; - this.tbUI.Add(this.btnI74); - global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI74])); - w217.TopAttach = ((uint)(9)); - w217.BottomAttach = ((uint)(10)); - w217.LeftAttach = ((uint)(24)); - w217.RightAttach = ((uint)(25)); - w217.XOptions = ((global::Gtk.AttachOptions)(4)); - w217.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI75 = new global::Gtk.Button(); - this.btnI75.WidthRequest = 50; - this.btnI75.HeightRequest = 50; - this.btnI75.CanFocus = true; - this.btnI75.Name = "btnI75"; - this.btnI75.UseUnderline = true; - this.btnI75.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w218 = new global::Gtk.Image(); - this.btnI75.Image = w218; - this.tbUI.Add(this.btnI75); - global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI75])); - w219.TopAttach = ((uint)(9)); - w219.BottomAttach = ((uint)(10)); - w219.LeftAttach = ((uint)(25)); - w219.RightAttach = ((uint)(26)); - w219.XOptions = ((global::Gtk.AttachOptions)(4)); - w219.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI76 = new global::Gtk.Button(); - this.btnI76.WidthRequest = 50; - this.btnI76.HeightRequest = 50; - this.btnI76.CanFocus = true; - this.btnI76.Name = "btnI76"; - this.btnI76.UseUnderline = true; - this.btnI76.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w220 = new global::Gtk.Image(); - this.btnI76.Image = w220; - this.tbUI.Add(this.btnI76); - global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI76])); - w221.TopAttach = ((uint)(9)); - w221.BottomAttach = ((uint)(10)); - w221.LeftAttach = ((uint)(26)); - w221.RightAttach = ((uint)(27)); - w221.XOptions = ((global::Gtk.AttachOptions)(4)); - w221.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI77 = new global::Gtk.Button(); - this.btnI77.WidthRequest = 50; - this.btnI77.HeightRequest = 50; - this.btnI77.CanFocus = true; - this.btnI77.Name = "btnI77"; - this.btnI77.UseUnderline = true; - this.btnI77.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w222 = new global::Gtk.Image(); - this.btnI77.Image = w222; - this.tbUI.Add(this.btnI77); - global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI77])); - w223.TopAttach = ((uint)(9)); - w223.BottomAttach = ((uint)(10)); - w223.LeftAttach = ((uint)(27)); - w223.RightAttach = ((uint)(28)); - w223.XOptions = ((global::Gtk.AttachOptions)(4)); - w223.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI78 = new global::Gtk.Button(); - this.btnI78.WidthRequest = 50; - this.btnI78.HeightRequest = 50; - this.btnI78.CanFocus = true; - this.btnI78.Name = "btnI78"; - this.btnI78.UseUnderline = true; - this.btnI78.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w224 = new global::Gtk.Image(); - this.btnI78.Image = w224; - this.tbUI.Add(this.btnI78); - global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI78])); - w225.TopAttach = ((uint)(9)); - w225.BottomAttach = ((uint)(10)); - w225.LeftAttach = ((uint)(28)); - w225.RightAttach = ((uint)(29)); - w225.XOptions = ((global::Gtk.AttachOptions)(4)); - w225.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI79 = new global::Gtk.Button(); - this.btnI79.WidthRequest = 50; - this.btnI79.HeightRequest = 50; - this.btnI79.CanFocus = true; - this.btnI79.Name = "btnI79"; - this.btnI79.UseUnderline = true; - this.btnI79.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w226 = new global::Gtk.Image(); - this.btnI79.Image = w226; - this.tbUI.Add(this.btnI79); - global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI79])); - w227.TopAttach = ((uint)(9)); - w227.BottomAttach = ((uint)(10)); - w227.LeftAttach = ((uint)(29)); - w227.RightAttach = ((uint)(30)); - w227.XOptions = ((global::Gtk.AttachOptions)(4)); - w227.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI8 = new global::Gtk.Button(); - this.btnI8.WidthRequest = 50; - this.btnI8.HeightRequest = 50; - this.btnI8.CanFocus = true; - this.btnI8.Name = "btnI8"; - this.btnI8.UseUnderline = true; - this.btnI8.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w228 = new global::Gtk.Image(); - this.btnI8.Image = w228; - this.tbUI.Add(this.btnI8); - global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI8])); - w229.TopAttach = ((uint)(1)); - w229.BottomAttach = ((uint)(2)); - w229.LeftAttach = ((uint)(30)); - w229.RightAttach = ((uint)(31)); - w229.XOptions = ((global::Gtk.AttachOptions)(4)); - w229.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI80 = new global::Gtk.Button(); - this.btnI80.WidthRequest = 50; - this.btnI80.HeightRequest = 50; - this.btnI80.CanFocus = true; - this.btnI80.Name = "btnI80"; - this.btnI80.UseUnderline = true; - this.btnI80.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w230 = new global::Gtk.Image(); - this.btnI80.Image = w230; - this.tbUI.Add(this.btnI80); - global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI80])); - w231.TopAttach = ((uint)(9)); - w231.BottomAttach = ((uint)(10)); - w231.LeftAttach = ((uint)(30)); - w231.RightAttach = ((uint)(31)); - w231.XOptions = ((global::Gtk.AttachOptions)(4)); - w231.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI81 = new global::Gtk.Button(); - this.btnI81.WidthRequest = 50; - this.btnI81.HeightRequest = 50; - this.btnI81.CanFocus = true; - this.btnI81.Name = "btnI81"; - this.btnI81.UseUnderline = true; - this.btnI81.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w232 = new global::Gtk.Image(); - this.btnI81.Image = w232; - this.tbUI.Add(this.btnI81); - global::Gtk.Table.TableChild w233 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI81])); - w233.TopAttach = ((uint)(9)); - w233.BottomAttach = ((uint)(10)); - w233.LeftAttach = ((uint)(31)); - w233.RightAttach = ((uint)(32)); - w233.XOptions = ((global::Gtk.AttachOptions)(4)); - w233.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI9 = new global::Gtk.Button(); - this.btnI9.WidthRequest = 50; - this.btnI9.HeightRequest = 50; - this.btnI9.CanFocus = true; - this.btnI9.Name = "btnI9"; - this.btnI9.UseUnderline = true; - this.btnI9.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w234 = new global::Gtk.Image(); - this.btnI9.Image = w234; - this.tbUI.Add(this.btnI9); - global::Gtk.Table.TableChild w235 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI9])); - w235.TopAttach = ((uint)(1)); - w235.BottomAttach = ((uint)(2)); - w235.LeftAttach = ((uint)(31)); - w235.RightAttach = ((uint)(32)); - w235.XOptions = ((global::Gtk.AttachOptions)(4)); - w235.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnInv = new global::Gtk.Button(); - this.btnInv.WidthRequest = 50; - this.btnInv.HeightRequest = 50; - this.btnInv.CanFocus = true; - this.btnInv.Name = "btnInv"; - this.btnInv.UseUnderline = true; - this.btnInv.Label = "Inv"; - this.tbUI.Add(this.btnInv); - global::Gtk.Table.TableChild w236 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); - w236.TopAttach = ((uint)(13)); - w236.BottomAttach = ((uint)(14)); - w236.LeftAttach = ((uint)(21)); - w236.RightAttach = ((uint)(22)); - w236.XOptions = ((global::Gtk.AttachOptions)(4)); - w236.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnLog = new global::Gtk.Button(); - this.btnLog.WidthRequest = 250; - this.btnLog.HeightRequest = 50; - this.btnLog.CanFocus = true; - this.btnLog.Name = "btnLog"; - this.btnLog.UseUnderline = true; - this.btnLog.FocusOnClick = false; - this.btnLog.Label = "Event Log"; - this.tbUI.Add(this.btnLog); - global::Gtk.Table.TableChild w237 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); - w237.TopAttach = ((uint)(15)); - w237.BottomAttach = ((uint)(16)); - w237.LeftAttach = ((uint)(12)); - w237.RightAttach = ((uint)(21)); - w237.XOptions = ((global::Gtk.AttachOptions)(4)); - w237.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnMap = new global::Gtk.Button(); - this.btnMap.WidthRequest = 50; - this.btnMap.HeightRequest = 50; - this.btnMap.CanFocus = true; - this.btnMap.Name = "btnMap"; - this.btnMap.UseUnderline = true; - this.btnMap.Label = "Map"; - this.tbUI.Add(this.btnMap); - global::Gtk.Table.TableChild w238 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); - w238.TopAttach = ((uint)(13)); - w238.BottomAttach = ((uint)(14)); - w238.LeftAttach = ((uint)(11)); - w238.RightAttach = ((uint)(12)); - w238.XOptions = ((global::Gtk.AttachOptions)(4)); - w238.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnMusic = new global::Gtk.Button(); - this.btnMusic.WidthRequest = 50; - this.btnMusic.HeightRequest = 50; - this.btnMusic.CanFocus = true; - this.btnMusic.Name = "btnMusic"; - this.btnMusic.UseUnderline = true; - this.btnMusic.Label = "Music"; - this.tbUI.Add(this.btnMusic); - global::Gtk.Table.TableChild w239 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); - w239.TopAttach = ((uint)(15)); - w239.BottomAttach = ((uint)(16)); - w239.LeftAttach = ((uint)(11)); - w239.RightAttach = ((uint)(12)); - w239.XOptions = ((global::Gtk.AttachOptions)(4)); - w239.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP1 = new global::Gtk.Button(); - this.btnP1.WidthRequest = 50; - this.btnP1.HeightRequest = 50; - this.btnP1.CanFocus = true; - this.btnP1.Name = "btnP1"; - this.btnP1.UseUnderline = true; - this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w240 = new global::Gtk.Image(); - this.btnP1.Image = w240; - this.tbUI.Add(this.btnP1); - global::Gtk.Table.TableChild w241 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); - w241.TopAttach = ((uint)(1)); - w241.BottomAttach = ((uint)(2)); - w241.LeftAttach = ((uint)(12)); - w241.RightAttach = ((uint)(13)); - w241.XOptions = ((global::Gtk.AttachOptions)(4)); - w241.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP10 = new global::Gtk.Button(); - this.btnP10.WidthRequest = 50; - this.btnP10.HeightRequest = 50; - this.btnP10.CanFocus = true; - this.btnP10.Name = "btnP10"; - this.btnP10.UseUnderline = true; - this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w242 = new global::Gtk.Image(); - this.btnP10.Image = w242; - this.tbUI.Add(this.btnP10); - global::Gtk.Table.TableChild w243 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); - w243.TopAttach = ((uint)(2)); - w243.BottomAttach = ((uint)(3)); - w243.LeftAttach = ((uint)(12)); - w243.RightAttach = ((uint)(13)); - w243.XOptions = ((global::Gtk.AttachOptions)(4)); - w243.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP11 = new global::Gtk.Button(); - this.btnP11.WidthRequest = 50; - this.btnP11.HeightRequest = 50; - this.btnP11.CanFocus = true; - this.btnP11.Name = "btnP11"; - this.btnP11.UseUnderline = true; - this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w244 = new global::Gtk.Image(); - this.btnP11.Image = w244; - this.tbUI.Add(this.btnP11); - global::Gtk.Table.TableChild w245 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); - w245.TopAttach = ((uint)(2)); - w245.BottomAttach = ((uint)(3)); - w245.LeftAttach = ((uint)(13)); - w245.RightAttach = ((uint)(14)); - w245.XOptions = ((global::Gtk.AttachOptions)(4)); - w245.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP12 = new global::Gtk.Button(); - this.btnP12.WidthRequest = 50; - this.btnP12.HeightRequest = 50; - this.btnP12.CanFocus = true; - this.btnP12.Name = "btnP12"; - this.btnP12.UseUnderline = true; - this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w246 = new global::Gtk.Image(); - this.btnP12.Image = w246; - this.tbUI.Add(this.btnP12); - global::Gtk.Table.TableChild w247 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); - w247.TopAttach = ((uint)(2)); - w247.BottomAttach = ((uint)(3)); - w247.LeftAttach = ((uint)(14)); - w247.RightAttach = ((uint)(15)); - w247.XOptions = ((global::Gtk.AttachOptions)(4)); - w247.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP13 = new global::Gtk.Button(); - this.btnP13.WidthRequest = 50; - this.btnP13.HeightRequest = 50; - this.btnP13.CanFocus = true; - this.btnP13.Name = "btnP13"; - this.btnP13.UseUnderline = true; - this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w248 = new global::Gtk.Image(); - this.btnP13.Image = w248; - this.tbUI.Add(this.btnP13); - global::Gtk.Table.TableChild w249 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); - w249.TopAttach = ((uint)(2)); - w249.BottomAttach = ((uint)(3)); - w249.LeftAttach = ((uint)(15)); - w249.RightAttach = ((uint)(16)); - w249.XOptions = ((global::Gtk.AttachOptions)(4)); - w249.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP14 = new global::Gtk.Button(); - this.btnP14.WidthRequest = 50; - this.btnP14.HeightRequest = 50; - this.btnP14.CanFocus = true; - this.btnP14.Name = "btnP14"; - this.btnP14.UseUnderline = true; - this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w250 = new global::Gtk.Image(); - this.btnP14.Image = w250; - this.tbUI.Add(this.btnP14); - global::Gtk.Table.TableChild w251 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); - w251.TopAttach = ((uint)(2)); - w251.BottomAttach = ((uint)(3)); - w251.LeftAttach = ((uint)(16)); - w251.RightAttach = ((uint)(17)); - w251.XOptions = ((global::Gtk.AttachOptions)(4)); - w251.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP15 = new global::Gtk.Button(); - this.btnP15.WidthRequest = 50; - this.btnP15.HeightRequest = 50; - this.btnP15.CanFocus = true; - this.btnP15.Name = "btnP15"; - this.btnP15.UseUnderline = true; - this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w252 = new global::Gtk.Image(); - this.btnP15.Image = w252; - this.tbUI.Add(this.btnP15); - global::Gtk.Table.TableChild w253 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); - w253.TopAttach = ((uint)(2)); - w253.BottomAttach = ((uint)(3)); - w253.LeftAttach = ((uint)(17)); - w253.RightAttach = ((uint)(18)); - w253.XOptions = ((global::Gtk.AttachOptions)(4)); - w253.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP16 = new global::Gtk.Button(); - this.btnP16.WidthRequest = 50; - this.btnP16.HeightRequest = 50; - this.btnP16.CanFocus = true; - this.btnP16.Name = "btnP16"; - this.btnP16.UseUnderline = true; - this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w254 = new global::Gtk.Image(); - this.btnP16.Image = w254; - this.tbUI.Add(this.btnP16); - global::Gtk.Table.TableChild w255 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); - w255.TopAttach = ((uint)(2)); - w255.BottomAttach = ((uint)(3)); - w255.LeftAttach = ((uint)(18)); - w255.RightAttach = ((uint)(19)); - w255.XOptions = ((global::Gtk.AttachOptions)(4)); - w255.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP17 = new global::Gtk.Button(); - this.btnP17.WidthRequest = 50; - this.btnP17.HeightRequest = 50; - this.btnP17.CanFocus = true; - this.btnP17.Name = "btnP17"; - this.btnP17.UseUnderline = true; - this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w256 = new global::Gtk.Image(); - this.btnP17.Image = w256; - this.tbUI.Add(this.btnP17); - global::Gtk.Table.TableChild w257 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); - w257.TopAttach = ((uint)(2)); - w257.BottomAttach = ((uint)(3)); - w257.LeftAttach = ((uint)(19)); - w257.RightAttach = ((uint)(20)); - w257.XOptions = ((global::Gtk.AttachOptions)(4)); - w257.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP18 = new global::Gtk.Button(); - this.btnP18.WidthRequest = 50; - this.btnP18.HeightRequest = 50; - this.btnP18.CanFocus = true; - this.btnP18.Name = "btnP18"; - this.btnP18.UseUnderline = true; - this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w258 = new global::Gtk.Image(); - this.btnP18.Image = w258; - this.tbUI.Add(this.btnP18); - global::Gtk.Table.TableChild w259 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); - w259.TopAttach = ((uint)(2)); - w259.BottomAttach = ((uint)(3)); - w259.LeftAttach = ((uint)(20)); - w259.RightAttach = ((uint)(21)); - w259.XOptions = ((global::Gtk.AttachOptions)(4)); - w259.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP19 = new global::Gtk.Button(); - this.btnP19.WidthRequest = 50; - this.btnP19.HeightRequest = 50; - this.btnP19.CanFocus = true; - this.btnP19.Name = "btnP19"; - this.btnP19.UseUnderline = true; - this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w260 = new global::Gtk.Image(); - this.btnP19.Image = w260; - this.tbUI.Add(this.btnP19); - global::Gtk.Table.TableChild w261 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); - w261.TopAttach = ((uint)(3)); - w261.BottomAttach = ((uint)(4)); - w261.LeftAttach = ((uint)(12)); - w261.RightAttach = ((uint)(13)); - w261.XOptions = ((global::Gtk.AttachOptions)(4)); - w261.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP2 = new global::Gtk.Button(); - this.btnP2.WidthRequest = 50; - this.btnP2.HeightRequest = 50; - this.btnP2.CanFocus = true; - this.btnP2.Name = "btnP2"; - this.btnP2.UseUnderline = true; - this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w262 = new global::Gtk.Image(); - this.btnP2.Image = w262; - this.tbUI.Add(this.btnP2); - global::Gtk.Table.TableChild w263 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); - w263.TopAttach = ((uint)(1)); - w263.BottomAttach = ((uint)(2)); - w263.LeftAttach = ((uint)(13)); - w263.RightAttach = ((uint)(14)); - w263.XOptions = ((global::Gtk.AttachOptions)(4)); - w263.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP20 = new global::Gtk.Button(); - this.btnP20.WidthRequest = 50; - this.btnP20.HeightRequest = 50; - this.btnP20.CanFocus = true; - this.btnP20.Name = "btnP20"; - this.btnP20.UseUnderline = true; - this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w264 = new global::Gtk.Image(); - this.btnP20.Image = w264; - this.tbUI.Add(this.btnP20); - global::Gtk.Table.TableChild w265 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); - w265.TopAttach = ((uint)(3)); - w265.BottomAttach = ((uint)(4)); - w265.LeftAttach = ((uint)(13)); - w265.RightAttach = ((uint)(14)); - w265.XOptions = ((global::Gtk.AttachOptions)(4)); - w265.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP21 = new global::Gtk.Button(); - this.btnP21.WidthRequest = 50; - this.btnP21.HeightRequest = 50; - this.btnP21.CanFocus = true; - this.btnP21.Name = "btnP21"; - this.btnP21.UseUnderline = true; - this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w266 = new global::Gtk.Image(); - this.btnP21.Image = w266; - this.tbUI.Add(this.btnP21); - global::Gtk.Table.TableChild w267 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); - w267.TopAttach = ((uint)(3)); - w267.BottomAttach = ((uint)(4)); - w267.LeftAttach = ((uint)(14)); - w267.RightAttach = ((uint)(15)); - w267.XOptions = ((global::Gtk.AttachOptions)(4)); - w267.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP22 = new global::Gtk.Button(); - this.btnP22.WidthRequest = 50; - this.btnP22.HeightRequest = 50; - this.btnP22.CanFocus = true; - this.btnP22.Name = "btnP22"; - this.btnP22.UseUnderline = true; - this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w268 = new global::Gtk.Image(); - this.btnP22.Image = w268; - this.tbUI.Add(this.btnP22); - global::Gtk.Table.TableChild w269 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); - w269.TopAttach = ((uint)(3)); - w269.BottomAttach = ((uint)(4)); - w269.LeftAttach = ((uint)(15)); - w269.RightAttach = ((uint)(16)); - w269.XOptions = ((global::Gtk.AttachOptions)(4)); - w269.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP23 = new global::Gtk.Button(); - this.btnP23.WidthRequest = 50; - this.btnP23.HeightRequest = 50; - this.btnP23.CanFocus = true; - this.btnP23.Name = "btnP23"; - this.btnP23.UseUnderline = true; - this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w270 = new global::Gtk.Image(); - this.btnP23.Image = w270; - this.tbUI.Add(this.btnP23); - global::Gtk.Table.TableChild w271 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); - w271.TopAttach = ((uint)(3)); - w271.BottomAttach = ((uint)(4)); - w271.LeftAttach = ((uint)(16)); - w271.RightAttach = ((uint)(17)); - w271.XOptions = ((global::Gtk.AttachOptions)(4)); - w271.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP24 = new global::Gtk.Button(); - this.btnP24.WidthRequest = 50; - this.btnP24.HeightRequest = 50; - this.btnP24.CanFocus = true; - this.btnP24.Name = "btnP24"; - this.btnP24.UseUnderline = true; - this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w272 = new global::Gtk.Image(); - this.btnP24.Image = w272; - this.tbUI.Add(this.btnP24); - global::Gtk.Table.TableChild w273 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); - w273.TopAttach = ((uint)(3)); - w273.BottomAttach = ((uint)(4)); - w273.LeftAttach = ((uint)(17)); - w273.RightAttach = ((uint)(18)); - w273.XOptions = ((global::Gtk.AttachOptions)(4)); - w273.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP25 = new global::Gtk.Button(); - this.btnP25.WidthRequest = 50; - this.btnP25.HeightRequest = 50; - this.btnP25.CanFocus = true; - this.btnP25.Name = "btnP25"; - this.btnP25.UseUnderline = true; - this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w274 = new global::Gtk.Image(); - this.btnP25.Image = w274; - this.tbUI.Add(this.btnP25); - global::Gtk.Table.TableChild w275 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); - w275.TopAttach = ((uint)(3)); - w275.BottomAttach = ((uint)(4)); - w275.LeftAttach = ((uint)(18)); - w275.RightAttach = ((uint)(19)); - w275.XOptions = ((global::Gtk.AttachOptions)(4)); - w275.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP26 = new global::Gtk.Button(); - this.btnP26.WidthRequest = 50; - this.btnP26.HeightRequest = 50; - this.btnP26.CanFocus = true; - this.btnP26.Name = "btnP26"; - this.btnP26.UseUnderline = true; - this.btnP26.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w276 = new global::Gtk.Image(); - this.btnP26.Image = w276; - this.tbUI.Add(this.btnP26); - global::Gtk.Table.TableChild w277 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP26])); - w277.TopAttach = ((uint)(3)); - w277.BottomAttach = ((uint)(4)); - w277.LeftAttach = ((uint)(19)); - w277.RightAttach = ((uint)(20)); - w277.XOptions = ((global::Gtk.AttachOptions)(4)); - w277.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP27 = new global::Gtk.Button(); - this.btnP27.WidthRequest = 50; - this.btnP27.HeightRequest = 50; - this.btnP27.CanFocus = true; - this.btnP27.Name = "btnP27"; - this.btnP27.UseUnderline = true; - this.btnP27.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w278 = new global::Gtk.Image(); - this.btnP27.Image = w278; - this.tbUI.Add(this.btnP27); - global::Gtk.Table.TableChild w279 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP27])); - w279.TopAttach = ((uint)(3)); - w279.BottomAttach = ((uint)(4)); - w279.LeftAttach = ((uint)(20)); - w279.RightAttach = ((uint)(21)); - w279.XOptions = ((global::Gtk.AttachOptions)(4)); - w279.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP28 = new global::Gtk.Button(); - this.btnP28.WidthRequest = 50; - this.btnP28.HeightRequest = 50; - this.btnP28.CanFocus = true; - this.btnP28.Name = "btnP28"; - this.btnP28.UseUnderline = true; - this.btnP28.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w280 = new global::Gtk.Image(); - this.btnP28.Image = w280; - this.tbUI.Add(this.btnP28); - global::Gtk.Table.TableChild w281 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP28])); - w281.TopAttach = ((uint)(4)); - w281.BottomAttach = ((uint)(5)); - w281.LeftAttach = ((uint)(12)); - w281.RightAttach = ((uint)(13)); - w281.XOptions = ((global::Gtk.AttachOptions)(4)); - w281.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP29 = new global::Gtk.Button(); - this.btnP29.WidthRequest = 50; - this.btnP29.HeightRequest = 50; - this.btnP29.CanFocus = true; - this.btnP29.Name = "btnP29"; - this.btnP29.UseUnderline = true; - this.btnP29.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w282 = new global::Gtk.Image(); - this.btnP29.Image = w282; - this.tbUI.Add(this.btnP29); - global::Gtk.Table.TableChild w283 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP29])); - w283.TopAttach = ((uint)(4)); - w283.BottomAttach = ((uint)(5)); - w283.LeftAttach = ((uint)(13)); - w283.RightAttach = ((uint)(14)); - w283.XOptions = ((global::Gtk.AttachOptions)(4)); - w283.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP3 = new global::Gtk.Button(); - this.btnP3.WidthRequest = 50; - this.btnP3.HeightRequest = 50; - this.btnP3.CanFocus = true; - this.btnP3.Name = "btnP3"; - this.btnP3.UseUnderline = true; - this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w284 = new global::Gtk.Image(); - this.btnP3.Image = w284; - this.tbUI.Add(this.btnP3); - global::Gtk.Table.TableChild w285 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); - w285.TopAttach = ((uint)(1)); - w285.BottomAttach = ((uint)(2)); - w285.LeftAttach = ((uint)(14)); - w285.RightAttach = ((uint)(15)); - w285.XOptions = ((global::Gtk.AttachOptions)(4)); - w285.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP30 = new global::Gtk.Button(); - this.btnP30.WidthRequest = 50; - this.btnP30.HeightRequest = 50; - this.btnP30.CanFocus = true; - this.btnP30.Name = "btnP30"; - this.btnP30.UseUnderline = true; - this.btnP30.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w286 = new global::Gtk.Image(); - this.btnP30.Image = w286; - this.tbUI.Add(this.btnP30); - global::Gtk.Table.TableChild w287 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP30])); - w287.TopAttach = ((uint)(4)); - w287.BottomAttach = ((uint)(5)); - w287.LeftAttach = ((uint)(14)); - w287.RightAttach = ((uint)(15)); - w287.XOptions = ((global::Gtk.AttachOptions)(4)); - w287.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP31 = new global::Gtk.Button(); - this.btnP31.WidthRequest = 50; - this.btnP31.HeightRequest = 50; - this.btnP31.CanFocus = true; - this.btnP31.Name = "btnP31"; - this.btnP31.UseUnderline = true; - this.btnP31.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w288 = new global::Gtk.Image(); - this.btnP31.Image = w288; - this.tbUI.Add(this.btnP31); - global::Gtk.Table.TableChild w289 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP31])); - w289.TopAttach = ((uint)(4)); - w289.BottomAttach = ((uint)(5)); - w289.LeftAttach = ((uint)(15)); - w289.RightAttach = ((uint)(16)); - w289.XOptions = ((global::Gtk.AttachOptions)(4)); - w289.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP32 = new global::Gtk.Button(); - this.btnP32.WidthRequest = 50; - this.btnP32.HeightRequest = 50; - this.btnP32.CanFocus = true; - this.btnP32.Name = "btnP32"; - this.btnP32.UseUnderline = true; - this.btnP32.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w290 = new global::Gtk.Image(); - this.btnP32.Image = w290; - this.tbUI.Add(this.btnP32); - global::Gtk.Table.TableChild w291 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP32])); - w291.TopAttach = ((uint)(4)); - w291.BottomAttach = ((uint)(5)); - w291.LeftAttach = ((uint)(16)); - w291.RightAttach = ((uint)(17)); - w291.XOptions = ((global::Gtk.AttachOptions)(4)); - w291.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP33 = new global::Gtk.Button(); - this.btnP33.WidthRequest = 50; - this.btnP33.HeightRequest = 50; - this.btnP33.CanFocus = true; - this.btnP33.Name = "btnP33"; - this.btnP33.UseUnderline = true; - this.btnP33.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w292 = new global::Gtk.Image(); - this.btnP33.Image = w292; - this.tbUI.Add(this.btnP33); - global::Gtk.Table.TableChild w293 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP33])); - w293.TopAttach = ((uint)(4)); - w293.BottomAttach = ((uint)(5)); - w293.LeftAttach = ((uint)(17)); - w293.RightAttach = ((uint)(18)); - w293.XOptions = ((global::Gtk.AttachOptions)(4)); - w293.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP34 = new global::Gtk.Button(); - this.btnP34.WidthRequest = 50; - this.btnP34.HeightRequest = 50; - this.btnP34.CanFocus = true; - this.btnP34.Name = "btnP34"; - this.btnP34.UseUnderline = true; - this.btnP34.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w294 = new global::Gtk.Image(); - this.btnP34.Image = w294; - this.tbUI.Add(this.btnP34); - global::Gtk.Table.TableChild w295 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP34])); - w295.TopAttach = ((uint)(4)); - w295.BottomAttach = ((uint)(5)); - w295.LeftAttach = ((uint)(18)); - w295.RightAttach = ((uint)(19)); - w295.XOptions = ((global::Gtk.AttachOptions)(4)); - w295.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP35 = new global::Gtk.Button(); - this.btnP35.WidthRequest = 50; - this.btnP35.HeightRequest = 50; - this.btnP35.CanFocus = true; - this.btnP35.Name = "btnP35"; - this.btnP35.UseUnderline = true; - this.btnP35.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w296 = new global::Gtk.Image(); - this.btnP35.Image = w296; - this.tbUI.Add(this.btnP35); - global::Gtk.Table.TableChild w297 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP35])); - w297.TopAttach = ((uint)(4)); - w297.BottomAttach = ((uint)(5)); - w297.LeftAttach = ((uint)(19)); - w297.RightAttach = ((uint)(20)); - w297.XOptions = ((global::Gtk.AttachOptions)(4)); - w297.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP36 = new global::Gtk.Button(); - this.btnP36.WidthRequest = 50; - this.btnP36.HeightRequest = 50; - this.btnP36.CanFocus = true; - this.btnP36.Name = "btnP36"; - this.btnP36.UseUnderline = true; - this.btnP36.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w298 = new global::Gtk.Image(); - this.btnP36.Image = w298; - this.tbUI.Add(this.btnP36); - global::Gtk.Table.TableChild w299 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP36])); - w299.TopAttach = ((uint)(4)); - w299.BottomAttach = ((uint)(5)); - w299.LeftAttach = ((uint)(20)); - w299.RightAttach = ((uint)(21)); - w299.XOptions = ((global::Gtk.AttachOptions)(4)); - w299.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP37 = new global::Gtk.Button(); - this.btnP37.WidthRequest = 50; - this.btnP37.HeightRequest = 50; - this.btnP37.CanFocus = true; - this.btnP37.Name = "btnP37"; - this.btnP37.UseUnderline = true; - this.btnP37.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w300 = new global::Gtk.Image(); - this.btnP37.Image = w300; - this.tbUI.Add(this.btnP37); - global::Gtk.Table.TableChild w301 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP37])); - w301.TopAttach = ((uint)(5)); - w301.BottomAttach = ((uint)(6)); - w301.LeftAttach = ((uint)(12)); - w301.RightAttach = ((uint)(13)); - w301.XOptions = ((global::Gtk.AttachOptions)(4)); - w301.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP38 = new global::Gtk.Button(); - this.btnP38.WidthRequest = 50; - this.btnP38.HeightRequest = 50; - this.btnP38.CanFocus = true; - this.btnP38.Name = "btnP38"; - this.btnP38.UseUnderline = true; - this.btnP38.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w302 = new global::Gtk.Image(); - this.btnP38.Image = w302; - this.tbUI.Add(this.btnP38); - global::Gtk.Table.TableChild w303 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP38])); - w303.TopAttach = ((uint)(5)); - w303.BottomAttach = ((uint)(6)); - w303.LeftAttach = ((uint)(13)); - w303.RightAttach = ((uint)(14)); - w303.XOptions = ((global::Gtk.AttachOptions)(4)); - w303.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP39 = new global::Gtk.Button(); - this.btnP39.WidthRequest = 50; - this.btnP39.HeightRequest = 50; - this.btnP39.CanFocus = true; - this.btnP39.Name = "btnP39"; - this.btnP39.UseUnderline = true; - this.btnP39.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w304 = new global::Gtk.Image(); - this.btnP39.Image = w304; - this.tbUI.Add(this.btnP39); - global::Gtk.Table.TableChild w305 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP39])); - w305.TopAttach = ((uint)(5)); - w305.BottomAttach = ((uint)(6)); - w305.LeftAttach = ((uint)(14)); - w305.RightAttach = ((uint)(15)); - w305.XOptions = ((global::Gtk.AttachOptions)(4)); - w305.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP4 = new global::Gtk.Button(); - this.btnP4.WidthRequest = 50; - this.btnP4.HeightRequest = 50; - this.btnP4.CanFocus = true; - this.btnP4.Name = "btnP4"; - this.btnP4.UseUnderline = true; - this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w306 = new global::Gtk.Image(); - this.btnP4.Image = w306; - this.tbUI.Add(this.btnP4); - global::Gtk.Table.TableChild w307 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); - w307.TopAttach = ((uint)(1)); - w307.BottomAttach = ((uint)(2)); - w307.LeftAttach = ((uint)(15)); - w307.RightAttach = ((uint)(16)); - w307.XOptions = ((global::Gtk.AttachOptions)(4)); - w307.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP40 = new global::Gtk.Button(); - this.btnP40.WidthRequest = 50; - this.btnP40.HeightRequest = 50; - this.btnP40.CanFocus = true; - this.btnP40.Name = "btnP40"; - this.btnP40.UseUnderline = true; - this.btnP40.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w308 = new global::Gtk.Image(); - this.btnP40.Image = w308; - this.tbUI.Add(this.btnP40); - global::Gtk.Table.TableChild w309 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP40])); - w309.TopAttach = ((uint)(5)); - w309.BottomAttach = ((uint)(6)); - w309.LeftAttach = ((uint)(15)); - w309.RightAttach = ((uint)(16)); - w309.XOptions = ((global::Gtk.AttachOptions)(4)); - w309.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP41 = new global::Gtk.Button(); - this.btnP41.WidthRequest = 50; - this.btnP41.HeightRequest = 50; - this.btnP41.CanFocus = true; - this.btnP41.Name = "btnP41"; - this.btnP41.UseUnderline = true; - this.btnP41.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w310 = new global::Gtk.Image(); - this.btnP41.Image = w310; - this.tbUI.Add(this.btnP41); - global::Gtk.Table.TableChild w311 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP41])); - w311.TopAttach = ((uint)(5)); - w311.BottomAttach = ((uint)(6)); - w311.LeftAttach = ((uint)(16)); - w311.RightAttach = ((uint)(17)); - w311.XOptions = ((global::Gtk.AttachOptions)(4)); - w311.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP42 = new global::Gtk.Button(); - this.btnP42.WidthRequest = 50; - this.btnP42.HeightRequest = 50; - this.btnP42.CanFocus = true; - this.btnP42.Name = "btnP42"; - this.btnP42.UseUnderline = true; - this.btnP42.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w312 = new global::Gtk.Image(); - this.btnP42.Image = w312; - this.tbUI.Add(this.btnP42); - global::Gtk.Table.TableChild w313 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP42])); - w313.TopAttach = ((uint)(5)); - w313.BottomAttach = ((uint)(6)); - w313.LeftAttach = ((uint)(17)); - w313.RightAttach = ((uint)(18)); - w313.XOptions = ((global::Gtk.AttachOptions)(4)); - w313.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP43 = new global::Gtk.Button(); - this.btnP43.WidthRequest = 50; - this.btnP43.HeightRequest = 50; - this.btnP43.CanFocus = true; - this.btnP43.Name = "btnP43"; - this.btnP43.UseUnderline = true; - this.btnP43.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w314 = new global::Gtk.Image(); - this.btnP43.Image = w314; - this.tbUI.Add(this.btnP43); - global::Gtk.Table.TableChild w315 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP43])); - w315.TopAttach = ((uint)(5)); - w315.BottomAttach = ((uint)(6)); - w315.LeftAttach = ((uint)(18)); - w315.RightAttach = ((uint)(19)); - w315.XOptions = ((global::Gtk.AttachOptions)(4)); - w315.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP44 = new global::Gtk.Button(); - this.btnP44.WidthRequest = 50; - this.btnP44.HeightRequest = 50; - this.btnP44.CanFocus = true; - this.btnP44.Name = "btnP44"; - this.btnP44.UseUnderline = true; - this.btnP44.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w316 = new global::Gtk.Image(); - this.btnP44.Image = w316; - this.tbUI.Add(this.btnP44); - global::Gtk.Table.TableChild w317 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP44])); - w317.TopAttach = ((uint)(5)); - w317.BottomAttach = ((uint)(6)); - w317.LeftAttach = ((uint)(19)); - w317.RightAttach = ((uint)(20)); - w317.XOptions = ((global::Gtk.AttachOptions)(4)); - w317.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP45 = new global::Gtk.Button(); - this.btnP45.WidthRequest = 50; - this.btnP45.HeightRequest = 50; - this.btnP45.CanFocus = true; - this.btnP45.Name = "btnP45"; - this.btnP45.UseUnderline = true; - this.btnP45.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w318 = new global::Gtk.Image(); - this.btnP45.Image = w318; - this.tbUI.Add(this.btnP45); - global::Gtk.Table.TableChild w319 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP45])); - w319.TopAttach = ((uint)(5)); - w319.BottomAttach = ((uint)(6)); - w319.LeftAttach = ((uint)(20)); - w319.RightAttach = ((uint)(21)); - w319.XOptions = ((global::Gtk.AttachOptions)(4)); - w319.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP46 = new global::Gtk.Button(); - this.btnP46.WidthRequest = 50; - this.btnP46.HeightRequest = 50; - this.btnP46.CanFocus = true; - this.btnP46.Name = "btnP46"; - this.btnP46.UseUnderline = true; - this.btnP46.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w320 = new global::Gtk.Image(); - this.btnP46.Image = w320; - this.tbUI.Add(this.btnP46); - global::Gtk.Table.TableChild w321 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP46])); - w321.TopAttach = ((uint)(6)); - w321.BottomAttach = ((uint)(7)); - w321.LeftAttach = ((uint)(12)); - w321.RightAttach = ((uint)(13)); - w321.XOptions = ((global::Gtk.AttachOptions)(4)); - w321.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP47 = new global::Gtk.Button(); - this.btnP47.WidthRequest = 50; - this.btnP47.HeightRequest = 50; - this.btnP47.CanFocus = true; - this.btnP47.Name = "btnP47"; - this.btnP47.UseUnderline = true; - this.btnP47.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w322 = new global::Gtk.Image(); - this.btnP47.Image = w322; - this.tbUI.Add(this.btnP47); - global::Gtk.Table.TableChild w323 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP47])); - w323.TopAttach = ((uint)(6)); - w323.BottomAttach = ((uint)(7)); - w323.LeftAttach = ((uint)(13)); - w323.RightAttach = ((uint)(14)); - w323.XOptions = ((global::Gtk.AttachOptions)(4)); - w323.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP48 = new global::Gtk.Button(); - this.btnP48.WidthRequest = 50; - this.btnP48.HeightRequest = 50; - this.btnP48.CanFocus = true; - this.btnP48.Name = "btnP48"; - this.btnP48.UseUnderline = true; - this.btnP48.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w324 = new global::Gtk.Image(); - this.btnP48.Image = w324; - this.tbUI.Add(this.btnP48); - global::Gtk.Table.TableChild w325 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP48])); - w325.TopAttach = ((uint)(6)); - w325.BottomAttach = ((uint)(7)); - w325.LeftAttach = ((uint)(14)); - w325.RightAttach = ((uint)(15)); - w325.XOptions = ((global::Gtk.AttachOptions)(4)); - w325.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP49 = new global::Gtk.Button(); - this.btnP49.WidthRequest = 50; - this.btnP49.HeightRequest = 50; - this.btnP49.CanFocus = true; - this.btnP49.Name = "btnP49"; - this.btnP49.UseUnderline = true; - this.btnP49.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w326 = new global::Gtk.Image(); - this.btnP49.Image = w326; - this.tbUI.Add(this.btnP49); - global::Gtk.Table.TableChild w327 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP49])); - w327.TopAttach = ((uint)(6)); - w327.BottomAttach = ((uint)(7)); - w327.LeftAttach = ((uint)(15)); - w327.RightAttach = ((uint)(16)); - w327.XOptions = ((global::Gtk.AttachOptions)(4)); - w327.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP5 = new global::Gtk.Button(); - this.btnP5.WidthRequest = 50; - this.btnP5.HeightRequest = 50; - this.btnP5.CanFocus = true; - this.btnP5.Name = "btnP5"; - this.btnP5.UseUnderline = true; - this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w328 = new global::Gtk.Image(); - this.btnP5.Image = w328; - this.tbUI.Add(this.btnP5); - global::Gtk.Table.TableChild w329 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); - w329.TopAttach = ((uint)(1)); - w329.BottomAttach = ((uint)(2)); - w329.LeftAttach = ((uint)(16)); - w329.RightAttach = ((uint)(17)); - w329.XOptions = ((global::Gtk.AttachOptions)(4)); - w329.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP50 = new global::Gtk.Button(); - this.btnP50.WidthRequest = 50; - this.btnP50.HeightRequest = 50; - this.btnP50.CanFocus = true; - this.btnP50.Name = "btnP50"; - this.btnP50.UseUnderline = true; - this.btnP50.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w330 = new global::Gtk.Image(); - this.btnP50.Image = w330; - this.tbUI.Add(this.btnP50); - global::Gtk.Table.TableChild w331 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP50])); - w331.TopAttach = ((uint)(6)); - w331.BottomAttach = ((uint)(7)); - w331.LeftAttach = ((uint)(16)); - w331.RightAttach = ((uint)(17)); - w331.XOptions = ((global::Gtk.AttachOptions)(4)); - w331.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP51 = new global::Gtk.Button(); - this.btnP51.WidthRequest = 50; - this.btnP51.HeightRequest = 50; - this.btnP51.CanFocus = true; - this.btnP51.Name = "btnP51"; - this.btnP51.UseUnderline = true; - this.btnP51.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w332 = new global::Gtk.Image(); - this.btnP51.Image = w332; - this.tbUI.Add(this.btnP51); - global::Gtk.Table.TableChild w333 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP51])); - w333.TopAttach = ((uint)(6)); - w333.BottomAttach = ((uint)(7)); - w333.LeftAttach = ((uint)(17)); - w333.RightAttach = ((uint)(18)); - w333.XOptions = ((global::Gtk.AttachOptions)(4)); - w333.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP52 = new global::Gtk.Button(); - this.btnP52.WidthRequest = 50; - this.btnP52.HeightRequest = 50; - this.btnP52.CanFocus = true; - this.btnP52.Name = "btnP52"; - this.btnP52.UseUnderline = true; - this.btnP52.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w334 = new global::Gtk.Image(); - this.btnP52.Image = w334; - this.tbUI.Add(this.btnP52); - global::Gtk.Table.TableChild w335 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP52])); - w335.TopAttach = ((uint)(6)); - w335.BottomAttach = ((uint)(7)); - w335.LeftAttach = ((uint)(18)); - w335.RightAttach = ((uint)(19)); - w335.XOptions = ((global::Gtk.AttachOptions)(4)); - w335.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP53 = new global::Gtk.Button(); - this.btnP53.WidthRequest = 50; - this.btnP53.HeightRequest = 50; - this.btnP53.CanFocus = true; - this.btnP53.Name = "btnP53"; - this.btnP53.UseUnderline = true; - this.btnP53.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w336 = new global::Gtk.Image(); - this.btnP53.Image = w336; - this.tbUI.Add(this.btnP53); - global::Gtk.Table.TableChild w337 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP53])); - w337.TopAttach = ((uint)(6)); - w337.BottomAttach = ((uint)(7)); - w337.LeftAttach = ((uint)(19)); - w337.RightAttach = ((uint)(20)); - w337.XOptions = ((global::Gtk.AttachOptions)(4)); - w337.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP54 = new global::Gtk.Button(); - this.btnP54.WidthRequest = 50; - this.btnP54.HeightRequest = 50; - this.btnP54.CanFocus = true; - this.btnP54.Name = "btnP54"; - this.btnP54.UseUnderline = true; - this.btnP54.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w338 = new global::Gtk.Image(); - this.btnP54.Image = w338; - this.tbUI.Add(this.btnP54); - global::Gtk.Table.TableChild w339 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP54])); - w339.TopAttach = ((uint)(6)); - w339.BottomAttach = ((uint)(7)); - w339.LeftAttach = ((uint)(20)); - w339.RightAttach = ((uint)(21)); - w339.XOptions = ((global::Gtk.AttachOptions)(4)); - w339.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP55 = new global::Gtk.Button(); - this.btnP55.WidthRequest = 50; - this.btnP55.HeightRequest = 50; - this.btnP55.CanFocus = true; - this.btnP55.Name = "btnP55"; - this.btnP55.UseUnderline = true; - this.btnP55.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w340 = new global::Gtk.Image(); - this.btnP55.Image = w340; - this.tbUI.Add(this.btnP55); - global::Gtk.Table.TableChild w341 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP55])); - w341.TopAttach = ((uint)(7)); - w341.BottomAttach = ((uint)(8)); - w341.LeftAttach = ((uint)(12)); - w341.RightAttach = ((uint)(13)); - w341.XOptions = ((global::Gtk.AttachOptions)(4)); - w341.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP56 = new global::Gtk.Button(); - this.btnP56.WidthRequest = 50; - this.btnP56.HeightRequest = 50; - this.btnP56.CanFocus = true; - this.btnP56.Name = "btnP56"; - this.btnP56.UseUnderline = true; - this.btnP56.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w342 = new global::Gtk.Image(); - this.btnP56.Image = w342; - this.tbUI.Add(this.btnP56); - global::Gtk.Table.TableChild w343 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP56])); - w343.TopAttach = ((uint)(7)); - w343.BottomAttach = ((uint)(8)); - w343.LeftAttach = ((uint)(13)); - w343.RightAttach = ((uint)(14)); - w343.XOptions = ((global::Gtk.AttachOptions)(4)); - w343.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP57 = new global::Gtk.Button(); - this.btnP57.WidthRequest = 50; - this.btnP57.HeightRequest = 50; - this.btnP57.CanFocus = true; - this.btnP57.Name = "btnP57"; - this.btnP57.UseUnderline = true; - this.btnP57.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w344 = new global::Gtk.Image(); - this.btnP57.Image = w344; - this.tbUI.Add(this.btnP57); - global::Gtk.Table.TableChild w345 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP57])); - w345.TopAttach = ((uint)(7)); - w345.BottomAttach = ((uint)(8)); - w345.LeftAttach = ((uint)(14)); - w345.RightAttach = ((uint)(15)); - w345.XOptions = ((global::Gtk.AttachOptions)(4)); - w345.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP58 = new global::Gtk.Button(); - this.btnP58.WidthRequest = 50; - this.btnP58.HeightRequest = 50; - this.btnP58.CanFocus = true; - this.btnP58.Name = "btnP58"; - this.btnP58.UseUnderline = true; - this.btnP58.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w346 = new global::Gtk.Image(); - this.btnP58.Image = w346; - this.tbUI.Add(this.btnP58); - global::Gtk.Table.TableChild w347 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP58])); - w347.TopAttach = ((uint)(7)); - w347.BottomAttach = ((uint)(8)); - w347.LeftAttach = ((uint)(15)); - w347.RightAttach = ((uint)(16)); - w347.XOptions = ((global::Gtk.AttachOptions)(4)); - w347.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP59 = new global::Gtk.Button(); - this.btnP59.WidthRequest = 50; - this.btnP59.HeightRequest = 50; - this.btnP59.CanFocus = true; - this.btnP59.Name = "btnP59"; - this.btnP59.UseUnderline = true; - this.btnP59.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w348 = new global::Gtk.Image(); - this.btnP59.Image = w348; - this.tbUI.Add(this.btnP59); - global::Gtk.Table.TableChild w349 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP59])); - w349.TopAttach = ((uint)(7)); - w349.BottomAttach = ((uint)(8)); - w349.LeftAttach = ((uint)(16)); - w349.RightAttach = ((uint)(17)); - w349.XOptions = ((global::Gtk.AttachOptions)(4)); - w349.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP6 = new global::Gtk.Button(); - this.btnP6.WidthRequest = 50; - this.btnP6.HeightRequest = 50; - this.btnP6.CanFocus = true; - this.btnP6.Name = "btnP6"; - this.btnP6.UseUnderline = true; - this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w350 = new global::Gtk.Image(); - this.btnP6.Image = w350; - this.tbUI.Add(this.btnP6); - global::Gtk.Table.TableChild w351 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); - w351.TopAttach = ((uint)(1)); - w351.BottomAttach = ((uint)(2)); - w351.LeftAttach = ((uint)(17)); - w351.RightAttach = ((uint)(18)); - w351.XOptions = ((global::Gtk.AttachOptions)(4)); - w351.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP60 = new global::Gtk.Button(); - this.btnP60.WidthRequest = 50; - this.btnP60.HeightRequest = 50; - this.btnP60.CanFocus = true; - this.btnP60.Name = "btnP60"; - this.btnP60.UseUnderline = true; - this.btnP60.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w352 = new global::Gtk.Image(); - this.btnP60.Image = w352; - this.tbUI.Add(this.btnP60); - global::Gtk.Table.TableChild w353 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP60])); - w353.TopAttach = ((uint)(7)); - w353.BottomAttach = ((uint)(8)); - w353.LeftAttach = ((uint)(17)); - w353.RightAttach = ((uint)(18)); - w353.XOptions = ((global::Gtk.AttachOptions)(4)); - w353.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP61 = new global::Gtk.Button(); - this.btnP61.WidthRequest = 50; - this.btnP61.HeightRequest = 50; - this.btnP61.CanFocus = true; - this.btnP61.Name = "btnP61"; - this.btnP61.UseUnderline = true; - this.btnP61.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w354 = new global::Gtk.Image(); - this.btnP61.Image = w354; - this.tbUI.Add(this.btnP61); - global::Gtk.Table.TableChild w355 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP61])); - w355.TopAttach = ((uint)(7)); - w355.BottomAttach = ((uint)(8)); - w355.LeftAttach = ((uint)(18)); - w355.RightAttach = ((uint)(19)); - w355.XOptions = ((global::Gtk.AttachOptions)(4)); - w355.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP62 = new global::Gtk.Button(); - this.btnP62.WidthRequest = 50; - this.btnP62.HeightRequest = 50; - this.btnP62.CanFocus = true; - this.btnP62.Name = "btnP62"; - this.btnP62.UseUnderline = true; - this.btnP62.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w356 = new global::Gtk.Image(); - this.btnP62.Image = w356; - this.tbUI.Add(this.btnP62); - global::Gtk.Table.TableChild w357 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP62])); - w357.TopAttach = ((uint)(7)); - w357.BottomAttach = ((uint)(8)); - w357.LeftAttach = ((uint)(19)); - w357.RightAttach = ((uint)(20)); - w357.XOptions = ((global::Gtk.AttachOptions)(4)); - w357.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP63 = new global::Gtk.Button(); - this.btnP63.WidthRequest = 50; - this.btnP63.HeightRequest = 50; - this.btnP63.CanFocus = true; - this.btnP63.Name = "btnP63"; - this.btnP63.UseUnderline = true; - this.btnP63.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w358 = new global::Gtk.Image(); - this.btnP63.Image = w358; - this.tbUI.Add(this.btnP63); - global::Gtk.Table.TableChild w359 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP63])); - w359.TopAttach = ((uint)(7)); - w359.BottomAttach = ((uint)(8)); - w359.LeftAttach = ((uint)(20)); - w359.RightAttach = ((uint)(21)); - w359.XOptions = ((global::Gtk.AttachOptions)(4)); - w359.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP64 = new global::Gtk.Button(); - this.btnP64.WidthRequest = 50; - this.btnP64.HeightRequest = 50; - this.btnP64.CanFocus = true; - this.btnP64.Name = "btnP64"; - this.btnP64.UseUnderline = true; - this.btnP64.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w360 = new global::Gtk.Image(); - this.btnP64.Image = w360; - this.tbUI.Add(this.btnP64); - global::Gtk.Table.TableChild w361 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP64])); - w361.TopAttach = ((uint)(8)); - w361.BottomAttach = ((uint)(9)); - w361.LeftAttach = ((uint)(12)); - w361.RightAttach = ((uint)(13)); - w361.XOptions = ((global::Gtk.AttachOptions)(4)); - w361.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP65 = new global::Gtk.Button(); - this.btnP65.WidthRequest = 50; - this.btnP65.HeightRequest = 50; - this.btnP65.CanFocus = true; - this.btnP65.Name = "btnP65"; - this.btnP65.UseUnderline = true; - this.btnP65.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w362 = new global::Gtk.Image(); - this.btnP65.Image = w362; - this.tbUI.Add(this.btnP65); - global::Gtk.Table.TableChild w363 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP65])); - w363.TopAttach = ((uint)(8)); - w363.BottomAttach = ((uint)(9)); - w363.LeftAttach = ((uint)(13)); - w363.RightAttach = ((uint)(14)); - w363.XOptions = ((global::Gtk.AttachOptions)(4)); - w363.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP66 = new global::Gtk.Button(); - this.btnP66.WidthRequest = 50; - this.btnP66.HeightRequest = 50; - this.btnP66.CanFocus = true; - this.btnP66.Name = "btnP66"; - this.btnP66.UseUnderline = true; - this.btnP66.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w364 = new global::Gtk.Image(); - this.btnP66.Image = w364; - this.tbUI.Add(this.btnP66); - global::Gtk.Table.TableChild w365 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP66])); - w365.TopAttach = ((uint)(8)); - w365.BottomAttach = ((uint)(9)); - w365.LeftAttach = ((uint)(14)); - w365.RightAttach = ((uint)(15)); - w365.XOptions = ((global::Gtk.AttachOptions)(4)); - w365.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP67 = new global::Gtk.Button(); - this.btnP67.WidthRequest = 50; - this.btnP67.HeightRequest = 50; - this.btnP67.CanFocus = true; - this.btnP67.Name = "btnP67"; - this.btnP67.UseUnderline = true; - this.btnP67.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w366 = new global::Gtk.Image(); - this.btnP67.Image = w366; - this.tbUI.Add(this.btnP67); - global::Gtk.Table.TableChild w367 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP67])); - w367.TopAttach = ((uint)(8)); - w367.BottomAttach = ((uint)(9)); - w367.LeftAttach = ((uint)(15)); - w367.RightAttach = ((uint)(16)); - w367.XOptions = ((global::Gtk.AttachOptions)(4)); - w367.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP68 = new global::Gtk.Button(); - this.btnP68.WidthRequest = 50; - this.btnP68.HeightRequest = 50; - this.btnP68.CanFocus = true; - this.btnP68.Name = "btnP68"; - this.btnP68.UseUnderline = true; - this.btnP68.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w368 = new global::Gtk.Image(); - this.btnP68.Image = w368; - this.tbUI.Add(this.btnP68); - global::Gtk.Table.TableChild w369 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP68])); - w369.TopAttach = ((uint)(8)); - w369.BottomAttach = ((uint)(9)); - w369.LeftAttach = ((uint)(16)); - w369.RightAttach = ((uint)(17)); - w369.XOptions = ((global::Gtk.AttachOptions)(4)); - w369.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP69 = new global::Gtk.Button(); - this.btnP69.WidthRequest = 50; - this.btnP69.HeightRequest = 50; - this.btnP69.CanFocus = true; - this.btnP69.Name = "btnP69"; - this.btnP69.UseUnderline = true; - this.btnP69.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w370 = new global::Gtk.Image(); - this.btnP69.Image = w370; - this.tbUI.Add(this.btnP69); - global::Gtk.Table.TableChild w371 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP69])); - w371.TopAttach = ((uint)(8)); - w371.BottomAttach = ((uint)(9)); - w371.LeftAttach = ((uint)(17)); - w371.RightAttach = ((uint)(18)); - w371.XOptions = ((global::Gtk.AttachOptions)(4)); - w371.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP7 = new global::Gtk.Button(); - this.btnP7.WidthRequest = 50; - this.btnP7.HeightRequest = 50; - this.btnP7.CanFocus = true; - this.btnP7.Name = "btnP7"; - this.btnP7.UseUnderline = true; - this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w372 = new global::Gtk.Image(); - this.btnP7.Image = w372; - this.tbUI.Add(this.btnP7); - global::Gtk.Table.TableChild w373 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); - w373.TopAttach = ((uint)(1)); - w373.BottomAttach = ((uint)(2)); - w373.LeftAttach = ((uint)(18)); - w373.RightAttach = ((uint)(19)); - w373.XOptions = ((global::Gtk.AttachOptions)(4)); - w373.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP70 = new global::Gtk.Button(); - this.btnP70.WidthRequest = 50; - this.btnP70.HeightRequest = 50; - this.btnP70.CanFocus = true; - this.btnP70.Name = "btnP70"; - this.btnP70.UseUnderline = true; - this.btnP70.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w374 = new global::Gtk.Image(); - this.btnP70.Image = w374; - this.tbUI.Add(this.btnP70); - global::Gtk.Table.TableChild w375 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP70])); - w375.TopAttach = ((uint)(8)); - w375.BottomAttach = ((uint)(9)); - w375.LeftAttach = ((uint)(18)); - w375.RightAttach = ((uint)(19)); - w375.XOptions = ((global::Gtk.AttachOptions)(4)); - w375.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP71 = new global::Gtk.Button(); - this.btnP71.WidthRequest = 50; - this.btnP71.HeightRequest = 50; - this.btnP71.CanFocus = true; - this.btnP71.Name = "btnP71"; - this.btnP71.UseUnderline = true; - this.btnP71.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w376 = new global::Gtk.Image(); - this.btnP71.Image = w376; - this.tbUI.Add(this.btnP71); - global::Gtk.Table.TableChild w377 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP71])); - w377.TopAttach = ((uint)(8)); - w377.BottomAttach = ((uint)(9)); - w377.LeftAttach = ((uint)(19)); - w377.RightAttach = ((uint)(20)); - w377.XOptions = ((global::Gtk.AttachOptions)(4)); - w377.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP72 = new global::Gtk.Button(); - this.btnP72.WidthRequest = 50; - this.btnP72.HeightRequest = 50; - this.btnP72.CanFocus = true; - this.btnP72.Name = "btnP72"; - this.btnP72.UseUnderline = true; - this.btnP72.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w378 = new global::Gtk.Image(); - this.btnP72.Image = w378; - this.tbUI.Add(this.btnP72); - global::Gtk.Table.TableChild w379 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP72])); - w379.TopAttach = ((uint)(8)); - w379.BottomAttach = ((uint)(9)); - w379.LeftAttach = ((uint)(20)); - w379.RightAttach = ((uint)(21)); - w379.XOptions = ((global::Gtk.AttachOptions)(4)); - w379.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP73 = new global::Gtk.Button(); - this.btnP73.WidthRequest = 50; - this.btnP73.HeightRequest = 50; - this.btnP73.CanFocus = true; - this.btnP73.Name = "btnP73"; - this.btnP73.UseUnderline = true; - this.btnP73.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w380 = new global::Gtk.Image(); - this.btnP73.Image = w380; - this.tbUI.Add(this.btnP73); - global::Gtk.Table.TableChild w381 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP73])); - w381.TopAttach = ((uint)(9)); - w381.BottomAttach = ((uint)(10)); - w381.LeftAttach = ((uint)(12)); - w381.RightAttach = ((uint)(13)); - w381.XOptions = ((global::Gtk.AttachOptions)(4)); - w381.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP74 = new global::Gtk.Button(); - this.btnP74.WidthRequest = 50; - this.btnP74.HeightRequest = 50; - this.btnP74.CanFocus = true; - this.btnP74.Name = "btnP74"; - this.btnP74.UseUnderline = true; - this.btnP74.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w382 = new global::Gtk.Image(); - this.btnP74.Image = w382; - this.tbUI.Add(this.btnP74); - global::Gtk.Table.TableChild w383 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP74])); - w383.TopAttach = ((uint)(9)); - w383.BottomAttach = ((uint)(10)); - w383.LeftAttach = ((uint)(13)); - w383.RightAttach = ((uint)(14)); - w383.XOptions = ((global::Gtk.AttachOptions)(4)); - w383.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP75 = new global::Gtk.Button(); - this.btnP75.WidthRequest = 50; - this.btnP75.HeightRequest = 50; - this.btnP75.CanFocus = true; - this.btnP75.Name = "btnP75"; - this.btnP75.UseUnderline = true; - this.btnP75.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w384 = new global::Gtk.Image(); - this.btnP75.Image = w384; - this.tbUI.Add(this.btnP75); - global::Gtk.Table.TableChild w385 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP75])); - w385.TopAttach = ((uint)(9)); - w385.BottomAttach = ((uint)(10)); - w385.LeftAttach = ((uint)(14)); - w385.RightAttach = ((uint)(15)); - w385.XOptions = ((global::Gtk.AttachOptions)(4)); - w385.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP76 = new global::Gtk.Button(); - this.btnP76.WidthRequest = 50; - this.btnP76.HeightRequest = 50; - this.btnP76.CanFocus = true; - this.btnP76.Name = "btnP76"; - this.btnP76.UseUnderline = true; - this.btnP76.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w386 = new global::Gtk.Image(); - this.btnP76.Image = w386; - this.tbUI.Add(this.btnP76); - global::Gtk.Table.TableChild w387 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP76])); - w387.TopAttach = ((uint)(9)); - w387.BottomAttach = ((uint)(10)); - w387.LeftAttach = ((uint)(15)); - w387.RightAttach = ((uint)(16)); - w387.XOptions = ((global::Gtk.AttachOptions)(4)); - w387.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP77 = new global::Gtk.Button(); - this.btnP77.WidthRequest = 50; - this.btnP77.HeightRequest = 50; - this.btnP77.CanFocus = true; - this.btnP77.Name = "btnP77"; - this.btnP77.UseUnderline = true; - this.btnP77.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w388 = new global::Gtk.Image(); - this.btnP77.Image = w388; - this.tbUI.Add(this.btnP77); - global::Gtk.Table.TableChild w389 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP77])); - w389.TopAttach = ((uint)(9)); - w389.BottomAttach = ((uint)(10)); - w389.LeftAttach = ((uint)(16)); - w389.RightAttach = ((uint)(17)); - w389.XOptions = ((global::Gtk.AttachOptions)(4)); - w389.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP78 = new global::Gtk.Button(); - this.btnP78.WidthRequest = 50; - this.btnP78.HeightRequest = 50; - this.btnP78.CanFocus = true; - this.btnP78.Name = "btnP78"; - this.btnP78.UseUnderline = true; - this.btnP78.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w390 = new global::Gtk.Image(); - this.btnP78.Image = w390; - this.tbUI.Add(this.btnP78); - global::Gtk.Table.TableChild w391 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP78])); - w391.TopAttach = ((uint)(9)); - w391.BottomAttach = ((uint)(10)); - w391.LeftAttach = ((uint)(17)); - w391.RightAttach = ((uint)(18)); - w391.XOptions = ((global::Gtk.AttachOptions)(4)); - w391.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP79 = new global::Gtk.Button(); - this.btnP79.WidthRequest = 50; - this.btnP79.HeightRequest = 50; - this.btnP79.CanFocus = true; - this.btnP79.Name = "btnP79"; - this.btnP79.UseUnderline = true; - this.btnP79.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w392 = new global::Gtk.Image(); - this.btnP79.Image = w392; - this.tbUI.Add(this.btnP79); - global::Gtk.Table.TableChild w393 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP79])); - w393.TopAttach = ((uint)(9)); - w393.BottomAttach = ((uint)(10)); - w393.LeftAttach = ((uint)(18)); - w393.RightAttach = ((uint)(19)); - w393.XOptions = ((global::Gtk.AttachOptions)(4)); - w393.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP8 = new global::Gtk.Button(); - this.btnP8.WidthRequest = 50; - this.btnP8.HeightRequest = 50; - this.btnP8.CanFocus = true; - this.btnP8.Name = "btnP8"; - this.btnP8.UseUnderline = true; - this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w394 = new global::Gtk.Image(); - this.btnP8.Image = w394; - this.tbUI.Add(this.btnP8); - global::Gtk.Table.TableChild w395 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); - w395.TopAttach = ((uint)(1)); - w395.BottomAttach = ((uint)(2)); - w395.LeftAttach = ((uint)(19)); - w395.RightAttach = ((uint)(20)); - w395.XOptions = ((global::Gtk.AttachOptions)(4)); - w395.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP80 = new global::Gtk.Button(); - this.btnP80.WidthRequest = 50; - this.btnP80.HeightRequest = 50; - this.btnP80.CanFocus = true; - this.btnP80.Name = "btnP80"; - this.btnP80.UseUnderline = true; - this.btnP80.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w396 = new global::Gtk.Image(); - this.btnP80.Image = w396; - this.tbUI.Add(this.btnP80); - global::Gtk.Table.TableChild w397 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP80])); - w397.TopAttach = ((uint)(9)); - w397.BottomAttach = ((uint)(10)); - w397.LeftAttach = ((uint)(19)); - w397.RightAttach = ((uint)(20)); - w397.XOptions = ((global::Gtk.AttachOptions)(4)); - w397.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP81 = new global::Gtk.Button(); - this.btnP81.WidthRequest = 50; - this.btnP81.HeightRequest = 50; - this.btnP81.CanFocus = true; - this.btnP81.Name = "btnP81"; - this.btnP81.UseUnderline = true; - this.btnP81.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w398 = new global::Gtk.Image(); - this.btnP81.Image = w398; - this.tbUI.Add(this.btnP81); - global::Gtk.Table.TableChild w399 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP81])); - w399.TopAttach = ((uint)(9)); - w399.BottomAttach = ((uint)(10)); - w399.LeftAttach = ((uint)(20)); - w399.RightAttach = ((uint)(21)); - w399.XOptions = ((global::Gtk.AttachOptions)(4)); - w399.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP9 = new global::Gtk.Button(); - this.btnP9.WidthRequest = 50; - this.btnP9.HeightRequest = 50; - this.btnP9.CanFocus = true; - this.btnP9.Name = "btnP9"; - this.btnP9.UseUnderline = true; - this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w400 = new global::Gtk.Image(); - this.btnP9.Image = w400; - this.tbUI.Add(this.btnP9); - global::Gtk.Table.TableChild w401 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); - w401.TopAttach = ((uint)(1)); - w401.BottomAttach = ((uint)(2)); - w401.LeftAttach = ((uint)(20)); - w401.RightAttach = ((uint)(21)); - w401.XOptions = ((global::Gtk.AttachOptions)(4)); - w401.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnPause = new global::Gtk.Button(); - this.btnPause.WidthRequest = 50; - this.btnPause.HeightRequest = 50; - this.btnPause.CanFocus = true; - this.btnPause.Name = "btnPause"; - this.btnPause.UseUnderline = true; - this.btnPause.Label = "Pause"; - this.tbUI.Add(this.btnPause); - global::Gtk.Table.TableChild w402 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); - w402.TopAttach = ((uint)(15)); - w402.BottomAttach = ((uint)(16)); - w402.LeftAttach = ((uint)(21)); - w402.RightAttach = ((uint)(22)); - w402.XOptions = ((global::Gtk.AttachOptions)(4)); - w402.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG1 = new global::Gtk.Image(); - this.imgG1.WidthRequest = 50; - this.imgG1.HeightRequest = 50; - this.imgG1.Name = "imgG1"; - this.tbUI.Add(this.imgG1); - global::Gtk.Table.TableChild w403 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); - w403.TopAttach = ((uint)(2)); - w403.BottomAttach = ((uint)(3)); - w403.LeftAttach = ((uint)(1)); - w403.RightAttach = ((uint)(2)); - w403.XOptions = ((global::Gtk.AttachOptions)(4)); - w403.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG10 = new global::Gtk.Image(); - this.imgG10.WidthRequest = 50; - this.imgG10.HeightRequest = 50; - this.imgG10.Name = "imgG10"; - this.tbUI.Add(this.imgG10); - global::Gtk.Table.TableChild w404 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); - w404.TopAttach = ((uint)(3)); - w404.BottomAttach = ((uint)(4)); - w404.LeftAttach = ((uint)(1)); - w404.RightAttach = ((uint)(2)); - w404.XOptions = ((global::Gtk.AttachOptions)(4)); - w404.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG11 = new global::Gtk.Image(); - this.imgG11.WidthRequest = 50; - this.imgG11.HeightRequest = 50; - this.imgG11.Name = "imgG11"; - this.tbUI.Add(this.imgG11); - global::Gtk.Table.TableChild w405 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); - w405.TopAttach = ((uint)(3)); - w405.BottomAttach = ((uint)(4)); - w405.LeftAttach = ((uint)(2)); - w405.RightAttach = ((uint)(3)); - w405.XOptions = ((global::Gtk.AttachOptions)(4)); - w405.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG12 = new global::Gtk.Image(); - this.imgG12.WidthRequest = 50; - this.imgG12.HeightRequest = 50; - this.imgG12.Name = "imgG12"; - this.tbUI.Add(this.imgG12); - global::Gtk.Table.TableChild w406 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); - w406.TopAttach = ((uint)(3)); - w406.BottomAttach = ((uint)(4)); - w406.LeftAttach = ((uint)(3)); - w406.RightAttach = ((uint)(4)); - w406.XOptions = ((global::Gtk.AttachOptions)(4)); - w406.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG13 = new global::Gtk.Image(); - this.imgG13.WidthRequest = 50; - this.imgG13.HeightRequest = 50; - this.imgG13.Name = "imgG13"; - this.tbUI.Add(this.imgG13); - global::Gtk.Table.TableChild w407 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); - w407.TopAttach = ((uint)(3)); - w407.BottomAttach = ((uint)(4)); - w407.LeftAttach = ((uint)(4)); - w407.RightAttach = ((uint)(5)); - w407.XOptions = ((global::Gtk.AttachOptions)(4)); - w407.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG14 = new global::Gtk.Image(); - this.imgG14.WidthRequest = 50; - this.imgG14.HeightRequest = 50; - this.imgG14.Name = "imgG14"; - this.tbUI.Add(this.imgG14); - global::Gtk.Table.TableChild w408 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); - w408.TopAttach = ((uint)(3)); - w408.BottomAttach = ((uint)(4)); - w408.LeftAttach = ((uint)(5)); - w408.RightAttach = ((uint)(6)); - w408.XOptions = ((global::Gtk.AttachOptions)(4)); - w408.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG15 = new global::Gtk.Image(); - this.imgG15.WidthRequest = 50; - this.imgG15.HeightRequest = 50; - this.imgG15.Name = "imgG15"; - this.tbUI.Add(this.imgG15); - global::Gtk.Table.TableChild w409 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); - w409.TopAttach = ((uint)(3)); - w409.BottomAttach = ((uint)(4)); - w409.LeftAttach = ((uint)(6)); - w409.RightAttach = ((uint)(7)); - w409.XOptions = ((global::Gtk.AttachOptions)(4)); - w409.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG16 = new global::Gtk.Image(); - this.imgG16.WidthRequest = 50; - this.imgG16.HeightRequest = 50; - this.imgG16.Name = "imgG16"; - this.tbUI.Add(this.imgG16); - global::Gtk.Table.TableChild w410 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); - w410.TopAttach = ((uint)(3)); - w410.BottomAttach = ((uint)(4)); - w410.LeftAttach = ((uint)(7)); - w410.RightAttach = ((uint)(8)); - w410.XOptions = ((global::Gtk.AttachOptions)(4)); - w410.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG17 = new global::Gtk.Image(); - this.imgG17.WidthRequest = 50; - this.imgG17.HeightRequest = 50; - this.imgG17.Name = "imgG17"; - this.tbUI.Add(this.imgG17); - global::Gtk.Table.TableChild w411 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); - w411.TopAttach = ((uint)(3)); - w411.BottomAttach = ((uint)(4)); - w411.LeftAttach = ((uint)(8)); - w411.RightAttach = ((uint)(9)); - w411.XOptions = ((global::Gtk.AttachOptions)(4)); - w411.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG18 = new global::Gtk.Image(); - this.imgG18.WidthRequest = 50; - this.imgG18.HeightRequest = 50; - this.imgG18.Name = "imgG18"; - this.tbUI.Add(this.imgG18); - global::Gtk.Table.TableChild w412 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); - w412.TopAttach = ((uint)(3)); - w412.BottomAttach = ((uint)(4)); - w412.LeftAttach = ((uint)(9)); - w412.RightAttach = ((uint)(10)); - w412.XOptions = ((global::Gtk.AttachOptions)(4)); - w412.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG19 = new global::Gtk.Image(); - this.imgG19.WidthRequest = 50; - this.imgG19.HeightRequest = 50; - this.imgG19.Name = "imgG19"; - this.tbUI.Add(this.imgG19); - global::Gtk.Table.TableChild w413 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); - w413.TopAttach = ((uint)(4)); - w413.BottomAttach = ((uint)(5)); - w413.LeftAttach = ((uint)(1)); - w413.RightAttach = ((uint)(2)); - w413.XOptions = ((global::Gtk.AttachOptions)(4)); - w413.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG2 = new global::Gtk.Image(); - this.imgG2.WidthRequest = 50; - this.imgG2.HeightRequest = 50; - this.imgG2.Name = "imgG2"; - this.tbUI.Add(this.imgG2); - global::Gtk.Table.TableChild w414 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); - w414.TopAttach = ((uint)(2)); - w414.BottomAttach = ((uint)(3)); - w414.LeftAttach = ((uint)(2)); - w414.RightAttach = ((uint)(3)); - w414.XOptions = ((global::Gtk.AttachOptions)(4)); - w414.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG20 = new global::Gtk.Image(); - this.imgG20.WidthRequest = 50; - this.imgG20.HeightRequest = 50; - this.imgG20.Name = "imgG20"; - this.tbUI.Add(this.imgG20); - global::Gtk.Table.TableChild w415 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); - w415.TopAttach = ((uint)(4)); - w415.BottomAttach = ((uint)(5)); - w415.LeftAttach = ((uint)(2)); - w415.RightAttach = ((uint)(3)); - w415.XOptions = ((global::Gtk.AttachOptions)(4)); - w415.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG21 = new global::Gtk.Image(); - this.imgG21.WidthRequest = 50; - this.imgG21.HeightRequest = 50; - this.imgG21.Name = "imgG21"; - this.tbUI.Add(this.imgG21); - global::Gtk.Table.TableChild w416 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); - w416.TopAttach = ((uint)(4)); - w416.BottomAttach = ((uint)(5)); - w416.LeftAttach = ((uint)(3)); - w416.RightAttach = ((uint)(4)); - w416.XOptions = ((global::Gtk.AttachOptions)(4)); - w416.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG22 = new global::Gtk.Image(); - this.imgG22.WidthRequest = 50; - this.imgG22.HeightRequest = 50; - this.imgG22.Name = "imgG22"; - this.tbUI.Add(this.imgG22); - global::Gtk.Table.TableChild w417 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); - w417.TopAttach = ((uint)(4)); - w417.BottomAttach = ((uint)(5)); - w417.LeftAttach = ((uint)(4)); - w417.RightAttach = ((uint)(5)); - w417.XOptions = ((global::Gtk.AttachOptions)(4)); - w417.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG23 = new global::Gtk.Image(); - this.imgG23.WidthRequest = 50; - this.imgG23.HeightRequest = 50; - this.imgG23.Name = "imgG23"; - this.tbUI.Add(this.imgG23); - global::Gtk.Table.TableChild w418 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); - w418.TopAttach = ((uint)(4)); - w418.BottomAttach = ((uint)(5)); - w418.LeftAttach = ((uint)(5)); - w418.RightAttach = ((uint)(6)); - w418.XOptions = ((global::Gtk.AttachOptions)(4)); - w418.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG24 = new global::Gtk.Image(); - this.imgG24.WidthRequest = 50; - this.imgG24.HeightRequest = 50; - this.imgG24.Name = "imgG24"; - this.tbUI.Add(this.imgG24); - global::Gtk.Table.TableChild w419 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); - w419.TopAttach = ((uint)(4)); - w419.BottomAttach = ((uint)(5)); - w419.LeftAttach = ((uint)(6)); - w419.RightAttach = ((uint)(7)); - w419.XOptions = ((global::Gtk.AttachOptions)(4)); - w419.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG25 = new global::Gtk.Image(); - this.imgG25.WidthRequest = 50; - this.imgG25.HeightRequest = 50; - this.imgG25.Name = "imgG25"; - this.tbUI.Add(this.imgG25); - global::Gtk.Table.TableChild w420 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); - w420.TopAttach = ((uint)(4)); - w420.BottomAttach = ((uint)(5)); - w420.LeftAttach = ((uint)(7)); - w420.RightAttach = ((uint)(8)); - w420.XOptions = ((global::Gtk.AttachOptions)(4)); - w420.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG26 = new global::Gtk.Image(); - this.imgG26.WidthRequest = 50; - this.imgG26.HeightRequest = 50; - this.imgG26.Name = "imgG26"; - this.tbUI.Add(this.imgG26); - global::Gtk.Table.TableChild w421 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG26])); - w421.TopAttach = ((uint)(4)); - w421.BottomAttach = ((uint)(5)); - w421.LeftAttach = ((uint)(8)); - w421.RightAttach = ((uint)(9)); - w421.XOptions = ((global::Gtk.AttachOptions)(4)); - w421.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG27 = new global::Gtk.Image(); - this.imgG27.WidthRequest = 50; - this.imgG27.HeightRequest = 50; - this.imgG27.Name = "imgG27"; - this.tbUI.Add(this.imgG27); - global::Gtk.Table.TableChild w422 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG27])); - w422.TopAttach = ((uint)(4)); - w422.BottomAttach = ((uint)(5)); - w422.LeftAttach = ((uint)(9)); - w422.RightAttach = ((uint)(10)); - w422.XOptions = ((global::Gtk.AttachOptions)(4)); - w422.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG28 = new global::Gtk.Image(); - this.imgG28.WidthRequest = 50; - this.imgG28.HeightRequest = 50; - this.imgG28.Name = "imgG28"; - this.tbUI.Add(this.imgG28); - global::Gtk.Table.TableChild w423 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG28])); - w423.TopAttach = ((uint)(5)); - w423.BottomAttach = ((uint)(6)); - w423.LeftAttach = ((uint)(1)); - w423.RightAttach = ((uint)(2)); - w423.XOptions = ((global::Gtk.AttachOptions)(4)); - w423.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG29 = new global::Gtk.Image(); - this.imgG29.WidthRequest = 50; - this.imgG29.HeightRequest = 50; - this.imgG29.Name = "imgG29"; - this.tbUI.Add(this.imgG29); - global::Gtk.Table.TableChild w424 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG29])); - w424.TopAttach = ((uint)(5)); - w424.BottomAttach = ((uint)(6)); - w424.LeftAttach = ((uint)(2)); - w424.RightAttach = ((uint)(3)); - w424.XOptions = ((global::Gtk.AttachOptions)(4)); - w424.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG3 = new global::Gtk.Image(); - this.imgG3.WidthRequest = 50; - this.imgG3.HeightRequest = 50; - this.imgG3.Name = "imgG3"; - this.tbUI.Add(this.imgG3); - global::Gtk.Table.TableChild w425 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); - w425.TopAttach = ((uint)(2)); - w425.BottomAttach = ((uint)(3)); - w425.LeftAttach = ((uint)(3)); - w425.RightAttach = ((uint)(4)); - w425.XOptions = ((global::Gtk.AttachOptions)(4)); - w425.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG30 = new global::Gtk.Image(); - this.imgG30.WidthRequest = 50; - this.imgG30.HeightRequest = 50; - this.imgG30.Name = "imgG30"; - this.tbUI.Add(this.imgG30); - global::Gtk.Table.TableChild w426 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG30])); - w426.TopAttach = ((uint)(5)); - w426.BottomAttach = ((uint)(6)); - w426.LeftAttach = ((uint)(3)); - w426.RightAttach = ((uint)(4)); - w426.XOptions = ((global::Gtk.AttachOptions)(4)); - w426.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG31 = new global::Gtk.Image(); - this.imgG31.WidthRequest = 50; - this.imgG31.HeightRequest = 50; - this.imgG31.Name = "imgG31"; - this.tbUI.Add(this.imgG31); - global::Gtk.Table.TableChild w427 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG31])); - w427.TopAttach = ((uint)(5)); - w427.BottomAttach = ((uint)(6)); - w427.LeftAttach = ((uint)(4)); - w427.RightAttach = ((uint)(5)); - w427.XOptions = ((global::Gtk.AttachOptions)(4)); - w427.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG32 = new global::Gtk.Image(); - this.imgG32.WidthRequest = 50; - this.imgG32.HeightRequest = 50; - this.imgG32.Name = "imgG32"; - this.tbUI.Add(this.imgG32); - global::Gtk.Table.TableChild w428 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG32])); - w428.TopAttach = ((uint)(5)); - w428.BottomAttach = ((uint)(6)); - w428.LeftAttach = ((uint)(5)); - w428.RightAttach = ((uint)(6)); - w428.XOptions = ((global::Gtk.AttachOptions)(4)); - w428.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG33 = new global::Gtk.Image(); - this.imgG33.WidthRequest = 50; - this.imgG33.HeightRequest = 50; - this.imgG33.Name = "imgG33"; - this.tbUI.Add(this.imgG33); - global::Gtk.Table.TableChild w429 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG33])); - w429.TopAttach = ((uint)(5)); - w429.BottomAttach = ((uint)(6)); - w429.LeftAttach = ((uint)(6)); - w429.RightAttach = ((uint)(7)); - w429.XOptions = ((global::Gtk.AttachOptions)(4)); - w429.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG34 = new global::Gtk.Image(); - this.imgG34.WidthRequest = 50; - this.imgG34.HeightRequest = 50; - this.imgG34.Name = "imgG34"; - this.tbUI.Add(this.imgG34); - global::Gtk.Table.TableChild w430 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG34])); - w430.TopAttach = ((uint)(5)); - w430.BottomAttach = ((uint)(6)); - w430.LeftAttach = ((uint)(7)); - w430.RightAttach = ((uint)(8)); - w430.XOptions = ((global::Gtk.AttachOptions)(4)); - w430.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG35 = new global::Gtk.Image(); - this.imgG35.WidthRequest = 50; - this.imgG35.HeightRequest = 50; - this.imgG35.Name = "imgG35"; - this.tbUI.Add(this.imgG35); - global::Gtk.Table.TableChild w431 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG35])); - w431.TopAttach = ((uint)(5)); - w431.BottomAttach = ((uint)(6)); - w431.LeftAttach = ((uint)(8)); - w431.RightAttach = ((uint)(9)); - w431.XOptions = ((global::Gtk.AttachOptions)(4)); - w431.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG36 = new global::Gtk.Image(); - this.imgG36.WidthRequest = 50; - this.imgG36.HeightRequest = 50; - this.imgG36.Name = "imgG36"; - this.tbUI.Add(this.imgG36); - global::Gtk.Table.TableChild w432 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG36])); - w432.TopAttach = ((uint)(5)); - w432.BottomAttach = ((uint)(6)); - w432.LeftAttach = ((uint)(9)); - w432.RightAttach = ((uint)(10)); - w432.XOptions = ((global::Gtk.AttachOptions)(4)); - w432.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG37 = new global::Gtk.Image(); - this.imgG37.WidthRequest = 50; - this.imgG37.HeightRequest = 50; - this.imgG37.Name = "imgG37"; - this.tbUI.Add(this.imgG37); - global::Gtk.Table.TableChild w433 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG37])); - w433.TopAttach = ((uint)(6)); - w433.BottomAttach = ((uint)(7)); - w433.LeftAttach = ((uint)(1)); - w433.RightAttach = ((uint)(2)); - w433.XOptions = ((global::Gtk.AttachOptions)(4)); - w433.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG38 = new global::Gtk.Image(); - this.imgG38.WidthRequest = 50; - this.imgG38.HeightRequest = 50; - this.imgG38.Name = "imgG38"; - this.tbUI.Add(this.imgG38); - global::Gtk.Table.TableChild w434 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG38])); - w434.TopAttach = ((uint)(6)); - w434.BottomAttach = ((uint)(7)); - w434.LeftAttach = ((uint)(2)); - w434.RightAttach = ((uint)(3)); - w434.XOptions = ((global::Gtk.AttachOptions)(4)); - w434.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG39 = new global::Gtk.Image(); - this.imgG39.WidthRequest = 50; - this.imgG39.HeightRequest = 50; - this.imgG39.Name = "imgG39"; - this.tbUI.Add(this.imgG39); - global::Gtk.Table.TableChild w435 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG39])); - w435.TopAttach = ((uint)(6)); - w435.BottomAttach = ((uint)(7)); - w435.LeftAttach = ((uint)(3)); - w435.RightAttach = ((uint)(4)); - w435.XOptions = ((global::Gtk.AttachOptions)(4)); - w435.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG4 = new global::Gtk.Image(); - this.imgG4.WidthRequest = 50; - this.imgG4.HeightRequest = 50; - this.imgG4.Name = "imgG4"; - this.tbUI.Add(this.imgG4); - global::Gtk.Table.TableChild w436 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); - w436.TopAttach = ((uint)(2)); - w436.BottomAttach = ((uint)(3)); - w436.LeftAttach = ((uint)(4)); - w436.RightAttach = ((uint)(5)); - w436.XOptions = ((global::Gtk.AttachOptions)(4)); - w436.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG40 = new global::Gtk.Image(); - this.imgG40.WidthRequest = 50; - this.imgG40.HeightRequest = 50; - this.imgG40.Name = "imgG40"; - this.tbUI.Add(this.imgG40); - global::Gtk.Table.TableChild w437 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG40])); - w437.TopAttach = ((uint)(6)); - w437.BottomAttach = ((uint)(7)); - w437.LeftAttach = ((uint)(4)); - w437.RightAttach = ((uint)(5)); - w437.XOptions = ((global::Gtk.AttachOptions)(4)); - w437.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG41 = new global::Gtk.Image(); - this.imgG41.WidthRequest = 50; - this.imgG41.HeightRequest = 50; - this.imgG41.Name = "imgG41"; - this.tbUI.Add(this.imgG41); - global::Gtk.Table.TableChild w438 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG41])); - w438.TopAttach = ((uint)(6)); - w438.BottomAttach = ((uint)(7)); - w438.LeftAttach = ((uint)(5)); - w438.RightAttach = ((uint)(6)); - w438.XOptions = ((global::Gtk.AttachOptions)(4)); - w438.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG42 = new global::Gtk.Image(); - this.imgG42.WidthRequest = 50; - this.imgG42.HeightRequest = 50; - this.imgG42.Name = "imgG42"; - this.tbUI.Add(this.imgG42); - global::Gtk.Table.TableChild w439 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG42])); - w439.TopAttach = ((uint)(6)); - w439.BottomAttach = ((uint)(7)); - w439.LeftAttach = ((uint)(6)); - w439.RightAttach = ((uint)(7)); - w439.XOptions = ((global::Gtk.AttachOptions)(4)); - w439.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG43 = new global::Gtk.Image(); - this.imgG43.WidthRequest = 50; - this.imgG43.HeightRequest = 50; - this.imgG43.Name = "imgG43"; - this.tbUI.Add(this.imgG43); - global::Gtk.Table.TableChild w440 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG43])); - w440.TopAttach = ((uint)(6)); - w440.BottomAttach = ((uint)(7)); - w440.LeftAttach = ((uint)(7)); - w440.RightAttach = ((uint)(8)); - w440.XOptions = ((global::Gtk.AttachOptions)(4)); - w440.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG44 = new global::Gtk.Image(); - this.imgG44.WidthRequest = 50; - this.imgG44.HeightRequest = 50; - this.imgG44.Name = "imgG44"; - this.tbUI.Add(this.imgG44); - global::Gtk.Table.TableChild w441 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG44])); - w441.TopAttach = ((uint)(6)); - w441.BottomAttach = ((uint)(7)); - w441.LeftAttach = ((uint)(8)); - w441.RightAttach = ((uint)(9)); - w441.XOptions = ((global::Gtk.AttachOptions)(4)); - w441.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG45 = new global::Gtk.Image(); - this.imgG45.WidthRequest = 50; - this.imgG45.HeightRequest = 50; - this.imgG45.Name = "imgG45"; - this.tbUI.Add(this.imgG45); - global::Gtk.Table.TableChild w442 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG45])); - w442.TopAttach = ((uint)(6)); - w442.BottomAttach = ((uint)(7)); - w442.LeftAttach = ((uint)(9)); - w442.RightAttach = ((uint)(10)); - w442.XOptions = ((global::Gtk.AttachOptions)(4)); - w442.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG46 = new global::Gtk.Image(); - this.imgG46.WidthRequest = 50; - this.imgG46.HeightRequest = 50; - this.imgG46.Name = "imgG46"; - this.tbUI.Add(this.imgG46); - global::Gtk.Table.TableChild w443 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG46])); - w443.TopAttach = ((uint)(7)); - w443.BottomAttach = ((uint)(8)); - w443.LeftAttach = ((uint)(1)); - w443.RightAttach = ((uint)(2)); - w443.XOptions = ((global::Gtk.AttachOptions)(4)); - w443.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG47 = new global::Gtk.Image(); - this.imgG47.WidthRequest = 50; - this.imgG47.HeightRequest = 50; - this.imgG47.Name = "imgG47"; - this.tbUI.Add(this.imgG47); - global::Gtk.Table.TableChild w444 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG47])); - w444.TopAttach = ((uint)(7)); - w444.BottomAttach = ((uint)(8)); - w444.LeftAttach = ((uint)(2)); - w444.RightAttach = ((uint)(3)); - w444.XOptions = ((global::Gtk.AttachOptions)(4)); - w444.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG48 = new global::Gtk.Image(); - this.imgG48.WidthRequest = 50; - this.imgG48.HeightRequest = 50; - this.imgG48.Name = "imgG48"; - this.tbUI.Add(this.imgG48); - global::Gtk.Table.TableChild w445 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG48])); - w445.TopAttach = ((uint)(7)); - w445.BottomAttach = ((uint)(8)); - w445.LeftAttach = ((uint)(3)); - w445.RightAttach = ((uint)(4)); - w445.XOptions = ((global::Gtk.AttachOptions)(4)); - w445.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG49 = new global::Gtk.Image(); - this.imgG49.WidthRequest = 50; - this.imgG49.HeightRequest = 50; - this.imgG49.Name = "imgG49"; - this.tbUI.Add(this.imgG49); - global::Gtk.Table.TableChild w446 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG49])); - w446.TopAttach = ((uint)(7)); - w446.BottomAttach = ((uint)(8)); - w446.LeftAttach = ((uint)(4)); - w446.RightAttach = ((uint)(5)); - w446.XOptions = ((global::Gtk.AttachOptions)(4)); - w446.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG5 = new global::Gtk.Image(); - this.imgG5.WidthRequest = 50; - this.imgG5.HeightRequest = 50; - this.imgG5.Name = "imgG5"; - this.tbUI.Add(this.imgG5); - global::Gtk.Table.TableChild w447 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); - w447.TopAttach = ((uint)(2)); - w447.BottomAttach = ((uint)(3)); - w447.LeftAttach = ((uint)(5)); - w447.RightAttach = ((uint)(6)); - w447.XOptions = ((global::Gtk.AttachOptions)(4)); - w447.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG50 = new global::Gtk.Image(); - this.imgG50.WidthRequest = 50; - this.imgG50.HeightRequest = 50; - this.imgG50.Name = "imgG50"; - this.tbUI.Add(this.imgG50); - global::Gtk.Table.TableChild w448 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG50])); - w448.TopAttach = ((uint)(7)); - w448.BottomAttach = ((uint)(8)); - w448.LeftAttach = ((uint)(5)); - w448.RightAttach = ((uint)(6)); - w448.XOptions = ((global::Gtk.AttachOptions)(4)); - w448.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG51 = new global::Gtk.Image(); - this.imgG51.WidthRequest = 50; - this.imgG51.HeightRequest = 50; - this.imgG51.Name = "imgG51"; - this.tbUI.Add(this.imgG51); - global::Gtk.Table.TableChild w449 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG51])); - w449.TopAttach = ((uint)(7)); - w449.BottomAttach = ((uint)(8)); - w449.LeftAttach = ((uint)(6)); - w449.RightAttach = ((uint)(7)); - w449.XOptions = ((global::Gtk.AttachOptions)(4)); - w449.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG52 = new global::Gtk.Image(); - this.imgG52.WidthRequest = 50; - this.imgG52.HeightRequest = 50; - this.imgG52.Name = "imgG52"; - this.tbUI.Add(this.imgG52); - global::Gtk.Table.TableChild w450 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG52])); - w450.TopAttach = ((uint)(7)); - w450.BottomAttach = ((uint)(8)); - w450.LeftAttach = ((uint)(7)); - w450.RightAttach = ((uint)(8)); - w450.XOptions = ((global::Gtk.AttachOptions)(4)); - w450.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG53 = new global::Gtk.Image(); - this.imgG53.WidthRequest = 50; - this.imgG53.HeightRequest = 50; - this.imgG53.Name = "imgG53"; - this.tbUI.Add(this.imgG53); - global::Gtk.Table.TableChild w451 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG53])); - w451.TopAttach = ((uint)(7)); - w451.BottomAttach = ((uint)(8)); - w451.LeftAttach = ((uint)(8)); - w451.RightAttach = ((uint)(9)); - w451.XOptions = ((global::Gtk.AttachOptions)(4)); - w451.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG54 = new global::Gtk.Image(); - this.imgG54.WidthRequest = 50; - this.imgG54.HeightRequest = 50; - this.imgG54.Name = "imgG54"; - this.tbUI.Add(this.imgG54); - global::Gtk.Table.TableChild w452 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG54])); - w452.TopAttach = ((uint)(7)); - w452.BottomAttach = ((uint)(8)); - w452.LeftAttach = ((uint)(9)); - w452.RightAttach = ((uint)(10)); - w452.XOptions = ((global::Gtk.AttachOptions)(4)); - w452.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG55 = new global::Gtk.Image(); - this.imgG55.WidthRequest = 50; - this.imgG55.HeightRequest = 50; - this.imgG55.Name = "imgG55"; - this.tbUI.Add(this.imgG55); - global::Gtk.Table.TableChild w453 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG55])); - w453.TopAttach = ((uint)(8)); - w453.BottomAttach = ((uint)(9)); - w453.LeftAttach = ((uint)(1)); - w453.RightAttach = ((uint)(2)); - w453.XOptions = ((global::Gtk.AttachOptions)(4)); - w453.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG56 = new global::Gtk.Image(); - this.imgG56.WidthRequest = 50; - this.imgG56.HeightRequest = 50; - this.imgG56.Name = "imgG56"; - this.tbUI.Add(this.imgG56); - global::Gtk.Table.TableChild w454 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG56])); - w454.TopAttach = ((uint)(8)); - w454.BottomAttach = ((uint)(9)); - w454.LeftAttach = ((uint)(2)); - w454.RightAttach = ((uint)(3)); - w454.XOptions = ((global::Gtk.AttachOptions)(4)); - w454.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG57 = new global::Gtk.Image(); - this.imgG57.WidthRequest = 50; - this.imgG57.HeightRequest = 50; - this.imgG57.Name = "imgG57"; - this.tbUI.Add(this.imgG57); - global::Gtk.Table.TableChild w455 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG57])); - w455.TopAttach = ((uint)(8)); - w455.BottomAttach = ((uint)(9)); - w455.LeftAttach = ((uint)(3)); - w455.RightAttach = ((uint)(4)); - w455.XOptions = ((global::Gtk.AttachOptions)(4)); - w455.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG58 = new global::Gtk.Image(); - this.imgG58.WidthRequest = 50; - this.imgG58.HeightRequest = 50; - this.imgG58.Name = "imgG58"; - this.tbUI.Add(this.imgG58); - global::Gtk.Table.TableChild w456 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG58])); - w456.TopAttach = ((uint)(8)); - w456.BottomAttach = ((uint)(9)); - w456.LeftAttach = ((uint)(4)); - w456.RightAttach = ((uint)(5)); - w456.XOptions = ((global::Gtk.AttachOptions)(4)); - w456.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG59 = new global::Gtk.Image(); - this.imgG59.WidthRequest = 50; - this.imgG59.HeightRequest = 50; - this.imgG59.Name = "imgG59"; - this.tbUI.Add(this.imgG59); - global::Gtk.Table.TableChild w457 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG59])); - w457.TopAttach = ((uint)(8)); - w457.BottomAttach = ((uint)(9)); - w457.LeftAttach = ((uint)(5)); - w457.RightAttach = ((uint)(6)); - w457.XOptions = ((global::Gtk.AttachOptions)(4)); - w457.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG6 = new global::Gtk.Image(); - this.imgG6.WidthRequest = 50; - this.imgG6.HeightRequest = 50; - this.imgG6.Name = "imgG6"; - this.tbUI.Add(this.imgG6); - global::Gtk.Table.TableChild w458 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); - w458.TopAttach = ((uint)(2)); - w458.BottomAttach = ((uint)(3)); - w458.LeftAttach = ((uint)(6)); - w458.RightAttach = ((uint)(7)); - w458.XOptions = ((global::Gtk.AttachOptions)(4)); - w458.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG60 = new global::Gtk.Image(); - this.imgG60.WidthRequest = 50; - this.imgG60.HeightRequest = 50; - this.imgG60.Name = "imgG60"; - this.tbUI.Add(this.imgG60); - global::Gtk.Table.TableChild w459 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG60])); - w459.TopAttach = ((uint)(8)); - w459.BottomAttach = ((uint)(9)); - w459.LeftAttach = ((uint)(6)); - w459.RightAttach = ((uint)(7)); - w459.XOptions = ((global::Gtk.AttachOptions)(4)); - w459.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG61 = new global::Gtk.Image(); - this.imgG61.WidthRequest = 50; - this.imgG61.HeightRequest = 50; - this.imgG61.Name = "imgG61"; - this.tbUI.Add(this.imgG61); - global::Gtk.Table.TableChild w460 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG61])); - w460.TopAttach = ((uint)(8)); - w460.BottomAttach = ((uint)(9)); - w460.LeftAttach = ((uint)(7)); - w460.RightAttach = ((uint)(8)); - w460.XOptions = ((global::Gtk.AttachOptions)(4)); - w460.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG62 = new global::Gtk.Image(); - this.imgG62.WidthRequest = 50; - this.imgG62.HeightRequest = 50; - this.imgG62.Name = "imgG62"; - this.tbUI.Add(this.imgG62); - global::Gtk.Table.TableChild w461 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG62])); - w461.TopAttach = ((uint)(8)); - w461.BottomAttach = ((uint)(9)); - w461.LeftAttach = ((uint)(8)); - w461.RightAttach = ((uint)(9)); - w461.XOptions = ((global::Gtk.AttachOptions)(4)); - w461.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG63 = new global::Gtk.Image(); - this.imgG63.WidthRequest = 50; - this.imgG63.HeightRequest = 50; - this.imgG63.Name = "imgG63"; - this.tbUI.Add(this.imgG63); - global::Gtk.Table.TableChild w462 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG63])); - w462.TopAttach = ((uint)(8)); - w462.BottomAttach = ((uint)(9)); - w462.LeftAttach = ((uint)(9)); - w462.RightAttach = ((uint)(10)); - w462.XOptions = ((global::Gtk.AttachOptions)(4)); - w462.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG64 = new global::Gtk.Image(); - this.imgG64.WidthRequest = 50; - this.imgG64.HeightRequest = 50; - this.imgG64.Name = "imgG64"; - this.tbUI.Add(this.imgG64); - global::Gtk.Table.TableChild w463 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG64])); - w463.TopAttach = ((uint)(9)); - w463.BottomAttach = ((uint)(10)); - w463.LeftAttach = ((uint)(1)); - w463.RightAttach = ((uint)(2)); - w463.XOptions = ((global::Gtk.AttachOptions)(4)); - w463.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG65 = new global::Gtk.Image(); - this.imgG65.WidthRequest = 50; - this.imgG65.HeightRequest = 50; - this.imgG65.Name = "imgG65"; - this.tbUI.Add(this.imgG65); - global::Gtk.Table.TableChild w464 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG65])); - w464.TopAttach = ((uint)(9)); - w464.BottomAttach = ((uint)(10)); - w464.LeftAttach = ((uint)(2)); - w464.RightAttach = ((uint)(3)); - w464.XOptions = ((global::Gtk.AttachOptions)(4)); - w464.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG66 = new global::Gtk.Image(); - this.imgG66.WidthRequest = 50; - this.imgG66.HeightRequest = 50; - this.imgG66.Name = "imgG66"; - this.tbUI.Add(this.imgG66); - global::Gtk.Table.TableChild w465 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG66])); - w465.TopAttach = ((uint)(9)); - w465.BottomAttach = ((uint)(10)); - w465.LeftAttach = ((uint)(3)); - w465.RightAttach = ((uint)(4)); - w465.XOptions = ((global::Gtk.AttachOptions)(4)); - w465.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG67 = new global::Gtk.Image(); - this.imgG67.WidthRequest = 50; - this.imgG67.HeightRequest = 50; - this.imgG67.Name = "imgG67"; - this.tbUI.Add(this.imgG67); - global::Gtk.Table.TableChild w466 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG67])); - w466.TopAttach = ((uint)(9)); - w466.BottomAttach = ((uint)(10)); - w466.LeftAttach = ((uint)(4)); - w466.RightAttach = ((uint)(5)); - w466.XOptions = ((global::Gtk.AttachOptions)(4)); - w466.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG68 = new global::Gtk.Image(); - this.imgG68.WidthRequest = 50; - this.imgG68.HeightRequest = 50; - this.imgG68.Name = "imgG68"; - this.tbUI.Add(this.imgG68); - global::Gtk.Table.TableChild w467 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG68])); - w467.TopAttach = ((uint)(9)); - w467.BottomAttach = ((uint)(10)); - w467.LeftAttach = ((uint)(5)); - w467.RightAttach = ((uint)(6)); - w467.XOptions = ((global::Gtk.AttachOptions)(4)); - w467.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG69 = new global::Gtk.Image(); - this.imgG69.WidthRequest = 50; - this.imgG69.HeightRequest = 50; - this.imgG69.Name = "imgG69"; - this.tbUI.Add(this.imgG69); - global::Gtk.Table.TableChild w468 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG69])); - w468.TopAttach = ((uint)(9)); - w468.BottomAttach = ((uint)(10)); - w468.LeftAttach = ((uint)(6)); - w468.RightAttach = ((uint)(7)); - w468.XOptions = ((global::Gtk.AttachOptions)(4)); - w468.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG7 = new global::Gtk.Image(); - this.imgG7.WidthRequest = 50; - this.imgG7.HeightRequest = 50; - this.imgG7.Name = "imgG7"; - this.tbUI.Add(this.imgG7); - global::Gtk.Table.TableChild w469 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); - w469.TopAttach = ((uint)(2)); - w469.BottomAttach = ((uint)(3)); - w469.LeftAttach = ((uint)(7)); - w469.RightAttach = ((uint)(8)); - w469.XOptions = ((global::Gtk.AttachOptions)(4)); - w469.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG70 = new global::Gtk.Image(); - this.imgG70.WidthRequest = 50; - this.imgG70.HeightRequest = 50; - this.imgG70.Name = "imgG70"; - this.tbUI.Add(this.imgG70); - global::Gtk.Table.TableChild w470 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG70])); - w470.TopAttach = ((uint)(9)); - w470.BottomAttach = ((uint)(10)); - w470.LeftAttach = ((uint)(7)); - w470.RightAttach = ((uint)(8)); - w470.XOptions = ((global::Gtk.AttachOptions)(4)); - w470.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG71 = new global::Gtk.Image(); - this.imgG71.WidthRequest = 50; - this.imgG71.HeightRequest = 50; - this.imgG71.Name = "imgG71"; - this.tbUI.Add(this.imgG71); - global::Gtk.Table.TableChild w471 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG71])); - w471.TopAttach = ((uint)(9)); - w471.BottomAttach = ((uint)(10)); - w471.LeftAttach = ((uint)(8)); - w471.RightAttach = ((uint)(9)); - w471.XOptions = ((global::Gtk.AttachOptions)(4)); - w471.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG72 = new global::Gtk.Image(); - this.imgG72.WidthRequest = 50; - this.imgG72.HeightRequest = 50; - this.imgG72.Name = "imgG72"; - this.tbUI.Add(this.imgG72); - global::Gtk.Table.TableChild w472 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG72])); - w472.TopAttach = ((uint)(9)); - w472.BottomAttach = ((uint)(10)); - w472.LeftAttach = ((uint)(9)); - w472.RightAttach = ((uint)(10)); - w472.XOptions = ((global::Gtk.AttachOptions)(4)); - w472.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG73 = new global::Gtk.Image(); - this.imgG73.WidthRequest = 50; - this.imgG73.HeightRequest = 50; - this.imgG73.Name = "imgG73"; - this.tbUI.Add(this.imgG73); - global::Gtk.Table.TableChild w473 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG73])); - w473.TopAttach = ((uint)(10)); - w473.BottomAttach = ((uint)(11)); - w473.LeftAttach = ((uint)(1)); - w473.RightAttach = ((uint)(2)); - w473.XOptions = ((global::Gtk.AttachOptions)(4)); - w473.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG74 = new global::Gtk.Image(); - this.imgG74.WidthRequest = 50; - this.imgG74.HeightRequest = 50; - this.imgG74.Name = "imgG74"; - this.tbUI.Add(this.imgG74); - global::Gtk.Table.TableChild w474 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG74])); - w474.TopAttach = ((uint)(10)); - w474.BottomAttach = ((uint)(11)); - w474.LeftAttach = ((uint)(2)); - w474.RightAttach = ((uint)(3)); - w474.XOptions = ((global::Gtk.AttachOptions)(4)); - w474.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG75 = new global::Gtk.Image(); - this.imgG75.WidthRequest = 50; - this.imgG75.HeightRequest = 50; - this.imgG75.Name = "imgG75"; - this.tbUI.Add(this.imgG75); - global::Gtk.Table.TableChild w475 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG75])); - w475.TopAttach = ((uint)(10)); - w475.BottomAttach = ((uint)(11)); - w475.LeftAttach = ((uint)(3)); - w475.RightAttach = ((uint)(4)); - w475.XOptions = ((global::Gtk.AttachOptions)(4)); - w475.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG76 = new global::Gtk.Image(); - this.imgG76.WidthRequest = 50; - this.imgG76.HeightRequest = 50; - this.imgG76.Name = "imgG76"; - this.tbUI.Add(this.imgG76); - global::Gtk.Table.TableChild w476 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG76])); - w476.TopAttach = ((uint)(10)); - w476.BottomAttach = ((uint)(11)); - w476.LeftAttach = ((uint)(4)); - w476.RightAttach = ((uint)(5)); - w476.XOptions = ((global::Gtk.AttachOptions)(4)); - w476.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG77 = new global::Gtk.Image(); - this.imgG77.WidthRequest = 50; - this.imgG77.HeightRequest = 50; - this.imgG77.Name = "imgG77"; - this.tbUI.Add(this.imgG77); - global::Gtk.Table.TableChild w477 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG77])); - w477.TopAttach = ((uint)(10)); - w477.BottomAttach = ((uint)(11)); - w477.LeftAttach = ((uint)(5)); - w477.RightAttach = ((uint)(6)); - w477.XOptions = ((global::Gtk.AttachOptions)(4)); - w477.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG78 = new global::Gtk.Image(); - this.imgG78.WidthRequest = 50; - this.imgG78.HeightRequest = 50; - this.imgG78.Name = "imgG78"; - this.tbUI.Add(this.imgG78); - global::Gtk.Table.TableChild w478 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG78])); - w478.TopAttach = ((uint)(10)); - w478.BottomAttach = ((uint)(11)); - w478.LeftAttach = ((uint)(6)); - w478.RightAttach = ((uint)(7)); - w478.XOptions = ((global::Gtk.AttachOptions)(4)); - w478.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG79 = new global::Gtk.Image(); - this.imgG79.WidthRequest = 50; - this.imgG79.HeightRequest = 50; - this.imgG79.Name = "imgG79"; - this.tbUI.Add(this.imgG79); - global::Gtk.Table.TableChild w479 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG79])); - w479.TopAttach = ((uint)(10)); - w479.BottomAttach = ((uint)(11)); - w479.LeftAttach = ((uint)(7)); - w479.RightAttach = ((uint)(8)); - w479.XOptions = ((global::Gtk.AttachOptions)(4)); - w479.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG8 = new global::Gtk.Image(); - this.imgG8.WidthRequest = 50; - this.imgG8.HeightRequest = 50; - this.imgG8.Name = "imgG8"; - this.tbUI.Add(this.imgG8); - global::Gtk.Table.TableChild w480 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); - w480.TopAttach = ((uint)(2)); - w480.BottomAttach = ((uint)(3)); - w480.LeftAttach = ((uint)(8)); - w480.RightAttach = ((uint)(9)); - w480.XOptions = ((global::Gtk.AttachOptions)(4)); - w480.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG80 = new global::Gtk.Image(); - this.imgG80.WidthRequest = 50; - this.imgG80.HeightRequest = 50; - this.imgG80.Name = "imgG80"; - this.tbUI.Add(this.imgG80); - global::Gtk.Table.TableChild w481 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG80])); - w481.TopAttach = ((uint)(10)); - w481.BottomAttach = ((uint)(11)); - w481.LeftAttach = ((uint)(8)); - w481.RightAttach = ((uint)(9)); - w481.XOptions = ((global::Gtk.AttachOptions)(4)); - w481.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG81 = new global::Gtk.Image(); - this.imgG81.WidthRequest = 50; - this.imgG81.HeightRequest = 50; - this.imgG81.Name = "imgG81"; - this.tbUI.Add(this.imgG81); - global::Gtk.Table.TableChild w482 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG81])); - w482.TopAttach = ((uint)(10)); - w482.BottomAttach = ((uint)(11)); - w482.LeftAttach = ((uint)(9)); - w482.RightAttach = ((uint)(10)); - w482.XOptions = ((global::Gtk.AttachOptions)(4)); - w482.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG9 = new global::Gtk.Image(); - this.imgG9.WidthRequest = 50; - this.imgG9.HeightRequest = 50; - this.imgG9.Name = "imgG9"; - this.tbUI.Add(this.imgG9); - global::Gtk.Table.TableChild w483 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); - w483.TopAttach = ((uint)(2)); - w483.BottomAttach = ((uint)(3)); - w483.LeftAttach = ((uint)(9)); - w483.RightAttach = ((uint)(10)); - w483.XOptions = ((global::Gtk.AttachOptions)(4)); - w483.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI1 = new global::Gtk.Image(); - this.imgI1.WidthRequest = 50; - this.imgI1.HeightRequest = 50; - this.imgI1.Name = "imgI1"; - this.tbUI.Add(this.imgI1); - global::Gtk.Table.TableChild w484 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); - w484.TopAttach = ((uint)(14)); - w484.BottomAttach = ((uint)(15)); - w484.LeftAttach = ((uint)(1)); - w484.RightAttach = ((uint)(2)); - w484.XOptions = ((global::Gtk.AttachOptions)(4)); - w484.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI10 = new global::Gtk.Image(); - this.imgI10.WidthRequest = 50; - this.imgI10.HeightRequest = 50; - this.imgI10.Name = "imgI10"; - this.tbUI.Add(this.imgI10); - global::Gtk.Table.TableChild w485 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); - w485.TopAttach = ((uint)(15)); - w485.BottomAttach = ((uint)(16)); - w485.LeftAttach = ((uint)(1)); - w485.RightAttach = ((uint)(2)); - w485.XOptions = ((global::Gtk.AttachOptions)(4)); - w485.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI11 = new global::Gtk.Image(); - this.imgI11.WidthRequest = 50; - this.imgI11.HeightRequest = 50; - this.imgI11.Name = "imgI11"; - this.tbUI.Add(this.imgI11); - global::Gtk.Table.TableChild w486 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); - w486.TopAttach = ((uint)(15)); - w486.BottomAttach = ((uint)(16)); - w486.LeftAttach = ((uint)(2)); - w486.RightAttach = ((uint)(3)); - w486.XOptions = ((global::Gtk.AttachOptions)(4)); - w486.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI12 = new global::Gtk.Image(); - this.imgI12.WidthRequest = 50; - this.imgI12.HeightRequest = 50; - this.imgI12.Name = "imgI12"; - this.tbUI.Add(this.imgI12); - global::Gtk.Table.TableChild w487 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); - w487.TopAttach = ((uint)(15)); - w487.BottomAttach = ((uint)(16)); - w487.LeftAttach = ((uint)(3)); - w487.RightAttach = ((uint)(4)); - w487.XOptions = ((global::Gtk.AttachOptions)(4)); - w487.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI13 = new global::Gtk.Image(); - this.imgI13.WidthRequest = 50; - this.imgI13.HeightRequest = 50; - this.imgI13.Name = "imgI13"; - this.tbUI.Add(this.imgI13); - global::Gtk.Table.TableChild w488 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); - w488.TopAttach = ((uint)(15)); - w488.BottomAttach = ((uint)(16)); - w488.LeftAttach = ((uint)(4)); - w488.RightAttach = ((uint)(5)); - w488.XOptions = ((global::Gtk.AttachOptions)(4)); - w488.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI14 = new global::Gtk.Image(); - this.imgI14.WidthRequest = 50; - this.imgI14.HeightRequest = 50; - this.imgI14.Name = "imgI14"; - this.tbUI.Add(this.imgI14); - global::Gtk.Table.TableChild w489 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); - w489.TopAttach = ((uint)(15)); - w489.BottomAttach = ((uint)(16)); - w489.LeftAttach = ((uint)(5)); - w489.RightAttach = ((uint)(6)); - w489.XOptions = ((global::Gtk.AttachOptions)(4)); - w489.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI15 = new global::Gtk.Image(); - this.imgI15.WidthRequest = 50; - this.imgI15.HeightRequest = 50; - this.imgI15.Name = "imgI15"; - this.tbUI.Add(this.imgI15); - global::Gtk.Table.TableChild w490 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); - w490.TopAttach = ((uint)(15)); - w490.BottomAttach = ((uint)(16)); - w490.LeftAttach = ((uint)(6)); - w490.RightAttach = ((uint)(7)); - w490.XOptions = ((global::Gtk.AttachOptions)(4)); - w490.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI16 = new global::Gtk.Image(); - this.imgI16.WidthRequest = 50; - this.imgI16.HeightRequest = 50; - this.imgI16.Name = "imgI16"; - this.tbUI.Add(this.imgI16); - global::Gtk.Table.TableChild w491 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); - w491.TopAttach = ((uint)(15)); - w491.BottomAttach = ((uint)(16)); - w491.LeftAttach = ((uint)(7)); - w491.RightAttach = ((uint)(8)); - w491.XOptions = ((global::Gtk.AttachOptions)(4)); - w491.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI17 = new global::Gtk.Image(); - this.imgI17.WidthRequest = 50; - this.imgI17.HeightRequest = 50; - this.imgI17.Name = "imgI17"; - this.tbUI.Add(this.imgI17); - global::Gtk.Table.TableChild w492 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); - w492.TopAttach = ((uint)(15)); - w492.BottomAttach = ((uint)(16)); - w492.LeftAttach = ((uint)(8)); - w492.RightAttach = ((uint)(9)); - w492.XOptions = ((global::Gtk.AttachOptions)(4)); - w492.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI18 = new global::Gtk.Image(); - this.imgI18.WidthRequest = 50; - this.imgI18.HeightRequest = 50; - this.imgI18.Name = "imgI18"; - this.tbUI.Add(this.imgI18); - global::Gtk.Table.TableChild w493 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); - w493.TopAttach = ((uint)(15)); - w493.BottomAttach = ((uint)(16)); - w493.LeftAttach = ((uint)(9)); - w493.RightAttach = ((uint)(10)); - w493.XOptions = ((global::Gtk.AttachOptions)(4)); - w493.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI19 = new global::Gtk.Image(); - this.imgI19.WidthRequest = 50; - this.imgI19.HeightRequest = 50; - this.imgI19.Name = "imgI19"; - this.tbUI.Add(this.imgI19); - global::Gtk.Table.TableChild w494 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); - w494.TopAttach = ((uint)(16)); - w494.BottomAttach = ((uint)(17)); - w494.LeftAttach = ((uint)(1)); - w494.RightAttach = ((uint)(2)); - w494.XOptions = ((global::Gtk.AttachOptions)(4)); - w494.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI2 = new global::Gtk.Image(); - this.imgI2.WidthRequest = 50; - this.imgI2.HeightRequest = 50; - this.imgI2.Name = "imgI2"; - this.tbUI.Add(this.imgI2); - global::Gtk.Table.TableChild w495 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); - w495.TopAttach = ((uint)(14)); - w495.BottomAttach = ((uint)(15)); - w495.LeftAttach = ((uint)(2)); - w495.RightAttach = ((uint)(3)); - w495.XOptions = ((global::Gtk.AttachOptions)(4)); - w495.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI20 = new global::Gtk.Image(); - this.imgI20.WidthRequest = 50; - this.imgI20.HeightRequest = 50; - this.imgI20.Name = "imgI20"; - this.tbUI.Add(this.imgI20); - global::Gtk.Table.TableChild w496 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); - w496.TopAttach = ((uint)(16)); - w496.BottomAttach = ((uint)(17)); - w496.LeftAttach = ((uint)(2)); - w496.RightAttach = ((uint)(3)); - w496.XOptions = ((global::Gtk.AttachOptions)(4)); - w496.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI21 = new global::Gtk.Image(); - this.imgI21.WidthRequest = 50; - this.imgI21.HeightRequest = 50; - this.imgI21.Name = "imgI21"; - this.tbUI.Add(this.imgI21); - global::Gtk.Table.TableChild w497 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); - w497.TopAttach = ((uint)(16)); - w497.BottomAttach = ((uint)(17)); - w497.LeftAttach = ((uint)(3)); - w497.RightAttach = ((uint)(4)); - w497.XOptions = ((global::Gtk.AttachOptions)(4)); - w497.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI22 = new global::Gtk.Image(); - this.imgI22.WidthRequest = 50; - this.imgI22.HeightRequest = 50; - this.imgI22.Name = "imgI22"; - this.tbUI.Add(this.imgI22); - global::Gtk.Table.TableChild w498 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); - w498.TopAttach = ((uint)(16)); - w498.BottomAttach = ((uint)(17)); - w498.LeftAttach = ((uint)(4)); - w498.RightAttach = ((uint)(5)); - w498.XOptions = ((global::Gtk.AttachOptions)(4)); - w498.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI23 = new global::Gtk.Image(); - this.imgI23.WidthRequest = 50; - this.imgI23.HeightRequest = 50; - this.imgI23.Name = "imgI23"; - this.tbUI.Add(this.imgI23); - global::Gtk.Table.TableChild w499 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); - w499.TopAttach = ((uint)(16)); - w499.BottomAttach = ((uint)(17)); - w499.LeftAttach = ((uint)(5)); - w499.RightAttach = ((uint)(6)); - w499.XOptions = ((global::Gtk.AttachOptions)(4)); - w499.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI24 = new global::Gtk.Image(); - this.imgI24.WidthRequest = 50; - this.imgI24.HeightRequest = 50; - this.imgI24.Name = "imgI24"; - this.tbUI.Add(this.imgI24); - global::Gtk.Table.TableChild w500 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); - w500.TopAttach = ((uint)(16)); - w500.BottomAttach = ((uint)(17)); - w500.LeftAttach = ((uint)(6)); - w500.RightAttach = ((uint)(7)); - w500.XOptions = ((global::Gtk.AttachOptions)(4)); - w500.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI25 = new global::Gtk.Image(); - this.imgI25.WidthRequest = 50; - this.imgI25.HeightRequest = 50; - this.imgI25.Name = "imgI25"; - this.tbUI.Add(this.imgI25); - global::Gtk.Table.TableChild w501 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); - w501.TopAttach = ((uint)(16)); - w501.BottomAttach = ((uint)(17)); - w501.LeftAttach = ((uint)(7)); - w501.RightAttach = ((uint)(8)); - w501.XOptions = ((global::Gtk.AttachOptions)(4)); - w501.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI26 = new global::Gtk.Image(); - this.imgI26.WidthRequest = 50; - this.imgI26.HeightRequest = 50; - this.imgI26.Name = "imgI26"; - this.tbUI.Add(this.imgI26); - global::Gtk.Table.TableChild w502 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI26])); - w502.TopAttach = ((uint)(16)); - w502.BottomAttach = ((uint)(17)); - w502.LeftAttach = ((uint)(8)); - w502.RightAttach = ((uint)(9)); - w502.XOptions = ((global::Gtk.AttachOptions)(4)); - w502.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI27 = new global::Gtk.Image(); - this.imgI27.WidthRequest = 50; - this.imgI27.HeightRequest = 50; - this.imgI27.Name = "imgI27"; - this.tbUI.Add(this.imgI27); - global::Gtk.Table.TableChild w503 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI27])); - w503.TopAttach = ((uint)(16)); - w503.BottomAttach = ((uint)(17)); - w503.LeftAttach = ((uint)(9)); - w503.RightAttach = ((uint)(10)); - w503.XOptions = ((global::Gtk.AttachOptions)(4)); - w503.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI28 = new global::Gtk.Image(); - this.imgI28.WidthRequest = 50; - this.imgI28.HeightRequest = 50; - this.imgI28.Name = "imgI28"; - this.tbUI.Add(this.imgI28); - global::Gtk.Table.TableChild w504 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI28])); - w504.TopAttach = ((uint)(17)); - w504.BottomAttach = ((uint)(18)); - w504.LeftAttach = ((uint)(1)); - w504.RightAttach = ((uint)(2)); - w504.XOptions = ((global::Gtk.AttachOptions)(4)); - w504.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI29 = new global::Gtk.Image(); - this.imgI29.WidthRequest = 50; - this.imgI29.HeightRequest = 50; - this.imgI29.Name = "imgI29"; - this.tbUI.Add(this.imgI29); - global::Gtk.Table.TableChild w505 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI29])); - w505.TopAttach = ((uint)(17)); - w505.BottomAttach = ((uint)(18)); - w505.LeftAttach = ((uint)(2)); - w505.RightAttach = ((uint)(3)); - w505.XOptions = ((global::Gtk.AttachOptions)(4)); - w505.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI3 = new global::Gtk.Image(); - this.imgI3.WidthRequest = 50; - this.imgI3.HeightRequest = 50; - this.imgI3.Name = "imgI3"; - this.tbUI.Add(this.imgI3); - global::Gtk.Table.TableChild w506 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); - w506.TopAttach = ((uint)(14)); - w506.BottomAttach = ((uint)(15)); - w506.LeftAttach = ((uint)(3)); - w506.RightAttach = ((uint)(4)); - w506.XOptions = ((global::Gtk.AttachOptions)(4)); - w506.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI30 = new global::Gtk.Image(); - this.imgI30.WidthRequest = 50; - this.imgI30.HeightRequest = 50; - this.imgI30.Name = "imgI30"; - this.tbUI.Add(this.imgI30); - global::Gtk.Table.TableChild w507 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI30])); - w507.TopAttach = ((uint)(17)); - w507.BottomAttach = ((uint)(18)); - w507.LeftAttach = ((uint)(3)); - w507.RightAttach = ((uint)(4)); - w507.XOptions = ((global::Gtk.AttachOptions)(4)); - w507.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI31 = new global::Gtk.Image(); - this.imgI31.WidthRequest = 50; - this.imgI31.HeightRequest = 50; - this.imgI31.Name = "imgI31"; - this.tbUI.Add(this.imgI31); - global::Gtk.Table.TableChild w508 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI31])); - w508.TopAttach = ((uint)(17)); - w508.BottomAttach = ((uint)(18)); - w508.LeftAttach = ((uint)(4)); - w508.RightAttach = ((uint)(5)); - w508.XOptions = ((global::Gtk.AttachOptions)(4)); - w508.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI32 = new global::Gtk.Image(); - this.imgI32.WidthRequest = 50; - this.imgI32.HeightRequest = 50; - this.imgI32.Name = "imgI32"; - this.tbUI.Add(this.imgI32); - global::Gtk.Table.TableChild w509 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI32])); - w509.TopAttach = ((uint)(17)); - w509.BottomAttach = ((uint)(18)); - w509.LeftAttach = ((uint)(5)); - w509.RightAttach = ((uint)(6)); - w509.XOptions = ((global::Gtk.AttachOptions)(4)); - w509.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI33 = new global::Gtk.Image(); - this.imgI33.WidthRequest = 50; - this.imgI33.HeightRequest = 50; - this.imgI33.Name = "imgI33"; - this.tbUI.Add(this.imgI33); - global::Gtk.Table.TableChild w510 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI33])); - w510.TopAttach = ((uint)(17)); - w510.BottomAttach = ((uint)(18)); - w510.LeftAttach = ((uint)(6)); - w510.RightAttach = ((uint)(7)); - w510.XOptions = ((global::Gtk.AttachOptions)(4)); - w510.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI34 = new global::Gtk.Image(); - this.imgI34.WidthRequest = 50; - this.imgI34.HeightRequest = 50; - this.imgI34.Name = "imgI34"; - this.tbUI.Add(this.imgI34); - global::Gtk.Table.TableChild w511 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI34])); - w511.TopAttach = ((uint)(17)); - w511.BottomAttach = ((uint)(18)); - w511.LeftAttach = ((uint)(7)); - w511.RightAttach = ((uint)(8)); - w511.XOptions = ((global::Gtk.AttachOptions)(4)); - w511.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI35 = new global::Gtk.Image(); - this.imgI35.WidthRequest = 50; - this.imgI35.HeightRequest = 50; - this.imgI35.Name = "imgI35"; - this.tbUI.Add(this.imgI35); - global::Gtk.Table.TableChild w512 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI35])); - w512.TopAttach = ((uint)(17)); - w512.BottomAttach = ((uint)(18)); - w512.LeftAttach = ((uint)(8)); - w512.RightAttach = ((uint)(9)); - w512.XOptions = ((global::Gtk.AttachOptions)(4)); - w512.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI36 = new global::Gtk.Image(); - this.imgI36.WidthRequest = 50; - this.imgI36.HeightRequest = 50; - this.imgI36.Name = "imgI36"; - this.tbUI.Add(this.imgI36); - global::Gtk.Table.TableChild w513 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI36])); - w513.TopAttach = ((uint)(17)); - w513.BottomAttach = ((uint)(18)); - w513.LeftAttach = ((uint)(9)); - w513.RightAttach = ((uint)(10)); - w513.XOptions = ((global::Gtk.AttachOptions)(4)); - w513.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI37 = new global::Gtk.Image(); - this.imgI37.WidthRequest = 50; - this.imgI37.HeightRequest = 50; - this.imgI37.Name = "imgI37"; - this.tbUI.Add(this.imgI37); - global::Gtk.Table.TableChild w514 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI37])); - w514.TopAttach = ((uint)(18)); - w514.BottomAttach = ((uint)(19)); - w514.LeftAttach = ((uint)(1)); - w514.RightAttach = ((uint)(2)); - w514.XOptions = ((global::Gtk.AttachOptions)(4)); - w514.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI38 = new global::Gtk.Image(); - this.imgI38.WidthRequest = 50; - this.imgI38.HeightRequest = 50; - this.imgI38.Name = "imgI38"; - this.tbUI.Add(this.imgI38); - global::Gtk.Table.TableChild w515 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI38])); - w515.TopAttach = ((uint)(18)); - w515.BottomAttach = ((uint)(19)); - w515.LeftAttach = ((uint)(2)); - w515.RightAttach = ((uint)(3)); - w515.XOptions = ((global::Gtk.AttachOptions)(4)); - w515.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI39 = new global::Gtk.Image(); - this.imgI39.WidthRequest = 50; - this.imgI39.HeightRequest = 50; - this.imgI39.Name = "imgI39"; - this.tbUI.Add(this.imgI39); - global::Gtk.Table.TableChild w516 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI39])); - w516.TopAttach = ((uint)(18)); - w516.BottomAttach = ((uint)(19)); - w516.LeftAttach = ((uint)(3)); - w516.RightAttach = ((uint)(4)); - w516.XOptions = ((global::Gtk.AttachOptions)(4)); - w516.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI4 = new global::Gtk.Image(); - this.imgI4.WidthRequest = 50; - this.imgI4.HeightRequest = 50; - this.imgI4.Name = "imgI4"; - this.tbUI.Add(this.imgI4); - global::Gtk.Table.TableChild w517 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); - w517.TopAttach = ((uint)(14)); - w517.BottomAttach = ((uint)(15)); - w517.LeftAttach = ((uint)(4)); - w517.RightAttach = ((uint)(5)); - w517.XOptions = ((global::Gtk.AttachOptions)(4)); - w517.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI40 = new global::Gtk.Image(); - this.imgI40.WidthRequest = 50; - this.imgI40.HeightRequest = 50; - this.imgI40.Name = "imgI40"; - this.tbUI.Add(this.imgI40); - global::Gtk.Table.TableChild w518 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI40])); - w518.TopAttach = ((uint)(18)); - w518.BottomAttach = ((uint)(19)); - w518.LeftAttach = ((uint)(4)); - w518.RightAttach = ((uint)(5)); - w518.XOptions = ((global::Gtk.AttachOptions)(4)); - w518.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI41 = new global::Gtk.Image(); - this.imgI41.WidthRequest = 50; - this.imgI41.HeightRequest = 50; - this.imgI41.Name = "imgI41"; - this.tbUI.Add(this.imgI41); - global::Gtk.Table.TableChild w519 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI41])); - w519.TopAttach = ((uint)(18)); - w519.BottomAttach = ((uint)(19)); - w519.LeftAttach = ((uint)(5)); - w519.RightAttach = ((uint)(6)); - w519.XOptions = ((global::Gtk.AttachOptions)(4)); - w519.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI42 = new global::Gtk.Image(); - this.imgI42.WidthRequest = 50; - this.imgI42.HeightRequest = 50; - this.imgI42.Name = "imgI42"; - this.tbUI.Add(this.imgI42); - global::Gtk.Table.TableChild w520 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI42])); - w520.TopAttach = ((uint)(18)); - w520.BottomAttach = ((uint)(19)); - w520.LeftAttach = ((uint)(6)); - w520.RightAttach = ((uint)(7)); - w520.XOptions = ((global::Gtk.AttachOptions)(4)); - w520.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI43 = new global::Gtk.Image(); - this.imgI43.WidthRequest = 50; - this.imgI43.HeightRequest = 50; - this.imgI43.Name = "imgI43"; - this.tbUI.Add(this.imgI43); - global::Gtk.Table.TableChild w521 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI43])); - w521.TopAttach = ((uint)(18)); - w521.BottomAttach = ((uint)(19)); - w521.LeftAttach = ((uint)(7)); - w521.RightAttach = ((uint)(8)); - w521.XOptions = ((global::Gtk.AttachOptions)(4)); - w521.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI44 = new global::Gtk.Image(); - this.imgI44.WidthRequest = 50; - this.imgI44.HeightRequest = 50; - this.imgI44.Name = "imgI44"; - this.tbUI.Add(this.imgI44); - global::Gtk.Table.TableChild w522 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI44])); - w522.TopAttach = ((uint)(18)); - w522.BottomAttach = ((uint)(19)); - w522.LeftAttach = ((uint)(8)); - w522.RightAttach = ((uint)(9)); - w522.XOptions = ((global::Gtk.AttachOptions)(4)); - w522.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI45 = new global::Gtk.Image(); - this.imgI45.WidthRequest = 50; - this.imgI45.HeightRequest = 50; - this.imgI45.Name = "imgI45"; - this.tbUI.Add(this.imgI45); - global::Gtk.Table.TableChild w523 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI45])); - w523.TopAttach = ((uint)(18)); - w523.BottomAttach = ((uint)(19)); - w523.LeftAttach = ((uint)(9)); - w523.RightAttach = ((uint)(10)); - w523.XOptions = ((global::Gtk.AttachOptions)(4)); - w523.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI46 = new global::Gtk.Image(); - this.imgI46.WidthRequest = 50; - this.imgI46.HeightRequest = 50; - this.imgI46.Name = "imgI46"; - this.tbUI.Add(this.imgI46); - global::Gtk.Table.TableChild w524 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI46])); - w524.TopAttach = ((uint)(19)); - w524.BottomAttach = ((uint)(20)); - w524.LeftAttach = ((uint)(1)); - w524.RightAttach = ((uint)(2)); - w524.XOptions = ((global::Gtk.AttachOptions)(4)); - w524.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI47 = new global::Gtk.Image(); - this.imgI47.WidthRequest = 50; - this.imgI47.HeightRequest = 50; - this.imgI47.Name = "imgI47"; - this.tbUI.Add(this.imgI47); - global::Gtk.Table.TableChild w525 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI47])); - w525.TopAttach = ((uint)(19)); - w525.BottomAttach = ((uint)(20)); - w525.LeftAttach = ((uint)(2)); - w525.RightAttach = ((uint)(3)); - w525.XOptions = ((global::Gtk.AttachOptions)(4)); - w525.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI48 = new global::Gtk.Image(); - this.imgI48.WidthRequest = 50; - this.imgI48.HeightRequest = 50; - this.imgI48.Name = "imgI48"; - this.tbUI.Add(this.imgI48); - global::Gtk.Table.TableChild w526 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI48])); - w526.TopAttach = ((uint)(19)); - w526.BottomAttach = ((uint)(20)); - w526.LeftAttach = ((uint)(3)); - w526.RightAttach = ((uint)(4)); - w526.XOptions = ((global::Gtk.AttachOptions)(4)); - w526.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI49 = new global::Gtk.Image(); - this.imgI49.WidthRequest = 50; - this.imgI49.HeightRequest = 50; - this.imgI49.Name = "imgI49"; - this.tbUI.Add(this.imgI49); - global::Gtk.Table.TableChild w527 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI49])); - w527.TopAttach = ((uint)(19)); - w527.BottomAttach = ((uint)(20)); - w527.LeftAttach = ((uint)(4)); - w527.RightAttach = ((uint)(5)); - w527.XOptions = ((global::Gtk.AttachOptions)(4)); - w527.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI5 = new global::Gtk.Image(); - this.imgI5.WidthRequest = 50; - this.imgI5.HeightRequest = 50; - this.imgI5.Name = "imgI5"; - this.tbUI.Add(this.imgI5); - global::Gtk.Table.TableChild w528 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); - w528.TopAttach = ((uint)(14)); - w528.BottomAttach = ((uint)(15)); - w528.LeftAttach = ((uint)(5)); - w528.RightAttach = ((uint)(6)); - w528.XOptions = ((global::Gtk.AttachOptions)(4)); - w528.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI50 = new global::Gtk.Image(); - this.imgI50.WidthRequest = 50; - this.imgI50.HeightRequest = 50; - this.imgI50.Name = "imgI50"; - this.tbUI.Add(this.imgI50); - global::Gtk.Table.TableChild w529 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI50])); - w529.TopAttach = ((uint)(19)); - w529.BottomAttach = ((uint)(20)); - w529.LeftAttach = ((uint)(5)); - w529.RightAttach = ((uint)(6)); - w529.XOptions = ((global::Gtk.AttachOptions)(4)); - w529.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI51 = new global::Gtk.Image(); - this.imgI51.WidthRequest = 50; - this.imgI51.HeightRequest = 50; - this.imgI51.Name = "imgI51"; - this.tbUI.Add(this.imgI51); - global::Gtk.Table.TableChild w530 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI51])); - w530.TopAttach = ((uint)(19)); - w530.BottomAttach = ((uint)(20)); - w530.LeftAttach = ((uint)(6)); - w530.RightAttach = ((uint)(7)); - w530.XOptions = ((global::Gtk.AttachOptions)(4)); - w530.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI52 = new global::Gtk.Image(); - this.imgI52.WidthRequest = 50; - this.imgI52.HeightRequest = 50; - this.imgI52.Name = "imgI52"; - this.tbUI.Add(this.imgI52); - global::Gtk.Table.TableChild w531 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI52])); - w531.TopAttach = ((uint)(19)); - w531.BottomAttach = ((uint)(20)); - w531.LeftAttach = ((uint)(7)); - w531.RightAttach = ((uint)(8)); - w531.XOptions = ((global::Gtk.AttachOptions)(4)); - w531.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI53 = new global::Gtk.Image(); - this.imgI53.WidthRequest = 50; - this.imgI53.HeightRequest = 50; - this.imgI53.Name = "imgI53"; - this.tbUI.Add(this.imgI53); - global::Gtk.Table.TableChild w532 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI53])); - w532.TopAttach = ((uint)(19)); - w532.BottomAttach = ((uint)(20)); - w532.LeftAttach = ((uint)(8)); - w532.RightAttach = ((uint)(9)); - w532.XOptions = ((global::Gtk.AttachOptions)(4)); - w532.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI54 = new global::Gtk.Image(); - this.imgI54.WidthRequest = 50; - this.imgI54.HeightRequest = 50; - this.imgI54.Name = "imgI54"; - this.tbUI.Add(this.imgI54); - global::Gtk.Table.TableChild w533 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI54])); - w533.TopAttach = ((uint)(19)); - w533.BottomAttach = ((uint)(20)); - w533.LeftAttach = ((uint)(9)); - w533.RightAttach = ((uint)(10)); - w533.XOptions = ((global::Gtk.AttachOptions)(4)); - w533.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI55 = new global::Gtk.Image(); - this.imgI55.WidthRequest = 50; - this.imgI55.HeightRequest = 50; - this.imgI55.Name = "imgI55"; - this.tbUI.Add(this.imgI55); - global::Gtk.Table.TableChild w534 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI55])); - w534.TopAttach = ((uint)(20)); - w534.BottomAttach = ((uint)(21)); - w534.LeftAttach = ((uint)(1)); - w534.RightAttach = ((uint)(2)); - w534.XOptions = ((global::Gtk.AttachOptions)(4)); - w534.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI56 = new global::Gtk.Image(); - this.imgI56.WidthRequest = 50; - this.imgI56.HeightRequest = 50; - this.imgI56.Name = "imgI56"; - this.tbUI.Add(this.imgI56); - global::Gtk.Table.TableChild w535 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI56])); - w535.TopAttach = ((uint)(20)); - w535.BottomAttach = ((uint)(21)); - w535.LeftAttach = ((uint)(2)); - w535.RightAttach = ((uint)(3)); - w535.XOptions = ((global::Gtk.AttachOptions)(4)); - w535.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI57 = new global::Gtk.Image(); - this.imgI57.WidthRequest = 50; - this.imgI57.HeightRequest = 50; - this.imgI57.Name = "imgI57"; - this.tbUI.Add(this.imgI57); - global::Gtk.Table.TableChild w536 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI57])); - w536.TopAttach = ((uint)(20)); - w536.BottomAttach = ((uint)(21)); - w536.LeftAttach = ((uint)(3)); - w536.RightAttach = ((uint)(4)); - w536.XOptions = ((global::Gtk.AttachOptions)(4)); - w536.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI58 = new global::Gtk.Image(); - this.imgI58.WidthRequest = 50; - this.imgI58.HeightRequest = 50; - this.imgI58.Name = "imgI58"; - this.tbUI.Add(this.imgI58); - global::Gtk.Table.TableChild w537 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI58])); - w537.TopAttach = ((uint)(20)); - w537.BottomAttach = ((uint)(21)); - w537.LeftAttach = ((uint)(4)); - w537.RightAttach = ((uint)(5)); - w537.XOptions = ((global::Gtk.AttachOptions)(4)); - w537.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI59 = new global::Gtk.Image(); - this.imgI59.WidthRequest = 50; - this.imgI59.HeightRequest = 50; - this.imgI59.Name = "imgI59"; - this.tbUI.Add(this.imgI59); - global::Gtk.Table.TableChild w538 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI59])); - w538.TopAttach = ((uint)(20)); - w538.BottomAttach = ((uint)(21)); - w538.LeftAttach = ((uint)(5)); - w538.RightAttach = ((uint)(6)); - w538.XOptions = ((global::Gtk.AttachOptions)(4)); - w538.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI6 = new global::Gtk.Image(); - this.imgI6.WidthRequest = 50; - this.imgI6.HeightRequest = 50; - this.imgI6.Name = "imgI6"; - this.tbUI.Add(this.imgI6); - global::Gtk.Table.TableChild w539 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); - w539.TopAttach = ((uint)(14)); - w539.BottomAttach = ((uint)(15)); - w539.LeftAttach = ((uint)(6)); - w539.RightAttach = ((uint)(7)); - w539.XOptions = ((global::Gtk.AttachOptions)(4)); - w539.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI60 = new global::Gtk.Image(); - this.imgI60.WidthRequest = 50; - this.imgI60.HeightRequest = 50; - this.imgI60.Name = "imgI60"; - this.tbUI.Add(this.imgI60); - global::Gtk.Table.TableChild w540 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI60])); - w540.TopAttach = ((uint)(20)); - w540.BottomAttach = ((uint)(21)); - w540.LeftAttach = ((uint)(6)); - w540.RightAttach = ((uint)(7)); - w540.XOptions = ((global::Gtk.AttachOptions)(4)); - w540.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI61 = new global::Gtk.Image(); - this.imgI61.WidthRequest = 50; - this.imgI61.HeightRequest = 50; - this.imgI61.Name = "imgI61"; - this.tbUI.Add(this.imgI61); - global::Gtk.Table.TableChild w541 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI61])); - w541.TopAttach = ((uint)(20)); - w541.BottomAttach = ((uint)(21)); - w541.LeftAttach = ((uint)(7)); - w541.RightAttach = ((uint)(8)); - w541.XOptions = ((global::Gtk.AttachOptions)(4)); - w541.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI62 = new global::Gtk.Image(); - this.imgI62.WidthRequest = 50; - this.imgI62.HeightRequest = 50; - this.imgI62.Name = "imgI62"; - this.tbUI.Add(this.imgI62); - global::Gtk.Table.TableChild w542 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI62])); - w542.TopAttach = ((uint)(20)); - w542.BottomAttach = ((uint)(21)); - w542.LeftAttach = ((uint)(8)); - w542.RightAttach = ((uint)(9)); - w542.XOptions = ((global::Gtk.AttachOptions)(4)); - w542.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI63 = new global::Gtk.Image(); - this.imgI63.WidthRequest = 50; - this.imgI63.HeightRequest = 50; - this.imgI63.Name = "imgI63"; - this.tbUI.Add(this.imgI63); - global::Gtk.Table.TableChild w543 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI63])); - w543.TopAttach = ((uint)(20)); - w543.BottomAttach = ((uint)(21)); - w543.LeftAttach = ((uint)(9)); - w543.RightAttach = ((uint)(10)); - w543.XOptions = ((global::Gtk.AttachOptions)(4)); - w543.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI64 = new global::Gtk.Image(); - this.imgI64.WidthRequest = 50; - this.imgI64.HeightRequest = 50; - this.imgI64.Name = "imgI64"; - this.tbUI.Add(this.imgI64); - global::Gtk.Table.TableChild w544 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI64])); - w544.TopAttach = ((uint)(21)); - w544.BottomAttach = ((uint)(22)); - w544.LeftAttach = ((uint)(1)); - w544.RightAttach = ((uint)(2)); - w544.XOptions = ((global::Gtk.AttachOptions)(4)); - w544.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI65 = new global::Gtk.Image(); - this.imgI65.WidthRequest = 50; - this.imgI65.HeightRequest = 50; - this.imgI65.Name = "imgI65"; - this.tbUI.Add(this.imgI65); - global::Gtk.Table.TableChild w545 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI65])); - w545.TopAttach = ((uint)(21)); - w545.BottomAttach = ((uint)(22)); - w545.LeftAttach = ((uint)(2)); - w545.RightAttach = ((uint)(3)); - w545.XOptions = ((global::Gtk.AttachOptions)(4)); - w545.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI66 = new global::Gtk.Image(); - this.imgI66.WidthRequest = 50; - this.imgI66.HeightRequest = 50; - this.imgI66.Name = "imgI66"; - this.tbUI.Add(this.imgI66); - global::Gtk.Table.TableChild w546 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI66])); - w546.TopAttach = ((uint)(21)); - w546.BottomAttach = ((uint)(22)); - w546.LeftAttach = ((uint)(3)); - w546.RightAttach = ((uint)(4)); - w546.XOptions = ((global::Gtk.AttachOptions)(4)); - w546.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI67 = new global::Gtk.Image(); - this.imgI67.WidthRequest = 50; - this.imgI67.HeightRequest = 50; - this.imgI67.Name = "imgI67"; - this.tbUI.Add(this.imgI67); - global::Gtk.Table.TableChild w547 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI67])); - w547.TopAttach = ((uint)(21)); - w547.BottomAttach = ((uint)(22)); - w547.LeftAttach = ((uint)(4)); - w547.RightAttach = ((uint)(5)); - w547.XOptions = ((global::Gtk.AttachOptions)(4)); - w547.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI68 = new global::Gtk.Image(); - this.imgI68.WidthRequest = 50; - this.imgI68.HeightRequest = 50; - this.imgI68.Name = "imgI68"; - this.tbUI.Add(this.imgI68); - global::Gtk.Table.TableChild w548 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI68])); - w548.TopAttach = ((uint)(21)); - w548.BottomAttach = ((uint)(22)); - w548.LeftAttach = ((uint)(5)); - w548.RightAttach = ((uint)(6)); - w548.XOptions = ((global::Gtk.AttachOptions)(4)); - w548.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI69 = new global::Gtk.Image(); - this.imgI69.WidthRequest = 50; - this.imgI69.HeightRequest = 50; - this.imgI69.Name = "imgI69"; - this.tbUI.Add(this.imgI69); - global::Gtk.Table.TableChild w549 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI69])); - w549.TopAttach = ((uint)(21)); - w549.BottomAttach = ((uint)(22)); - w549.LeftAttach = ((uint)(6)); - w549.RightAttach = ((uint)(7)); - w549.XOptions = ((global::Gtk.AttachOptions)(4)); - w549.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI7 = new global::Gtk.Image(); - this.imgI7.WidthRequest = 50; - this.imgI7.HeightRequest = 50; - this.imgI7.Name = "imgI7"; - this.tbUI.Add(this.imgI7); - global::Gtk.Table.TableChild w550 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); - w550.TopAttach = ((uint)(14)); - w550.BottomAttach = ((uint)(15)); - w550.LeftAttach = ((uint)(7)); - w550.RightAttach = ((uint)(8)); - w550.XOptions = ((global::Gtk.AttachOptions)(4)); - w550.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI70 = new global::Gtk.Image(); - this.imgI70.WidthRequest = 50; - this.imgI70.HeightRequest = 50; - this.imgI70.Name = "imgI70"; - this.tbUI.Add(this.imgI70); - global::Gtk.Table.TableChild w551 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI70])); - w551.TopAttach = ((uint)(21)); - w551.BottomAttach = ((uint)(22)); - w551.LeftAttach = ((uint)(7)); - w551.RightAttach = ((uint)(8)); - w551.XOptions = ((global::Gtk.AttachOptions)(4)); - w551.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI71 = new global::Gtk.Image(); - this.imgI71.WidthRequest = 50; - this.imgI71.HeightRequest = 50; - this.imgI71.Name = "imgI71"; - this.tbUI.Add(this.imgI71); - global::Gtk.Table.TableChild w552 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI71])); - w552.TopAttach = ((uint)(21)); - w552.BottomAttach = ((uint)(22)); - w552.LeftAttach = ((uint)(8)); - w552.RightAttach = ((uint)(9)); - w552.XOptions = ((global::Gtk.AttachOptions)(4)); - w552.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI72 = new global::Gtk.Image(); - this.imgI72.WidthRequest = 50; - this.imgI72.HeightRequest = 50; - this.imgI72.Name = "imgI72"; - this.tbUI.Add(this.imgI72); - global::Gtk.Table.TableChild w553 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI72])); - w553.TopAttach = ((uint)(21)); - w553.BottomAttach = ((uint)(22)); - w553.LeftAttach = ((uint)(9)); - w553.RightAttach = ((uint)(10)); - w553.XOptions = ((global::Gtk.AttachOptions)(4)); - w553.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI73 = new global::Gtk.Image(); - this.imgI73.WidthRequest = 50; - this.imgI73.HeightRequest = 50; - this.imgI73.Name = "imgI73"; - this.tbUI.Add(this.imgI73); - global::Gtk.Table.TableChild w554 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI73])); - w554.TopAttach = ((uint)(22)); - w554.BottomAttach = ((uint)(23)); - w554.LeftAttach = ((uint)(1)); - w554.RightAttach = ((uint)(2)); - w554.XOptions = ((global::Gtk.AttachOptions)(4)); - w554.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI74 = new global::Gtk.Image(); - this.imgI74.WidthRequest = 50; - this.imgI74.HeightRequest = 50; - this.imgI74.Name = "imgI74"; - this.tbUI.Add(this.imgI74); - global::Gtk.Table.TableChild w555 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI74])); - w555.TopAttach = ((uint)(22)); - w555.BottomAttach = ((uint)(23)); - w555.LeftAttach = ((uint)(2)); - w555.RightAttach = ((uint)(3)); - w555.XOptions = ((global::Gtk.AttachOptions)(4)); - w555.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI75 = new global::Gtk.Image(); - this.imgI75.WidthRequest = 50; - this.imgI75.HeightRequest = 50; - this.imgI75.Name = "imgI75"; - this.tbUI.Add(this.imgI75); - global::Gtk.Table.TableChild w556 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI75])); - w556.TopAttach = ((uint)(22)); - w556.BottomAttach = ((uint)(23)); - w556.LeftAttach = ((uint)(3)); - w556.RightAttach = ((uint)(4)); - w556.XOptions = ((global::Gtk.AttachOptions)(4)); - w556.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI76 = new global::Gtk.Image(); - this.imgI76.WidthRequest = 50; - this.imgI76.HeightRequest = 50; - this.imgI76.Name = "imgI76"; - this.tbUI.Add(this.imgI76); - global::Gtk.Table.TableChild w557 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI76])); - w557.TopAttach = ((uint)(22)); - w557.BottomAttach = ((uint)(23)); - w557.LeftAttach = ((uint)(4)); - w557.RightAttach = ((uint)(5)); - w557.XOptions = ((global::Gtk.AttachOptions)(4)); - w557.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI77 = new global::Gtk.Image(); - this.imgI77.WidthRequest = 50; - this.imgI77.HeightRequest = 50; - this.imgI77.Name = "imgI77"; - this.tbUI.Add(this.imgI77); - global::Gtk.Table.TableChild w558 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI77])); - w558.TopAttach = ((uint)(22)); - w558.BottomAttach = ((uint)(23)); - w558.LeftAttach = ((uint)(5)); - w558.RightAttach = ((uint)(6)); - w558.XOptions = ((global::Gtk.AttachOptions)(4)); - w558.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI78 = new global::Gtk.Image(); - this.imgI78.WidthRequest = 50; - this.imgI78.HeightRequest = 50; - this.imgI78.Name = "imgI78"; - this.tbUI.Add(this.imgI78); - global::Gtk.Table.TableChild w559 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI78])); - w559.TopAttach = ((uint)(22)); - w559.BottomAttach = ((uint)(23)); - w559.LeftAttach = ((uint)(6)); - w559.RightAttach = ((uint)(7)); - w559.XOptions = ((global::Gtk.AttachOptions)(4)); - w559.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI79 = new global::Gtk.Image(); - this.imgI79.WidthRequest = 50; - this.imgI79.HeightRequest = 50; - this.imgI79.Name = "imgI79"; - this.tbUI.Add(this.imgI79); - global::Gtk.Table.TableChild w560 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI79])); - w560.TopAttach = ((uint)(22)); - w560.BottomAttach = ((uint)(23)); - w560.LeftAttach = ((uint)(7)); - w560.RightAttach = ((uint)(8)); - w560.XOptions = ((global::Gtk.AttachOptions)(4)); - w560.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI8 = new global::Gtk.Image(); - this.imgI8.WidthRequest = 50; - this.imgI8.HeightRequest = 50; - this.imgI8.Name = "imgI8"; - this.tbUI.Add(this.imgI8); - global::Gtk.Table.TableChild w561 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); - w561.TopAttach = ((uint)(14)); - w561.BottomAttach = ((uint)(15)); - w561.LeftAttach = ((uint)(8)); - w561.RightAttach = ((uint)(9)); - w561.XOptions = ((global::Gtk.AttachOptions)(4)); - w561.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI80 = new global::Gtk.Image(); - this.imgI80.WidthRequest = 50; - this.imgI80.HeightRequest = 50; - this.imgI80.Name = "imgI80"; - this.tbUI.Add(this.imgI80); - global::Gtk.Table.TableChild w562 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI80])); - w562.TopAttach = ((uint)(22)); - w562.BottomAttach = ((uint)(23)); - w562.LeftAttach = ((uint)(8)); - w562.RightAttach = ((uint)(9)); - w562.XOptions = ((global::Gtk.AttachOptions)(4)); - w562.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI81 = new global::Gtk.Image(); - this.imgI81.WidthRequest = 50; - this.imgI81.HeightRequest = 50; - this.imgI81.Name = "imgI81"; - this.tbUI.Add(this.imgI81); - global::Gtk.Table.TableChild w563 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI81])); - w563.TopAttach = ((uint)(22)); - w563.BottomAttach = ((uint)(23)); - w563.LeftAttach = ((uint)(9)); - w563.RightAttach = ((uint)(10)); - w563.XOptions = ((global::Gtk.AttachOptions)(4)); - w563.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI9 = new global::Gtk.Image(); - this.imgI9.WidthRequest = 50; - this.imgI9.HeightRequest = 50; - this.imgI9.Name = "imgI9"; - this.tbUI.Add(this.imgI9); - global::Gtk.Table.TableChild w564 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); - w564.TopAttach = ((uint)(14)); - w564.BottomAttach = ((uint)(15)); - w564.LeftAttach = ((uint)(9)); - w564.RightAttach = ((uint)(10)); - w564.XOptions = ((global::Gtk.AttachOptions)(4)); - w564.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgInfo = new global::Gtk.Image(); - this.imgInfo.WidthRequest = 50; - this.imgInfo.HeightRequest = 50; - this.imgInfo.Name = "imgInfo"; - this.tbUI.Add(this.imgInfo); - global::Gtk.Table.TableChild w565 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); - w565.TopAttach = ((uint)(22)); - w565.BottomAttach = ((uint)(23)); - w565.LeftAttach = ((uint)(27)); - w565.RightAttach = ((uint)(28)); - w565.XOptions = ((global::Gtk.AttachOptions)(4)); - w565.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS1 = new global::Gtk.Image(); - this.imgS1.WidthRequest = 50; - this.imgS1.HeightRequest = 50; - this.imgS1.Name = "imgS1"; - this.tbUI.Add(this.imgS1); - global::Gtk.Table.TableChild w566 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); - w566.TopAttach = ((uint)(11)); - w566.BottomAttach = ((uint)(12)); - w566.LeftAttach = ((uint)(12)); - w566.RightAttach = ((uint)(13)); - w566.XOptions = ((global::Gtk.AttachOptions)(4)); - w566.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS10 = new global::Gtk.Image(); - this.imgS10.WidthRequest = 50; - this.imgS10.HeightRequest = 50; - this.imgS10.Name = "imgS10"; - this.tbUI.Add(this.imgS10); - global::Gtk.Table.TableChild w567 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); - w567.TopAttach = ((uint)(12)); - w567.BottomAttach = ((uint)(13)); - w567.LeftAttach = ((uint)(12)); - w567.RightAttach = ((uint)(13)); - w567.XOptions = ((global::Gtk.AttachOptions)(4)); - w567.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS11 = new global::Gtk.Image(); - this.imgS11.WidthRequest = 50; - this.imgS11.HeightRequest = 50; - this.imgS11.Name = "imgS11"; - this.tbUI.Add(this.imgS11); - global::Gtk.Table.TableChild w568 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS11])); - w568.TopAttach = ((uint)(12)); - w568.BottomAttach = ((uint)(13)); - w568.LeftAttach = ((uint)(13)); - w568.RightAttach = ((uint)(14)); - w568.XOptions = ((global::Gtk.AttachOptions)(4)); - w568.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS12 = new global::Gtk.Image(); - this.imgS12.WidthRequest = 50; - this.imgS12.HeightRequest = 50; - this.imgS12.Name = "imgS12"; - this.tbUI.Add(this.imgS12); - global::Gtk.Table.TableChild w569 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS12])); - w569.TopAttach = ((uint)(12)); - w569.BottomAttach = ((uint)(13)); - w569.LeftAttach = ((uint)(14)); - w569.RightAttach = ((uint)(15)); - w569.XOptions = ((global::Gtk.AttachOptions)(4)); - w569.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS13 = new global::Gtk.Image(); - this.imgS13.WidthRequest = 50; - this.imgS13.HeightRequest = 50; - this.imgS13.Name = "imgS13"; - this.tbUI.Add(this.imgS13); - global::Gtk.Table.TableChild w570 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS13])); - w570.TopAttach = ((uint)(12)); - w570.BottomAttach = ((uint)(13)); - w570.LeftAttach = ((uint)(15)); - w570.RightAttach = ((uint)(16)); - w570.XOptions = ((global::Gtk.AttachOptions)(4)); - w570.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS14 = new global::Gtk.Image(); - this.imgS14.WidthRequest = 50; - this.imgS14.HeightRequest = 50; - this.imgS14.Name = "imgS14"; - this.tbUI.Add(this.imgS14); - global::Gtk.Table.TableChild w571 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS14])); - w571.TopAttach = ((uint)(12)); - w571.BottomAttach = ((uint)(13)); - w571.LeftAttach = ((uint)(16)); - w571.RightAttach = ((uint)(17)); - w571.XOptions = ((global::Gtk.AttachOptions)(4)); - w571.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS15 = new global::Gtk.Image(); - this.imgS15.WidthRequest = 50; - this.imgS15.HeightRequest = 50; - this.imgS15.Name = "imgS15"; - this.tbUI.Add(this.imgS15); - global::Gtk.Table.TableChild w572 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS15])); - w572.TopAttach = ((uint)(12)); - w572.BottomAttach = ((uint)(13)); - w572.LeftAttach = ((uint)(17)); - w572.RightAttach = ((uint)(18)); - w572.XOptions = ((global::Gtk.AttachOptions)(4)); - w572.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS16 = new global::Gtk.Image(); - this.imgS16.WidthRequest = 50; - this.imgS16.HeightRequest = 50; - this.imgS16.Name = "imgS16"; - this.tbUI.Add(this.imgS16); - global::Gtk.Table.TableChild w573 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS16])); - w573.TopAttach = ((uint)(12)); - w573.BottomAttach = ((uint)(13)); - w573.LeftAttach = ((uint)(18)); - w573.RightAttach = ((uint)(19)); - w573.XOptions = ((global::Gtk.AttachOptions)(4)); - w573.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS17 = new global::Gtk.Image(); - this.imgS17.WidthRequest = 50; - this.imgS17.HeightRequest = 50; - this.imgS17.Name = "imgS17"; - this.tbUI.Add(this.imgS17); - global::Gtk.Table.TableChild w574 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS17])); - w574.TopAttach = ((uint)(12)); - w574.BottomAttach = ((uint)(13)); - w574.LeftAttach = ((uint)(19)); - w574.RightAttach = ((uint)(20)); - w574.XOptions = ((global::Gtk.AttachOptions)(4)); - w574.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS18 = new global::Gtk.Image(); - this.imgS18.WidthRequest = 50; - this.imgS18.HeightRequest = 50; - this.imgS18.Name = "imgS18"; - this.tbUI.Add(this.imgS18); - global::Gtk.Table.TableChild w575 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS18])); - w575.TopAttach = ((uint)(12)); - w575.BottomAttach = ((uint)(13)); - w575.LeftAttach = ((uint)(20)); - w575.RightAttach = ((uint)(21)); - w575.XOptions = ((global::Gtk.AttachOptions)(4)); - w575.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS2 = new global::Gtk.Image(); - this.imgS2.WidthRequest = 50; - this.imgS2.HeightRequest = 50; - this.imgS2.Name = "imgS2"; - this.tbUI.Add(this.imgS2); - global::Gtk.Table.TableChild w576 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); - w576.TopAttach = ((uint)(11)); - w576.BottomAttach = ((uint)(12)); - w576.LeftAttach = ((uint)(13)); - w576.RightAttach = ((uint)(14)); - w576.XOptions = ((global::Gtk.AttachOptions)(4)); - w576.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS3 = new global::Gtk.Image(); - this.imgS3.WidthRequest = 50; - this.imgS3.HeightRequest = 50; - this.imgS3.Name = "imgS3"; - this.tbUI.Add(this.imgS3); - global::Gtk.Table.TableChild w577 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); - w577.TopAttach = ((uint)(11)); - w577.BottomAttach = ((uint)(12)); - w577.LeftAttach = ((uint)(14)); - w577.RightAttach = ((uint)(15)); - w577.XOptions = ((global::Gtk.AttachOptions)(4)); - w577.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS4 = new global::Gtk.Image(); - this.imgS4.WidthRequest = 50; - this.imgS4.HeightRequest = 50; - this.imgS4.Name = "imgS4"; - this.tbUI.Add(this.imgS4); - global::Gtk.Table.TableChild w578 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); - w578.TopAttach = ((uint)(11)); - w578.BottomAttach = ((uint)(12)); - w578.LeftAttach = ((uint)(15)); - w578.RightAttach = ((uint)(16)); - w578.XOptions = ((global::Gtk.AttachOptions)(4)); - w578.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS5 = new global::Gtk.Image(); - this.imgS5.WidthRequest = 50; - this.imgS5.HeightRequest = 50; - this.imgS5.Name = "imgS5"; - this.tbUI.Add(this.imgS5); - global::Gtk.Table.TableChild w579 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); - w579.TopAttach = ((uint)(11)); - w579.BottomAttach = ((uint)(12)); - w579.LeftAttach = ((uint)(16)); - w579.RightAttach = ((uint)(17)); - w579.XOptions = ((global::Gtk.AttachOptions)(4)); - w579.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS6 = new global::Gtk.Image(); - this.imgS6.WidthRequest = 50; - this.imgS6.HeightRequest = 50; - this.imgS6.Name = "imgS6"; - this.tbUI.Add(this.imgS6); - global::Gtk.Table.TableChild w580 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); - w580.TopAttach = ((uint)(11)); - w580.BottomAttach = ((uint)(12)); - w580.LeftAttach = ((uint)(17)); - w580.RightAttach = ((uint)(18)); - w580.XOptions = ((global::Gtk.AttachOptions)(4)); - w580.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS7 = new global::Gtk.Image(); - this.imgS7.WidthRequest = 50; - this.imgS7.HeightRequest = 50; - this.imgS7.Name = "imgS7"; - this.tbUI.Add(this.imgS7); - global::Gtk.Table.TableChild w581 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); - w581.TopAttach = ((uint)(11)); - w581.BottomAttach = ((uint)(12)); - w581.LeftAttach = ((uint)(18)); - w581.RightAttach = ((uint)(19)); - w581.XOptions = ((global::Gtk.AttachOptions)(4)); - w581.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS8 = new global::Gtk.Image(); - this.imgS8.WidthRequest = 50; - this.imgS8.HeightRequest = 50; - this.imgS8.Name = "imgS8"; - this.tbUI.Add(this.imgS8); - global::Gtk.Table.TableChild w582 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); - w582.TopAttach = ((uint)(11)); - w582.BottomAttach = ((uint)(12)); - w582.LeftAttach = ((uint)(19)); - w582.RightAttach = ((uint)(20)); - w582.XOptions = ((global::Gtk.AttachOptions)(4)); - w582.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS9 = new global::Gtk.Image(); - this.imgS9.WidthRequest = 50; - this.imgS9.HeightRequest = 50; - this.imgS9.Name = "imgS9"; - this.tbUI.Add(this.imgS9); - global::Gtk.Table.TableChild w583 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); - w583.TopAttach = ((uint)(11)); - w583.BottomAttach = ((uint)(12)); - w583.LeftAttach = ((uint)(20)); - w583.RightAttach = ((uint)(21)); - w583.XOptions = ((global::Gtk.AttachOptions)(4)); - w583.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblAccessories = new global::Gtk.Label(); - this.lblAccessories.HeightRequest = 50; - this.lblAccessories.Name = "lblAccessories"; - this.lblAccessories.LabelProp = "Accessories"; - this.lblAccessories.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblAccessories); - global::Gtk.Table.TableChild w584 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); - w584.TopAttach = ((uint)(12)); - w584.BottomAttach = ((uint)(13)); - w584.LeftAttach = ((uint)(23)); - w584.RightAttach = ((uint)(32)); - w584.XOptions = ((global::Gtk.AttachOptions)(4)); - w584.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank1 = new global::Gtk.Label(); - this.lblBlank1.WidthRequest = 50; - this.lblBlank1.HeightRequest = 10; - this.lblBlank1.Name = "lblBlank1"; - this.tbUI.Add(this.lblBlank1); - global::Gtk.Table.TableChild w585 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); - w585.LeftAttach = ((uint)(16)); - w585.RightAttach = ((uint)(17)); - w585.XOptions = ((global::Gtk.AttachOptions)(4)); - w585.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank2 = new global::Gtk.Label(); - this.lblBlank2.WidthRequest = 10; - this.lblBlank2.HeightRequest = 50; - this.lblBlank2.Name = "lblBlank2"; - this.tbUI.Add(this.lblBlank2); - global::Gtk.Table.TableChild w586 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); - w586.TopAttach = ((uint)(4)); - w586.BottomAttach = ((uint)(5)); - w586.XOptions = ((global::Gtk.AttachOptions)(4)); - w586.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank3 = new global::Gtk.Label(); - this.lblBlank3.WidthRequest = 50; - this.lblBlank3.HeightRequest = 50; - this.lblBlank3.Name = "lblBlank3"; - this.tbUI.Add(this.lblBlank3); - global::Gtk.Table.TableChild w587 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); - w587.TopAttach = ((uint)(10)); - w587.BottomAttach = ((uint)(11)); - w587.LeftAttach = ((uint)(16)); - w587.RightAttach = ((uint)(17)); - w587.XOptions = ((global::Gtk.AttachOptions)(4)); - w587.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank4 = new global::Gtk.Label(); - this.lblBlank4.WidthRequest = 10; - this.lblBlank4.HeightRequest = 50; - this.lblBlank4.Name = "lblBlank4"; - this.tbUI.Add(this.lblBlank4); - global::Gtk.Table.TableChild w588 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); - w588.TopAttach = ((uint)(4)); - w588.BottomAttach = ((uint)(5)); - w588.LeftAttach = ((uint)(10)); - w588.RightAttach = ((uint)(11)); - w588.XOptions = ((global::Gtk.AttachOptions)(4)); - w588.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank5 = new global::Gtk.Label(); - this.lblBlank5.WidthRequest = 10; - this.lblBlank5.HeightRequest = 50; - this.lblBlank5.Name = "lblBlank5"; - this.tbUI.Add(this.lblBlank5); - global::Gtk.Table.TableChild w589 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); - w589.TopAttach = ((uint)(4)); - w589.BottomAttach = ((uint)(5)); - w589.LeftAttach = ((uint)(22)); - w589.RightAttach = ((uint)(23)); - w589.XOptions = ((global::Gtk.AttachOptions)(4)); - w589.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank6 = new global::Gtk.Label(); - this.lblBlank6.WidthRequest = 10; - this.lblBlank6.HeightRequest = 50; - this.lblBlank6.Name = "lblBlank6"; - this.tbUI.Add(this.lblBlank6); - global::Gtk.Table.TableChild w590 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank6])); - w590.TopAttach = ((uint)(4)); - w590.BottomAttach = ((uint)(5)); - w590.LeftAttach = ((uint)(32)); - w590.RightAttach = ((uint)(33)); - w590.XOptions = ((global::Gtk.AttachOptions)(4)); - w590.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank8 = new global::Gtk.Label(); - this.lblBlank8.WidthRequest = 50; - this.lblBlank8.HeightRequest = 10; - this.lblBlank8.Name = "lblBlank8"; - this.tbUI.Add(this.lblBlank8); - global::Gtk.Table.TableChild w591 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); - w591.TopAttach = ((uint)(24)); - w591.BottomAttach = ((uint)(25)); - w591.LeftAttach = ((uint)(16)); - w591.RightAttach = ((uint)(17)); - w591.XOptions = ((global::Gtk.AttachOptions)(4)); - w591.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblCoord1 = new global::Gtk.Label(); - this.lblCoord1.WidthRequest = 50; - this.lblCoord1.HeightRequest = 50; - this.lblCoord1.Name = "lblCoord1"; - this.lblCoord1.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblCoord1); - global::Gtk.Table.TableChild w592 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); - w592.TopAttach = ((uint)(11)); - w592.BottomAttach = ((uint)(12)); - w592.LeftAttach = ((uint)(8)); - w592.RightAttach = ((uint)(9)); - w592.XOptions = ((global::Gtk.AttachOptions)(4)); - w592.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblCoord2 = new global::Gtk.Label(); - this.lblCoord2.WidthRequest = 50; - this.lblCoord2.HeightRequest = 50; - this.lblCoord2.Name = "lblCoord2"; - this.lblCoord2.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblCoord2); - global::Gtk.Table.TableChild w593 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); - w593.TopAttach = ((uint)(11)); - w593.BottomAttach = ((uint)(12)); - w593.LeftAttach = ((uint)(9)); - w593.RightAttach = ((uint)(10)); - w593.XOptions = ((global::Gtk.AttachOptions)(4)); - w593.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblGear = new global::Gtk.Label(); - this.lblGear.HeightRequest = 50; - this.lblGear.Name = "lblGear"; - this.lblGear.LabelProp = "Gear"; - this.lblGear.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblGear); - global::Gtk.Table.TableChild w594 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); - w594.TopAttach = ((uint)(15)); - w594.BottomAttach = ((uint)(16)); - w594.LeftAttach = ((uint)(23)); - w594.RightAttach = ((uint)(32)); - w594.XOptions = ((global::Gtk.AttachOptions)(4)); - w594.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblGroundLayer = new global::Gtk.Label(); - this.lblGroundLayer.WidthRequest = 450; - this.lblGroundLayer.HeightRequest = 50; - this.lblGroundLayer.Name = "lblGroundLayer"; - this.lblGroundLayer.LabelProp = "Ground Layer"; - this.tbUI.Add(this.lblGroundLayer); - global::Gtk.Table.TableChild w595 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); - w595.TopAttach = ((uint)(1)); - w595.BottomAttach = ((uint)(2)); - w595.LeftAttach = ((uint)(1)); - w595.RightAttach = ((uint)(10)); - w595.XOptions = ((global::Gtk.AttachOptions)(4)); - w595.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblHoleMsg = new global::Gtk.Label(); - this.lblHoleMsg.WidthRequest = 400; - this.lblHoleMsg.HeightRequest = 50; - this.lblHoleMsg.Name = "lblHoleMsg"; - this.lblHoleMsg.LabelProp = "There is a hole above player:"; - this.lblHoleMsg.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblHoleMsg); - global::Gtk.Table.TableChild w596 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleMsg])); - w596.TopAttach = ((uint)(23)); - w596.BottomAttach = ((uint)(24)); - w596.LeftAttach = ((uint)(1)); - w596.RightAttach = ((uint)(9)); - w596.XOptions = ((global::Gtk.AttachOptions)(4)); - w596.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblHoleOnTop = new global::Gtk.Label(); - this.lblHoleOnTop.WidthRequest = 50; - this.lblHoleOnTop.HeightRequest = 50; - this.lblHoleOnTop.Name = "lblHoleOnTop"; - this.lblHoleOnTop.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblHoleOnTop); - global::Gtk.Table.TableChild w597 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleOnTop])); - w597.TopAttach = ((uint)(23)); - w597.BottomAttach = ((uint)(24)); - w597.LeftAttach = ((uint)(9)); - w597.RightAttach = ((uint)(10)); - w597.XOptions = ((global::Gtk.AttachOptions)(4)); - w597.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblHotbar = new global::Gtk.Label(); - this.lblHotbar.WidthRequest = 50; - this.lblHotbar.HeightRequest = 25; - this.lblHotbar.Name = "lblHotbar"; - this.lblHotbar.LabelProp = "Hotbar"; - this.tbUI.Add(this.lblHotbar); - global::Gtk.Table.TableChild w598 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); - w598.TopAttach = ((uint)(13)); - w598.BottomAttach = ((uint)(14)); - w598.LeftAttach = ((uint)(12)); - w598.RightAttach = ((uint)(21)); - w598.XOptions = ((global::Gtk.AttachOptions)(4)); - w598.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblInfo = new global::Gtk.Label(); - this.lblInfo.WidthRequest = 250; - this.lblInfo.HeightRequest = 50; - this.lblInfo.Name = "lblInfo"; - this.lblInfo.Wrap = true; - this.lblInfo.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblInfo); - global::Gtk.Table.TableChild w599 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); - w599.TopAttach = ((uint)(23)); - w599.BottomAttach = ((uint)(24)); - w599.LeftAttach = ((uint)(23)); - w599.RightAttach = ((uint)(32)); - w599.XOptions = ((global::Gtk.AttachOptions)(4)); - w599.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblItemLayer = new global::Gtk.Label(); - this.lblItemLayer.HeightRequest = 50; - this.lblItemLayer.Name = "lblItemLayer"; - this.lblItemLayer.LabelProp = "Structure Layer"; - this.tbUI.Add(this.lblItemLayer); - global::Gtk.Table.TableChild w600 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); - w600.TopAttach = ((uint)(13)); - w600.BottomAttach = ((uint)(14)); - w600.LeftAttach = ((uint)(1)); - w600.RightAttach = ((uint)(10)); - w600.XOptions = ((global::Gtk.AttachOptions)(4)); - w600.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog1 = new global::Gtk.Label(); - this.lblLog1.WidthRequest = 450; - this.lblLog1.HeightRequest = 50; - this.lblLog1.Name = "lblLog1"; - this.tbUI.Add(this.lblLog1); - global::Gtk.Table.TableChild w601 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); - w601.TopAttach = ((uint)(16)); - w601.BottomAttach = ((uint)(17)); - w601.LeftAttach = ((uint)(12)); - w601.RightAttach = ((uint)(21)); - w601.XOptions = ((global::Gtk.AttachOptions)(4)); - w601.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog2 = new global::Gtk.Label(); - this.lblLog2.WidthRequest = 450; - this.lblLog2.HeightRequest = 50; - this.lblLog2.Name = "lblLog2"; - this.tbUI.Add(this.lblLog2); - global::Gtk.Table.TableChild w602 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); - w602.TopAttach = ((uint)(17)); - w602.BottomAttach = ((uint)(18)); - w602.LeftAttach = ((uint)(12)); - w602.RightAttach = ((uint)(21)); - w602.XOptions = ((global::Gtk.AttachOptions)(4)); - w602.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog3 = new global::Gtk.Label(); - this.lblLog3.WidthRequest = 450; - this.lblLog3.HeightRequest = 50; - this.lblLog3.Name = "lblLog3"; - this.tbUI.Add(this.lblLog3); - global::Gtk.Table.TableChild w603 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); - w603.TopAttach = ((uint)(18)); - w603.BottomAttach = ((uint)(19)); - w603.LeftAttach = ((uint)(12)); - w603.RightAttach = ((uint)(21)); - w603.XOptions = ((global::Gtk.AttachOptions)(4)); - w603.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog4 = new global::Gtk.Label(); - this.lblLog4.WidthRequest = 450; - this.lblLog4.HeightRequest = 50; - this.lblLog4.Name = "lblLog4"; - this.tbUI.Add(this.lblLog4); - global::Gtk.Table.TableChild w604 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); - w604.TopAttach = ((uint)(19)); - w604.BottomAttach = ((uint)(20)); - w604.LeftAttach = ((uint)(12)); - w604.RightAttach = ((uint)(21)); - w604.XOptions = ((global::Gtk.AttachOptions)(4)); - w604.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog5 = new global::Gtk.Label(); - this.lblLog5.WidthRequest = 450; - this.lblLog5.HeightRequest = 50; - this.lblLog5.Name = "lblLog5"; - this.tbUI.Add(this.lblLog5); - global::Gtk.Table.TableChild w605 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog5])); - w605.TopAttach = ((uint)(20)); - w605.BottomAttach = ((uint)(21)); - w605.LeftAttach = ((uint)(12)); - w605.RightAttach = ((uint)(21)); - w605.XOptions = ((global::Gtk.AttachOptions)(4)); - w605.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog6 = new global::Gtk.Label(); - this.lblLog6.WidthRequest = 450; - this.lblLog6.HeightRequest = 50; - this.lblLog6.Name = "lblLog6"; - this.tbUI.Add(this.lblLog6); - global::Gtk.Table.TableChild w606 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog6])); - w606.TopAttach = ((uint)(21)); - w606.BottomAttach = ((uint)(22)); - w606.LeftAttach = ((uint)(12)); - w606.RightAttach = ((uint)(21)); - w606.XOptions = ((global::Gtk.AttachOptions)(4)); - w606.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog7 = new global::Gtk.Label(); - this.lblLog7.WidthRequest = 450; - this.lblLog7.HeightRequest = 50; - this.lblLog7.Name = "lblLog7"; - this.tbUI.Add(this.lblLog7); - global::Gtk.Table.TableChild w607 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog7])); - w607.TopAttach = ((uint)(22)); - w607.BottomAttach = ((uint)(23)); - w607.LeftAttach = ((uint)(12)); - w607.RightAttach = ((uint)(21)); - w607.XOptions = ((global::Gtk.AttachOptions)(4)); - w607.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog8 = new global::Gtk.Label(); - this.lblLog8.WidthRequest = 450; - this.lblLog8.HeightRequest = 50; - this.lblLog8.Name = "lblLog8"; - this.tbUI.Add(this.lblLog8); - global::Gtk.Table.TableChild w608 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog8])); - w608.TopAttach = ((uint)(23)); - w608.BottomAttach = ((uint)(24)); - w608.LeftAttach = ((uint)(12)); - w608.RightAttach = ((uint)(21)); - w608.XOptions = ((global::Gtk.AttachOptions)(4)); - w608.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblSuperLayer = new global::Gtk.Label(); - this.lblSuperLayer.WidthRequest = 100; - this.lblSuperLayer.HeightRequest = 50; - this.lblSuperLayer.Name = "lblSuperLayer"; - this.lblSuperLayer.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblSuperLayer); - global::Gtk.Table.TableChild w609 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblSuperLayer])); - w609.TopAttach = ((uint)(11)); - w609.BottomAttach = ((uint)(12)); - w609.LeftAttach = ((uint)(1)); - w609.RightAttach = ((uint)(5)); - w609.XOptions = ((global::Gtk.AttachOptions)(4)); - w609.YOptions = ((global::Gtk.AttachOptions)(4)); - this.Add(this.tbUI); - if ((this.Child != null)) - { - this.Child.ShowAll(); - } - this.DefaultWidth = 1690; - this.DefaultHeight = 1170; - this.Show(); - this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent); - this.btnPause.Clicked += new global::System.EventHandler(this.OnBtnPauseClicked); - this.btnP9.Clicked += new global::System.EventHandler(this.OnBtnP9Clicked); - this.btnP81.Clicked += new global::System.EventHandler(this.OnBtnP81Clicked); - this.btnP80.Clicked += new global::System.EventHandler(this.OnBtnP80Clicked); - this.btnP8.Clicked += new global::System.EventHandler(this.OnBtnP8Clicked); - this.btnP79.Clicked += new global::System.EventHandler(this.OnBtnP79Clicked); - this.btnP78.Clicked += new global::System.EventHandler(this.OnBtnP78Clicked); - this.btnP77.Clicked += new global::System.EventHandler(this.OnBtnP77Clicked); - this.btnP76.Clicked += new global::System.EventHandler(this.OnBtnP76Clicked); - this.btnP75.Clicked += new global::System.EventHandler(this.OnBtnP75Clicked); - this.btnP74.Clicked += new global::System.EventHandler(this.OnBtnP74Clicked); - this.btnP73.Clicked += new global::System.EventHandler(this.OnBtnP73Clicked); - this.btnP72.Clicked += new global::System.EventHandler(this.OnBtnP72Clicked); - this.btnP71.Clicked += new global::System.EventHandler(this.OnBtnP71Clicked); - this.btnP70.Clicked += new global::System.EventHandler(this.OnBtnP70Clicked); - this.btnP7.Clicked += new global::System.EventHandler(this.OnBtnP7Clicked); - this.btnP69.Clicked += new global::System.EventHandler(this.OnBtnP69Clicked); - this.btnP68.Clicked += new global::System.EventHandler(this.OnBtnP68Clicked); - this.btnP67.Clicked += new global::System.EventHandler(this.OnBtnP67Clicked); - this.btnP66.Clicked += new global::System.EventHandler(this.OnBtnP66Clicked); - this.btnP65.Clicked += new global::System.EventHandler(this.OnBtnP65Clicked); - this.btnP64.Clicked += new global::System.EventHandler(this.OnBtnP64Clicked); - this.btnP63.Clicked += new global::System.EventHandler(this.OnBtnP63Clicked); - this.btnP62.Clicked += new global::System.EventHandler(this.OnBtnP62Clicked); - this.btnP61.Clicked += new global::System.EventHandler(this.OnBtnP61Clicked); - this.btnP60.Clicked += new global::System.EventHandler(this.OnBtnP60Clicked); - this.btnP6.Clicked += new global::System.EventHandler(this.OnBtnP6Clicked); - this.btnP59.Clicked += new global::System.EventHandler(this.OnBtnP59Clicked); - this.btnP58.Clicked += new global::System.EventHandler(this.OnBtnP58Clicked); - this.btnP57.Clicked += new global::System.EventHandler(this.OnBtnP57Clicked); - this.btnP56.Clicked += new global::System.EventHandler(this.OnBtnP56Clicked); - this.btnP55.Clicked += new global::System.EventHandler(this.OnBtnP55Clicked); - this.btnP54.Clicked += new global::System.EventHandler(this.OnBtnP54Clicked); - this.btnP53.Clicked += new global::System.EventHandler(this.OnBtnP53Clicked); - this.btnP52.Clicked += new global::System.EventHandler(this.OnBtnP52Clicked); - this.btnP51.Clicked += new global::System.EventHandler(this.OnBtnP51Clicked); - this.btnP50.Clicked += new global::System.EventHandler(this.OnBtnP50Clicked); - this.btnP5.Clicked += new global::System.EventHandler(this.OnBtnP5Clicked); - this.btnP49.Clicked += new global::System.EventHandler(this.OnBtnP49Clicked); - this.btnP48.Clicked += new global::System.EventHandler(this.OnBtnP48Clicked); - this.btnP47.Clicked += new global::System.EventHandler(this.OnBtnP47Clicked); - this.btnP46.Clicked += new global::System.EventHandler(this.OnBtnP46Clicked); - this.btnP45.Clicked += new global::System.EventHandler(this.OnBtnP45Clicked); - this.btnP44.Clicked += new global::System.EventHandler(this.OnBtnP44Clicked); - this.btnP43.Clicked += new global::System.EventHandler(this.OnBtnP43Clicked); - this.btnP42.Clicked += new global::System.EventHandler(this.OnBtnP42Clicked); - this.btnP41.Clicked += new global::System.EventHandler(this.OnBtnP41Clicked); - this.btnP40.Clicked += new global::System.EventHandler(this.OnBtnP40Clicked); - this.btnP4.Clicked += new global::System.EventHandler(this.OnBtnP4Clicked); - this.btnP39.Clicked += new global::System.EventHandler(this.OnBtnP39Clicked); - this.btnP38.Clicked += new global::System.EventHandler(this.OnBtnP38Clicked); - this.btnP37.Clicked += new global::System.EventHandler(this.OnBtnP37Clicked); - this.btnP36.Clicked += new global::System.EventHandler(this.OnBtnP36Clicked); - this.btnP35.Clicked += new global::System.EventHandler(this.OnBtnP35Clicked); - this.btnP34.Clicked += new global::System.EventHandler(this.OnBtnP34Clicked); - this.btnP33.Clicked += new global::System.EventHandler(this.OnBtnP33Clicked); - this.btnP32.Clicked += new global::System.EventHandler(this.OnBtnP32Clicked); - this.btnP31.Clicked += new global::System.EventHandler(this.OnBtnP31Clicked); - this.btnP30.Clicked += new global::System.EventHandler(this.OnBtnP30Clicked); - this.btnP3.Clicked += new global::System.EventHandler(this.OnBtnP3Clicked); - this.btnP29.Clicked += new global::System.EventHandler(this.OnBtnP29Clicked); - this.btnP28.Clicked += new global::System.EventHandler(this.OnBtnP28Clicked); - this.btnP27.Clicked += new global::System.EventHandler(this.OnBtnP27Clicked); - this.btnP26.Clicked += new global::System.EventHandler(this.OnBtnP26Clicked); - this.btnP25.Clicked += new global::System.EventHandler(this.OnBtnP25Clicked); - this.btnP24.Clicked += new global::System.EventHandler(this.OnBtnP24Clicked); - this.btnP23.Clicked += new global::System.EventHandler(this.OnBtnP23Clicked); - this.btnP22.Clicked += new global::System.EventHandler(this.OnBtnP22Clicked); - this.btnP21.Clicked += new global::System.EventHandler(this.OnBtnP21Clicked); - this.btnP20.Clicked += new global::System.EventHandler(this.OnBtnP20Clicked); - this.btnP2.Clicked += new global::System.EventHandler(this.OnBtnP2Clicked); - this.btnP19.Clicked += new global::System.EventHandler(this.OnBtnP19Clicked); - this.btnP18.Clicked += new global::System.EventHandler(this.OnBtnP18Clicked); - this.btnP17.Clicked += new global::System.EventHandler(this.OnBtnP17Clicked); - this.btnP16.Clicked += new global::System.EventHandler(this.OnBtnP16Clicked); - this.btnP15.Clicked += new global::System.EventHandler(this.OnBtnP15Clicked); - this.btnP14.Clicked += new global::System.EventHandler(this.OnBtnP14Clicked); - this.btnP13.Clicked += new global::System.EventHandler(this.OnBtnP13Clicked); - this.btnP12.Clicked += new global::System.EventHandler(this.OnBtnP12Clicked); - this.btnP11.Clicked += new global::System.EventHandler(this.OnBtnP11Clicked); - this.btnP10.Clicked += new global::System.EventHandler(this.OnBtnP10Clicked); - this.btnP1.Clicked += new global::System.EventHandler(this.OnBtnP1Clicked); - this.btnMusic.Clicked += new global::System.EventHandler(this.OnBtnMusicClicked); - this.btnMap.Clicked += new global::System.EventHandler(this.OnBtnMapClicked); - this.btnLog.Clicked += new global::System.EventHandler(this.OnBtnLogClicked); - this.btnInv.Clicked += new global::System.EventHandler(this.OnBtnInvClicked); - this.btnI9.Clicked += new global::System.EventHandler(this.OnBtnI9Clicked); - this.btnI81.Clicked += new global::System.EventHandler(this.OnBtnI81Clicked); - this.btnI80.Clicked += new global::System.EventHandler(this.OnBtnI80Clicked); - this.btnI8.Clicked += new global::System.EventHandler(this.OnBtnI8Clicked); - this.btnI79.Clicked += new global::System.EventHandler(this.OnBtnI79Clicked); - this.btnI78.Clicked += new global::System.EventHandler(this.OnBtnI78Clicked); - this.btnI77.Clicked += new global::System.EventHandler(this.OnBtnI77Clicked); - this.btnI76.Clicked += new global::System.EventHandler(this.OnBtnI76Clicked); - this.btnI75.Clicked += new global::System.EventHandler(this.OnBtnI75Clicked); - this.btnI74.Clicked += new global::System.EventHandler(this.OnBtnI74Clicked); - this.btnI73.Clicked += new global::System.EventHandler(this.OnBtnI73Clicked); - this.btnI72.Clicked += new global::System.EventHandler(this.OnBtnI72Clicked); - this.btnI71.Clicked += new global::System.EventHandler(this.OnBtnI71Clicked); - this.btnI70.Clicked += new global::System.EventHandler(this.OnBtnI70Clicked); - this.btnI7.Clicked += new global::System.EventHandler(this.OnBtnI7Clicked); - this.btnI69.Clicked += new global::System.EventHandler(this.OnBtnI69Clicked); - this.btnI68.Clicked += new global::System.EventHandler(this.OnBtnI68Clicked); - this.btnI67.Clicked += new global::System.EventHandler(this.OnBtnI67Clicked); - this.btnI66.Clicked += new global::System.EventHandler(this.OnBtnI66Clicked); - this.btnI65.Clicked += new global::System.EventHandler(this.OnBtnI65Clicked); - this.btnI64.Clicked += new global::System.EventHandler(this.OnBtnI64Clicked); - this.btnI63.Clicked += new global::System.EventHandler(this.OnBtnI63Clicked); - this.btnI62.Clicked += new global::System.EventHandler(this.OnBtnI62Clicked); - this.btnI61.Clicked += new global::System.EventHandler(this.OnBtnI61Clicked); - this.btnI60.Clicked += new global::System.EventHandler(this.OnBtnI60Clicked); - this.btnI6.Clicked += new global::System.EventHandler(this.OnBtnI6Clicked); - this.btnI59.Clicked += new global::System.EventHandler(this.OnBtnI59Clicked); - this.btnI58.Clicked += new global::System.EventHandler(this.OnBtnI58Clicked); - this.btnI57.Clicked += new global::System.EventHandler(this.OnBtnI57Clicked); - this.btnI56.Clicked += new global::System.EventHandler(this.OnBtnI56Clicked); - this.btnI55.Clicked += new global::System.EventHandler(this.OnBtnI55Clicked); - this.btnI54.Clicked += new global::System.EventHandler(this.OnBtnI54Clicked); - this.btnI53.Clicked += new global::System.EventHandler(this.OnBtnI53Clicked); - this.btnI52.Clicked += new global::System.EventHandler(this.OnBtnI52Clicked); - this.btnI51.Clicked += new global::System.EventHandler(this.OnBtnI51Clicked); - this.btnI50.Clicked += new global::System.EventHandler(this.OnBtnI50Clicked); - this.btnI5.Clicked += new global::System.EventHandler(this.OnBtnI5Clicked); - this.btnI49.Clicked += new global::System.EventHandler(this.OnBtnI49Clicked); - this.btnI48.Clicked += new global::System.EventHandler(this.OnBtnI48Clicked); - this.btnI47.Clicked += new global::System.EventHandler(this.OnBtnI47Clicked); - this.btnI46.Clicked += new global::System.EventHandler(this.OnBtnI46Clicked); - this.btnI45.Clicked += new global::System.EventHandler(this.OnBtnI45Clicked); - this.btnI44.Clicked += new global::System.EventHandler(this.OnBtnI44Clicked); - this.btnI43.Clicked += new global::System.EventHandler(this.OnBtnI43Clicked); - this.btnI42.Clicked += new global::System.EventHandler(this.OnBtnI42Clicked); - this.btnI41.Clicked += new global::System.EventHandler(this.OnBtnI41Clicked); - this.btnI40.Clicked += new global::System.EventHandler(this.OnBtnI40Clicked); - this.btnI4.Clicked += new global::System.EventHandler(this.OnBtnI4Clicked); - this.btnI39.Clicked += new global::System.EventHandler(this.OnBtnI39Clicked); - this.btnI38.Clicked += new global::System.EventHandler(this.OnBtnI38Clicked); - this.btnI37.Clicked += new global::System.EventHandler(this.OnBtnI37Clicked); - this.btnI36.Clicked += new global::System.EventHandler(this.OnBtnI36Clicked); - this.btnI35.Clicked += new global::System.EventHandler(this.OnBtnI35Clicked); - this.btnI34.Clicked += new global::System.EventHandler(this.OnBtnI34Clicked); - this.btnI33.Clicked += new global::System.EventHandler(this.OnBtnI33Clicked); - this.btnI32.Clicked += new global::System.EventHandler(this.OnBtnI32Clicked); - this.btnI31.Clicked += new global::System.EventHandler(this.OnBtnI31Clicked); - this.btnI30.Clicked += new global::System.EventHandler(this.OnBtnI30Clicked); - this.btnI3.Clicked += new global::System.EventHandler(this.OnBtnI3Clicked); - this.btnI29.Clicked += new global::System.EventHandler(this.OnBtnI29Clicked); - this.btnI28.Clicked += new global::System.EventHandler(this.OnBtnI28Clicked); - this.btnI27.Clicked += new global::System.EventHandler(this.OnBtnI27Clicked); - this.btnI26.Clicked += new global::System.EventHandler(this.OnBtnI26Clicked); - this.btnI25.Clicked += new global::System.EventHandler(this.OnBtnI25Clicked); - this.btnI24.Clicked += new global::System.EventHandler(this.OnBtnI24Clicked); - this.btnI23.Clicked += new global::System.EventHandler(this.OnBtnI23Clicked); - this.btnI22.Clicked += new global::System.EventHandler(this.OnBtnI22Clicked); - this.btnI21.Clicked += new global::System.EventHandler(this.OnBtnI21Clicked); - this.btnI20.Clicked += new global::System.EventHandler(this.OnBtnI20Clicked); - this.btnI2.Clicked += new global::System.EventHandler(this.OnBtnI2Clicked); - this.btnI19.Clicked += new global::System.EventHandler(this.OnBtnI19Clicked); - this.btnI18.Clicked += new global::System.EventHandler(this.OnBtnI18Clicked); - this.btnI17.Clicked += new global::System.EventHandler(this.OnBtnI17Clicked); - this.btnI16.Clicked += new global::System.EventHandler(this.OnBtnI16Clicked); - this.btnI15.Clicked += new global::System.EventHandler(this.OnBtnI15Clicked); - this.btnI14.Clicked += new global::System.EventHandler(this.OnBtnI14Clicked); - this.btnI13.Clicked += new global::System.EventHandler(this.OnBtnI13Clicked); - this.btnI12.Clicked += new global::System.EventHandler(this.OnBtnI12Clicked); - this.btnI11.Clicked += new global::System.EventHandler(this.OnBtnI11Clicked); - this.btnI10.Clicked += new global::System.EventHandler(this.OnBtnI10Clicked); - this.btnI1.Clicked += new global::System.EventHandler(this.OnBtnI1Clicked); - this.btnH9.Clicked += new global::System.EventHandler(this.OnBtnH9Clicked); - this.btnH8.Clicked += new global::System.EventHandler(this.OnBtnH8Clicked); - this.btnH7.Clicked += new global::System.EventHandler(this.OnBtnH7Clicked); - this.btnH6.Clicked += new global::System.EventHandler(this.OnBtnH6Clicked); - this.btnH5.Clicked += new global::System.EventHandler(this.OnBtnH5Clicked); - this.btnH4.Clicked += new global::System.EventHandler(this.OnBtnH4Clicked); - this.btnH3.Clicked += new global::System.EventHandler(this.OnBtnH3Clicked); - this.btnH2.Clicked += new global::System.EventHandler(this.OnBtnH2Clicked); - this.btnH1.Clicked += new global::System.EventHandler(this.OnBtnH1Clicked); - this.btnG9.Clicked += new global::System.EventHandler(this.OnBtnG9Clicked); - this.btnG8.Clicked += new global::System.EventHandler(this.OnBtnG8Clicked); - this.btnG7.Clicked += new global::System.EventHandler(this.OnBtnG7Clicked); - this.btnG6.Clicked += new global::System.EventHandler(this.OnBtnG6Clicked); - this.btnG5.Clicked += new global::System.EventHandler(this.OnBtnG5Clicked); - this.btnG4.Clicked += new global::System.EventHandler(this.OnBtnG4Clicked); - this.btnG3.Clicked += new global::System.EventHandler(this.OnBtnG3Clicked); - this.btnG2.Clicked += new global::System.EventHandler(this.OnBtnG2Clicked); - this.btnG1.Clicked += new global::System.EventHandler(this.OnBtnG1Clicked); - this.btnCrafting.Clicked += new global::System.EventHandler(this.OnBtnCraftingClicked); - this.btnA9.Clicked += new global::System.EventHandler(this.OnBtnA9Clicked); - this.btnA8.Clicked += new global::System.EventHandler(this.OnBtnA8Clicked); - this.btnA7.Clicked += new global::System.EventHandler(this.OnBtnA7Clicked); - this.btnA6.Clicked += new global::System.EventHandler(this.OnBtnA6Clicked); - this.btnA5.Clicked += new global::System.EventHandler(this.OnBtnA5Clicked); - this.btnA4.Clicked += new global::System.EventHandler(this.OnBtnA4Clicked); - this.btnA3.Clicked += new global::System.EventHandler(this.OnBtnA3Clicked); - this.btnA2.Clicked += new global::System.EventHandler(this.OnBtnA2Clicked); - this.btnA18.Clicked += new global::System.EventHandler(this.OnBtnA18Clicked); - this.btnA17.Clicked += new global::System.EventHandler(this.OnBtnA17Clicked); - this.btnA16.Clicked += new global::System.EventHandler(this.OnBtnA16Clicked); - this.btnA15.Clicked += new global::System.EventHandler(this.OnBtnA15Clicked); - this.btnA14.Clicked += new global::System.EventHandler(this.OnBtnA14Clicked); - this.btnA13.Clicked += new global::System.EventHandler(this.OnBtnA13Clicked); - this.btnA12.Clicked += new global::System.EventHandler(this.OnBtnA12Clicked); - this.btnA11.Clicked += new global::System.EventHandler(this.OnBtnA11Clicked); - this.btnA10.Clicked += new global::System.EventHandler(this.OnBtnA10Clicked); - this.btnA1.Clicked += new global::System.EventHandler(this.OnBtnA1Clicked); - } - } -} diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.MediumGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.MediumGameWindow.cs deleted file mode 100644 index 7dac688..0000000 --- a/Mundus/gtk-gui/Mundus.Views.Windows.MediumGameWindow.cs +++ /dev/null @@ -1,4833 +0,0 @@ - -// This file has been generated by the GUI designer. Do not modify. -namespace Mundus.Views.Windows -{ - public partial class MediumGameWindow - { - private global::Gtk.Table tbUI; - - private global::Gtk.Button btnA1; - - private global::Gtk.Button btnA10; - - private global::Gtk.Button btnA11; - - private global::Gtk.Button btnA12; - - private global::Gtk.Button btnA13; - - private global::Gtk.Button btnA14; - - private global::Gtk.Button btnA2; - - private global::Gtk.Button btnA3; - - private global::Gtk.Button btnA4; - - private global::Gtk.Button btnA5; - - private global::Gtk.Button btnA6; - - private global::Gtk.Button btnA7; - - private global::Gtk.Button btnA8; - - private global::Gtk.Button btnA9; - - private global::Gtk.Button btnCrafting; - - private global::Gtk.Button btnG1; - - private global::Gtk.Button btnG2; - - private global::Gtk.Button btnG3; - - private global::Gtk.Button btnG4; - - private global::Gtk.Button btnG5; - - private global::Gtk.Button btnG6; - - private global::Gtk.Button btnG7; - - private global::Gtk.Button btnH1; - - private global::Gtk.Button btnH2; - - private global::Gtk.Button btnH3; - - private global::Gtk.Button btnH4; - - private global::Gtk.Button btnH5; - - private global::Gtk.Button btnH6; - - private global::Gtk.Button btnH7; - - private global::Gtk.Button btnI1; - - private global::Gtk.Button btnI10; - - private global::Gtk.Button btnI11; - - private global::Gtk.Button btnI12; - - private global::Gtk.Button btnI13; - - private global::Gtk.Button btnI14; - - private global::Gtk.Button btnI15; - - private global::Gtk.Button btnI16; - - private global::Gtk.Button btnI17; - - private global::Gtk.Button btnI18; - - private global::Gtk.Button btnI19; - - private global::Gtk.Button btnI2; - - private global::Gtk.Button btnI20; - - private global::Gtk.Button btnI21; - - private global::Gtk.Button btnI22; - - private global::Gtk.Button btnI23; - - private global::Gtk.Button btnI24; - - private global::Gtk.Button btnI25; - - private global::Gtk.Button btnI26; - - private global::Gtk.Button btnI27; - - private global::Gtk.Button btnI28; - - private global::Gtk.Button btnI29; - - private global::Gtk.Button btnI3; - - private global::Gtk.Button btnI30; - - private global::Gtk.Button btnI31; - - private global::Gtk.Button btnI32; - - private global::Gtk.Button btnI33; - - private global::Gtk.Button btnI34; - - private global::Gtk.Button btnI35; - - private global::Gtk.Button btnI36; - - private global::Gtk.Button btnI37; - - private global::Gtk.Button btnI38; - - private global::Gtk.Button btnI39; - - private global::Gtk.Button btnI4; - - private global::Gtk.Button btnI40; - - private global::Gtk.Button btnI41; - - private global::Gtk.Button btnI42; - - private global::Gtk.Button btnI43; - - private global::Gtk.Button btnI44; - - private global::Gtk.Button btnI45; - - private global::Gtk.Button btnI46; - - private global::Gtk.Button btnI47; - - private global::Gtk.Button btnI48; - - private global::Gtk.Button btnI49; - - private global::Gtk.Button btnI5; - - private global::Gtk.Button btnI6; - - private global::Gtk.Button btnI7; - - private global::Gtk.Button btnI8; - - private global::Gtk.Button btnI9; - - private global::Gtk.Button btnInv; - - private global::Gtk.Button btnLog; - - private global::Gtk.Button btnMap; - - private global::Gtk.Button btnMusic; - - private global::Gtk.Button btnP1; - - private global::Gtk.Button btnP10; - - private global::Gtk.Button btnP11; - - private global::Gtk.Button btnP12; - - private global::Gtk.Button btnP13; - - private global::Gtk.Button btnP14; - - private global::Gtk.Button btnP15; - - private global::Gtk.Button btnP16; - - private global::Gtk.Button btnP17; - - private global::Gtk.Button btnP18; - - private global::Gtk.Button btnP19; - - private global::Gtk.Button btnP2; - - private global::Gtk.Button btnP20; - - private global::Gtk.Button btnP21; - - private global::Gtk.Button btnP22; - - private global::Gtk.Button btnP23; - - private global::Gtk.Button btnP24; - - private global::Gtk.Button btnP25; - - private global::Gtk.Button btnP26; - - private global::Gtk.Button btnP27; - - private global::Gtk.Button btnP28; - - private global::Gtk.Button btnP29; - - private global::Gtk.Button btnP3; - - private global::Gtk.Button btnP30; - - private global::Gtk.Button btnP31; - - private global::Gtk.Button btnP32; - - private global::Gtk.Button btnP33; - - private global::Gtk.Button btnP34; - - private global::Gtk.Button btnP35; - - private global::Gtk.Button btnP36; - - private global::Gtk.Button btnP37; - - private global::Gtk.Button btnP38; - - private global::Gtk.Button btnP39; - - private global::Gtk.Button btnP4; - - private global::Gtk.Button btnP40; - - private global::Gtk.Button btnP41; - - private global::Gtk.Button btnP42; - - private global::Gtk.Button btnP43; - - private global::Gtk.Button btnP44; - - private global::Gtk.Button btnP45; - - private global::Gtk.Button btnP46; - - private global::Gtk.Button btnP47; - - private global::Gtk.Button btnP48; - - private global::Gtk.Button btnP49; - - private global::Gtk.Button btnP5; - - private global::Gtk.Button btnP6; - - private global::Gtk.Button btnP7; - - private global::Gtk.Button btnP8; - - private global::Gtk.Button btnP9; - - private global::Gtk.Button btnPause; - - private global::Gtk.Image imgG1; - - private global::Gtk.Image imgG10; - - private global::Gtk.Image imgG11; - - private global::Gtk.Image imgG12; - - private global::Gtk.Image imgG13; - - private global::Gtk.Image imgG14; - - private global::Gtk.Image imgG15; - - private global::Gtk.Image imgG16; - - private global::Gtk.Image imgG17; - - private global::Gtk.Image imgG18; - - private global::Gtk.Image imgG19; - - private global::Gtk.Image imgG2; - - private global::Gtk.Image imgG20; - - private global::Gtk.Image imgG21; - - private global::Gtk.Image imgG22; - - private global::Gtk.Image imgG23; - - private global::Gtk.Image imgG24; - - private global::Gtk.Image imgG25; - - private global::Gtk.Image imgG26; - - private global::Gtk.Image imgG27; - - private global::Gtk.Image imgG28; - - private global::Gtk.Image imgG29; - - private global::Gtk.Image imgG3; - - private global::Gtk.Image imgG30; - - private global::Gtk.Image imgG31; - - private global::Gtk.Image imgG32; - - private global::Gtk.Image imgG33; - - private global::Gtk.Image imgG34; - - private global::Gtk.Image imgG35; - - private global::Gtk.Image imgG36; - - private global::Gtk.Image imgG37; - - private global::Gtk.Image imgG38; - - private global::Gtk.Image imgG39; - - private global::Gtk.Image imgG4; - - private global::Gtk.Image imgG40; - - private global::Gtk.Image imgG41; - - private global::Gtk.Image imgG42; - - private global::Gtk.Image imgG43; - - private global::Gtk.Image imgG44; - - private global::Gtk.Image imgG45; - - private global::Gtk.Image imgG46; - - private global::Gtk.Image imgG47; - - private global::Gtk.Image imgG48; - - private global::Gtk.Image imgG49; - - private global::Gtk.Image imgG5; - - private global::Gtk.Image imgG6; - - private global::Gtk.Image imgG7; - - private global::Gtk.Image imgG8; - - private global::Gtk.Image imgG9; - - private global::Gtk.Image imgI1; - - private global::Gtk.Image imgI10; - - private global::Gtk.Image imgI11; - - private global::Gtk.Image imgI12; - - private global::Gtk.Image imgI13; - - private global::Gtk.Image imgI14; - - private global::Gtk.Image imgI15; - - private global::Gtk.Image imgI16; - - private global::Gtk.Image imgI17; - - private global::Gtk.Image imgI18; - - private global::Gtk.Image imgI19; - - private global::Gtk.Image imgI2; - - private global::Gtk.Image imgI20; - - private global::Gtk.Image imgI21; - - private global::Gtk.Image imgI22; - - private global::Gtk.Image imgI23; - - private global::Gtk.Image imgI24; - - private global::Gtk.Image imgI25; - - private global::Gtk.Image imgI26; - - private global::Gtk.Image imgI27; - - private global::Gtk.Image imgI28; - - private global::Gtk.Image imgI29; - - private global::Gtk.Image imgI3; - - private global::Gtk.Image imgI30; - - private global::Gtk.Image imgI31; - - private global::Gtk.Image imgI32; - - private global::Gtk.Image imgI33; - - private global::Gtk.Image imgI34; - - private global::Gtk.Image imgI35; - - private global::Gtk.Image imgI36; - - private global::Gtk.Image imgI37; - - private global::Gtk.Image imgI38; - - private global::Gtk.Image imgI39; - - private global::Gtk.Image imgI4; - - private global::Gtk.Image imgI40; - - private global::Gtk.Image imgI41; - - private global::Gtk.Image imgI42; - - private global::Gtk.Image imgI43; - - private global::Gtk.Image imgI44; - - private global::Gtk.Image imgI45; - - private global::Gtk.Image imgI46; - - private global::Gtk.Image imgI47; - - private global::Gtk.Image imgI48; - - private global::Gtk.Image imgI49; - - private global::Gtk.Image imgI5; - - private global::Gtk.Image imgI6; - - private global::Gtk.Image imgI7; - - private global::Gtk.Image imgI8; - - private global::Gtk.Image imgI9; - - private global::Gtk.Image imgInfo; - - private global::Gtk.Image imgS1; - - private global::Gtk.Image imgS10; - - private global::Gtk.Image imgS11; - - private global::Gtk.Image imgS12; - - private global::Gtk.Image imgS13; - - private global::Gtk.Image imgS14; - - private global::Gtk.Image imgS2; - - private global::Gtk.Image imgS3; - - private global::Gtk.Image imgS4; - - private global::Gtk.Image imgS5; - - private global::Gtk.Image imgS6; - - private global::Gtk.Image imgS7; - - private global::Gtk.Image imgS8; - - private global::Gtk.Image imgS9; - - private global::Gtk.Label lblAccessories; - - private global::Gtk.Label lblBlank1; - - private global::Gtk.Label lblBlank2; - - private global::Gtk.Label lblBlank3; - - private global::Gtk.Label lblBlank4; - - private global::Gtk.Label lblBlank5; - - private global::Gtk.Label lblBlank6; - - private global::Gtk.Label lblBlank8; - - private global::Gtk.Label lblCoord1; - - private global::Gtk.Label lblCoord2; - - private global::Gtk.Label lblGear; - - private global::Gtk.Label lblGroundLayer; - - private global::Gtk.Label lblHoleMsg; - - private global::Gtk.Label lblHoleOnTop; - - private global::Gtk.Label lblHotbar; - - private global::Gtk.Label lblInfo; - - private global::Gtk.Label lblItemLayer; - - private global::Gtk.Label lblLog1; - - private global::Gtk.Label lblLog2; - - private global::Gtk.Label lblLog3; - - private global::Gtk.Label lblLog4; - - private global::Gtk.Label lblLog5; - - private global::Gtk.Label lblLog6; - - private global::Gtk.Label lblSuperLayer; - - protected virtual void Build() - { - global::Stetic.Gui.Initialize(this); - // Widget Mundus.Views.Windows.MediumGameWindow - this.Name = "Mundus.Views.Windows.MediumGameWindow"; - this.Title = "MediumGameWindow"; - this.WindowPosition = ((global::Gtk.WindowPosition)(2)); - this.Resizable = false; - this.AllowGrow = false; - // Container child Mundus.Views.Windows.MediumGameWindow.Gtk.Container+ContainerChild - this.tbUI = new global::Gtk.Table(((uint)(21)), ((uint)(27)), false); - this.tbUI.Name = "tbUI"; - // Container child tbUI.Gtk.Table+TableChild - this.btnA1 = new global::Gtk.Button(); - this.btnA1.WidthRequest = 50; - this.btnA1.HeightRequest = 50; - this.btnA1.CanFocus = true; - this.btnA1.Name = "btnA1"; - this.btnA1.UseUnderline = true; - global::Gtk.Image w1 = new global::Gtk.Image(); - this.btnA1.Image = w1; - this.tbUI.Add(this.btnA1); - global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA1])); - w2.TopAttach = ((uint)(11)); - w2.BottomAttach = ((uint)(12)); - w2.LeftAttach = ((uint)(19)); - w2.RightAttach = ((uint)(20)); - w2.XOptions = ((global::Gtk.AttachOptions)(4)); - w2.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA10 = new global::Gtk.Button(); - this.btnA10.WidthRequest = 50; - this.btnA10.HeightRequest = 50; - this.btnA10.CanFocus = true; - this.btnA10.Name = "btnA10"; - this.btnA10.UseUnderline = true; - global::Gtk.Image w3 = new global::Gtk.Image(); - this.btnA10.Image = w3; - this.tbUI.Add(this.btnA10); - global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA10])); - w4.TopAttach = ((uint)(12)); - w4.BottomAttach = ((uint)(13)); - w4.LeftAttach = ((uint)(21)); - w4.RightAttach = ((uint)(22)); - w4.XOptions = ((global::Gtk.AttachOptions)(4)); - w4.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA11 = new global::Gtk.Button(); - this.btnA11.WidthRequest = 50; - this.btnA11.HeightRequest = 50; - this.btnA11.CanFocus = true; - this.btnA11.Name = "btnA11"; - this.btnA11.UseUnderline = true; - global::Gtk.Image w5 = new global::Gtk.Image(); - this.btnA11.Image = w5; - this.tbUI.Add(this.btnA11); - global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA11])); - w6.TopAttach = ((uint)(12)); - w6.BottomAttach = ((uint)(13)); - w6.LeftAttach = ((uint)(22)); - w6.RightAttach = ((uint)(23)); - w6.XOptions = ((global::Gtk.AttachOptions)(4)); - w6.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA12 = new global::Gtk.Button(); - this.btnA12.WidthRequest = 50; - this.btnA12.HeightRequest = 50; - this.btnA12.CanFocus = true; - this.btnA12.Name = "btnA12"; - this.btnA12.UseUnderline = true; - global::Gtk.Image w7 = new global::Gtk.Image(); - this.btnA12.Image = w7; - this.tbUI.Add(this.btnA12); - global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA12])); - w8.TopAttach = ((uint)(12)); - w8.BottomAttach = ((uint)(13)); - w8.LeftAttach = ((uint)(23)); - w8.RightAttach = ((uint)(24)); - w8.XOptions = ((global::Gtk.AttachOptions)(4)); - w8.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA13 = new global::Gtk.Button(); - this.btnA13.WidthRequest = 50; - this.btnA13.HeightRequest = 50; - this.btnA13.CanFocus = true; - this.btnA13.Name = "btnA13"; - this.btnA13.UseUnderline = true; - global::Gtk.Image w9 = new global::Gtk.Image(); - this.btnA13.Image = w9; - this.tbUI.Add(this.btnA13); - global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA13])); - w10.TopAttach = ((uint)(12)); - w10.BottomAttach = ((uint)(13)); - w10.LeftAttach = ((uint)(24)); - w10.RightAttach = ((uint)(25)); - w10.XOptions = ((global::Gtk.AttachOptions)(4)); - w10.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA14 = new global::Gtk.Button(); - this.btnA14.WidthRequest = 50; - this.btnA14.HeightRequest = 50; - this.btnA14.CanFocus = true; - this.btnA14.Name = "btnA14"; - this.btnA14.UseUnderline = true; - global::Gtk.Image w11 = new global::Gtk.Image(); - this.btnA14.Image = w11; - this.tbUI.Add(this.btnA14); - global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA14])); - w12.TopAttach = ((uint)(12)); - w12.BottomAttach = ((uint)(13)); - w12.LeftAttach = ((uint)(25)); - w12.RightAttach = ((uint)(26)); - w12.XOptions = ((global::Gtk.AttachOptions)(4)); - w12.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA2 = new global::Gtk.Button(); - this.btnA2.WidthRequest = 50; - this.btnA2.HeightRequest = 50; - this.btnA2.CanFocus = true; - this.btnA2.Name = "btnA2"; - this.btnA2.UseUnderline = true; - global::Gtk.Image w13 = new global::Gtk.Image(); - this.btnA2.Image = w13; - this.tbUI.Add(this.btnA2); - global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA2])); - w14.TopAttach = ((uint)(11)); - w14.BottomAttach = ((uint)(12)); - w14.LeftAttach = ((uint)(20)); - w14.RightAttach = ((uint)(21)); - w14.XOptions = ((global::Gtk.AttachOptions)(4)); - w14.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA3 = new global::Gtk.Button(); - this.btnA3.WidthRequest = 50; - this.btnA3.HeightRequest = 50; - this.btnA3.CanFocus = true; - this.btnA3.Name = "btnA3"; - this.btnA3.UseUnderline = true; - global::Gtk.Image w15 = new global::Gtk.Image(); - this.btnA3.Image = w15; - this.tbUI.Add(this.btnA3); - global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA3])); - w16.TopAttach = ((uint)(11)); - w16.BottomAttach = ((uint)(12)); - w16.LeftAttach = ((uint)(21)); - w16.RightAttach = ((uint)(22)); - w16.XOptions = ((global::Gtk.AttachOptions)(4)); - w16.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA4 = new global::Gtk.Button(); - this.btnA4.WidthRequest = 50; - this.btnA4.HeightRequest = 50; - this.btnA4.CanFocus = true; - this.btnA4.Name = "btnA4"; - this.btnA4.UseUnderline = true; - global::Gtk.Image w17 = new global::Gtk.Image(); - this.btnA4.Image = w17; - this.tbUI.Add(this.btnA4); - global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA4])); - w18.TopAttach = ((uint)(11)); - w18.BottomAttach = ((uint)(12)); - w18.LeftAttach = ((uint)(22)); - w18.RightAttach = ((uint)(23)); - w18.XOptions = ((global::Gtk.AttachOptions)(4)); - w18.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA5 = new global::Gtk.Button(); - this.btnA5.WidthRequest = 50; - this.btnA5.HeightRequest = 50; - this.btnA5.CanFocus = true; - this.btnA5.Name = "btnA5"; - this.btnA5.UseUnderline = true; - global::Gtk.Image w19 = new global::Gtk.Image(); - this.btnA5.Image = w19; - this.tbUI.Add(this.btnA5); - global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA5])); - w20.TopAttach = ((uint)(11)); - w20.BottomAttach = ((uint)(12)); - w20.LeftAttach = ((uint)(23)); - w20.RightAttach = ((uint)(24)); - w20.XOptions = ((global::Gtk.AttachOptions)(4)); - w20.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA6 = new global::Gtk.Button(); - this.btnA6.WidthRequest = 50; - this.btnA6.HeightRequest = 50; - this.btnA6.CanFocus = true; - this.btnA6.Name = "btnA6"; - this.btnA6.UseUnderline = true; - global::Gtk.Image w21 = new global::Gtk.Image(); - this.btnA6.Image = w21; - this.tbUI.Add(this.btnA6); - global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA6])); - w22.TopAttach = ((uint)(11)); - w22.BottomAttach = ((uint)(12)); - w22.LeftAttach = ((uint)(24)); - w22.RightAttach = ((uint)(25)); - w22.XOptions = ((global::Gtk.AttachOptions)(4)); - w22.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA7 = new global::Gtk.Button(); - this.btnA7.WidthRequest = 50; - this.btnA7.HeightRequest = 50; - this.btnA7.CanFocus = true; - this.btnA7.Name = "btnA7"; - this.btnA7.UseUnderline = true; - global::Gtk.Image w23 = new global::Gtk.Image(); - this.btnA7.Image = w23; - this.tbUI.Add(this.btnA7); - global::Gtk.Table.TableChild w24 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA7])); - w24.TopAttach = ((uint)(11)); - w24.BottomAttach = ((uint)(12)); - w24.LeftAttach = ((uint)(25)); - w24.RightAttach = ((uint)(26)); - w24.XOptions = ((global::Gtk.AttachOptions)(4)); - w24.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA8 = new global::Gtk.Button(); - this.btnA8.WidthRequest = 50; - this.btnA8.HeightRequest = 50; - this.btnA8.CanFocus = true; - this.btnA8.Name = "btnA8"; - this.btnA8.UseUnderline = true; - global::Gtk.Image w25 = new global::Gtk.Image(); - this.btnA8.Image = w25; - this.tbUI.Add(this.btnA8); - global::Gtk.Table.TableChild w26 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA8])); - w26.TopAttach = ((uint)(12)); - w26.BottomAttach = ((uint)(13)); - w26.LeftAttach = ((uint)(19)); - w26.RightAttach = ((uint)(20)); - w26.XOptions = ((global::Gtk.AttachOptions)(4)); - w26.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA9 = new global::Gtk.Button(); - this.btnA9.WidthRequest = 50; - this.btnA9.HeightRequest = 50; - this.btnA9.CanFocus = true; - this.btnA9.Name = "btnA9"; - this.btnA9.UseUnderline = true; - global::Gtk.Image w27 = new global::Gtk.Image(); - this.btnA9.Image = w27; - this.tbUI.Add(this.btnA9); - global::Gtk.Table.TableChild w28 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA9])); - w28.TopAttach = ((uint)(12)); - w28.BottomAttach = ((uint)(13)); - w28.LeftAttach = ((uint)(20)); - w28.RightAttach = ((uint)(21)); - w28.XOptions = ((global::Gtk.AttachOptions)(4)); - w28.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnCrafting = new global::Gtk.Button(); - this.btnCrafting.CanFocus = true; - this.btnCrafting.Name = "btnCrafting"; - this.btnCrafting.UseUnderline = true; - this.btnCrafting.Label = "Crafting"; - this.tbUI.Add(this.btnCrafting); - global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnCrafting])); - w29.TopAttach = ((uint)(8)); - w29.BottomAttach = ((uint)(9)); - w29.LeftAttach = ((uint)(19)); - w29.RightAttach = ((uint)(26)); - w29.XOptions = ((global::Gtk.AttachOptions)(4)); - w29.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG1 = new global::Gtk.Button(); - this.btnG1.WidthRequest = 50; - this.btnG1.HeightRequest = 50; - this.btnG1.CanFocus = true; - this.btnG1.Name = "btnG1"; - this.btnG1.UseUnderline = true; - global::Gtk.Image w30 = new global::Gtk.Image(); - this.btnG1.Image = w30; - this.tbUI.Add(this.btnG1); - global::Gtk.Table.TableChild w31 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG1])); - w31.TopAttach = ((uint)(14)); - w31.BottomAttach = ((uint)(15)); - w31.LeftAttach = ((uint)(19)); - w31.RightAttach = ((uint)(20)); - w31.XOptions = ((global::Gtk.AttachOptions)(4)); - w31.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG2 = new global::Gtk.Button(); - this.btnG2.WidthRequest = 50; - this.btnG2.HeightRequest = 50; - this.btnG2.CanFocus = true; - this.btnG2.Name = "btnG2"; - this.btnG2.UseUnderline = true; - global::Gtk.Image w32 = new global::Gtk.Image(); - this.btnG2.Image = w32; - this.tbUI.Add(this.btnG2); - global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG2])); - w33.TopAttach = ((uint)(14)); - w33.BottomAttach = ((uint)(15)); - w33.LeftAttach = ((uint)(20)); - w33.RightAttach = ((uint)(21)); - w33.XOptions = ((global::Gtk.AttachOptions)(4)); - w33.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG3 = new global::Gtk.Button(); - this.btnG3.WidthRequest = 50; - this.btnG3.HeightRequest = 50; - this.btnG3.CanFocus = true; - this.btnG3.Name = "btnG3"; - this.btnG3.UseUnderline = true; - global::Gtk.Image w34 = new global::Gtk.Image(); - this.btnG3.Image = w34; - this.tbUI.Add(this.btnG3); - global::Gtk.Table.TableChild w35 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG3])); - w35.TopAttach = ((uint)(14)); - w35.BottomAttach = ((uint)(15)); - w35.LeftAttach = ((uint)(21)); - w35.RightAttach = ((uint)(22)); - w35.XOptions = ((global::Gtk.AttachOptions)(4)); - w35.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG4 = new global::Gtk.Button(); - this.btnG4.WidthRequest = 50; - this.btnG4.HeightRequest = 50; - this.btnG4.CanFocus = true; - this.btnG4.Name = "btnG4"; - this.btnG4.UseUnderline = true; - global::Gtk.Image w36 = new global::Gtk.Image(); - this.btnG4.Image = w36; - this.tbUI.Add(this.btnG4); - global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG4])); - w37.TopAttach = ((uint)(14)); - w37.BottomAttach = ((uint)(15)); - w37.LeftAttach = ((uint)(22)); - w37.RightAttach = ((uint)(23)); - w37.XOptions = ((global::Gtk.AttachOptions)(4)); - w37.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG5 = new global::Gtk.Button(); - this.btnG5.WidthRequest = 50; - this.btnG5.HeightRequest = 50; - this.btnG5.CanFocus = true; - this.btnG5.Name = "btnG5"; - this.btnG5.UseUnderline = true; - global::Gtk.Image w38 = new global::Gtk.Image(); - this.btnG5.Image = w38; - this.tbUI.Add(this.btnG5); - global::Gtk.Table.TableChild w39 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG5])); - w39.TopAttach = ((uint)(14)); - w39.BottomAttach = ((uint)(15)); - w39.LeftAttach = ((uint)(23)); - w39.RightAttach = ((uint)(24)); - w39.XOptions = ((global::Gtk.AttachOptions)(4)); - w39.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG6 = new global::Gtk.Button(); - this.btnG6.WidthRequest = 50; - this.btnG6.HeightRequest = 50; - this.btnG6.CanFocus = true; - this.btnG6.Name = "btnG6"; - this.btnG6.UseUnderline = true; - global::Gtk.Image w40 = new global::Gtk.Image(); - this.btnG6.Image = w40; - this.tbUI.Add(this.btnG6); - global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG6])); - w41.TopAttach = ((uint)(14)); - w41.BottomAttach = ((uint)(15)); - w41.LeftAttach = ((uint)(24)); - w41.RightAttach = ((uint)(25)); - w41.XOptions = ((global::Gtk.AttachOptions)(4)); - w41.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG7 = new global::Gtk.Button(); - this.btnG7.WidthRequest = 50; - this.btnG7.HeightRequest = 50; - this.btnG7.CanFocus = true; - this.btnG7.Name = "btnG7"; - this.btnG7.UseUnderline = true; - global::Gtk.Image w42 = new global::Gtk.Image(); - this.btnG7.Image = w42; - this.tbUI.Add(this.btnG7); - global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG7])); - w43.TopAttach = ((uint)(14)); - w43.BottomAttach = ((uint)(15)); - w43.LeftAttach = ((uint)(25)); - w43.RightAttach = ((uint)(26)); - w43.XOptions = ((global::Gtk.AttachOptions)(4)); - w43.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH1 = new global::Gtk.Button(); - this.btnH1.WidthRequest = 50; - this.btnH1.HeightRequest = 50; - this.btnH1.CanFocus = true; - this.btnH1.Name = "btnH1"; - this.btnH1.UseUnderline = true; - this.btnH1.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w44 = new global::Gtk.Image(); - this.btnH1.Image = w44; - this.tbUI.Add(this.btnH1); - global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH1])); - w45.TopAttach = ((uint)(12)); - w45.BottomAttach = ((uint)(13)); - w45.LeftAttach = ((uint)(10)); - w45.RightAttach = ((uint)(11)); - w45.XOptions = ((global::Gtk.AttachOptions)(4)); - w45.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH2 = new global::Gtk.Button(); - this.btnH2.WidthRequest = 50; - this.btnH2.HeightRequest = 50; - this.btnH2.CanFocus = true; - this.btnH2.Name = "btnH2"; - this.btnH2.UseUnderline = true; - this.btnH2.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w46 = new global::Gtk.Image(); - this.btnH2.Image = w46; - this.tbUI.Add(this.btnH2); - global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH2])); - w47.TopAttach = ((uint)(12)); - w47.BottomAttach = ((uint)(13)); - w47.LeftAttach = ((uint)(11)); - w47.RightAttach = ((uint)(12)); - w47.XOptions = ((global::Gtk.AttachOptions)(4)); - w47.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH3 = new global::Gtk.Button(); - this.btnH3.WidthRequest = 50; - this.btnH3.HeightRequest = 50; - this.btnH3.CanFocus = true; - this.btnH3.Name = "btnH3"; - this.btnH3.UseUnderline = true; - this.btnH3.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w48 = new global::Gtk.Image(); - this.btnH3.Image = w48; - this.tbUI.Add(this.btnH3); - global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH3])); - w49.TopAttach = ((uint)(12)); - w49.BottomAttach = ((uint)(13)); - w49.LeftAttach = ((uint)(12)); - w49.RightAttach = ((uint)(13)); - w49.XOptions = ((global::Gtk.AttachOptions)(4)); - w49.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH4 = new global::Gtk.Button(); - this.btnH4.WidthRequest = 50; - this.btnH4.HeightRequest = 50; - this.btnH4.CanFocus = true; - this.btnH4.Name = "btnH4"; - this.btnH4.UseUnderline = true; - this.btnH4.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w50 = new global::Gtk.Image(); - this.btnH4.Image = w50; - this.tbUI.Add(this.btnH4); - global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH4])); - w51.TopAttach = ((uint)(12)); - w51.BottomAttach = ((uint)(13)); - w51.LeftAttach = ((uint)(13)); - w51.RightAttach = ((uint)(14)); - w51.XOptions = ((global::Gtk.AttachOptions)(4)); - w51.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH5 = new global::Gtk.Button(); - this.btnH5.WidthRequest = 50; - this.btnH5.HeightRequest = 50; - this.btnH5.CanFocus = true; - this.btnH5.Name = "btnH5"; - this.btnH5.UseUnderline = true; - this.btnH5.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w52 = new global::Gtk.Image(); - this.btnH5.Image = w52; - this.tbUI.Add(this.btnH5); - global::Gtk.Table.TableChild w53 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH5])); - w53.TopAttach = ((uint)(12)); - w53.BottomAttach = ((uint)(13)); - w53.LeftAttach = ((uint)(14)); - w53.RightAttach = ((uint)(15)); - w53.XOptions = ((global::Gtk.AttachOptions)(4)); - w53.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH6 = new global::Gtk.Button(); - this.btnH6.WidthRequest = 50; - this.btnH6.HeightRequest = 50; - this.btnH6.CanFocus = true; - this.btnH6.Name = "btnH6"; - this.btnH6.UseUnderline = true; - this.btnH6.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w54 = new global::Gtk.Image(); - this.btnH6.Image = w54; - this.tbUI.Add(this.btnH6); - global::Gtk.Table.TableChild w55 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH6])); - w55.TopAttach = ((uint)(12)); - w55.BottomAttach = ((uint)(13)); - w55.LeftAttach = ((uint)(15)); - w55.RightAttach = ((uint)(16)); - w55.XOptions = ((global::Gtk.AttachOptions)(4)); - w55.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH7 = new global::Gtk.Button(); - this.btnH7.WidthRequest = 50; - this.btnH7.HeightRequest = 50; - this.btnH7.CanFocus = true; - this.btnH7.Name = "btnH7"; - this.btnH7.UseUnderline = true; - this.btnH7.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w56 = new global::Gtk.Image(); - this.btnH7.Image = w56; - this.tbUI.Add(this.btnH7); - global::Gtk.Table.TableChild w57 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH7])); - w57.TopAttach = ((uint)(12)); - w57.BottomAttach = ((uint)(13)); - w57.LeftAttach = ((uint)(16)); - w57.RightAttach = ((uint)(17)); - w57.XOptions = ((global::Gtk.AttachOptions)(4)); - w57.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI1 = new global::Gtk.Button(); - this.btnI1.WidthRequest = 50; - this.btnI1.HeightRequest = 50; - this.btnI1.CanFocus = true; - this.btnI1.Name = "btnI1"; - this.btnI1.UseUnderline = true; - this.btnI1.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w58 = new global::Gtk.Image(); - this.btnI1.Image = w58; - this.tbUI.Add(this.btnI1); - global::Gtk.Table.TableChild w59 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI1])); - w59.TopAttach = ((uint)(1)); - w59.BottomAttach = ((uint)(2)); - w59.LeftAttach = ((uint)(19)); - w59.RightAttach = ((uint)(20)); - w59.XOptions = ((global::Gtk.AttachOptions)(4)); - w59.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI10 = new global::Gtk.Button(); - this.btnI10.WidthRequest = 50; - this.btnI10.HeightRequest = 50; - this.btnI10.CanFocus = true; - this.btnI10.Name = "btnI10"; - this.btnI10.UseUnderline = true; - this.btnI10.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w60 = new global::Gtk.Image(); - this.btnI10.Image = w60; - this.tbUI.Add(this.btnI10); - global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI10])); - w61.TopAttach = ((uint)(2)); - w61.BottomAttach = ((uint)(3)); - w61.LeftAttach = ((uint)(21)); - w61.RightAttach = ((uint)(22)); - w61.XOptions = ((global::Gtk.AttachOptions)(4)); - w61.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI11 = new global::Gtk.Button(); - this.btnI11.WidthRequest = 50; - this.btnI11.HeightRequest = 50; - this.btnI11.CanFocus = true; - this.btnI11.Name = "btnI11"; - this.btnI11.UseUnderline = true; - this.btnI11.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w62 = new global::Gtk.Image(); - this.btnI11.Image = w62; - this.tbUI.Add(this.btnI11); - global::Gtk.Table.TableChild w63 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI11])); - w63.TopAttach = ((uint)(2)); - w63.BottomAttach = ((uint)(3)); - w63.LeftAttach = ((uint)(22)); - w63.RightAttach = ((uint)(23)); - w63.XOptions = ((global::Gtk.AttachOptions)(4)); - w63.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI12 = new global::Gtk.Button(); - this.btnI12.WidthRequest = 50; - this.btnI12.HeightRequest = 50; - this.btnI12.CanFocus = true; - this.btnI12.Name = "btnI12"; - this.btnI12.UseUnderline = true; - this.btnI12.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w64 = new global::Gtk.Image(); - this.btnI12.Image = w64; - this.tbUI.Add(this.btnI12); - global::Gtk.Table.TableChild w65 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI12])); - w65.TopAttach = ((uint)(2)); - w65.BottomAttach = ((uint)(3)); - w65.LeftAttach = ((uint)(23)); - w65.RightAttach = ((uint)(24)); - w65.XOptions = ((global::Gtk.AttachOptions)(4)); - w65.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI13 = new global::Gtk.Button(); - this.btnI13.WidthRequest = 50; - this.btnI13.HeightRequest = 50; - this.btnI13.CanFocus = true; - this.btnI13.Name = "btnI13"; - this.btnI13.UseUnderline = true; - this.btnI13.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w66 = new global::Gtk.Image(); - this.btnI13.Image = w66; - this.tbUI.Add(this.btnI13); - global::Gtk.Table.TableChild w67 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI13])); - w67.TopAttach = ((uint)(2)); - w67.BottomAttach = ((uint)(3)); - w67.LeftAttach = ((uint)(24)); - w67.RightAttach = ((uint)(25)); - w67.XOptions = ((global::Gtk.AttachOptions)(4)); - w67.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI14 = new global::Gtk.Button(); - this.btnI14.WidthRequest = 50; - this.btnI14.HeightRequest = 50; - this.btnI14.CanFocus = true; - this.btnI14.Name = "btnI14"; - this.btnI14.UseUnderline = true; - this.btnI14.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w68 = new global::Gtk.Image(); - this.btnI14.Image = w68; - this.tbUI.Add(this.btnI14); - global::Gtk.Table.TableChild w69 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI14])); - w69.TopAttach = ((uint)(2)); - w69.BottomAttach = ((uint)(3)); - w69.LeftAttach = ((uint)(25)); - w69.RightAttach = ((uint)(26)); - w69.XOptions = ((global::Gtk.AttachOptions)(4)); - w69.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI15 = new global::Gtk.Button(); - this.btnI15.WidthRequest = 50; - this.btnI15.HeightRequest = 50; - this.btnI15.CanFocus = true; - this.btnI15.Name = "btnI15"; - this.btnI15.UseUnderline = true; - this.btnI15.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w70 = new global::Gtk.Image(); - this.btnI15.Image = w70; - this.tbUI.Add(this.btnI15); - global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI15])); - w71.TopAttach = ((uint)(3)); - w71.BottomAttach = ((uint)(4)); - w71.LeftAttach = ((uint)(19)); - w71.RightAttach = ((uint)(20)); - w71.XOptions = ((global::Gtk.AttachOptions)(4)); - w71.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI16 = new global::Gtk.Button(); - this.btnI16.WidthRequest = 50; - this.btnI16.HeightRequest = 50; - this.btnI16.CanFocus = true; - this.btnI16.Name = "btnI16"; - this.btnI16.UseUnderline = true; - this.btnI16.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w72 = new global::Gtk.Image(); - this.btnI16.Image = w72; - this.tbUI.Add(this.btnI16); - global::Gtk.Table.TableChild w73 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI16])); - w73.TopAttach = ((uint)(3)); - w73.BottomAttach = ((uint)(4)); - w73.LeftAttach = ((uint)(20)); - w73.RightAttach = ((uint)(21)); - w73.XOptions = ((global::Gtk.AttachOptions)(4)); - w73.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI17 = new global::Gtk.Button(); - this.btnI17.WidthRequest = 50; - this.btnI17.HeightRequest = 50; - this.btnI17.CanFocus = true; - this.btnI17.Name = "btnI17"; - this.btnI17.UseUnderline = true; - this.btnI17.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w74 = new global::Gtk.Image(); - this.btnI17.Image = w74; - this.tbUI.Add(this.btnI17); - global::Gtk.Table.TableChild w75 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI17])); - w75.TopAttach = ((uint)(3)); - w75.BottomAttach = ((uint)(4)); - w75.LeftAttach = ((uint)(21)); - w75.RightAttach = ((uint)(22)); - w75.XOptions = ((global::Gtk.AttachOptions)(4)); - w75.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI18 = new global::Gtk.Button(); - this.btnI18.WidthRequest = 50; - this.btnI18.HeightRequest = 50; - this.btnI18.CanFocus = true; - this.btnI18.Name = "btnI18"; - this.btnI18.UseUnderline = true; - this.btnI18.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w76 = new global::Gtk.Image(); - this.btnI18.Image = w76; - this.tbUI.Add(this.btnI18); - global::Gtk.Table.TableChild w77 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI18])); - w77.TopAttach = ((uint)(3)); - w77.BottomAttach = ((uint)(4)); - w77.LeftAttach = ((uint)(22)); - w77.RightAttach = ((uint)(23)); - w77.XOptions = ((global::Gtk.AttachOptions)(4)); - w77.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI19 = new global::Gtk.Button(); - this.btnI19.WidthRequest = 50; - this.btnI19.HeightRequest = 50; - this.btnI19.CanFocus = true; - this.btnI19.Name = "btnI19"; - this.btnI19.UseUnderline = true; - this.btnI19.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w78 = new global::Gtk.Image(); - this.btnI19.Image = w78; - this.tbUI.Add(this.btnI19); - global::Gtk.Table.TableChild w79 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI19])); - w79.TopAttach = ((uint)(3)); - w79.BottomAttach = ((uint)(4)); - w79.LeftAttach = ((uint)(23)); - w79.RightAttach = ((uint)(24)); - w79.XOptions = ((global::Gtk.AttachOptions)(4)); - w79.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI2 = new global::Gtk.Button(); - this.btnI2.WidthRequest = 50; - this.btnI2.HeightRequest = 50; - this.btnI2.CanFocus = true; - this.btnI2.Name = "btnI2"; - this.btnI2.UseUnderline = true; - this.btnI2.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w80 = new global::Gtk.Image(); - this.btnI2.Image = w80; - this.tbUI.Add(this.btnI2); - global::Gtk.Table.TableChild w81 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI2])); - w81.TopAttach = ((uint)(1)); - w81.BottomAttach = ((uint)(2)); - w81.LeftAttach = ((uint)(20)); - w81.RightAttach = ((uint)(21)); - w81.XOptions = ((global::Gtk.AttachOptions)(4)); - w81.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI20 = new global::Gtk.Button(); - this.btnI20.WidthRequest = 50; - this.btnI20.HeightRequest = 50; - this.btnI20.CanFocus = true; - this.btnI20.Name = "btnI20"; - this.btnI20.UseUnderline = true; - this.btnI20.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w82 = new global::Gtk.Image(); - this.btnI20.Image = w82; - this.tbUI.Add(this.btnI20); - global::Gtk.Table.TableChild w83 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI20])); - w83.TopAttach = ((uint)(3)); - w83.BottomAttach = ((uint)(4)); - w83.LeftAttach = ((uint)(24)); - w83.RightAttach = ((uint)(25)); - w83.XOptions = ((global::Gtk.AttachOptions)(4)); - w83.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI21 = new global::Gtk.Button(); - this.btnI21.WidthRequest = 50; - this.btnI21.HeightRequest = 50; - this.btnI21.CanFocus = true; - this.btnI21.Name = "btnI21"; - this.btnI21.UseUnderline = true; - this.btnI21.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w84 = new global::Gtk.Image(); - this.btnI21.Image = w84; - this.tbUI.Add(this.btnI21); - global::Gtk.Table.TableChild w85 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI21])); - w85.TopAttach = ((uint)(3)); - w85.BottomAttach = ((uint)(4)); - w85.LeftAttach = ((uint)(25)); - w85.RightAttach = ((uint)(26)); - w85.XOptions = ((global::Gtk.AttachOptions)(4)); - w85.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI22 = new global::Gtk.Button(); - this.btnI22.WidthRequest = 50; - this.btnI22.HeightRequest = 50; - this.btnI22.CanFocus = true; - this.btnI22.Name = "btnI22"; - this.btnI22.UseUnderline = true; - this.btnI22.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w86 = new global::Gtk.Image(); - this.btnI22.Image = w86; - this.tbUI.Add(this.btnI22); - global::Gtk.Table.TableChild w87 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI22])); - w87.TopAttach = ((uint)(4)); - w87.BottomAttach = ((uint)(5)); - w87.LeftAttach = ((uint)(19)); - w87.RightAttach = ((uint)(20)); - w87.XOptions = ((global::Gtk.AttachOptions)(4)); - w87.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI23 = new global::Gtk.Button(); - this.btnI23.WidthRequest = 50; - this.btnI23.HeightRequest = 50; - this.btnI23.CanFocus = true; - this.btnI23.Name = "btnI23"; - this.btnI23.UseUnderline = true; - this.btnI23.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w88 = new global::Gtk.Image(); - this.btnI23.Image = w88; - this.tbUI.Add(this.btnI23); - global::Gtk.Table.TableChild w89 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI23])); - w89.TopAttach = ((uint)(4)); - w89.BottomAttach = ((uint)(5)); - w89.LeftAttach = ((uint)(20)); - w89.RightAttach = ((uint)(21)); - w89.XOptions = ((global::Gtk.AttachOptions)(4)); - w89.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI24 = new global::Gtk.Button(); - this.btnI24.WidthRequest = 50; - this.btnI24.HeightRequest = 50; - this.btnI24.CanFocus = true; - this.btnI24.Name = "btnI24"; - this.btnI24.UseUnderline = true; - this.btnI24.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w90 = new global::Gtk.Image(); - this.btnI24.Image = w90; - this.tbUI.Add(this.btnI24); - global::Gtk.Table.TableChild w91 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI24])); - w91.TopAttach = ((uint)(4)); - w91.BottomAttach = ((uint)(5)); - w91.LeftAttach = ((uint)(21)); - w91.RightAttach = ((uint)(22)); - w91.XOptions = ((global::Gtk.AttachOptions)(4)); - w91.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI25 = new global::Gtk.Button(); - this.btnI25.WidthRequest = 50; - this.btnI25.HeightRequest = 50; - this.btnI25.CanFocus = true; - this.btnI25.Name = "btnI25"; - this.btnI25.UseUnderline = true; - this.btnI25.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w92 = new global::Gtk.Image(); - this.btnI25.Image = w92; - this.tbUI.Add(this.btnI25); - global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI25])); - w93.TopAttach = ((uint)(4)); - w93.BottomAttach = ((uint)(5)); - w93.LeftAttach = ((uint)(22)); - w93.RightAttach = ((uint)(23)); - w93.XOptions = ((global::Gtk.AttachOptions)(4)); - w93.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI26 = new global::Gtk.Button(); - this.btnI26.WidthRequest = 50; - this.btnI26.HeightRequest = 50; - this.btnI26.CanFocus = true; - this.btnI26.Name = "btnI26"; - this.btnI26.UseUnderline = true; - this.btnI26.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w94 = new global::Gtk.Image(); - this.btnI26.Image = w94; - this.tbUI.Add(this.btnI26); - global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI26])); - w95.TopAttach = ((uint)(4)); - w95.BottomAttach = ((uint)(5)); - w95.LeftAttach = ((uint)(23)); - w95.RightAttach = ((uint)(24)); - w95.XOptions = ((global::Gtk.AttachOptions)(4)); - w95.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI27 = new global::Gtk.Button(); - this.btnI27.WidthRequest = 50; - this.btnI27.HeightRequest = 50; - this.btnI27.CanFocus = true; - this.btnI27.Name = "btnI27"; - this.btnI27.UseUnderline = true; - this.btnI27.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w96 = new global::Gtk.Image(); - this.btnI27.Image = w96; - this.tbUI.Add(this.btnI27); - global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI27])); - w97.TopAttach = ((uint)(4)); - w97.BottomAttach = ((uint)(5)); - w97.LeftAttach = ((uint)(24)); - w97.RightAttach = ((uint)(25)); - w97.XOptions = ((global::Gtk.AttachOptions)(4)); - w97.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI28 = new global::Gtk.Button(); - this.btnI28.WidthRequest = 50; - this.btnI28.HeightRequest = 50; - this.btnI28.CanFocus = true; - this.btnI28.Name = "btnI28"; - this.btnI28.UseUnderline = true; - this.btnI28.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w98 = new global::Gtk.Image(); - this.btnI28.Image = w98; - this.tbUI.Add(this.btnI28); - global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI28])); - w99.TopAttach = ((uint)(4)); - w99.BottomAttach = ((uint)(5)); - w99.LeftAttach = ((uint)(25)); - w99.RightAttach = ((uint)(26)); - w99.XOptions = ((global::Gtk.AttachOptions)(4)); - w99.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI29 = new global::Gtk.Button(); - this.btnI29.WidthRequest = 50; - this.btnI29.HeightRequest = 50; - this.btnI29.CanFocus = true; - this.btnI29.Name = "btnI29"; - this.btnI29.UseUnderline = true; - this.btnI29.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w100 = new global::Gtk.Image(); - this.btnI29.Image = w100; - this.tbUI.Add(this.btnI29); - global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI29])); - w101.TopAttach = ((uint)(5)); - w101.BottomAttach = ((uint)(6)); - w101.LeftAttach = ((uint)(19)); - w101.RightAttach = ((uint)(20)); - w101.XOptions = ((global::Gtk.AttachOptions)(4)); - w101.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI3 = new global::Gtk.Button(); - this.btnI3.WidthRequest = 50; - this.btnI3.HeightRequest = 50; - this.btnI3.CanFocus = true; - this.btnI3.Name = "btnI3"; - this.btnI3.UseUnderline = true; - this.btnI3.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w102 = new global::Gtk.Image(); - this.btnI3.Image = w102; - this.tbUI.Add(this.btnI3); - global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI3])); - w103.TopAttach = ((uint)(1)); - w103.BottomAttach = ((uint)(2)); - w103.LeftAttach = ((uint)(21)); - w103.RightAttach = ((uint)(22)); - w103.XOptions = ((global::Gtk.AttachOptions)(4)); - w103.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI30 = new global::Gtk.Button(); - this.btnI30.WidthRequest = 50; - this.btnI30.HeightRequest = 50; - this.btnI30.CanFocus = true; - this.btnI30.Name = "btnI30"; - this.btnI30.UseUnderline = true; - this.btnI30.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w104 = new global::Gtk.Image(); - this.btnI30.Image = w104; - this.tbUI.Add(this.btnI30); - global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI30])); - w105.TopAttach = ((uint)(5)); - w105.BottomAttach = ((uint)(6)); - w105.LeftAttach = ((uint)(20)); - w105.RightAttach = ((uint)(21)); - w105.XOptions = ((global::Gtk.AttachOptions)(4)); - w105.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI31 = new global::Gtk.Button(); - this.btnI31.WidthRequest = 50; - this.btnI31.HeightRequest = 50; - this.btnI31.CanFocus = true; - this.btnI31.Name = "btnI31"; - this.btnI31.UseUnderline = true; - this.btnI31.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w106 = new global::Gtk.Image(); - this.btnI31.Image = w106; - this.tbUI.Add(this.btnI31); - global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI31])); - w107.TopAttach = ((uint)(5)); - w107.BottomAttach = ((uint)(6)); - w107.LeftAttach = ((uint)(21)); - w107.RightAttach = ((uint)(22)); - w107.XOptions = ((global::Gtk.AttachOptions)(4)); - w107.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI32 = new global::Gtk.Button(); - this.btnI32.WidthRequest = 50; - this.btnI32.HeightRequest = 50; - this.btnI32.CanFocus = true; - this.btnI32.Name = "btnI32"; - this.btnI32.UseUnderline = true; - this.btnI32.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w108 = new global::Gtk.Image(); - this.btnI32.Image = w108; - this.tbUI.Add(this.btnI32); - global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI32])); - w109.TopAttach = ((uint)(5)); - w109.BottomAttach = ((uint)(6)); - w109.LeftAttach = ((uint)(22)); - w109.RightAttach = ((uint)(23)); - w109.XOptions = ((global::Gtk.AttachOptions)(4)); - w109.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI33 = new global::Gtk.Button(); - this.btnI33.WidthRequest = 50; - this.btnI33.HeightRequest = 50; - this.btnI33.CanFocus = true; - this.btnI33.Name = "btnI33"; - this.btnI33.UseUnderline = true; - this.btnI33.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w110 = new global::Gtk.Image(); - this.btnI33.Image = w110; - this.tbUI.Add(this.btnI33); - global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI33])); - w111.TopAttach = ((uint)(5)); - w111.BottomAttach = ((uint)(6)); - w111.LeftAttach = ((uint)(23)); - w111.RightAttach = ((uint)(24)); - w111.XOptions = ((global::Gtk.AttachOptions)(4)); - w111.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI34 = new global::Gtk.Button(); - this.btnI34.WidthRequest = 50; - this.btnI34.HeightRequest = 50; - this.btnI34.CanFocus = true; - this.btnI34.Name = "btnI34"; - this.btnI34.UseUnderline = true; - this.btnI34.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w112 = new global::Gtk.Image(); - this.btnI34.Image = w112; - this.tbUI.Add(this.btnI34); - global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI34])); - w113.TopAttach = ((uint)(5)); - w113.BottomAttach = ((uint)(6)); - w113.LeftAttach = ((uint)(24)); - w113.RightAttach = ((uint)(25)); - w113.XOptions = ((global::Gtk.AttachOptions)(4)); - w113.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI35 = new global::Gtk.Button(); - this.btnI35.WidthRequest = 50; - this.btnI35.HeightRequest = 50; - this.btnI35.CanFocus = true; - this.btnI35.Name = "btnI35"; - this.btnI35.UseUnderline = true; - this.btnI35.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w114 = new global::Gtk.Image(); - this.btnI35.Image = w114; - this.tbUI.Add(this.btnI35); - global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI35])); - w115.TopAttach = ((uint)(5)); - w115.BottomAttach = ((uint)(6)); - w115.LeftAttach = ((uint)(25)); - w115.RightAttach = ((uint)(26)); - w115.XOptions = ((global::Gtk.AttachOptions)(4)); - w115.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI36 = new global::Gtk.Button(); - this.btnI36.WidthRequest = 50; - this.btnI36.HeightRequest = 50; - this.btnI36.CanFocus = true; - this.btnI36.Name = "btnI36"; - this.btnI36.UseUnderline = true; - this.btnI36.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w116 = new global::Gtk.Image(); - this.btnI36.Image = w116; - this.tbUI.Add(this.btnI36); - global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI36])); - w117.TopAttach = ((uint)(6)); - w117.BottomAttach = ((uint)(7)); - w117.LeftAttach = ((uint)(19)); - w117.RightAttach = ((uint)(20)); - w117.XOptions = ((global::Gtk.AttachOptions)(4)); - w117.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI37 = new global::Gtk.Button(); - this.btnI37.WidthRequest = 50; - this.btnI37.HeightRequest = 50; - this.btnI37.CanFocus = true; - this.btnI37.Name = "btnI37"; - this.btnI37.UseUnderline = true; - this.btnI37.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w118 = new global::Gtk.Image(); - this.btnI37.Image = w118; - this.tbUI.Add(this.btnI37); - global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI37])); - w119.TopAttach = ((uint)(6)); - w119.BottomAttach = ((uint)(7)); - w119.LeftAttach = ((uint)(20)); - w119.RightAttach = ((uint)(21)); - w119.XOptions = ((global::Gtk.AttachOptions)(4)); - w119.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI38 = new global::Gtk.Button(); - this.btnI38.WidthRequest = 50; - this.btnI38.HeightRequest = 50; - this.btnI38.CanFocus = true; - this.btnI38.Name = "btnI38"; - this.btnI38.UseUnderline = true; - this.btnI38.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w120 = new global::Gtk.Image(); - this.btnI38.Image = w120; - this.tbUI.Add(this.btnI38); - global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI38])); - w121.TopAttach = ((uint)(6)); - w121.BottomAttach = ((uint)(7)); - w121.LeftAttach = ((uint)(21)); - w121.RightAttach = ((uint)(22)); - w121.XOptions = ((global::Gtk.AttachOptions)(4)); - w121.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI39 = new global::Gtk.Button(); - this.btnI39.WidthRequest = 50; - this.btnI39.HeightRequest = 50; - this.btnI39.CanFocus = true; - this.btnI39.Name = "btnI39"; - this.btnI39.UseUnderline = true; - this.btnI39.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w122 = new global::Gtk.Image(); - this.btnI39.Image = w122; - this.tbUI.Add(this.btnI39); - global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI39])); - w123.TopAttach = ((uint)(6)); - w123.BottomAttach = ((uint)(7)); - w123.LeftAttach = ((uint)(22)); - w123.RightAttach = ((uint)(23)); - w123.XOptions = ((global::Gtk.AttachOptions)(4)); - w123.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI4 = new global::Gtk.Button(); - this.btnI4.WidthRequest = 50; - this.btnI4.HeightRequest = 50; - this.btnI4.CanFocus = true; - this.btnI4.Name = "btnI4"; - this.btnI4.UseUnderline = true; - this.btnI4.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w124 = new global::Gtk.Image(); - this.btnI4.Image = w124; - this.tbUI.Add(this.btnI4); - global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI4])); - w125.TopAttach = ((uint)(1)); - w125.BottomAttach = ((uint)(2)); - w125.LeftAttach = ((uint)(22)); - w125.RightAttach = ((uint)(23)); - w125.XOptions = ((global::Gtk.AttachOptions)(4)); - w125.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI40 = new global::Gtk.Button(); - this.btnI40.WidthRequest = 50; - this.btnI40.HeightRequest = 50; - this.btnI40.CanFocus = true; - this.btnI40.Name = "btnI40"; - this.btnI40.UseUnderline = true; - this.btnI40.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w126 = new global::Gtk.Image(); - this.btnI40.Image = w126; - this.tbUI.Add(this.btnI40); - global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI40])); - w127.TopAttach = ((uint)(6)); - w127.BottomAttach = ((uint)(7)); - w127.LeftAttach = ((uint)(23)); - w127.RightAttach = ((uint)(24)); - w127.XOptions = ((global::Gtk.AttachOptions)(4)); - w127.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI41 = new global::Gtk.Button(); - this.btnI41.WidthRequest = 50; - this.btnI41.HeightRequest = 50; - this.btnI41.CanFocus = true; - this.btnI41.Name = "btnI41"; - this.btnI41.UseUnderline = true; - this.btnI41.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w128 = new global::Gtk.Image(); - this.btnI41.Image = w128; - this.tbUI.Add(this.btnI41); - global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI41])); - w129.TopAttach = ((uint)(6)); - w129.BottomAttach = ((uint)(7)); - w129.LeftAttach = ((uint)(24)); - w129.RightAttach = ((uint)(25)); - w129.XOptions = ((global::Gtk.AttachOptions)(4)); - w129.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI42 = new global::Gtk.Button(); - this.btnI42.WidthRequest = 50; - this.btnI42.HeightRequest = 50; - this.btnI42.CanFocus = true; - this.btnI42.Name = "btnI42"; - this.btnI42.UseUnderline = true; - this.btnI42.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w130 = new global::Gtk.Image(); - this.btnI42.Image = w130; - this.tbUI.Add(this.btnI42); - global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI42])); - w131.TopAttach = ((uint)(6)); - w131.BottomAttach = ((uint)(7)); - w131.LeftAttach = ((uint)(25)); - w131.RightAttach = ((uint)(26)); - w131.XOptions = ((global::Gtk.AttachOptions)(4)); - w131.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI43 = new global::Gtk.Button(); - this.btnI43.WidthRequest = 50; - this.btnI43.HeightRequest = 50; - this.btnI43.CanFocus = true; - this.btnI43.Name = "btnI43"; - this.btnI43.UseUnderline = true; - this.btnI43.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w132 = new global::Gtk.Image(); - this.btnI43.Image = w132; - this.tbUI.Add(this.btnI43); - global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI43])); - w133.TopAttach = ((uint)(7)); - w133.BottomAttach = ((uint)(8)); - w133.LeftAttach = ((uint)(19)); - w133.RightAttach = ((uint)(20)); - w133.XOptions = ((global::Gtk.AttachOptions)(4)); - w133.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI44 = new global::Gtk.Button(); - this.btnI44.WidthRequest = 50; - this.btnI44.HeightRequest = 50; - this.btnI44.CanFocus = true; - this.btnI44.Name = "btnI44"; - this.btnI44.UseUnderline = true; - this.btnI44.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w134 = new global::Gtk.Image(); - this.btnI44.Image = w134; - this.tbUI.Add(this.btnI44); - global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI44])); - w135.TopAttach = ((uint)(7)); - w135.BottomAttach = ((uint)(8)); - w135.LeftAttach = ((uint)(20)); - w135.RightAttach = ((uint)(21)); - w135.XOptions = ((global::Gtk.AttachOptions)(4)); - w135.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI45 = new global::Gtk.Button(); - this.btnI45.WidthRequest = 50; - this.btnI45.HeightRequest = 50; - this.btnI45.CanFocus = true; - this.btnI45.Name = "btnI45"; - this.btnI45.UseUnderline = true; - this.btnI45.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w136 = new global::Gtk.Image(); - this.btnI45.Image = w136; - this.tbUI.Add(this.btnI45); - global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI45])); - w137.TopAttach = ((uint)(7)); - w137.BottomAttach = ((uint)(8)); - w137.LeftAttach = ((uint)(21)); - w137.RightAttach = ((uint)(22)); - w137.XOptions = ((global::Gtk.AttachOptions)(4)); - w137.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI46 = new global::Gtk.Button(); - this.btnI46.WidthRequest = 50; - this.btnI46.HeightRequest = 50; - this.btnI46.CanFocus = true; - this.btnI46.Name = "btnI46"; - this.btnI46.UseUnderline = true; - this.btnI46.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w138 = new global::Gtk.Image(); - this.btnI46.Image = w138; - this.tbUI.Add(this.btnI46); - global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI46])); - w139.TopAttach = ((uint)(7)); - w139.BottomAttach = ((uint)(8)); - w139.LeftAttach = ((uint)(22)); - w139.RightAttach = ((uint)(23)); - w139.XOptions = ((global::Gtk.AttachOptions)(4)); - w139.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI47 = new global::Gtk.Button(); - this.btnI47.WidthRequest = 50; - this.btnI47.HeightRequest = 50; - this.btnI47.CanFocus = true; - this.btnI47.Name = "btnI47"; - this.btnI47.UseUnderline = true; - this.btnI47.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w140 = new global::Gtk.Image(); - this.btnI47.Image = w140; - this.tbUI.Add(this.btnI47); - global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI47])); - w141.TopAttach = ((uint)(7)); - w141.BottomAttach = ((uint)(8)); - w141.LeftAttach = ((uint)(23)); - w141.RightAttach = ((uint)(24)); - w141.XOptions = ((global::Gtk.AttachOptions)(4)); - w141.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI48 = new global::Gtk.Button(); - this.btnI48.WidthRequest = 50; - this.btnI48.HeightRequest = 50; - this.btnI48.CanFocus = true; - this.btnI48.Name = "btnI48"; - this.btnI48.UseUnderline = true; - this.btnI48.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w142 = new global::Gtk.Image(); - this.btnI48.Image = w142; - this.tbUI.Add(this.btnI48); - global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI48])); - w143.TopAttach = ((uint)(7)); - w143.BottomAttach = ((uint)(8)); - w143.LeftAttach = ((uint)(24)); - w143.RightAttach = ((uint)(25)); - w143.XOptions = ((global::Gtk.AttachOptions)(4)); - w143.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI49 = new global::Gtk.Button(); - this.btnI49.WidthRequest = 50; - this.btnI49.HeightRequest = 50; - this.btnI49.CanFocus = true; - this.btnI49.Name = "btnI49"; - this.btnI49.UseUnderline = true; - this.btnI49.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w144 = new global::Gtk.Image(); - this.btnI49.Image = w144; - this.tbUI.Add(this.btnI49); - global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI49])); - w145.TopAttach = ((uint)(7)); - w145.BottomAttach = ((uint)(8)); - w145.LeftAttach = ((uint)(25)); - w145.RightAttach = ((uint)(26)); - w145.XOptions = ((global::Gtk.AttachOptions)(4)); - w145.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI5 = new global::Gtk.Button(); - this.btnI5.WidthRequest = 50; - this.btnI5.HeightRequest = 50; - this.btnI5.CanFocus = true; - this.btnI5.Name = "btnI5"; - this.btnI5.UseUnderline = true; - this.btnI5.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w146 = new global::Gtk.Image(); - this.btnI5.Image = w146; - this.tbUI.Add(this.btnI5); - global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI5])); - w147.TopAttach = ((uint)(1)); - w147.BottomAttach = ((uint)(2)); - w147.LeftAttach = ((uint)(23)); - w147.RightAttach = ((uint)(24)); - w147.XOptions = ((global::Gtk.AttachOptions)(4)); - w147.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI6 = new global::Gtk.Button(); - this.btnI6.WidthRequest = 50; - this.btnI6.HeightRequest = 50; - this.btnI6.CanFocus = true; - this.btnI6.Name = "btnI6"; - this.btnI6.UseUnderline = true; - this.btnI6.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w148 = new global::Gtk.Image(); - this.btnI6.Image = w148; - this.tbUI.Add(this.btnI6); - global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI6])); - w149.TopAttach = ((uint)(1)); - w149.BottomAttach = ((uint)(2)); - w149.LeftAttach = ((uint)(24)); - w149.RightAttach = ((uint)(25)); - w149.XOptions = ((global::Gtk.AttachOptions)(4)); - w149.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI7 = new global::Gtk.Button(); - this.btnI7.WidthRequest = 50; - this.btnI7.HeightRequest = 50; - this.btnI7.CanFocus = true; - this.btnI7.Name = "btnI7"; - this.btnI7.UseUnderline = true; - this.btnI7.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w150 = new global::Gtk.Image(); - this.btnI7.Image = w150; - this.tbUI.Add(this.btnI7); - global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI7])); - w151.TopAttach = ((uint)(1)); - w151.BottomAttach = ((uint)(2)); - w151.LeftAttach = ((uint)(25)); - w151.RightAttach = ((uint)(26)); - w151.XOptions = ((global::Gtk.AttachOptions)(4)); - w151.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI8 = new global::Gtk.Button(); - this.btnI8.WidthRequest = 50; - this.btnI8.HeightRequest = 50; - this.btnI8.CanFocus = true; - this.btnI8.Name = "btnI8"; - this.btnI8.UseUnderline = true; - this.btnI8.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w152 = new global::Gtk.Image(); - this.btnI8.Image = w152; - this.tbUI.Add(this.btnI8); - global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI8])); - w153.TopAttach = ((uint)(2)); - w153.BottomAttach = ((uint)(3)); - w153.LeftAttach = ((uint)(19)); - w153.RightAttach = ((uint)(20)); - w153.XOptions = ((global::Gtk.AttachOptions)(4)); - w153.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI9 = new global::Gtk.Button(); - this.btnI9.WidthRequest = 50; - this.btnI9.HeightRequest = 50; - this.btnI9.CanFocus = true; - this.btnI9.Name = "btnI9"; - this.btnI9.UseUnderline = true; - this.btnI9.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w154 = new global::Gtk.Image(); - this.btnI9.Image = w154; - this.tbUI.Add(this.btnI9); - global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI9])); - w155.TopAttach = ((uint)(2)); - w155.BottomAttach = ((uint)(3)); - w155.LeftAttach = ((uint)(20)); - w155.RightAttach = ((uint)(21)); - w155.XOptions = ((global::Gtk.AttachOptions)(4)); - w155.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnInv = new global::Gtk.Button(); - this.btnInv.WidthRequest = 50; - this.btnInv.HeightRequest = 50; - this.btnInv.CanFocus = true; - this.btnInv.Name = "btnInv"; - this.btnInv.UseUnderline = true; - this.btnInv.Label = "Inv"; - this.tbUI.Add(this.btnInv); - global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); - w156.TopAttach = ((uint)(11)); - w156.BottomAttach = ((uint)(12)); - w156.LeftAttach = ((uint)(17)); - w156.RightAttach = ((uint)(18)); - w156.XOptions = ((global::Gtk.AttachOptions)(4)); - w156.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnLog = new global::Gtk.Button(); - this.btnLog.WidthRequest = 350; - this.btnLog.HeightRequest = 50; - this.btnLog.CanFocus = true; - this.btnLog.Name = "btnLog"; - this.btnLog.UseUnderline = true; - this.btnLog.FocusOnClick = false; - this.btnLog.Label = "Event Log"; - this.tbUI.Add(this.btnLog); - global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); - w157.TopAttach = ((uint)(13)); - w157.BottomAttach = ((uint)(14)); - w157.LeftAttach = ((uint)(10)); - w157.RightAttach = ((uint)(17)); - w157.XOptions = ((global::Gtk.AttachOptions)(4)); - w157.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnMap = new global::Gtk.Button(); - this.btnMap.WidthRequest = 50; - this.btnMap.HeightRequest = 50; - this.btnMap.CanFocus = true; - this.btnMap.Name = "btnMap"; - this.btnMap.UseUnderline = true; - this.btnMap.Label = "Map"; - this.tbUI.Add(this.btnMap); - global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); - w158.TopAttach = ((uint)(11)); - w158.BottomAttach = ((uint)(12)); - w158.LeftAttach = ((uint)(9)); - w158.RightAttach = ((uint)(10)); - w158.XOptions = ((global::Gtk.AttachOptions)(4)); - w158.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnMusic = new global::Gtk.Button(); - this.btnMusic.WidthRequest = 50; - this.btnMusic.HeightRequest = 50; - this.btnMusic.CanFocus = true; - this.btnMusic.Name = "btnMusic"; - this.btnMusic.UseUnderline = true; - this.btnMusic.Label = "Music"; - this.tbUI.Add(this.btnMusic); - global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); - w159.TopAttach = ((uint)(13)); - w159.BottomAttach = ((uint)(14)); - w159.LeftAttach = ((uint)(9)); - w159.RightAttach = ((uint)(10)); - w159.XOptions = ((global::Gtk.AttachOptions)(4)); - w159.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP1 = new global::Gtk.Button(); - this.btnP1.WidthRequest = 50; - this.btnP1.HeightRequest = 50; - this.btnP1.CanFocus = true; - this.btnP1.Name = "btnP1"; - this.btnP1.UseUnderline = true; - this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w160 = new global::Gtk.Image(); - this.btnP1.Image = w160; - this.tbUI.Add(this.btnP1); - global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); - w161.TopAttach = ((uint)(1)); - w161.BottomAttach = ((uint)(2)); - w161.LeftAttach = ((uint)(10)); - w161.RightAttach = ((uint)(11)); - w161.XOptions = ((global::Gtk.AttachOptions)(4)); - w161.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP10 = new global::Gtk.Button(); - this.btnP10.WidthRequest = 50; - this.btnP10.HeightRequest = 50; - this.btnP10.CanFocus = true; - this.btnP10.Name = "btnP10"; - this.btnP10.UseUnderline = true; - this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w162 = new global::Gtk.Image(); - this.btnP10.Image = w162; - this.tbUI.Add(this.btnP10); - global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); - w163.TopAttach = ((uint)(2)); - w163.BottomAttach = ((uint)(3)); - w163.LeftAttach = ((uint)(12)); - w163.RightAttach = ((uint)(13)); - w163.XOptions = ((global::Gtk.AttachOptions)(4)); - w163.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP11 = new global::Gtk.Button(); - this.btnP11.WidthRequest = 50; - this.btnP11.HeightRequest = 50; - this.btnP11.CanFocus = true; - this.btnP11.Name = "btnP11"; - this.btnP11.UseUnderline = true; - this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w164 = new global::Gtk.Image(); - this.btnP11.Image = w164; - this.tbUI.Add(this.btnP11); - global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); - w165.TopAttach = ((uint)(2)); - w165.BottomAttach = ((uint)(3)); - w165.LeftAttach = ((uint)(13)); - w165.RightAttach = ((uint)(14)); - w165.XOptions = ((global::Gtk.AttachOptions)(4)); - w165.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP12 = new global::Gtk.Button(); - this.btnP12.WidthRequest = 50; - this.btnP12.HeightRequest = 50; - this.btnP12.CanFocus = true; - this.btnP12.Name = "btnP12"; - this.btnP12.UseUnderline = true; - this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w166 = new global::Gtk.Image(); - this.btnP12.Image = w166; - this.tbUI.Add(this.btnP12); - global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); - w167.TopAttach = ((uint)(2)); - w167.BottomAttach = ((uint)(3)); - w167.LeftAttach = ((uint)(14)); - w167.RightAttach = ((uint)(15)); - w167.XOptions = ((global::Gtk.AttachOptions)(4)); - w167.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP13 = new global::Gtk.Button(); - this.btnP13.WidthRequest = 50; - this.btnP13.HeightRequest = 50; - this.btnP13.CanFocus = true; - this.btnP13.Name = "btnP13"; - this.btnP13.UseUnderline = true; - this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w168 = new global::Gtk.Image(); - this.btnP13.Image = w168; - this.tbUI.Add(this.btnP13); - global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); - w169.TopAttach = ((uint)(2)); - w169.BottomAttach = ((uint)(3)); - w169.LeftAttach = ((uint)(15)); - w169.RightAttach = ((uint)(16)); - w169.XOptions = ((global::Gtk.AttachOptions)(4)); - w169.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP14 = new global::Gtk.Button(); - this.btnP14.WidthRequest = 50; - this.btnP14.HeightRequest = 50; - this.btnP14.CanFocus = true; - this.btnP14.Name = "btnP14"; - this.btnP14.UseUnderline = true; - this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w170 = new global::Gtk.Image(); - this.btnP14.Image = w170; - this.tbUI.Add(this.btnP14); - global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); - w171.TopAttach = ((uint)(2)); - w171.BottomAttach = ((uint)(3)); - w171.LeftAttach = ((uint)(16)); - w171.RightAttach = ((uint)(17)); - w171.XOptions = ((global::Gtk.AttachOptions)(4)); - w171.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP15 = new global::Gtk.Button(); - this.btnP15.WidthRequest = 50; - this.btnP15.HeightRequest = 50; - this.btnP15.CanFocus = true; - this.btnP15.Name = "btnP15"; - this.btnP15.UseUnderline = true; - this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w172 = new global::Gtk.Image(); - this.btnP15.Image = w172; - this.tbUI.Add(this.btnP15); - global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); - w173.TopAttach = ((uint)(3)); - w173.BottomAttach = ((uint)(4)); - w173.LeftAttach = ((uint)(10)); - w173.RightAttach = ((uint)(11)); - w173.XOptions = ((global::Gtk.AttachOptions)(4)); - w173.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP16 = new global::Gtk.Button(); - this.btnP16.WidthRequest = 50; - this.btnP16.HeightRequest = 50; - this.btnP16.CanFocus = true; - this.btnP16.Name = "btnP16"; - this.btnP16.UseUnderline = true; - this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w174 = new global::Gtk.Image(); - this.btnP16.Image = w174; - this.tbUI.Add(this.btnP16); - global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); - w175.TopAttach = ((uint)(3)); - w175.BottomAttach = ((uint)(4)); - w175.LeftAttach = ((uint)(11)); - w175.RightAttach = ((uint)(12)); - w175.XOptions = ((global::Gtk.AttachOptions)(4)); - w175.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP17 = new global::Gtk.Button(); - this.btnP17.WidthRequest = 50; - this.btnP17.HeightRequest = 50; - this.btnP17.CanFocus = true; - this.btnP17.Name = "btnP17"; - this.btnP17.UseUnderline = true; - this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w176 = new global::Gtk.Image(); - this.btnP17.Image = w176; - this.tbUI.Add(this.btnP17); - global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); - w177.TopAttach = ((uint)(3)); - w177.BottomAttach = ((uint)(4)); - w177.LeftAttach = ((uint)(12)); - w177.RightAttach = ((uint)(13)); - w177.XOptions = ((global::Gtk.AttachOptions)(4)); - w177.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP18 = new global::Gtk.Button(); - this.btnP18.WidthRequest = 50; - this.btnP18.HeightRequest = 50; - this.btnP18.CanFocus = true; - this.btnP18.Name = "btnP18"; - this.btnP18.UseUnderline = true; - this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w178 = new global::Gtk.Image(); - this.btnP18.Image = w178; - this.tbUI.Add(this.btnP18); - global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); - w179.TopAttach = ((uint)(3)); - w179.BottomAttach = ((uint)(4)); - w179.LeftAttach = ((uint)(13)); - w179.RightAttach = ((uint)(14)); - w179.XOptions = ((global::Gtk.AttachOptions)(4)); - w179.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP19 = new global::Gtk.Button(); - this.btnP19.WidthRequest = 50; - this.btnP19.HeightRequest = 50; - this.btnP19.CanFocus = true; - this.btnP19.Name = "btnP19"; - this.btnP19.UseUnderline = true; - this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w180 = new global::Gtk.Image(); - this.btnP19.Image = w180; - this.tbUI.Add(this.btnP19); - global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); - w181.TopAttach = ((uint)(3)); - w181.BottomAttach = ((uint)(4)); - w181.LeftAttach = ((uint)(14)); - w181.RightAttach = ((uint)(15)); - w181.XOptions = ((global::Gtk.AttachOptions)(4)); - w181.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP2 = new global::Gtk.Button(); - this.btnP2.WidthRequest = 50; - this.btnP2.HeightRequest = 50; - this.btnP2.CanFocus = true; - this.btnP2.Name = "btnP2"; - this.btnP2.UseUnderline = true; - this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w182 = new global::Gtk.Image(); - this.btnP2.Image = w182; - this.tbUI.Add(this.btnP2); - global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); - w183.TopAttach = ((uint)(1)); - w183.BottomAttach = ((uint)(2)); - w183.LeftAttach = ((uint)(11)); - w183.RightAttach = ((uint)(12)); - w183.XOptions = ((global::Gtk.AttachOptions)(4)); - w183.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP20 = new global::Gtk.Button(); - this.btnP20.WidthRequest = 50; - this.btnP20.HeightRequest = 50; - this.btnP20.CanFocus = true; - this.btnP20.Name = "btnP20"; - this.btnP20.UseUnderline = true; - this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w184 = new global::Gtk.Image(); - this.btnP20.Image = w184; - this.tbUI.Add(this.btnP20); - global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); - w185.TopAttach = ((uint)(3)); - w185.BottomAttach = ((uint)(4)); - w185.LeftAttach = ((uint)(15)); - w185.RightAttach = ((uint)(16)); - w185.XOptions = ((global::Gtk.AttachOptions)(4)); - w185.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP21 = new global::Gtk.Button(); - this.btnP21.WidthRequest = 50; - this.btnP21.HeightRequest = 50; - this.btnP21.CanFocus = true; - this.btnP21.Name = "btnP21"; - this.btnP21.UseUnderline = true; - this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w186 = new global::Gtk.Image(); - this.btnP21.Image = w186; - this.tbUI.Add(this.btnP21); - global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); - w187.TopAttach = ((uint)(3)); - w187.BottomAttach = ((uint)(4)); - w187.LeftAttach = ((uint)(16)); - w187.RightAttach = ((uint)(17)); - w187.XOptions = ((global::Gtk.AttachOptions)(4)); - w187.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP22 = new global::Gtk.Button(); - this.btnP22.WidthRequest = 50; - this.btnP22.HeightRequest = 50; - this.btnP22.CanFocus = true; - this.btnP22.Name = "btnP22"; - this.btnP22.UseUnderline = true; - this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w188 = new global::Gtk.Image(); - this.btnP22.Image = w188; - this.tbUI.Add(this.btnP22); - global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); - w189.TopAttach = ((uint)(4)); - w189.BottomAttach = ((uint)(5)); - w189.LeftAttach = ((uint)(10)); - w189.RightAttach = ((uint)(11)); - w189.XOptions = ((global::Gtk.AttachOptions)(4)); - w189.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP23 = new global::Gtk.Button(); - this.btnP23.WidthRequest = 50; - this.btnP23.HeightRequest = 50; - this.btnP23.CanFocus = true; - this.btnP23.Name = "btnP23"; - this.btnP23.UseUnderline = true; - this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w190 = new global::Gtk.Image(); - this.btnP23.Image = w190; - this.tbUI.Add(this.btnP23); - global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); - w191.TopAttach = ((uint)(4)); - w191.BottomAttach = ((uint)(5)); - w191.LeftAttach = ((uint)(11)); - w191.RightAttach = ((uint)(12)); - w191.XOptions = ((global::Gtk.AttachOptions)(4)); - w191.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP24 = new global::Gtk.Button(); - this.btnP24.WidthRequest = 50; - this.btnP24.HeightRequest = 50; - this.btnP24.CanFocus = true; - this.btnP24.Name = "btnP24"; - this.btnP24.UseUnderline = true; - this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w192 = new global::Gtk.Image(); - this.btnP24.Image = w192; - this.tbUI.Add(this.btnP24); - global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); - w193.TopAttach = ((uint)(4)); - w193.BottomAttach = ((uint)(5)); - w193.LeftAttach = ((uint)(12)); - w193.RightAttach = ((uint)(13)); - w193.XOptions = ((global::Gtk.AttachOptions)(4)); - w193.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP25 = new global::Gtk.Button(); - this.btnP25.WidthRequest = 50; - this.btnP25.HeightRequest = 50; - this.btnP25.CanFocus = true; - this.btnP25.Name = "btnP25"; - this.btnP25.UseUnderline = true; - this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w194 = new global::Gtk.Image(); - this.btnP25.Image = w194; - this.tbUI.Add(this.btnP25); - global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); - w195.TopAttach = ((uint)(4)); - w195.BottomAttach = ((uint)(5)); - w195.LeftAttach = ((uint)(13)); - w195.RightAttach = ((uint)(14)); - w195.XOptions = ((global::Gtk.AttachOptions)(4)); - w195.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP26 = new global::Gtk.Button(); - this.btnP26.WidthRequest = 50; - this.btnP26.HeightRequest = 50; - this.btnP26.CanFocus = true; - this.btnP26.Name = "btnP26"; - this.btnP26.UseUnderline = true; - this.btnP26.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w196 = new global::Gtk.Image(); - this.btnP26.Image = w196; - this.tbUI.Add(this.btnP26); - global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP26])); - w197.TopAttach = ((uint)(4)); - w197.BottomAttach = ((uint)(5)); - w197.LeftAttach = ((uint)(14)); - w197.RightAttach = ((uint)(15)); - w197.XOptions = ((global::Gtk.AttachOptions)(4)); - w197.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP27 = new global::Gtk.Button(); - this.btnP27.WidthRequest = 50; - this.btnP27.HeightRequest = 50; - this.btnP27.CanFocus = true; - this.btnP27.Name = "btnP27"; - this.btnP27.UseUnderline = true; - this.btnP27.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w198 = new global::Gtk.Image(); - this.btnP27.Image = w198; - this.tbUI.Add(this.btnP27); - global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP27])); - w199.TopAttach = ((uint)(4)); - w199.BottomAttach = ((uint)(5)); - w199.LeftAttach = ((uint)(15)); - w199.RightAttach = ((uint)(16)); - w199.XOptions = ((global::Gtk.AttachOptions)(4)); - w199.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP28 = new global::Gtk.Button(); - this.btnP28.WidthRequest = 50; - this.btnP28.HeightRequest = 50; - this.btnP28.CanFocus = true; - this.btnP28.Name = "btnP28"; - this.btnP28.UseUnderline = true; - this.btnP28.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w200 = new global::Gtk.Image(); - this.btnP28.Image = w200; - this.tbUI.Add(this.btnP28); - global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP28])); - w201.TopAttach = ((uint)(4)); - w201.BottomAttach = ((uint)(5)); - w201.LeftAttach = ((uint)(16)); - w201.RightAttach = ((uint)(17)); - w201.XOptions = ((global::Gtk.AttachOptions)(4)); - w201.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP29 = new global::Gtk.Button(); - this.btnP29.WidthRequest = 50; - this.btnP29.HeightRequest = 50; - this.btnP29.CanFocus = true; - this.btnP29.Name = "btnP29"; - this.btnP29.UseUnderline = true; - this.btnP29.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w202 = new global::Gtk.Image(); - this.btnP29.Image = w202; - this.tbUI.Add(this.btnP29); - global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP29])); - w203.TopAttach = ((uint)(5)); - w203.BottomAttach = ((uint)(6)); - w203.LeftAttach = ((uint)(10)); - w203.RightAttach = ((uint)(11)); - w203.XOptions = ((global::Gtk.AttachOptions)(4)); - w203.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP3 = new global::Gtk.Button(); - this.btnP3.WidthRequest = 50; - this.btnP3.HeightRequest = 50; - this.btnP3.CanFocus = true; - this.btnP3.Name = "btnP3"; - this.btnP3.UseUnderline = true; - this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w204 = new global::Gtk.Image(); - this.btnP3.Image = w204; - this.tbUI.Add(this.btnP3); - global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); - w205.TopAttach = ((uint)(1)); - w205.BottomAttach = ((uint)(2)); - w205.LeftAttach = ((uint)(12)); - w205.RightAttach = ((uint)(13)); - w205.XOptions = ((global::Gtk.AttachOptions)(4)); - w205.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP30 = new global::Gtk.Button(); - this.btnP30.WidthRequest = 50; - this.btnP30.HeightRequest = 50; - this.btnP30.CanFocus = true; - this.btnP30.Name = "btnP30"; - this.btnP30.UseUnderline = true; - this.btnP30.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w206 = new global::Gtk.Image(); - this.btnP30.Image = w206; - this.tbUI.Add(this.btnP30); - global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP30])); - w207.TopAttach = ((uint)(5)); - w207.BottomAttach = ((uint)(6)); - w207.LeftAttach = ((uint)(11)); - w207.RightAttach = ((uint)(12)); - w207.XOptions = ((global::Gtk.AttachOptions)(4)); - w207.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP31 = new global::Gtk.Button(); - this.btnP31.WidthRequest = 50; - this.btnP31.HeightRequest = 50; - this.btnP31.CanFocus = true; - this.btnP31.Name = "btnP31"; - this.btnP31.UseUnderline = true; - this.btnP31.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w208 = new global::Gtk.Image(); - this.btnP31.Image = w208; - this.tbUI.Add(this.btnP31); - global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP31])); - w209.TopAttach = ((uint)(5)); - w209.BottomAttach = ((uint)(6)); - w209.LeftAttach = ((uint)(12)); - w209.RightAttach = ((uint)(13)); - w209.XOptions = ((global::Gtk.AttachOptions)(4)); - w209.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP32 = new global::Gtk.Button(); - this.btnP32.WidthRequest = 50; - this.btnP32.HeightRequest = 50; - this.btnP32.CanFocus = true; - this.btnP32.Name = "btnP32"; - this.btnP32.UseUnderline = true; - this.btnP32.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w210 = new global::Gtk.Image(); - this.btnP32.Image = w210; - this.tbUI.Add(this.btnP32); - global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP32])); - w211.TopAttach = ((uint)(5)); - w211.BottomAttach = ((uint)(6)); - w211.LeftAttach = ((uint)(13)); - w211.RightAttach = ((uint)(14)); - w211.XOptions = ((global::Gtk.AttachOptions)(4)); - w211.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP33 = new global::Gtk.Button(); - this.btnP33.WidthRequest = 50; - this.btnP33.HeightRequest = 50; - this.btnP33.CanFocus = true; - this.btnP33.Name = "btnP33"; - this.btnP33.UseUnderline = true; - this.btnP33.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w212 = new global::Gtk.Image(); - this.btnP33.Image = w212; - this.tbUI.Add(this.btnP33); - global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP33])); - w213.TopAttach = ((uint)(5)); - w213.BottomAttach = ((uint)(6)); - w213.LeftAttach = ((uint)(14)); - w213.RightAttach = ((uint)(15)); - w213.XOptions = ((global::Gtk.AttachOptions)(4)); - w213.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP34 = new global::Gtk.Button(); - this.btnP34.WidthRequest = 50; - this.btnP34.HeightRequest = 50; - this.btnP34.CanFocus = true; - this.btnP34.Name = "btnP34"; - this.btnP34.UseUnderline = true; - this.btnP34.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w214 = new global::Gtk.Image(); - this.btnP34.Image = w214; - this.tbUI.Add(this.btnP34); - global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP34])); - w215.TopAttach = ((uint)(5)); - w215.BottomAttach = ((uint)(6)); - w215.LeftAttach = ((uint)(15)); - w215.RightAttach = ((uint)(16)); - w215.XOptions = ((global::Gtk.AttachOptions)(4)); - w215.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP35 = new global::Gtk.Button(); - this.btnP35.WidthRequest = 50; - this.btnP35.HeightRequest = 50; - this.btnP35.CanFocus = true; - this.btnP35.Name = "btnP35"; - this.btnP35.UseUnderline = true; - this.btnP35.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w216 = new global::Gtk.Image(); - this.btnP35.Image = w216; - this.tbUI.Add(this.btnP35); - global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP35])); - w217.TopAttach = ((uint)(5)); - w217.BottomAttach = ((uint)(6)); - w217.LeftAttach = ((uint)(16)); - w217.RightAttach = ((uint)(17)); - w217.XOptions = ((global::Gtk.AttachOptions)(4)); - w217.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP36 = new global::Gtk.Button(); - this.btnP36.WidthRequest = 50; - this.btnP36.HeightRequest = 50; - this.btnP36.CanFocus = true; - this.btnP36.Name = "btnP36"; - this.btnP36.UseUnderline = true; - this.btnP36.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w218 = new global::Gtk.Image(); - this.btnP36.Image = w218; - this.tbUI.Add(this.btnP36); - global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP36])); - w219.TopAttach = ((uint)(6)); - w219.BottomAttach = ((uint)(7)); - w219.LeftAttach = ((uint)(10)); - w219.RightAttach = ((uint)(11)); - w219.XOptions = ((global::Gtk.AttachOptions)(4)); - w219.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP37 = new global::Gtk.Button(); - this.btnP37.WidthRequest = 50; - this.btnP37.HeightRequest = 50; - this.btnP37.CanFocus = true; - this.btnP37.Name = "btnP37"; - this.btnP37.UseUnderline = true; - this.btnP37.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w220 = new global::Gtk.Image(); - this.btnP37.Image = w220; - this.tbUI.Add(this.btnP37); - global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP37])); - w221.TopAttach = ((uint)(6)); - w221.BottomAttach = ((uint)(7)); - w221.LeftAttach = ((uint)(11)); - w221.RightAttach = ((uint)(12)); - w221.XOptions = ((global::Gtk.AttachOptions)(4)); - w221.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP38 = new global::Gtk.Button(); - this.btnP38.WidthRequest = 50; - this.btnP38.HeightRequest = 50; - this.btnP38.CanFocus = true; - this.btnP38.Name = "btnP38"; - this.btnP38.UseUnderline = true; - this.btnP38.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w222 = new global::Gtk.Image(); - this.btnP38.Image = w222; - this.tbUI.Add(this.btnP38); - global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP38])); - w223.TopAttach = ((uint)(6)); - w223.BottomAttach = ((uint)(7)); - w223.LeftAttach = ((uint)(12)); - w223.RightAttach = ((uint)(13)); - w223.XOptions = ((global::Gtk.AttachOptions)(4)); - w223.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP39 = new global::Gtk.Button(); - this.btnP39.WidthRequest = 50; - this.btnP39.HeightRequest = 50; - this.btnP39.CanFocus = true; - this.btnP39.Name = "btnP39"; - this.btnP39.UseUnderline = true; - this.btnP39.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w224 = new global::Gtk.Image(); - this.btnP39.Image = w224; - this.tbUI.Add(this.btnP39); - global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP39])); - w225.TopAttach = ((uint)(6)); - w225.BottomAttach = ((uint)(7)); - w225.LeftAttach = ((uint)(13)); - w225.RightAttach = ((uint)(14)); - w225.XOptions = ((global::Gtk.AttachOptions)(4)); - w225.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP4 = new global::Gtk.Button(); - this.btnP4.WidthRequest = 50; - this.btnP4.HeightRequest = 50; - this.btnP4.CanFocus = true; - this.btnP4.Name = "btnP4"; - this.btnP4.UseUnderline = true; - this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w226 = new global::Gtk.Image(); - this.btnP4.Image = w226; - this.tbUI.Add(this.btnP4); - global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); - w227.TopAttach = ((uint)(1)); - w227.BottomAttach = ((uint)(2)); - w227.LeftAttach = ((uint)(13)); - w227.RightAttach = ((uint)(14)); - w227.XOptions = ((global::Gtk.AttachOptions)(4)); - w227.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP40 = new global::Gtk.Button(); - this.btnP40.WidthRequest = 50; - this.btnP40.HeightRequest = 50; - this.btnP40.CanFocus = true; - this.btnP40.Name = "btnP40"; - this.btnP40.UseUnderline = true; - this.btnP40.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w228 = new global::Gtk.Image(); - this.btnP40.Image = w228; - this.tbUI.Add(this.btnP40); - global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP40])); - w229.TopAttach = ((uint)(6)); - w229.BottomAttach = ((uint)(7)); - w229.LeftAttach = ((uint)(14)); - w229.RightAttach = ((uint)(15)); - w229.XOptions = ((global::Gtk.AttachOptions)(4)); - w229.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP41 = new global::Gtk.Button(); - this.btnP41.WidthRequest = 50; - this.btnP41.HeightRequest = 50; - this.btnP41.CanFocus = true; - this.btnP41.Name = "btnP41"; - this.btnP41.UseUnderline = true; - this.btnP41.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w230 = new global::Gtk.Image(); - this.btnP41.Image = w230; - this.tbUI.Add(this.btnP41); - global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP41])); - w231.TopAttach = ((uint)(6)); - w231.BottomAttach = ((uint)(7)); - w231.LeftAttach = ((uint)(15)); - w231.RightAttach = ((uint)(16)); - w231.XOptions = ((global::Gtk.AttachOptions)(4)); - w231.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP42 = new global::Gtk.Button(); - this.btnP42.WidthRequest = 50; - this.btnP42.HeightRequest = 50; - this.btnP42.CanFocus = true; - this.btnP42.Name = "btnP42"; - this.btnP42.UseUnderline = true; - this.btnP42.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w232 = new global::Gtk.Image(); - this.btnP42.Image = w232; - this.tbUI.Add(this.btnP42); - global::Gtk.Table.TableChild w233 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP42])); - w233.TopAttach = ((uint)(6)); - w233.BottomAttach = ((uint)(7)); - w233.LeftAttach = ((uint)(16)); - w233.RightAttach = ((uint)(17)); - w233.XOptions = ((global::Gtk.AttachOptions)(4)); - w233.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP43 = new global::Gtk.Button(); - this.btnP43.WidthRequest = 50; - this.btnP43.HeightRequest = 50; - this.btnP43.CanFocus = true; - this.btnP43.Name = "btnP43"; - this.btnP43.UseUnderline = true; - this.btnP43.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w234 = new global::Gtk.Image(); - this.btnP43.Image = w234; - this.tbUI.Add(this.btnP43); - global::Gtk.Table.TableChild w235 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP43])); - w235.TopAttach = ((uint)(7)); - w235.BottomAttach = ((uint)(8)); - w235.LeftAttach = ((uint)(10)); - w235.RightAttach = ((uint)(11)); - w235.XOptions = ((global::Gtk.AttachOptions)(4)); - w235.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP44 = new global::Gtk.Button(); - this.btnP44.WidthRequest = 50; - this.btnP44.HeightRequest = 50; - this.btnP44.CanFocus = true; - this.btnP44.Name = "btnP44"; - this.btnP44.UseUnderline = true; - this.btnP44.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w236 = new global::Gtk.Image(); - this.btnP44.Image = w236; - this.tbUI.Add(this.btnP44); - global::Gtk.Table.TableChild w237 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP44])); - w237.TopAttach = ((uint)(7)); - w237.BottomAttach = ((uint)(8)); - w237.LeftAttach = ((uint)(11)); - w237.RightAttach = ((uint)(12)); - w237.XOptions = ((global::Gtk.AttachOptions)(4)); - w237.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP45 = new global::Gtk.Button(); - this.btnP45.WidthRequest = 50; - this.btnP45.HeightRequest = 50; - this.btnP45.CanFocus = true; - this.btnP45.Name = "btnP45"; - this.btnP45.UseUnderline = true; - this.btnP45.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w238 = new global::Gtk.Image(); - this.btnP45.Image = w238; - this.tbUI.Add(this.btnP45); - global::Gtk.Table.TableChild w239 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP45])); - w239.TopAttach = ((uint)(7)); - w239.BottomAttach = ((uint)(8)); - w239.LeftAttach = ((uint)(12)); - w239.RightAttach = ((uint)(13)); - w239.XOptions = ((global::Gtk.AttachOptions)(4)); - w239.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP46 = new global::Gtk.Button(); - this.btnP46.WidthRequest = 50; - this.btnP46.HeightRequest = 50; - this.btnP46.CanFocus = true; - this.btnP46.Name = "btnP46"; - this.btnP46.UseUnderline = true; - this.btnP46.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w240 = new global::Gtk.Image(); - this.btnP46.Image = w240; - this.tbUI.Add(this.btnP46); - global::Gtk.Table.TableChild w241 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP46])); - w241.TopAttach = ((uint)(7)); - w241.BottomAttach = ((uint)(8)); - w241.LeftAttach = ((uint)(13)); - w241.RightAttach = ((uint)(14)); - w241.XOptions = ((global::Gtk.AttachOptions)(4)); - w241.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP47 = new global::Gtk.Button(); - this.btnP47.WidthRequest = 50; - this.btnP47.HeightRequest = 50; - this.btnP47.CanFocus = true; - this.btnP47.Name = "btnP47"; - this.btnP47.UseUnderline = true; - this.btnP47.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w242 = new global::Gtk.Image(); - this.btnP47.Image = w242; - this.tbUI.Add(this.btnP47); - global::Gtk.Table.TableChild w243 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP47])); - w243.TopAttach = ((uint)(7)); - w243.BottomAttach = ((uint)(8)); - w243.LeftAttach = ((uint)(14)); - w243.RightAttach = ((uint)(15)); - w243.XOptions = ((global::Gtk.AttachOptions)(4)); - w243.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP48 = new global::Gtk.Button(); - this.btnP48.WidthRequest = 50; - this.btnP48.HeightRequest = 50; - this.btnP48.CanFocus = true; - this.btnP48.Name = "btnP48"; - this.btnP48.UseUnderline = true; - this.btnP48.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w244 = new global::Gtk.Image(); - this.btnP48.Image = w244; - this.tbUI.Add(this.btnP48); - global::Gtk.Table.TableChild w245 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP48])); - w245.TopAttach = ((uint)(7)); - w245.BottomAttach = ((uint)(8)); - w245.LeftAttach = ((uint)(15)); - w245.RightAttach = ((uint)(16)); - w245.XOptions = ((global::Gtk.AttachOptions)(4)); - w245.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP49 = new global::Gtk.Button(); - this.btnP49.WidthRequest = 50; - this.btnP49.HeightRequest = 50; - this.btnP49.CanFocus = true; - this.btnP49.Name = "btnP49"; - this.btnP49.UseUnderline = true; - this.btnP49.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w246 = new global::Gtk.Image(); - this.btnP49.Image = w246; - this.tbUI.Add(this.btnP49); - global::Gtk.Table.TableChild w247 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP49])); - w247.TopAttach = ((uint)(7)); - w247.BottomAttach = ((uint)(8)); - w247.LeftAttach = ((uint)(16)); - w247.RightAttach = ((uint)(17)); - w247.XOptions = ((global::Gtk.AttachOptions)(4)); - w247.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP5 = new global::Gtk.Button(); - this.btnP5.WidthRequest = 50; - this.btnP5.HeightRequest = 50; - this.btnP5.CanFocus = true; - this.btnP5.Name = "btnP5"; - this.btnP5.UseUnderline = true; - this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w248 = new global::Gtk.Image(); - this.btnP5.Image = w248; - this.tbUI.Add(this.btnP5); - global::Gtk.Table.TableChild w249 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); - w249.TopAttach = ((uint)(1)); - w249.BottomAttach = ((uint)(2)); - w249.LeftAttach = ((uint)(14)); - w249.RightAttach = ((uint)(15)); - w249.XOptions = ((global::Gtk.AttachOptions)(4)); - w249.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP6 = new global::Gtk.Button(); - this.btnP6.WidthRequest = 50; - this.btnP6.HeightRequest = 50; - this.btnP6.CanFocus = true; - this.btnP6.Name = "btnP6"; - this.btnP6.UseUnderline = true; - this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w250 = new global::Gtk.Image(); - this.btnP6.Image = w250; - this.tbUI.Add(this.btnP6); - global::Gtk.Table.TableChild w251 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); - w251.TopAttach = ((uint)(1)); - w251.BottomAttach = ((uint)(2)); - w251.LeftAttach = ((uint)(15)); - w251.RightAttach = ((uint)(16)); - w251.XOptions = ((global::Gtk.AttachOptions)(4)); - w251.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP7 = new global::Gtk.Button(); - this.btnP7.WidthRequest = 50; - this.btnP7.HeightRequest = 50; - this.btnP7.CanFocus = true; - this.btnP7.Name = "btnP7"; - this.btnP7.UseUnderline = true; - this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w252 = new global::Gtk.Image(); - this.btnP7.Image = w252; - this.tbUI.Add(this.btnP7); - global::Gtk.Table.TableChild w253 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); - w253.TopAttach = ((uint)(1)); - w253.BottomAttach = ((uint)(2)); - w253.LeftAttach = ((uint)(16)); - w253.RightAttach = ((uint)(17)); - w253.XOptions = ((global::Gtk.AttachOptions)(4)); - w253.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP8 = new global::Gtk.Button(); - this.btnP8.WidthRequest = 50; - this.btnP8.HeightRequest = 50; - this.btnP8.CanFocus = true; - this.btnP8.Name = "btnP8"; - this.btnP8.UseUnderline = true; - this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w254 = new global::Gtk.Image(); - this.btnP8.Image = w254; - this.tbUI.Add(this.btnP8); - global::Gtk.Table.TableChild w255 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); - w255.TopAttach = ((uint)(2)); - w255.BottomAttach = ((uint)(3)); - w255.LeftAttach = ((uint)(10)); - w255.RightAttach = ((uint)(11)); - w255.XOptions = ((global::Gtk.AttachOptions)(4)); - w255.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP9 = new global::Gtk.Button(); - this.btnP9.WidthRequest = 50; - this.btnP9.HeightRequest = 50; - this.btnP9.CanFocus = true; - this.btnP9.Name = "btnP9"; - this.btnP9.UseUnderline = true; - this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w256 = new global::Gtk.Image(); - this.btnP9.Image = w256; - this.tbUI.Add(this.btnP9); - global::Gtk.Table.TableChild w257 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); - w257.TopAttach = ((uint)(2)); - w257.BottomAttach = ((uint)(3)); - w257.LeftAttach = ((uint)(11)); - w257.RightAttach = ((uint)(12)); - w257.XOptions = ((global::Gtk.AttachOptions)(4)); - w257.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnPause = new global::Gtk.Button(); - this.btnPause.WidthRequest = 50; - this.btnPause.HeightRequest = 50; - this.btnPause.CanFocus = true; - this.btnPause.Name = "btnPause"; - this.btnPause.UseUnderline = true; - this.btnPause.Label = "Pause"; - this.tbUI.Add(this.btnPause); - global::Gtk.Table.TableChild w258 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); - w258.TopAttach = ((uint)(13)); - w258.BottomAttach = ((uint)(14)); - w258.LeftAttach = ((uint)(17)); - w258.RightAttach = ((uint)(18)); - w258.XOptions = ((global::Gtk.AttachOptions)(4)); - w258.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG1 = new global::Gtk.Image(); - this.imgG1.WidthRequest = 50; - this.imgG1.HeightRequest = 50; - this.imgG1.Name = "imgG1"; - this.tbUI.Add(this.imgG1); - global::Gtk.Table.TableChild w259 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); - w259.TopAttach = ((uint)(2)); - w259.BottomAttach = ((uint)(3)); - w259.LeftAttach = ((uint)(1)); - w259.RightAttach = ((uint)(2)); - w259.XOptions = ((global::Gtk.AttachOptions)(4)); - w259.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG10 = new global::Gtk.Image(); - this.imgG10.WidthRequest = 50; - this.imgG10.HeightRequest = 50; - this.imgG10.Name = "imgG10"; - this.tbUI.Add(this.imgG10); - global::Gtk.Table.TableChild w260 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); - w260.TopAttach = ((uint)(3)); - w260.BottomAttach = ((uint)(4)); - w260.LeftAttach = ((uint)(3)); - w260.RightAttach = ((uint)(4)); - w260.XOptions = ((global::Gtk.AttachOptions)(4)); - w260.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG11 = new global::Gtk.Image(); - this.imgG11.WidthRequest = 50; - this.imgG11.HeightRequest = 50; - this.imgG11.Name = "imgG11"; - this.tbUI.Add(this.imgG11); - global::Gtk.Table.TableChild w261 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); - w261.TopAttach = ((uint)(3)); - w261.BottomAttach = ((uint)(4)); - w261.LeftAttach = ((uint)(4)); - w261.RightAttach = ((uint)(5)); - w261.XOptions = ((global::Gtk.AttachOptions)(4)); - w261.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG12 = new global::Gtk.Image(); - this.imgG12.WidthRequest = 50; - this.imgG12.HeightRequest = 50; - this.imgG12.Name = "imgG12"; - this.tbUI.Add(this.imgG12); - global::Gtk.Table.TableChild w262 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); - w262.TopAttach = ((uint)(3)); - w262.BottomAttach = ((uint)(4)); - w262.LeftAttach = ((uint)(5)); - w262.RightAttach = ((uint)(6)); - w262.XOptions = ((global::Gtk.AttachOptions)(4)); - w262.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG13 = new global::Gtk.Image(); - this.imgG13.WidthRequest = 50; - this.imgG13.HeightRequest = 50; - this.imgG13.Name = "imgG13"; - this.tbUI.Add(this.imgG13); - global::Gtk.Table.TableChild w263 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); - w263.TopAttach = ((uint)(3)); - w263.BottomAttach = ((uint)(4)); - w263.LeftAttach = ((uint)(6)); - w263.RightAttach = ((uint)(7)); - w263.XOptions = ((global::Gtk.AttachOptions)(4)); - w263.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG14 = new global::Gtk.Image(); - this.imgG14.WidthRequest = 50; - this.imgG14.HeightRequest = 50; - this.imgG14.Name = "imgG14"; - this.tbUI.Add(this.imgG14); - global::Gtk.Table.TableChild w264 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); - w264.TopAttach = ((uint)(3)); - w264.BottomAttach = ((uint)(4)); - w264.LeftAttach = ((uint)(7)); - w264.RightAttach = ((uint)(8)); - w264.XOptions = ((global::Gtk.AttachOptions)(4)); - w264.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG15 = new global::Gtk.Image(); - this.imgG15.WidthRequest = 50; - this.imgG15.HeightRequest = 50; - this.imgG15.Name = "imgG15"; - this.tbUI.Add(this.imgG15); - global::Gtk.Table.TableChild w265 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); - w265.TopAttach = ((uint)(4)); - w265.BottomAttach = ((uint)(5)); - w265.LeftAttach = ((uint)(1)); - w265.RightAttach = ((uint)(2)); - w265.XOptions = ((global::Gtk.AttachOptions)(4)); - w265.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG16 = new global::Gtk.Image(); - this.imgG16.WidthRequest = 50; - this.imgG16.HeightRequest = 50; - this.imgG16.Name = "imgG16"; - this.tbUI.Add(this.imgG16); - global::Gtk.Table.TableChild w266 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); - w266.TopAttach = ((uint)(4)); - w266.BottomAttach = ((uint)(5)); - w266.LeftAttach = ((uint)(2)); - w266.RightAttach = ((uint)(3)); - w266.XOptions = ((global::Gtk.AttachOptions)(4)); - w266.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG17 = new global::Gtk.Image(); - this.imgG17.WidthRequest = 50; - this.imgG17.HeightRequest = 50; - this.imgG17.Name = "imgG17"; - this.tbUI.Add(this.imgG17); - global::Gtk.Table.TableChild w267 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); - w267.TopAttach = ((uint)(4)); - w267.BottomAttach = ((uint)(5)); - w267.LeftAttach = ((uint)(3)); - w267.RightAttach = ((uint)(4)); - w267.XOptions = ((global::Gtk.AttachOptions)(4)); - w267.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG18 = new global::Gtk.Image(); - this.imgG18.WidthRequest = 50; - this.imgG18.HeightRequest = 50; - this.imgG18.Name = "imgG18"; - this.tbUI.Add(this.imgG18); - global::Gtk.Table.TableChild w268 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); - w268.TopAttach = ((uint)(4)); - w268.BottomAttach = ((uint)(5)); - w268.LeftAttach = ((uint)(4)); - w268.RightAttach = ((uint)(5)); - w268.XOptions = ((global::Gtk.AttachOptions)(4)); - w268.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG19 = new global::Gtk.Image(); - this.imgG19.WidthRequest = 50; - this.imgG19.HeightRequest = 50; - this.imgG19.Name = "imgG19"; - this.tbUI.Add(this.imgG19); - global::Gtk.Table.TableChild w269 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); - w269.TopAttach = ((uint)(4)); - w269.BottomAttach = ((uint)(5)); - w269.LeftAttach = ((uint)(5)); - w269.RightAttach = ((uint)(6)); - w269.XOptions = ((global::Gtk.AttachOptions)(4)); - w269.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG2 = new global::Gtk.Image(); - this.imgG2.WidthRequest = 50; - this.imgG2.HeightRequest = 50; - this.imgG2.Name = "imgG2"; - this.tbUI.Add(this.imgG2); - global::Gtk.Table.TableChild w270 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); - w270.TopAttach = ((uint)(2)); - w270.BottomAttach = ((uint)(3)); - w270.LeftAttach = ((uint)(2)); - w270.RightAttach = ((uint)(3)); - w270.XOptions = ((global::Gtk.AttachOptions)(4)); - w270.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG20 = new global::Gtk.Image(); - this.imgG20.WidthRequest = 50; - this.imgG20.HeightRequest = 50; - this.imgG20.Name = "imgG20"; - this.tbUI.Add(this.imgG20); - global::Gtk.Table.TableChild w271 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); - w271.TopAttach = ((uint)(4)); - w271.BottomAttach = ((uint)(5)); - w271.LeftAttach = ((uint)(6)); - w271.RightAttach = ((uint)(7)); - w271.XOptions = ((global::Gtk.AttachOptions)(4)); - w271.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG21 = new global::Gtk.Image(); - this.imgG21.WidthRequest = 50; - this.imgG21.HeightRequest = 50; - this.imgG21.Name = "imgG21"; - this.tbUI.Add(this.imgG21); - global::Gtk.Table.TableChild w272 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); - w272.TopAttach = ((uint)(4)); - w272.BottomAttach = ((uint)(5)); - w272.LeftAttach = ((uint)(7)); - w272.RightAttach = ((uint)(8)); - w272.XOptions = ((global::Gtk.AttachOptions)(4)); - w272.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG22 = new global::Gtk.Image(); - this.imgG22.WidthRequest = 50; - this.imgG22.HeightRequest = 50; - this.imgG22.Name = "imgG22"; - this.tbUI.Add(this.imgG22); - global::Gtk.Table.TableChild w273 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); - w273.TopAttach = ((uint)(5)); - w273.BottomAttach = ((uint)(6)); - w273.LeftAttach = ((uint)(1)); - w273.RightAttach = ((uint)(2)); - w273.XOptions = ((global::Gtk.AttachOptions)(4)); - w273.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG23 = new global::Gtk.Image(); - this.imgG23.WidthRequest = 50; - this.imgG23.HeightRequest = 50; - this.imgG23.Name = "imgG23"; - this.tbUI.Add(this.imgG23); - global::Gtk.Table.TableChild w274 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); - w274.TopAttach = ((uint)(5)); - w274.BottomAttach = ((uint)(6)); - w274.LeftAttach = ((uint)(2)); - w274.RightAttach = ((uint)(3)); - w274.XOptions = ((global::Gtk.AttachOptions)(4)); - w274.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG24 = new global::Gtk.Image(); - this.imgG24.WidthRequest = 50; - this.imgG24.HeightRequest = 50; - this.imgG24.Name = "imgG24"; - this.tbUI.Add(this.imgG24); - global::Gtk.Table.TableChild w275 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); - w275.TopAttach = ((uint)(5)); - w275.BottomAttach = ((uint)(6)); - w275.LeftAttach = ((uint)(3)); - w275.RightAttach = ((uint)(4)); - w275.XOptions = ((global::Gtk.AttachOptions)(4)); - w275.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG25 = new global::Gtk.Image(); - this.imgG25.WidthRequest = 50; - this.imgG25.HeightRequest = 50; - this.imgG25.Name = "imgG25"; - this.tbUI.Add(this.imgG25); - global::Gtk.Table.TableChild w276 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); - w276.TopAttach = ((uint)(5)); - w276.BottomAttach = ((uint)(6)); - w276.LeftAttach = ((uint)(4)); - w276.RightAttach = ((uint)(5)); - w276.XOptions = ((global::Gtk.AttachOptions)(4)); - w276.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG26 = new global::Gtk.Image(); - this.imgG26.WidthRequest = 50; - this.imgG26.HeightRequest = 50; - this.imgG26.Name = "imgG26"; - this.tbUI.Add(this.imgG26); - global::Gtk.Table.TableChild w277 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG26])); - w277.TopAttach = ((uint)(5)); - w277.BottomAttach = ((uint)(6)); - w277.LeftAttach = ((uint)(5)); - w277.RightAttach = ((uint)(6)); - w277.XOptions = ((global::Gtk.AttachOptions)(4)); - w277.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG27 = new global::Gtk.Image(); - this.imgG27.WidthRequest = 50; - this.imgG27.HeightRequest = 50; - this.imgG27.Name = "imgG27"; - this.tbUI.Add(this.imgG27); - global::Gtk.Table.TableChild w278 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG27])); - w278.TopAttach = ((uint)(5)); - w278.BottomAttach = ((uint)(6)); - w278.LeftAttach = ((uint)(6)); - w278.RightAttach = ((uint)(7)); - w278.XOptions = ((global::Gtk.AttachOptions)(4)); - w278.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG28 = new global::Gtk.Image(); - this.imgG28.WidthRequest = 50; - this.imgG28.HeightRequest = 50; - this.imgG28.Name = "imgG28"; - this.tbUI.Add(this.imgG28); - global::Gtk.Table.TableChild w279 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG28])); - w279.TopAttach = ((uint)(5)); - w279.BottomAttach = ((uint)(6)); - w279.LeftAttach = ((uint)(7)); - w279.RightAttach = ((uint)(8)); - w279.XOptions = ((global::Gtk.AttachOptions)(4)); - w279.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG29 = new global::Gtk.Image(); - this.imgG29.WidthRequest = 50; - this.imgG29.HeightRequest = 50; - this.imgG29.Name = "imgG29"; - this.tbUI.Add(this.imgG29); - global::Gtk.Table.TableChild w280 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG29])); - w280.TopAttach = ((uint)(6)); - w280.BottomAttach = ((uint)(7)); - w280.LeftAttach = ((uint)(1)); - w280.RightAttach = ((uint)(2)); - w280.XOptions = ((global::Gtk.AttachOptions)(4)); - w280.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG3 = new global::Gtk.Image(); - this.imgG3.WidthRequest = 50; - this.imgG3.HeightRequest = 50; - this.imgG3.Name = "imgG3"; - this.tbUI.Add(this.imgG3); - global::Gtk.Table.TableChild w281 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); - w281.TopAttach = ((uint)(2)); - w281.BottomAttach = ((uint)(3)); - w281.LeftAttach = ((uint)(3)); - w281.RightAttach = ((uint)(4)); - w281.XOptions = ((global::Gtk.AttachOptions)(4)); - w281.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG30 = new global::Gtk.Image(); - this.imgG30.WidthRequest = 50; - this.imgG30.HeightRequest = 50; - this.imgG30.Name = "imgG30"; - this.tbUI.Add(this.imgG30); - global::Gtk.Table.TableChild w282 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG30])); - w282.TopAttach = ((uint)(6)); - w282.BottomAttach = ((uint)(7)); - w282.LeftAttach = ((uint)(2)); - w282.RightAttach = ((uint)(3)); - w282.XOptions = ((global::Gtk.AttachOptions)(4)); - w282.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG31 = new global::Gtk.Image(); - this.imgG31.WidthRequest = 50; - this.imgG31.HeightRequest = 50; - this.imgG31.Name = "imgG31"; - this.tbUI.Add(this.imgG31); - global::Gtk.Table.TableChild w283 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG31])); - w283.TopAttach = ((uint)(6)); - w283.BottomAttach = ((uint)(7)); - w283.LeftAttach = ((uint)(3)); - w283.RightAttach = ((uint)(4)); - w283.XOptions = ((global::Gtk.AttachOptions)(4)); - w283.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG32 = new global::Gtk.Image(); - this.imgG32.WidthRequest = 50; - this.imgG32.HeightRequest = 50; - this.imgG32.Name = "imgG32"; - this.tbUI.Add(this.imgG32); - global::Gtk.Table.TableChild w284 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG32])); - w284.TopAttach = ((uint)(6)); - w284.BottomAttach = ((uint)(7)); - w284.LeftAttach = ((uint)(4)); - w284.RightAttach = ((uint)(5)); - w284.XOptions = ((global::Gtk.AttachOptions)(4)); - w284.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG33 = new global::Gtk.Image(); - this.imgG33.WidthRequest = 50; - this.imgG33.HeightRequest = 50; - this.imgG33.Name = "imgG33"; - this.tbUI.Add(this.imgG33); - global::Gtk.Table.TableChild w285 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG33])); - w285.TopAttach = ((uint)(6)); - w285.BottomAttach = ((uint)(7)); - w285.LeftAttach = ((uint)(5)); - w285.RightAttach = ((uint)(6)); - w285.XOptions = ((global::Gtk.AttachOptions)(4)); - w285.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG34 = new global::Gtk.Image(); - this.imgG34.WidthRequest = 50; - this.imgG34.HeightRequest = 50; - this.imgG34.Name = "imgG34"; - this.tbUI.Add(this.imgG34); - global::Gtk.Table.TableChild w286 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG34])); - w286.TopAttach = ((uint)(6)); - w286.BottomAttach = ((uint)(7)); - w286.LeftAttach = ((uint)(6)); - w286.RightAttach = ((uint)(7)); - w286.XOptions = ((global::Gtk.AttachOptions)(4)); - w286.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG35 = new global::Gtk.Image(); - this.imgG35.WidthRequest = 50; - this.imgG35.HeightRequest = 50; - this.imgG35.Name = "imgG35"; - this.tbUI.Add(this.imgG35); - global::Gtk.Table.TableChild w287 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG35])); - w287.TopAttach = ((uint)(6)); - w287.BottomAttach = ((uint)(7)); - w287.LeftAttach = ((uint)(7)); - w287.RightAttach = ((uint)(8)); - w287.XOptions = ((global::Gtk.AttachOptions)(4)); - w287.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG36 = new global::Gtk.Image(); - this.imgG36.WidthRequest = 50; - this.imgG36.HeightRequest = 50; - this.imgG36.Name = "imgG36"; - this.tbUI.Add(this.imgG36); - global::Gtk.Table.TableChild w288 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG36])); - w288.TopAttach = ((uint)(7)); - w288.BottomAttach = ((uint)(8)); - w288.LeftAttach = ((uint)(1)); - w288.RightAttach = ((uint)(2)); - w288.XOptions = ((global::Gtk.AttachOptions)(4)); - w288.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG37 = new global::Gtk.Image(); - this.imgG37.WidthRequest = 50; - this.imgG37.HeightRequest = 50; - this.imgG37.Name = "imgG37"; - this.tbUI.Add(this.imgG37); - global::Gtk.Table.TableChild w289 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG37])); - w289.TopAttach = ((uint)(7)); - w289.BottomAttach = ((uint)(8)); - w289.LeftAttach = ((uint)(2)); - w289.RightAttach = ((uint)(3)); - w289.XOptions = ((global::Gtk.AttachOptions)(4)); - w289.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG38 = new global::Gtk.Image(); - this.imgG38.WidthRequest = 50; - this.imgG38.HeightRequest = 50; - this.imgG38.Name = "imgG38"; - this.tbUI.Add(this.imgG38); - global::Gtk.Table.TableChild w290 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG38])); - w290.TopAttach = ((uint)(7)); - w290.BottomAttach = ((uint)(8)); - w290.LeftAttach = ((uint)(3)); - w290.RightAttach = ((uint)(4)); - w290.XOptions = ((global::Gtk.AttachOptions)(4)); - w290.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG39 = new global::Gtk.Image(); - this.imgG39.WidthRequest = 50; - this.imgG39.HeightRequest = 50; - this.imgG39.Name = "imgG39"; - this.tbUI.Add(this.imgG39); - global::Gtk.Table.TableChild w291 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG39])); - w291.TopAttach = ((uint)(7)); - w291.BottomAttach = ((uint)(8)); - w291.LeftAttach = ((uint)(4)); - w291.RightAttach = ((uint)(5)); - w291.XOptions = ((global::Gtk.AttachOptions)(4)); - w291.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG4 = new global::Gtk.Image(); - this.imgG4.WidthRequest = 50; - this.imgG4.HeightRequest = 50; - this.imgG4.Name = "imgG4"; - this.tbUI.Add(this.imgG4); - global::Gtk.Table.TableChild w292 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); - w292.TopAttach = ((uint)(2)); - w292.BottomAttach = ((uint)(3)); - w292.LeftAttach = ((uint)(4)); - w292.RightAttach = ((uint)(5)); - w292.XOptions = ((global::Gtk.AttachOptions)(4)); - w292.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG40 = new global::Gtk.Image(); - this.imgG40.WidthRequest = 50; - this.imgG40.HeightRequest = 50; - this.imgG40.Name = "imgG40"; - this.tbUI.Add(this.imgG40); - global::Gtk.Table.TableChild w293 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG40])); - w293.TopAttach = ((uint)(7)); - w293.BottomAttach = ((uint)(8)); - w293.LeftAttach = ((uint)(5)); - w293.RightAttach = ((uint)(6)); - w293.XOptions = ((global::Gtk.AttachOptions)(4)); - w293.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG41 = new global::Gtk.Image(); - this.imgG41.WidthRequest = 50; - this.imgG41.HeightRequest = 50; - this.imgG41.Name = "imgG41"; - this.tbUI.Add(this.imgG41); - global::Gtk.Table.TableChild w294 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG41])); - w294.TopAttach = ((uint)(7)); - w294.BottomAttach = ((uint)(8)); - w294.LeftAttach = ((uint)(6)); - w294.RightAttach = ((uint)(7)); - w294.XOptions = ((global::Gtk.AttachOptions)(4)); - w294.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG42 = new global::Gtk.Image(); - this.imgG42.WidthRequest = 50; - this.imgG42.HeightRequest = 50; - this.imgG42.Name = "imgG42"; - this.tbUI.Add(this.imgG42); - global::Gtk.Table.TableChild w295 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG42])); - w295.TopAttach = ((uint)(7)); - w295.BottomAttach = ((uint)(8)); - w295.LeftAttach = ((uint)(7)); - w295.RightAttach = ((uint)(8)); - w295.XOptions = ((global::Gtk.AttachOptions)(4)); - w295.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG43 = new global::Gtk.Image(); - this.imgG43.WidthRequest = 50; - this.imgG43.HeightRequest = 50; - this.imgG43.Name = "imgG43"; - this.tbUI.Add(this.imgG43); - global::Gtk.Table.TableChild w296 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG43])); - w296.TopAttach = ((uint)(8)); - w296.BottomAttach = ((uint)(9)); - w296.LeftAttach = ((uint)(1)); - w296.RightAttach = ((uint)(2)); - w296.XOptions = ((global::Gtk.AttachOptions)(4)); - w296.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG44 = new global::Gtk.Image(); - this.imgG44.WidthRequest = 50; - this.imgG44.HeightRequest = 50; - this.imgG44.Name = "imgG44"; - this.tbUI.Add(this.imgG44); - global::Gtk.Table.TableChild w297 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG44])); - w297.TopAttach = ((uint)(8)); - w297.BottomAttach = ((uint)(9)); - w297.LeftAttach = ((uint)(2)); - w297.RightAttach = ((uint)(3)); - w297.XOptions = ((global::Gtk.AttachOptions)(4)); - w297.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG45 = new global::Gtk.Image(); - this.imgG45.WidthRequest = 50; - this.imgG45.HeightRequest = 50; - this.imgG45.Name = "imgG45"; - this.tbUI.Add(this.imgG45); - global::Gtk.Table.TableChild w298 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG45])); - w298.TopAttach = ((uint)(8)); - w298.BottomAttach = ((uint)(9)); - w298.LeftAttach = ((uint)(3)); - w298.RightAttach = ((uint)(4)); - w298.XOptions = ((global::Gtk.AttachOptions)(4)); - w298.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG46 = new global::Gtk.Image(); - this.imgG46.WidthRequest = 50; - this.imgG46.HeightRequest = 50; - this.imgG46.Name = "imgG46"; - this.tbUI.Add(this.imgG46); - global::Gtk.Table.TableChild w299 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG46])); - w299.TopAttach = ((uint)(8)); - w299.BottomAttach = ((uint)(9)); - w299.LeftAttach = ((uint)(4)); - w299.RightAttach = ((uint)(5)); - w299.XOptions = ((global::Gtk.AttachOptions)(4)); - w299.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG47 = new global::Gtk.Image(); - this.imgG47.WidthRequest = 50; - this.imgG47.HeightRequest = 50; - this.imgG47.Name = "imgG47"; - this.tbUI.Add(this.imgG47); - global::Gtk.Table.TableChild w300 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG47])); - w300.TopAttach = ((uint)(8)); - w300.BottomAttach = ((uint)(9)); - w300.LeftAttach = ((uint)(5)); - w300.RightAttach = ((uint)(6)); - w300.XOptions = ((global::Gtk.AttachOptions)(4)); - w300.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG48 = new global::Gtk.Image(); - this.imgG48.WidthRequest = 50; - this.imgG48.HeightRequest = 50; - this.imgG48.Name = "imgG48"; - this.tbUI.Add(this.imgG48); - global::Gtk.Table.TableChild w301 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG48])); - w301.TopAttach = ((uint)(8)); - w301.BottomAttach = ((uint)(9)); - w301.LeftAttach = ((uint)(6)); - w301.RightAttach = ((uint)(7)); - w301.XOptions = ((global::Gtk.AttachOptions)(4)); - w301.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG49 = new global::Gtk.Image(); - this.imgG49.WidthRequest = 50; - this.imgG49.HeightRequest = 50; - this.imgG49.Name = "imgG49"; - this.tbUI.Add(this.imgG49); - global::Gtk.Table.TableChild w302 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG49])); - w302.TopAttach = ((uint)(8)); - w302.BottomAttach = ((uint)(9)); - w302.LeftAttach = ((uint)(7)); - w302.RightAttach = ((uint)(8)); - w302.XOptions = ((global::Gtk.AttachOptions)(4)); - w302.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG5 = new global::Gtk.Image(); - this.imgG5.WidthRequest = 50; - this.imgG5.HeightRequest = 50; - this.imgG5.Name = "imgG5"; - this.tbUI.Add(this.imgG5); - global::Gtk.Table.TableChild w303 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); - w303.TopAttach = ((uint)(2)); - w303.BottomAttach = ((uint)(3)); - w303.LeftAttach = ((uint)(5)); - w303.RightAttach = ((uint)(6)); - w303.XOptions = ((global::Gtk.AttachOptions)(4)); - w303.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG6 = new global::Gtk.Image(); - this.imgG6.WidthRequest = 50; - this.imgG6.HeightRequest = 50; - this.imgG6.Name = "imgG6"; - this.tbUI.Add(this.imgG6); - global::Gtk.Table.TableChild w304 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); - w304.TopAttach = ((uint)(2)); - w304.BottomAttach = ((uint)(3)); - w304.LeftAttach = ((uint)(6)); - w304.RightAttach = ((uint)(7)); - w304.XOptions = ((global::Gtk.AttachOptions)(4)); - w304.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG7 = new global::Gtk.Image(); - this.imgG7.WidthRequest = 50; - this.imgG7.HeightRequest = 50; - this.imgG7.Name = "imgG7"; - this.tbUI.Add(this.imgG7); - global::Gtk.Table.TableChild w305 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); - w305.TopAttach = ((uint)(2)); - w305.BottomAttach = ((uint)(3)); - w305.LeftAttach = ((uint)(7)); - w305.RightAttach = ((uint)(8)); - w305.XOptions = ((global::Gtk.AttachOptions)(4)); - w305.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG8 = new global::Gtk.Image(); - this.imgG8.WidthRequest = 50; - this.imgG8.HeightRequest = 50; - this.imgG8.Name = "imgG8"; - this.tbUI.Add(this.imgG8); - global::Gtk.Table.TableChild w306 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); - w306.TopAttach = ((uint)(3)); - w306.BottomAttach = ((uint)(4)); - w306.LeftAttach = ((uint)(1)); - w306.RightAttach = ((uint)(2)); - w306.XOptions = ((global::Gtk.AttachOptions)(4)); - w306.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG9 = new global::Gtk.Image(); - this.imgG9.WidthRequest = 50; - this.imgG9.HeightRequest = 50; - this.imgG9.Name = "imgG9"; - this.tbUI.Add(this.imgG9); - global::Gtk.Table.TableChild w307 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); - w307.TopAttach = ((uint)(3)); - w307.BottomAttach = ((uint)(4)); - w307.LeftAttach = ((uint)(2)); - w307.RightAttach = ((uint)(3)); - w307.XOptions = ((global::Gtk.AttachOptions)(4)); - w307.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI1 = new global::Gtk.Image(); - this.imgI1.WidthRequest = 50; - this.imgI1.HeightRequest = 50; - this.imgI1.Name = "imgI1"; - this.tbUI.Add(this.imgI1); - global::Gtk.Table.TableChild w308 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); - w308.TopAttach = ((uint)(12)); - w308.BottomAttach = ((uint)(13)); - w308.LeftAttach = ((uint)(1)); - w308.RightAttach = ((uint)(2)); - w308.XOptions = ((global::Gtk.AttachOptions)(4)); - w308.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI10 = new global::Gtk.Image(); - this.imgI10.WidthRequest = 50; - this.imgI10.HeightRequest = 50; - this.imgI10.Name = "imgI10"; - this.tbUI.Add(this.imgI10); - global::Gtk.Table.TableChild w309 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); - w309.TopAttach = ((uint)(13)); - w309.BottomAttach = ((uint)(14)); - w309.LeftAttach = ((uint)(3)); - w309.RightAttach = ((uint)(4)); - w309.XOptions = ((global::Gtk.AttachOptions)(4)); - w309.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI11 = new global::Gtk.Image(); - this.imgI11.WidthRequest = 50; - this.imgI11.HeightRequest = 50; - this.imgI11.Name = "imgI11"; - this.tbUI.Add(this.imgI11); - global::Gtk.Table.TableChild w310 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); - w310.TopAttach = ((uint)(13)); - w310.BottomAttach = ((uint)(14)); - w310.LeftAttach = ((uint)(4)); - w310.RightAttach = ((uint)(5)); - w310.XOptions = ((global::Gtk.AttachOptions)(4)); - w310.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI12 = new global::Gtk.Image(); - this.imgI12.WidthRequest = 50; - this.imgI12.HeightRequest = 50; - this.imgI12.Name = "imgI12"; - this.tbUI.Add(this.imgI12); - global::Gtk.Table.TableChild w311 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); - w311.TopAttach = ((uint)(13)); - w311.BottomAttach = ((uint)(14)); - w311.LeftAttach = ((uint)(5)); - w311.RightAttach = ((uint)(6)); - w311.XOptions = ((global::Gtk.AttachOptions)(4)); - w311.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI13 = new global::Gtk.Image(); - this.imgI13.WidthRequest = 50; - this.imgI13.HeightRequest = 50; - this.imgI13.Name = "imgI13"; - this.tbUI.Add(this.imgI13); - global::Gtk.Table.TableChild w312 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); - w312.TopAttach = ((uint)(13)); - w312.BottomAttach = ((uint)(14)); - w312.LeftAttach = ((uint)(6)); - w312.RightAttach = ((uint)(7)); - w312.XOptions = ((global::Gtk.AttachOptions)(4)); - w312.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI14 = new global::Gtk.Image(); - this.imgI14.WidthRequest = 50; - this.imgI14.HeightRequest = 50; - this.imgI14.Name = "imgI14"; - this.tbUI.Add(this.imgI14); - global::Gtk.Table.TableChild w313 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); - w313.TopAttach = ((uint)(13)); - w313.BottomAttach = ((uint)(14)); - w313.LeftAttach = ((uint)(7)); - w313.RightAttach = ((uint)(8)); - w313.XOptions = ((global::Gtk.AttachOptions)(4)); - w313.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI15 = new global::Gtk.Image(); - this.imgI15.WidthRequest = 50; - this.imgI15.HeightRequest = 50; - this.imgI15.Name = "imgI15"; - this.tbUI.Add(this.imgI15); - global::Gtk.Table.TableChild w314 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); - w314.TopAttach = ((uint)(14)); - w314.BottomAttach = ((uint)(15)); - w314.LeftAttach = ((uint)(1)); - w314.RightAttach = ((uint)(2)); - w314.XOptions = ((global::Gtk.AttachOptions)(4)); - w314.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI16 = new global::Gtk.Image(); - this.imgI16.WidthRequest = 50; - this.imgI16.HeightRequest = 50; - this.imgI16.Name = "imgI16"; - this.tbUI.Add(this.imgI16); - global::Gtk.Table.TableChild w315 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); - w315.TopAttach = ((uint)(14)); - w315.BottomAttach = ((uint)(15)); - w315.LeftAttach = ((uint)(2)); - w315.RightAttach = ((uint)(3)); - w315.XOptions = ((global::Gtk.AttachOptions)(4)); - w315.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI17 = new global::Gtk.Image(); - this.imgI17.WidthRequest = 50; - this.imgI17.HeightRequest = 50; - this.imgI17.Name = "imgI17"; - this.tbUI.Add(this.imgI17); - global::Gtk.Table.TableChild w316 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); - w316.TopAttach = ((uint)(14)); - w316.BottomAttach = ((uint)(15)); - w316.LeftAttach = ((uint)(3)); - w316.RightAttach = ((uint)(4)); - w316.XOptions = ((global::Gtk.AttachOptions)(4)); - w316.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI18 = new global::Gtk.Image(); - this.imgI18.WidthRequest = 50; - this.imgI18.HeightRequest = 50; - this.imgI18.Name = "imgI18"; - this.tbUI.Add(this.imgI18); - global::Gtk.Table.TableChild w317 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); - w317.TopAttach = ((uint)(14)); - w317.BottomAttach = ((uint)(15)); - w317.LeftAttach = ((uint)(4)); - w317.RightAttach = ((uint)(5)); - w317.XOptions = ((global::Gtk.AttachOptions)(4)); - w317.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI19 = new global::Gtk.Image(); - this.imgI19.WidthRequest = 50; - this.imgI19.HeightRequest = 50; - this.imgI19.Name = "imgI19"; - this.tbUI.Add(this.imgI19); - global::Gtk.Table.TableChild w318 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); - w318.TopAttach = ((uint)(14)); - w318.BottomAttach = ((uint)(15)); - w318.LeftAttach = ((uint)(5)); - w318.RightAttach = ((uint)(6)); - w318.XOptions = ((global::Gtk.AttachOptions)(4)); - w318.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI2 = new global::Gtk.Image(); - this.imgI2.WidthRequest = 50; - this.imgI2.HeightRequest = 50; - this.imgI2.Name = "imgI2"; - this.tbUI.Add(this.imgI2); - global::Gtk.Table.TableChild w319 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); - w319.TopAttach = ((uint)(12)); - w319.BottomAttach = ((uint)(13)); - w319.LeftAttach = ((uint)(2)); - w319.RightAttach = ((uint)(3)); - w319.XOptions = ((global::Gtk.AttachOptions)(4)); - w319.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI20 = new global::Gtk.Image(); - this.imgI20.WidthRequest = 50; - this.imgI20.HeightRequest = 50; - this.imgI20.Name = "imgI20"; - this.tbUI.Add(this.imgI20); - global::Gtk.Table.TableChild w320 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); - w320.TopAttach = ((uint)(14)); - w320.BottomAttach = ((uint)(15)); - w320.LeftAttach = ((uint)(6)); - w320.RightAttach = ((uint)(7)); - w320.XOptions = ((global::Gtk.AttachOptions)(4)); - w320.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI21 = new global::Gtk.Image(); - this.imgI21.WidthRequest = 50; - this.imgI21.HeightRequest = 50; - this.imgI21.Name = "imgI21"; - this.tbUI.Add(this.imgI21); - global::Gtk.Table.TableChild w321 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); - w321.TopAttach = ((uint)(14)); - w321.BottomAttach = ((uint)(15)); - w321.LeftAttach = ((uint)(7)); - w321.RightAttach = ((uint)(8)); - w321.XOptions = ((global::Gtk.AttachOptions)(4)); - w321.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI22 = new global::Gtk.Image(); - this.imgI22.WidthRequest = 50; - this.imgI22.HeightRequest = 50; - this.imgI22.Name = "imgI22"; - this.tbUI.Add(this.imgI22); - global::Gtk.Table.TableChild w322 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); - w322.TopAttach = ((uint)(15)); - w322.BottomAttach = ((uint)(16)); - w322.LeftAttach = ((uint)(1)); - w322.RightAttach = ((uint)(2)); - w322.XOptions = ((global::Gtk.AttachOptions)(4)); - w322.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI23 = new global::Gtk.Image(); - this.imgI23.WidthRequest = 50; - this.imgI23.HeightRequest = 50; - this.imgI23.Name = "imgI23"; - this.tbUI.Add(this.imgI23); - global::Gtk.Table.TableChild w323 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); - w323.TopAttach = ((uint)(15)); - w323.BottomAttach = ((uint)(16)); - w323.LeftAttach = ((uint)(2)); - w323.RightAttach = ((uint)(3)); - w323.XOptions = ((global::Gtk.AttachOptions)(4)); - w323.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI24 = new global::Gtk.Image(); - this.imgI24.WidthRequest = 50; - this.imgI24.HeightRequest = 50; - this.imgI24.Name = "imgI24"; - this.tbUI.Add(this.imgI24); - global::Gtk.Table.TableChild w324 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); - w324.TopAttach = ((uint)(15)); - w324.BottomAttach = ((uint)(16)); - w324.LeftAttach = ((uint)(3)); - w324.RightAttach = ((uint)(4)); - w324.XOptions = ((global::Gtk.AttachOptions)(4)); - w324.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI25 = new global::Gtk.Image(); - this.imgI25.WidthRequest = 50; - this.imgI25.HeightRequest = 50; - this.imgI25.Name = "imgI25"; - this.tbUI.Add(this.imgI25); - global::Gtk.Table.TableChild w325 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); - w325.TopAttach = ((uint)(15)); - w325.BottomAttach = ((uint)(16)); - w325.LeftAttach = ((uint)(4)); - w325.RightAttach = ((uint)(5)); - w325.XOptions = ((global::Gtk.AttachOptions)(4)); - w325.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI26 = new global::Gtk.Image(); - this.imgI26.WidthRequest = 50; - this.imgI26.HeightRequest = 50; - this.imgI26.Name = "imgI26"; - this.tbUI.Add(this.imgI26); - global::Gtk.Table.TableChild w326 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI26])); - w326.TopAttach = ((uint)(15)); - w326.BottomAttach = ((uint)(16)); - w326.LeftAttach = ((uint)(5)); - w326.RightAttach = ((uint)(6)); - w326.XOptions = ((global::Gtk.AttachOptions)(4)); - w326.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI27 = new global::Gtk.Image(); - this.imgI27.WidthRequest = 50; - this.imgI27.HeightRequest = 50; - this.imgI27.Name = "imgI27"; - this.tbUI.Add(this.imgI27); - global::Gtk.Table.TableChild w327 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI27])); - w327.TopAttach = ((uint)(15)); - w327.BottomAttach = ((uint)(16)); - w327.LeftAttach = ((uint)(6)); - w327.RightAttach = ((uint)(7)); - w327.XOptions = ((global::Gtk.AttachOptions)(4)); - w327.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI28 = new global::Gtk.Image(); - this.imgI28.WidthRequest = 50; - this.imgI28.HeightRequest = 50; - this.imgI28.Name = "imgI28"; - this.tbUI.Add(this.imgI28); - global::Gtk.Table.TableChild w328 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI28])); - w328.TopAttach = ((uint)(15)); - w328.BottomAttach = ((uint)(16)); - w328.LeftAttach = ((uint)(7)); - w328.RightAttach = ((uint)(8)); - w328.XOptions = ((global::Gtk.AttachOptions)(4)); - w328.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI29 = new global::Gtk.Image(); - this.imgI29.WidthRequest = 50; - this.imgI29.HeightRequest = 50; - this.imgI29.Name = "imgI29"; - this.tbUI.Add(this.imgI29); - global::Gtk.Table.TableChild w329 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI29])); - w329.TopAttach = ((uint)(16)); - w329.BottomAttach = ((uint)(17)); - w329.LeftAttach = ((uint)(1)); - w329.RightAttach = ((uint)(2)); - w329.XOptions = ((global::Gtk.AttachOptions)(4)); - w329.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI3 = new global::Gtk.Image(); - this.imgI3.WidthRequest = 50; - this.imgI3.HeightRequest = 50; - this.imgI3.Name = "imgI3"; - this.tbUI.Add(this.imgI3); - global::Gtk.Table.TableChild w330 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); - w330.TopAttach = ((uint)(12)); - w330.BottomAttach = ((uint)(13)); - w330.LeftAttach = ((uint)(3)); - w330.RightAttach = ((uint)(4)); - w330.XOptions = ((global::Gtk.AttachOptions)(4)); - w330.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI30 = new global::Gtk.Image(); - this.imgI30.WidthRequest = 50; - this.imgI30.HeightRequest = 50; - this.imgI30.Name = "imgI30"; - this.tbUI.Add(this.imgI30); - global::Gtk.Table.TableChild w331 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI30])); - w331.TopAttach = ((uint)(16)); - w331.BottomAttach = ((uint)(17)); - w331.LeftAttach = ((uint)(2)); - w331.RightAttach = ((uint)(3)); - w331.XOptions = ((global::Gtk.AttachOptions)(4)); - w331.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI31 = new global::Gtk.Image(); - this.imgI31.WidthRequest = 50; - this.imgI31.HeightRequest = 50; - this.imgI31.Name = "imgI31"; - this.tbUI.Add(this.imgI31); - global::Gtk.Table.TableChild w332 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI31])); - w332.TopAttach = ((uint)(16)); - w332.BottomAttach = ((uint)(17)); - w332.LeftAttach = ((uint)(3)); - w332.RightAttach = ((uint)(4)); - w332.XOptions = ((global::Gtk.AttachOptions)(4)); - w332.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI32 = new global::Gtk.Image(); - this.imgI32.WidthRequest = 50; - this.imgI32.HeightRequest = 50; - this.imgI32.Name = "imgI32"; - this.tbUI.Add(this.imgI32); - global::Gtk.Table.TableChild w333 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI32])); - w333.TopAttach = ((uint)(16)); - w333.BottomAttach = ((uint)(17)); - w333.LeftAttach = ((uint)(4)); - w333.RightAttach = ((uint)(5)); - w333.XOptions = ((global::Gtk.AttachOptions)(4)); - w333.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI33 = new global::Gtk.Image(); - this.imgI33.WidthRequest = 50; - this.imgI33.HeightRequest = 50; - this.imgI33.Name = "imgI33"; - this.tbUI.Add(this.imgI33); - global::Gtk.Table.TableChild w334 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI33])); - w334.TopAttach = ((uint)(16)); - w334.BottomAttach = ((uint)(17)); - w334.LeftAttach = ((uint)(5)); - w334.RightAttach = ((uint)(6)); - w334.XOptions = ((global::Gtk.AttachOptions)(4)); - w334.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI34 = new global::Gtk.Image(); - this.imgI34.WidthRequest = 50; - this.imgI34.HeightRequest = 50; - this.imgI34.Name = "imgI34"; - this.tbUI.Add(this.imgI34); - global::Gtk.Table.TableChild w335 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI34])); - w335.TopAttach = ((uint)(16)); - w335.BottomAttach = ((uint)(17)); - w335.LeftAttach = ((uint)(6)); - w335.RightAttach = ((uint)(7)); - w335.XOptions = ((global::Gtk.AttachOptions)(4)); - w335.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI35 = new global::Gtk.Image(); - this.imgI35.WidthRequest = 50; - this.imgI35.HeightRequest = 50; - this.imgI35.Name = "imgI35"; - this.tbUI.Add(this.imgI35); - global::Gtk.Table.TableChild w336 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI35])); - w336.TopAttach = ((uint)(16)); - w336.BottomAttach = ((uint)(17)); - w336.LeftAttach = ((uint)(7)); - w336.RightAttach = ((uint)(8)); - w336.XOptions = ((global::Gtk.AttachOptions)(4)); - w336.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI36 = new global::Gtk.Image(); - this.imgI36.WidthRequest = 50; - this.imgI36.HeightRequest = 50; - this.imgI36.Name = "imgI36"; - this.tbUI.Add(this.imgI36); - global::Gtk.Table.TableChild w337 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI36])); - w337.TopAttach = ((uint)(17)); - w337.BottomAttach = ((uint)(18)); - w337.LeftAttach = ((uint)(1)); - w337.RightAttach = ((uint)(2)); - w337.XOptions = ((global::Gtk.AttachOptions)(4)); - w337.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI37 = new global::Gtk.Image(); - this.imgI37.WidthRequest = 50; - this.imgI37.HeightRequest = 50; - this.imgI37.Name = "imgI37"; - this.tbUI.Add(this.imgI37); - global::Gtk.Table.TableChild w338 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI37])); - w338.TopAttach = ((uint)(17)); - w338.BottomAttach = ((uint)(18)); - w338.LeftAttach = ((uint)(2)); - w338.RightAttach = ((uint)(3)); - w338.XOptions = ((global::Gtk.AttachOptions)(4)); - w338.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI38 = new global::Gtk.Image(); - this.imgI38.WidthRequest = 50; - this.imgI38.HeightRequest = 50; - this.imgI38.Name = "imgI38"; - this.tbUI.Add(this.imgI38); - global::Gtk.Table.TableChild w339 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI38])); - w339.TopAttach = ((uint)(17)); - w339.BottomAttach = ((uint)(18)); - w339.LeftAttach = ((uint)(3)); - w339.RightAttach = ((uint)(4)); - w339.XOptions = ((global::Gtk.AttachOptions)(4)); - w339.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI39 = new global::Gtk.Image(); - this.imgI39.WidthRequest = 50; - this.imgI39.HeightRequest = 50; - this.imgI39.Name = "imgI39"; - this.tbUI.Add(this.imgI39); - global::Gtk.Table.TableChild w340 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI39])); - w340.TopAttach = ((uint)(17)); - w340.BottomAttach = ((uint)(18)); - w340.LeftAttach = ((uint)(4)); - w340.RightAttach = ((uint)(5)); - w340.XOptions = ((global::Gtk.AttachOptions)(4)); - w340.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI4 = new global::Gtk.Image(); - this.imgI4.WidthRequest = 50; - this.imgI4.HeightRequest = 50; - this.imgI4.Name = "imgI4"; - this.tbUI.Add(this.imgI4); - global::Gtk.Table.TableChild w341 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); - w341.TopAttach = ((uint)(12)); - w341.BottomAttach = ((uint)(13)); - w341.LeftAttach = ((uint)(4)); - w341.RightAttach = ((uint)(5)); - w341.XOptions = ((global::Gtk.AttachOptions)(4)); - w341.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI40 = new global::Gtk.Image(); - this.imgI40.WidthRequest = 50; - this.imgI40.HeightRequest = 50; - this.imgI40.Name = "imgI40"; - this.tbUI.Add(this.imgI40); - global::Gtk.Table.TableChild w342 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI40])); - w342.TopAttach = ((uint)(17)); - w342.BottomAttach = ((uint)(18)); - w342.LeftAttach = ((uint)(5)); - w342.RightAttach = ((uint)(6)); - w342.XOptions = ((global::Gtk.AttachOptions)(4)); - w342.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI41 = new global::Gtk.Image(); - this.imgI41.WidthRequest = 50; - this.imgI41.HeightRequest = 50; - this.imgI41.Name = "imgI41"; - this.tbUI.Add(this.imgI41); - global::Gtk.Table.TableChild w343 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI41])); - w343.TopAttach = ((uint)(17)); - w343.BottomAttach = ((uint)(18)); - w343.LeftAttach = ((uint)(6)); - w343.RightAttach = ((uint)(7)); - w343.XOptions = ((global::Gtk.AttachOptions)(4)); - w343.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI42 = new global::Gtk.Image(); - this.imgI42.WidthRequest = 50; - this.imgI42.HeightRequest = 50; - this.imgI42.Name = "imgI42"; - this.tbUI.Add(this.imgI42); - global::Gtk.Table.TableChild w344 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI42])); - w344.TopAttach = ((uint)(17)); - w344.BottomAttach = ((uint)(18)); - w344.LeftAttach = ((uint)(7)); - w344.RightAttach = ((uint)(8)); - w344.XOptions = ((global::Gtk.AttachOptions)(4)); - w344.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI43 = new global::Gtk.Image(); - this.imgI43.WidthRequest = 50; - this.imgI43.HeightRequest = 50; - this.imgI43.Name = "imgI43"; - this.tbUI.Add(this.imgI43); - global::Gtk.Table.TableChild w345 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI43])); - w345.TopAttach = ((uint)(18)); - w345.BottomAttach = ((uint)(19)); - w345.LeftAttach = ((uint)(1)); - w345.RightAttach = ((uint)(2)); - w345.XOptions = ((global::Gtk.AttachOptions)(4)); - w345.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI44 = new global::Gtk.Image(); - this.imgI44.WidthRequest = 50; - this.imgI44.HeightRequest = 50; - this.imgI44.Name = "imgI44"; - this.tbUI.Add(this.imgI44); - global::Gtk.Table.TableChild w346 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI44])); - w346.TopAttach = ((uint)(18)); - w346.BottomAttach = ((uint)(19)); - w346.LeftAttach = ((uint)(2)); - w346.RightAttach = ((uint)(3)); - w346.XOptions = ((global::Gtk.AttachOptions)(4)); - w346.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI45 = new global::Gtk.Image(); - this.imgI45.WidthRequest = 50; - this.imgI45.HeightRequest = 50; - this.imgI45.Name = "imgI45"; - this.tbUI.Add(this.imgI45); - global::Gtk.Table.TableChild w347 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI45])); - w347.TopAttach = ((uint)(18)); - w347.BottomAttach = ((uint)(19)); - w347.LeftAttach = ((uint)(3)); - w347.RightAttach = ((uint)(4)); - w347.XOptions = ((global::Gtk.AttachOptions)(4)); - w347.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI46 = new global::Gtk.Image(); - this.imgI46.WidthRequest = 50; - this.imgI46.HeightRequest = 50; - this.imgI46.Name = "imgI46"; - this.tbUI.Add(this.imgI46); - global::Gtk.Table.TableChild w348 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI46])); - w348.TopAttach = ((uint)(18)); - w348.BottomAttach = ((uint)(19)); - w348.LeftAttach = ((uint)(4)); - w348.RightAttach = ((uint)(5)); - w348.XOptions = ((global::Gtk.AttachOptions)(4)); - w348.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI47 = new global::Gtk.Image(); - this.imgI47.WidthRequest = 50; - this.imgI47.HeightRequest = 50; - this.imgI47.Name = "imgI47"; - this.tbUI.Add(this.imgI47); - global::Gtk.Table.TableChild w349 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI47])); - w349.TopAttach = ((uint)(18)); - w349.BottomAttach = ((uint)(19)); - w349.LeftAttach = ((uint)(5)); - w349.RightAttach = ((uint)(6)); - w349.XOptions = ((global::Gtk.AttachOptions)(4)); - w349.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI48 = new global::Gtk.Image(); - this.imgI48.WidthRequest = 50; - this.imgI48.HeightRequest = 50; - this.imgI48.Name = "imgI48"; - this.tbUI.Add(this.imgI48); - global::Gtk.Table.TableChild w350 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI48])); - w350.TopAttach = ((uint)(18)); - w350.BottomAttach = ((uint)(19)); - w350.LeftAttach = ((uint)(6)); - w350.RightAttach = ((uint)(7)); - w350.XOptions = ((global::Gtk.AttachOptions)(4)); - w350.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI49 = new global::Gtk.Image(); - this.imgI49.WidthRequest = 50; - this.imgI49.HeightRequest = 50; - this.imgI49.Name = "imgI49"; - this.tbUI.Add(this.imgI49); - global::Gtk.Table.TableChild w351 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI49])); - w351.TopAttach = ((uint)(18)); - w351.BottomAttach = ((uint)(19)); - w351.LeftAttach = ((uint)(7)); - w351.RightAttach = ((uint)(8)); - w351.XOptions = ((global::Gtk.AttachOptions)(4)); - w351.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI5 = new global::Gtk.Image(); - this.imgI5.WidthRequest = 50; - this.imgI5.HeightRequest = 50; - this.imgI5.Name = "imgI5"; - this.tbUI.Add(this.imgI5); - global::Gtk.Table.TableChild w352 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); - w352.TopAttach = ((uint)(12)); - w352.BottomAttach = ((uint)(13)); - w352.LeftAttach = ((uint)(5)); - w352.RightAttach = ((uint)(6)); - w352.XOptions = ((global::Gtk.AttachOptions)(4)); - w352.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI6 = new global::Gtk.Image(); - this.imgI6.WidthRequest = 50; - this.imgI6.HeightRequest = 50; - this.imgI6.Name = "imgI6"; - this.tbUI.Add(this.imgI6); - global::Gtk.Table.TableChild w353 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); - w353.TopAttach = ((uint)(12)); - w353.BottomAttach = ((uint)(13)); - w353.LeftAttach = ((uint)(6)); - w353.RightAttach = ((uint)(7)); - w353.XOptions = ((global::Gtk.AttachOptions)(4)); - w353.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI7 = new global::Gtk.Image(); - this.imgI7.WidthRequest = 50; - this.imgI7.HeightRequest = 50; - this.imgI7.Name = "imgI7"; - this.tbUI.Add(this.imgI7); - global::Gtk.Table.TableChild w354 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); - w354.TopAttach = ((uint)(12)); - w354.BottomAttach = ((uint)(13)); - w354.LeftAttach = ((uint)(7)); - w354.RightAttach = ((uint)(8)); - w354.XOptions = ((global::Gtk.AttachOptions)(4)); - w354.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI8 = new global::Gtk.Image(); - this.imgI8.WidthRequest = 50; - this.imgI8.HeightRequest = 50; - this.imgI8.Name = "imgI8"; - this.tbUI.Add(this.imgI8); - global::Gtk.Table.TableChild w355 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); - w355.TopAttach = ((uint)(13)); - w355.BottomAttach = ((uint)(14)); - w355.LeftAttach = ((uint)(1)); - w355.RightAttach = ((uint)(2)); - w355.XOptions = ((global::Gtk.AttachOptions)(4)); - w355.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI9 = new global::Gtk.Image(); - this.imgI9.WidthRequest = 50; - this.imgI9.HeightRequest = 50; - this.imgI9.Name = "imgI9"; - this.tbUI.Add(this.imgI9); - global::Gtk.Table.TableChild w356 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); - w356.TopAttach = ((uint)(13)); - w356.BottomAttach = ((uint)(14)); - w356.LeftAttach = ((uint)(2)); - w356.RightAttach = ((uint)(3)); - w356.XOptions = ((global::Gtk.AttachOptions)(4)); - w356.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgInfo = new global::Gtk.Image(); - this.imgInfo.WidthRequest = 50; - this.imgInfo.HeightRequest = 50; - this.imgInfo.Name = "imgInfo"; - this.tbUI.Add(this.imgInfo); - global::Gtk.Table.TableChild w357 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); - w357.TopAttach = ((uint)(18)); - w357.BottomAttach = ((uint)(19)); - w357.LeftAttach = ((uint)(22)); - w357.RightAttach = ((uint)(23)); - w357.XOptions = ((global::Gtk.AttachOptions)(4)); - w357.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS1 = new global::Gtk.Image(); - this.imgS1.WidthRequest = 50; - this.imgS1.HeightRequest = 50; - this.imgS1.Name = "imgS1"; - this.tbUI.Add(this.imgS1); - global::Gtk.Table.TableChild w358 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); - w358.TopAttach = ((uint)(9)); - w358.BottomAttach = ((uint)(10)); - w358.LeftAttach = ((uint)(10)); - w358.RightAttach = ((uint)(11)); - w358.XOptions = ((global::Gtk.AttachOptions)(4)); - w358.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS10 = new global::Gtk.Image(); - this.imgS10.WidthRequest = 50; - this.imgS10.HeightRequest = 50; - this.imgS10.Name = "imgS10"; - this.tbUI.Add(this.imgS10); - global::Gtk.Table.TableChild w359 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); - w359.TopAttach = ((uint)(10)); - w359.BottomAttach = ((uint)(11)); - w359.LeftAttach = ((uint)(12)); - w359.RightAttach = ((uint)(13)); - w359.XOptions = ((global::Gtk.AttachOptions)(4)); - w359.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS11 = new global::Gtk.Image(); - this.imgS11.WidthRequest = 50; - this.imgS11.HeightRequest = 50; - this.imgS11.Name = "imgS11"; - this.tbUI.Add(this.imgS11); - global::Gtk.Table.TableChild w360 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS11])); - w360.TopAttach = ((uint)(10)); - w360.BottomAttach = ((uint)(11)); - w360.LeftAttach = ((uint)(13)); - w360.RightAttach = ((uint)(14)); - w360.XOptions = ((global::Gtk.AttachOptions)(4)); - w360.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS12 = new global::Gtk.Image(); - this.imgS12.WidthRequest = 50; - this.imgS12.HeightRequest = 50; - this.imgS12.Name = "imgS12"; - this.tbUI.Add(this.imgS12); - global::Gtk.Table.TableChild w361 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS12])); - w361.TopAttach = ((uint)(10)); - w361.BottomAttach = ((uint)(11)); - w361.LeftAttach = ((uint)(14)); - w361.RightAttach = ((uint)(15)); - w361.XOptions = ((global::Gtk.AttachOptions)(4)); - w361.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS13 = new global::Gtk.Image(); - this.imgS13.WidthRequest = 50; - this.imgS13.HeightRequest = 50; - this.imgS13.Name = "imgS13"; - this.tbUI.Add(this.imgS13); - global::Gtk.Table.TableChild w362 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS13])); - w362.TopAttach = ((uint)(10)); - w362.BottomAttach = ((uint)(11)); - w362.LeftAttach = ((uint)(15)); - w362.RightAttach = ((uint)(16)); - w362.XOptions = ((global::Gtk.AttachOptions)(4)); - w362.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS14 = new global::Gtk.Image(); - this.imgS14.WidthRequest = 50; - this.imgS14.HeightRequest = 50; - this.imgS14.Name = "imgS14"; - this.tbUI.Add(this.imgS14); - global::Gtk.Table.TableChild w363 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS14])); - w363.TopAttach = ((uint)(10)); - w363.BottomAttach = ((uint)(11)); - w363.LeftAttach = ((uint)(16)); - w363.RightAttach = ((uint)(17)); - w363.XOptions = ((global::Gtk.AttachOptions)(4)); - w363.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS2 = new global::Gtk.Image(); - this.imgS2.WidthRequest = 50; - this.imgS2.HeightRequest = 50; - this.imgS2.Name = "imgS2"; - this.tbUI.Add(this.imgS2); - global::Gtk.Table.TableChild w364 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); - w364.TopAttach = ((uint)(9)); - w364.BottomAttach = ((uint)(10)); - w364.LeftAttach = ((uint)(11)); - w364.RightAttach = ((uint)(12)); - w364.XOptions = ((global::Gtk.AttachOptions)(4)); - w364.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS3 = new global::Gtk.Image(); - this.imgS3.WidthRequest = 50; - this.imgS3.HeightRequest = 50; - this.imgS3.Name = "imgS3"; - this.tbUI.Add(this.imgS3); - global::Gtk.Table.TableChild w365 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); - w365.TopAttach = ((uint)(9)); - w365.BottomAttach = ((uint)(10)); - w365.LeftAttach = ((uint)(12)); - w365.RightAttach = ((uint)(13)); - w365.XOptions = ((global::Gtk.AttachOptions)(4)); - w365.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS4 = new global::Gtk.Image(); - this.imgS4.WidthRequest = 50; - this.imgS4.HeightRequest = 50; - this.imgS4.Name = "imgS4"; - this.tbUI.Add(this.imgS4); - global::Gtk.Table.TableChild w366 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); - w366.TopAttach = ((uint)(9)); - w366.BottomAttach = ((uint)(10)); - w366.LeftAttach = ((uint)(13)); - w366.RightAttach = ((uint)(14)); - w366.XOptions = ((global::Gtk.AttachOptions)(4)); - w366.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS5 = new global::Gtk.Image(); - this.imgS5.WidthRequest = 50; - this.imgS5.HeightRequest = 50; - this.imgS5.Name = "imgS5"; - this.tbUI.Add(this.imgS5); - global::Gtk.Table.TableChild w367 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); - w367.TopAttach = ((uint)(9)); - w367.BottomAttach = ((uint)(10)); - w367.LeftAttach = ((uint)(14)); - w367.RightAttach = ((uint)(15)); - w367.XOptions = ((global::Gtk.AttachOptions)(4)); - w367.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS6 = new global::Gtk.Image(); - this.imgS6.WidthRequest = 50; - this.imgS6.HeightRequest = 50; - this.imgS6.Name = "imgS6"; - this.tbUI.Add(this.imgS6); - global::Gtk.Table.TableChild w368 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); - w368.TopAttach = ((uint)(9)); - w368.BottomAttach = ((uint)(10)); - w368.LeftAttach = ((uint)(15)); - w368.RightAttach = ((uint)(16)); - w368.XOptions = ((global::Gtk.AttachOptions)(4)); - w368.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS7 = new global::Gtk.Image(); - this.imgS7.WidthRequest = 50; - this.imgS7.HeightRequest = 50; - this.imgS7.Name = "imgS7"; - this.tbUI.Add(this.imgS7); - global::Gtk.Table.TableChild w369 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); - w369.TopAttach = ((uint)(9)); - w369.BottomAttach = ((uint)(10)); - w369.LeftAttach = ((uint)(16)); - w369.RightAttach = ((uint)(17)); - w369.XOptions = ((global::Gtk.AttachOptions)(4)); - w369.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS8 = new global::Gtk.Image(); - this.imgS8.WidthRequest = 50; - this.imgS8.HeightRequest = 50; - this.imgS8.Name = "imgS8"; - this.tbUI.Add(this.imgS8); - global::Gtk.Table.TableChild w370 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); - w370.TopAttach = ((uint)(10)); - w370.BottomAttach = ((uint)(11)); - w370.LeftAttach = ((uint)(10)); - w370.RightAttach = ((uint)(11)); - w370.XOptions = ((global::Gtk.AttachOptions)(4)); - w370.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS9 = new global::Gtk.Image(); - this.imgS9.WidthRequest = 50; - this.imgS9.HeightRequest = 50; - this.imgS9.Name = "imgS9"; - this.tbUI.Add(this.imgS9); - global::Gtk.Table.TableChild w371 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); - w371.TopAttach = ((uint)(10)); - w371.BottomAttach = ((uint)(11)); - w371.LeftAttach = ((uint)(11)); - w371.RightAttach = ((uint)(12)); - w371.XOptions = ((global::Gtk.AttachOptions)(4)); - w371.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblAccessories = new global::Gtk.Label(); - this.lblAccessories.HeightRequest = 50; - this.lblAccessories.Name = "lblAccessories"; - this.lblAccessories.LabelProp = "Accessories"; - this.lblAccessories.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblAccessories); - global::Gtk.Table.TableChild w372 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); - w372.TopAttach = ((uint)(10)); - w372.BottomAttach = ((uint)(11)); - w372.LeftAttach = ((uint)(19)); - w372.RightAttach = ((uint)(26)); - w372.XOptions = ((global::Gtk.AttachOptions)(4)); - w372.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank1 = new global::Gtk.Label(); - this.lblBlank1.WidthRequest = 50; - this.lblBlank1.HeightRequest = 10; - this.lblBlank1.Name = "lblBlank1"; - this.tbUI.Add(this.lblBlank1); - global::Gtk.Table.TableChild w373 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); - w373.LeftAttach = ((uint)(13)); - w373.RightAttach = ((uint)(14)); - w373.XOptions = ((global::Gtk.AttachOptions)(4)); - w373.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank2 = new global::Gtk.Label(); - this.lblBlank2.WidthRequest = 10; - this.lblBlank2.HeightRequest = 50; - this.lblBlank2.Name = "lblBlank2"; - this.tbUI.Add(this.lblBlank2); - global::Gtk.Table.TableChild w374 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); - w374.TopAttach = ((uint)(4)); - w374.BottomAttach = ((uint)(5)); - w374.XOptions = ((global::Gtk.AttachOptions)(4)); - w374.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank3 = new global::Gtk.Label(); - this.lblBlank3.WidthRequest = 50; - this.lblBlank3.HeightRequest = 50; - this.lblBlank3.Name = "lblBlank3"; - this.tbUI.Add(this.lblBlank3); - global::Gtk.Table.TableChild w375 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); - w375.TopAttach = ((uint)(8)); - w375.BottomAttach = ((uint)(9)); - w375.LeftAttach = ((uint)(13)); - w375.RightAttach = ((uint)(14)); - w375.XOptions = ((global::Gtk.AttachOptions)(4)); - w375.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank4 = new global::Gtk.Label(); - this.lblBlank4.WidthRequest = 10; - this.lblBlank4.HeightRequest = 50; - this.lblBlank4.Name = "lblBlank4"; - this.tbUI.Add(this.lblBlank4); - global::Gtk.Table.TableChild w376 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); - w376.TopAttach = ((uint)(4)); - w376.BottomAttach = ((uint)(5)); - w376.LeftAttach = ((uint)(8)); - w376.RightAttach = ((uint)(9)); - w376.XOptions = ((global::Gtk.AttachOptions)(4)); - w376.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank5 = new global::Gtk.Label(); - this.lblBlank5.WidthRequest = 10; - this.lblBlank5.HeightRequest = 50; - this.lblBlank5.Name = "lblBlank5"; - this.tbUI.Add(this.lblBlank5); - global::Gtk.Table.TableChild w377 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); - w377.TopAttach = ((uint)(4)); - w377.BottomAttach = ((uint)(5)); - w377.LeftAttach = ((uint)(18)); - w377.RightAttach = ((uint)(19)); - w377.XOptions = ((global::Gtk.AttachOptions)(4)); - w377.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank6 = new global::Gtk.Label(); - this.lblBlank6.WidthRequest = 10; - this.lblBlank6.HeightRequest = 50; - this.lblBlank6.Name = "lblBlank6"; - this.tbUI.Add(this.lblBlank6); - global::Gtk.Table.TableChild w378 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank6])); - w378.TopAttach = ((uint)(4)); - w378.BottomAttach = ((uint)(5)); - w378.LeftAttach = ((uint)(26)); - w378.RightAttach = ((uint)(27)); - w378.XOptions = ((global::Gtk.AttachOptions)(4)); - w378.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank8 = new global::Gtk.Label(); - this.lblBlank8.WidthRequest = 50; - this.lblBlank8.HeightRequest = 10; - this.lblBlank8.Name = "lblBlank8"; - this.tbUI.Add(this.lblBlank8); - global::Gtk.Table.TableChild w379 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); - w379.TopAttach = ((uint)(20)); - w379.BottomAttach = ((uint)(21)); - w379.LeftAttach = ((uint)(13)); - w379.RightAttach = ((uint)(14)); - w379.XOptions = ((global::Gtk.AttachOptions)(4)); - w379.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblCoord1 = new global::Gtk.Label(); - this.lblCoord1.WidthRequest = 50; - this.lblCoord1.HeightRequest = 50; - this.lblCoord1.Name = "lblCoord1"; - this.lblCoord1.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblCoord1); - global::Gtk.Table.TableChild w380 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); - w380.TopAttach = ((uint)(9)); - w380.BottomAttach = ((uint)(10)); - w380.LeftAttach = ((uint)(6)); - w380.RightAttach = ((uint)(7)); - w380.XOptions = ((global::Gtk.AttachOptions)(4)); - w380.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblCoord2 = new global::Gtk.Label(); - this.lblCoord2.WidthRequest = 50; - this.lblCoord2.HeightRequest = 50; - this.lblCoord2.Name = "lblCoord2"; - this.lblCoord2.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblCoord2); - global::Gtk.Table.TableChild w381 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); - w381.TopAttach = ((uint)(9)); - w381.BottomAttach = ((uint)(10)); - w381.LeftAttach = ((uint)(7)); - w381.RightAttach = ((uint)(8)); - w381.XOptions = ((global::Gtk.AttachOptions)(4)); - w381.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblGear = new global::Gtk.Label(); - this.lblGear.HeightRequest = 50; - this.lblGear.Name = "lblGear"; - this.lblGear.LabelProp = "Gear"; - this.lblGear.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblGear); - global::Gtk.Table.TableChild w382 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); - w382.TopAttach = ((uint)(13)); - w382.BottomAttach = ((uint)(14)); - w382.LeftAttach = ((uint)(19)); - w382.RightAttach = ((uint)(26)); - w382.XOptions = ((global::Gtk.AttachOptions)(4)); - w382.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblGroundLayer = new global::Gtk.Label(); - this.lblGroundLayer.WidthRequest = 350; - this.lblGroundLayer.HeightRequest = 50; - this.lblGroundLayer.Name = "lblGroundLayer"; - this.lblGroundLayer.LabelProp = "Ground Layer"; - this.tbUI.Add(this.lblGroundLayer); - global::Gtk.Table.TableChild w383 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); - w383.TopAttach = ((uint)(1)); - w383.BottomAttach = ((uint)(2)); - w383.LeftAttach = ((uint)(1)); - w383.RightAttach = ((uint)(8)); - w383.XOptions = ((global::Gtk.AttachOptions)(4)); - w383.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblHoleMsg = new global::Gtk.Label(); - this.lblHoleMsg.WidthRequest = 200; - this.lblHoleMsg.HeightRequest = 50; - this.lblHoleMsg.Name = "lblHoleMsg"; - this.lblHoleMsg.LabelProp = "There is a hole above player:"; - this.lblHoleMsg.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblHoleMsg); - global::Gtk.Table.TableChild w384 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleMsg])); - w384.TopAttach = ((uint)(19)); - w384.BottomAttach = ((uint)(20)); - w384.LeftAttach = ((uint)(1)); - w384.RightAttach = ((uint)(7)); - w384.XOptions = ((global::Gtk.AttachOptions)(4)); - w384.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblHoleOnTop = new global::Gtk.Label(); - this.lblHoleOnTop.WidthRequest = 50; - this.lblHoleOnTop.HeightRequest = 50; - this.lblHoleOnTop.Name = "lblHoleOnTop"; - this.lblHoleOnTop.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblHoleOnTop); - global::Gtk.Table.TableChild w385 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleOnTop])); - w385.TopAttach = ((uint)(19)); - w385.BottomAttach = ((uint)(20)); - w385.LeftAttach = ((uint)(7)); - w385.RightAttach = ((uint)(8)); - w385.XOptions = ((global::Gtk.AttachOptions)(4)); - w385.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblHotbar = new global::Gtk.Label(); - this.lblHotbar.WidthRequest = 50; - this.lblHotbar.HeightRequest = 25; - this.lblHotbar.Name = "lblHotbar"; - this.lblHotbar.LabelProp = "Hotbar"; - this.tbUI.Add(this.lblHotbar); - global::Gtk.Table.TableChild w386 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); - w386.TopAttach = ((uint)(11)); - w386.BottomAttach = ((uint)(12)); - w386.LeftAttach = ((uint)(10)); - w386.RightAttach = ((uint)(17)); - w386.XOptions = ((global::Gtk.AttachOptions)(4)); - w386.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblInfo = new global::Gtk.Label(); - this.lblInfo.WidthRequest = 250; - this.lblInfo.HeightRequest = 50; - this.lblInfo.Name = "lblInfo"; - this.lblInfo.Wrap = true; - this.lblInfo.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblInfo); - global::Gtk.Table.TableChild w387 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); - w387.TopAttach = ((uint)(19)); - w387.BottomAttach = ((uint)(20)); - w387.LeftAttach = ((uint)(19)); - w387.RightAttach = ((uint)(26)); - w387.XOptions = ((global::Gtk.AttachOptions)(4)); - w387.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblItemLayer = new global::Gtk.Label(); - this.lblItemLayer.HeightRequest = 50; - this.lblItemLayer.Name = "lblItemLayer"; - this.lblItemLayer.LabelProp = "Structure Layer"; - this.tbUI.Add(this.lblItemLayer); - global::Gtk.Table.TableChild w388 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); - w388.TopAttach = ((uint)(11)); - w388.BottomAttach = ((uint)(12)); - w388.LeftAttach = ((uint)(1)); - w388.RightAttach = ((uint)(8)); - w388.XOptions = ((global::Gtk.AttachOptions)(4)); - w388.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog1 = new global::Gtk.Label(); - this.lblLog1.WidthRequest = 350; - this.lblLog1.HeightRequest = 50; - this.lblLog1.Name = "lblLog1"; - this.tbUI.Add(this.lblLog1); - global::Gtk.Table.TableChild w389 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); - w389.TopAttach = ((uint)(14)); - w389.BottomAttach = ((uint)(15)); - w389.LeftAttach = ((uint)(10)); - w389.RightAttach = ((uint)(17)); - w389.XOptions = ((global::Gtk.AttachOptions)(4)); - w389.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog2 = new global::Gtk.Label(); - this.lblLog2.WidthRequest = 350; - this.lblLog2.HeightRequest = 50; - this.lblLog2.Name = "lblLog2"; - this.tbUI.Add(this.lblLog2); - global::Gtk.Table.TableChild w390 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); - w390.TopAttach = ((uint)(15)); - w390.BottomAttach = ((uint)(16)); - w390.LeftAttach = ((uint)(10)); - w390.RightAttach = ((uint)(17)); - w390.XOptions = ((global::Gtk.AttachOptions)(4)); - w390.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog3 = new global::Gtk.Label(); - this.lblLog3.WidthRequest = 350; - this.lblLog3.HeightRequest = 50; - this.lblLog3.Name = "lblLog3"; - this.tbUI.Add(this.lblLog3); - global::Gtk.Table.TableChild w391 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); - w391.TopAttach = ((uint)(16)); - w391.BottomAttach = ((uint)(17)); - w391.LeftAttach = ((uint)(10)); - w391.RightAttach = ((uint)(17)); - w391.XOptions = ((global::Gtk.AttachOptions)(4)); - w391.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog4 = new global::Gtk.Label(); - this.lblLog4.WidthRequest = 350; - this.lblLog4.HeightRequest = 50; - this.lblLog4.Name = "lblLog4"; - this.tbUI.Add(this.lblLog4); - global::Gtk.Table.TableChild w392 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); - w392.TopAttach = ((uint)(17)); - w392.BottomAttach = ((uint)(18)); - w392.LeftAttach = ((uint)(10)); - w392.RightAttach = ((uint)(17)); - w392.XOptions = ((global::Gtk.AttachOptions)(4)); - w392.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog5 = new global::Gtk.Label(); - this.lblLog5.WidthRequest = 350; - this.lblLog5.HeightRequest = 50; - this.lblLog5.Name = "lblLog5"; - this.tbUI.Add(this.lblLog5); - global::Gtk.Table.TableChild w393 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog5])); - w393.TopAttach = ((uint)(18)); - w393.BottomAttach = ((uint)(19)); - w393.LeftAttach = ((uint)(10)); - w393.RightAttach = ((uint)(17)); - w393.XOptions = ((global::Gtk.AttachOptions)(4)); - w393.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog6 = new global::Gtk.Label(); - this.lblLog6.WidthRequest = 350; - this.lblLog6.HeightRequest = 50; - this.lblLog6.Name = "lblLog6"; - this.tbUI.Add(this.lblLog6); - global::Gtk.Table.TableChild w394 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog6])); - w394.TopAttach = ((uint)(19)); - w394.BottomAttach = ((uint)(20)); - w394.LeftAttach = ((uint)(10)); - w394.RightAttach = ((uint)(17)); - w394.XOptions = ((global::Gtk.AttachOptions)(4)); - w394.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblSuperLayer = new global::Gtk.Label(); - this.lblSuperLayer.WidthRequest = 100; - this.lblSuperLayer.HeightRequest = 50; - this.lblSuperLayer.Name = "lblSuperLayer"; - this.lblSuperLayer.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblSuperLayer); - global::Gtk.Table.TableChild w395 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblSuperLayer])); - w395.TopAttach = ((uint)(9)); - w395.BottomAttach = ((uint)(10)); - w395.LeftAttach = ((uint)(1)); - w395.RightAttach = ((uint)(5)); - w395.XOptions = ((global::Gtk.AttachOptions)(4)); - w395.YOptions = ((global::Gtk.AttachOptions)(4)); - this.Add(this.tbUI); - if ((this.Child != null)) - { - this.Child.ShowAll(); - } - this.DefaultWidth = 1390; - this.DefaultHeight = 970; - this.Show(); - this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent); - this.btnPause.Clicked += new global::System.EventHandler(this.OnBtnPauseClicked); - this.btnP9.Clicked += new global::System.EventHandler(this.OnBtnP9Clicked); - this.btnP8.Clicked += new global::System.EventHandler(this.OnBtnP8Clicked); - this.btnP7.Clicked += new global::System.EventHandler(this.OnBtnP7Clicked); - this.btnP6.Clicked += new global::System.EventHandler(this.OnBtnP6Clicked); - this.btnP5.Clicked += new global::System.EventHandler(this.OnBtnP5Clicked); - this.btnP49.Clicked += new global::System.EventHandler(this.OnBtnP49Clicked); - this.btnP48.Clicked += new global::System.EventHandler(this.OnBtnP48Clicked); - this.btnP47.Clicked += new global::System.EventHandler(this.OnBtnP47Clicked); - this.btnP46.Clicked += new global::System.EventHandler(this.OnBtnP46Clicked); - this.btnP45.Clicked += new global::System.EventHandler(this.OnBtnP45Clicked); - this.btnP44.Clicked += new global::System.EventHandler(this.OnBtnP44Clicked); - this.btnP43.Clicked += new global::System.EventHandler(this.OnBtnP43Clicked); - this.btnP42.Clicked += new global::System.EventHandler(this.OnBtnP42Clicked); - this.btnP41.Clicked += new global::System.EventHandler(this.OnBtnP41Clicked); - this.btnP40.Clicked += new global::System.EventHandler(this.OnBtnP40Clicked); - this.btnP4.Clicked += new global::System.EventHandler(this.OnBtnP4Clicked); - this.btnP39.Clicked += new global::System.EventHandler(this.OnBtnP39Clicked); - this.btnP38.Clicked += new global::System.EventHandler(this.OnBtnP38Clicked); - this.btnP37.Clicked += new global::System.EventHandler(this.OnBtnP37Clicked); - this.btnP36.Clicked += new global::System.EventHandler(this.OnBtnP36Clicked); - this.btnP35.Clicked += new global::System.EventHandler(this.OnBtnP35Clicked); - this.btnP34.Clicked += new global::System.EventHandler(this.OnBtnP34Clicked); - this.btnP33.Clicked += new global::System.EventHandler(this.OnBtnP33Clicked); - this.btnP32.Clicked += new global::System.EventHandler(this.OnBtnP32Clicked); - this.btnP31.Clicked += new global::System.EventHandler(this.OnBtnP31Clicked); - this.btnP30.Clicked += new global::System.EventHandler(this.OnBtnP30Clicked); - this.btnP3.Clicked += new global::System.EventHandler(this.OnBtnP3Clicked); - this.btnP29.Clicked += new global::System.EventHandler(this.OnBtnP29Clicked); - this.btnP28.Clicked += new global::System.EventHandler(this.OnBtnP28Clicked); - this.btnP27.Clicked += new global::System.EventHandler(this.OnBtnP27Clicked); - this.btnP26.Clicked += new global::System.EventHandler(this.OnBtnP26Clicked); - this.btnP25.Clicked += new global::System.EventHandler(this.OnBtnP25Clicked); - this.btnP24.Clicked += new global::System.EventHandler(this.OnBtnP24Clicked); - this.btnP23.Clicked += new global::System.EventHandler(this.OnBtnP23Clicked); - this.btnP22.Clicked += new global::System.EventHandler(this.OnBtnP22Clicked); - this.btnP21.Clicked += new global::System.EventHandler(this.OnBtnP21Clicked); - this.btnP20.Clicked += new global::System.EventHandler(this.OnBtnP20Clicked); - this.btnP2.Clicked += new global::System.EventHandler(this.OnBtnP2Clicked); - this.btnP19.Clicked += new global::System.EventHandler(this.OnBtnP19Clicked); - this.btnP18.Clicked += new global::System.EventHandler(this.OnBtnP18Clicked); - this.btnP17.Clicked += new global::System.EventHandler(this.OnBtnP17Clicked); - this.btnP16.Clicked += new global::System.EventHandler(this.OnBtnP16Clicked); - this.btnP15.Clicked += new global::System.EventHandler(this.OnBtnP15Clicked); - this.btnP14.Clicked += new global::System.EventHandler(this.OnBtnP14Clicked); - this.btnP13.Clicked += new global::System.EventHandler(this.OnBtnP13Clicked); - this.btnP12.Clicked += new global::System.EventHandler(this.OnBtnP12Clicked); - this.btnP11.Clicked += new global::System.EventHandler(this.OnBtnP11Clicked); - this.btnP10.Clicked += new global::System.EventHandler(this.OnBtnP10Clicked); - this.btnP1.Clicked += new global::System.EventHandler(this.OnBtnP1Clicked); - this.btnMusic.Clicked += new global::System.EventHandler(this.OnBtnMusicClicked); - this.btnMap.Clicked += new global::System.EventHandler(this.OnBtnMapClicked); - this.btnLog.Clicked += new global::System.EventHandler(this.OnBtnLogClicked); - this.btnInv.Clicked += new global::System.EventHandler(this.OnBtnInvClicked); - this.btnI9.Clicked += new global::System.EventHandler(this.OnBtnI9Clicked); - this.btnI8.Clicked += new global::System.EventHandler(this.OnBtnI8Clicked); - this.btnI7.Clicked += new global::System.EventHandler(this.OnBtnI7Clicked); - this.btnI6.Clicked += new global::System.EventHandler(this.OnBtnI6Clicked); - this.btnI5.Clicked += new global::System.EventHandler(this.OnBtnI5Clicked); - this.btnI49.Clicked += new global::System.EventHandler(this.OnBtnI49Clicked); - this.btnI48.Clicked += new global::System.EventHandler(this.OnBtnI48Clicked); - this.btnI47.Clicked += new global::System.EventHandler(this.OnBtnI47Clicked); - this.btnI46.Clicked += new global::System.EventHandler(this.OnBtnI46Clicked); - this.btnI45.Clicked += new global::System.EventHandler(this.OnBtnI45Clicked); - this.btnI44.Clicked += new global::System.EventHandler(this.OnBtnI44Clicked); - this.btnI43.Clicked += new global::System.EventHandler(this.OnBtnI43Clicked); - this.btnI42.Clicked += new global::System.EventHandler(this.OnBtnI42Clicked); - this.btnI41.Clicked += new global::System.EventHandler(this.OnBtnI41Clicked); - this.btnI40.Clicked += new global::System.EventHandler(this.OnBtnI40Clicked); - this.btnI4.Clicked += new global::System.EventHandler(this.OnBtnI4Clicked); - this.btnI39.Clicked += new global::System.EventHandler(this.OnBtnI39Clicked); - this.btnI38.Clicked += new global::System.EventHandler(this.OnBtnI38Clicked); - this.btnI37.Clicked += new global::System.EventHandler(this.OnBtnI37Clicked); - this.btnI36.Clicked += new global::System.EventHandler(this.OnBtnI36Clicked); - this.btnI35.Clicked += new global::System.EventHandler(this.OnBtnI35Clicked); - this.btnI34.Clicked += new global::System.EventHandler(this.OnBtnI34Clicked); - this.btnI33.Clicked += new global::System.EventHandler(this.OnBtnI33Clicked); - this.btnI32.Clicked += new global::System.EventHandler(this.OnBtnI32Clicked); - this.btnI31.Clicked += new global::System.EventHandler(this.OnBtnI31Clicked); - this.btnI30.Clicked += new global::System.EventHandler(this.OnBtnI30Clicked); - this.btnI3.Clicked += new global::System.EventHandler(this.OnBtnI3Clicked); - this.btnI29.Clicked += new global::System.EventHandler(this.OnBtnI29Clicked); - this.btnI28.Clicked += new global::System.EventHandler(this.OnBtnI28Clicked); - this.btnI27.Clicked += new global::System.EventHandler(this.OnBtnI27Clicked); - this.btnI26.Clicked += new global::System.EventHandler(this.OnBtnI26Clicked); - this.btnI25.Clicked += new global::System.EventHandler(this.OnBtnI25Clicked); - this.btnI24.Clicked += new global::System.EventHandler(this.OnBtnI24Clicked); - this.btnI23.Clicked += new global::System.EventHandler(this.OnBtnI23Clicked); - this.btnI22.Clicked += new global::System.EventHandler(this.OnBtnI22Clicked); - this.btnI21.Clicked += new global::System.EventHandler(this.OnBtnI21Clicked); - this.btnI20.Clicked += new global::System.EventHandler(this.OnBtnI20Clicked); - this.btnI2.Clicked += new global::System.EventHandler(this.OnBtnI2Clicked); - this.btnI19.Clicked += new global::System.EventHandler(this.OnBtnI19Clicked); - this.btnI18.Clicked += new global::System.EventHandler(this.OnBtnI18Clicked); - this.btnI17.Clicked += new global::System.EventHandler(this.OnBtnI17Clicked); - this.btnI16.Clicked += new global::System.EventHandler(this.OnBtnI16Clicked); - this.btnI15.Clicked += new global::System.EventHandler(this.OnBtnI15Clicked); - this.btnI14.Clicked += new global::System.EventHandler(this.OnBtnI14Clicked); - this.btnI13.Clicked += new global::System.EventHandler(this.OnBtnI13Clicked); - this.btnI12.Clicked += new global::System.EventHandler(this.OnBtnI12Clicked); - this.btnI11.Clicked += new global::System.EventHandler(this.OnBtnI11Clicked); - this.btnI10.Clicked += new global::System.EventHandler(this.OnBtnI10Clicked); - this.btnI1.Clicked += new global::System.EventHandler(this.OnBtnI1Clicked); - this.btnH7.Clicked += new global::System.EventHandler(this.OnBtnH7Clicked); - this.btnH6.Clicked += new global::System.EventHandler(this.OnBtnH6Clicked); - this.btnH5.Clicked += new global::System.EventHandler(this.OnBtnH5Clicked); - this.btnH4.Clicked += new global::System.EventHandler(this.OnBtnH4Clicked); - this.btnH3.Clicked += new global::System.EventHandler(this.OnBtnH3Clicked); - this.btnH2.Clicked += new global::System.EventHandler(this.OnBtnH2Clicked); - this.btnH1.Clicked += new global::System.EventHandler(this.OnBtnH1Clicked); - this.btnG7.Clicked += new global::System.EventHandler(this.OnBtnG7Clicked); - this.btnG6.Clicked += new global::System.EventHandler(this.OnBtnG6Clicked); - this.btnG5.Clicked += new global::System.EventHandler(this.OnBtnG5Clicked); - this.btnG4.Clicked += new global::System.EventHandler(this.OnBtnG4Clicked); - this.btnG3.Clicked += new global::System.EventHandler(this.OnBtnG3Clicked); - this.btnG2.Clicked += new global::System.EventHandler(this.OnBtnG2Clicked); - this.btnG1.Clicked += new global::System.EventHandler(this.OnBtnG1Clicked); - this.btnCrafting.Clicked += new global::System.EventHandler(this.OnBtnCraftingClicked); - this.btnA9.Clicked += new global::System.EventHandler(this.OnBtnA9Clicked); - this.btnA8.Clicked += new global::System.EventHandler(this.OnBtnA8Clicked); - this.btnA7.Clicked += new global::System.EventHandler(this.OnBtnA7Clicked); - this.btnA6.Clicked += new global::System.EventHandler(this.OnBtnA6Clicked); - this.btnA5.Clicked += new global::System.EventHandler(this.OnBtnA5Clicked); - this.btnA4.Clicked += new global::System.EventHandler(this.OnBtnA4Clicked); - this.btnA3.Clicked += new global::System.EventHandler(this.OnBtnA3Clicked); - this.btnA2.Clicked += new global::System.EventHandler(this.OnBtnA2Clicked); - this.btnA14.Clicked += new global::System.EventHandler(this.OnBtnA14Clicked); - this.btnA13.Clicked += new global::System.EventHandler(this.OnBtnA13Clicked); - this.btnA12.Clicked += new global::System.EventHandler(this.OnBtnA12Clicked); - this.btnA11.Clicked += new global::System.EventHandler(this.OnBtnA11Clicked); - this.btnA10.Clicked += new global::System.EventHandler(this.OnBtnA10Clicked); - this.btnA1.Clicked += new global::System.EventHandler(this.OnBtnA1Clicked); - } - } -} diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.NewGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.NewGameWindow.cs index 0bbc355..2ea610e 100644 --- a/Mundus/gtk-gui/Mundus.Views.Windows.NewGameWindow.cs +++ b/Mundus/gtk-gui/Mundus.Views.Windows.NewGameWindow.cs @@ -247,6 +247,7 @@ namespace Mundus.Views.Windows this.rbCreative.Sensitive = false; this.rbCreative.CanFocus = true; this.rbCreative.Name = "rbCreative"; + this.rbCreative.Active = true; this.rbCreative.DrawIndicator = true; this.rbCreative.UseUnderline = true; this.rbCreative.Group = new global::GLib.SList(global::System.IntPtr.Zero); @@ -263,6 +264,7 @@ namespace Mundus.Views.Windows this.rbEasy.WidthRequest = 90; this.rbEasy.CanFocus = true; this.rbEasy.Name = "rbEasy"; + this.rbEasy.Active = true; this.rbEasy.DrawIndicator = true; this.rbEasy.UseUnderline = true; this.rbEasy.Group = new global::GLib.SList(global::System.IntPtr.Zero); @@ -311,6 +313,7 @@ namespace Mundus.Views.Windows this.rbLarge.WidthRequest = 90; this.rbLarge.CanFocus = true; this.rbLarge.Name = "rbLarge"; + this.rbLarge.Active = true; this.rbLarge.DrawIndicator = true; this.rbLarge.UseUnderline = true; this.rbLarge.Group = new global::GLib.SList(global::System.IntPtr.Zero); @@ -342,6 +345,7 @@ namespace Mundus.Views.Windows this.rbMLarge = new global::Gtk.RadioButton("Large"); this.rbMLarge.CanFocus = true; this.rbMLarge.Name = "rbMLarge"; + this.rbMLarge.Active = true; this.rbMLarge.DrawIndicator = true; this.rbMLarge.UseUnderline = true; this.rbMLarge.Group = new global::GLib.SList(global::System.IntPtr.Zero); diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs deleted file mode 100644 index 4a39ace..0000000 --- a/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs +++ /dev/null @@ -1,2874 +0,0 @@ - -// This file has been generated by the GUI designer. Do not modify. -namespace Mundus.Views.Windows -{ - public partial class SmallGameWindow - { - private global::Gtk.Table tbUI; - - private global::Gtk.Button btnA1; - - private global::Gtk.Button btnA10; - - private global::Gtk.Button btnA2; - - private global::Gtk.Button btnA3; - - private global::Gtk.Button btnA4; - - private global::Gtk.Button btnA5; - - private global::Gtk.Button btnA6; - - private global::Gtk.Button btnA7; - - private global::Gtk.Button btnA8; - - private global::Gtk.Button btnA9; - - private global::Gtk.Button btnCrafting; - - private global::Gtk.Button btnG1; - - private global::Gtk.Button btnG2; - - private global::Gtk.Button btnG3; - - private global::Gtk.Button btnG4; - - private global::Gtk.Button btnG5; - - private global::Gtk.Button btnH1; - - private global::Gtk.Button btnH2; - - private global::Gtk.Button btnH3; - - private global::Gtk.Button btnH4; - - private global::Gtk.Button btnH5; - - private global::Gtk.Button btnI1; - - private global::Gtk.Button btnI10; - - private global::Gtk.Button btnI11; - - private global::Gtk.Button btnI12; - - private global::Gtk.Button btnI13; - - private global::Gtk.Button btnI14; - - private global::Gtk.Button btnI15; - - private global::Gtk.Button btnI16; - - private global::Gtk.Button btnI17; - - private global::Gtk.Button btnI18; - - private global::Gtk.Button btnI19; - - private global::Gtk.Button btnI2; - - private global::Gtk.Button btnI20; - - private global::Gtk.Button btnI21; - - private global::Gtk.Button btnI22; - - private global::Gtk.Button btnI23; - - private global::Gtk.Button btnI24; - - private global::Gtk.Button btnI25; - - private global::Gtk.Button btnI3; - - private global::Gtk.Button btnI4; - - private global::Gtk.Button btnI5; - - private global::Gtk.Button btnI6; - - private global::Gtk.Button btnI7; - - private global::Gtk.Button btnI8; - - private global::Gtk.Button btnI9; - - private global::Gtk.Button btnIG1; - - private global::Gtk.Button btnIG2; - - private global::Gtk.Button btnInv; - - private global::Gtk.Button btnLog; - - private global::Gtk.Button btnMap; - - private global::Gtk.Button btnMusic; - - private global::Gtk.Button btnP1; - - private global::Gtk.Button btnP10; - - private global::Gtk.Button btnP11; - - private global::Gtk.Button btnP12; - - private global::Gtk.Button btnP13; - - private global::Gtk.Button btnP14; - - private global::Gtk.Button btnP15; - - private global::Gtk.Button btnP16; - - private global::Gtk.Button btnP17; - - private global::Gtk.Button btnP18; - - private global::Gtk.Button btnP19; - - private global::Gtk.Button btnP2; - - private global::Gtk.Button btnP20; - - private global::Gtk.Button btnP21; - - private global::Gtk.Button btnP22; - - private global::Gtk.Button btnP23; - - private global::Gtk.Button btnP24; - - private global::Gtk.Button btnP25; - - private global::Gtk.Button btnP3; - - private global::Gtk.Button btnP4; - - private global::Gtk.Button btnP5; - - private global::Gtk.Button btnP6; - - private global::Gtk.Button btnP7; - - private global::Gtk.Button btnP8; - - private global::Gtk.Button btnP9; - - private global::Gtk.Button btnPause; - - private global::Gtk.Image imgG1; - - private global::Gtk.Image imgG10; - - private global::Gtk.Image imgG11; - - private global::Gtk.Image imgG12; - - private global::Gtk.Image imgG13; - - private global::Gtk.Image imgG14; - - private global::Gtk.Image imgG15; - - private global::Gtk.Image imgG16; - - private global::Gtk.Image imgG17; - - private global::Gtk.Image imgG18; - - private global::Gtk.Image imgG19; - - private global::Gtk.Image imgG2; - - private global::Gtk.Image imgG20; - - private global::Gtk.Image imgG21; - - private global::Gtk.Image imgG22; - - private global::Gtk.Image imgG23; - - private global::Gtk.Image imgG24; - - private global::Gtk.Image imgG25; - - private global::Gtk.Image imgG3; - - private global::Gtk.Image imgG4; - - private global::Gtk.Image imgG5; - - private global::Gtk.Image imgG6; - - private global::Gtk.Image imgG7; - - private global::Gtk.Image imgG8; - - private global::Gtk.Image imgG9; - - private global::Gtk.Image imgI1; - - private global::Gtk.Image imgI10; - - private global::Gtk.Image imgI11; - - private global::Gtk.Image imgI12; - - private global::Gtk.Image imgI13; - - private global::Gtk.Image imgI14; - - private global::Gtk.Image imgI15; - - private global::Gtk.Image imgI16; - - private global::Gtk.Image imgI17; - - private global::Gtk.Image imgI18; - - private global::Gtk.Image imgI19; - - private global::Gtk.Image imgI2; - - private global::Gtk.Image imgI20; - - private global::Gtk.Image imgI21; - - private global::Gtk.Image imgI22; - - private global::Gtk.Image imgI23; - - private global::Gtk.Image imgI24; - - private global::Gtk.Image imgI25; - - private global::Gtk.Image imgI3; - - private global::Gtk.Image imgI4; - - private global::Gtk.Image imgI5; - - private global::Gtk.Image imgI6; - - private global::Gtk.Image imgI7; - - private global::Gtk.Image imgI8; - - private global::Gtk.Image imgI9; - - private global::Gtk.Image imgInfo; - - private global::Gtk.Image imgS1; - - private global::Gtk.Image imgS10; - - private global::Gtk.Image imgS2; - - private global::Gtk.Image imgS3; - - private global::Gtk.Image imgS4; - - private global::Gtk.Image imgS5; - - private global::Gtk.Image imgS6; - - private global::Gtk.Image imgS7; - - private global::Gtk.Image imgS8; - - private global::Gtk.Image imgS9; - - private global::Gtk.Label lblAccessories; - - private global::Gtk.Label lblBlank1; - - private global::Gtk.Label lblBlank2; - - private global::Gtk.Label lblBlank3; - - private global::Gtk.Label lblBlank4; - - private global::Gtk.Label lblBlank5; - - private global::Gtk.Label lblBlank8; - - private global::Gtk.Label lblBlank9; - - private global::Gtk.Label lblCoord1; - - private global::Gtk.Label lblCoord2; - - private global::Gtk.Label lblEventLog; - - private global::Gtk.Label lblGear; - - private global::Gtk.Label lblGroundLayer; - - private global::Gtk.Label lblHoleMsg; - - private global::Gtk.Label lblHoleOnTop; - - private global::Gtk.Label lblHotbar; - - private global::Gtk.Label lblInfo; - - private global::Gtk.Label lblItemLayer; - - private global::Gtk.Label lblLog1; - - private global::Gtk.Label lblLog2; - - private global::Gtk.Label lblLog3; - - private global::Gtk.Label lblLog4; - - private global::Gtk.Label lblSuperLayer; - - protected virtual void Build() - { - global::Stetic.Gui.Initialize(this); - // Widget Mundus.Views.Windows.SmallGameWindow - this.Name = "Mundus.Views.Windows.SmallGameWindow"; - this.Title = "Mundus (Small Window)"; - this.WindowPosition = ((global::Gtk.WindowPosition)(2)); - this.Resizable = false; - this.AllowGrow = false; - // Container child Mundus.Views.Windows.SmallGameWindow.Gtk.Container+ContainerChild - this.tbUI = new global::Gtk.Table(((uint)(17)), ((uint)(21)), false); - this.tbUI.Name = "tbUI"; - // Container child tbUI.Gtk.Table+TableChild - this.btnA1 = new global::Gtk.Button(); - this.btnA1.WidthRequest = 50; - this.btnA1.HeightRequest = 50; - this.btnA1.CanFocus = true; - this.btnA1.Name = "btnA1"; - this.btnA1.UseUnderline = true; - global::Gtk.Image w1 = new global::Gtk.Image(); - this.btnA1.Image = w1; - this.tbUI.Add(this.btnA1); - global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA1])); - w2.TopAttach = ((uint)(9)); - w2.BottomAttach = ((uint)(10)); - w2.LeftAttach = ((uint)(15)); - w2.RightAttach = ((uint)(16)); - w2.XOptions = ((global::Gtk.AttachOptions)(4)); - w2.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA10 = new global::Gtk.Button(); - this.btnA10.WidthRequest = 50; - this.btnA10.HeightRequest = 50; - this.btnA10.CanFocus = true; - this.btnA10.Name = "btnA10"; - this.btnA10.UseUnderline = true; - global::Gtk.Image w3 = new global::Gtk.Image(); - this.btnA10.Image = w3; - this.tbUI.Add(this.btnA10); - global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA10])); - w4.TopAttach = ((uint)(10)); - w4.BottomAttach = ((uint)(11)); - w4.LeftAttach = ((uint)(19)); - w4.RightAttach = ((uint)(20)); - w4.XOptions = ((global::Gtk.AttachOptions)(4)); - w4.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA2 = new global::Gtk.Button(); - this.btnA2.WidthRequest = 50; - this.btnA2.HeightRequest = 50; - this.btnA2.CanFocus = true; - this.btnA2.Name = "btnA2"; - this.btnA2.UseUnderline = true; - global::Gtk.Image w5 = new global::Gtk.Image(); - this.btnA2.Image = w5; - this.tbUI.Add(this.btnA2); - global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA2])); - w6.TopAttach = ((uint)(9)); - w6.BottomAttach = ((uint)(10)); - w6.LeftAttach = ((uint)(16)); - w6.RightAttach = ((uint)(17)); - w6.XOptions = ((global::Gtk.AttachOptions)(4)); - w6.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA3 = new global::Gtk.Button(); - this.btnA3.WidthRequest = 50; - this.btnA3.HeightRequest = 50; - this.btnA3.CanFocus = true; - this.btnA3.Name = "btnA3"; - this.btnA3.UseUnderline = true; - global::Gtk.Image w7 = new global::Gtk.Image(); - this.btnA3.Image = w7; - this.tbUI.Add(this.btnA3); - global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA3])); - w8.TopAttach = ((uint)(9)); - w8.BottomAttach = ((uint)(10)); - w8.LeftAttach = ((uint)(17)); - w8.RightAttach = ((uint)(18)); - w8.XOptions = ((global::Gtk.AttachOptions)(4)); - w8.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA4 = new global::Gtk.Button(); - this.btnA4.WidthRequest = 50; - this.btnA4.HeightRequest = 50; - this.btnA4.CanFocus = true; - this.btnA4.Name = "btnA4"; - this.btnA4.UseUnderline = true; - global::Gtk.Image w9 = new global::Gtk.Image(); - this.btnA4.Image = w9; - this.tbUI.Add(this.btnA4); - global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA4])); - w10.TopAttach = ((uint)(9)); - w10.BottomAttach = ((uint)(10)); - w10.LeftAttach = ((uint)(18)); - w10.RightAttach = ((uint)(19)); - w10.XOptions = ((global::Gtk.AttachOptions)(4)); - w10.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA5 = new global::Gtk.Button(); - this.btnA5.WidthRequest = 50; - this.btnA5.HeightRequest = 50; - this.btnA5.CanFocus = true; - this.btnA5.Name = "btnA5"; - this.btnA5.UseUnderline = true; - global::Gtk.Image w11 = new global::Gtk.Image(); - this.btnA5.Image = w11; - this.tbUI.Add(this.btnA5); - global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA5])); - w12.TopAttach = ((uint)(9)); - w12.BottomAttach = ((uint)(10)); - w12.LeftAttach = ((uint)(19)); - w12.RightAttach = ((uint)(20)); - w12.XOptions = ((global::Gtk.AttachOptions)(4)); - w12.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA6 = new global::Gtk.Button(); - this.btnA6.WidthRequest = 50; - this.btnA6.HeightRequest = 50; - this.btnA6.CanFocus = true; - this.btnA6.Name = "btnA6"; - this.btnA6.UseUnderline = true; - global::Gtk.Image w13 = new global::Gtk.Image(); - this.btnA6.Image = w13; - this.tbUI.Add(this.btnA6); - global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA6])); - w14.TopAttach = ((uint)(10)); - w14.BottomAttach = ((uint)(11)); - w14.LeftAttach = ((uint)(15)); - w14.RightAttach = ((uint)(16)); - w14.XOptions = ((global::Gtk.AttachOptions)(4)); - w14.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA7 = new global::Gtk.Button(); - this.btnA7.WidthRequest = 50; - this.btnA7.HeightRequest = 50; - this.btnA7.CanFocus = true; - this.btnA7.Name = "btnA7"; - this.btnA7.UseUnderline = true; - global::Gtk.Image w15 = new global::Gtk.Image(); - this.btnA7.Image = w15; - this.tbUI.Add(this.btnA7); - global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA7])); - w16.TopAttach = ((uint)(10)); - w16.BottomAttach = ((uint)(11)); - w16.LeftAttach = ((uint)(16)); - w16.RightAttach = ((uint)(17)); - w16.XOptions = ((global::Gtk.AttachOptions)(4)); - w16.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA8 = new global::Gtk.Button(); - this.btnA8.WidthRequest = 50; - this.btnA8.HeightRequest = 50; - this.btnA8.CanFocus = true; - this.btnA8.Name = "btnA8"; - this.btnA8.UseUnderline = true; - global::Gtk.Image w17 = new global::Gtk.Image(); - this.btnA8.Image = w17; - this.tbUI.Add(this.btnA8); - global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA8])); - w18.TopAttach = ((uint)(10)); - w18.BottomAttach = ((uint)(11)); - w18.LeftAttach = ((uint)(17)); - w18.RightAttach = ((uint)(18)); - w18.XOptions = ((global::Gtk.AttachOptions)(4)); - w18.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnA9 = new global::Gtk.Button(); - this.btnA9.WidthRequest = 50; - this.btnA9.HeightRequest = 50; - this.btnA9.CanFocus = true; - this.btnA9.Name = "btnA9"; - this.btnA9.UseUnderline = true; - global::Gtk.Image w19 = new global::Gtk.Image(); - this.btnA9.Image = w19; - this.tbUI.Add(this.btnA9); - global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA9])); - w20.TopAttach = ((uint)(10)); - w20.BottomAttach = ((uint)(11)); - w20.LeftAttach = ((uint)(18)); - w20.RightAttach = ((uint)(19)); - w20.XOptions = ((global::Gtk.AttachOptions)(4)); - w20.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnCrafting = new global::Gtk.Button(); - this.btnCrafting.CanFocus = true; - this.btnCrafting.Name = "btnCrafting"; - this.btnCrafting.UseUnderline = true; - this.btnCrafting.Label = "Crafting"; - this.tbUI.Add(this.btnCrafting); - global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnCrafting])); - w21.TopAttach = ((uint)(6)); - w21.BottomAttach = ((uint)(7)); - w21.LeftAttach = ((uint)(15)); - w21.RightAttach = ((uint)(20)); - w21.XOptions = ((global::Gtk.AttachOptions)(4)); - w21.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG1 = new global::Gtk.Button(); - this.btnG1.WidthRequest = 50; - this.btnG1.HeightRequest = 50; - this.btnG1.CanFocus = true; - this.btnG1.Name = "btnG1"; - this.btnG1.UseUnderline = true; - global::Gtk.Image w22 = new global::Gtk.Image(); - this.btnG1.Image = w22; - this.tbUI.Add(this.btnG1); - global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG1])); - w23.TopAttach = ((uint)(12)); - w23.BottomAttach = ((uint)(13)); - w23.LeftAttach = ((uint)(15)); - w23.RightAttach = ((uint)(16)); - w23.XOptions = ((global::Gtk.AttachOptions)(4)); - w23.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG2 = new global::Gtk.Button(); - this.btnG2.WidthRequest = 50; - this.btnG2.HeightRequest = 50; - this.btnG2.CanFocus = true; - this.btnG2.Name = "btnG2"; - this.btnG2.UseUnderline = true; - global::Gtk.Image w24 = new global::Gtk.Image(); - this.btnG2.Image = w24; - this.tbUI.Add(this.btnG2); - global::Gtk.Table.TableChild w25 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG2])); - w25.TopAttach = ((uint)(12)); - w25.BottomAttach = ((uint)(13)); - w25.LeftAttach = ((uint)(16)); - w25.RightAttach = ((uint)(17)); - w25.XOptions = ((global::Gtk.AttachOptions)(4)); - w25.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG3 = new global::Gtk.Button(); - this.btnG3.WidthRequest = 50; - this.btnG3.HeightRequest = 50; - this.btnG3.CanFocus = true; - this.btnG3.Name = "btnG3"; - this.btnG3.UseUnderline = true; - global::Gtk.Image w26 = new global::Gtk.Image(); - this.btnG3.Image = w26; - this.tbUI.Add(this.btnG3); - global::Gtk.Table.TableChild w27 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG3])); - w27.TopAttach = ((uint)(12)); - w27.BottomAttach = ((uint)(13)); - w27.LeftAttach = ((uint)(17)); - w27.RightAttach = ((uint)(18)); - w27.XOptions = ((global::Gtk.AttachOptions)(4)); - w27.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG4 = new global::Gtk.Button(); - this.btnG4.WidthRequest = 50; - this.btnG4.HeightRequest = 50; - this.btnG4.CanFocus = true; - this.btnG4.Name = "btnG4"; - this.btnG4.UseUnderline = true; - global::Gtk.Image w28 = new global::Gtk.Image(); - this.btnG4.Image = w28; - this.tbUI.Add(this.btnG4); - global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG4])); - w29.TopAttach = ((uint)(12)); - w29.BottomAttach = ((uint)(13)); - w29.LeftAttach = ((uint)(18)); - w29.RightAttach = ((uint)(19)); - w29.XOptions = ((global::Gtk.AttachOptions)(4)); - w29.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnG5 = new global::Gtk.Button(); - this.btnG5.WidthRequest = 50; - this.btnG5.HeightRequest = 50; - this.btnG5.CanFocus = true; - this.btnG5.Name = "btnG5"; - this.btnG5.UseUnderline = true; - global::Gtk.Image w30 = new global::Gtk.Image(); - this.btnG5.Image = w30; - this.tbUI.Add(this.btnG5); - global::Gtk.Table.TableChild w31 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG5])); - w31.TopAttach = ((uint)(12)); - w31.BottomAttach = ((uint)(13)); - w31.LeftAttach = ((uint)(19)); - w31.RightAttach = ((uint)(20)); - w31.XOptions = ((global::Gtk.AttachOptions)(4)); - w31.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH1 = new global::Gtk.Button(); - this.btnH1.WidthRequest = 50; - this.btnH1.HeightRequest = 50; - this.btnH1.CanFocus = true; - this.btnH1.Name = "btnH1"; - this.btnH1.UseUnderline = true; - this.btnH1.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w32 = new global::Gtk.Image(); - this.btnH1.Image = w32; - this.tbUI.Add(this.btnH1); - global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH1])); - w33.TopAttach = ((uint)(10)); - w33.BottomAttach = ((uint)(11)); - w33.LeftAttach = ((uint)(8)); - w33.RightAttach = ((uint)(9)); - w33.XOptions = ((global::Gtk.AttachOptions)(4)); - w33.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH2 = new global::Gtk.Button(); - this.btnH2.WidthRequest = 50; - this.btnH2.HeightRequest = 50; - this.btnH2.CanFocus = true; - this.btnH2.Name = "btnH2"; - this.btnH2.UseUnderline = true; - this.btnH2.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w34 = new global::Gtk.Image(); - this.btnH2.Image = w34; - this.tbUI.Add(this.btnH2); - global::Gtk.Table.TableChild w35 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH2])); - w35.TopAttach = ((uint)(10)); - w35.BottomAttach = ((uint)(11)); - w35.LeftAttach = ((uint)(9)); - w35.RightAttach = ((uint)(10)); - w35.XOptions = ((global::Gtk.AttachOptions)(4)); - w35.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH3 = new global::Gtk.Button(); - this.btnH3.WidthRequest = 50; - this.btnH3.HeightRequest = 50; - this.btnH3.CanFocus = true; - this.btnH3.Name = "btnH3"; - this.btnH3.UseUnderline = true; - this.btnH3.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w36 = new global::Gtk.Image(); - this.btnH3.Image = w36; - this.tbUI.Add(this.btnH3); - global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH3])); - w37.TopAttach = ((uint)(10)); - w37.BottomAttach = ((uint)(11)); - w37.LeftAttach = ((uint)(10)); - w37.RightAttach = ((uint)(11)); - w37.XOptions = ((global::Gtk.AttachOptions)(4)); - w37.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH4 = new global::Gtk.Button(); - this.btnH4.WidthRequest = 50; - this.btnH4.HeightRequest = 50; - this.btnH4.CanFocus = true; - this.btnH4.Name = "btnH4"; - this.btnH4.UseUnderline = true; - this.btnH4.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w38 = new global::Gtk.Image(); - this.btnH4.Image = w38; - this.tbUI.Add(this.btnH4); - global::Gtk.Table.TableChild w39 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH4])); - w39.TopAttach = ((uint)(10)); - w39.BottomAttach = ((uint)(11)); - w39.LeftAttach = ((uint)(11)); - w39.RightAttach = ((uint)(12)); - w39.XOptions = ((global::Gtk.AttachOptions)(4)); - w39.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnH5 = new global::Gtk.Button(); - this.btnH5.WidthRequest = 50; - this.btnH5.HeightRequest = 50; - this.btnH5.CanFocus = true; - this.btnH5.Name = "btnH5"; - this.btnH5.UseUnderline = true; - this.btnH5.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w40 = new global::Gtk.Image(); - this.btnH5.Image = w40; - this.tbUI.Add(this.btnH5); - global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH5])); - w41.TopAttach = ((uint)(10)); - w41.BottomAttach = ((uint)(11)); - w41.LeftAttach = ((uint)(12)); - w41.RightAttach = ((uint)(13)); - w41.XOptions = ((global::Gtk.AttachOptions)(4)); - w41.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI1 = new global::Gtk.Button(); - this.btnI1.WidthRequest = 50; - this.btnI1.HeightRequest = 50; - this.btnI1.CanFocus = true; - this.btnI1.Name = "btnI1"; - this.btnI1.UseUnderline = true; - this.btnI1.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w42 = new global::Gtk.Image(); - this.btnI1.Image = w42; - this.tbUI.Add(this.btnI1); - global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI1])); - w43.TopAttach = ((uint)(1)); - w43.BottomAttach = ((uint)(2)); - w43.LeftAttach = ((uint)(15)); - w43.RightAttach = ((uint)(16)); - w43.XOptions = ((global::Gtk.AttachOptions)(4)); - w43.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI10 = new global::Gtk.Button(); - this.btnI10.WidthRequest = 50; - this.btnI10.HeightRequest = 50; - this.btnI10.CanFocus = true; - this.btnI10.Name = "btnI10"; - this.btnI10.UseUnderline = true; - this.btnI10.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w44 = new global::Gtk.Image(); - this.btnI10.Image = w44; - this.tbUI.Add(this.btnI10); - global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI10])); - w45.TopAttach = ((uint)(2)); - w45.BottomAttach = ((uint)(3)); - w45.LeftAttach = ((uint)(19)); - w45.RightAttach = ((uint)(20)); - w45.XOptions = ((global::Gtk.AttachOptions)(4)); - w45.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI11 = new global::Gtk.Button(); - this.btnI11.WidthRequest = 50; - this.btnI11.HeightRequest = 50; - this.btnI11.CanFocus = true; - this.btnI11.Name = "btnI11"; - this.btnI11.UseUnderline = true; - this.btnI11.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w46 = new global::Gtk.Image(); - this.btnI11.Image = w46; - this.tbUI.Add(this.btnI11); - global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI11])); - w47.TopAttach = ((uint)(3)); - w47.BottomAttach = ((uint)(4)); - w47.LeftAttach = ((uint)(15)); - w47.RightAttach = ((uint)(16)); - w47.XOptions = ((global::Gtk.AttachOptions)(4)); - w47.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI12 = new global::Gtk.Button(); - this.btnI12.WidthRequest = 50; - this.btnI12.HeightRequest = 50; - this.btnI12.CanFocus = true; - this.btnI12.Name = "btnI12"; - this.btnI12.UseUnderline = true; - this.btnI12.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w48 = new global::Gtk.Image(); - this.btnI12.Image = w48; - this.tbUI.Add(this.btnI12); - global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI12])); - w49.TopAttach = ((uint)(3)); - w49.BottomAttach = ((uint)(4)); - w49.LeftAttach = ((uint)(16)); - w49.RightAttach = ((uint)(17)); - w49.XOptions = ((global::Gtk.AttachOptions)(4)); - w49.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI13 = new global::Gtk.Button(); - this.btnI13.WidthRequest = 50; - this.btnI13.HeightRequest = 50; - this.btnI13.CanFocus = true; - this.btnI13.Name = "btnI13"; - this.btnI13.UseUnderline = true; - this.btnI13.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w50 = new global::Gtk.Image(); - this.btnI13.Image = w50; - this.tbUI.Add(this.btnI13); - global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI13])); - w51.TopAttach = ((uint)(3)); - w51.BottomAttach = ((uint)(4)); - w51.LeftAttach = ((uint)(17)); - w51.RightAttach = ((uint)(18)); - w51.XOptions = ((global::Gtk.AttachOptions)(4)); - w51.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI14 = new global::Gtk.Button(); - this.btnI14.WidthRequest = 50; - this.btnI14.HeightRequest = 50; - this.btnI14.CanFocus = true; - this.btnI14.Name = "btnI14"; - this.btnI14.UseUnderline = true; - this.btnI14.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w52 = new global::Gtk.Image(); - this.btnI14.Image = w52; - this.tbUI.Add(this.btnI14); - global::Gtk.Table.TableChild w53 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI14])); - w53.TopAttach = ((uint)(3)); - w53.BottomAttach = ((uint)(4)); - w53.LeftAttach = ((uint)(18)); - w53.RightAttach = ((uint)(19)); - w53.XOptions = ((global::Gtk.AttachOptions)(4)); - w53.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI15 = new global::Gtk.Button(); - this.btnI15.WidthRequest = 50; - this.btnI15.HeightRequest = 50; - this.btnI15.CanFocus = true; - this.btnI15.Name = "btnI15"; - this.btnI15.UseUnderline = true; - this.btnI15.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w54 = new global::Gtk.Image(); - this.btnI15.Image = w54; - this.tbUI.Add(this.btnI15); - global::Gtk.Table.TableChild w55 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI15])); - w55.TopAttach = ((uint)(3)); - w55.BottomAttach = ((uint)(4)); - w55.LeftAttach = ((uint)(19)); - w55.RightAttach = ((uint)(20)); - w55.XOptions = ((global::Gtk.AttachOptions)(4)); - w55.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI16 = new global::Gtk.Button(); - this.btnI16.WidthRequest = 50; - this.btnI16.HeightRequest = 50; - this.btnI16.CanFocus = true; - this.btnI16.Name = "btnI16"; - this.btnI16.UseUnderline = true; - this.btnI16.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w56 = new global::Gtk.Image(); - this.btnI16.Image = w56; - this.tbUI.Add(this.btnI16); - global::Gtk.Table.TableChild w57 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI16])); - w57.TopAttach = ((uint)(4)); - w57.BottomAttach = ((uint)(5)); - w57.LeftAttach = ((uint)(15)); - w57.RightAttach = ((uint)(16)); - w57.XOptions = ((global::Gtk.AttachOptions)(4)); - w57.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI17 = new global::Gtk.Button(); - this.btnI17.WidthRequest = 50; - this.btnI17.HeightRequest = 50; - this.btnI17.CanFocus = true; - this.btnI17.Name = "btnI17"; - this.btnI17.UseUnderline = true; - this.btnI17.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w58 = new global::Gtk.Image(); - this.btnI17.Image = w58; - this.tbUI.Add(this.btnI17); - global::Gtk.Table.TableChild w59 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI17])); - w59.TopAttach = ((uint)(4)); - w59.BottomAttach = ((uint)(5)); - w59.LeftAttach = ((uint)(16)); - w59.RightAttach = ((uint)(17)); - w59.XOptions = ((global::Gtk.AttachOptions)(4)); - w59.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI18 = new global::Gtk.Button(); - this.btnI18.WidthRequest = 50; - this.btnI18.HeightRequest = 50; - this.btnI18.CanFocus = true; - this.btnI18.Name = "btnI18"; - this.btnI18.UseUnderline = true; - this.btnI18.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w60 = new global::Gtk.Image(); - this.btnI18.Image = w60; - this.tbUI.Add(this.btnI18); - global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI18])); - w61.TopAttach = ((uint)(4)); - w61.BottomAttach = ((uint)(5)); - w61.LeftAttach = ((uint)(17)); - w61.RightAttach = ((uint)(18)); - w61.XOptions = ((global::Gtk.AttachOptions)(4)); - w61.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI19 = new global::Gtk.Button(); - this.btnI19.WidthRequest = 50; - this.btnI19.HeightRequest = 50; - this.btnI19.CanFocus = true; - this.btnI19.Name = "btnI19"; - this.btnI19.UseUnderline = true; - this.btnI19.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w62 = new global::Gtk.Image(); - this.btnI19.Image = w62; - this.tbUI.Add(this.btnI19); - global::Gtk.Table.TableChild w63 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI19])); - w63.TopAttach = ((uint)(4)); - w63.BottomAttach = ((uint)(5)); - w63.LeftAttach = ((uint)(18)); - w63.RightAttach = ((uint)(19)); - w63.XOptions = ((global::Gtk.AttachOptions)(4)); - w63.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI2 = new global::Gtk.Button(); - this.btnI2.WidthRequest = 50; - this.btnI2.HeightRequest = 50; - this.btnI2.CanFocus = true; - this.btnI2.Name = "btnI2"; - this.btnI2.UseUnderline = true; - this.btnI2.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w64 = new global::Gtk.Image(); - this.btnI2.Image = w64; - this.tbUI.Add(this.btnI2); - global::Gtk.Table.TableChild w65 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI2])); - w65.TopAttach = ((uint)(1)); - w65.BottomAttach = ((uint)(2)); - w65.LeftAttach = ((uint)(16)); - w65.RightAttach = ((uint)(17)); - w65.XOptions = ((global::Gtk.AttachOptions)(4)); - w65.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI20 = new global::Gtk.Button(); - this.btnI20.WidthRequest = 50; - this.btnI20.HeightRequest = 50; - this.btnI20.CanFocus = true; - this.btnI20.Name = "btnI20"; - this.btnI20.UseUnderline = true; - this.btnI20.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w66 = new global::Gtk.Image(); - this.btnI20.Image = w66; - this.tbUI.Add(this.btnI20); - global::Gtk.Table.TableChild w67 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI20])); - w67.TopAttach = ((uint)(4)); - w67.BottomAttach = ((uint)(5)); - w67.LeftAttach = ((uint)(19)); - w67.RightAttach = ((uint)(20)); - w67.XOptions = ((global::Gtk.AttachOptions)(4)); - w67.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI21 = new global::Gtk.Button(); - this.btnI21.WidthRequest = 50; - this.btnI21.HeightRequest = 50; - this.btnI21.CanFocus = true; - this.btnI21.Name = "btnI21"; - this.btnI21.UseUnderline = true; - this.btnI21.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w68 = new global::Gtk.Image(); - this.btnI21.Image = w68; - this.tbUI.Add(this.btnI21); - global::Gtk.Table.TableChild w69 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI21])); - w69.TopAttach = ((uint)(5)); - w69.BottomAttach = ((uint)(6)); - w69.LeftAttach = ((uint)(15)); - w69.RightAttach = ((uint)(16)); - w69.XOptions = ((global::Gtk.AttachOptions)(4)); - w69.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI22 = new global::Gtk.Button(); - this.btnI22.WidthRequest = 50; - this.btnI22.HeightRequest = 50; - this.btnI22.CanFocus = true; - this.btnI22.Name = "btnI22"; - this.btnI22.UseUnderline = true; - this.btnI22.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w70 = new global::Gtk.Image(); - this.btnI22.Image = w70; - this.tbUI.Add(this.btnI22); - global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI22])); - w71.TopAttach = ((uint)(5)); - w71.BottomAttach = ((uint)(6)); - w71.LeftAttach = ((uint)(16)); - w71.RightAttach = ((uint)(17)); - w71.XOptions = ((global::Gtk.AttachOptions)(4)); - w71.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI23 = new global::Gtk.Button(); - this.btnI23.WidthRequest = 50; - this.btnI23.HeightRequest = 50; - this.btnI23.CanFocus = true; - this.btnI23.Name = "btnI23"; - this.btnI23.UseUnderline = true; - this.btnI23.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w72 = new global::Gtk.Image(); - this.btnI23.Image = w72; - this.tbUI.Add(this.btnI23); - global::Gtk.Table.TableChild w73 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI23])); - w73.TopAttach = ((uint)(5)); - w73.BottomAttach = ((uint)(6)); - w73.LeftAttach = ((uint)(17)); - w73.RightAttach = ((uint)(18)); - w73.XOptions = ((global::Gtk.AttachOptions)(4)); - w73.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI24 = new global::Gtk.Button(); - this.btnI24.WidthRequest = 50; - this.btnI24.HeightRequest = 50; - this.btnI24.CanFocus = true; - this.btnI24.Name = "btnI24"; - this.btnI24.UseUnderline = true; - this.btnI24.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w74 = new global::Gtk.Image(); - this.btnI24.Image = w74; - this.tbUI.Add(this.btnI24); - global::Gtk.Table.TableChild w75 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI24])); - w75.TopAttach = ((uint)(5)); - w75.BottomAttach = ((uint)(6)); - w75.LeftAttach = ((uint)(18)); - w75.RightAttach = ((uint)(19)); - w75.XOptions = ((global::Gtk.AttachOptions)(4)); - w75.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI25 = new global::Gtk.Button(); - this.btnI25.WidthRequest = 50; - this.btnI25.HeightRequest = 50; - this.btnI25.CanFocus = true; - this.btnI25.Name = "btnI25"; - this.btnI25.UseUnderline = true; - this.btnI25.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w76 = new global::Gtk.Image(); - this.btnI25.Image = w76; - this.tbUI.Add(this.btnI25); - global::Gtk.Table.TableChild w77 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI25])); - w77.TopAttach = ((uint)(5)); - w77.BottomAttach = ((uint)(6)); - w77.LeftAttach = ((uint)(19)); - w77.RightAttach = ((uint)(20)); - w77.XOptions = ((global::Gtk.AttachOptions)(4)); - w77.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI3 = new global::Gtk.Button(); - this.btnI3.WidthRequest = 50; - this.btnI3.HeightRequest = 50; - this.btnI3.CanFocus = true; - this.btnI3.Name = "btnI3"; - this.btnI3.UseUnderline = true; - this.btnI3.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w78 = new global::Gtk.Image(); - this.btnI3.Image = w78; - this.tbUI.Add(this.btnI3); - global::Gtk.Table.TableChild w79 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI3])); - w79.TopAttach = ((uint)(1)); - w79.BottomAttach = ((uint)(2)); - w79.LeftAttach = ((uint)(17)); - w79.RightAttach = ((uint)(18)); - w79.XOptions = ((global::Gtk.AttachOptions)(4)); - w79.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI4 = new global::Gtk.Button(); - this.btnI4.WidthRequest = 50; - this.btnI4.HeightRequest = 50; - this.btnI4.CanFocus = true; - this.btnI4.Name = "btnI4"; - this.btnI4.UseUnderline = true; - this.btnI4.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w80 = new global::Gtk.Image(); - this.btnI4.Image = w80; - this.tbUI.Add(this.btnI4); - global::Gtk.Table.TableChild w81 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI4])); - w81.TopAttach = ((uint)(1)); - w81.BottomAttach = ((uint)(2)); - w81.LeftAttach = ((uint)(18)); - w81.RightAttach = ((uint)(19)); - w81.XOptions = ((global::Gtk.AttachOptions)(4)); - w81.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI5 = new global::Gtk.Button(); - this.btnI5.WidthRequest = 50; - this.btnI5.HeightRequest = 50; - this.btnI5.CanFocus = true; - this.btnI5.Name = "btnI5"; - this.btnI5.UseUnderline = true; - this.btnI5.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w82 = new global::Gtk.Image(); - this.btnI5.Image = w82; - this.tbUI.Add(this.btnI5); - global::Gtk.Table.TableChild w83 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI5])); - w83.TopAttach = ((uint)(1)); - w83.BottomAttach = ((uint)(2)); - w83.LeftAttach = ((uint)(19)); - w83.RightAttach = ((uint)(20)); - w83.XOptions = ((global::Gtk.AttachOptions)(4)); - w83.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI6 = new global::Gtk.Button(); - this.btnI6.WidthRequest = 50; - this.btnI6.HeightRequest = 50; - this.btnI6.CanFocus = true; - this.btnI6.Name = "btnI6"; - this.btnI6.UseUnderline = true; - this.btnI6.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w84 = new global::Gtk.Image(); - this.btnI6.Image = w84; - this.tbUI.Add(this.btnI6); - global::Gtk.Table.TableChild w85 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI6])); - w85.TopAttach = ((uint)(2)); - w85.BottomAttach = ((uint)(3)); - w85.LeftAttach = ((uint)(15)); - w85.RightAttach = ((uint)(16)); - w85.XOptions = ((global::Gtk.AttachOptions)(4)); - w85.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI7 = new global::Gtk.Button(); - this.btnI7.WidthRequest = 50; - this.btnI7.HeightRequest = 50; - this.btnI7.CanFocus = true; - this.btnI7.Name = "btnI7"; - this.btnI7.UseUnderline = true; - this.btnI7.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w86 = new global::Gtk.Image(); - this.btnI7.Image = w86; - this.tbUI.Add(this.btnI7); - global::Gtk.Table.TableChild w87 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI7])); - w87.TopAttach = ((uint)(2)); - w87.BottomAttach = ((uint)(3)); - w87.LeftAttach = ((uint)(16)); - w87.RightAttach = ((uint)(17)); - w87.XOptions = ((global::Gtk.AttachOptions)(4)); - w87.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI8 = new global::Gtk.Button(); - this.btnI8.WidthRequest = 50; - this.btnI8.HeightRequest = 50; - this.btnI8.CanFocus = true; - this.btnI8.Name = "btnI8"; - this.btnI8.UseUnderline = true; - this.btnI8.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w88 = new global::Gtk.Image(); - this.btnI8.Image = w88; - this.tbUI.Add(this.btnI8); - global::Gtk.Table.TableChild w89 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI8])); - w89.TopAttach = ((uint)(2)); - w89.BottomAttach = ((uint)(3)); - w89.LeftAttach = ((uint)(17)); - w89.RightAttach = ((uint)(18)); - w89.XOptions = ((global::Gtk.AttachOptions)(4)); - w89.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnI9 = new global::Gtk.Button(); - this.btnI9.WidthRequest = 50; - this.btnI9.HeightRequest = 50; - this.btnI9.CanFocus = true; - this.btnI9.Name = "btnI9"; - this.btnI9.UseUnderline = true; - this.btnI9.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w90 = new global::Gtk.Image(); - this.btnI9.Image = w90; - this.tbUI.Add(this.btnI9); - global::Gtk.Table.TableChild w91 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI9])); - w91.TopAttach = ((uint)(2)); - w91.BottomAttach = ((uint)(3)); - w91.LeftAttach = ((uint)(18)); - w91.RightAttach = ((uint)(19)); - w91.XOptions = ((global::Gtk.AttachOptions)(4)); - w91.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnIG1 = new global::Gtk.Button(); - this.btnIG1.WidthRequest = 50; - this.btnIG1.HeightRequest = 50; - this.btnIG1.CanFocus = true; - this.btnIG1.Name = "btnIG1"; - this.btnIG1.UseUnderline = true; - this.btnIG1.Label = "TESTING"; - this.tbUI.Add(this.btnIG1); - global::Gtk.Table.TableChild w92 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG1])); - w92.TopAttach = ((uint)(13)); - w92.BottomAttach = ((uint)(14)); - w92.LeftAttach = ((uint)(15)); - w92.RightAttach = ((uint)(16)); - w92.XOptions = ((global::Gtk.AttachOptions)(4)); - w92.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnIG2 = new global::Gtk.Button(); - this.btnIG2.WidthRequest = 50; - this.btnIG2.HeightRequest = 50; - this.btnIG2.CanFocus = true; - this.btnIG2.Name = "btnIG2"; - this.btnIG2.UseUnderline = true; - this.btnIG2.Label = "TESTING"; - this.tbUI.Add(this.btnIG2); - global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG2])); - w93.TopAttach = ((uint)(13)); - w93.BottomAttach = ((uint)(14)); - w93.LeftAttach = ((uint)(16)); - w93.RightAttach = ((uint)(17)); - w93.XOptions = ((global::Gtk.AttachOptions)(4)); - w93.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnInv = new global::Gtk.Button(); - this.btnInv.WidthRequest = 50; - this.btnInv.HeightRequest = 50; - this.btnInv.CanFocus = true; - this.btnInv.Name = "btnInv"; - this.btnInv.UseUnderline = true; - this.btnInv.Label = "Inv"; - this.tbUI.Add(this.btnInv); - global::Gtk.Table.TableChild w94 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); - w94.TopAttach = ((uint)(9)); - w94.BottomAttach = ((uint)(10)); - w94.LeftAttach = ((uint)(13)); - w94.RightAttach = ((uint)(14)); - w94.XOptions = ((global::Gtk.AttachOptions)(4)); - w94.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnLog = new global::Gtk.Button(); - this.btnLog.WidthRequest = 250; - this.btnLog.HeightRequest = 50; - this.btnLog.CanFocus = true; - this.btnLog.Name = "btnLog"; - this.btnLog.UseUnderline = true; - this.btnLog.FocusOnClick = false; - this.btnLog.Label = "Event Log"; - this.tbUI.Add(this.btnLog); - global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); - w95.TopAttach = ((uint)(11)); - w95.BottomAttach = ((uint)(12)); - w95.LeftAttach = ((uint)(8)); - w95.RightAttach = ((uint)(13)); - w95.XOptions = ((global::Gtk.AttachOptions)(0)); - w95.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnMap = new global::Gtk.Button(); - this.btnMap.WidthRequest = 50; - this.btnMap.HeightRequest = 50; - this.btnMap.CanFocus = true; - this.btnMap.Name = "btnMap"; - this.btnMap.UseUnderline = true; - this.btnMap.Label = "Map"; - this.tbUI.Add(this.btnMap); - global::Gtk.Table.TableChild w96 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); - w96.TopAttach = ((uint)(9)); - w96.BottomAttach = ((uint)(10)); - w96.LeftAttach = ((uint)(7)); - w96.RightAttach = ((uint)(8)); - w96.XOptions = ((global::Gtk.AttachOptions)(4)); - w96.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnMusic = new global::Gtk.Button(); - this.btnMusic.WidthRequest = 50; - this.btnMusic.HeightRequest = 50; - this.btnMusic.CanFocus = true; - this.btnMusic.Name = "btnMusic"; - this.btnMusic.UseUnderline = true; - this.btnMusic.Label = "Music"; - this.tbUI.Add(this.btnMusic); - global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); - w97.TopAttach = ((uint)(11)); - w97.BottomAttach = ((uint)(12)); - w97.LeftAttach = ((uint)(7)); - w97.RightAttach = ((uint)(8)); - w97.XOptions = ((global::Gtk.AttachOptions)(4)); - w97.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP1 = new global::Gtk.Button(); - this.btnP1.WidthRequest = 50; - this.btnP1.HeightRequest = 50; - this.btnP1.CanFocus = true; - this.btnP1.Name = "btnP1"; - this.btnP1.UseUnderline = true; - this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w98 = new global::Gtk.Image(); - this.btnP1.Image = w98; - this.tbUI.Add(this.btnP1); - global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); - w99.TopAttach = ((uint)(1)); - w99.BottomAttach = ((uint)(2)); - w99.LeftAttach = ((uint)(8)); - w99.RightAttach = ((uint)(9)); - w99.XOptions = ((global::Gtk.AttachOptions)(4)); - w99.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP10 = new global::Gtk.Button(); - this.btnP10.WidthRequest = 50; - this.btnP10.HeightRequest = 50; - this.btnP10.CanFocus = true; - this.btnP10.Name = "btnP10"; - this.btnP10.UseUnderline = true; - this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w100 = new global::Gtk.Image(); - this.btnP10.Image = w100; - this.tbUI.Add(this.btnP10); - global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); - w101.TopAttach = ((uint)(2)); - w101.BottomAttach = ((uint)(3)); - w101.LeftAttach = ((uint)(12)); - w101.RightAttach = ((uint)(13)); - w101.XOptions = ((global::Gtk.AttachOptions)(4)); - w101.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP11 = new global::Gtk.Button(); - this.btnP11.WidthRequest = 50; - this.btnP11.HeightRequest = 50; - this.btnP11.CanFocus = true; - this.btnP11.Name = "btnP11"; - this.btnP11.UseUnderline = true; - this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w102 = new global::Gtk.Image(); - this.btnP11.Image = w102; - this.tbUI.Add(this.btnP11); - global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); - w103.TopAttach = ((uint)(3)); - w103.BottomAttach = ((uint)(4)); - w103.LeftAttach = ((uint)(8)); - w103.RightAttach = ((uint)(9)); - w103.XOptions = ((global::Gtk.AttachOptions)(4)); - w103.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP12 = new global::Gtk.Button(); - this.btnP12.WidthRequest = 50; - this.btnP12.HeightRequest = 50; - this.btnP12.CanFocus = true; - this.btnP12.Name = "btnP12"; - this.btnP12.UseUnderline = true; - this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w104 = new global::Gtk.Image(); - this.btnP12.Image = w104; - this.tbUI.Add(this.btnP12); - global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); - w105.TopAttach = ((uint)(3)); - w105.BottomAttach = ((uint)(4)); - w105.LeftAttach = ((uint)(9)); - w105.RightAttach = ((uint)(10)); - w105.XOptions = ((global::Gtk.AttachOptions)(4)); - w105.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP13 = new global::Gtk.Button(); - this.btnP13.WidthRequest = 50; - this.btnP13.HeightRequest = 50; - this.btnP13.CanFocus = true; - this.btnP13.Name = "btnP13"; - this.btnP13.UseUnderline = true; - this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w106 = new global::Gtk.Image(); - this.btnP13.Image = w106; - this.tbUI.Add(this.btnP13); - global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); - w107.TopAttach = ((uint)(3)); - w107.BottomAttach = ((uint)(4)); - w107.LeftAttach = ((uint)(10)); - w107.RightAttach = ((uint)(11)); - w107.XOptions = ((global::Gtk.AttachOptions)(4)); - w107.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP14 = new global::Gtk.Button(); - this.btnP14.WidthRequest = 50; - this.btnP14.HeightRequest = 50; - this.btnP14.CanFocus = true; - this.btnP14.Name = "btnP14"; - this.btnP14.UseUnderline = true; - this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w108 = new global::Gtk.Image(); - this.btnP14.Image = w108; - this.tbUI.Add(this.btnP14); - global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); - w109.TopAttach = ((uint)(3)); - w109.BottomAttach = ((uint)(4)); - w109.LeftAttach = ((uint)(11)); - w109.RightAttach = ((uint)(12)); - w109.XOptions = ((global::Gtk.AttachOptions)(4)); - w109.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP15 = new global::Gtk.Button(); - this.btnP15.WidthRequest = 50; - this.btnP15.HeightRequest = 50; - this.btnP15.CanFocus = true; - this.btnP15.Name = "btnP15"; - this.btnP15.UseUnderline = true; - this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w110 = new global::Gtk.Image(); - this.btnP15.Image = w110; - this.tbUI.Add(this.btnP15); - global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); - w111.TopAttach = ((uint)(3)); - w111.BottomAttach = ((uint)(4)); - w111.LeftAttach = ((uint)(12)); - w111.RightAttach = ((uint)(13)); - w111.XOptions = ((global::Gtk.AttachOptions)(4)); - w111.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP16 = new global::Gtk.Button(); - this.btnP16.WidthRequest = 50; - this.btnP16.HeightRequest = 50; - this.btnP16.CanFocus = true; - this.btnP16.Name = "btnP16"; - this.btnP16.UseUnderline = true; - this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w112 = new global::Gtk.Image(); - this.btnP16.Image = w112; - this.tbUI.Add(this.btnP16); - global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); - w113.TopAttach = ((uint)(4)); - w113.BottomAttach = ((uint)(5)); - w113.LeftAttach = ((uint)(8)); - w113.RightAttach = ((uint)(9)); - w113.XOptions = ((global::Gtk.AttachOptions)(4)); - w113.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP17 = new global::Gtk.Button(); - this.btnP17.WidthRequest = 50; - this.btnP17.HeightRequest = 50; - this.btnP17.CanFocus = true; - this.btnP17.Name = "btnP17"; - this.btnP17.UseUnderline = true; - this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w114 = new global::Gtk.Image(); - this.btnP17.Image = w114; - this.tbUI.Add(this.btnP17); - global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); - w115.TopAttach = ((uint)(4)); - w115.BottomAttach = ((uint)(5)); - w115.LeftAttach = ((uint)(9)); - w115.RightAttach = ((uint)(10)); - w115.XOptions = ((global::Gtk.AttachOptions)(4)); - w115.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP18 = new global::Gtk.Button(); - this.btnP18.WidthRequest = 50; - this.btnP18.HeightRequest = 50; - this.btnP18.CanFocus = true; - this.btnP18.Name = "btnP18"; - this.btnP18.UseUnderline = true; - this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w116 = new global::Gtk.Image(); - this.btnP18.Image = w116; - this.tbUI.Add(this.btnP18); - global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); - w117.TopAttach = ((uint)(4)); - w117.BottomAttach = ((uint)(5)); - w117.LeftAttach = ((uint)(10)); - w117.RightAttach = ((uint)(11)); - w117.XOptions = ((global::Gtk.AttachOptions)(4)); - w117.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP19 = new global::Gtk.Button(); - this.btnP19.WidthRequest = 50; - this.btnP19.HeightRequest = 50; - this.btnP19.CanFocus = true; - this.btnP19.Name = "btnP19"; - this.btnP19.UseUnderline = true; - this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w118 = new global::Gtk.Image(); - this.btnP19.Image = w118; - this.tbUI.Add(this.btnP19); - global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); - w119.TopAttach = ((uint)(4)); - w119.BottomAttach = ((uint)(5)); - w119.LeftAttach = ((uint)(11)); - w119.RightAttach = ((uint)(12)); - w119.XOptions = ((global::Gtk.AttachOptions)(4)); - w119.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP2 = new global::Gtk.Button(); - this.btnP2.WidthRequest = 50; - this.btnP2.HeightRequest = 50; - this.btnP2.CanFocus = true; - this.btnP2.Name = "btnP2"; - this.btnP2.UseUnderline = true; - this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w120 = new global::Gtk.Image(); - this.btnP2.Image = w120; - this.tbUI.Add(this.btnP2); - global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); - w121.TopAttach = ((uint)(1)); - w121.BottomAttach = ((uint)(2)); - w121.LeftAttach = ((uint)(9)); - w121.RightAttach = ((uint)(10)); - w121.XOptions = ((global::Gtk.AttachOptions)(4)); - w121.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP20 = new global::Gtk.Button(); - this.btnP20.WidthRequest = 50; - this.btnP20.HeightRequest = 50; - this.btnP20.CanFocus = true; - this.btnP20.Name = "btnP20"; - this.btnP20.UseUnderline = true; - this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w122 = new global::Gtk.Image(); - this.btnP20.Image = w122; - this.tbUI.Add(this.btnP20); - global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); - w123.TopAttach = ((uint)(4)); - w123.BottomAttach = ((uint)(5)); - w123.LeftAttach = ((uint)(12)); - w123.RightAttach = ((uint)(13)); - w123.XOptions = ((global::Gtk.AttachOptions)(4)); - w123.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP21 = new global::Gtk.Button(); - this.btnP21.WidthRequest = 50; - this.btnP21.HeightRequest = 50; - this.btnP21.CanFocus = true; - this.btnP21.Name = "btnP21"; - this.btnP21.UseUnderline = true; - this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w124 = new global::Gtk.Image(); - this.btnP21.Image = w124; - this.tbUI.Add(this.btnP21); - global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); - w125.TopAttach = ((uint)(5)); - w125.BottomAttach = ((uint)(6)); - w125.LeftAttach = ((uint)(8)); - w125.RightAttach = ((uint)(9)); - w125.XOptions = ((global::Gtk.AttachOptions)(4)); - w125.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP22 = new global::Gtk.Button(); - this.btnP22.WidthRequest = 50; - this.btnP22.HeightRequest = 50; - this.btnP22.CanFocus = true; - this.btnP22.Name = "btnP22"; - this.btnP22.UseUnderline = true; - this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w126 = new global::Gtk.Image(); - this.btnP22.Image = w126; - this.tbUI.Add(this.btnP22); - global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); - w127.TopAttach = ((uint)(5)); - w127.BottomAttach = ((uint)(6)); - w127.LeftAttach = ((uint)(9)); - w127.RightAttach = ((uint)(10)); - w127.XOptions = ((global::Gtk.AttachOptions)(4)); - w127.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP23 = new global::Gtk.Button(); - this.btnP23.WidthRequest = 50; - this.btnP23.HeightRequest = 50; - this.btnP23.CanFocus = true; - this.btnP23.Name = "btnP23"; - this.btnP23.UseUnderline = true; - this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w128 = new global::Gtk.Image(); - this.btnP23.Image = w128; - this.tbUI.Add(this.btnP23); - global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); - w129.TopAttach = ((uint)(5)); - w129.BottomAttach = ((uint)(6)); - w129.LeftAttach = ((uint)(10)); - w129.RightAttach = ((uint)(11)); - w129.XOptions = ((global::Gtk.AttachOptions)(4)); - w129.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP24 = new global::Gtk.Button(); - this.btnP24.WidthRequest = 50; - this.btnP24.HeightRequest = 50; - this.btnP24.CanFocus = true; - this.btnP24.Name = "btnP24"; - this.btnP24.UseUnderline = true; - this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w130 = new global::Gtk.Image(); - this.btnP24.Image = w130; - this.tbUI.Add(this.btnP24); - global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); - w131.TopAttach = ((uint)(5)); - w131.BottomAttach = ((uint)(6)); - w131.LeftAttach = ((uint)(11)); - w131.RightAttach = ((uint)(12)); - w131.XOptions = ((global::Gtk.AttachOptions)(4)); - w131.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP25 = new global::Gtk.Button(); - this.btnP25.WidthRequest = 50; - this.btnP25.HeightRequest = 50; - this.btnP25.CanFocus = true; - this.btnP25.Name = "btnP25"; - this.btnP25.UseUnderline = true; - this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w132 = new global::Gtk.Image(); - this.btnP25.Image = w132; - this.tbUI.Add(this.btnP25); - global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); - w133.TopAttach = ((uint)(5)); - w133.BottomAttach = ((uint)(6)); - w133.LeftAttach = ((uint)(12)); - w133.RightAttach = ((uint)(13)); - w133.XOptions = ((global::Gtk.AttachOptions)(4)); - w133.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP3 = new global::Gtk.Button(); - this.btnP3.WidthRequest = 50; - this.btnP3.HeightRequest = 50; - this.btnP3.CanFocus = true; - this.btnP3.Name = "btnP3"; - this.btnP3.UseUnderline = true; - this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w134 = new global::Gtk.Image(); - this.btnP3.Image = w134; - this.tbUI.Add(this.btnP3); - global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); - w135.TopAttach = ((uint)(1)); - w135.BottomAttach = ((uint)(2)); - w135.LeftAttach = ((uint)(10)); - w135.RightAttach = ((uint)(11)); - w135.XOptions = ((global::Gtk.AttachOptions)(4)); - w135.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP4 = new global::Gtk.Button(); - this.btnP4.WidthRequest = 50; - this.btnP4.HeightRequest = 50; - this.btnP4.CanFocus = true; - this.btnP4.Name = "btnP4"; - this.btnP4.UseUnderline = true; - this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w136 = new global::Gtk.Image(); - this.btnP4.Image = w136; - this.tbUI.Add(this.btnP4); - global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); - w137.TopAttach = ((uint)(1)); - w137.BottomAttach = ((uint)(2)); - w137.LeftAttach = ((uint)(11)); - w137.RightAttach = ((uint)(12)); - w137.XOptions = ((global::Gtk.AttachOptions)(4)); - w137.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP5 = new global::Gtk.Button(); - this.btnP5.WidthRequest = 50; - this.btnP5.HeightRequest = 50; - this.btnP5.CanFocus = true; - this.btnP5.Name = "btnP5"; - this.btnP5.UseUnderline = true; - this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w138 = new global::Gtk.Image(); - this.btnP5.Image = w138; - this.tbUI.Add(this.btnP5); - global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); - w139.TopAttach = ((uint)(1)); - w139.BottomAttach = ((uint)(2)); - w139.LeftAttach = ((uint)(12)); - w139.RightAttach = ((uint)(13)); - w139.XOptions = ((global::Gtk.AttachOptions)(4)); - w139.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP6 = new global::Gtk.Button(); - this.btnP6.WidthRequest = 50; - this.btnP6.HeightRequest = 50; - this.btnP6.CanFocus = true; - this.btnP6.Name = "btnP6"; - this.btnP6.UseUnderline = true; - this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w140 = new global::Gtk.Image(); - this.btnP6.Image = w140; - this.tbUI.Add(this.btnP6); - global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); - w141.TopAttach = ((uint)(2)); - w141.BottomAttach = ((uint)(3)); - w141.LeftAttach = ((uint)(8)); - w141.RightAttach = ((uint)(9)); - w141.XOptions = ((global::Gtk.AttachOptions)(4)); - w141.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP7 = new global::Gtk.Button(); - this.btnP7.WidthRequest = 50; - this.btnP7.HeightRequest = 50; - this.btnP7.CanFocus = true; - this.btnP7.Name = "btnP7"; - this.btnP7.UseUnderline = true; - this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w142 = new global::Gtk.Image(); - this.btnP7.Image = w142; - this.tbUI.Add(this.btnP7); - global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); - w143.TopAttach = ((uint)(2)); - w143.BottomAttach = ((uint)(3)); - w143.LeftAttach = ((uint)(9)); - w143.RightAttach = ((uint)(10)); - w143.XOptions = ((global::Gtk.AttachOptions)(4)); - w143.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP8 = new global::Gtk.Button(); - this.btnP8.WidthRequest = 50; - this.btnP8.HeightRequest = 50; - this.btnP8.CanFocus = true; - this.btnP8.Name = "btnP8"; - this.btnP8.UseUnderline = true; - this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w144 = new global::Gtk.Image(); - this.btnP8.Image = w144; - this.tbUI.Add(this.btnP8); - global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); - w145.TopAttach = ((uint)(2)); - w145.BottomAttach = ((uint)(3)); - w145.LeftAttach = ((uint)(10)); - w145.RightAttach = ((uint)(11)); - w145.XOptions = ((global::Gtk.AttachOptions)(4)); - w145.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnP9 = new global::Gtk.Button(); - this.btnP9.WidthRequest = 50; - this.btnP9.HeightRequest = 50; - this.btnP9.CanFocus = true; - this.btnP9.Name = "btnP9"; - this.btnP9.UseUnderline = true; - this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w146 = new global::Gtk.Image(); - this.btnP9.Image = w146; - this.tbUI.Add(this.btnP9); - global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); - w147.TopAttach = ((uint)(2)); - w147.BottomAttach = ((uint)(3)); - w147.LeftAttach = ((uint)(11)); - w147.RightAttach = ((uint)(12)); - w147.XOptions = ((global::Gtk.AttachOptions)(4)); - w147.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnPause = new global::Gtk.Button(); - this.btnPause.WidthRequest = 50; - this.btnPause.HeightRequest = 50; - this.btnPause.CanFocus = true; - this.btnPause.Name = "btnPause"; - this.btnPause.UseUnderline = true; - this.btnPause.Label = "Pause"; - this.tbUI.Add(this.btnPause); - global::Gtk.Table.TableChild w148 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); - w148.TopAttach = ((uint)(11)); - w148.BottomAttach = ((uint)(12)); - w148.LeftAttach = ((uint)(13)); - w148.RightAttach = ((uint)(14)); - w148.XOptions = ((global::Gtk.AttachOptions)(4)); - w148.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG1 = new global::Gtk.Image(); - this.imgG1.WidthRequest = 50; - this.imgG1.HeightRequest = 50; - this.imgG1.Name = "imgG1"; - this.tbUI.Add(this.imgG1); - global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); - w149.TopAttach = ((uint)(2)); - w149.BottomAttach = ((uint)(3)); - w149.LeftAttach = ((uint)(1)); - w149.RightAttach = ((uint)(2)); - w149.XOptions = ((global::Gtk.AttachOptions)(4)); - w149.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG10 = new global::Gtk.Image(); - this.imgG10.Name = "imgG10"; - this.tbUI.Add(this.imgG10); - global::Gtk.Table.TableChild w150 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); - w150.TopAttach = ((uint)(3)); - w150.BottomAttach = ((uint)(4)); - w150.LeftAttach = ((uint)(5)); - w150.RightAttach = ((uint)(6)); - w150.XOptions = ((global::Gtk.AttachOptions)(4)); - w150.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG11 = new global::Gtk.Image(); - this.imgG11.WidthRequest = 50; - this.imgG11.HeightRequest = 50; - this.imgG11.Name = "imgG11"; - this.tbUI.Add(this.imgG11); - global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); - w151.TopAttach = ((uint)(4)); - w151.BottomAttach = ((uint)(5)); - w151.LeftAttach = ((uint)(1)); - w151.RightAttach = ((uint)(2)); - w151.XOptions = ((global::Gtk.AttachOptions)(4)); - w151.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG12 = new global::Gtk.Image(); - this.imgG12.Name = "imgG12"; - this.tbUI.Add(this.imgG12); - global::Gtk.Table.TableChild w152 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); - w152.TopAttach = ((uint)(4)); - w152.BottomAttach = ((uint)(5)); - w152.LeftAttach = ((uint)(2)); - w152.RightAttach = ((uint)(3)); - w152.XOptions = ((global::Gtk.AttachOptions)(4)); - w152.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG13 = new global::Gtk.Image(); - this.imgG13.Name = "imgG13"; - this.tbUI.Add(this.imgG13); - global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); - w153.TopAttach = ((uint)(4)); - w153.BottomAttach = ((uint)(5)); - w153.LeftAttach = ((uint)(3)); - w153.RightAttach = ((uint)(4)); - w153.XOptions = ((global::Gtk.AttachOptions)(4)); - w153.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG14 = new global::Gtk.Image(); - this.imgG14.Name = "imgG14"; - this.tbUI.Add(this.imgG14); - global::Gtk.Table.TableChild w154 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); - w154.TopAttach = ((uint)(4)); - w154.BottomAttach = ((uint)(5)); - w154.LeftAttach = ((uint)(4)); - w154.RightAttach = ((uint)(5)); - w154.XOptions = ((global::Gtk.AttachOptions)(4)); - w154.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG15 = new global::Gtk.Image(); - this.imgG15.Name = "imgG15"; - this.tbUI.Add(this.imgG15); - global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); - w155.TopAttach = ((uint)(4)); - w155.BottomAttach = ((uint)(5)); - w155.LeftAttach = ((uint)(5)); - w155.RightAttach = ((uint)(6)); - w155.XOptions = ((global::Gtk.AttachOptions)(4)); - w155.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG16 = new global::Gtk.Image(); - this.imgG16.WidthRequest = 50; - this.imgG16.HeightRequest = 50; - this.imgG16.Name = "imgG16"; - this.tbUI.Add(this.imgG16); - global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); - w156.TopAttach = ((uint)(5)); - w156.BottomAttach = ((uint)(6)); - w156.LeftAttach = ((uint)(1)); - w156.RightAttach = ((uint)(2)); - w156.XOptions = ((global::Gtk.AttachOptions)(4)); - w156.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG17 = new global::Gtk.Image(); - this.imgG17.HeightRequest = 50; - this.imgG17.Name = "imgG17"; - this.tbUI.Add(this.imgG17); - global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); - w157.TopAttach = ((uint)(5)); - w157.BottomAttach = ((uint)(6)); - w157.LeftAttach = ((uint)(2)); - w157.RightAttach = ((uint)(3)); - w157.XOptions = ((global::Gtk.AttachOptions)(4)); - w157.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG18 = new global::Gtk.Image(); - this.imgG18.HeightRequest = 50; - this.imgG18.Name = "imgG18"; - this.tbUI.Add(this.imgG18); - global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); - w158.TopAttach = ((uint)(5)); - w158.BottomAttach = ((uint)(6)); - w158.LeftAttach = ((uint)(3)); - w158.RightAttach = ((uint)(4)); - w158.XOptions = ((global::Gtk.AttachOptions)(4)); - w158.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG19 = new global::Gtk.Image(); - this.imgG19.Name = "imgG19"; - this.tbUI.Add(this.imgG19); - global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); - w159.TopAttach = ((uint)(5)); - w159.BottomAttach = ((uint)(6)); - w159.LeftAttach = ((uint)(4)); - w159.RightAttach = ((uint)(5)); - w159.XOptions = ((global::Gtk.AttachOptions)(4)); - w159.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG2 = new global::Gtk.Image(); - this.imgG2.Name = "imgG2"; - this.tbUI.Add(this.imgG2); - global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); - w160.TopAttach = ((uint)(2)); - w160.BottomAttach = ((uint)(3)); - w160.LeftAttach = ((uint)(2)); - w160.RightAttach = ((uint)(3)); - w160.XOptions = ((global::Gtk.AttachOptions)(4)); - w160.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG20 = new global::Gtk.Image(); - this.imgG20.Name = "imgG20"; - this.tbUI.Add(this.imgG20); - global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); - w161.TopAttach = ((uint)(5)); - w161.BottomAttach = ((uint)(6)); - w161.LeftAttach = ((uint)(5)); - w161.RightAttach = ((uint)(6)); - w161.XOptions = ((global::Gtk.AttachOptions)(4)); - w161.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG21 = new global::Gtk.Image(); - this.imgG21.WidthRequest = 50; - this.imgG21.HeightRequest = 50; - this.imgG21.Name = "imgG21"; - this.tbUI.Add(this.imgG21); - global::Gtk.Table.TableChild w162 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); - w162.TopAttach = ((uint)(6)); - w162.BottomAttach = ((uint)(7)); - w162.LeftAttach = ((uint)(1)); - w162.RightAttach = ((uint)(2)); - w162.XOptions = ((global::Gtk.AttachOptions)(4)); - w162.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG22 = new global::Gtk.Image(); - this.imgG22.Name = "imgG22"; - this.tbUI.Add(this.imgG22); - global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); - w163.TopAttach = ((uint)(6)); - w163.BottomAttach = ((uint)(7)); - w163.LeftAttach = ((uint)(2)); - w163.RightAttach = ((uint)(3)); - w163.XOptions = ((global::Gtk.AttachOptions)(4)); - w163.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG23 = new global::Gtk.Image(); - this.imgG23.Name = "imgG23"; - this.tbUI.Add(this.imgG23); - global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); - w164.TopAttach = ((uint)(6)); - w164.BottomAttach = ((uint)(7)); - w164.LeftAttach = ((uint)(3)); - w164.RightAttach = ((uint)(4)); - w164.XOptions = ((global::Gtk.AttachOptions)(4)); - w164.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG24 = new global::Gtk.Image(); - this.imgG24.Name = "imgG24"; - this.tbUI.Add(this.imgG24); - global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); - w165.TopAttach = ((uint)(6)); - w165.BottomAttach = ((uint)(7)); - w165.LeftAttach = ((uint)(4)); - w165.RightAttach = ((uint)(5)); - w165.XOptions = ((global::Gtk.AttachOptions)(4)); - w165.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG25 = new global::Gtk.Image(); - this.imgG25.Name = "imgG25"; - this.tbUI.Add(this.imgG25); - global::Gtk.Table.TableChild w166 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); - w166.TopAttach = ((uint)(6)); - w166.BottomAttach = ((uint)(7)); - w166.LeftAttach = ((uint)(5)); - w166.RightAttach = ((uint)(6)); - w166.XOptions = ((global::Gtk.AttachOptions)(4)); - w166.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG3 = new global::Gtk.Image(); - this.imgG3.Name = "imgG3"; - this.tbUI.Add(this.imgG3); - global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); - w167.TopAttach = ((uint)(2)); - w167.BottomAttach = ((uint)(3)); - w167.LeftAttach = ((uint)(3)); - w167.RightAttach = ((uint)(4)); - w167.XOptions = ((global::Gtk.AttachOptions)(4)); - w167.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG4 = new global::Gtk.Image(); - this.imgG4.Name = "imgG4"; - this.tbUI.Add(this.imgG4); - global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); - w168.TopAttach = ((uint)(2)); - w168.BottomAttach = ((uint)(3)); - w168.LeftAttach = ((uint)(4)); - w168.RightAttach = ((uint)(5)); - w168.XOptions = ((global::Gtk.AttachOptions)(4)); - w168.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG5 = new global::Gtk.Image(); - this.imgG5.Name = "imgG5"; - this.tbUI.Add(this.imgG5); - global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); - w169.TopAttach = ((uint)(2)); - w169.BottomAttach = ((uint)(3)); - w169.LeftAttach = ((uint)(5)); - w169.RightAttach = ((uint)(6)); - w169.XOptions = ((global::Gtk.AttachOptions)(4)); - w169.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG6 = new global::Gtk.Image(); - this.imgG6.WidthRequest = 50; - this.imgG6.HeightRequest = 50; - this.imgG6.Name = "imgG6"; - this.tbUI.Add(this.imgG6); - global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); - w170.TopAttach = ((uint)(3)); - w170.BottomAttach = ((uint)(4)); - w170.LeftAttach = ((uint)(1)); - w170.RightAttach = ((uint)(2)); - w170.XOptions = ((global::Gtk.AttachOptions)(4)); - w170.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG7 = new global::Gtk.Image(); - this.imgG7.Name = "imgG7"; - this.tbUI.Add(this.imgG7); - global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); - w171.TopAttach = ((uint)(3)); - w171.BottomAttach = ((uint)(4)); - w171.LeftAttach = ((uint)(2)); - w171.RightAttach = ((uint)(3)); - w171.XOptions = ((global::Gtk.AttachOptions)(4)); - w171.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG8 = new global::Gtk.Image(); - this.imgG8.Name = "imgG8"; - this.tbUI.Add(this.imgG8); - global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); - w172.TopAttach = ((uint)(3)); - w172.BottomAttach = ((uint)(4)); - w172.LeftAttach = ((uint)(3)); - w172.RightAttach = ((uint)(4)); - w172.XOptions = ((global::Gtk.AttachOptions)(4)); - w172.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG9 = new global::Gtk.Image(); - this.imgG9.Name = "imgG9"; - this.tbUI.Add(this.imgG9); - global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); - w173.TopAttach = ((uint)(3)); - w173.BottomAttach = ((uint)(4)); - w173.LeftAttach = ((uint)(4)); - w173.RightAttach = ((uint)(5)); - w173.XOptions = ((global::Gtk.AttachOptions)(4)); - w173.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI1 = new global::Gtk.Image(); - this.imgI1.WidthRequest = 50; - this.imgI1.HeightRequest = 50; - this.imgI1.Name = "imgI1"; - this.tbUI.Add(this.imgI1); - global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); - w174.TopAttach = ((uint)(10)); - w174.BottomAttach = ((uint)(11)); - w174.LeftAttach = ((uint)(1)); - w174.RightAttach = ((uint)(2)); - w174.XOptions = ((global::Gtk.AttachOptions)(4)); - w174.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI10 = new global::Gtk.Image(); - this.imgI10.WidthRequest = 50; - this.imgI10.HeightRequest = 50; - this.imgI10.Name = "imgI10"; - this.tbUI.Add(this.imgI10); - global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); - w175.TopAttach = ((uint)(11)); - w175.BottomAttach = ((uint)(12)); - w175.LeftAttach = ((uint)(5)); - w175.RightAttach = ((uint)(6)); - w175.XOptions = ((global::Gtk.AttachOptions)(4)); - w175.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI11 = new global::Gtk.Image(); - this.imgI11.WidthRequest = 50; - this.imgI11.HeightRequest = 50; - this.imgI11.Name = "imgI11"; - this.tbUI.Add(this.imgI11); - global::Gtk.Table.TableChild w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); - w176.TopAttach = ((uint)(12)); - w176.BottomAttach = ((uint)(13)); - w176.LeftAttach = ((uint)(1)); - w176.RightAttach = ((uint)(2)); - w176.XOptions = ((global::Gtk.AttachOptions)(4)); - w176.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI12 = new global::Gtk.Image(); - this.imgI12.WidthRequest = 50; - this.imgI12.HeightRequest = 50; - this.imgI12.Name = "imgI12"; - this.tbUI.Add(this.imgI12); - global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); - w177.TopAttach = ((uint)(12)); - w177.BottomAttach = ((uint)(13)); - w177.LeftAttach = ((uint)(2)); - w177.RightAttach = ((uint)(3)); - w177.XOptions = ((global::Gtk.AttachOptions)(4)); - w177.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI13 = new global::Gtk.Image(); - this.imgI13.WidthRequest = 50; - this.imgI13.HeightRequest = 50; - this.imgI13.Name = "imgI13"; - this.tbUI.Add(this.imgI13); - global::Gtk.Table.TableChild w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); - w178.TopAttach = ((uint)(12)); - w178.BottomAttach = ((uint)(13)); - w178.LeftAttach = ((uint)(3)); - w178.RightAttach = ((uint)(4)); - w178.XOptions = ((global::Gtk.AttachOptions)(4)); - w178.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI14 = new global::Gtk.Image(); - this.imgI14.WidthRequest = 50; - this.imgI14.HeightRequest = 50; - this.imgI14.Name = "imgI14"; - this.tbUI.Add(this.imgI14); - global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); - w179.TopAttach = ((uint)(12)); - w179.BottomAttach = ((uint)(13)); - w179.LeftAttach = ((uint)(4)); - w179.RightAttach = ((uint)(5)); - w179.XOptions = ((global::Gtk.AttachOptions)(4)); - w179.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI15 = new global::Gtk.Image(); - this.imgI15.WidthRequest = 50; - this.imgI15.HeightRequest = 50; - this.imgI15.Name = "imgI15"; - this.tbUI.Add(this.imgI15); - global::Gtk.Table.TableChild w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); - w180.TopAttach = ((uint)(12)); - w180.BottomAttach = ((uint)(13)); - w180.LeftAttach = ((uint)(5)); - w180.RightAttach = ((uint)(6)); - w180.XOptions = ((global::Gtk.AttachOptions)(4)); - w180.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI16 = new global::Gtk.Image(); - this.imgI16.WidthRequest = 50; - this.imgI16.HeightRequest = 50; - this.imgI16.Name = "imgI16"; - this.tbUI.Add(this.imgI16); - global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); - w181.TopAttach = ((uint)(13)); - w181.BottomAttach = ((uint)(14)); - w181.LeftAttach = ((uint)(1)); - w181.RightAttach = ((uint)(2)); - w181.XOptions = ((global::Gtk.AttachOptions)(4)); - w181.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI17 = new global::Gtk.Image(); - this.imgI17.WidthRequest = 50; - this.imgI17.HeightRequest = 50; - this.imgI17.Name = "imgI17"; - this.tbUI.Add(this.imgI17); - global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); - w182.TopAttach = ((uint)(13)); - w182.BottomAttach = ((uint)(14)); - w182.LeftAttach = ((uint)(2)); - w182.RightAttach = ((uint)(3)); - w182.XOptions = ((global::Gtk.AttachOptions)(4)); - w182.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI18 = new global::Gtk.Image(); - this.imgI18.WidthRequest = 50; - this.imgI18.HeightRequest = 50; - this.imgI18.Name = "imgI18"; - this.tbUI.Add(this.imgI18); - global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); - w183.TopAttach = ((uint)(13)); - w183.BottomAttach = ((uint)(14)); - w183.LeftAttach = ((uint)(3)); - w183.RightAttach = ((uint)(4)); - w183.XOptions = ((global::Gtk.AttachOptions)(4)); - w183.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI19 = new global::Gtk.Image(); - this.imgI19.WidthRequest = 50; - this.imgI19.HeightRequest = 50; - this.imgI19.Name = "imgI19"; - this.tbUI.Add(this.imgI19); - global::Gtk.Table.TableChild w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); - w184.TopAttach = ((uint)(13)); - w184.BottomAttach = ((uint)(14)); - w184.LeftAttach = ((uint)(4)); - w184.RightAttach = ((uint)(5)); - w184.XOptions = ((global::Gtk.AttachOptions)(4)); - w184.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI2 = new global::Gtk.Image(); - this.imgI2.WidthRequest = 50; - this.imgI2.HeightRequest = 50; - this.imgI2.Name = "imgI2"; - this.tbUI.Add(this.imgI2); - global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); - w185.TopAttach = ((uint)(10)); - w185.BottomAttach = ((uint)(11)); - w185.LeftAttach = ((uint)(2)); - w185.RightAttach = ((uint)(3)); - w185.XOptions = ((global::Gtk.AttachOptions)(4)); - w185.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI20 = new global::Gtk.Image(); - this.imgI20.WidthRequest = 50; - this.imgI20.HeightRequest = 50; - this.imgI20.Name = "imgI20"; - this.tbUI.Add(this.imgI20); - global::Gtk.Table.TableChild w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); - w186.TopAttach = ((uint)(13)); - w186.BottomAttach = ((uint)(14)); - w186.LeftAttach = ((uint)(5)); - w186.RightAttach = ((uint)(6)); - w186.XOptions = ((global::Gtk.AttachOptions)(4)); - w186.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI21 = new global::Gtk.Image(); - this.imgI21.WidthRequest = 50; - this.imgI21.HeightRequest = 50; - this.imgI21.Name = "imgI21"; - this.tbUI.Add(this.imgI21); - global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); - w187.TopAttach = ((uint)(14)); - w187.BottomAttach = ((uint)(15)); - w187.LeftAttach = ((uint)(1)); - w187.RightAttach = ((uint)(2)); - w187.XOptions = ((global::Gtk.AttachOptions)(4)); - w187.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI22 = new global::Gtk.Image(); - this.imgI22.WidthRequest = 50; - this.imgI22.HeightRequest = 50; - this.imgI22.Name = "imgI22"; - this.tbUI.Add(this.imgI22); - global::Gtk.Table.TableChild w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); - w188.TopAttach = ((uint)(14)); - w188.BottomAttach = ((uint)(15)); - w188.LeftAttach = ((uint)(2)); - w188.RightAttach = ((uint)(3)); - w188.XOptions = ((global::Gtk.AttachOptions)(4)); - w188.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI23 = new global::Gtk.Image(); - this.imgI23.WidthRequest = 50; - this.imgI23.HeightRequest = 50; - this.imgI23.Name = "imgI23"; - this.tbUI.Add(this.imgI23); - global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); - w189.TopAttach = ((uint)(14)); - w189.BottomAttach = ((uint)(15)); - w189.LeftAttach = ((uint)(3)); - w189.RightAttach = ((uint)(4)); - w189.XOptions = ((global::Gtk.AttachOptions)(4)); - w189.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI24 = new global::Gtk.Image(); - this.imgI24.WidthRequest = 50; - this.imgI24.HeightRequest = 50; - this.imgI24.Name = "imgI24"; - this.tbUI.Add(this.imgI24); - global::Gtk.Table.TableChild w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); - w190.TopAttach = ((uint)(14)); - w190.BottomAttach = ((uint)(15)); - w190.LeftAttach = ((uint)(4)); - w190.RightAttach = ((uint)(5)); - w190.XOptions = ((global::Gtk.AttachOptions)(4)); - w190.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI25 = new global::Gtk.Image(); - this.imgI25.WidthRequest = 50; - this.imgI25.HeightRequest = 50; - this.imgI25.Name = "imgI25"; - this.tbUI.Add(this.imgI25); - global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); - w191.TopAttach = ((uint)(14)); - w191.BottomAttach = ((uint)(15)); - w191.LeftAttach = ((uint)(5)); - w191.RightAttach = ((uint)(6)); - w191.XOptions = ((global::Gtk.AttachOptions)(4)); - w191.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI3 = new global::Gtk.Image(); - this.imgI3.WidthRequest = 50; - this.imgI3.HeightRequest = 50; - this.imgI3.Name = "imgI3"; - this.tbUI.Add(this.imgI3); - global::Gtk.Table.TableChild w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); - w192.TopAttach = ((uint)(10)); - w192.BottomAttach = ((uint)(11)); - w192.LeftAttach = ((uint)(3)); - w192.RightAttach = ((uint)(4)); - w192.XOptions = ((global::Gtk.AttachOptions)(4)); - w192.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI4 = new global::Gtk.Image(); - this.imgI4.WidthRequest = 50; - this.imgI4.HeightRequest = 50; - this.imgI4.Name = "imgI4"; - this.tbUI.Add(this.imgI4); - global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); - w193.TopAttach = ((uint)(10)); - w193.BottomAttach = ((uint)(11)); - w193.LeftAttach = ((uint)(4)); - w193.RightAttach = ((uint)(5)); - w193.XOptions = ((global::Gtk.AttachOptions)(4)); - w193.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI5 = new global::Gtk.Image(); - this.imgI5.WidthRequest = 50; - this.imgI5.HeightRequest = 50; - this.imgI5.Name = "imgI5"; - this.tbUI.Add(this.imgI5); - global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); - w194.TopAttach = ((uint)(10)); - w194.BottomAttach = ((uint)(11)); - w194.LeftAttach = ((uint)(5)); - w194.RightAttach = ((uint)(6)); - w194.XOptions = ((global::Gtk.AttachOptions)(4)); - w194.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI6 = new global::Gtk.Image(); - this.imgI6.WidthRequest = 50; - this.imgI6.HeightRequest = 50; - this.imgI6.Name = "imgI6"; - this.tbUI.Add(this.imgI6); - global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); - w195.TopAttach = ((uint)(11)); - w195.BottomAttach = ((uint)(12)); - w195.LeftAttach = ((uint)(1)); - w195.RightAttach = ((uint)(2)); - w195.XOptions = ((global::Gtk.AttachOptions)(4)); - w195.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI7 = new global::Gtk.Image(); - this.imgI7.WidthRequest = 50; - this.imgI7.HeightRequest = 50; - this.imgI7.Name = "imgI7"; - this.tbUI.Add(this.imgI7); - global::Gtk.Table.TableChild w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); - w196.TopAttach = ((uint)(11)); - w196.BottomAttach = ((uint)(12)); - w196.LeftAttach = ((uint)(2)); - w196.RightAttach = ((uint)(3)); - w196.XOptions = ((global::Gtk.AttachOptions)(4)); - w196.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI8 = new global::Gtk.Image(); - this.imgI8.WidthRequest = 50; - this.imgI8.HeightRequest = 50; - this.imgI8.Name = "imgI8"; - this.tbUI.Add(this.imgI8); - global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); - w197.TopAttach = ((uint)(11)); - w197.BottomAttach = ((uint)(12)); - w197.LeftAttach = ((uint)(3)); - w197.RightAttach = ((uint)(4)); - w197.XOptions = ((global::Gtk.AttachOptions)(4)); - w197.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgI9 = new global::Gtk.Image(); - this.imgI9.WidthRequest = 50; - this.imgI9.HeightRequest = 50; - this.imgI9.Name = "imgI9"; - this.tbUI.Add(this.imgI9); - global::Gtk.Table.TableChild w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); - w198.TopAttach = ((uint)(11)); - w198.BottomAttach = ((uint)(12)); - w198.LeftAttach = ((uint)(4)); - w198.RightAttach = ((uint)(5)); - w198.XOptions = ((global::Gtk.AttachOptions)(4)); - w198.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgInfo = new global::Gtk.Image(); - this.imgInfo.WidthRequest = 50; - this.imgInfo.HeightRequest = 50; - this.imgInfo.Name = "imgInfo"; - this.tbUI.Add(this.imgInfo); - global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); - w199.TopAttach = ((uint)(14)); - w199.BottomAttach = ((uint)(15)); - w199.LeftAttach = ((uint)(17)); - w199.RightAttach = ((uint)(18)); - w199.XOptions = ((global::Gtk.AttachOptions)(4)); - w199.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS1 = new global::Gtk.Image(); - this.imgS1.WidthRequest = 50; - this.imgS1.HeightRequest = 50; - this.imgS1.Name = "imgS1"; - this.tbUI.Add(this.imgS1); - global::Gtk.Table.TableChild w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); - w200.TopAttach = ((uint)(7)); - w200.BottomAttach = ((uint)(8)); - w200.LeftAttach = ((uint)(8)); - w200.RightAttach = ((uint)(9)); - w200.XOptions = ((global::Gtk.AttachOptions)(4)); - w200.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS10 = new global::Gtk.Image(); - this.imgS10.WidthRequest = 50; - this.imgS10.HeightRequest = 50; - this.imgS10.Name = "imgS10"; - this.tbUI.Add(this.imgS10); - global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); - w201.TopAttach = ((uint)(8)); - w201.BottomAttach = ((uint)(9)); - w201.LeftAttach = ((uint)(12)); - w201.RightAttach = ((uint)(13)); - w201.XOptions = ((global::Gtk.AttachOptions)(4)); - w201.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS2 = new global::Gtk.Image(); - this.imgS2.WidthRequest = 50; - this.imgS2.HeightRequest = 50; - this.imgS2.Name = "imgS2"; - this.tbUI.Add(this.imgS2); - global::Gtk.Table.TableChild w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); - w202.TopAttach = ((uint)(7)); - w202.BottomAttach = ((uint)(8)); - w202.LeftAttach = ((uint)(9)); - w202.RightAttach = ((uint)(10)); - w202.XOptions = ((global::Gtk.AttachOptions)(4)); - w202.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS3 = new global::Gtk.Image(); - this.imgS3.WidthRequest = 50; - this.imgS3.HeightRequest = 50; - this.imgS3.Name = "imgS3"; - this.tbUI.Add(this.imgS3); - global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); - w203.TopAttach = ((uint)(7)); - w203.BottomAttach = ((uint)(8)); - w203.LeftAttach = ((uint)(10)); - w203.RightAttach = ((uint)(11)); - w203.XOptions = ((global::Gtk.AttachOptions)(4)); - w203.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS4 = new global::Gtk.Image(); - this.imgS4.WidthRequest = 50; - this.imgS4.HeightRequest = 50; - this.imgS4.Name = "imgS4"; - this.tbUI.Add(this.imgS4); - global::Gtk.Table.TableChild w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); - w204.TopAttach = ((uint)(7)); - w204.BottomAttach = ((uint)(8)); - w204.LeftAttach = ((uint)(11)); - w204.RightAttach = ((uint)(12)); - w204.XOptions = ((global::Gtk.AttachOptions)(4)); - w204.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS5 = new global::Gtk.Image(); - this.imgS5.WidthRequest = 50; - this.imgS5.HeightRequest = 50; - this.imgS5.Name = "imgS5"; - this.tbUI.Add(this.imgS5); - global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); - w205.TopAttach = ((uint)(7)); - w205.BottomAttach = ((uint)(8)); - w205.LeftAttach = ((uint)(12)); - w205.RightAttach = ((uint)(13)); - w205.XOptions = ((global::Gtk.AttachOptions)(4)); - w205.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS6 = new global::Gtk.Image(); - this.imgS6.WidthRequest = 50; - this.imgS6.HeightRequest = 50; - this.imgS6.Name = "imgS6"; - this.tbUI.Add(this.imgS6); - global::Gtk.Table.TableChild w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); - w206.TopAttach = ((uint)(8)); - w206.BottomAttach = ((uint)(9)); - w206.LeftAttach = ((uint)(8)); - w206.RightAttach = ((uint)(9)); - w206.XOptions = ((global::Gtk.AttachOptions)(4)); - w206.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS7 = new global::Gtk.Image(); - this.imgS7.WidthRequest = 50; - this.imgS7.HeightRequest = 50; - this.imgS7.Name = "imgS7"; - this.tbUI.Add(this.imgS7); - global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); - w207.TopAttach = ((uint)(8)); - w207.BottomAttach = ((uint)(9)); - w207.LeftAttach = ((uint)(9)); - w207.RightAttach = ((uint)(10)); - w207.XOptions = ((global::Gtk.AttachOptions)(4)); - w207.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS8 = new global::Gtk.Image(); - this.imgS8.WidthRequest = 50; - this.imgS8.HeightRequest = 50; - this.imgS8.Name = "imgS8"; - this.tbUI.Add(this.imgS8); - global::Gtk.Table.TableChild w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); - w208.TopAttach = ((uint)(8)); - w208.BottomAttach = ((uint)(9)); - w208.LeftAttach = ((uint)(10)); - w208.RightAttach = ((uint)(11)); - w208.XOptions = ((global::Gtk.AttachOptions)(4)); - w208.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgS9 = new global::Gtk.Image(); - this.imgS9.WidthRequest = 50; - this.imgS9.HeightRequest = 50; - this.imgS9.Name = "imgS9"; - this.tbUI.Add(this.imgS9); - global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); - w209.TopAttach = ((uint)(8)); - w209.BottomAttach = ((uint)(9)); - w209.LeftAttach = ((uint)(11)); - w209.RightAttach = ((uint)(12)); - w209.XOptions = ((global::Gtk.AttachOptions)(4)); - w209.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblAccessories = new global::Gtk.Label(); - this.lblAccessories.HeightRequest = 50; - this.lblAccessories.Name = "lblAccessories"; - this.lblAccessories.LabelProp = "Accessories"; - this.lblAccessories.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblAccessories); - global::Gtk.Table.TableChild w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); - w210.TopAttach = ((uint)(8)); - w210.BottomAttach = ((uint)(9)); - w210.LeftAttach = ((uint)(15)); - w210.RightAttach = ((uint)(20)); - w210.XOptions = ((global::Gtk.AttachOptions)(4)); - w210.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank1 = new global::Gtk.Label(); - this.lblBlank1.WidthRequest = 10; - this.lblBlank1.HeightRequest = 50; - this.lblBlank1.Name = "lblBlank1"; - this.tbUI.Add(this.lblBlank1); - global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); - w211.TopAttach = ((uint)(3)); - w211.BottomAttach = ((uint)(4)); - w211.LeftAttach = ((uint)(6)); - w211.RightAttach = ((uint)(7)); - w211.XOptions = ((global::Gtk.AttachOptions)(4)); - w211.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank2 = new global::Gtk.Label(); - this.lblBlank2.WidthRequest = 50; - this.lblBlank2.HeightRequest = 50; - this.lblBlank2.Name = "lblBlank2"; - this.tbUI.Add(this.lblBlank2); - global::Gtk.Table.TableChild w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); - w212.TopAttach = ((uint)(6)); - w212.BottomAttach = ((uint)(7)); - w212.LeftAttach = ((uint)(10)); - w212.RightAttach = ((uint)(11)); - w212.XOptions = ((global::Gtk.AttachOptions)(4)); - w212.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank3 = new global::Gtk.Label(); - this.lblBlank3.WidthRequest = 10; - this.lblBlank3.HeightRequest = 50; - this.lblBlank3.Name = "lblBlank3"; - this.tbUI.Add(this.lblBlank3); - global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); - w213.TopAttach = ((uint)(3)); - w213.BottomAttach = ((uint)(4)); - w213.LeftAttach = ((uint)(14)); - w213.RightAttach = ((uint)(15)); - w213.XOptions = ((global::Gtk.AttachOptions)(4)); - w213.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank4 = new global::Gtk.Label(); - this.lblBlank4.WidthRequest = 10; - this.lblBlank4.HeightRequest = 50; - this.lblBlank4.Name = "lblBlank4"; - this.tbUI.Add(this.lblBlank4); - global::Gtk.Table.TableChild w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); - w214.TopAttach = ((uint)(3)); - w214.BottomAttach = ((uint)(4)); - w214.LeftAttach = ((uint)(20)); - w214.RightAttach = ((uint)(21)); - w214.XOptions = ((global::Gtk.AttachOptions)(4)); - w214.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank5 = new global::Gtk.Label(); - this.lblBlank5.WidthRequest = 10; - this.lblBlank5.HeightRequest = 50; - this.lblBlank5.Name = "lblBlank5"; - this.tbUI.Add(this.lblBlank5); - global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); - w215.TopAttach = ((uint)(3)); - w215.BottomAttach = ((uint)(4)); - w215.XOptions = ((global::Gtk.AttachOptions)(4)); - w215.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank8 = new global::Gtk.Label(); - this.lblBlank8.WidthRequest = 50; - this.lblBlank8.HeightRequest = 10; - this.lblBlank8.Name = "lblBlank8"; - this.tbUI.Add(this.lblBlank8); - global::Gtk.Table.TableChild w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); - w216.TopAttach = ((uint)(16)); - w216.BottomAttach = ((uint)(17)); - w216.LeftAttach = ((uint)(10)); - w216.RightAttach = ((uint)(11)); - w216.XOptions = ((global::Gtk.AttachOptions)(4)); - w216.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblBlank9 = new global::Gtk.Label(); - this.lblBlank9.WidthRequest = 50; - this.lblBlank9.HeightRequest = 10; - this.lblBlank9.Name = "lblBlank9"; - this.tbUI.Add(this.lblBlank9); - global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank9])); - w217.LeftAttach = ((uint)(10)); - w217.RightAttach = ((uint)(11)); - w217.XOptions = ((global::Gtk.AttachOptions)(4)); - w217.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblCoord1 = new global::Gtk.Label(); - this.lblCoord1.WidthRequest = 50; - this.lblCoord1.HeightRequest = 50; - this.lblCoord1.Name = "lblCoord1"; - this.lblCoord1.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblCoord1); - global::Gtk.Table.TableChild w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); - w218.TopAttach = ((uint)(7)); - w218.BottomAttach = ((uint)(8)); - w218.LeftAttach = ((uint)(4)); - w218.RightAttach = ((uint)(5)); - w218.XOptions = ((global::Gtk.AttachOptions)(4)); - w218.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblCoord2 = new global::Gtk.Label(); - this.lblCoord2.WidthRequest = 50; - this.lblCoord2.HeightRequest = 50; - this.lblCoord2.Name = "lblCoord2"; - this.lblCoord2.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblCoord2); - global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); - w219.TopAttach = ((uint)(7)); - w219.BottomAttach = ((uint)(8)); - w219.LeftAttach = ((uint)(5)); - w219.RightAttach = ((uint)(6)); - w219.XOptions = ((global::Gtk.AttachOptions)(4)); - w219.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblEventLog = new global::Gtk.Label(); - this.lblEventLog.WidthRequest = 50; - this.lblEventLog.HeightRequest = 50; - this.lblEventLog.Name = "lblEventLog"; - this.lblEventLog.LabelProp = "Event Log"; - this.tbUI.Add(this.lblEventLog); - global::Gtk.Table.TableChild w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); - w220.TopAttach = ((uint)(11)); - w220.BottomAttach = ((uint)(12)); - w220.LeftAttach = ((uint)(8)); - w220.RightAttach = ((uint)(13)); - w220.XOptions = ((global::Gtk.AttachOptions)(4)); - w220.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblGear = new global::Gtk.Label(); - this.lblGear.HeightRequest = 50; - this.lblGear.Name = "lblGear"; - this.lblGear.LabelProp = "Gear"; - this.lblGear.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblGear); - global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); - w221.TopAttach = ((uint)(11)); - w221.BottomAttach = ((uint)(12)); - w221.LeftAttach = ((uint)(15)); - w221.RightAttach = ((uint)(20)); - w221.XOptions = ((global::Gtk.AttachOptions)(4)); - w221.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblGroundLayer = new global::Gtk.Label(); - this.lblGroundLayer.Name = "lblGroundLayer"; - this.lblGroundLayer.LabelProp = "Ground Layer"; - this.tbUI.Add(this.lblGroundLayer); - global::Gtk.Table.TableChild w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); - w222.TopAttach = ((uint)(1)); - w222.BottomAttach = ((uint)(2)); - w222.LeftAttach = ((uint)(1)); - w222.RightAttach = ((uint)(6)); - w222.XOptions = ((global::Gtk.AttachOptions)(4)); - w222.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblHoleMsg = new global::Gtk.Label(); - this.lblHoleMsg.WidthRequest = 200; - this.lblHoleMsg.HeightRequest = 50; - this.lblHoleMsg.Name = "lblHoleMsg"; - this.lblHoleMsg.LabelProp = "There is a hole above player:"; - this.lblHoleMsg.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblHoleMsg); - global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleMsg])); - w223.TopAttach = ((uint)(15)); - w223.BottomAttach = ((uint)(16)); - w223.LeftAttach = ((uint)(1)); - w223.RightAttach = ((uint)(5)); - w223.XOptions = ((global::Gtk.AttachOptions)(4)); - w223.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblHoleOnTop = new global::Gtk.Label(); - this.lblHoleOnTop.WidthRequest = 50; - this.lblHoleOnTop.HeightRequest = 50; - this.lblHoleOnTop.Name = "lblHoleOnTop"; - this.lblHoleOnTop.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblHoleOnTop); - global::Gtk.Table.TableChild w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleOnTop])); - w224.TopAttach = ((uint)(15)); - w224.BottomAttach = ((uint)(16)); - w224.LeftAttach = ((uint)(5)); - w224.RightAttach = ((uint)(6)); - w224.XOptions = ((global::Gtk.AttachOptions)(4)); - w224.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblHotbar = new global::Gtk.Label(); - this.lblHotbar.WidthRequest = 50; - this.lblHotbar.HeightRequest = 25; - this.lblHotbar.Name = "lblHotbar"; - this.lblHotbar.LabelProp = "Hotbar"; - this.tbUI.Add(this.lblHotbar); - global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); - w225.TopAttach = ((uint)(9)); - w225.BottomAttach = ((uint)(10)); - w225.LeftAttach = ((uint)(8)); - w225.RightAttach = ((uint)(13)); - w225.XOptions = ((global::Gtk.AttachOptions)(4)); - w225.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblInfo = new global::Gtk.Label(); - this.lblInfo.WidthRequest = 250; - this.lblInfo.HeightRequest = 50; - this.lblInfo.Name = "lblInfo"; - this.lblInfo.Wrap = true; - this.lblInfo.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblInfo); - global::Gtk.Table.TableChild w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); - w226.TopAttach = ((uint)(15)); - w226.BottomAttach = ((uint)(16)); - w226.LeftAttach = ((uint)(15)); - w226.RightAttach = ((uint)(20)); - w226.XOptions = ((global::Gtk.AttachOptions)(4)); - w226.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblItemLayer = new global::Gtk.Label(); - this.lblItemLayer.Name = "lblItemLayer"; - this.lblItemLayer.LabelProp = "Structure Layer"; - this.tbUI.Add(this.lblItemLayer); - global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); - w227.TopAttach = ((uint)(9)); - w227.BottomAttach = ((uint)(10)); - w227.LeftAttach = ((uint)(1)); - w227.RightAttach = ((uint)(6)); - w227.XOptions = ((global::Gtk.AttachOptions)(4)); - w227.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog1 = new global::Gtk.Label(); - this.lblLog1.WidthRequest = 250; - this.lblLog1.HeightRequest = 50; - this.lblLog1.Name = "lblLog1"; - this.lblLog1.LabelProp = "ERROR"; - this.lblLog1.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblLog1); - global::Gtk.Table.TableChild w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); - w228.TopAttach = ((uint)(12)); - w228.BottomAttach = ((uint)(13)); - w228.LeftAttach = ((uint)(8)); - w228.RightAttach = ((uint)(13)); - w228.XOptions = ((global::Gtk.AttachOptions)(4)); - w228.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog2 = new global::Gtk.Label(); - this.lblLog2.WidthRequest = 250; - this.lblLog2.HeightRequest = 50; - this.lblLog2.Name = "lblLog2"; - this.lblLog2.LabelProp = "ERROR"; - this.lblLog2.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblLog2); - global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); - w229.TopAttach = ((uint)(13)); - w229.BottomAttach = ((uint)(14)); - w229.LeftAttach = ((uint)(8)); - w229.RightAttach = ((uint)(13)); - w229.XOptions = ((global::Gtk.AttachOptions)(4)); - w229.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog3 = new global::Gtk.Label(); - this.lblLog3.WidthRequest = 250; - this.lblLog3.HeightRequest = 50; - this.lblLog3.Name = "lblLog3"; - this.lblLog3.LabelProp = "ERROR"; - this.lblLog3.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblLog3); - global::Gtk.Table.TableChild w230 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); - w230.TopAttach = ((uint)(14)); - w230.BottomAttach = ((uint)(15)); - w230.LeftAttach = ((uint)(8)); - w230.RightAttach = ((uint)(13)); - w230.XOptions = ((global::Gtk.AttachOptions)(4)); - w230.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblLog4 = new global::Gtk.Label(); - this.lblLog4.WidthRequest = 250; - this.lblLog4.HeightRequest = 50; - this.lblLog4.Name = "lblLog4"; - this.lblLog4.LabelProp = "ERROR"; - this.lblLog4.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblLog4); - global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); - w231.TopAttach = ((uint)(15)); - w231.BottomAttach = ((uint)(16)); - w231.LeftAttach = ((uint)(8)); - w231.RightAttach = ((uint)(13)); - w231.XOptions = ((global::Gtk.AttachOptions)(4)); - w231.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblSuperLayer = new global::Gtk.Label(); - this.lblSuperLayer.WidthRequest = 100; - this.lblSuperLayer.HeightRequest = 50; - this.lblSuperLayer.Name = "lblSuperLayer"; - this.lblSuperLayer.Justify = ((global::Gtk.Justification)(2)); - this.tbUI.Add(this.lblSuperLayer); - global::Gtk.Table.TableChild w232 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblSuperLayer])); - w232.TopAttach = ((uint)(7)); - w232.BottomAttach = ((uint)(8)); - w232.LeftAttach = ((uint)(1)); - w232.RightAttach = ((uint)(3)); - w232.XOptions = ((global::Gtk.AttachOptions)(4)); - w232.YOptions = ((global::Gtk.AttachOptions)(4)); - this.Add(this.tbUI); - if ((this.Child != null)) - { - this.Child.ShowAll(); - } - this.DefaultWidth = 890; - this.DefaultHeight = 770; - this.Show(); - this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent); - this.btnPause.Clicked += new global::System.EventHandler(this.OnBtnPauseClicked); - this.btnP9.Clicked += new global::System.EventHandler(this.OnBtnP9Clicked); - this.btnP8.Clicked += new global::System.EventHandler(this.OnBtnP8Clicked); - this.btnP7.Clicked += new global::System.EventHandler(this.OnBtnP7Clicked); - this.btnP6.Clicked += new global::System.EventHandler(this.OnBtnP6Clicked); - this.btnP5.Clicked += new global::System.EventHandler(this.OnBtnP5Clicked); - this.btnP4.Clicked += new global::System.EventHandler(this.OnBtnP4Clicked); - this.btnP3.Clicked += new global::System.EventHandler(this.OnBtnP3Clicked); - this.btnP25.Clicked += new global::System.EventHandler(this.OnBtnP25Clicked); - this.btnP24.Clicked += new global::System.EventHandler(this.OnBtnP24Clicked); - this.btnP23.Clicked += new global::System.EventHandler(this.OnBtnP23Clicked); - this.btnP22.Clicked += new global::System.EventHandler(this.OnBtnP22Clicked); - this.btnP21.Clicked += new global::System.EventHandler(this.OnBtnP21Clicked); - this.btnP20.Clicked += new global::System.EventHandler(this.OnBtnP20Clicked); - this.btnP2.Clicked += new global::System.EventHandler(this.OnBtnP2Clicked); - this.btnP19.Clicked += new global::System.EventHandler(this.OnBtnP19Clicked); - this.btnP18.Clicked += new global::System.EventHandler(this.OnBtnP18Clicked); - this.btnP17.Clicked += new global::System.EventHandler(this.OnBtnP17Clicked); - this.btnP16.Clicked += new global::System.EventHandler(this.OnBtnP16Clicked); - this.btnP15.Clicked += new global::System.EventHandler(this.OnBtnP15Clicked); - this.btnP14.Clicked += new global::System.EventHandler(this.OnBtnP14Clicked); - this.btnP13.Clicked += new global::System.EventHandler(this.OnBtnP13Clicked); - this.btnP12.Clicked += new global::System.EventHandler(this.OnBtnP12Clicked); - this.btnP11.Clicked += new global::System.EventHandler(this.OnBtnP11Clicked); - this.btnP10.Clicked += new global::System.EventHandler(this.OnBtnP10Clicked); - this.btnP1.Clicked += new global::System.EventHandler(this.OnBtnP1Clicked); - this.btnMusic.Clicked += new global::System.EventHandler(this.OnBtnMusicClicked); - this.btnMap.Clicked += new global::System.EventHandler(this.OnBtnMapClicked); - this.btnLog.Clicked += new global::System.EventHandler(this.OnBtnLogClicked); - this.btnInv.Clicked += new global::System.EventHandler(this.OnBtnInvClicked); - this.btnIG2.Clicked += new global::System.EventHandler(this.OnBtnIG2Clicked); - this.btnIG1.Clicked += new global::System.EventHandler(this.OnBtnIG1Clicked); - this.btnI9.Clicked += new global::System.EventHandler(this.OnBtnI9Clicked); - this.btnI8.Clicked += new global::System.EventHandler(this.OnBtnI8Clicked); - this.btnI7.Clicked += new global::System.EventHandler(this.OnBtnI7Clicked); - this.btnI6.Clicked += new global::System.EventHandler(this.OnBtnI6Clicked); - this.btnI5.Clicked += new global::System.EventHandler(this.OnBtnI5Clicked); - this.btnI4.Clicked += new global::System.EventHandler(this.OnBtnI4Clicked); - this.btnI3.Clicked += new global::System.EventHandler(this.OnBtnI3Clicked); - this.btnI25.Clicked += new global::System.EventHandler(this.OnBtnI25Clicked); - this.btnI24.Clicked += new global::System.EventHandler(this.OnBtnI24Clicked); - this.btnI23.Clicked += new global::System.EventHandler(this.OnBtnI23Clicked); - this.btnI22.Clicked += new global::System.EventHandler(this.OnBtnI22Clicked); - this.btnI21.Clicked += new global::System.EventHandler(this.OnBtnI21Clicked); - this.btnI20.Clicked += new global::System.EventHandler(this.OnBtnI20Clicked); - this.btnI2.Clicked += new global::System.EventHandler(this.OnBtnI2Clicked); - this.btnI19.Clicked += new global::System.EventHandler(this.OnBtnI19Clicked); - this.btnI18.Clicked += new global::System.EventHandler(this.OnBtnI18Clicked); - this.btnI17.Clicked += new global::System.EventHandler(this.OnBtnI17Clicked); - this.btnI16.Clicked += new global::System.EventHandler(this.OnBtnI16Clicked); - this.btnI15.Clicked += new global::System.EventHandler(this.OnBtnI15Clicked); - this.btnI14.Clicked += new global::System.EventHandler(this.OnBtnI14Clicked); - this.btnI13.Clicked += new global::System.EventHandler(this.OnBtnI13Clicked); - this.btnI12.Clicked += new global::System.EventHandler(this.OnBtnI12Clicked); - this.btnI11.Clicked += new global::System.EventHandler(this.OnBtnI11Clicked); - this.btnI10.Clicked += new global::System.EventHandler(this.OnBtnI10Clicked); - this.btnI1.Clicked += new global::System.EventHandler(this.OnBtnI1Clicked); - this.btnH5.Clicked += new global::System.EventHandler(this.OnBtnH5Clicked); - this.btnH4.Clicked += new global::System.EventHandler(this.OnBtnH4Clicked); - this.btnH3.Clicked += new global::System.EventHandler(this.OnBtnH3Clicked); - this.btnH2.Clicked += new global::System.EventHandler(this.OnBtnH2Clicked); - this.btnH1.Clicked += new global::System.EventHandler(this.OnBtnH1Clicked); - this.btnG5.Clicked += new global::System.EventHandler(this.OnBtnG5Clicked); - this.btnG4.Clicked += new global::System.EventHandler(this.OnBtnG4Clicked); - this.btnG3.Clicked += new global::System.EventHandler(this.OnBtnG3Clicked); - this.btnG2.Clicked += new global::System.EventHandler(this.OnBtnG2Clicked); - this.btnG1.Clicked += new global::System.EventHandler(this.OnBtnG1Clicked); - this.btnCrafting.Clicked += new global::System.EventHandler(this.OnBtnCraftingClicked); - this.btnA9.Clicked += new global::System.EventHandler(this.OnBtnA9Clicked); - this.btnA8.Clicked += new global::System.EventHandler(this.OnBtnA8Clicked); - this.btnA7.Clicked += new global::System.EventHandler(this.OnBtnA7Clicked); - this.btnA6.Clicked += new global::System.EventHandler(this.OnBtnA6Clicked); - this.btnA5.Clicked += new global::System.EventHandler(this.OnBtnA5Clicked); - this.btnA4.Clicked += new global::System.EventHandler(this.OnBtnA4Clicked); - this.btnA3.Clicked += new global::System.EventHandler(this.OnBtnA3Clicked); - this.btnA2.Clicked += new global::System.EventHandler(this.OnBtnA2Clicked); - this.btnA10.Clicked += new global::System.EventHandler(this.OnBtnA10Clicked); - this.btnA1.Clicked += new global::System.EventHandler(this.OnBtnA1Clicked); - } - } -} diff --git a/Mundus/gtk-gui/gui.stetic b/Mundus/gtk-gui/gui.stetic index 9807d52..e61aae8 100644 --- a/Mundus/gtk-gui/gui.stetic +++ b/Mundus/gtk-gui/gui.stetic @@ -950,7 +950,7 @@ - + Mundus (Small Window) Mouse @@ -5381,7 +5381,7 @@ - + MediumGameWindow Mouse @@ -12704,7 +12704,7 @@ - + LargeGameWindow Mouse -- cgit v1.2.3