From c47a34847e52ef76361394dba2c4f524a56d1b92 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Wed, 25 Mar 2020 08:50:13 +0200 Subject: Trees are generated (no functionality), boulders drop rocks, implimented information menu --- Mundus/Data/Tiles/ToolTypes.cs | 3 +- Mundus/Data/Windows/WI.cs | 2 + Mundus/Icons/Land/Ground/water.png | Bin 0 -> 3297 bytes Mundus/Icons/Land/Items/tree.png | Bin 0 -> 4339 bytes Mundus/Icons/Materials/land_rock.png | Bin 0 -> 4339 bytes Mundus/Icons/Project files/land_rock.xcf | Bin 0 -> 3070 bytes Mundus/Icons/Project files/tree.xcf | Bin 0 -> 6062 bytes Mundus/Icons/Project files/water.xcf | Bin 0 -> 665 bytes Mundus/Mundus.csproj | 4 + Mundus/Service/GameGenerator.cs | 21 +- Mundus/Service/Inventory.cs | 18 + Mundus/Service/Mobs/MobTerraforming.cs | 21 +- Mundus/Service/SuperLayers/LandPresets.cs | 14 + .../Service/SuperLayers/LandSuperLayerGenerator.cs | 12 +- Mundus/Service/SwitchItems.cs | 2 + Mundus/Service/Tiles/Items/Gear.cs | 4 + Mundus/Service/Tiles/Items/Material.cs | 4 + Mundus/Service/Tiles/Items/Structure.cs | 9 +- Mundus/Service/Tiles/Items/Tool.cs | 4 + Mundus/Views/Windows/IGameWindow.cs | 6 +- Mundus/Views/Windows/LargeGameWindow.cs | 5 + Mundus/Views/Windows/MediumGameWindow.cs | 5 + Mundus/Views/Windows/SmallGameWindow.cs | 36 +- .../Mundus.Views.Windows.SmallGameWindow.cs | 1845 +++++++++----------- Mundus/gtk-gui/generated.cs | 6 + Mundus/gtk-gui/gui.stetic | 306 +--- 26 files changed, 1076 insertions(+), 1251 deletions(-) create mode 100644 Mundus/Icons/Land/Ground/water.png create mode 100644 Mundus/Icons/Land/Items/tree.png create mode 100644 Mundus/Icons/Materials/land_rock.png create mode 100644 Mundus/Icons/Project files/land_rock.xcf create mode 100644 Mundus/Icons/Project files/tree.xcf create mode 100644 Mundus/Icons/Project files/water.xcf create mode 100644 Mundus/Service/SuperLayers/LandPresets.cs diff --git a/Mundus/Data/Tiles/ToolTypes.cs b/Mundus/Data/Tiles/ToolTypes.cs index 9d0c0d9..f65c573 100644 --- a/Mundus/Data/Tiles/ToolTypes.cs +++ b/Mundus/Data/Tiles/ToolTypes.cs @@ -1,6 +1,7 @@ namespace Mundus.Data.Tiles { public static class ToolTypes { public static int Sword = 0; - public static int Pickaxe = 1; + public static int Axe = 1; + public static int Pickaxe = 2; } } diff --git a/Mundus/Data/Windows/WI.cs b/Mundus/Data/Windows/WI.cs index 65cf86e..dbad130 100644 --- a/Mundus/Data/Windows/WI.cs +++ b/Mundus/Data/Windows/WI.cs @@ -2,6 +2,8 @@ namespace Mundus.Data.Windows { public static class WI { //stands for Window Instances + public static IGameWindow SelWin { get; set; } + public static MainWindow WMain { get; private set; } public static NewGameWindow WNewGame { get; private set; } public static SmallGameWindow WSGame { get; private set; } diff --git a/Mundus/Icons/Land/Ground/water.png b/Mundus/Icons/Land/Ground/water.png new file mode 100644 index 0000000..08ede4a Binary files /dev/null and b/Mundus/Icons/Land/Ground/water.png differ diff --git a/Mundus/Icons/Land/Items/tree.png b/Mundus/Icons/Land/Items/tree.png new file mode 100644 index 0000000..fcfcadd Binary files /dev/null and b/Mundus/Icons/Land/Items/tree.png differ diff --git a/Mundus/Icons/Materials/land_rock.png b/Mundus/Icons/Materials/land_rock.png new file mode 100644 index 0000000..87c5096 Binary files /dev/null and b/Mundus/Icons/Materials/land_rock.png differ diff --git a/Mundus/Icons/Project files/land_rock.xcf b/Mundus/Icons/Project files/land_rock.xcf new file mode 100644 index 0000000..96786fa Binary files /dev/null and b/Mundus/Icons/Project files/land_rock.xcf differ diff --git a/Mundus/Icons/Project files/tree.xcf b/Mundus/Icons/Project files/tree.xcf new file mode 100644 index 0000000..4afac9e Binary files /dev/null and b/Mundus/Icons/Project files/tree.xcf differ diff --git a/Mundus/Icons/Project files/water.xcf b/Mundus/Icons/Project files/water.xcf new file mode 100644 index 0000000..bcbcad3 Binary files /dev/null and b/Mundus/Icons/Project files/water.xcf differ diff --git a/Mundus/Mundus.csproj b/Mundus/Mundus.csproj index 6145cd8..8e18c30 100644 --- a/Mundus/Mundus.csproj +++ b/Mundus/Mundus.csproj @@ -58,6 +58,9 @@ + + + @@ -112,6 +115,7 @@ + diff --git a/Mundus/Service/GameGenerator.cs b/Mundus/Service/GameGenerator.cs index 2479a43..3538a27 100644 --- a/Mundus/Service/GameGenerator.cs +++ b/Mundus/Service/GameGenerator.cs @@ -21,20 +21,21 @@ namespace Mundus.Service { public static void GameWindowInventorySetup(string size) { switch (size.ToLower()) { - case "small": GameWindowInventorySetup(WI.WSGame); break; - case "medium": GameWindowInventorySetup(WI.WMGame); break; - case "large": GameWindowInventorySetup(WI.WLGame); break; + case "small": WI.SelWin = WI.WSGame; break; + case "medium": WI.SelWin = WI.WMGame; break; + case "large": WI.SelWin = WI.WLGame; break; default: throw new ArgumentException("Screen & inventory size must be \"small\", \"medium\" or \"large\""); } + GameWindowInventorySetup(); } - public static void GameWindowInventorySetup(IGameWindow gameWindow) { - gameWindow.SetDefaults(); - WI.WPause.GameWindow = gameWindow; - LMI.CreateInventories(gameWindow.Size); - gameWindow.PrintScreen(); - gameWindow.PrintMainMenu(); - gameWindow.Show(); + public static void GameWindowInventorySetup() { + WI.SelWin.SetDefaults(); + WI.WPause.GameWindow = WI.SelWin; + LMI.CreateInventories(WI.SelWin.Size); + WI.SelWin.PrintScreen(); + WI.SelWin.PrintMainMenu(); + WI.SelWin.Show(); } } } diff --git a/Mundus/Service/Inventory.cs b/Mundus/Service/Inventory.cs index 89296dc..05de625 100644 --- a/Mundus/Service/Inventory.cs +++ b/Mundus/Service/Inventory.cs @@ -1,4 +1,6 @@ using Mundus.Service.Tiles.Items; +using System; +using System.Linq; namespace Mundus.Service { public class Inventory { @@ -18,6 +20,10 @@ namespace Mundus.Service { this.Gear = new Gear[screenInvSize]; } + public void AppendToHotbar(ItemTile itemTile) { + this.AddToHotbar(itemTile, Array.IndexOf(this.Hotbar, this.Hotbar.First(x => x == null))); + } + public void AddToHotbar(ItemTile itemTile, int index) { this.Hotbar[index] = itemTile; } @@ -26,6 +32,10 @@ namespace Mundus.Service { this.Hotbar[index] = null; } + public void AppendToItems(ItemTile itemTile) { + this.AddToItems(itemTile, Array.IndexOf(this.Items, this.Items.First(x => x == null))); + } + public void AddToItems(ItemTile itemTile, int index) { this.Items[index] = itemTile; } @@ -38,6 +48,10 @@ namespace Mundus.Service { this.Accessories[index] = accessory; } + public void AppendAccessories(Gear accessory) { + this.EquipAccessory(accessory, Array.IndexOf(this.Accessories, this.Accessories.First(x => x == null))); + } + public void DeleteAccessory(int index) { this.Accessories[index] = null; } @@ -46,6 +60,10 @@ namespace Mundus.Service { this.Gear[index] = gear; } + public void AppendGear(Gear gear) { + this.EquipGear(gear, Array.IndexOf(this.Gear, this.Gear.First(x => x == null))); + } + public void DeleteGear(int index) { this.Gear[index] = null; } diff --git a/Mundus/Service/Mobs/MobTerraforming.cs b/Mundus/Service/Mobs/MobTerraforming.cs index 1dc51cf..8c7a4e1 100644 --- a/Mundus/Service/Mobs/MobTerraforming.cs +++ b/Mundus/Service/Mobs/MobTerraforming.cs @@ -1,4 +1,5 @@ -using Mundus.Data.Superlayers.Mobs; +using System.Linq; +using Mundus.Data.Superlayers.Mobs; using Mundus.Data.SuperLayers; using Mundus.Service.Tiles.Items; @@ -6,10 +7,20 @@ namespace Mundus.Service.Mobs { public static class MobTerraforming { public static void PlayerDestroyAt(int mapYPos, int mapXPos, string place, int index) { if (LMI.Player.Inventory.GetTile(place, index).GetType() == typeof(Tool)) { - var selTool = (Tool)LMI.Player.Inventory.GetTile(place, index); - if (LMI.Player.CurrSuperLayer.GetStructureLayerTile(mapYPos, mapXPos).ReqToolType == selTool.Type && - LMI.Player.CurrSuperLayer.GetStructureLayerTile(mapYPos, mapXPos).ReqToolClass == selTool.Class) { - LMI.Player.CurrSuperLayer.SetStructureAtPosition(null, mapYPos, mapXPos); + var selTool = (Tool)LMI.Player.Inventory.GetTile(place, index); + var selStructure = LMI.Player.CurrSuperLayer.GetStructureLayerTile(mapYPos, mapXPos); + + if (selStructure.ReqToolType == selTool.Type && selStructure.ReqToolClass == selTool.Class) { + if (LMI.Player.Inventory.Items.Any(x => x == null)) { + LMI.Player.Inventory.AppendToItems(selStructure.DroppedMaterial); + LMI.Player.CurrSuperLayer.SetStructureAtPosition(null, mapYPos, mapXPos); + } + else { + //TODO: put the item on the ground + } + } + else { + //TODO: add error to log } } } diff --git a/Mundus/Service/SuperLayers/LandPresets.cs b/Mundus/Service/SuperLayers/LandPresets.cs new file mode 100644 index 0000000..658cb2a --- /dev/null +++ b/Mundus/Service/SuperLayers/LandPresets.cs @@ -0,0 +1,14 @@ +using Mundus.Data.Tiles; +using Mundus.Service.Tiles.Items; + +namespace Mundus.Service.SuperLayers { + public static class LandPresets { + public static Structure Boulder() { + return new Structure("boulder", ToolTypes.Pickaxe, 1, false, new Material("land_rock")); + } + + public static Structure Tree() { + return new Structure("tree", ToolTypes.Axe, 1); + } + } +} diff --git a/Mundus/Service/SuperLayers/LandSuperLayerGenerator.cs b/Mundus/Service/SuperLayers/LandSuperLayerGenerator.cs index 8157295..73caaa3 100644 --- a/Mundus/Service/SuperLayers/LandSuperLayerGenerator.cs +++ b/Mundus/Service/SuperLayers/LandSuperLayerGenerator.cs @@ -37,7 +37,12 @@ namespace Mundus.Service.SuperLayers { for(int col = 0; col < size; col++) { for(int row = 0; row < size; row++) { - tiles[col, row] = new GroundTile("grass"); + if (rnd.Next(0, 50) == -1) { + tiles[col, row] = new GroundTile("water"); + } + else { + tiles[col, row] = new GroundTile("grass"); + } } } return tiles; @@ -49,7 +54,10 @@ namespace Mundus.Service.SuperLayers { for (int col = 0; col < size; col++) { for (int row = 0; row < size; row++) { if (rnd.Next( 0, 50 ) == 1) { - tiles[col, row] = new Structure("boulder", ToolTypes.Pickaxe, 1); + tiles[col, row] = LandPresets.Boulder(); + } + if (rnd.Next(0, 10) == 1) { + tiles[col, row] = LandPresets.Tree(); } } } diff --git a/Mundus/Service/SwitchItems.cs b/Mundus/Service/SwitchItems.cs index 9f0a96e..3de9a38 100644 --- a/Mundus/Service/SwitchItems.cs +++ b/Mundus/Service/SwitchItems.cs @@ -1,4 +1,5 @@ using Mundus.Data.Superlayers.Mobs; +using Mundus.Data.Windows; using Mundus.Service.Tiles; using Mundus.Service.Tiles.Items; @@ -22,6 +23,7 @@ namespace Mundus.Service { private static void SetOrigin(ItemTile[] newOrigin, int originIndex) { origin = newOrigin; oIndex = originIndex; + WI.SelWin.PrintSelectedItemInfo(newOrigin[originIndex]); } public static void ReplaceItems(string destination, int destinationIndex) { diff --git a/Mundus/Service/Tiles/Items/Gear.cs b/Mundus/Service/Tiles/Items/Gear.cs index 84c34fb..89e8221 100644 --- a/Mundus/Service/Tiles/Items/Gear.cs +++ b/Mundus/Service/Tiles/Items/Gear.cs @@ -2,5 +2,9 @@ public class Gear : ItemTile { public Gear(string stock_id) : base(stock_id) { } + + public override string ToString() { + return $"Gear | Stock ID: {stock_id}"; + } } } diff --git a/Mundus/Service/Tiles/Items/Material.cs b/Mundus/Service/Tiles/Items/Material.cs index 008619f..90a17e3 100644 --- a/Mundus/Service/Tiles/Items/Material.cs +++ b/Mundus/Service/Tiles/Items/Material.cs @@ -2,5 +2,9 @@ public class Material : ItemTile { public Material(string stock_id) : base(stock_id) { } + + public override string ToString() { + return $"Material | Stock ID: {this.stock_id}"; + } } } diff --git a/Mundus/Service/Tiles/Items/Structure.cs b/Mundus/Service/Tiles/Items/Structure.cs index 569f712..d751a46 100644 --- a/Mundus/Service/Tiles/Items/Structure.cs +++ b/Mundus/Service/Tiles/Items/Structure.cs @@ -2,13 +2,20 @@ public class Structure : ItemTile { public int ReqToolType { get; private set; } public int ReqToolClass { get; private set; } + public Material DroppedMaterial { get; private set; } public bool IsWalkable { get; private set; } - public Structure(string stock_id, int reqToolType, int reqToolClass, bool isWalkable = false) : base(stock_id) { + public Structure(string stock_id, int reqToolType, int reqToolClass, bool isWalkable = false, Material droppedMaterial = null) : base(stock_id) { this.ReqToolType = reqToolType; this.ReqToolClass = reqToolClass; this.IsWalkable = isWalkable; + this.DroppedMaterial = droppedMaterial; + } + + public override string ToString() { + return $"Structure | Stock ID: {this.stock_id} Tool Type: {this.ReqToolType} Tool Class: {this.ReqToolClass} " + + $"Walkable: {this.IsWalkable} Dropped Material: {this.DroppedMaterial.stock_id}"; } } } diff --git a/Mundus/Service/Tiles/Items/Tool.cs b/Mundus/Service/Tiles/Items/Tool.cs index 436470c..21ac348 100644 --- a/Mundus/Service/Tiles/Items/Tool.cs +++ b/Mundus/Service/Tiles/Items/Tool.cs @@ -9,5 +9,9 @@ namespace Mundus.Service.Tiles.Items { this.Type = toolType; this.Class = toolClass; } + + public override string ToString() { + return $"Tool | Stock ID: {this.stock_id} Type: {this.Type} Class: {this.Class}"; + } } } diff --git a/Mundus/Views/Windows/IGameWindow.cs b/Mundus/Views/Windows/IGameWindow.cs index 1db6fc9..aefdfc7 100644 --- a/Mundus/Views/Windows/IGameWindow.cs +++ b/Mundus/Views/Windows/IGameWindow.cs @@ -1,14 +1,16 @@ -namespace Mundus.Views.Windows { +using Mundus.Service.Tiles.Items; + +namespace Mundus.Views.Windows { public interface IGameWindow { int Size { get; } //Events that are generated from designer window void OnDeleteEvent(object o, Gtk.DeleteEventArgs args); - void SetDefaults(); void PrintScreen(); void PrintMap(); void PrintMainMenu(); + void PrintSelectedItemInfo(ItemTile itemTile); //Stuff that are in Gtk.Window class void Show(); diff --git a/Mundus/Views/Windows/LargeGameWindow.cs b/Mundus/Views/Windows/LargeGameWindow.cs index dc1b394..5d20421 100644 --- a/Mundus/Views/Windows/LargeGameWindow.cs +++ b/Mundus/Views/Windows/LargeGameWindow.cs @@ -1,5 +1,6 @@ using System; using Gtk; +using Mundus.Service.Tiles.Items; namespace Mundus.Views.Windows { public partial class LargeGameWindow : Gtk.Window, IGameWindow { @@ -32,5 +33,9 @@ namespace Mundus.Views.Windows { public void SetDefaults() { throw new NotImplementedException(); } + + public void PrintSelectedItemInfo(ItemTile itemTile) { + throw new NotImplementedException(); + } } } diff --git a/Mundus/Views/Windows/MediumGameWindow.cs b/Mundus/Views/Windows/MediumGameWindow.cs index b99d82e..29f75a6 100644 --- a/Mundus/Views/Windows/MediumGameWindow.cs +++ b/Mundus/Views/Windows/MediumGameWindow.cs @@ -1,5 +1,6 @@ using System; using Gtk; +using Mundus.Service.Tiles.Items; namespace Mundus.Views.Windows { public partial class MediumGameWindow : Gtk.Window, IGameWindow { @@ -32,5 +33,9 @@ namespace Mundus.Views.Windows { public void SetDefaults() { throw new NotImplementedException(); } + + public void PrintSelectedItemInfo(ItemTile itemTile) { + throw new NotImplementedException(); + } } } diff --git a/Mundus/Views/Windows/SmallGameWindow.cs b/Mundus/Views/Windows/SmallGameWindow.cs index a92ec07..2fd2199 100644 --- a/Mundus/Views/Windows/SmallGameWindow.cs +++ b/Mundus/Views/Windows/SmallGameWindow.cs @@ -187,17 +187,11 @@ namespace Mundus.Views.Windows { btnG4.Visible = isVisible; btnG5.Visible = isVisible; - lblItemsOnGround.Visible = isVisible; btnIG1.Visible = isVisible; btnIG2.Visible = isVisible; - btnIG3.Visible = isVisible; - btnIG4.Visible = isVisible; - btnIG5.Visible = isVisible; - btnIG6.Visible = isVisible; - btnIG7.Visible = isVisible; - btnIG8.Visible = isVisible; - btnIG9.Visible = isVisible; - btnIG10.Visible = isVisible; + + imgInfo.Visible = isVisible; + lblInfo.Visible = isVisible; lblBlank4.Visible = isVisible; } @@ -411,6 +405,17 @@ namespace Mundus.Views.Windows { } } + public void PrintSelectedItemInfo(ItemTile itemTile) { + if (itemTile != null) { + imgInfo.SetFromStock(itemTile.stock_id, IconSize.Dnd); + lblInfo.Text = itemTile.ToString(); + } + else { + imgInfo.SetFromImage(null, null); + lblInfo.Text = null; + } + } + //Screen buttons protected void OnBtnP1Clicked(object sender, EventArgs e) { if (!WindowController.PauseWindowVisible) { @@ -577,31 +582,31 @@ namespace Mundus.Views.Windows { protected void OnBtnH1Clicked(object sender, EventArgs e) { if (!WindowController.PauseWindowVisible) { this.SelectItem("hotbar", 0); - this.PrintInventory(); + this.PrintMainMenu(); } } protected void OnBtnH2Clicked(object sender, EventArgs e) { if (!WindowController.PauseWindowVisible) { this.SelectItem("hotbar", 1); - this.PrintInventory(); + this.PrintMainMenu(); } } protected void OnBtnH3Clicked(object sender, EventArgs e) { if (!WindowController.PauseWindowVisible) { this.SelectItem("hotbar", 2); - this.PrintInventory(); + this.PrintMainMenu(); } } protected void OnBtnH4Clicked(object sender, EventArgs e) { if (!WindowController.PauseWindowVisible) { this.SelectItem("hotbar", 3); - this.PrintInventory(); + this.PrintMainMenu(); } } protected void OnBtnH5Clicked(object sender, EventArgs e) { if (!WindowController.PauseWindowVisible) { this.SelectItem("hotbar", 4); - this.PrintInventory(); + this.PrintMainMenu(); } } @@ -875,11 +880,12 @@ namespace Mundus.Views.Windows { SwitchItems.SetOrigin(place, index); } + this.PrintMainMenu(); this.PrintInventory(); } protected void OnBtnIG1Clicked(object sender, EventArgs e) { - Mundus.Data.Superlayers.Mobs.LMI.Player.Inventory.Hotbar[0] = new Service.Tiles.Items.Structure("boulder", Mundus.Data.Tiles.ToolTypes.Pickaxe, 1); + Mundus.Data.Superlayers.Mobs.LMI.Player.Inventory.Hotbar[0] = LandPresets.Boulder(); } protected void OnBtnIG2Clicked(object sender, EventArgs e) { diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs index c3a392c..9a50d9f 100644 --- a/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs +++ b/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs @@ -104,24 +104,8 @@ namespace Mundus.Views.Windows private global::Gtk.Button btnIG1; - private global::Gtk.Button btnIG10; - private global::Gtk.Button btnIG2; - private global::Gtk.Button btnIG3; - - private global::Gtk.Button btnIG4; - - private global::Gtk.Button btnIG5; - - private global::Gtk.Button btnIG6; - - private global::Gtk.Button btnIG7; - - private global::Gtk.Button btnIG8; - - private global::Gtk.Button btnIG9; - private global::Gtk.Button btnIM1; private global::Gtk.Button btnIM2; @@ -286,6 +270,8 @@ namespace Mundus.Views.Windows private global::Gtk.Image imgI9; + private global::Gtk.Image imgInfo; + private global::Gtk.Image imgS1; private global::Gtk.Image imgS10; @@ -330,9 +316,9 @@ namespace Mundus.Views.Windows private global::Gtk.Label lblHotbar; - private global::Gtk.Label lblItemLayer; + private global::Gtk.Label lblInfo; - private global::Gtk.Label lblItemsOnGround; + private global::Gtk.Label lblItemLayer; private global::Gtk.Label lblLog1; @@ -1208,165 +1194,29 @@ namespace Mundus.Views.Windows this.btnIG1.Image = w94; this.tbUI.Add(this.btnIG1); global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG1])); - w95.TopAttach = ((uint)(14)); - w95.BottomAttach = ((uint)(15)); + w95.TopAttach = ((uint)(12)); + w95.BottomAttach = ((uint)(13)); w95.LeftAttach = ((uint)(15)); w95.RightAttach = ((uint)(16)); w95.XOptions = ((global::Gtk.AttachOptions)(4)); w95.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.btnIG10 = new global::Gtk.Button(); - this.btnIG10.WidthRequest = 50; - this.btnIG10.HeightRequest = 50; - this.btnIG10.CanFocus = true; - this.btnIG10.Name = "btnIG10"; - this.btnIG10.UseUnderline = true; - global::Gtk.Image w96 = new global::Gtk.Image(); - this.btnIG10.Image = w96; - this.tbUI.Add(this.btnIG10); - global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG10])); - w97.TopAttach = ((uint)(15)); - w97.BottomAttach = ((uint)(16)); - w97.LeftAttach = ((uint)(19)); - w97.RightAttach = ((uint)(20)); - w97.XOptions = ((global::Gtk.AttachOptions)(4)); - w97.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; - global::Gtk.Image w98 = new global::Gtk.Image(); - this.btnIG2.Image = w98; + global::Gtk.Image w96 = new global::Gtk.Image(); + this.btnIG2.Image = w96; this.tbUI.Add(this.btnIG2); - global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG2])); - w99.TopAttach = ((uint)(14)); - w99.BottomAttach = ((uint)(15)); - w99.LeftAttach = ((uint)(16)); - w99.RightAttach = ((uint)(17)); - w99.XOptions = ((global::Gtk.AttachOptions)(4)); - w99.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnIG3 = new global::Gtk.Button(); - this.btnIG3.WidthRequest = 50; - this.btnIG3.HeightRequest = 50; - this.btnIG3.CanFocus = true; - this.btnIG3.Name = "btnIG3"; - this.btnIG3.UseUnderline = true; - global::Gtk.Image w100 = new global::Gtk.Image(); - this.btnIG3.Image = w100; - this.tbUI.Add(this.btnIG3); - global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG3])); - w101.TopAttach = ((uint)(14)); - w101.BottomAttach = ((uint)(15)); - w101.LeftAttach = ((uint)(17)); - w101.RightAttach = ((uint)(18)); - w101.XOptions = ((global::Gtk.AttachOptions)(4)); - w101.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnIG4 = new global::Gtk.Button(); - this.btnIG4.WidthRequest = 50; - this.btnIG4.HeightRequest = 50; - this.btnIG4.CanFocus = true; - this.btnIG4.Name = "btnIG4"; - this.btnIG4.UseUnderline = true; - global::Gtk.Image w102 = new global::Gtk.Image(); - this.btnIG4.Image = w102; - this.tbUI.Add(this.btnIG4); - global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG4])); - w103.TopAttach = ((uint)(14)); - w103.BottomAttach = ((uint)(15)); - w103.LeftAttach = ((uint)(18)); - w103.RightAttach = ((uint)(19)); - w103.XOptions = ((global::Gtk.AttachOptions)(4)); - w103.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnIG5 = new global::Gtk.Button(); - this.btnIG5.WidthRequest = 50; - this.btnIG5.HeightRequest = 50; - this.btnIG5.CanFocus = true; - this.btnIG5.Name = "btnIG5"; - this.btnIG5.UseUnderline = true; - global::Gtk.Image w104 = new global::Gtk.Image(); - this.btnIG5.Image = w104; - this.tbUI.Add(this.btnIG5); - global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG5])); - w105.TopAttach = ((uint)(14)); - w105.BottomAttach = ((uint)(15)); - w105.LeftAttach = ((uint)(19)); - w105.RightAttach = ((uint)(20)); - w105.XOptions = ((global::Gtk.AttachOptions)(4)); - w105.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnIG6 = new global::Gtk.Button(); - this.btnIG6.WidthRequest = 50; - this.btnIG6.HeightRequest = 50; - this.btnIG6.CanFocus = true; - this.btnIG6.Name = "btnIG6"; - this.btnIG6.UseUnderline = true; - global::Gtk.Image w106 = new global::Gtk.Image(); - this.btnIG6.Image = w106; - this.tbUI.Add(this.btnIG6); - global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG6])); - w107.TopAttach = ((uint)(15)); - w107.BottomAttach = ((uint)(16)); - w107.LeftAttach = ((uint)(15)); - w107.RightAttach = ((uint)(16)); - w107.XOptions = ((global::Gtk.AttachOptions)(4)); - w107.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnIG7 = new global::Gtk.Button(); - this.btnIG7.WidthRequest = 50; - this.btnIG7.HeightRequest = 50; - this.btnIG7.CanFocus = true; - this.btnIG7.Name = "btnIG7"; - this.btnIG7.UseUnderline = true; - global::Gtk.Image w108 = new global::Gtk.Image(); - this.btnIG7.Image = w108; - this.tbUI.Add(this.btnIG7); - global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG7])); - w109.TopAttach = ((uint)(15)); - w109.BottomAttach = ((uint)(16)); - w109.LeftAttach = ((uint)(16)); - w109.RightAttach = ((uint)(17)); - w109.XOptions = ((global::Gtk.AttachOptions)(4)); - w109.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnIG8 = new global::Gtk.Button(); - this.btnIG8.WidthRequest = 50; - this.btnIG8.HeightRequest = 50; - this.btnIG8.CanFocus = true; - this.btnIG8.Name = "btnIG8"; - this.btnIG8.UseUnderline = true; - global::Gtk.Image w110 = new global::Gtk.Image(); - this.btnIG8.Image = w110; - this.tbUI.Add(this.btnIG8); - global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG8])); - w111.TopAttach = ((uint)(15)); - w111.BottomAttach = ((uint)(16)); - w111.LeftAttach = ((uint)(17)); - w111.RightAttach = ((uint)(18)); - w111.XOptions = ((global::Gtk.AttachOptions)(4)); - w111.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnIG9 = new global::Gtk.Button(); - this.btnIG9.WidthRequest = 50; - this.btnIG9.HeightRequest = 50; - this.btnIG9.CanFocus = true; - this.btnIG9.Name = "btnIG9"; - this.btnIG9.UseUnderline = true; - global::Gtk.Image w112 = new global::Gtk.Image(); - this.btnIG9.Image = w112; - this.tbUI.Add(this.btnIG9); - global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG9])); - w113.TopAttach = ((uint)(15)); - w113.BottomAttach = ((uint)(16)); - w113.LeftAttach = ((uint)(18)); - w113.RightAttach = ((uint)(19)); - w113.XOptions = ((global::Gtk.AttachOptions)(4)); - w113.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG2])); + w97.TopAttach = ((uint)(12)); + w97.BottomAttach = ((uint)(13)); + w97.LeftAttach = ((uint)(16)); + w97.RightAttach = ((uint)(17)); + w97.XOptions = ((global::Gtk.AttachOptions)(4)); + w97.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnIM1 = new global::Gtk.Button(); this.btnIM1.WidthRequest = 50; @@ -1376,13 +1226,13 @@ namespace Mundus.Views.Windows this.btnIM1.UseUnderline = true; this.btnIM1.Label = global::Mono.Unix.Catalog.GetString("1:1"); this.tbUI.Add(this.btnIM1); - global::Gtk.Table.TableChild w114 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIM1])); - w114.TopAttach = ((uint)(15)); - w114.BottomAttach = ((uint)(16)); - w114.LeftAttach = ((uint)(1)); - w114.RightAttach = ((uint)(2)); - w114.XOptions = ((global::Gtk.AttachOptions)(4)); - w114.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w98 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIM1])); + w98.TopAttach = ((uint)(15)); + w98.BottomAttach = ((uint)(16)); + w98.LeftAttach = ((uint)(1)); + w98.RightAttach = ((uint)(2)); + w98.XOptions = ((global::Gtk.AttachOptions)(4)); + w98.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnIM2 = new global::Gtk.Button(); this.btnIM2.WidthRequest = 50; @@ -1392,13 +1242,13 @@ namespace Mundus.Views.Windows this.btnIM2.UseUnderline = true; this.btnIM2.Label = global::Mono.Unix.Catalog.GetString("1:5"); this.tbUI.Add(this.btnIM2); - global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIM2])); - w115.TopAttach = ((uint)(15)); - w115.BottomAttach = ((uint)(16)); - w115.LeftAttach = ((uint)(3)); - w115.RightAttach = ((uint)(4)); - w115.XOptions = ((global::Gtk.AttachOptions)(4)); - w115.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIM2])); + w99.TopAttach = ((uint)(15)); + w99.BottomAttach = ((uint)(16)); + w99.LeftAttach = ((uint)(3)); + w99.RightAttach = ((uint)(4)); + w99.XOptions = ((global::Gtk.AttachOptions)(4)); + w99.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnIM3 = new global::Gtk.Button(); this.btnIM3.WidthRequest = 50; @@ -1408,13 +1258,13 @@ namespace Mundus.Views.Windows this.btnIM3.UseUnderline = true; this.btnIM3.Label = global::Mono.Unix.Catalog.GetString("1:10"); this.tbUI.Add(this.btnIM3); - global::Gtk.Table.TableChild w116 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIM3])); - w116.TopAttach = ((uint)(15)); - w116.BottomAttach = ((uint)(16)); - w116.LeftAttach = ((uint)(5)); - w116.RightAttach = ((uint)(6)); - w116.XOptions = ((global::Gtk.AttachOptions)(4)); - w116.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w100 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIM3])); + w100.TopAttach = ((uint)(15)); + w100.BottomAttach = ((uint)(16)); + w100.LeftAttach = ((uint)(5)); + w100.RightAttach = ((uint)(6)); + w100.XOptions = ((global::Gtk.AttachOptions)(4)); + w100.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnInv = new global::Gtk.Button(); this.btnInv.WidthRequest = 50; @@ -1424,13 +1274,13 @@ namespace Mundus.Views.Windows this.btnInv.UseUnderline = true; this.btnInv.Label = global::Mono.Unix.Catalog.GetString("Inv"); this.tbUI.Add(this.btnInv); - global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); - w117.TopAttach = ((uint)(9)); - w117.BottomAttach = ((uint)(10)); - w117.LeftAttach = ((uint)(13)); - w117.RightAttach = ((uint)(14)); - w117.XOptions = ((global::Gtk.AttachOptions)(4)); - w117.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); + w101.TopAttach = ((uint)(9)); + w101.BottomAttach = ((uint)(10)); + w101.LeftAttach = ((uint)(13)); + w101.RightAttach = ((uint)(14)); + w101.XOptions = ((global::Gtk.AttachOptions)(4)); + w101.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnMap = new global::Gtk.Button(); this.btnMap.WidthRequest = 50; @@ -1440,13 +1290,13 @@ namespace Mundus.Views.Windows this.btnMap.UseUnderline = true; this.btnMap.Label = global::Mono.Unix.Catalog.GetString("Map"); this.tbUI.Add(this.btnMap); - global::Gtk.Table.TableChild w118 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); - w118.TopAttach = ((uint)(9)); - w118.BottomAttach = ((uint)(10)); - w118.LeftAttach = ((uint)(7)); - w118.RightAttach = ((uint)(8)); - w118.XOptions = ((global::Gtk.AttachOptions)(4)); - w118.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w102 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); + w102.TopAttach = ((uint)(9)); + w102.BottomAttach = ((uint)(10)); + w102.LeftAttach = ((uint)(7)); + w102.RightAttach = ((uint)(8)); + w102.XOptions = ((global::Gtk.AttachOptions)(4)); + w102.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnMusic = new global::Gtk.Button(); this.btnMusic.WidthRequest = 50; @@ -1456,13 +1306,13 @@ namespace Mundus.Views.Windows this.btnMusic.UseUnderline = true; this.btnMusic.Label = global::Mono.Unix.Catalog.GetString("Music"); this.tbUI.Add(this.btnMusic); - global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); - w119.TopAttach = ((uint)(11)); - w119.BottomAttach = ((uint)(12)); - w119.LeftAttach = ((uint)(7)); - w119.RightAttach = ((uint)(8)); - w119.XOptions = ((global::Gtk.AttachOptions)(4)); - w119.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); + w103.TopAttach = ((uint)(11)); + w103.BottomAttach = ((uint)(12)); + w103.LeftAttach = ((uint)(7)); + w103.RightAttach = ((uint)(8)); + w103.XOptions = ((global::Gtk.AttachOptions)(4)); + w103.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP1 = new global::Gtk.Button(); this.btnP1.WidthRequest = 50; @@ -1471,16 +1321,16 @@ namespace Mundus.Views.Windows this.btnP1.Name = "btnP1"; this.btnP1.UseUnderline = true; this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w120 = new global::Gtk.Image(); - this.btnP1.Image = w120; + global::Gtk.Image w104 = new global::Gtk.Image(); + this.btnP1.Image = w104; this.tbUI.Add(this.btnP1); - global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); - w121.TopAttach = ((uint)(1)); - w121.BottomAttach = ((uint)(2)); - w121.LeftAttach = ((uint)(8)); - w121.RightAttach = ((uint)(9)); - w121.XOptions = ((global::Gtk.AttachOptions)(4)); - w121.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); + w105.TopAttach = ((uint)(1)); + w105.BottomAttach = ((uint)(2)); + w105.LeftAttach = ((uint)(8)); + w105.RightAttach = ((uint)(9)); + w105.XOptions = ((global::Gtk.AttachOptions)(4)); + w105.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP10 = new global::Gtk.Button(); this.btnP10.WidthRequest = 50; @@ -1489,16 +1339,16 @@ namespace Mundus.Views.Windows this.btnP10.Name = "btnP10"; this.btnP10.UseUnderline = true; this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w122 = new global::Gtk.Image(); - this.btnP10.Image = w122; + global::Gtk.Image w106 = new global::Gtk.Image(); + this.btnP10.Image = w106; this.tbUI.Add(this.btnP10); - global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); - w123.TopAttach = ((uint)(2)); - w123.BottomAttach = ((uint)(3)); - w123.LeftAttach = ((uint)(12)); - w123.RightAttach = ((uint)(13)); - w123.XOptions = ((global::Gtk.AttachOptions)(4)); - w123.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); + w107.TopAttach = ((uint)(2)); + w107.BottomAttach = ((uint)(3)); + w107.LeftAttach = ((uint)(12)); + w107.RightAttach = ((uint)(13)); + w107.XOptions = ((global::Gtk.AttachOptions)(4)); + w107.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP11 = new global::Gtk.Button(); this.btnP11.WidthRequest = 50; @@ -1507,16 +1357,16 @@ namespace Mundus.Views.Windows this.btnP11.Name = "btnP11"; this.btnP11.UseUnderline = true; this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w124 = new global::Gtk.Image(); - this.btnP11.Image = w124; + global::Gtk.Image w108 = new global::Gtk.Image(); + this.btnP11.Image = w108; this.tbUI.Add(this.btnP11); - global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); - w125.TopAttach = ((uint)(3)); - w125.BottomAttach = ((uint)(4)); - w125.LeftAttach = ((uint)(8)); - w125.RightAttach = ((uint)(9)); - w125.XOptions = ((global::Gtk.AttachOptions)(4)); - w125.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); + w109.TopAttach = ((uint)(3)); + w109.BottomAttach = ((uint)(4)); + w109.LeftAttach = ((uint)(8)); + w109.RightAttach = ((uint)(9)); + w109.XOptions = ((global::Gtk.AttachOptions)(4)); + w109.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP12 = new global::Gtk.Button(); this.btnP12.WidthRequest = 50; @@ -1525,16 +1375,16 @@ namespace Mundus.Views.Windows this.btnP12.Name = "btnP12"; this.btnP12.UseUnderline = true; this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w126 = new global::Gtk.Image(); - this.btnP12.Image = w126; + global::Gtk.Image w110 = new global::Gtk.Image(); + this.btnP12.Image = w110; this.tbUI.Add(this.btnP12); - global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); - w127.TopAttach = ((uint)(3)); - w127.BottomAttach = ((uint)(4)); - w127.LeftAttach = ((uint)(9)); - w127.RightAttach = ((uint)(10)); - w127.XOptions = ((global::Gtk.AttachOptions)(4)); - w127.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); + w111.TopAttach = ((uint)(3)); + w111.BottomAttach = ((uint)(4)); + w111.LeftAttach = ((uint)(9)); + w111.RightAttach = ((uint)(10)); + w111.XOptions = ((global::Gtk.AttachOptions)(4)); + w111.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP13 = new global::Gtk.Button(); this.btnP13.WidthRequest = 50; @@ -1543,16 +1393,16 @@ namespace Mundus.Views.Windows this.btnP13.Name = "btnP13"; this.btnP13.UseUnderline = true; this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w128 = new global::Gtk.Image(); - this.btnP13.Image = w128; + global::Gtk.Image w112 = new global::Gtk.Image(); + this.btnP13.Image = w112; this.tbUI.Add(this.btnP13); - global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); - w129.TopAttach = ((uint)(3)); - w129.BottomAttach = ((uint)(4)); - w129.LeftAttach = ((uint)(10)); - w129.RightAttach = ((uint)(11)); - w129.XOptions = ((global::Gtk.AttachOptions)(4)); - w129.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); + w113.TopAttach = ((uint)(3)); + w113.BottomAttach = ((uint)(4)); + w113.LeftAttach = ((uint)(10)); + w113.RightAttach = ((uint)(11)); + w113.XOptions = ((global::Gtk.AttachOptions)(4)); + w113.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP14 = new global::Gtk.Button(); this.btnP14.WidthRequest = 50; @@ -1561,16 +1411,16 @@ namespace Mundus.Views.Windows this.btnP14.Name = "btnP14"; this.btnP14.UseUnderline = true; this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w130 = new global::Gtk.Image(); - this.btnP14.Image = w130; + global::Gtk.Image w114 = new global::Gtk.Image(); + this.btnP14.Image = w114; this.tbUI.Add(this.btnP14); - global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); - w131.TopAttach = ((uint)(3)); - w131.BottomAttach = ((uint)(4)); - w131.LeftAttach = ((uint)(11)); - w131.RightAttach = ((uint)(12)); - w131.XOptions = ((global::Gtk.AttachOptions)(4)); - w131.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); + w115.TopAttach = ((uint)(3)); + w115.BottomAttach = ((uint)(4)); + w115.LeftAttach = ((uint)(11)); + w115.RightAttach = ((uint)(12)); + w115.XOptions = ((global::Gtk.AttachOptions)(4)); + w115.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP15 = new global::Gtk.Button(); this.btnP15.WidthRequest = 50; @@ -1579,16 +1429,16 @@ namespace Mundus.Views.Windows this.btnP15.Name = "btnP15"; this.btnP15.UseUnderline = true; this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w132 = new global::Gtk.Image(); - this.btnP15.Image = w132; + global::Gtk.Image w116 = new global::Gtk.Image(); + this.btnP15.Image = w116; this.tbUI.Add(this.btnP15); - global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); - w133.TopAttach = ((uint)(3)); - w133.BottomAttach = ((uint)(4)); - w133.LeftAttach = ((uint)(12)); - w133.RightAttach = ((uint)(13)); - w133.XOptions = ((global::Gtk.AttachOptions)(4)); - w133.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); + w117.TopAttach = ((uint)(3)); + w117.BottomAttach = ((uint)(4)); + w117.LeftAttach = ((uint)(12)); + w117.RightAttach = ((uint)(13)); + w117.XOptions = ((global::Gtk.AttachOptions)(4)); + w117.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP16 = new global::Gtk.Button(); this.btnP16.WidthRequest = 50; @@ -1597,16 +1447,16 @@ namespace Mundus.Views.Windows this.btnP16.Name = "btnP16"; this.btnP16.UseUnderline = true; this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w134 = new global::Gtk.Image(); - this.btnP16.Image = w134; + global::Gtk.Image w118 = new global::Gtk.Image(); + this.btnP16.Image = w118; this.tbUI.Add(this.btnP16); - global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); - w135.TopAttach = ((uint)(4)); - w135.BottomAttach = ((uint)(5)); - w135.LeftAttach = ((uint)(8)); - w135.RightAttach = ((uint)(9)); - w135.XOptions = ((global::Gtk.AttachOptions)(4)); - w135.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); + w119.TopAttach = ((uint)(4)); + w119.BottomAttach = ((uint)(5)); + w119.LeftAttach = ((uint)(8)); + w119.RightAttach = ((uint)(9)); + w119.XOptions = ((global::Gtk.AttachOptions)(4)); + w119.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP17 = new global::Gtk.Button(); this.btnP17.WidthRequest = 50; @@ -1615,16 +1465,16 @@ namespace Mundus.Views.Windows this.btnP17.Name = "btnP17"; this.btnP17.UseUnderline = true; this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w136 = new global::Gtk.Image(); - this.btnP17.Image = w136; + global::Gtk.Image w120 = new global::Gtk.Image(); + this.btnP17.Image = w120; this.tbUI.Add(this.btnP17); - global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); - w137.TopAttach = ((uint)(4)); - w137.BottomAttach = ((uint)(5)); - w137.LeftAttach = ((uint)(9)); - w137.RightAttach = ((uint)(10)); - w137.XOptions = ((global::Gtk.AttachOptions)(4)); - w137.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); + w121.TopAttach = ((uint)(4)); + w121.BottomAttach = ((uint)(5)); + 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.btnP18 = new global::Gtk.Button(); this.btnP18.WidthRequest = 50; @@ -1633,16 +1483,16 @@ namespace Mundus.Views.Windows this.btnP18.Name = "btnP18"; this.btnP18.UseUnderline = true; this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w138 = new global::Gtk.Image(); - this.btnP18.Image = w138; + global::Gtk.Image w122 = new global::Gtk.Image(); + this.btnP18.Image = w122; this.tbUI.Add(this.btnP18); - global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); - w139.TopAttach = ((uint)(4)); - w139.BottomAttach = ((uint)(5)); - w139.LeftAttach = ((uint)(10)); - w139.RightAttach = ((uint)(11)); - w139.XOptions = ((global::Gtk.AttachOptions)(4)); - w139.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); + w123.TopAttach = ((uint)(4)); + w123.BottomAttach = ((uint)(5)); + w123.LeftAttach = ((uint)(10)); + w123.RightAttach = ((uint)(11)); + w123.XOptions = ((global::Gtk.AttachOptions)(4)); + w123.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP19 = new global::Gtk.Button(); this.btnP19.WidthRequest = 50; @@ -1651,16 +1501,16 @@ namespace Mundus.Views.Windows this.btnP19.Name = "btnP19"; this.btnP19.UseUnderline = true; this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w140 = new global::Gtk.Image(); - this.btnP19.Image = w140; + global::Gtk.Image w124 = new global::Gtk.Image(); + this.btnP19.Image = w124; this.tbUI.Add(this.btnP19); - global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); - w141.TopAttach = ((uint)(4)); - w141.BottomAttach = ((uint)(5)); - w141.LeftAttach = ((uint)(11)); - w141.RightAttach = ((uint)(12)); - w141.XOptions = ((global::Gtk.AttachOptions)(4)); - w141.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); + w125.TopAttach = ((uint)(4)); + w125.BottomAttach = ((uint)(5)); + w125.LeftAttach = ((uint)(11)); + w125.RightAttach = ((uint)(12)); + w125.XOptions = ((global::Gtk.AttachOptions)(4)); + w125.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP2 = new global::Gtk.Button(); this.btnP2.WidthRequest = 50; @@ -1669,16 +1519,16 @@ namespace Mundus.Views.Windows this.btnP2.Name = "btnP2"; this.btnP2.UseUnderline = true; this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w142 = new global::Gtk.Image(); - this.btnP2.Image = w142; + global::Gtk.Image w126 = new global::Gtk.Image(); + this.btnP2.Image = w126; this.tbUI.Add(this.btnP2); - global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); - w143.TopAttach = ((uint)(1)); - w143.BottomAttach = ((uint)(2)); - w143.LeftAttach = ((uint)(9)); - w143.RightAttach = ((uint)(10)); - w143.XOptions = ((global::Gtk.AttachOptions)(4)); - w143.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); + w127.TopAttach = ((uint)(1)); + w127.BottomAttach = ((uint)(2)); + 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.btnP20 = new global::Gtk.Button(); this.btnP20.WidthRequest = 50; @@ -1687,16 +1537,16 @@ namespace Mundus.Views.Windows this.btnP20.Name = "btnP20"; this.btnP20.UseUnderline = true; this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w144 = new global::Gtk.Image(); - this.btnP20.Image = w144; + global::Gtk.Image w128 = new global::Gtk.Image(); + this.btnP20.Image = w128; this.tbUI.Add(this.btnP20); - global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); - w145.TopAttach = ((uint)(4)); - w145.BottomAttach = ((uint)(5)); - w145.LeftAttach = ((uint)(12)); - w145.RightAttach = ((uint)(13)); - w145.XOptions = ((global::Gtk.AttachOptions)(4)); - w145.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); + w129.TopAttach = ((uint)(4)); + w129.BottomAttach = ((uint)(5)); + w129.LeftAttach = ((uint)(12)); + w129.RightAttach = ((uint)(13)); + w129.XOptions = ((global::Gtk.AttachOptions)(4)); + w129.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP21 = new global::Gtk.Button(); this.btnP21.WidthRequest = 50; @@ -1705,16 +1555,16 @@ namespace Mundus.Views.Windows this.btnP21.Name = "btnP21"; this.btnP21.UseUnderline = true; this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w146 = new global::Gtk.Image(); - this.btnP21.Image = w146; + global::Gtk.Image w130 = new global::Gtk.Image(); + this.btnP21.Image = w130; this.tbUI.Add(this.btnP21); - global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); - w147.TopAttach = ((uint)(5)); - w147.BottomAttach = ((uint)(6)); - w147.LeftAttach = ((uint)(8)); - w147.RightAttach = ((uint)(9)); - w147.XOptions = ((global::Gtk.AttachOptions)(4)); - w147.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); + w131.TopAttach = ((uint)(5)); + w131.BottomAttach = ((uint)(6)); + w131.LeftAttach = ((uint)(8)); + w131.RightAttach = ((uint)(9)); + w131.XOptions = ((global::Gtk.AttachOptions)(4)); + w131.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP22 = new global::Gtk.Button(); this.btnP22.WidthRequest = 50; @@ -1723,16 +1573,16 @@ namespace Mundus.Views.Windows this.btnP22.Name = "btnP22"; this.btnP22.UseUnderline = true; this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w148 = new global::Gtk.Image(); - this.btnP22.Image = w148; + global::Gtk.Image w132 = new global::Gtk.Image(); + this.btnP22.Image = w132; this.tbUI.Add(this.btnP22); - global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); - w149.TopAttach = ((uint)(5)); - w149.BottomAttach = ((uint)(6)); - w149.LeftAttach = ((uint)(9)); - w149.RightAttach = ((uint)(10)); - w149.XOptions = ((global::Gtk.AttachOptions)(4)); - w149.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); + w133.TopAttach = ((uint)(5)); + w133.BottomAttach = ((uint)(6)); + w133.LeftAttach = ((uint)(9)); + w133.RightAttach = ((uint)(10)); + w133.XOptions = ((global::Gtk.AttachOptions)(4)); + w133.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP23 = new global::Gtk.Button(); this.btnP23.WidthRequest = 50; @@ -1741,16 +1591,16 @@ namespace Mundus.Views.Windows this.btnP23.Name = "btnP23"; this.btnP23.UseUnderline = true; this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w150 = new global::Gtk.Image(); - this.btnP23.Image = w150; + global::Gtk.Image w134 = new global::Gtk.Image(); + this.btnP23.Image = w134; this.tbUI.Add(this.btnP23); - global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); - w151.TopAttach = ((uint)(5)); - w151.BottomAttach = ((uint)(6)); - w151.LeftAttach = ((uint)(10)); - w151.RightAttach = ((uint)(11)); - w151.XOptions = ((global::Gtk.AttachOptions)(4)); - w151.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); + w135.TopAttach = ((uint)(5)); + w135.BottomAttach = ((uint)(6)); + 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.btnP24 = new global::Gtk.Button(); this.btnP24.WidthRequest = 50; @@ -1759,16 +1609,16 @@ namespace Mundus.Views.Windows this.btnP24.Name = "btnP24"; this.btnP24.UseUnderline = true; this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w152 = new global::Gtk.Image(); - this.btnP24.Image = w152; + global::Gtk.Image w136 = new global::Gtk.Image(); + this.btnP24.Image = w136; this.tbUI.Add(this.btnP24); - global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); - w153.TopAttach = ((uint)(5)); - w153.BottomAttach = ((uint)(6)); - w153.LeftAttach = ((uint)(11)); - w153.RightAttach = ((uint)(12)); - w153.XOptions = ((global::Gtk.AttachOptions)(4)); - w153.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); + w137.TopAttach = ((uint)(5)); + w137.BottomAttach = ((uint)(6)); + 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.btnP25 = new global::Gtk.Button(); this.btnP25.WidthRequest = 50; @@ -1777,16 +1627,16 @@ namespace Mundus.Views.Windows this.btnP25.Name = "btnP25"; this.btnP25.UseUnderline = true; this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w154 = new global::Gtk.Image(); - this.btnP25.Image = w154; + global::Gtk.Image w138 = new global::Gtk.Image(); + this.btnP25.Image = w138; this.tbUI.Add(this.btnP25); - global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); - w155.TopAttach = ((uint)(5)); - w155.BottomAttach = ((uint)(6)); - w155.LeftAttach = ((uint)(12)); - w155.RightAttach = ((uint)(13)); - w155.XOptions = ((global::Gtk.AttachOptions)(4)); - w155.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); + w139.TopAttach = ((uint)(5)); + w139.BottomAttach = ((uint)(6)); + 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.btnP3 = new global::Gtk.Button(); this.btnP3.WidthRequest = 50; @@ -1795,16 +1645,16 @@ namespace Mundus.Views.Windows this.btnP3.Name = "btnP3"; this.btnP3.UseUnderline = true; this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w156 = new global::Gtk.Image(); - this.btnP3.Image = w156; + global::Gtk.Image w140 = new global::Gtk.Image(); + this.btnP3.Image = w140; this.tbUI.Add(this.btnP3); - global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); - w157.TopAttach = ((uint)(1)); - w157.BottomAttach = ((uint)(2)); - w157.LeftAttach = ((uint)(10)); - w157.RightAttach = ((uint)(11)); - w157.XOptions = ((global::Gtk.AttachOptions)(4)); - w157.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); + w141.TopAttach = ((uint)(1)); + w141.BottomAttach = ((uint)(2)); + w141.LeftAttach = ((uint)(10)); + w141.RightAttach = ((uint)(11)); + w141.XOptions = ((global::Gtk.AttachOptions)(4)); + w141.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP4 = new global::Gtk.Button(); this.btnP4.WidthRequest = 50; @@ -1813,16 +1663,16 @@ namespace Mundus.Views.Windows this.btnP4.Name = "btnP4"; this.btnP4.UseUnderline = true; this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w158 = new global::Gtk.Image(); - this.btnP4.Image = w158; + global::Gtk.Image w142 = new global::Gtk.Image(); + this.btnP4.Image = w142; this.tbUI.Add(this.btnP4); - global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); - w159.TopAttach = ((uint)(1)); - w159.BottomAttach = ((uint)(2)); - w159.LeftAttach = ((uint)(11)); - w159.RightAttach = ((uint)(12)); - w159.XOptions = ((global::Gtk.AttachOptions)(4)); - w159.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); + w143.TopAttach = ((uint)(1)); + w143.BottomAttach = ((uint)(2)); + w143.LeftAttach = ((uint)(11)); + w143.RightAttach = ((uint)(12)); + w143.XOptions = ((global::Gtk.AttachOptions)(4)); + w143.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP5 = new global::Gtk.Button(); this.btnP5.WidthRequest = 50; @@ -1831,16 +1681,16 @@ namespace Mundus.Views.Windows this.btnP5.Name = "btnP5"; this.btnP5.UseUnderline = true; this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w160 = new global::Gtk.Image(); - this.btnP5.Image = w160; + global::Gtk.Image w144 = new global::Gtk.Image(); + this.btnP5.Image = w144; this.tbUI.Add(this.btnP5); - global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); - w161.TopAttach = ((uint)(1)); - w161.BottomAttach = ((uint)(2)); - w161.LeftAttach = ((uint)(12)); - w161.RightAttach = ((uint)(13)); - w161.XOptions = ((global::Gtk.AttachOptions)(4)); - w161.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); + w145.TopAttach = ((uint)(1)); + w145.BottomAttach = ((uint)(2)); + w145.LeftAttach = ((uint)(12)); + w145.RightAttach = ((uint)(13)); + w145.XOptions = ((global::Gtk.AttachOptions)(4)); + w145.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP6 = new global::Gtk.Button(); this.btnP6.WidthRequest = 50; @@ -1849,16 +1699,16 @@ namespace Mundus.Views.Windows this.btnP6.Name = "btnP6"; this.btnP6.UseUnderline = true; this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w162 = new global::Gtk.Image(); - this.btnP6.Image = w162; + global::Gtk.Image w146 = new global::Gtk.Image(); + this.btnP6.Image = w146; this.tbUI.Add(this.btnP6); - global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); - w163.TopAttach = ((uint)(2)); - w163.BottomAttach = ((uint)(3)); - w163.LeftAttach = ((uint)(8)); - w163.RightAttach = ((uint)(9)); - w163.XOptions = ((global::Gtk.AttachOptions)(4)); - w163.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); + w147.TopAttach = ((uint)(2)); + w147.BottomAttach = ((uint)(3)); + w147.LeftAttach = ((uint)(8)); + w147.RightAttach = ((uint)(9)); + w147.XOptions = ((global::Gtk.AttachOptions)(4)); + w147.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP7 = new global::Gtk.Button(); this.btnP7.WidthRequest = 50; @@ -1867,16 +1717,16 @@ namespace Mundus.Views.Windows this.btnP7.Name = "btnP7"; this.btnP7.UseUnderline = true; this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w164 = new global::Gtk.Image(); - this.btnP7.Image = w164; + global::Gtk.Image w148 = new global::Gtk.Image(); + this.btnP7.Image = w148; this.tbUI.Add(this.btnP7); - global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); - w165.TopAttach = ((uint)(2)); - w165.BottomAttach = ((uint)(3)); - w165.LeftAttach = ((uint)(9)); - w165.RightAttach = ((uint)(10)); - w165.XOptions = ((global::Gtk.AttachOptions)(4)); - w165.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); + w149.TopAttach = ((uint)(2)); + w149.BottomAttach = ((uint)(3)); + w149.LeftAttach = ((uint)(9)); + w149.RightAttach = ((uint)(10)); + w149.XOptions = ((global::Gtk.AttachOptions)(4)); + w149.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP8 = new global::Gtk.Button(); this.btnP8.WidthRequest = 50; @@ -1885,16 +1735,16 @@ namespace Mundus.Views.Windows this.btnP8.Name = "btnP8"; this.btnP8.UseUnderline = true; this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w166 = new global::Gtk.Image(); - this.btnP8.Image = w166; + global::Gtk.Image w150 = new global::Gtk.Image(); + this.btnP8.Image = w150; this.tbUI.Add(this.btnP8); - global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); - w167.TopAttach = ((uint)(2)); - w167.BottomAttach = ((uint)(3)); - w167.LeftAttach = ((uint)(10)); - w167.RightAttach = ((uint)(11)); - w167.XOptions = ((global::Gtk.AttachOptions)(4)); - w167.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); + w151.TopAttach = ((uint)(2)); + w151.BottomAttach = ((uint)(3)); + w151.LeftAttach = ((uint)(10)); + w151.RightAttach = ((uint)(11)); + w151.XOptions = ((global::Gtk.AttachOptions)(4)); + w151.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP9 = new global::Gtk.Button(); this.btnP9.WidthRequest = 50; @@ -1903,16 +1753,16 @@ namespace Mundus.Views.Windows this.btnP9.Name = "btnP9"; this.btnP9.UseUnderline = true; this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w168 = new global::Gtk.Image(); - this.btnP9.Image = w168; + global::Gtk.Image w152 = new global::Gtk.Image(); + this.btnP9.Image = w152; this.tbUI.Add(this.btnP9); - global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); - w169.TopAttach = ((uint)(2)); - w169.BottomAttach = ((uint)(3)); - w169.LeftAttach = ((uint)(11)); - w169.RightAttach = ((uint)(12)); - w169.XOptions = ((global::Gtk.AttachOptions)(4)); - w169.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); + w153.TopAttach = ((uint)(2)); + w153.BottomAttach = ((uint)(3)); + w153.LeftAttach = ((uint)(11)); + w153.RightAttach = ((uint)(12)); + w153.XOptions = ((global::Gtk.AttachOptions)(4)); + w153.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnPause = new global::Gtk.Button(); this.btnPause.WidthRequest = 50; @@ -1922,853 +1772,868 @@ namespace Mundus.Views.Windows this.btnPause.UseUnderline = true; this.btnPause.Label = global::Mono.Unix.Catalog.GetString("Pause"); this.tbUI.Add(this.btnPause); - global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); - w170.TopAttach = ((uint)(11)); - w170.BottomAttach = ((uint)(12)); - w170.LeftAttach = ((uint)(13)); - w170.RightAttach = ((uint)(14)); - w170.XOptions = ((global::Gtk.AttachOptions)(4)); - w170.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w154 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); + w154.TopAttach = ((uint)(11)); + w154.BottomAttach = ((uint)(12)); + w154.LeftAttach = ((uint)(13)); + w154.RightAttach = ((uint)(14)); + w154.XOptions = ((global::Gtk.AttachOptions)(4)); + w154.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 w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); - w171.TopAttach = ((uint)(2)); - w171.BottomAttach = ((uint)(3)); - w171.LeftAttach = ((uint)(1)); - w171.RightAttach = ((uint)(2)); - w171.XOptions = ((global::Gtk.AttachOptions)(4)); - w171.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); + w155.TopAttach = ((uint)(2)); + w155.BottomAttach = ((uint)(3)); + w155.LeftAttach = ((uint)(1)); + w155.RightAttach = ((uint)(2)); + w155.XOptions = ((global::Gtk.AttachOptions)(4)); + w155.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 w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); - w172.TopAttach = ((uint)(3)); - w172.BottomAttach = ((uint)(4)); - w172.LeftAttach = ((uint)(5)); - w172.RightAttach = ((uint)(6)); - w172.XOptions = ((global::Gtk.AttachOptions)(4)); - w172.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); + w156.TopAttach = ((uint)(3)); + w156.BottomAttach = ((uint)(4)); + w156.LeftAttach = ((uint)(5)); + w156.RightAttach = ((uint)(6)); + w156.XOptions = ((global::Gtk.AttachOptions)(4)); + w156.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 w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); - w173.TopAttach = ((uint)(4)); - w173.BottomAttach = ((uint)(5)); - w173.LeftAttach = ((uint)(1)); - w173.RightAttach = ((uint)(2)); - w173.XOptions = ((global::Gtk.AttachOptions)(4)); - w173.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); + w157.TopAttach = ((uint)(4)); + w157.BottomAttach = ((uint)(5)); + w157.LeftAttach = ((uint)(1)); + w157.RightAttach = ((uint)(2)); + w157.XOptions = ((global::Gtk.AttachOptions)(4)); + w157.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 w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); - w174.TopAttach = ((uint)(4)); - w174.BottomAttach = ((uint)(5)); - w174.LeftAttach = ((uint)(2)); - w174.RightAttach = ((uint)(3)); - w174.XOptions = ((global::Gtk.AttachOptions)(4)); - w174.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); + w158.TopAttach = ((uint)(4)); + w158.BottomAttach = ((uint)(5)); + w158.LeftAttach = ((uint)(2)); + w158.RightAttach = ((uint)(3)); + w158.XOptions = ((global::Gtk.AttachOptions)(4)); + w158.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 w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); - w175.TopAttach = ((uint)(4)); - w175.BottomAttach = ((uint)(5)); - w175.LeftAttach = ((uint)(3)); - w175.RightAttach = ((uint)(4)); - w175.XOptions = ((global::Gtk.AttachOptions)(4)); - w175.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); + w159.TopAttach = ((uint)(4)); + w159.BottomAttach = ((uint)(5)); + w159.LeftAttach = ((uint)(3)); + w159.RightAttach = ((uint)(4)); + w159.XOptions = ((global::Gtk.AttachOptions)(4)); + w159.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 w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); - w176.TopAttach = ((uint)(4)); - w176.BottomAttach = ((uint)(5)); - w176.LeftAttach = ((uint)(4)); - w176.RightAttach = ((uint)(5)); - w176.XOptions = ((global::Gtk.AttachOptions)(4)); - w176.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); + w160.TopAttach = ((uint)(4)); + w160.BottomAttach = ((uint)(5)); + w160.LeftAttach = ((uint)(4)); + w160.RightAttach = ((uint)(5)); + w160.XOptions = ((global::Gtk.AttachOptions)(4)); + w160.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 w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); - w177.TopAttach = ((uint)(4)); - w177.BottomAttach = ((uint)(5)); - w177.LeftAttach = ((uint)(5)); - w177.RightAttach = ((uint)(6)); - w177.XOptions = ((global::Gtk.AttachOptions)(4)); - w177.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + w161.TopAttach = ((uint)(4)); + w161.BottomAttach = ((uint)(5)); + 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.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 w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); - w178.TopAttach = ((uint)(5)); - w178.BottomAttach = ((uint)(6)); - w178.LeftAttach = ((uint)(1)); - w178.RightAttach = ((uint)(2)); - w178.XOptions = ((global::Gtk.AttachOptions)(4)); - w178.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w162 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); + w162.TopAttach = ((uint)(5)); + w162.BottomAttach = ((uint)(6)); + 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.imgG17 = new global::Gtk.Image(); + this.imgG17.HeightRequest = 50; this.imgG17.Name = "imgG17"; this.tbUI.Add(this.imgG17); - global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); - w179.TopAttach = ((uint)(5)); - w179.BottomAttach = ((uint)(6)); - w179.LeftAttach = ((uint)(2)); - w179.RightAttach = ((uint)(3)); - w179.XOptions = ((global::Gtk.AttachOptions)(4)); - w179.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild + global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); + w163.TopAttach = ((uint)(5)); + w163.BottomAttach = ((uint)(6)); + 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.imgG18 = new global::Gtk.Image(); + this.imgG18.HeightRequest = 50; this.imgG18.Name = "imgG18"; this.tbUI.Add(this.imgG18); - global::Gtk.Table.TableChild w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); - w180.TopAttach = ((uint)(5)); - w180.BottomAttach = ((uint)(6)); - w180.LeftAttach = ((uint)(3)); - w180.RightAttach = ((uint)(4)); - w180.XOptions = ((global::Gtk.AttachOptions)(4)); - w180.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); + w164.TopAttach = ((uint)(5)); + w164.BottomAttach = ((uint)(6)); + 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.imgG19 = new global::Gtk.Image(); this.imgG19.Name = "imgG19"; this.tbUI.Add(this.imgG19); - global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); - w181.TopAttach = ((uint)(5)); - w181.BottomAttach = ((uint)(6)); - w181.LeftAttach = ((uint)(4)); - w181.RightAttach = ((uint)(5)); - w181.XOptions = ((global::Gtk.AttachOptions)(4)); - w181.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + w165.TopAttach = ((uint)(5)); + w165.BottomAttach = ((uint)(6)); + 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.imgG2 = new global::Gtk.Image(); this.imgG2.Name = "imgG2"; this.tbUI.Add(this.imgG2); - global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); - w182.TopAttach = ((uint)(2)); - w182.BottomAttach = ((uint)(3)); - w182.LeftAttach = ((uint)(2)); - w182.RightAttach = ((uint)(3)); - w182.XOptions = ((global::Gtk.AttachOptions)(4)); - w182.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w166 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); + w166.TopAttach = ((uint)(2)); + w166.BottomAttach = ((uint)(3)); + w166.LeftAttach = ((uint)(2)); + w166.RightAttach = ((uint)(3)); + w166.XOptions = ((global::Gtk.AttachOptions)(4)); + w166.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 w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); - w183.TopAttach = ((uint)(5)); - w183.BottomAttach = ((uint)(6)); - w183.LeftAttach = ((uint)(5)); - w183.RightAttach = ((uint)(6)); - w183.XOptions = ((global::Gtk.AttachOptions)(4)); - w183.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); + w167.TopAttach = ((uint)(5)); + w167.BottomAttach = ((uint)(6)); + w167.LeftAttach = ((uint)(5)); + w167.RightAttach = ((uint)(6)); + w167.XOptions = ((global::Gtk.AttachOptions)(4)); + w167.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 w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); - w184.TopAttach = ((uint)(6)); - w184.BottomAttach = ((uint)(7)); - w184.LeftAttach = ((uint)(1)); - w184.RightAttach = ((uint)(2)); - w184.XOptions = ((global::Gtk.AttachOptions)(4)); - w184.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); + w168.TopAttach = ((uint)(6)); + w168.BottomAttach = ((uint)(7)); + w168.LeftAttach = ((uint)(1)); + w168.RightAttach = ((uint)(2)); + w168.XOptions = ((global::Gtk.AttachOptions)(4)); + w168.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 w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); - w185.TopAttach = ((uint)(6)); - w185.BottomAttach = ((uint)(7)); - w185.LeftAttach = ((uint)(2)); - w185.RightAttach = ((uint)(3)); - w185.XOptions = ((global::Gtk.AttachOptions)(4)); - w185.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); + w169.TopAttach = ((uint)(6)); + w169.BottomAttach = ((uint)(7)); + w169.LeftAttach = ((uint)(2)); + w169.RightAttach = ((uint)(3)); + w169.XOptions = ((global::Gtk.AttachOptions)(4)); + w169.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 w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); - w186.TopAttach = ((uint)(6)); - w186.BottomAttach = ((uint)(7)); - w186.LeftAttach = ((uint)(3)); - w186.RightAttach = ((uint)(4)); - w186.XOptions = ((global::Gtk.AttachOptions)(4)); - w186.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); + w170.TopAttach = ((uint)(6)); + w170.BottomAttach = ((uint)(7)); + w170.LeftAttach = ((uint)(3)); + w170.RightAttach = ((uint)(4)); + w170.XOptions = ((global::Gtk.AttachOptions)(4)); + w170.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 w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); - w187.TopAttach = ((uint)(6)); - w187.BottomAttach = ((uint)(7)); - w187.LeftAttach = ((uint)(4)); - w187.RightAttach = ((uint)(5)); - w187.XOptions = ((global::Gtk.AttachOptions)(4)); - w187.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); + w171.TopAttach = ((uint)(6)); + w171.BottomAttach = ((uint)(7)); + w171.LeftAttach = ((uint)(4)); + w171.RightAttach = ((uint)(5)); + w171.XOptions = ((global::Gtk.AttachOptions)(4)); + w171.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 w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); - w188.TopAttach = ((uint)(6)); - w188.BottomAttach = ((uint)(7)); - w188.LeftAttach = ((uint)(5)); - w188.RightAttach = ((uint)(6)); - w188.XOptions = ((global::Gtk.AttachOptions)(4)); - w188.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + w172.TopAttach = ((uint)(6)); + w172.BottomAttach = ((uint)(7)); + w172.LeftAttach = ((uint)(5)); + w172.RightAttach = ((uint)(6)); + w172.XOptions = ((global::Gtk.AttachOptions)(4)); + w172.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 w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); - w189.TopAttach = ((uint)(2)); - w189.BottomAttach = ((uint)(3)); - w189.LeftAttach = ((uint)(3)); - w189.RightAttach = ((uint)(4)); - w189.XOptions = ((global::Gtk.AttachOptions)(4)); - w189.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); + w173.TopAttach = ((uint)(2)); + w173.BottomAttach = ((uint)(3)); + w173.LeftAttach = ((uint)(3)); + w173.RightAttach = ((uint)(4)); + w173.XOptions = ((global::Gtk.AttachOptions)(4)); + w173.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 w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); - w190.TopAttach = ((uint)(2)); - w190.BottomAttach = ((uint)(3)); - w190.LeftAttach = ((uint)(4)); - w190.RightAttach = ((uint)(5)); - w190.XOptions = ((global::Gtk.AttachOptions)(4)); - w190.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); + w174.TopAttach = ((uint)(2)); + w174.BottomAttach = ((uint)(3)); + w174.LeftAttach = ((uint)(4)); + w174.RightAttach = ((uint)(5)); + w174.XOptions = ((global::Gtk.AttachOptions)(4)); + w174.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 w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); - w191.TopAttach = ((uint)(2)); - w191.BottomAttach = ((uint)(3)); - w191.LeftAttach = ((uint)(5)); - w191.RightAttach = ((uint)(6)); - w191.XOptions = ((global::Gtk.AttachOptions)(4)); - w191.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + w175.TopAttach = ((uint)(2)); + w175.BottomAttach = ((uint)(3)); + 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.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 w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); - w192.TopAttach = ((uint)(3)); - w192.BottomAttach = ((uint)(4)); - w192.LeftAttach = ((uint)(1)); - w192.RightAttach = ((uint)(2)); - w192.XOptions = ((global::Gtk.AttachOptions)(4)); - w192.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); + w176.TopAttach = ((uint)(3)); + w176.BottomAttach = ((uint)(4)); + 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.imgG7 = new global::Gtk.Image(); this.imgG7.Name = "imgG7"; this.tbUI.Add(this.imgG7); - global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); - w193.TopAttach = ((uint)(3)); - w193.BottomAttach = ((uint)(4)); - w193.LeftAttach = ((uint)(2)); - w193.RightAttach = ((uint)(3)); - w193.XOptions = ((global::Gtk.AttachOptions)(4)); - w193.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); + w177.TopAttach = ((uint)(3)); + w177.BottomAttach = ((uint)(4)); + 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.imgG8 = new global::Gtk.Image(); this.imgG8.Name = "imgG8"; this.tbUI.Add(this.imgG8); - global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); - w194.TopAttach = ((uint)(3)); - w194.BottomAttach = ((uint)(4)); - w194.LeftAttach = ((uint)(3)); - w194.RightAttach = ((uint)(4)); - w194.XOptions = ((global::Gtk.AttachOptions)(4)); - w194.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); + w178.TopAttach = ((uint)(3)); + w178.BottomAttach = ((uint)(4)); + 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.imgG9 = new global::Gtk.Image(); this.imgG9.Name = "imgG9"; this.tbUI.Add(this.imgG9); - global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); - w195.TopAttach = ((uint)(3)); - w195.BottomAttach = ((uint)(4)); - w195.LeftAttach = ((uint)(4)); - w195.RightAttach = ((uint)(5)); - w195.XOptions = ((global::Gtk.AttachOptions)(4)); - w195.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + w179.TopAttach = ((uint)(3)); + w179.BottomAttach = ((uint)(4)); + 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.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 w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); - w196.TopAttach = ((uint)(10)); - w196.BottomAttach = ((uint)(11)); - w196.LeftAttach = ((uint)(1)); - w196.RightAttach = ((uint)(2)); - w196.XOptions = ((global::Gtk.AttachOptions)(4)); - w196.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w180.TopAttach = ((uint)(10)); + w180.BottomAttach = ((uint)(11)); + w180.LeftAttach = ((uint)(1)); + w180.RightAttach = ((uint)(2)); + w180.XOptions = ((global::Gtk.AttachOptions)(4)); + w180.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 w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); - w197.TopAttach = ((uint)(11)); - w197.BottomAttach = ((uint)(12)); - w197.LeftAttach = ((uint)(5)); - w197.RightAttach = ((uint)(6)); - w197.XOptions = ((global::Gtk.AttachOptions)(4)); - w197.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); + w181.TopAttach = ((uint)(11)); + w181.BottomAttach = ((uint)(12)); + w181.LeftAttach = ((uint)(5)); + w181.RightAttach = ((uint)(6)); + w181.XOptions = ((global::Gtk.AttachOptions)(4)); + w181.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 w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); - w198.TopAttach = ((uint)(12)); - w198.BottomAttach = ((uint)(13)); - w198.LeftAttach = ((uint)(1)); - w198.RightAttach = ((uint)(2)); - w198.XOptions = ((global::Gtk.AttachOptions)(4)); - w198.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); + w182.TopAttach = ((uint)(12)); + w182.BottomAttach = ((uint)(13)); + w182.LeftAttach = ((uint)(1)); + w182.RightAttach = ((uint)(2)); + w182.XOptions = ((global::Gtk.AttachOptions)(4)); + w182.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 w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); - w199.TopAttach = ((uint)(12)); - w199.BottomAttach = ((uint)(13)); - w199.LeftAttach = ((uint)(2)); - w199.RightAttach = ((uint)(3)); - w199.XOptions = ((global::Gtk.AttachOptions)(4)); - w199.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); + w183.TopAttach = ((uint)(12)); + w183.BottomAttach = ((uint)(13)); + w183.LeftAttach = ((uint)(2)); + w183.RightAttach = ((uint)(3)); + w183.XOptions = ((global::Gtk.AttachOptions)(4)); + w183.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 w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); - w200.TopAttach = ((uint)(12)); - w200.BottomAttach = ((uint)(13)); - w200.LeftAttach = ((uint)(3)); - w200.RightAttach = ((uint)(4)); - w200.XOptions = ((global::Gtk.AttachOptions)(4)); - w200.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); + w184.TopAttach = ((uint)(12)); + w184.BottomAttach = ((uint)(13)); + w184.LeftAttach = ((uint)(3)); + w184.RightAttach = ((uint)(4)); + w184.XOptions = ((global::Gtk.AttachOptions)(4)); + w184.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 w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); - w201.TopAttach = ((uint)(12)); - w201.BottomAttach = ((uint)(13)); - w201.LeftAttach = ((uint)(4)); - w201.RightAttach = ((uint)(5)); - w201.XOptions = ((global::Gtk.AttachOptions)(4)); - w201.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); + w185.TopAttach = ((uint)(12)); + w185.BottomAttach = ((uint)(13)); + w185.LeftAttach = ((uint)(4)); + w185.RightAttach = ((uint)(5)); + w185.XOptions = ((global::Gtk.AttachOptions)(4)); + w185.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 w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); - w202.TopAttach = ((uint)(12)); - w202.BottomAttach = ((uint)(13)); - w202.LeftAttach = ((uint)(5)); - w202.RightAttach = ((uint)(6)); - w202.XOptions = ((global::Gtk.AttachOptions)(4)); - w202.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); + w186.TopAttach = ((uint)(12)); + w186.BottomAttach = ((uint)(13)); + 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.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 w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); - w203.TopAttach = ((uint)(13)); - w203.BottomAttach = ((uint)(14)); - w203.LeftAttach = ((uint)(1)); - w203.RightAttach = ((uint)(2)); - w203.XOptions = ((global::Gtk.AttachOptions)(4)); - w203.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); + w187.TopAttach = ((uint)(13)); + w187.BottomAttach = ((uint)(14)); + 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.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 w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); - w204.TopAttach = ((uint)(13)); - w204.BottomAttach = ((uint)(14)); - w204.LeftAttach = ((uint)(2)); - w204.RightAttach = ((uint)(3)); - w204.XOptions = ((global::Gtk.AttachOptions)(4)); - w204.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); + w188.TopAttach = ((uint)(13)); + w188.BottomAttach = ((uint)(14)); + 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.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 w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); - w205.TopAttach = ((uint)(13)); - w205.BottomAttach = ((uint)(14)); - w205.LeftAttach = ((uint)(3)); - w205.RightAttach = ((uint)(4)); - w205.XOptions = ((global::Gtk.AttachOptions)(4)); - w205.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); + w189.TopAttach = ((uint)(13)); + w189.BottomAttach = ((uint)(14)); + 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.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 w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); - w206.TopAttach = ((uint)(13)); - w206.BottomAttach = ((uint)(14)); - w206.LeftAttach = ((uint)(4)); - w206.RightAttach = ((uint)(5)); - w206.XOptions = ((global::Gtk.AttachOptions)(4)); - w206.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); + w190.TopAttach = ((uint)(13)); + w190.BottomAttach = ((uint)(14)); + 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.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 w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); - w207.TopAttach = ((uint)(10)); - w207.BottomAttach = ((uint)(11)); - w207.LeftAttach = ((uint)(2)); - w207.RightAttach = ((uint)(3)); - w207.XOptions = ((global::Gtk.AttachOptions)(4)); - w207.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w191.TopAttach = ((uint)(10)); + w191.BottomAttach = ((uint)(11)); + w191.LeftAttach = ((uint)(2)); + w191.RightAttach = ((uint)(3)); + w191.XOptions = ((global::Gtk.AttachOptions)(4)); + w191.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 w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); - w208.TopAttach = ((uint)(13)); - w208.BottomAttach = ((uint)(14)); - w208.LeftAttach = ((uint)(5)); - w208.RightAttach = ((uint)(6)); - w208.XOptions = ((global::Gtk.AttachOptions)(4)); - w208.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); + w192.TopAttach = ((uint)(13)); + w192.BottomAttach = ((uint)(14)); + w192.LeftAttach = ((uint)(5)); + w192.RightAttach = ((uint)(6)); + w192.XOptions = ((global::Gtk.AttachOptions)(4)); + w192.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 w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); - w209.TopAttach = ((uint)(14)); - w209.BottomAttach = ((uint)(15)); - w209.LeftAttach = ((uint)(1)); - w209.RightAttach = ((uint)(2)); - w209.XOptions = ((global::Gtk.AttachOptions)(4)); - w209.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); + w193.TopAttach = ((uint)(14)); + w193.BottomAttach = ((uint)(15)); + w193.LeftAttach = ((uint)(1)); + w193.RightAttach = ((uint)(2)); + w193.XOptions = ((global::Gtk.AttachOptions)(4)); + w193.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 w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); - w210.TopAttach = ((uint)(14)); - w210.BottomAttach = ((uint)(15)); - w210.LeftAttach = ((uint)(2)); - w210.RightAttach = ((uint)(3)); - w210.XOptions = ((global::Gtk.AttachOptions)(4)); - w210.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); + w194.TopAttach = ((uint)(14)); + w194.BottomAttach = ((uint)(15)); + w194.LeftAttach = ((uint)(2)); + w194.RightAttach = ((uint)(3)); + w194.XOptions = ((global::Gtk.AttachOptions)(4)); + w194.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 w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); - w211.TopAttach = ((uint)(14)); - w211.BottomAttach = ((uint)(15)); - w211.LeftAttach = ((uint)(3)); - w211.RightAttach = ((uint)(4)); - w211.XOptions = ((global::Gtk.AttachOptions)(4)); - w211.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); + w195.TopAttach = ((uint)(14)); + w195.BottomAttach = ((uint)(15)); + w195.LeftAttach = ((uint)(3)); + w195.RightAttach = ((uint)(4)); + w195.XOptions = ((global::Gtk.AttachOptions)(4)); + w195.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 w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); - w212.TopAttach = ((uint)(14)); - w212.BottomAttach = ((uint)(15)); - w212.LeftAttach = ((uint)(4)); - w212.RightAttach = ((uint)(5)); - w212.XOptions = ((global::Gtk.AttachOptions)(4)); - w212.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); + w196.TopAttach = ((uint)(14)); + w196.BottomAttach = ((uint)(15)); + w196.LeftAttach = ((uint)(4)); + w196.RightAttach = ((uint)(5)); + w196.XOptions = ((global::Gtk.AttachOptions)(4)); + w196.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 w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); - w213.TopAttach = ((uint)(14)); - w213.BottomAttach = ((uint)(15)); - w213.LeftAttach = ((uint)(5)); - w213.RightAttach = ((uint)(6)); - w213.XOptions = ((global::Gtk.AttachOptions)(4)); - w213.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); + w197.TopAttach = ((uint)(14)); + w197.BottomAttach = ((uint)(15)); + w197.LeftAttach = ((uint)(5)); + w197.RightAttach = ((uint)(6)); + w197.XOptions = ((global::Gtk.AttachOptions)(4)); + w197.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 w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); - w214.TopAttach = ((uint)(10)); - w214.BottomAttach = ((uint)(11)); - w214.LeftAttach = ((uint)(3)); - w214.RightAttach = ((uint)(4)); - w214.XOptions = ((global::Gtk.AttachOptions)(4)); - w214.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w198.TopAttach = ((uint)(10)); + w198.BottomAttach = ((uint)(11)); + w198.LeftAttach = ((uint)(3)); + w198.RightAttach = ((uint)(4)); + w198.XOptions = ((global::Gtk.AttachOptions)(4)); + w198.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 w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); - w215.TopAttach = ((uint)(10)); - w215.BottomAttach = ((uint)(11)); - w215.LeftAttach = ((uint)(4)); - w215.RightAttach = ((uint)(5)); - w215.XOptions = ((global::Gtk.AttachOptions)(4)); - w215.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w199.TopAttach = ((uint)(10)); + w199.BottomAttach = ((uint)(11)); + w199.LeftAttach = ((uint)(4)); + w199.RightAttach = ((uint)(5)); + w199.XOptions = ((global::Gtk.AttachOptions)(4)); + w199.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 w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); - w216.TopAttach = ((uint)(10)); - w216.BottomAttach = ((uint)(11)); - w216.LeftAttach = ((uint)(5)); - w216.RightAttach = ((uint)(6)); - w216.XOptions = ((global::Gtk.AttachOptions)(4)); - w216.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w200.TopAttach = ((uint)(10)); + w200.BottomAttach = ((uint)(11)); + w200.LeftAttach = ((uint)(5)); + w200.RightAttach = ((uint)(6)); + w200.XOptions = ((global::Gtk.AttachOptions)(4)); + w200.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 w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); - w217.TopAttach = ((uint)(11)); - w217.BottomAttach = ((uint)(12)); - w217.LeftAttach = ((uint)(1)); - w217.RightAttach = ((uint)(2)); - w217.XOptions = ((global::Gtk.AttachOptions)(4)); - w217.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); + w201.TopAttach = ((uint)(11)); + w201.BottomAttach = ((uint)(12)); + w201.LeftAttach = ((uint)(1)); + w201.RightAttach = ((uint)(2)); + w201.XOptions = ((global::Gtk.AttachOptions)(4)); + w201.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 w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); - w218.TopAttach = ((uint)(11)); - w218.BottomAttach = ((uint)(12)); - w218.LeftAttach = ((uint)(2)); - w218.RightAttach = ((uint)(3)); - w218.XOptions = ((global::Gtk.AttachOptions)(4)); - w218.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); + w202.TopAttach = ((uint)(11)); + w202.BottomAttach = ((uint)(12)); + w202.LeftAttach = ((uint)(2)); + w202.RightAttach = ((uint)(3)); + w202.XOptions = ((global::Gtk.AttachOptions)(4)); + w202.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 w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); - w219.TopAttach = ((uint)(11)); - w219.BottomAttach = ((uint)(12)); - w219.LeftAttach = ((uint)(3)); - w219.RightAttach = ((uint)(4)); - w219.XOptions = ((global::Gtk.AttachOptions)(4)); - w219.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); + w203.TopAttach = ((uint)(11)); + w203.BottomAttach = ((uint)(12)); + w203.LeftAttach = ((uint)(3)); + w203.RightAttach = ((uint)(4)); + w203.XOptions = ((global::Gtk.AttachOptions)(4)); + w203.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 w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); - w220.TopAttach = ((uint)(11)); - w220.BottomAttach = ((uint)(12)); - w220.LeftAttach = ((uint)(4)); - w220.RightAttach = ((uint)(5)); - w220.XOptions = ((global::Gtk.AttachOptions)(4)); - w220.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); + w204.TopAttach = ((uint)(11)); + w204.BottomAttach = ((uint)(12)); + w204.LeftAttach = ((uint)(4)); + w204.RightAttach = ((uint)(5)); + w204.XOptions = ((global::Gtk.AttachOptions)(4)); + w204.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 w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); + w205.TopAttach = ((uint)(14)); + w205.BottomAttach = ((uint)(15)); + w205.LeftAttach = ((uint)(17)); + w205.RightAttach = ((uint)(18)); + w205.XOptions = ((global::Gtk.AttachOptions)(4)); + w205.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 w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); - w221.TopAttach = ((uint)(7)); - w221.BottomAttach = ((uint)(8)); - w221.LeftAttach = ((uint)(8)); - w221.RightAttach = ((uint)(9)); - w221.XOptions = ((global::Gtk.AttachOptions)(4)); - w221.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); + w206.TopAttach = ((uint)(7)); + w206.BottomAttach = ((uint)(8)); + 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.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 w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); - w222.TopAttach = ((uint)(8)); - w222.BottomAttach = ((uint)(9)); - w222.LeftAttach = ((uint)(12)); - w222.RightAttach = ((uint)(13)); - w222.XOptions = ((global::Gtk.AttachOptions)(4)); - w222.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); + w207.TopAttach = ((uint)(8)); + w207.BottomAttach = ((uint)(9)); + w207.LeftAttach = ((uint)(12)); + w207.RightAttach = ((uint)(13)); + w207.XOptions = ((global::Gtk.AttachOptions)(4)); + w207.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 w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); - w223.TopAttach = ((uint)(7)); - w223.BottomAttach = ((uint)(8)); - w223.LeftAttach = ((uint)(9)); - w223.RightAttach = ((uint)(10)); - w223.XOptions = ((global::Gtk.AttachOptions)(4)); - w223.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); + w208.TopAttach = ((uint)(7)); + w208.BottomAttach = ((uint)(8)); + w208.LeftAttach = ((uint)(9)); + w208.RightAttach = ((uint)(10)); + w208.XOptions = ((global::Gtk.AttachOptions)(4)); + w208.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 w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); - w224.TopAttach = ((uint)(7)); - w224.BottomAttach = ((uint)(8)); - w224.LeftAttach = ((uint)(10)); - w224.RightAttach = ((uint)(11)); - w224.XOptions = ((global::Gtk.AttachOptions)(4)); - w224.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); + w209.TopAttach = ((uint)(7)); + w209.BottomAttach = ((uint)(8)); + w209.LeftAttach = ((uint)(10)); + w209.RightAttach = ((uint)(11)); + w209.XOptions = ((global::Gtk.AttachOptions)(4)); + w209.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 w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); - w225.TopAttach = ((uint)(7)); - w225.BottomAttach = ((uint)(8)); - w225.LeftAttach = ((uint)(11)); - w225.RightAttach = ((uint)(12)); - w225.XOptions = ((global::Gtk.AttachOptions)(4)); - w225.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); + w210.TopAttach = ((uint)(7)); + w210.BottomAttach = ((uint)(8)); + w210.LeftAttach = ((uint)(11)); + w210.RightAttach = ((uint)(12)); + w210.XOptions = ((global::Gtk.AttachOptions)(4)); + w210.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 w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); - w226.TopAttach = ((uint)(7)); - w226.BottomAttach = ((uint)(8)); - w226.LeftAttach = ((uint)(12)); - w226.RightAttach = ((uint)(13)); - w226.XOptions = ((global::Gtk.AttachOptions)(4)); - w226.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); + w211.TopAttach = ((uint)(7)); + w211.BottomAttach = ((uint)(8)); + w211.LeftAttach = ((uint)(12)); + w211.RightAttach = ((uint)(13)); + w211.XOptions = ((global::Gtk.AttachOptions)(4)); + w211.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 w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); - w227.TopAttach = ((uint)(8)); - w227.BottomAttach = ((uint)(9)); - w227.LeftAttach = ((uint)(8)); - w227.RightAttach = ((uint)(9)); - w227.XOptions = ((global::Gtk.AttachOptions)(4)); - w227.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); + w212.TopAttach = ((uint)(8)); + w212.BottomAttach = ((uint)(9)); + w212.LeftAttach = ((uint)(8)); + w212.RightAttach = ((uint)(9)); + w212.XOptions = ((global::Gtk.AttachOptions)(4)); + w212.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 w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); - w228.TopAttach = ((uint)(8)); - w228.BottomAttach = ((uint)(9)); - w228.LeftAttach = ((uint)(9)); - w228.RightAttach = ((uint)(10)); - w228.XOptions = ((global::Gtk.AttachOptions)(4)); - w228.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); + w213.TopAttach = ((uint)(8)); + w213.BottomAttach = ((uint)(9)); + w213.LeftAttach = ((uint)(9)); + w213.RightAttach = ((uint)(10)); + w213.XOptions = ((global::Gtk.AttachOptions)(4)); + w213.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 w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); - w229.TopAttach = ((uint)(8)); - w229.BottomAttach = ((uint)(9)); - w229.LeftAttach = ((uint)(10)); - w229.RightAttach = ((uint)(11)); - w229.XOptions = ((global::Gtk.AttachOptions)(4)); - w229.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); + w214.TopAttach = ((uint)(8)); + w214.BottomAttach = ((uint)(9)); + w214.LeftAttach = ((uint)(10)); + w214.RightAttach = ((uint)(11)); + w214.XOptions = ((global::Gtk.AttachOptions)(4)); + w214.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 w230 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); - w230.TopAttach = ((uint)(8)); - w230.BottomAttach = ((uint)(9)); - w230.LeftAttach = ((uint)(11)); - w230.RightAttach = ((uint)(12)); - w230.XOptions = ((global::Gtk.AttachOptions)(4)); - w230.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); + w215.TopAttach = ((uint)(8)); + w215.BottomAttach = ((uint)(9)); + w215.LeftAttach = ((uint)(11)); + w215.RightAttach = ((uint)(12)); + w215.XOptions = ((global::Gtk.AttachOptions)(4)); + w215.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 = global::Mono.Unix.Catalog.GetString("Accessories"); this.tbUI.Add(this.lblAccessories); - global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); - w231.TopAttach = ((uint)(7)); - w231.BottomAttach = ((uint)(8)); - w231.LeftAttach = ((uint)(15)); - w231.RightAttach = ((uint)(20)); - w231.XOptions = ((global::Gtk.AttachOptions)(4)); - w231.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); + w216.TopAttach = ((uint)(7)); + w216.BottomAttach = ((uint)(8)); + w216.LeftAttach = ((uint)(15)); + w216.RightAttach = ((uint)(20)); + w216.XOptions = ((global::Gtk.AttachOptions)(4)); + w216.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 w232 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); - w232.TopAttach = ((uint)(3)); - w232.BottomAttach = ((uint)(4)); - w232.LeftAttach = ((uint)(6)); - w232.RightAttach = ((uint)(7)); - w232.XOptions = ((global::Gtk.AttachOptions)(4)); - w232.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w217.TopAttach = ((uint)(3)); + w217.BottomAttach = ((uint)(4)); + w217.LeftAttach = ((uint)(6)); + w217.RightAttach = ((uint)(7)); + w217.XOptions = ((global::Gtk.AttachOptions)(4)); + w217.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 w233 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); - w233.TopAttach = ((uint)(6)); - w233.BottomAttach = ((uint)(7)); - w233.LeftAttach = ((uint)(10)); - w233.RightAttach = ((uint)(11)); - w233.XOptions = ((global::Gtk.AttachOptions)(4)); - w233.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w218.TopAttach = ((uint)(6)); + w218.BottomAttach = ((uint)(7)); + w218.LeftAttach = ((uint)(10)); + w218.RightAttach = ((uint)(11)); + w218.XOptions = ((global::Gtk.AttachOptions)(4)); + w218.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 w234 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); - w234.TopAttach = ((uint)(3)); - w234.BottomAttach = ((uint)(4)); - w234.LeftAttach = ((uint)(14)); - w234.RightAttach = ((uint)(15)); - w234.XOptions = ((global::Gtk.AttachOptions)(4)); - w234.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w219.TopAttach = ((uint)(3)); + w219.BottomAttach = ((uint)(4)); + w219.LeftAttach = ((uint)(14)); + w219.RightAttach = ((uint)(15)); + w219.XOptions = ((global::Gtk.AttachOptions)(4)); + w219.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 w235 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); - w235.TopAttach = ((uint)(3)); - w235.BottomAttach = ((uint)(4)); - w235.LeftAttach = ((uint)(20)); - w235.RightAttach = ((uint)(21)); - w235.XOptions = ((global::Gtk.AttachOptions)(4)); - w235.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w220.TopAttach = ((uint)(3)); + w220.BottomAttach = ((uint)(4)); + w220.LeftAttach = ((uint)(20)); + w220.RightAttach = ((uint)(21)); + w220.XOptions = ((global::Gtk.AttachOptions)(4)); + w220.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 w236 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); - w236.TopAttach = ((uint)(3)); - w236.BottomAttach = ((uint)(4)); - w236.XOptions = ((global::Gtk.AttachOptions)(4)); - w236.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w221.TopAttach = ((uint)(3)); + w221.BottomAttach = ((uint)(4)); + w221.XOptions = ((global::Gtk.AttachOptions)(4)); + w221.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 w237 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); - w237.TopAttach = ((uint)(16)); - w237.BottomAttach = ((uint)(17)); - w237.LeftAttach = ((uint)(10)); - w237.RightAttach = ((uint)(11)); - w237.XOptions = ((global::Gtk.AttachOptions)(4)); - w237.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); + w222.TopAttach = ((uint)(16)); + w222.BottomAttach = ((uint)(17)); + w222.LeftAttach = ((uint)(10)); + w222.RightAttach = ((uint)(11)); + w222.XOptions = ((global::Gtk.AttachOptions)(4)); + w222.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 w238 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank9])); - w238.LeftAttach = ((uint)(10)); - w238.RightAttach = ((uint)(11)); - w238.XOptions = ((global::Gtk.AttachOptions)(4)); - w238.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank9])); + w223.LeftAttach = ((uint)(10)); + w223.RightAttach = ((uint)(11)); + w223.XOptions = ((global::Gtk.AttachOptions)(4)); + w223.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblEventLog = new global::Gtk.Label(); this.lblEventLog.WidthRequest = 50; @@ -2776,38 +2641,38 @@ namespace Mundus.Views.Windows this.lblEventLog.Name = "lblEventLog"; this.lblEventLog.LabelProp = global::Mono.Unix.Catalog.GetString("Event Log"); this.tbUI.Add(this.lblEventLog); - global::Gtk.Table.TableChild w239 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); - w239.TopAttach = ((uint)(11)); - w239.BottomAttach = ((uint)(12)); - w239.LeftAttach = ((uint)(8)); - w239.RightAttach = ((uint)(13)); - w239.XOptions = ((global::Gtk.AttachOptions)(4)); - w239.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); + w224.TopAttach = ((uint)(11)); + w224.BottomAttach = ((uint)(12)); + w224.LeftAttach = ((uint)(8)); + w224.RightAttach = ((uint)(13)); + w224.XOptions = ((global::Gtk.AttachOptions)(4)); + w224.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 = global::Mono.Unix.Catalog.GetString("Gear"); this.tbUI.Add(this.lblGear); - global::Gtk.Table.TableChild w240 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); - w240.TopAttach = ((uint)(10)); - w240.BottomAttach = ((uint)(11)); - w240.LeftAttach = ((uint)(15)); - w240.RightAttach = ((uint)(20)); - w240.XOptions = ((global::Gtk.AttachOptions)(4)); - w240.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); + w225.TopAttach = ((uint)(10)); + w225.BottomAttach = ((uint)(11)); + w225.LeftAttach = ((uint)(15)); + w225.RightAttach = ((uint)(20)); + w225.XOptions = ((global::Gtk.AttachOptions)(4)); + w225.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblGroundLayer = new global::Gtk.Label(); this.lblGroundLayer.Name = "lblGroundLayer"; this.lblGroundLayer.LabelProp = global::Mono.Unix.Catalog.GetString("Ground Layer"); this.tbUI.Add(this.lblGroundLayer); - global::Gtk.Table.TableChild w241 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); - w241.TopAttach = ((uint)(1)); - w241.BottomAttach = ((uint)(2)); - w241.LeftAttach = ((uint)(1)); - w241.RightAttach = ((uint)(6)); - w241.XOptions = ((global::Gtk.AttachOptions)(4)); - w241.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); + w226.TopAttach = ((uint)(1)); + w226.BottomAttach = ((uint)(2)); + w226.LeftAttach = ((uint)(1)); + w226.RightAttach = ((uint)(6)); + w226.XOptions = ((global::Gtk.AttachOptions)(4)); + w226.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblHotbar = new global::Gtk.Label(); this.lblHotbar.WidthRequest = 50; @@ -2815,96 +2680,98 @@ namespace Mundus.Views.Windows this.lblHotbar.Name = "lblHotbar"; this.lblHotbar.LabelProp = global::Mono.Unix.Catalog.GetString("Hotbar"); this.tbUI.Add(this.lblHotbar); - global::Gtk.Table.TableChild w242 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); - w242.TopAttach = ((uint)(9)); - w242.BottomAttach = ((uint)(10)); - w242.LeftAttach = ((uint)(8)); - w242.RightAttach = ((uint)(13)); - w242.XOptions = ((global::Gtk.AttachOptions)(4)); - w242.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); + w227.TopAttach = ((uint)(9)); + w227.BottomAttach = ((uint)(10)); + w227.LeftAttach = ((uint)(8)); + w227.RightAttach = ((uint)(13)); + w227.XOptions = ((global::Gtk.AttachOptions)(4)); + w227.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 w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); + w228.TopAttach = ((uint)(15)); + w228.BottomAttach = ((uint)(16)); + w228.LeftAttach = ((uint)(15)); + w228.RightAttach = ((uint)(20)); + w228.XOptions = ((global::Gtk.AttachOptions)(4)); + w228.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblItemLayer = new global::Gtk.Label(); this.lblItemLayer.Name = "lblItemLayer"; this.lblItemLayer.LabelProp = global::Mono.Unix.Catalog.GetString("Item Layer"); this.tbUI.Add(this.lblItemLayer); - global::Gtk.Table.TableChild w243 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); - w243.TopAttach = ((uint)(9)); - w243.BottomAttach = ((uint)(10)); - w243.LeftAttach = ((uint)(1)); - w243.RightAttach = ((uint)(6)); - w243.XOptions = ((global::Gtk.AttachOptions)(4)); - w243.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblItemsOnGround = new global::Gtk.Label(); - this.lblItemsOnGround.HeightRequest = 50; - this.lblItemsOnGround.Name = "lblItemsOnGround"; - this.lblItemsOnGround.LabelProp = global::Mono.Unix.Catalog.GetString("Items on the ground"); - this.tbUI.Add(this.lblItemsOnGround); - global::Gtk.Table.TableChild w244 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemsOnGround])); - w244.TopAttach = ((uint)(13)); - w244.BottomAttach = ((uint)(14)); - w244.LeftAttach = ((uint)(15)); - w244.RightAttach = ((uint)(20)); - w244.XOptions = ((global::Gtk.AttachOptions)(4)); - w244.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); + w229.TopAttach = ((uint)(9)); + w229.BottomAttach = ((uint)(10)); + w229.LeftAttach = ((uint)(1)); + w229.RightAttach = ((uint)(6)); + w229.XOptions = ((global::Gtk.AttachOptions)(4)); + w229.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog1 = new global::Gtk.Label(); this.lblLog1.HeightRequest = 50; this.lblLog1.Name = "lblLog1"; this.lblLog1.LabelProp = global::Mono.Unix.Catalog.GetString("label6"); this.tbUI.Add(this.lblLog1); - global::Gtk.Table.TableChild w245 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); - w245.TopAttach = ((uint)(12)); - w245.BottomAttach = ((uint)(13)); - w245.LeftAttach = ((uint)(8)); - w245.RightAttach = ((uint)(13)); - w245.XOptions = ((global::Gtk.AttachOptions)(4)); - w245.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w230 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); + w230.TopAttach = ((uint)(12)); + w230.BottomAttach = ((uint)(13)); + 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.lblLog2 = new global::Gtk.Label(); this.lblLog2.HeightRequest = 50; this.lblLog2.Name = "lblLog2"; this.lblLog2.LabelProp = global::Mono.Unix.Catalog.GetString("label7"); this.tbUI.Add(this.lblLog2); - global::Gtk.Table.TableChild w246 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); - w246.TopAttach = ((uint)(13)); - w246.BottomAttach = ((uint)(14)); - w246.LeftAttach = ((uint)(8)); - w246.RightAttach = ((uint)(13)); - w246.XOptions = ((global::Gtk.AttachOptions)(4)); - w246.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); + w231.TopAttach = ((uint)(13)); + w231.BottomAttach = ((uint)(14)); + 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.lblLog3 = new global::Gtk.Label(); this.lblLog3.HeightRequest = 50; this.lblLog3.Name = "lblLog3"; this.lblLog3.LabelProp = global::Mono.Unix.Catalog.GetString("label7"); this.tbUI.Add(this.lblLog3); - global::Gtk.Table.TableChild w247 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); - w247.TopAttach = ((uint)(14)); - w247.BottomAttach = ((uint)(15)); - w247.LeftAttach = ((uint)(8)); - w247.RightAttach = ((uint)(13)); - w247.XOptions = ((global::Gtk.AttachOptions)(4)); - w247.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w232 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); + w232.TopAttach = ((uint)(14)); + w232.BottomAttach = ((uint)(15)); + w232.LeftAttach = ((uint)(8)); + w232.RightAttach = ((uint)(13)); + w232.XOptions = ((global::Gtk.AttachOptions)(4)); + w232.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog4 = new global::Gtk.Label(); this.lblLog4.HeightRequest = 50; this.lblLog4.Name = "lblLog4"; this.lblLog4.LabelProp = global::Mono.Unix.Catalog.GetString("label7"); this.tbUI.Add(this.lblLog4); - global::Gtk.Table.TableChild w248 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); - w248.TopAttach = ((uint)(15)); - w248.BottomAttach = ((uint)(16)); - w248.LeftAttach = ((uint)(8)); - w248.RightAttach = ((uint)(13)); - w248.XOptions = ((global::Gtk.AttachOptions)(4)); - w248.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w233 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); + w233.TopAttach = ((uint)(15)); + w233.BottomAttach = ((uint)(16)); + w233.LeftAttach = ((uint)(8)); + w233.RightAttach = ((uint)(13)); + w233.XOptions = ((global::Gtk.AttachOptions)(4)); + w233.YOptions = ((global::Gtk.AttachOptions)(4)); this.Add(this.tbUI); if ((this.Child != null)) { this.Child.ShowAll(); } - this.DefaultWidth = 905; + this.DefaultWidth = 890; this.DefaultHeight = 770; this.Show(); this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent); diff --git a/Mundus/gtk-gui/generated.cs b/Mundus/gtk-gui/generated.cs index 59f6ad5..79633c6 100644 --- a/Mundus/gtk-gui/generated.cs +++ b/Mundus/gtk-gui/generated.cs @@ -24,6 +24,12 @@ namespace Stetic w1.Add("blank_hand", w6); global::Gtk.IconSet w7 = new global::Gtk.IconSet(global::Gdk.Pixbuf.LoadFromResource("Mundus.Icons.Blanks.blank_gear.png")); w1.Add("blank_gear", w7); + global::Gtk.IconSet w8 = new global::Gtk.IconSet(global::Gdk.Pixbuf.LoadFromResource("Mundus.Icons.Materials.land_rock.png")); + w1.Add("land_rock", w8); + global::Gtk.IconSet w9 = new global::Gtk.IconSet(global::Gdk.Pixbuf.LoadFromResource("Mundus.Icons.Land.Items.tree.png")); + w1.Add("tree", w9); + global::Gtk.IconSet w10 = new global::Gtk.IconSet(global::Gdk.Pixbuf.LoadFromResource("Mundus.Icons.Land.Ground.water.png")); + w1.Add("water", w10); w1.AddDefault(); } } diff --git a/Mundus/gtk-gui/gui.stetic b/Mundus/gtk-gui/gui.stetic index 2ad7a06..874934e 100644 --- a/Mundus/gtk-gui/gui.stetic +++ b/Mundus/gtk-gui/gui.stetic @@ -37,6 +37,21 @@ resource:Mundus.Icons.Blanks.blank_gear.png + + + resource:Mundus.Icons.Materials.land_rock.png + + + + + resource:Mundus.Icons.Land.Items.tree.png + + + + + resource:Mundus.Icons.Land.Ground.water.png + + @@ -754,7 +769,7 @@ - + Mundus (Small Window) CenterOnParent @@ -1201,6 +1216,27 @@ + + + + + + + + + + + + + + + + + + + + + @@ -2536,8 +2572,8 @@ - 14 - 15 + 12 + 13 15 16 True @@ -2551,32 +2587,6 @@ False - - - - 50 - 50 - True - TextAndIcon - - True - - - 15 - 16 - 19 - 20 - True - Fill - Fill - False - True - False - False - True - False - - @@ -2589,138 +2599,8 @@ - 14 - 15 - 16 - 17 - True - Fill - Fill - False - True - False - False - True - False - - - - - - 50 - 50 - True - TextAndIcon - - True - - - 14 - 15 - 17 - 18 - True - Fill - Fill - False - True - False - False - True - False - - - - - - 50 - 50 - True - TextAndIcon - - True - - - 14 - 15 - 18 - 19 - True - Fill - Fill - False - True - False - False - True - False - - - - - - 50 - 50 - True - TextAndIcon - - True - - - 14 - 15 - 19 - 20 - True - Fill - Fill - False - True - False - False - True - False - - - - - - 50 - 50 - True - TextAndIcon - - True - - - 15 - 16 - 15 - 16 - True - Fill - Fill - False - True - False - False - True - False - - - - - - 50 - 50 - True - TextAndIcon - - True - - - 15 - 16 + 12 + 13 16 17 True @@ -2734,58 +2614,6 @@ False - - - - 50 - 50 - True - TextAndIcon - - True - - - 15 - 16 - 17 - 18 - True - Fill - Fill - False - True - False - False - True - False - - - - - - 50 - 50 - True - TextAndIcon - - True - - - 15 - 16 - 18 - 19 - True - Fill - Fill - False - True - False - False - True - False - - @@ -3841,6 +3669,7 @@ + 50 5 @@ -3861,6 +3690,7 @@ + 50 5 @@ -4732,6 +4562,28 @@ False + + + + 50 + 50 + + + 14 + 15 + 17 + 18 + True + Fill + Fill + False + True + False + False + True + False + + @@ -5214,15 +5066,18 @@ - + - Item Layer + 250 + 50 + True + Center - 9 - 10 - 1 - 6 + 15 + 16 + 15 + 20 True Fill Fill @@ -5235,16 +5090,15 @@ - + - 50 - Items on the ground + Item Layer - 13 - 14 - 15 - 20 + 9 + 10 + 1 + 6 True Fill Fill -- cgit v1.2.3