From 2b482aecc88fc40ca0b2e43b7e19ecb6abfb1b91 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sat, 4 Apr 2020 13:53:20 +0300 Subject: Structures now have health (get deleted after certain amount of hits ; on each hit the structure drops it's item). Started work (ui is done, doing logic) on crafting. Started work on implimenting item presets. --- Mundus/Data/Crafting/RI.cs | 13 + Mundus/Data/Windows/WI.cs | 3 + Mundus/Mundus.csproj | 7 + Mundus/Service/Crafting/CraftingController.cs | 20 + Mundus/Service/Crafting/CraftingRecipie.cs | 53 + Mundus/Service/Mobs/MobStatsController.cs | 14 +- Mundus/Service/Mobs/MobTerraforming.cs | 7 +- Mundus/Service/SuperLayers/LandPresets.cs | 4 +- Mundus/Service/Tiles/ItemPresets/ToolPresets.cs | 6 + Mundus/Service/Tiles/Items/Gear.cs | 2 +- Mundus/Service/Tiles/Items/Material.cs | 2 +- Mundus/Service/Tiles/Items/Structure.cs | 18 +- Mundus/Service/Tiles/Items/Tool.cs | 2 +- Mundus/Service/WindowController.cs | 7 +- Mundus/Views/Windows/CraftingWindow.cs | 29 +- Mundus/Views/Windows/SmallGameWindow.cs | 16 +- .../gtk-gui/Mundus.Views.Windows.CraftingWindow.cs | 420 +++- .../Mundus.Views.Windows.SmallGameWindow.cs | 2396 ++++++++++---------- Mundus/gtk-gui/gui.stetic | 855 ++++++- 19 files changed, 2604 insertions(+), 1270 deletions(-) create mode 100644 Mundus/Data/Crafting/RI.cs create mode 100644 Mundus/Service/Crafting/CraftingController.cs create mode 100644 Mundus/Service/Crafting/CraftingRecipie.cs create mode 100644 Mundus/Service/Tiles/ItemPresets/ToolPresets.cs diff --git a/Mundus/Data/Crafting/RI.cs b/Mundus/Data/Crafting/RI.cs new file mode 100644 index 0000000..8c15b32 --- /dev/null +++ b/Mundus/Data/Crafting/RI.cs @@ -0,0 +1,13 @@ +using System; +using Mundus.Service.Crafting; +using Mundus.Service.Tiles.Items; + +namespace Mundus.Data.Crafting { + public static class RI { //short for Recipie Instances + public static CraftingRecipie StoneAxe { get; private set; } + + public static void CreateInstances() { + StoneAxe = new CraftingRecipie(new Tool()); + } + } +} diff --git a/Mundus/Data/Windows/WI.cs b/Mundus/Data/Windows/WI.cs index dbad130..b00dc71 100644 --- a/Mundus/Data/Windows/WI.cs +++ b/Mundus/Data/Windows/WI.cs @@ -12,6 +12,7 @@ namespace Mundus.Data.Windows { public static SettingsWindow WSettings { get; private set; } public static PauseWindow WPause { get; private set; } public static MusicWindow WMusic { get; private set; } + public static CraftingWindow WCrafting { get; private set; } public static void CreateInstances() { WMain = new MainWindow(); @@ -22,6 +23,7 @@ namespace Mundus.Data.Windows { WSettings = new SettingsWindow(); WPause = new PauseWindow(); WMusic = new MusicWindow(); + WCrafting = new CraftingWindow(); HideAll(); } @@ -36,6 +38,7 @@ namespace Mundus.Data.Windows { WSettings.Hide(); WPause.Hide(); WMusic.Hide(); + WCrafting.Hide(); } } } diff --git a/Mundus/Mundus.csproj b/Mundus/Mundus.csproj index 02cb0f1..dccc280 100644 --- a/Mundus/Mundus.csproj +++ b/Mundus/Mundus.csproj @@ -123,6 +123,10 @@ + + + + @@ -142,6 +146,9 @@ + + + \ No newline at end of file diff --git a/Mundus/Service/Crafting/CraftingController.cs b/Mundus/Service/Crafting/CraftingController.cs new file mode 100644 index 0000000..5c234a5 --- /dev/null +++ b/Mundus/Service/Crafting/CraftingController.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Mundus.Data.Superlayers.Mobs; +using Mundus.Service.Tiles.Items; + +namespace Mundus.Service.Crafting { + public static class CraftingController { + private static Dictionary avalable; + + public static void FindAvalableItems() { + avalable = LMI.Player.Inventory.Items.Where(x => x != null) + //Can't use distinct on non primative types, beause they also hold their memory location info. + //This is my way of getting only the "unique" item tiles. + .Select(x => x.stock_id).Distinct().Select(x => LMI.Player.Inventory.Items.First(y => y.stock_id == x)) + .Select(x => new KeyValuePair(x, LMI.Player.Inventory.Items.Where(y => y != null).Count(i => i.stock_id == x.stock_id))) + .ToDictionary(kvp => kvp.Key, kvp => kvp.Value); + } + } +} \ No newline at end of file diff --git a/Mundus/Service/Crafting/CraftingRecipie.cs b/Mundus/Service/Crafting/CraftingRecipie.cs new file mode 100644 index 0000000..7d14df4 --- /dev/null +++ b/Mundus/Service/Crafting/CraftingRecipie.cs @@ -0,0 +1,53 @@ +using Mundus.Service.Tiles.Items; + +namespace Mundus.Service.Crafting { + public class CraftingRecipie { + public ItemTile Result { get; private set; } + + public int Count1 { get; private set; } + public ItemTile ReqItem1 { get; private set; } + + public int Count2 { get; private set; } + public ItemTile ReqItem2 { get; private set; } + + public int Count3 { get; private set; } + public ItemTile ReqItem3 { get; private set; } + + public int Count4 { get; private set; } + public ItemTile ReqItem4 { get; private set; } + + public int Count5 { get; private set; } + public ItemTile ReqItem5 { get; private set; } + + public CraftingRecipie(ItemTile result, int count1, ItemTile reqItem1) :this(result, count1, reqItem1, 0, null, 0, null, 0, null, 0, null) + { } + + public CraftingRecipie(ItemTile result, int count1, ItemTile reqItem1, int count2, ItemTile reqItem2) : this(result, count1, reqItem1, count2, reqItem2, 0, null, 0, null, 0, null) + { } + + public CraftingRecipie(ItemTile result, int count1, ItemTile reqItem1, int count2, ItemTile reqItem2, int count3, ItemTile reqItem3) : this(result, count1, reqItem1, count2, reqItem2, count3, reqItem3, 0, null, 0, null) + { } + + public CraftingRecipie(ItemTile result, int count1, ItemTile reqItem1, int count2, ItemTile reqItem2, int count3, ItemTile reqItem3, int count4, ItemTile reqItem4) : this(result, count1, reqItem1, count2, reqItem2, count3, reqItem3, count4, reqItem4, 0, null) + { } + + public CraftingRecipie(ItemTile result, int count1, ItemTile reqItem1, int count2, ItemTile reqItem2, int count3, ItemTile reqItem3, int count4, ItemTile reqItem4, int count5, ItemTile reqItem5) { + this.Result = result; + + this.Count1 = count1; + this.ReqItem1 = reqItem1; + + this.Count2 = count2; + this.ReqItem2 = reqItem2; + + this.Count3 = count3; + this.ReqItem3 = reqItem3; + + this.Count4 = count4; + this.ReqItem4 = reqItem4; + + this.Count5 = count5; + this.ReqItem5 = reqItem5; + } + } +} diff --git a/Mundus/Service/Mobs/MobStatsController.cs b/Mundus/Service/Mobs/MobStatsController.cs index 92c8fff..d8475e4 100644 --- a/Mundus/Service/Mobs/MobStatsController.cs +++ b/Mundus/Service/Mobs/MobStatsController.cs @@ -8,16 +8,16 @@ namespace Mundus.Service.Mobs { return LMI.Player.Health; } - public static Image GetPlayerHearth(int index) { - Image img = new Image("empty", IconSize.Dnd); + public static string GetPlayerHearth(int index) { + string stock_id = "empty"; int diff = GetPlayerHealth() - index * 4; - if (diff >= 4) img = new Image("hearth_4-4", IconSize.Dnd); - else if (diff == 1) img = new Image("hearth_1-4", IconSize.Dnd); - else if (diff == 2) img = new Image("hearth_2-4", IconSize.Dnd); - else if (diff == 3) img = new Image("hearth_3-4", IconSize.Dnd); + if (diff >= 4) stock_id = "hearth_4-4"; + else if (diff == 1) stock_id = "hearth_1-4"; + else if (diff == 2) stock_id = "hearth_2-4"; + else if (diff == 3) stock_id = "hearth_3-4"; - return img; + return stock_id; } public static void DamagePlayer(int healthPoints) { diff --git a/Mundus/Service/Mobs/MobTerraforming.cs b/Mundus/Service/Mobs/MobTerraforming.cs index 44f865b..93854de 100644 --- a/Mundus/Service/Mobs/MobTerraforming.cs +++ b/Mundus/Service/Mobs/MobTerraforming.cs @@ -13,8 +13,11 @@ namespace Mundus.Service.Mobs { 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); + LMI.Player.Inventory.AppendToItems(new Material(selStructure.DroppedMaterial.stock_id)); + + if (!selStructure.Damage()) { + LMI.Player.CurrSuperLayer.SetStructureAtPosition(null, mapYPos, mapXPos); + } } else { //TODO: put the item on the ground diff --git a/Mundus/Service/SuperLayers/LandPresets.cs b/Mundus/Service/SuperLayers/LandPresets.cs index 73a64a6..b07edfe 100644 --- a/Mundus/Service/SuperLayers/LandPresets.cs +++ b/Mundus/Service/SuperLayers/LandPresets.cs @@ -4,11 +4,11 @@ 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")); + return new Structure("boulder", 10, ToolTypes.Pickaxe, 1, false, new Material("land_rock")); } public static Structure Tree() { - return new Structure("tree", ToolTypes.Pickaxe, 1, false, new Material("stick")); + return new Structure("tree", 5, ToolTypes.Pickaxe, 1, false, new Material("stick")); } } } diff --git a/Mundus/Service/Tiles/ItemPresets/ToolPresets.cs b/Mundus/Service/Tiles/ItemPresets/ToolPresets.cs new file mode 100644 index 0000000..0917cc4 --- /dev/null +++ b/Mundus/Service/Tiles/ItemPresets/ToolPresets.cs @@ -0,0 +1,6 @@ +using System; +namespace Mundus.Service.Tiles.ItemPresets { + public static class ToolPresets { + + } +} diff --git a/Mundus/Service/Tiles/Items/Gear.cs b/Mundus/Service/Tiles/Items/Gear.cs index 89e8221..5af2283 100644 --- a/Mundus/Service/Tiles/Items/Gear.cs +++ b/Mundus/Service/Tiles/Items/Gear.cs @@ -4,7 +4,7 @@ { } public override string ToString() { - return $"Gear | Stock ID: {stock_id}"; + return $"Gear | ID: {stock_id}"; } } } diff --git a/Mundus/Service/Tiles/Items/Material.cs b/Mundus/Service/Tiles/Items/Material.cs index 90a17e3..b7011ef 100644 --- a/Mundus/Service/Tiles/Items/Material.cs +++ b/Mundus/Service/Tiles/Items/Material.cs @@ -4,7 +4,7 @@ { } public override string ToString() { - return $"Material | Stock ID: {this.stock_id}"; + return $"Material | ID: {this.stock_id}"; } } } diff --git a/Mundus/Service/Tiles/Items/Structure.cs b/Mundus/Service/Tiles/Items/Structure.cs index d751a46..98de50d 100644 --- a/Mundus/Service/Tiles/Items/Structure.cs +++ b/Mundus/Service/Tiles/Items/Structure.cs @@ -3,19 +3,31 @@ public int ReqToolType { get; private set; } public int ReqToolClass { get; private set; } public Material DroppedMaterial { get; private set; } + public byte Health { get; private set; } public bool IsWalkable { get; private set; } - public Structure(string stock_id, int reqToolType, int reqToolClass, bool isWalkable = false, Material droppedMaterial = null) : base(stock_id) { + public Structure(Structure structure) :this(structure.stock_id, structure.Health, structure.ReqToolType, structure.ReqToolClass, structure.IsWalkable, + new Material(structure.DroppedMaterial.stock_id)) { + //dunno if I would need it + } + + public Structure(string stock_id, byte health, int reqToolType, int reqToolClass, bool isWalkable = false, Material droppedMaterial = null) : base(stock_id) { + this.Health = health; this.ReqToolType = reqToolType; this.ReqToolClass = reqToolClass; this.IsWalkable = isWalkable; this.DroppedMaterial = droppedMaterial; } + public bool Damage() { + this.Health--; + return this.Health > 0; + } + 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}"; + return $"Structure | ID: {this.stock_id} H: {this.Health} TT: {this.ReqToolType} TC: {this.ReqToolClass} " + + $"W: {this.IsWalkable} DM ID: {this.DroppedMaterial.stock_id}"; } } } diff --git a/Mundus/Service/Tiles/Items/Tool.cs b/Mundus/Service/Tiles/Items/Tool.cs index 21ac348..9a10f98 100644 --- a/Mundus/Service/Tiles/Items/Tool.cs +++ b/Mundus/Service/Tiles/Items/Tool.cs @@ -11,7 +11,7 @@ namespace Mundus.Service.Tiles.Items { } public override string ToString() { - return $"Tool | Stock ID: {this.stock_id} Type: {this.Type} Class: {this.Class}"; + return $"Tool | ID: {this.stock_id} Type: {this.Type} Class: {this.Class}"; } } } diff --git a/Mundus/Service/WindowController.cs b/Mundus/Service/WindowController.cs index d317fc6..139adda 100644 --- a/Mundus/Service/WindowController.cs +++ b/Mundus/Service/WindowController.cs @@ -4,7 +4,7 @@ using Mundus.Data.Windows; namespace Mundus.Service { public static class WindowController { public static void ShowSettingsWindow(Window sender) { - sender.Hide(); + sender.Hide(); WI.WSettings.Show(sender); } @@ -31,5 +31,10 @@ namespace Mundus.Service { WI.WMusic.Show(); WI.WMusic.Present(); } + + public static void ShowCraftingWindow() { + WI.WCrafting.Show(); + WI.WCrafting.Present(); + } } } diff --git a/Mundus/Views/Windows/CraftingWindow.cs b/Mundus/Views/Windows/CraftingWindow.cs index d4123ac..137d6bd 100644 --- a/Mundus/Views/Windows/CraftingWindow.cs +++ b/Mundus/Views/Windows/CraftingWindow.cs @@ -1,8 +1,31 @@ -namespace Mundus.Views.Windows { +using Gtk; +using Mundus.Service.Tiles.Items; + +namespace Mundus.Views.Windows { public partial class CraftingWindow : Gtk.Window { - public CraftingWindow() : - base( Gtk.WindowType.Toplevel ) { + public CraftingWindow() : base( Gtk.WindowType.Toplevel ) { this.Build(); } + + + + private void Reset() { + lblC1.Text = "0"; + lblC2.Text = "0"; + lblC3.Text = "0"; + lblC4.Text = "0"; + lblC5.Text = "0"; + + imgI1.IconSet = null; + imgI2.IconSet = null; + imgI3.IconSet = null; + imgI4.IconSet = null; + imgI5.IconSet = null; + + imgItem.IconSet = null; + lblInfo.Text = null; + btnPrev.Sensitive = false; + btnNext.Sensitive = false; + } } } diff --git a/Mundus/Views/Windows/SmallGameWindow.cs b/Mundus/Views/Windows/SmallGameWindow.cs index 552315f..1e8ca3d 100644 --- a/Mundus/Views/Windows/SmallGameWindow.cs +++ b/Mundus/Views/Windows/SmallGameWindow.cs @@ -167,6 +167,7 @@ namespace Mundus.Views.Windows { btnI23.Visible = isVisible; btnI24.Visible = isVisible; btnI25.Visible = isVisible; + btnCrafting.Visible = isVisible; lblAccessories.Visible = isVisible; btnA1.Visible = isVisible; @@ -249,7 +250,7 @@ namespace Mundus.Views.Windows { //Print health for (int i = 0; i < Size; i++) { - string iName = MobStatsController.GetPlayerHearth(i).Stock; + string iName = MobStatsController.GetPlayerHearth(i); switch (i) { case 0: imgS6.SetFromStock(iName, IconSize.Dnd); break; @@ -418,6 +419,10 @@ namespace Mundus.Views.Windows { } } + protected void OnBtnCraftingClicked(object sender, EventArgs e) { + WindowController.ShowCraftingWindow(); + } + public void PrintSelectedItemInfo(ItemTile itemTile) { if (itemTile != null) { imgInfo.SetFromStock(itemTile.stock_id, IconSize.Dnd); @@ -898,15 +903,18 @@ namespace Mundus.Views.Windows { } protected void OnBtnIG1Clicked(object sender, EventArgs e) { - Mundus.Data.Superlayers.Mobs.LMI.Player.Inventory.Hotbar[0] = LandPresets.Boulder(); + //Mundus.Data.Superlayers.Mobs.LMI.Player.Inventory.Hotbar[0] = LandPresets.Boulder(); //MobStatsController.DamagePlayer(1); - //PrintMainMenu(); + Service.Crafting.CraftingController.FindAvalableItems(); + PrintMainMenu(); } protected void OnBtnIG2Clicked(object sender, EventArgs e) { Mundus.Data.Superlayers.Mobs.LMI.Player.Inventory.Hotbar[1] = new Service.Tiles.Items.Tool("blank_hand", Mundus.Data.Tiles.ToolTypes.Pickaxe, 1); //MobStatsController.TryHealPlayer(1); - //PrintMainMenu(); + PrintMainMenu(); } + + } } diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.CraftingWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.CraftingWindow.cs index 784f85b..54a90f2 100644 --- a/Mundus/gtk-gui/Mundus.Views.Windows.CraftingWindow.cs +++ b/Mundus/gtk-gui/Mundus.Views.Windows.CraftingWindow.cs @@ -4,6 +4,62 @@ namespace Mundus.Views.Windows { public partial class CraftingWindow { + private global::Gtk.Table tbUI; + + private global::Gtk.Button btnNext; + + private global::Gtk.Button btnPrev; + + private global::Gtk.Button button28; + + private global::Gtk.Image imgI1; + + private global::Gtk.Image imgI2; + + private global::Gtk.Image imgI3; + + private global::Gtk.Image imgI4; + + private global::Gtk.Image imgI5; + + private global::Gtk.Image imgItem; + + private global::Gtk.Image imgM1; + + private global::Gtk.Image imgM2; + + private global::Gtk.Image imgM3; + + private global::Gtk.Image imgM4; + + private global::Gtk.Image imgM5; + + private global::Gtk.Label lblBlank1; + + private global::Gtk.Label lblBlank2; + + private global::Gtk.Label lblBlank3; + + private global::Gtk.Label lblBlank4; + + private global::Gtk.Label lblBlank5; + + private global::Gtk.Label lblBlank6; + + private global::Gtk.Label lblBlank7; + + private global::Gtk.Label lblC1; + + private global::Gtk.Label lblC2; + + private global::Gtk.Label lblC3; + + private global::Gtk.Label lblC4; + + private global::Gtk.Label lblC5; + + private global::Gtk.Label lblInfo; + protected virtual void Build() { global::Stetic.Gui.Initialize(this); @@ -11,12 +67,372 @@ namespace Mundus.Views.Windows this.Name = "Mundus.Views.Windows.CraftingWindow"; this.Title = global::Mono.Unix.Catalog.GetString("CraftingWindow"); this.WindowPosition = ((global::Gtk.WindowPosition)(4)); + // Container child Mundus.Views.Windows.CraftingWindow.Gtk.Container+ContainerChild + this.tbUI = new global::Gtk.Table(((uint)(11)), ((uint)(7)), false); + this.tbUI.Name = "tbUI"; + // Container child tbUI.Gtk.Table+TableChild + this.btnNext = new global::Gtk.Button(); + this.btnNext.Sensitive = false; + this.btnNext.CanFocus = true; + this.btnNext.Name = "btnNext"; + this.btnNext.UseUnderline = true; + this.btnNext.Label = global::Mono.Unix.Catalog.GetString("Next"); + this.tbUI.Add(this.btnNext); + global::Gtk.Table.TableChild w1 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnNext])); + w1.TopAttach = ((uint)(7)); + w1.BottomAttach = ((uint)(8)); + w1.LeftAttach = ((uint)(4)); + w1.RightAttach = ((uint)(5)); + w1.XOptions = ((global::Gtk.AttachOptions)(4)); + w1.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnPrev = new global::Gtk.Button(); + this.btnPrev.WidthRequest = 50; + this.btnPrev.HeightRequest = 50; + this.btnPrev.Sensitive = false; + this.btnPrev.CanFocus = true; + this.btnPrev.Name = "btnPrev"; + this.btnPrev.UseUnderline = true; + this.btnPrev.Label = global::Mono.Unix.Catalog.GetString("Prev"); + this.tbUI.Add(this.btnPrev); + global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPrev])); + w2.TopAttach = ((uint)(7)); + w2.BottomAttach = ((uint)(8)); + w2.LeftAttach = ((uint)(2)); + w2.RightAttach = ((uint)(3)); + w2.XOptions = ((global::Gtk.AttachOptions)(4)); + w2.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.button28 = new global::Gtk.Button(); + this.button28.HeightRequest = 50; + this.button28.Sensitive = false; + this.button28.CanFocus = true; + this.button28.Name = "button28"; + this.button28.UseUnderline = true; + this.button28.Label = global::Mono.Unix.Catalog.GetString("Craft"); + this.tbUI.Add(this.button28); + global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.tbUI[this.button28])); + w3.TopAttach = ((uint)(9)); + w3.BottomAttach = ((uint)(10)); + w3.LeftAttach = ((uint)(1)); + w3.RightAttach = ((uint)(6)); + w3.XOptions = ((global::Gtk.AttachOptions)(4)); + w3.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 w4 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w4.TopAttach = ((uint)(1)); + w4.BottomAttach = ((uint)(2)); + w4.LeftAttach = ((uint)(4)); + w4.RightAttach = ((uint)(5)); + w4.XOptions = ((global::Gtk.AttachOptions)(4)); + w4.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 w5 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w5.TopAttach = ((uint)(2)); + w5.BottomAttach = ((uint)(3)); + w5.LeftAttach = ((uint)(4)); + w5.RightAttach = ((uint)(5)); + w5.XOptions = ((global::Gtk.AttachOptions)(4)); + w5.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 w6 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w6.TopAttach = ((uint)(3)); + w6.BottomAttach = ((uint)(4)); + w6.LeftAttach = ((uint)(4)); + w6.RightAttach = ((uint)(5)); + w6.XOptions = ((global::Gtk.AttachOptions)(4)); + w6.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 w7 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w7.TopAttach = ((uint)(4)); + w7.BottomAttach = ((uint)(5)); + w7.LeftAttach = ((uint)(4)); + w7.RightAttach = ((uint)(5)); + w7.XOptions = ((global::Gtk.AttachOptions)(4)); + w7.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 w8 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w8.TopAttach = ((uint)(5)); + w8.BottomAttach = ((uint)(6)); + w8.LeftAttach = ((uint)(4)); + w8.RightAttach = ((uint)(5)); + w8.XOptions = ((global::Gtk.AttachOptions)(4)); + w8.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgItem = new global::Gtk.Image(); + this.imgItem.WidthRequest = 50; + this.imgItem.HeightRequest = 50; + this.imgItem.Name = "imgItem"; + this.tbUI.Add(this.imgItem); + global::Gtk.Table.TableChild w9 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgItem])); + w9.TopAttach = ((uint)(7)); + w9.BottomAttach = ((uint)(8)); + w9.LeftAttach = ((uint)(3)); + w9.RightAttach = ((uint)(4)); + w9.XOptions = ((global::Gtk.AttachOptions)(4)); + w9.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgM1 = new global::Gtk.Image(); + this.imgM1.WidthRequest = 50; + this.imgM1.HeightRequest = 50; + this.imgM1.Name = "imgM1"; + this.tbUI.Add(this.imgM1); + global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgM1])); + w10.TopAttach = ((uint)(1)); + w10.BottomAttach = ((uint)(2)); + w10.LeftAttach = ((uint)(3)); + w10.RightAttach = ((uint)(4)); + w10.XOptions = ((global::Gtk.AttachOptions)(4)); + w10.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgM2 = new global::Gtk.Image(); + this.imgM2.WidthRequest = 50; + this.imgM2.HeightRequest = 50; + this.imgM2.Name = "imgM2"; + this.tbUI.Add(this.imgM2); + global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgM2])); + w11.TopAttach = ((uint)(2)); + w11.BottomAttach = ((uint)(3)); + w11.LeftAttach = ((uint)(3)); + w11.RightAttach = ((uint)(4)); + w11.XOptions = ((global::Gtk.AttachOptions)(4)); + w11.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgM3 = new global::Gtk.Image(); + this.imgM3.WidthRequest = 50; + this.imgM3.HeightRequest = 50; + this.imgM3.Name = "imgM3"; + this.tbUI.Add(this.imgM3); + global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgM3])); + w12.TopAttach = ((uint)(3)); + w12.BottomAttach = ((uint)(4)); + w12.LeftAttach = ((uint)(3)); + w12.RightAttach = ((uint)(4)); + w12.XOptions = ((global::Gtk.AttachOptions)(4)); + w12.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgM4 = new global::Gtk.Image(); + this.imgM4.WidthRequest = 50; + this.imgM4.HeightRequest = 50; + this.imgM4.Name = "imgM4"; + this.tbUI.Add(this.imgM4); + global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgM4])); + w13.TopAttach = ((uint)(4)); + w13.BottomAttach = ((uint)(5)); + w13.LeftAttach = ((uint)(3)); + w13.RightAttach = ((uint)(4)); + w13.XOptions = ((global::Gtk.AttachOptions)(4)); + w13.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.imgM5 = new global::Gtk.Image(); + this.imgM5.WidthRequest = 50; + this.imgM5.HeightRequest = 50; + this.imgM5.Name = "imgM5"; + this.tbUI.Add(this.imgM5); + global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgM5])); + w14.TopAttach = ((uint)(5)); + w14.BottomAttach = ((uint)(6)); + w14.LeftAttach = ((uint)(3)); + w14.RightAttach = ((uint)(4)); + w14.XOptions = ((global::Gtk.AttachOptions)(4)); + w14.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 w15 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w15.TopAttach = ((uint)(5)); + w15.BottomAttach = ((uint)(6)); + w15.XOptions = ((global::Gtk.AttachOptions)(4)); + w15.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank2 = new global::Gtk.Label(); + this.lblBlank2.WidthRequest = 10; + this.lblBlank2.HeightRequest = 50; + this.lblBlank2.Name = "lblBlank2"; + this.tbUI.Add(this.lblBlank2); + global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w16.TopAttach = ((uint)(5)); + w16.BottomAttach = ((uint)(6)); + w16.LeftAttach = ((uint)(6)); + w16.RightAttach = ((uint)(7)); + w16.XOptions = ((global::Gtk.AttachOptions)(4)); + w16.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank3 = new global::Gtk.Label(); + this.lblBlank3.WidthRequest = 50; + this.lblBlank3.HeightRequest = 10; + this.lblBlank3.Name = "lblBlank3"; + this.tbUI.Add(this.lblBlank3); + global::Gtk.Table.TableChild w17 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w17.LeftAttach = ((uint)(3)); + w17.RightAttach = ((uint)(4)); + w17.XOptions = ((global::Gtk.AttachOptions)(4)); + w17.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank4 = new global::Gtk.Label(); + this.lblBlank4.WidthRequest = 50; + this.lblBlank4.HeightRequest = 10; + this.lblBlank4.Name = "lblBlank4"; + this.tbUI.Add(this.lblBlank4); + global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w18.TopAttach = ((uint)(10)); + w18.BottomAttach = ((uint)(11)); + w18.LeftAttach = ((uint)(3)); + w18.RightAttach = ((uint)(4)); + w18.XOptions = ((global::Gtk.AttachOptions)(4)); + w18.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank5 = new global::Gtk.Label(); + this.lblBlank5.WidthRequest = 50; + this.lblBlank5.HeightRequest = 50; + this.lblBlank5.Name = "lblBlank5"; + this.tbUI.Add(this.lblBlank5); + global::Gtk.Table.TableChild w19 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w19.TopAttach = ((uint)(5)); + w19.BottomAttach = ((uint)(6)); + w19.LeftAttach = ((uint)(1)); + w19.RightAttach = ((uint)(2)); + w19.XOptions = ((global::Gtk.AttachOptions)(4)); + w19.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank6 = new global::Gtk.Label(); + this.lblBlank6.WidthRequest = 50; + this.lblBlank6.HeightRequest = 50; + this.lblBlank6.Name = "lblBlank6"; + this.tbUI.Add(this.lblBlank6); + global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank6])); + w20.TopAttach = ((uint)(5)); + w20.BottomAttach = ((uint)(6)); + w20.LeftAttach = ((uint)(5)); + w20.RightAttach = ((uint)(6)); + w20.XOptions = ((global::Gtk.AttachOptions)(4)); + w20.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblBlank7 = new global::Gtk.Label(); + this.lblBlank7.WidthRequest = 50; + this.lblBlank7.HeightRequest = 50; + this.lblBlank7.Name = "lblBlank7"; + this.tbUI.Add(this.lblBlank7); + global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank7])); + w21.TopAttach = ((uint)(6)); + w21.BottomAttach = ((uint)(7)); + w21.LeftAttach = ((uint)(3)); + w21.RightAttach = ((uint)(4)); + w21.XOptions = ((global::Gtk.AttachOptions)(4)); + w21.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblC1 = new global::Gtk.Label(); + this.lblC1.Name = "lblC1"; + this.lblC1.LabelProp = global::Mono.Unix.Catalog.GetString("0"); + this.lblC1.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblC1); + global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblC1])); + w22.TopAttach = ((uint)(1)); + w22.BottomAttach = ((uint)(2)); + w22.LeftAttach = ((uint)(2)); + w22.RightAttach = ((uint)(3)); + w22.XOptions = ((global::Gtk.AttachOptions)(4)); + w22.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblC2 = new global::Gtk.Label(); + this.lblC2.Name = "lblC2"; + this.lblC2.LabelProp = global::Mono.Unix.Catalog.GetString("0"); + this.lblC2.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblC2); + global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblC2])); + w23.TopAttach = ((uint)(2)); + w23.BottomAttach = ((uint)(3)); + w23.LeftAttach = ((uint)(2)); + w23.RightAttach = ((uint)(3)); + w23.XOptions = ((global::Gtk.AttachOptions)(4)); + w23.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblC3 = new global::Gtk.Label(); + this.lblC3.Name = "lblC3"; + this.lblC3.LabelProp = global::Mono.Unix.Catalog.GetString("0"); + this.tbUI.Add(this.lblC3); + global::Gtk.Table.TableChild w24 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblC3])); + w24.TopAttach = ((uint)(3)); + w24.BottomAttach = ((uint)(4)); + w24.LeftAttach = ((uint)(2)); + w24.RightAttach = ((uint)(3)); + w24.XOptions = ((global::Gtk.AttachOptions)(4)); + w24.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblC4 = new global::Gtk.Label(); + this.lblC4.Name = "lblC4"; + this.lblC4.LabelProp = global::Mono.Unix.Catalog.GetString("0"); + this.lblC4.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblC4); + global::Gtk.Table.TableChild w25 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblC4])); + w25.TopAttach = ((uint)(4)); + w25.BottomAttach = ((uint)(5)); + w25.LeftAttach = ((uint)(2)); + w25.RightAttach = ((uint)(3)); + w25.XOptions = ((global::Gtk.AttachOptions)(4)); + w25.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblC5 = new global::Gtk.Label(); + this.lblC5.Name = "lblC5"; + this.lblC5.LabelProp = global::Mono.Unix.Catalog.GetString("0"); + this.lblC5.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblC5); + global::Gtk.Table.TableChild w26 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblC5])); + w26.TopAttach = ((uint)(5)); + w26.BottomAttach = ((uint)(6)); + w26.LeftAttach = ((uint)(2)); + w26.RightAttach = ((uint)(3)); + w26.XOptions = ((global::Gtk.AttachOptions)(4)); + w26.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.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblInfo); + global::Gtk.Table.TableChild w27 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); + w27.TopAttach = ((uint)(8)); + w27.BottomAttach = ((uint)(9)); + w27.LeftAttach = ((uint)(1)); + w27.RightAttach = ((uint)(6)); + w27.XOptions = ((global::Gtk.AttachOptions)(4)); + w27.YOptions = ((global::Gtk.AttachOptions)(4)); + this.Add(this.tbUI); if ((this.Child != null)) { this.Child.ShowAll(); } - this.DefaultWidth = 400; - this.DefaultHeight = 300; + this.DefaultWidth = 270; + this.DefaultHeight = 470; this.Show(); } } diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs index 9a50d9f..d694627 100644 --- a/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs +++ b/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs @@ -26,6 +26,8 @@ namespace Mundus.Views.Windows private global::Gtk.Button btnA9; + private global::Gtk.Button btnCrafting; + private global::Gtk.Button btnG1; private global::Gtk.Button btnG2; @@ -351,8 +353,8 @@ namespace Mundus.Views.Windows this.btnA1.Image = w1; this.tbUI.Add(this.btnA1); global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA1])); - w2.TopAttach = ((uint)(8)); - w2.BottomAttach = ((uint)(9)); + w2.TopAttach = ((uint)(9)); + w2.BottomAttach = ((uint)(10)); w2.LeftAttach = ((uint)(15)); w2.RightAttach = ((uint)(16)); w2.XOptions = ((global::Gtk.AttachOptions)(4)); @@ -368,8 +370,8 @@ namespace Mundus.Views.Windows this.btnA10.Image = w3; this.tbUI.Add(this.btnA10); global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA10])); - w4.TopAttach = ((uint)(9)); - w4.BottomAttach = ((uint)(10)); + w4.TopAttach = ((uint)(10)); + w4.BottomAttach = ((uint)(11)); w4.LeftAttach = ((uint)(19)); w4.RightAttach = ((uint)(20)); w4.XOptions = ((global::Gtk.AttachOptions)(4)); @@ -385,8 +387,8 @@ namespace Mundus.Views.Windows this.btnA2.Image = w5; this.tbUI.Add(this.btnA2); global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA2])); - w6.TopAttach = ((uint)(8)); - w6.BottomAttach = ((uint)(9)); + w6.TopAttach = ((uint)(9)); + w6.BottomAttach = ((uint)(10)); w6.LeftAttach = ((uint)(16)); w6.RightAttach = ((uint)(17)); w6.XOptions = ((global::Gtk.AttachOptions)(4)); @@ -402,8 +404,8 @@ namespace Mundus.Views.Windows this.btnA3.Image = w7; this.tbUI.Add(this.btnA3); global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA3])); - w8.TopAttach = ((uint)(8)); - w8.BottomAttach = ((uint)(9)); + w8.TopAttach = ((uint)(9)); + w8.BottomAttach = ((uint)(10)); w8.LeftAttach = ((uint)(17)); w8.RightAttach = ((uint)(18)); w8.XOptions = ((global::Gtk.AttachOptions)(4)); @@ -419,8 +421,8 @@ namespace Mundus.Views.Windows this.btnA4.Image = w9; this.tbUI.Add(this.btnA4); global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA4])); - w10.TopAttach = ((uint)(8)); - w10.BottomAttach = ((uint)(9)); + w10.TopAttach = ((uint)(9)); + w10.BottomAttach = ((uint)(10)); w10.LeftAttach = ((uint)(18)); w10.RightAttach = ((uint)(19)); w10.XOptions = ((global::Gtk.AttachOptions)(4)); @@ -436,8 +438,8 @@ namespace Mundus.Views.Windows this.btnA5.Image = w11; this.tbUI.Add(this.btnA5); global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA5])); - w12.TopAttach = ((uint)(8)); - w12.BottomAttach = ((uint)(9)); + w12.TopAttach = ((uint)(9)); + w12.BottomAttach = ((uint)(10)); w12.LeftAttach = ((uint)(19)); w12.RightAttach = ((uint)(20)); w12.XOptions = ((global::Gtk.AttachOptions)(4)); @@ -453,8 +455,8 @@ namespace Mundus.Views.Windows this.btnA6.Image = w13; this.tbUI.Add(this.btnA6); global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA6])); - w14.TopAttach = ((uint)(9)); - w14.BottomAttach = ((uint)(10)); + w14.TopAttach = ((uint)(10)); + w14.BottomAttach = ((uint)(11)); w14.LeftAttach = ((uint)(15)); w14.RightAttach = ((uint)(16)); w14.XOptions = ((global::Gtk.AttachOptions)(4)); @@ -470,8 +472,8 @@ namespace Mundus.Views.Windows this.btnA7.Image = w15; this.tbUI.Add(this.btnA7); global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA7])); - w16.TopAttach = ((uint)(9)); - w16.BottomAttach = ((uint)(10)); + w16.TopAttach = ((uint)(10)); + w16.BottomAttach = ((uint)(11)); w16.LeftAttach = ((uint)(16)); w16.RightAttach = ((uint)(17)); w16.XOptions = ((global::Gtk.AttachOptions)(4)); @@ -487,8 +489,8 @@ namespace Mundus.Views.Windows this.btnA8.Image = w17; this.tbUI.Add(this.btnA8); global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA8])); - w18.TopAttach = ((uint)(9)); - w18.BottomAttach = ((uint)(10)); + w18.TopAttach = ((uint)(10)); + w18.BottomAttach = ((uint)(11)); w18.LeftAttach = ((uint)(17)); w18.RightAttach = ((uint)(18)); w18.XOptions = ((global::Gtk.AttachOptions)(4)); @@ -504,29 +506,44 @@ namespace Mundus.Views.Windows this.btnA9.Image = w19; this.tbUI.Add(this.btnA9); global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnA9])); - w20.TopAttach = ((uint)(9)); - w20.BottomAttach = ((uint)(10)); + w20.TopAttach = ((uint)(10)); + w20.BottomAttach = ((uint)(11)); w20.LeftAttach = ((uint)(18)); w20.RightAttach = ((uint)(19)); w20.XOptions = ((global::Gtk.AttachOptions)(4)); w20.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild + this.btnCrafting = new global::Gtk.Button(); + this.btnCrafting.HeightRequest = 50; + this.btnCrafting.CanFocus = true; + this.btnCrafting.Name = "btnCrafting"; + this.btnCrafting.UseUnderline = true; + this.btnCrafting.Label = global::Mono.Unix.Catalog.GetString("Crafting Menu"); + this.tbUI.Add(this.btnCrafting); + global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnCrafting])); + w21.TopAttach = ((uint)(6)); + w21.BottomAttach = ((uint)(7)); + w21.LeftAttach = ((uint)(15)); + w21.RightAttach = ((uint)(20)); + w21.XOptions = ((global::Gtk.AttachOptions)(4)); + w21.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild this.btnG1 = new global::Gtk.Button(); this.btnG1.WidthRequest = 50; this.btnG1.HeightRequest = 50; this.btnG1.CanFocus = true; this.btnG1.Name = "btnG1"; this.btnG1.UseUnderline = true; - global::Gtk.Image w21 = new global::Gtk.Image(); - this.btnG1.Image = w21; + global::Gtk.Image w22 = new global::Gtk.Image(); + this.btnG1.Image = w22; this.tbUI.Add(this.btnG1); - global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG1])); - w22.TopAttach = ((uint)(11)); - w22.BottomAttach = ((uint)(12)); - w22.LeftAttach = ((uint)(15)); - w22.RightAttach = ((uint)(16)); - w22.XOptions = ((global::Gtk.AttachOptions)(4)); - w22.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG1])); + w23.TopAttach = ((uint)(12)); + w23.BottomAttach = ((uint)(13)); + w23.LeftAttach = ((uint)(15)); + w23.RightAttach = ((uint)(16)); + w23.XOptions = ((global::Gtk.AttachOptions)(4)); + w23.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnG2 = new global::Gtk.Button(); this.btnG2.WidthRequest = 50; @@ -534,16 +551,16 @@ namespace Mundus.Views.Windows this.btnG2.CanFocus = true; this.btnG2.Name = "btnG2"; this.btnG2.UseUnderline = true; - global::Gtk.Image w23 = new global::Gtk.Image(); - this.btnG2.Image = w23; + global::Gtk.Image w24 = new global::Gtk.Image(); + this.btnG2.Image = w24; this.tbUI.Add(this.btnG2); - global::Gtk.Table.TableChild w24 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG2])); - w24.TopAttach = ((uint)(11)); - w24.BottomAttach = ((uint)(12)); - w24.LeftAttach = ((uint)(16)); - w24.RightAttach = ((uint)(17)); - w24.XOptions = ((global::Gtk.AttachOptions)(4)); - w24.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w25 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG2])); + w25.TopAttach = ((uint)(12)); + w25.BottomAttach = ((uint)(13)); + w25.LeftAttach = ((uint)(16)); + w25.RightAttach = ((uint)(17)); + w25.XOptions = ((global::Gtk.AttachOptions)(4)); + w25.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnG3 = new global::Gtk.Button(); this.btnG3.WidthRequest = 50; @@ -551,16 +568,16 @@ namespace Mundus.Views.Windows this.btnG3.CanFocus = true; this.btnG3.Name = "btnG3"; this.btnG3.UseUnderline = true; - global::Gtk.Image w25 = new global::Gtk.Image(); - this.btnG3.Image = w25; + global::Gtk.Image w26 = new global::Gtk.Image(); + this.btnG3.Image = w26; this.tbUI.Add(this.btnG3); - global::Gtk.Table.TableChild w26 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG3])); - w26.TopAttach = ((uint)(11)); - w26.BottomAttach = ((uint)(12)); - w26.LeftAttach = ((uint)(17)); - w26.RightAttach = ((uint)(18)); - w26.XOptions = ((global::Gtk.AttachOptions)(4)); - w26.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w27 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG3])); + w27.TopAttach = ((uint)(12)); + w27.BottomAttach = ((uint)(13)); + w27.LeftAttach = ((uint)(17)); + w27.RightAttach = ((uint)(18)); + w27.XOptions = ((global::Gtk.AttachOptions)(4)); + w27.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnG4 = new global::Gtk.Button(); this.btnG4.WidthRequest = 50; @@ -568,16 +585,16 @@ namespace Mundus.Views.Windows this.btnG4.CanFocus = true; this.btnG4.Name = "btnG4"; this.btnG4.UseUnderline = true; - global::Gtk.Image w27 = new global::Gtk.Image(); - this.btnG4.Image = w27; + global::Gtk.Image w28 = new global::Gtk.Image(); + this.btnG4.Image = w28; this.tbUI.Add(this.btnG4); - global::Gtk.Table.TableChild w28 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG4])); - w28.TopAttach = ((uint)(11)); - w28.BottomAttach = ((uint)(12)); - w28.LeftAttach = ((uint)(18)); - w28.RightAttach = ((uint)(19)); - w28.XOptions = ((global::Gtk.AttachOptions)(4)); - w28.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG4])); + w29.TopAttach = ((uint)(12)); + w29.BottomAttach = ((uint)(13)); + w29.LeftAttach = ((uint)(18)); + w29.RightAttach = ((uint)(19)); + w29.XOptions = ((global::Gtk.AttachOptions)(4)); + w29.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnG5 = new global::Gtk.Button(); this.btnG5.WidthRequest = 50; @@ -585,16 +602,16 @@ namespace Mundus.Views.Windows this.btnG5.CanFocus = true; this.btnG5.Name = "btnG5"; this.btnG5.UseUnderline = true; - global::Gtk.Image w29 = new global::Gtk.Image(); - this.btnG5.Image = w29; + global::Gtk.Image w30 = new global::Gtk.Image(); + this.btnG5.Image = w30; this.tbUI.Add(this.btnG5); - global::Gtk.Table.TableChild w30 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG5])); - w30.TopAttach = ((uint)(11)); - w30.BottomAttach = ((uint)(12)); - w30.LeftAttach = ((uint)(19)); - w30.RightAttach = ((uint)(20)); - w30.XOptions = ((global::Gtk.AttachOptions)(4)); - w30.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w31 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnG5])); + w31.TopAttach = ((uint)(12)); + w31.BottomAttach = ((uint)(13)); + w31.LeftAttach = ((uint)(19)); + w31.RightAttach = ((uint)(20)); + w31.XOptions = ((global::Gtk.AttachOptions)(4)); + w31.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnGM1 = new global::Gtk.Button(); this.btnGM1.WidthRequest = 50; @@ -604,13 +621,13 @@ namespace Mundus.Views.Windows this.btnGM1.UseUnderline = true; this.btnGM1.Label = global::Mono.Unix.Catalog.GetString("1:1"); this.tbUI.Add(this.btnGM1); - global::Gtk.Table.TableChild w31 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnGM1])); - w31.TopAttach = ((uint)(7)); - w31.BottomAttach = ((uint)(8)); - w31.LeftAttach = ((uint)(1)); - w31.RightAttach = ((uint)(2)); - w31.XOptions = ((global::Gtk.AttachOptions)(4)); - w31.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w32 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnGM1])); + w32.TopAttach = ((uint)(7)); + w32.BottomAttach = ((uint)(8)); + w32.LeftAttach = ((uint)(1)); + w32.RightAttach = ((uint)(2)); + w32.XOptions = ((global::Gtk.AttachOptions)(4)); + w32.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnGM2 = new global::Gtk.Button(); this.btnGM2.WidthRequest = 50; @@ -620,13 +637,13 @@ namespace Mundus.Views.Windows this.btnGM2.UseUnderline = true; this.btnGM2.Label = global::Mono.Unix.Catalog.GetString("1:5"); this.tbUI.Add(this.btnGM2); - global::Gtk.Table.TableChild w32 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnGM2])); - w32.TopAttach = ((uint)(7)); - w32.BottomAttach = ((uint)(8)); - w32.LeftAttach = ((uint)(3)); - w32.RightAttach = ((uint)(4)); - w32.XOptions = ((global::Gtk.AttachOptions)(4)); - w32.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnGM2])); + w33.TopAttach = ((uint)(7)); + w33.BottomAttach = ((uint)(8)); + w33.LeftAttach = ((uint)(3)); + w33.RightAttach = ((uint)(4)); + w33.XOptions = ((global::Gtk.AttachOptions)(4)); + w33.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnGM3 = new global::Gtk.Button(); this.btnGM3.WidthRequest = 50; @@ -636,13 +653,13 @@ namespace Mundus.Views.Windows this.btnGM3.UseUnderline = true; this.btnGM3.Label = global::Mono.Unix.Catalog.GetString("1:10"); this.tbUI.Add(this.btnGM3); - global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnGM3])); - w33.TopAttach = ((uint)(7)); - w33.BottomAttach = ((uint)(8)); - w33.LeftAttach = ((uint)(5)); - w33.RightAttach = ((uint)(6)); - w33.XOptions = ((global::Gtk.AttachOptions)(4)); - w33.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w34 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnGM3])); + w34.TopAttach = ((uint)(7)); + w34.BottomAttach = ((uint)(8)); + w34.LeftAttach = ((uint)(5)); + w34.RightAttach = ((uint)(6)); + w34.XOptions = ((global::Gtk.AttachOptions)(4)); + w34.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnH1 = new global::Gtk.Button(); this.btnH1.WidthRequest = 50; @@ -651,16 +668,16 @@ namespace Mundus.Views.Windows this.btnH1.Name = "btnH1"; this.btnH1.UseUnderline = true; this.btnH1.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w34 = new global::Gtk.Image(); - this.btnH1.Image = w34; + global::Gtk.Image w35 = new global::Gtk.Image(); + this.btnH1.Image = w35; this.tbUI.Add(this.btnH1); - global::Gtk.Table.TableChild w35 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH1])); - w35.TopAttach = ((uint)(10)); - w35.BottomAttach = ((uint)(11)); - w35.LeftAttach = ((uint)(8)); - w35.RightAttach = ((uint)(9)); - w35.XOptions = ((global::Gtk.AttachOptions)(4)); - w35.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w36 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH1])); + w36.TopAttach = ((uint)(10)); + w36.BottomAttach = ((uint)(11)); + w36.LeftAttach = ((uint)(8)); + w36.RightAttach = ((uint)(9)); + w36.XOptions = ((global::Gtk.AttachOptions)(4)); + w36.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnH2 = new global::Gtk.Button(); this.btnH2.WidthRequest = 50; @@ -669,16 +686,16 @@ namespace Mundus.Views.Windows this.btnH2.Name = "btnH2"; this.btnH2.UseUnderline = true; this.btnH2.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w36 = new global::Gtk.Image(); - this.btnH2.Image = w36; + global::Gtk.Image w37 = new global::Gtk.Image(); + this.btnH2.Image = w37; this.tbUI.Add(this.btnH2); - global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH2])); - w37.TopAttach = ((uint)(10)); - w37.BottomAttach = ((uint)(11)); - w37.LeftAttach = ((uint)(9)); - w37.RightAttach = ((uint)(10)); - w37.XOptions = ((global::Gtk.AttachOptions)(4)); - w37.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w38 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH2])); + w38.TopAttach = ((uint)(10)); + w38.BottomAttach = ((uint)(11)); + w38.LeftAttach = ((uint)(9)); + w38.RightAttach = ((uint)(10)); + w38.XOptions = ((global::Gtk.AttachOptions)(4)); + w38.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnH3 = new global::Gtk.Button(); this.btnH3.WidthRequest = 50; @@ -687,16 +704,16 @@ namespace Mundus.Views.Windows this.btnH3.Name = "btnH3"; this.btnH3.UseUnderline = true; this.btnH3.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w38 = new global::Gtk.Image(); - this.btnH3.Image = w38; + global::Gtk.Image w39 = new global::Gtk.Image(); + this.btnH3.Image = w39; this.tbUI.Add(this.btnH3); - global::Gtk.Table.TableChild w39 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH3])); - w39.TopAttach = ((uint)(10)); - w39.BottomAttach = ((uint)(11)); - w39.LeftAttach = ((uint)(10)); - w39.RightAttach = ((uint)(11)); - w39.XOptions = ((global::Gtk.AttachOptions)(4)); - w39.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w40 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH3])); + w40.TopAttach = ((uint)(10)); + w40.BottomAttach = ((uint)(11)); + w40.LeftAttach = ((uint)(10)); + w40.RightAttach = ((uint)(11)); + w40.XOptions = ((global::Gtk.AttachOptions)(4)); + w40.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnH4 = new global::Gtk.Button(); this.btnH4.WidthRequest = 50; @@ -705,16 +722,16 @@ namespace Mundus.Views.Windows this.btnH4.Name = "btnH4"; this.btnH4.UseUnderline = true; this.btnH4.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w40 = new global::Gtk.Image(); - this.btnH4.Image = w40; + global::Gtk.Image w41 = new global::Gtk.Image(); + this.btnH4.Image = w41; this.tbUI.Add(this.btnH4); - global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH4])); - w41.TopAttach = ((uint)(10)); - w41.BottomAttach = ((uint)(11)); - w41.LeftAttach = ((uint)(11)); - w41.RightAttach = ((uint)(12)); - w41.XOptions = ((global::Gtk.AttachOptions)(4)); - w41.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w42 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH4])); + w42.TopAttach = ((uint)(10)); + w42.BottomAttach = ((uint)(11)); + w42.LeftAttach = ((uint)(11)); + w42.RightAttach = ((uint)(12)); + w42.XOptions = ((global::Gtk.AttachOptions)(4)); + w42.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnH5 = new global::Gtk.Button(); this.btnH5.WidthRequest = 50; @@ -723,16 +740,16 @@ namespace Mundus.Views.Windows this.btnH5.Name = "btnH5"; this.btnH5.UseUnderline = true; this.btnH5.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w42 = new global::Gtk.Image(); - this.btnH5.Image = w42; + global::Gtk.Image w43 = new global::Gtk.Image(); + this.btnH5.Image = w43; this.tbUI.Add(this.btnH5); - global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH5])); - w43.TopAttach = ((uint)(10)); - w43.BottomAttach = ((uint)(11)); - w43.LeftAttach = ((uint)(12)); - w43.RightAttach = ((uint)(13)); - w43.XOptions = ((global::Gtk.AttachOptions)(4)); - w43.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w44 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH5])); + w44.TopAttach = ((uint)(10)); + w44.BottomAttach = ((uint)(11)); + w44.LeftAttach = ((uint)(12)); + w44.RightAttach = ((uint)(13)); + w44.XOptions = ((global::Gtk.AttachOptions)(4)); + w44.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI1 = new global::Gtk.Button(); this.btnI1.WidthRequest = 50; @@ -741,16 +758,16 @@ namespace Mundus.Views.Windows this.btnI1.Name = "btnI1"; this.btnI1.UseUnderline = true; this.btnI1.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w44 = new global::Gtk.Image(); - this.btnI1.Image = w44; + global::Gtk.Image w45 = new global::Gtk.Image(); + this.btnI1.Image = w45; this.tbUI.Add(this.btnI1); - global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI1])); - w45.TopAttach = ((uint)(1)); - w45.BottomAttach = ((uint)(2)); - w45.LeftAttach = ((uint)(15)); - w45.RightAttach = ((uint)(16)); - w45.XOptions = ((global::Gtk.AttachOptions)(4)); - w45.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w46 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI1])); + w46.TopAttach = ((uint)(1)); + w46.BottomAttach = ((uint)(2)); + w46.LeftAttach = ((uint)(15)); + w46.RightAttach = ((uint)(16)); + w46.XOptions = ((global::Gtk.AttachOptions)(4)); + w46.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI10 = new global::Gtk.Button(); this.btnI10.WidthRequest = 50; @@ -759,16 +776,16 @@ namespace Mundus.Views.Windows this.btnI10.Name = "btnI10"; this.btnI10.UseUnderline = true; this.btnI10.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w46 = new global::Gtk.Image(); - this.btnI10.Image = w46; + global::Gtk.Image w47 = new global::Gtk.Image(); + this.btnI10.Image = w47; this.tbUI.Add(this.btnI10); - global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI10])); - w47.TopAttach = ((uint)(2)); - w47.BottomAttach = ((uint)(3)); - w47.LeftAttach = ((uint)(19)); - w47.RightAttach = ((uint)(20)); - w47.XOptions = ((global::Gtk.AttachOptions)(4)); - w47.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w48 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI10])); + w48.TopAttach = ((uint)(2)); + w48.BottomAttach = ((uint)(3)); + w48.LeftAttach = ((uint)(19)); + w48.RightAttach = ((uint)(20)); + w48.XOptions = ((global::Gtk.AttachOptions)(4)); + w48.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI11 = new global::Gtk.Button(); this.btnI11.WidthRequest = 50; @@ -777,16 +794,16 @@ namespace Mundus.Views.Windows this.btnI11.Name = "btnI11"; this.btnI11.UseUnderline = true; this.btnI11.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w48 = new global::Gtk.Image(); - this.btnI11.Image = w48; + global::Gtk.Image w49 = new global::Gtk.Image(); + this.btnI11.Image = w49; this.tbUI.Add(this.btnI11); - global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI11])); - w49.TopAttach = ((uint)(3)); - w49.BottomAttach = ((uint)(4)); - w49.LeftAttach = ((uint)(15)); - w49.RightAttach = ((uint)(16)); - w49.XOptions = ((global::Gtk.AttachOptions)(4)); - w49.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w50 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI11])); + w50.TopAttach = ((uint)(3)); + w50.BottomAttach = ((uint)(4)); + w50.LeftAttach = ((uint)(15)); + w50.RightAttach = ((uint)(16)); + w50.XOptions = ((global::Gtk.AttachOptions)(4)); + w50.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI12 = new global::Gtk.Button(); this.btnI12.WidthRequest = 50; @@ -795,16 +812,16 @@ namespace Mundus.Views.Windows this.btnI12.Name = "btnI12"; this.btnI12.UseUnderline = true; this.btnI12.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w50 = new global::Gtk.Image(); - this.btnI12.Image = w50; + global::Gtk.Image w51 = new global::Gtk.Image(); + this.btnI12.Image = w51; this.tbUI.Add(this.btnI12); - global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI12])); - w51.TopAttach = ((uint)(3)); - w51.BottomAttach = ((uint)(4)); - w51.LeftAttach = ((uint)(16)); - w51.RightAttach = ((uint)(17)); - w51.XOptions = ((global::Gtk.AttachOptions)(4)); - w51.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w52 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI12])); + w52.TopAttach = ((uint)(3)); + w52.BottomAttach = ((uint)(4)); + w52.LeftAttach = ((uint)(16)); + w52.RightAttach = ((uint)(17)); + w52.XOptions = ((global::Gtk.AttachOptions)(4)); + w52.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI13 = new global::Gtk.Button(); this.btnI13.WidthRequest = 50; @@ -813,16 +830,16 @@ namespace Mundus.Views.Windows this.btnI13.Name = "btnI13"; this.btnI13.UseUnderline = true; this.btnI13.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w52 = new global::Gtk.Image(); - this.btnI13.Image = w52; + global::Gtk.Image w53 = new global::Gtk.Image(); + this.btnI13.Image = w53; this.tbUI.Add(this.btnI13); - global::Gtk.Table.TableChild w53 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI13])); - w53.TopAttach = ((uint)(3)); - w53.BottomAttach = ((uint)(4)); - w53.LeftAttach = ((uint)(17)); - w53.RightAttach = ((uint)(18)); - w53.XOptions = ((global::Gtk.AttachOptions)(4)); - w53.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w54 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI13])); + w54.TopAttach = ((uint)(3)); + w54.BottomAttach = ((uint)(4)); + w54.LeftAttach = ((uint)(17)); + w54.RightAttach = ((uint)(18)); + w54.XOptions = ((global::Gtk.AttachOptions)(4)); + w54.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI14 = new global::Gtk.Button(); this.btnI14.WidthRequest = 50; @@ -831,16 +848,16 @@ namespace Mundus.Views.Windows this.btnI14.Name = "btnI14"; this.btnI14.UseUnderline = true; this.btnI14.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w54 = new global::Gtk.Image(); - this.btnI14.Image = w54; + global::Gtk.Image w55 = new global::Gtk.Image(); + this.btnI14.Image = w55; this.tbUI.Add(this.btnI14); - global::Gtk.Table.TableChild w55 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI14])); - w55.TopAttach = ((uint)(3)); - w55.BottomAttach = ((uint)(4)); - w55.LeftAttach = ((uint)(18)); - w55.RightAttach = ((uint)(19)); - w55.XOptions = ((global::Gtk.AttachOptions)(4)); - w55.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w56 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI14])); + w56.TopAttach = ((uint)(3)); + w56.BottomAttach = ((uint)(4)); + w56.LeftAttach = ((uint)(18)); + w56.RightAttach = ((uint)(19)); + w56.XOptions = ((global::Gtk.AttachOptions)(4)); + w56.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI15 = new global::Gtk.Button(); this.btnI15.WidthRequest = 50; @@ -849,16 +866,16 @@ namespace Mundus.Views.Windows this.btnI15.Name = "btnI15"; this.btnI15.UseUnderline = true; this.btnI15.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w56 = new global::Gtk.Image(); - this.btnI15.Image = w56; + global::Gtk.Image w57 = new global::Gtk.Image(); + this.btnI15.Image = w57; this.tbUI.Add(this.btnI15); - global::Gtk.Table.TableChild w57 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI15])); - w57.TopAttach = ((uint)(3)); - w57.BottomAttach = ((uint)(4)); - w57.LeftAttach = ((uint)(19)); - w57.RightAttach = ((uint)(20)); - w57.XOptions = ((global::Gtk.AttachOptions)(4)); - w57.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w58 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI15])); + w58.TopAttach = ((uint)(3)); + w58.BottomAttach = ((uint)(4)); + w58.LeftAttach = ((uint)(19)); + w58.RightAttach = ((uint)(20)); + w58.XOptions = ((global::Gtk.AttachOptions)(4)); + w58.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI16 = new global::Gtk.Button(); this.btnI16.WidthRequest = 50; @@ -867,16 +884,16 @@ namespace Mundus.Views.Windows this.btnI16.Name = "btnI16"; this.btnI16.UseUnderline = true; this.btnI16.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w58 = new global::Gtk.Image(); - this.btnI16.Image = w58; + global::Gtk.Image w59 = new global::Gtk.Image(); + this.btnI16.Image = w59; this.tbUI.Add(this.btnI16); - global::Gtk.Table.TableChild w59 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI16])); - w59.TopAttach = ((uint)(4)); - w59.BottomAttach = ((uint)(5)); - w59.LeftAttach = ((uint)(15)); - w59.RightAttach = ((uint)(16)); - w59.XOptions = ((global::Gtk.AttachOptions)(4)); - w59.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w60 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI16])); + w60.TopAttach = ((uint)(4)); + w60.BottomAttach = ((uint)(5)); + w60.LeftAttach = ((uint)(15)); + w60.RightAttach = ((uint)(16)); + w60.XOptions = ((global::Gtk.AttachOptions)(4)); + w60.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI17 = new global::Gtk.Button(); this.btnI17.WidthRequest = 50; @@ -885,16 +902,16 @@ namespace Mundus.Views.Windows this.btnI17.Name = "btnI17"; this.btnI17.UseUnderline = true; this.btnI17.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w60 = new global::Gtk.Image(); - this.btnI17.Image = w60; + global::Gtk.Image w61 = new global::Gtk.Image(); + this.btnI17.Image = w61; this.tbUI.Add(this.btnI17); - global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI17])); - w61.TopAttach = ((uint)(4)); - w61.BottomAttach = ((uint)(5)); - w61.LeftAttach = ((uint)(16)); - w61.RightAttach = ((uint)(17)); - w61.XOptions = ((global::Gtk.AttachOptions)(4)); - w61.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w62 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI17])); + w62.TopAttach = ((uint)(4)); + w62.BottomAttach = ((uint)(5)); + w62.LeftAttach = ((uint)(16)); + w62.RightAttach = ((uint)(17)); + w62.XOptions = ((global::Gtk.AttachOptions)(4)); + w62.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI18 = new global::Gtk.Button(); this.btnI18.WidthRequest = 50; @@ -903,16 +920,16 @@ namespace Mundus.Views.Windows this.btnI18.Name = "btnI18"; this.btnI18.UseUnderline = true; this.btnI18.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w62 = new global::Gtk.Image(); - this.btnI18.Image = w62; + global::Gtk.Image w63 = new global::Gtk.Image(); + this.btnI18.Image = w63; this.tbUI.Add(this.btnI18); - global::Gtk.Table.TableChild w63 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI18])); - w63.TopAttach = ((uint)(4)); - w63.BottomAttach = ((uint)(5)); - w63.LeftAttach = ((uint)(17)); - w63.RightAttach = ((uint)(18)); - w63.XOptions = ((global::Gtk.AttachOptions)(4)); - w63.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w64 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI18])); + w64.TopAttach = ((uint)(4)); + w64.BottomAttach = ((uint)(5)); + w64.LeftAttach = ((uint)(17)); + w64.RightAttach = ((uint)(18)); + w64.XOptions = ((global::Gtk.AttachOptions)(4)); + w64.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI19 = new global::Gtk.Button(); this.btnI19.WidthRequest = 50; @@ -921,16 +938,16 @@ namespace Mundus.Views.Windows this.btnI19.Name = "btnI19"; this.btnI19.UseUnderline = true; this.btnI19.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w64 = new global::Gtk.Image(); - this.btnI19.Image = w64; + global::Gtk.Image w65 = new global::Gtk.Image(); + this.btnI19.Image = w65; this.tbUI.Add(this.btnI19); - global::Gtk.Table.TableChild w65 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI19])); - w65.TopAttach = ((uint)(4)); - w65.BottomAttach = ((uint)(5)); - w65.LeftAttach = ((uint)(18)); - w65.RightAttach = ((uint)(19)); - w65.XOptions = ((global::Gtk.AttachOptions)(4)); - w65.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w66 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI19])); + w66.TopAttach = ((uint)(4)); + w66.BottomAttach = ((uint)(5)); + w66.LeftAttach = ((uint)(18)); + w66.RightAttach = ((uint)(19)); + w66.XOptions = ((global::Gtk.AttachOptions)(4)); + w66.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI2 = new global::Gtk.Button(); this.btnI2.WidthRequest = 50; @@ -939,16 +956,16 @@ namespace Mundus.Views.Windows this.btnI2.Name = "btnI2"; this.btnI2.UseUnderline = true; this.btnI2.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w66 = new global::Gtk.Image(); - this.btnI2.Image = w66; + global::Gtk.Image w67 = new global::Gtk.Image(); + this.btnI2.Image = w67; this.tbUI.Add(this.btnI2); - global::Gtk.Table.TableChild w67 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI2])); - w67.TopAttach = ((uint)(1)); - w67.BottomAttach = ((uint)(2)); - w67.LeftAttach = ((uint)(16)); - w67.RightAttach = ((uint)(17)); - w67.XOptions = ((global::Gtk.AttachOptions)(4)); - w67.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w68 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI2])); + w68.TopAttach = ((uint)(1)); + w68.BottomAttach = ((uint)(2)); + w68.LeftAttach = ((uint)(16)); + w68.RightAttach = ((uint)(17)); + w68.XOptions = ((global::Gtk.AttachOptions)(4)); + w68.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI20 = new global::Gtk.Button(); this.btnI20.WidthRequest = 50; @@ -957,16 +974,16 @@ namespace Mundus.Views.Windows this.btnI20.Name = "btnI20"; this.btnI20.UseUnderline = true; this.btnI20.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w68 = new global::Gtk.Image(); - this.btnI20.Image = w68; + global::Gtk.Image w69 = new global::Gtk.Image(); + this.btnI20.Image = w69; this.tbUI.Add(this.btnI20); - global::Gtk.Table.TableChild w69 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI20])); - w69.TopAttach = ((uint)(4)); - w69.BottomAttach = ((uint)(5)); - w69.LeftAttach = ((uint)(19)); - w69.RightAttach = ((uint)(20)); - w69.XOptions = ((global::Gtk.AttachOptions)(4)); - w69.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w70 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI20])); + w70.TopAttach = ((uint)(4)); + w70.BottomAttach = ((uint)(5)); + w70.LeftAttach = ((uint)(19)); + w70.RightAttach = ((uint)(20)); + w70.XOptions = ((global::Gtk.AttachOptions)(4)); + w70.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI21 = new global::Gtk.Button(); this.btnI21.WidthRequest = 50; @@ -975,16 +992,16 @@ namespace Mundus.Views.Windows this.btnI21.Name = "btnI21"; this.btnI21.UseUnderline = true; this.btnI21.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w70 = new global::Gtk.Image(); - this.btnI21.Image = w70; + global::Gtk.Image w71 = new global::Gtk.Image(); + this.btnI21.Image = w71; this.tbUI.Add(this.btnI21); - global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI21])); - w71.TopAttach = ((uint)(5)); - w71.BottomAttach = ((uint)(6)); - w71.LeftAttach = ((uint)(15)); - w71.RightAttach = ((uint)(16)); - w71.XOptions = ((global::Gtk.AttachOptions)(4)); - w71.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w72 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI21])); + w72.TopAttach = ((uint)(5)); + w72.BottomAttach = ((uint)(6)); + w72.LeftAttach = ((uint)(15)); + w72.RightAttach = ((uint)(16)); + w72.XOptions = ((global::Gtk.AttachOptions)(4)); + w72.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI22 = new global::Gtk.Button(); this.btnI22.WidthRequest = 50; @@ -993,16 +1010,16 @@ namespace Mundus.Views.Windows this.btnI22.Name = "btnI22"; this.btnI22.UseUnderline = true; this.btnI22.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w72 = new global::Gtk.Image(); - this.btnI22.Image = w72; + global::Gtk.Image w73 = new global::Gtk.Image(); + this.btnI22.Image = w73; this.tbUI.Add(this.btnI22); - global::Gtk.Table.TableChild w73 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI22])); - w73.TopAttach = ((uint)(5)); - w73.BottomAttach = ((uint)(6)); - w73.LeftAttach = ((uint)(16)); - w73.RightAttach = ((uint)(17)); - w73.XOptions = ((global::Gtk.AttachOptions)(4)); - w73.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w74 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI22])); + w74.TopAttach = ((uint)(5)); + w74.BottomAttach = ((uint)(6)); + w74.LeftAttach = ((uint)(16)); + w74.RightAttach = ((uint)(17)); + w74.XOptions = ((global::Gtk.AttachOptions)(4)); + w74.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI23 = new global::Gtk.Button(); this.btnI23.WidthRequest = 50; @@ -1011,16 +1028,16 @@ namespace Mundus.Views.Windows this.btnI23.Name = "btnI23"; this.btnI23.UseUnderline = true; this.btnI23.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w74 = new global::Gtk.Image(); - this.btnI23.Image = w74; + global::Gtk.Image w75 = new global::Gtk.Image(); + this.btnI23.Image = w75; this.tbUI.Add(this.btnI23); - global::Gtk.Table.TableChild w75 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI23])); - w75.TopAttach = ((uint)(5)); - w75.BottomAttach = ((uint)(6)); - w75.LeftAttach = ((uint)(17)); - w75.RightAttach = ((uint)(18)); - w75.XOptions = ((global::Gtk.AttachOptions)(4)); - w75.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w76 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI23])); + w76.TopAttach = ((uint)(5)); + w76.BottomAttach = ((uint)(6)); + w76.LeftAttach = ((uint)(17)); + w76.RightAttach = ((uint)(18)); + w76.XOptions = ((global::Gtk.AttachOptions)(4)); + w76.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI24 = new global::Gtk.Button(); this.btnI24.WidthRequest = 50; @@ -1029,16 +1046,16 @@ namespace Mundus.Views.Windows this.btnI24.Name = "btnI24"; this.btnI24.UseUnderline = true; this.btnI24.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w76 = new global::Gtk.Image(); - this.btnI24.Image = w76; + global::Gtk.Image w77 = new global::Gtk.Image(); + this.btnI24.Image = w77; this.tbUI.Add(this.btnI24); - global::Gtk.Table.TableChild w77 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI24])); - w77.TopAttach = ((uint)(5)); - w77.BottomAttach = ((uint)(6)); - w77.LeftAttach = ((uint)(18)); - w77.RightAttach = ((uint)(19)); - w77.XOptions = ((global::Gtk.AttachOptions)(4)); - w77.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w78 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI24])); + w78.TopAttach = ((uint)(5)); + w78.BottomAttach = ((uint)(6)); + w78.LeftAttach = ((uint)(18)); + w78.RightAttach = ((uint)(19)); + w78.XOptions = ((global::Gtk.AttachOptions)(4)); + w78.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI25 = new global::Gtk.Button(); this.btnI25.WidthRequest = 50; @@ -1047,16 +1064,16 @@ namespace Mundus.Views.Windows this.btnI25.Name = "btnI25"; this.btnI25.UseUnderline = true; this.btnI25.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w78 = new global::Gtk.Image(); - this.btnI25.Image = w78; + global::Gtk.Image w79 = new global::Gtk.Image(); + this.btnI25.Image = w79; this.tbUI.Add(this.btnI25); - global::Gtk.Table.TableChild w79 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI25])); - w79.TopAttach = ((uint)(5)); - w79.BottomAttach = ((uint)(6)); - w79.LeftAttach = ((uint)(19)); - w79.RightAttach = ((uint)(20)); - w79.XOptions = ((global::Gtk.AttachOptions)(4)); - w79.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w80 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI25])); + w80.TopAttach = ((uint)(5)); + w80.BottomAttach = ((uint)(6)); + w80.LeftAttach = ((uint)(19)); + w80.RightAttach = ((uint)(20)); + w80.XOptions = ((global::Gtk.AttachOptions)(4)); + w80.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI3 = new global::Gtk.Button(); this.btnI3.WidthRequest = 50; @@ -1065,16 +1082,16 @@ namespace Mundus.Views.Windows this.btnI3.Name = "btnI3"; this.btnI3.UseUnderline = true; this.btnI3.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w80 = new global::Gtk.Image(); - this.btnI3.Image = w80; + global::Gtk.Image w81 = new global::Gtk.Image(); + this.btnI3.Image = w81; this.tbUI.Add(this.btnI3); - global::Gtk.Table.TableChild w81 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI3])); - w81.TopAttach = ((uint)(1)); - w81.BottomAttach = ((uint)(2)); - w81.LeftAttach = ((uint)(17)); - w81.RightAttach = ((uint)(18)); - w81.XOptions = ((global::Gtk.AttachOptions)(4)); - w81.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w82 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI3])); + w82.TopAttach = ((uint)(1)); + w82.BottomAttach = ((uint)(2)); + w82.LeftAttach = ((uint)(17)); + w82.RightAttach = ((uint)(18)); + w82.XOptions = ((global::Gtk.AttachOptions)(4)); + w82.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI4 = new global::Gtk.Button(); this.btnI4.WidthRequest = 50; @@ -1083,16 +1100,16 @@ namespace Mundus.Views.Windows this.btnI4.Name = "btnI4"; this.btnI4.UseUnderline = true; this.btnI4.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w82 = new global::Gtk.Image(); - this.btnI4.Image = w82; + global::Gtk.Image w83 = new global::Gtk.Image(); + this.btnI4.Image = w83; this.tbUI.Add(this.btnI4); - global::Gtk.Table.TableChild w83 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI4])); - w83.TopAttach = ((uint)(1)); - w83.BottomAttach = ((uint)(2)); - w83.LeftAttach = ((uint)(18)); - w83.RightAttach = ((uint)(19)); - w83.XOptions = ((global::Gtk.AttachOptions)(4)); - w83.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w84 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI4])); + w84.TopAttach = ((uint)(1)); + w84.BottomAttach = ((uint)(2)); + w84.LeftAttach = ((uint)(18)); + w84.RightAttach = ((uint)(19)); + w84.XOptions = ((global::Gtk.AttachOptions)(4)); + w84.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI5 = new global::Gtk.Button(); this.btnI5.WidthRequest = 50; @@ -1101,16 +1118,16 @@ namespace Mundus.Views.Windows this.btnI5.Name = "btnI5"; this.btnI5.UseUnderline = true; this.btnI5.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w84 = new global::Gtk.Image(); - this.btnI5.Image = w84; + global::Gtk.Image w85 = new global::Gtk.Image(); + this.btnI5.Image = w85; this.tbUI.Add(this.btnI5); - global::Gtk.Table.TableChild w85 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI5])); - w85.TopAttach = ((uint)(1)); - w85.BottomAttach = ((uint)(2)); - w85.LeftAttach = ((uint)(19)); - w85.RightAttach = ((uint)(20)); - w85.XOptions = ((global::Gtk.AttachOptions)(4)); - w85.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w86 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI5])); + w86.TopAttach = ((uint)(1)); + w86.BottomAttach = ((uint)(2)); + w86.LeftAttach = ((uint)(19)); + w86.RightAttach = ((uint)(20)); + w86.XOptions = ((global::Gtk.AttachOptions)(4)); + w86.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI6 = new global::Gtk.Button(); this.btnI6.WidthRequest = 50; @@ -1119,16 +1136,16 @@ namespace Mundus.Views.Windows this.btnI6.Name = "btnI6"; this.btnI6.UseUnderline = true; this.btnI6.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w86 = new global::Gtk.Image(); - this.btnI6.Image = w86; + global::Gtk.Image w87 = new global::Gtk.Image(); + this.btnI6.Image = w87; this.tbUI.Add(this.btnI6); - global::Gtk.Table.TableChild w87 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI6])); - w87.TopAttach = ((uint)(2)); - w87.BottomAttach = ((uint)(3)); - w87.LeftAttach = ((uint)(15)); - w87.RightAttach = ((uint)(16)); - w87.XOptions = ((global::Gtk.AttachOptions)(4)); - w87.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w88 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI6])); + w88.TopAttach = ((uint)(2)); + w88.BottomAttach = ((uint)(3)); + w88.LeftAttach = ((uint)(15)); + w88.RightAttach = ((uint)(16)); + w88.XOptions = ((global::Gtk.AttachOptions)(4)); + w88.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI7 = new global::Gtk.Button(); this.btnI7.WidthRequest = 50; @@ -1137,16 +1154,16 @@ namespace Mundus.Views.Windows this.btnI7.Name = "btnI7"; this.btnI7.UseUnderline = true; this.btnI7.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w88 = new global::Gtk.Image(); - this.btnI7.Image = w88; + global::Gtk.Image w89 = new global::Gtk.Image(); + this.btnI7.Image = w89; this.tbUI.Add(this.btnI7); - global::Gtk.Table.TableChild w89 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI7])); - w89.TopAttach = ((uint)(2)); - w89.BottomAttach = ((uint)(3)); - w89.LeftAttach = ((uint)(16)); - w89.RightAttach = ((uint)(17)); - w89.XOptions = ((global::Gtk.AttachOptions)(4)); - w89.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w90 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI7])); + w90.TopAttach = ((uint)(2)); + w90.BottomAttach = ((uint)(3)); + w90.LeftAttach = ((uint)(16)); + w90.RightAttach = ((uint)(17)); + w90.XOptions = ((global::Gtk.AttachOptions)(4)); + w90.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI8 = new global::Gtk.Button(); this.btnI8.WidthRequest = 50; @@ -1155,16 +1172,16 @@ namespace Mundus.Views.Windows this.btnI8.Name = "btnI8"; this.btnI8.UseUnderline = true; this.btnI8.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w90 = new global::Gtk.Image(); - this.btnI8.Image = w90; + global::Gtk.Image w91 = new global::Gtk.Image(); + this.btnI8.Image = w91; this.tbUI.Add(this.btnI8); - global::Gtk.Table.TableChild w91 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI8])); - w91.TopAttach = ((uint)(2)); - w91.BottomAttach = ((uint)(3)); - w91.LeftAttach = ((uint)(17)); - w91.RightAttach = ((uint)(18)); - w91.XOptions = ((global::Gtk.AttachOptions)(4)); - w91.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w92 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI8])); + w92.TopAttach = ((uint)(2)); + w92.BottomAttach = ((uint)(3)); + w92.LeftAttach = ((uint)(17)); + w92.RightAttach = ((uint)(18)); + w92.XOptions = ((global::Gtk.AttachOptions)(4)); + w92.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI9 = new global::Gtk.Button(); this.btnI9.WidthRequest = 50; @@ -1173,16 +1190,16 @@ namespace Mundus.Views.Windows this.btnI9.Name = "btnI9"; this.btnI9.UseUnderline = true; this.btnI9.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w92 = new global::Gtk.Image(); - this.btnI9.Image = w92; + global::Gtk.Image w93 = new global::Gtk.Image(); + this.btnI9.Image = w93; this.tbUI.Add(this.btnI9); - global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI9])); - w93.TopAttach = ((uint)(2)); - w93.BottomAttach = ((uint)(3)); - w93.LeftAttach = ((uint)(18)); - w93.RightAttach = ((uint)(19)); - w93.XOptions = ((global::Gtk.AttachOptions)(4)); - w93.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w94 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI9])); + w94.TopAttach = ((uint)(2)); + w94.BottomAttach = ((uint)(3)); + w94.LeftAttach = ((uint)(18)); + w94.RightAttach = ((uint)(19)); + w94.XOptions = ((global::Gtk.AttachOptions)(4)); + w94.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnIG1 = new global::Gtk.Button(); this.btnIG1.WidthRequest = 50; @@ -1190,16 +1207,16 @@ namespace Mundus.Views.Windows this.btnIG1.CanFocus = true; this.btnIG1.Name = "btnIG1"; this.btnIG1.UseUnderline = true; - global::Gtk.Image w94 = new global::Gtk.Image(); - this.btnIG1.Image = w94; + global::Gtk.Image w95 = new global::Gtk.Image(); + this.btnIG1.Image = w95; this.tbUI.Add(this.btnIG1); - global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG1])); - 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)); + global::Gtk.Table.TableChild w96 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG1])); + w96.TopAttach = ((uint)(13)); + w96.BottomAttach = ((uint)(14)); + w96.LeftAttach = ((uint)(15)); + w96.RightAttach = ((uint)(16)); + w96.XOptions = ((global::Gtk.AttachOptions)(4)); + w96.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnIG2 = new global::Gtk.Button(); this.btnIG2.WidthRequest = 50; @@ -1207,16 +1224,16 @@ namespace Mundus.Views.Windows this.btnIG2.CanFocus = true; this.btnIG2.Name = "btnIG2"; this.btnIG2.UseUnderline = true; - global::Gtk.Image w96 = new global::Gtk.Image(); - this.btnIG2.Image = w96; + global::Gtk.Image w97 = new global::Gtk.Image(); + this.btnIG2.Image = w97; this.tbUI.Add(this.btnIG2); - 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)); + global::Gtk.Table.TableChild w98 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG2])); + w98.TopAttach = ((uint)(13)); + w98.BottomAttach = ((uint)(14)); + w98.LeftAttach = ((uint)(16)); + w98.RightAttach = ((uint)(17)); + w98.XOptions = ((global::Gtk.AttachOptions)(4)); + w98.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnIM1 = new global::Gtk.Button(); this.btnIM1.WidthRequest = 50; @@ -1226,13 +1243,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 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)); + global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIM1])); + w99.TopAttach = ((uint)(15)); + w99.BottomAttach = ((uint)(16)); + w99.LeftAttach = ((uint)(1)); + w99.RightAttach = ((uint)(2)); + w99.XOptions = ((global::Gtk.AttachOptions)(4)); + w99.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnIM2 = new global::Gtk.Button(); this.btnIM2.WidthRequest = 50; @@ -1242,13 +1259,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 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)); + global::Gtk.Table.TableChild w100 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIM2])); + w100.TopAttach = ((uint)(15)); + w100.BottomAttach = ((uint)(16)); + w100.LeftAttach = ((uint)(3)); + w100.RightAttach = ((uint)(4)); + w100.XOptions = ((global::Gtk.AttachOptions)(4)); + w100.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnIM3 = new global::Gtk.Button(); this.btnIM3.WidthRequest = 50; @@ -1258,13 +1275,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 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)); + global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIM3])); + w101.TopAttach = ((uint)(15)); + w101.BottomAttach = ((uint)(16)); + w101.LeftAttach = ((uint)(5)); + w101.RightAttach = ((uint)(6)); + w101.XOptions = ((global::Gtk.AttachOptions)(4)); + w101.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnInv = new global::Gtk.Button(); this.btnInv.WidthRequest = 50; @@ -1274,13 +1291,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 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)); + global::Gtk.Table.TableChild w102 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); + w102.TopAttach = ((uint)(9)); + w102.BottomAttach = ((uint)(10)); + w102.LeftAttach = ((uint)(13)); + w102.RightAttach = ((uint)(14)); + w102.XOptions = ((global::Gtk.AttachOptions)(4)); + w102.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnMap = new global::Gtk.Button(); this.btnMap.WidthRequest = 50; @@ -1290,13 +1307,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 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)); + global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); + w103.TopAttach = ((uint)(9)); + w103.BottomAttach = ((uint)(10)); + 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.btnMusic = new global::Gtk.Button(); this.btnMusic.WidthRequest = 50; @@ -1306,13 +1323,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 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)); + global::Gtk.Table.TableChild w104 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); + w104.TopAttach = ((uint)(11)); + w104.BottomAttach = ((uint)(12)); + w104.LeftAttach = ((uint)(7)); + w104.RightAttach = ((uint)(8)); + w104.XOptions = ((global::Gtk.AttachOptions)(4)); + w104.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP1 = new global::Gtk.Button(); this.btnP1.WidthRequest = 50; @@ -1321,16 +1338,16 @@ namespace Mundus.Views.Windows this.btnP1.Name = "btnP1"; this.btnP1.UseUnderline = true; this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w104 = new global::Gtk.Image(); - this.btnP1.Image = w104; + global::Gtk.Image w105 = new global::Gtk.Image(); + this.btnP1.Image = w105; this.tbUI.Add(this.btnP1); - 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)); + global::Gtk.Table.TableChild w106 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); + w106.TopAttach = ((uint)(1)); + w106.BottomAttach = ((uint)(2)); + w106.LeftAttach = ((uint)(8)); + w106.RightAttach = ((uint)(9)); + w106.XOptions = ((global::Gtk.AttachOptions)(4)); + w106.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP10 = new global::Gtk.Button(); this.btnP10.WidthRequest = 50; @@ -1339,16 +1356,16 @@ namespace Mundus.Views.Windows this.btnP10.Name = "btnP10"; this.btnP10.UseUnderline = true; this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w106 = new global::Gtk.Image(); - this.btnP10.Image = w106; + global::Gtk.Image w107 = new global::Gtk.Image(); + this.btnP10.Image = w107; this.tbUI.Add(this.btnP10); - 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)); + global::Gtk.Table.TableChild w108 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); + w108.TopAttach = ((uint)(2)); + w108.BottomAttach = ((uint)(3)); + w108.LeftAttach = ((uint)(12)); + w108.RightAttach = ((uint)(13)); + w108.XOptions = ((global::Gtk.AttachOptions)(4)); + w108.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP11 = new global::Gtk.Button(); this.btnP11.WidthRequest = 50; @@ -1357,16 +1374,16 @@ namespace Mundus.Views.Windows this.btnP11.Name = "btnP11"; this.btnP11.UseUnderline = true; this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w108 = new global::Gtk.Image(); - this.btnP11.Image = w108; + global::Gtk.Image w109 = new global::Gtk.Image(); + this.btnP11.Image = w109; this.tbUI.Add(this.btnP11); - 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)); + global::Gtk.Table.TableChild w110 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); + w110.TopAttach = ((uint)(3)); + w110.BottomAttach = ((uint)(4)); + w110.LeftAttach = ((uint)(8)); + w110.RightAttach = ((uint)(9)); + w110.XOptions = ((global::Gtk.AttachOptions)(4)); + w110.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP12 = new global::Gtk.Button(); this.btnP12.WidthRequest = 50; @@ -1375,16 +1392,16 @@ namespace Mundus.Views.Windows this.btnP12.Name = "btnP12"; this.btnP12.UseUnderline = true; this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w110 = new global::Gtk.Image(); - this.btnP12.Image = w110; + global::Gtk.Image w111 = new global::Gtk.Image(); + this.btnP12.Image = w111; this.tbUI.Add(this.btnP12); - 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)); + global::Gtk.Table.TableChild w112 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); + w112.TopAttach = ((uint)(3)); + w112.BottomAttach = ((uint)(4)); + w112.LeftAttach = ((uint)(9)); + w112.RightAttach = ((uint)(10)); + w112.XOptions = ((global::Gtk.AttachOptions)(4)); + w112.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP13 = new global::Gtk.Button(); this.btnP13.WidthRequest = 50; @@ -1393,16 +1410,16 @@ namespace Mundus.Views.Windows this.btnP13.Name = "btnP13"; this.btnP13.UseUnderline = true; this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w112 = new global::Gtk.Image(); - this.btnP13.Image = w112; + global::Gtk.Image w113 = new global::Gtk.Image(); + this.btnP13.Image = w113; this.tbUI.Add(this.btnP13); - 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)); + global::Gtk.Table.TableChild w114 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); + w114.TopAttach = ((uint)(3)); + w114.BottomAttach = ((uint)(4)); + w114.LeftAttach = ((uint)(10)); + w114.RightAttach = ((uint)(11)); + w114.XOptions = ((global::Gtk.AttachOptions)(4)); + w114.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP14 = new global::Gtk.Button(); this.btnP14.WidthRequest = 50; @@ -1411,16 +1428,16 @@ namespace Mundus.Views.Windows this.btnP14.Name = "btnP14"; this.btnP14.UseUnderline = true; this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w114 = new global::Gtk.Image(); - this.btnP14.Image = w114; + global::Gtk.Image w115 = new global::Gtk.Image(); + this.btnP14.Image = w115; this.tbUI.Add(this.btnP14); - 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)); + global::Gtk.Table.TableChild w116 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); + w116.TopAttach = ((uint)(3)); + w116.BottomAttach = ((uint)(4)); + w116.LeftAttach = ((uint)(11)); + w116.RightAttach = ((uint)(12)); + w116.XOptions = ((global::Gtk.AttachOptions)(4)); + w116.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP15 = new global::Gtk.Button(); this.btnP15.WidthRequest = 50; @@ -1429,16 +1446,16 @@ namespace Mundus.Views.Windows this.btnP15.Name = "btnP15"; this.btnP15.UseUnderline = true; this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w116 = new global::Gtk.Image(); - this.btnP15.Image = w116; + global::Gtk.Image w117 = new global::Gtk.Image(); + this.btnP15.Image = w117; this.tbUI.Add(this.btnP15); - 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)); + global::Gtk.Table.TableChild w118 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); + w118.TopAttach = ((uint)(3)); + w118.BottomAttach = ((uint)(4)); + w118.LeftAttach = ((uint)(12)); + w118.RightAttach = ((uint)(13)); + w118.XOptions = ((global::Gtk.AttachOptions)(4)); + w118.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP16 = new global::Gtk.Button(); this.btnP16.WidthRequest = 50; @@ -1447,16 +1464,16 @@ namespace Mundus.Views.Windows this.btnP16.Name = "btnP16"; this.btnP16.UseUnderline = true; this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w118 = new global::Gtk.Image(); - this.btnP16.Image = w118; + global::Gtk.Image w119 = new global::Gtk.Image(); + this.btnP16.Image = w119; this.tbUI.Add(this.btnP16); - 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)); + global::Gtk.Table.TableChild w120 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); + w120.TopAttach = ((uint)(4)); + w120.BottomAttach = ((uint)(5)); + w120.LeftAttach = ((uint)(8)); + w120.RightAttach = ((uint)(9)); + w120.XOptions = ((global::Gtk.AttachOptions)(4)); + w120.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP17 = new global::Gtk.Button(); this.btnP17.WidthRequest = 50; @@ -1465,16 +1482,16 @@ namespace Mundus.Views.Windows this.btnP17.Name = "btnP17"; this.btnP17.UseUnderline = true; this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w120 = new global::Gtk.Image(); - this.btnP17.Image = w120; + global::Gtk.Image w121 = new global::Gtk.Image(); + this.btnP17.Image = w121; this.tbUI.Add(this.btnP17); - 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)); + global::Gtk.Table.TableChild w122 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); + w122.TopAttach = ((uint)(4)); + w122.BottomAttach = ((uint)(5)); + w122.LeftAttach = ((uint)(9)); + w122.RightAttach = ((uint)(10)); + w122.XOptions = ((global::Gtk.AttachOptions)(4)); + w122.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP18 = new global::Gtk.Button(); this.btnP18.WidthRequest = 50; @@ -1483,16 +1500,16 @@ namespace Mundus.Views.Windows this.btnP18.Name = "btnP18"; this.btnP18.UseUnderline = true; this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w122 = new global::Gtk.Image(); - this.btnP18.Image = w122; + global::Gtk.Image w123 = new global::Gtk.Image(); + this.btnP18.Image = w123; this.tbUI.Add(this.btnP18); - 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)); + global::Gtk.Table.TableChild w124 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); + w124.TopAttach = ((uint)(4)); + w124.BottomAttach = ((uint)(5)); + w124.LeftAttach = ((uint)(10)); + w124.RightAttach = ((uint)(11)); + w124.XOptions = ((global::Gtk.AttachOptions)(4)); + w124.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP19 = new global::Gtk.Button(); this.btnP19.WidthRequest = 50; @@ -1501,16 +1518,16 @@ namespace Mundus.Views.Windows this.btnP19.Name = "btnP19"; this.btnP19.UseUnderline = true; this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w124 = new global::Gtk.Image(); - this.btnP19.Image = w124; + global::Gtk.Image w125 = new global::Gtk.Image(); + this.btnP19.Image = w125; this.tbUI.Add(this.btnP19); - 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)); + global::Gtk.Table.TableChild w126 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); + w126.TopAttach = ((uint)(4)); + w126.BottomAttach = ((uint)(5)); + w126.LeftAttach = ((uint)(11)); + w126.RightAttach = ((uint)(12)); + w126.XOptions = ((global::Gtk.AttachOptions)(4)); + w126.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP2 = new global::Gtk.Button(); this.btnP2.WidthRequest = 50; @@ -1519,16 +1536,16 @@ namespace Mundus.Views.Windows this.btnP2.Name = "btnP2"; this.btnP2.UseUnderline = true; this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w126 = new global::Gtk.Image(); - this.btnP2.Image = w126; + global::Gtk.Image w127 = new global::Gtk.Image(); + this.btnP2.Image = w127; this.tbUI.Add(this.btnP2); - 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)); + global::Gtk.Table.TableChild w128 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); + w128.TopAttach = ((uint)(1)); + w128.BottomAttach = ((uint)(2)); + w128.LeftAttach = ((uint)(9)); + w128.RightAttach = ((uint)(10)); + w128.XOptions = ((global::Gtk.AttachOptions)(4)); + w128.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP20 = new global::Gtk.Button(); this.btnP20.WidthRequest = 50; @@ -1537,16 +1554,16 @@ namespace Mundus.Views.Windows this.btnP20.Name = "btnP20"; this.btnP20.UseUnderline = true; this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w128 = new global::Gtk.Image(); - this.btnP20.Image = w128; + global::Gtk.Image w129 = new global::Gtk.Image(); + this.btnP20.Image = w129; this.tbUI.Add(this.btnP20); - 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)); + global::Gtk.Table.TableChild w130 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); + w130.TopAttach = ((uint)(4)); + w130.BottomAttach = ((uint)(5)); + w130.LeftAttach = ((uint)(12)); + w130.RightAttach = ((uint)(13)); + w130.XOptions = ((global::Gtk.AttachOptions)(4)); + w130.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP21 = new global::Gtk.Button(); this.btnP21.WidthRequest = 50; @@ -1555,16 +1572,16 @@ namespace Mundus.Views.Windows this.btnP21.Name = "btnP21"; this.btnP21.UseUnderline = true; this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w130 = new global::Gtk.Image(); - this.btnP21.Image = w130; + global::Gtk.Image w131 = new global::Gtk.Image(); + this.btnP21.Image = w131; this.tbUI.Add(this.btnP21); - 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)); + global::Gtk.Table.TableChild w132 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); + w132.TopAttach = ((uint)(5)); + w132.BottomAttach = ((uint)(6)); + w132.LeftAttach = ((uint)(8)); + w132.RightAttach = ((uint)(9)); + w132.XOptions = ((global::Gtk.AttachOptions)(4)); + w132.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP22 = new global::Gtk.Button(); this.btnP22.WidthRequest = 50; @@ -1573,16 +1590,16 @@ namespace Mundus.Views.Windows this.btnP22.Name = "btnP22"; this.btnP22.UseUnderline = true; this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w132 = new global::Gtk.Image(); - this.btnP22.Image = w132; + global::Gtk.Image w133 = new global::Gtk.Image(); + this.btnP22.Image = w133; this.tbUI.Add(this.btnP22); - 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)); + global::Gtk.Table.TableChild w134 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); + w134.TopAttach = ((uint)(5)); + w134.BottomAttach = ((uint)(6)); + w134.LeftAttach = ((uint)(9)); + w134.RightAttach = ((uint)(10)); + w134.XOptions = ((global::Gtk.AttachOptions)(4)); + w134.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP23 = new global::Gtk.Button(); this.btnP23.WidthRequest = 50; @@ -1591,16 +1608,16 @@ namespace Mundus.Views.Windows this.btnP23.Name = "btnP23"; this.btnP23.UseUnderline = true; this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w134 = new global::Gtk.Image(); - this.btnP23.Image = w134; + global::Gtk.Image w135 = new global::Gtk.Image(); + this.btnP23.Image = w135; this.tbUI.Add(this.btnP23); - 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)); + global::Gtk.Table.TableChild w136 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); + w136.TopAttach = ((uint)(5)); + w136.BottomAttach = ((uint)(6)); + w136.LeftAttach = ((uint)(10)); + w136.RightAttach = ((uint)(11)); + w136.XOptions = ((global::Gtk.AttachOptions)(4)); + w136.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP24 = new global::Gtk.Button(); this.btnP24.WidthRequest = 50; @@ -1609,16 +1626,16 @@ namespace Mundus.Views.Windows this.btnP24.Name = "btnP24"; this.btnP24.UseUnderline = true; this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w136 = new global::Gtk.Image(); - this.btnP24.Image = w136; + global::Gtk.Image w137 = new global::Gtk.Image(); + this.btnP24.Image = w137; this.tbUI.Add(this.btnP24); - 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)); + global::Gtk.Table.TableChild w138 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); + w138.TopAttach = ((uint)(5)); + w138.BottomAttach = ((uint)(6)); + w138.LeftAttach = ((uint)(11)); + w138.RightAttach = ((uint)(12)); + w138.XOptions = ((global::Gtk.AttachOptions)(4)); + w138.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP25 = new global::Gtk.Button(); this.btnP25.WidthRequest = 50; @@ -1627,16 +1644,16 @@ namespace Mundus.Views.Windows this.btnP25.Name = "btnP25"; this.btnP25.UseUnderline = true; this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w138 = new global::Gtk.Image(); - this.btnP25.Image = w138; + global::Gtk.Image w139 = new global::Gtk.Image(); + this.btnP25.Image = w139; this.tbUI.Add(this.btnP25); - 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)); + global::Gtk.Table.TableChild w140 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); + w140.TopAttach = ((uint)(5)); + w140.BottomAttach = ((uint)(6)); + w140.LeftAttach = ((uint)(12)); + w140.RightAttach = ((uint)(13)); + w140.XOptions = ((global::Gtk.AttachOptions)(4)); + w140.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP3 = new global::Gtk.Button(); this.btnP3.WidthRequest = 50; @@ -1645,16 +1662,16 @@ namespace Mundus.Views.Windows this.btnP3.Name = "btnP3"; this.btnP3.UseUnderline = true; this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w140 = new global::Gtk.Image(); - this.btnP3.Image = w140; + global::Gtk.Image w141 = new global::Gtk.Image(); + this.btnP3.Image = w141; this.tbUI.Add(this.btnP3); - 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)); + global::Gtk.Table.TableChild w142 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); + w142.TopAttach = ((uint)(1)); + w142.BottomAttach = ((uint)(2)); + w142.LeftAttach = ((uint)(10)); + w142.RightAttach = ((uint)(11)); + w142.XOptions = ((global::Gtk.AttachOptions)(4)); + w142.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP4 = new global::Gtk.Button(); this.btnP4.WidthRequest = 50; @@ -1663,16 +1680,16 @@ namespace Mundus.Views.Windows this.btnP4.Name = "btnP4"; this.btnP4.UseUnderline = true; this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w142 = new global::Gtk.Image(); - this.btnP4.Image = w142; + global::Gtk.Image w143 = new global::Gtk.Image(); + this.btnP4.Image = w143; this.tbUI.Add(this.btnP4); - 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)); + global::Gtk.Table.TableChild w144 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); + w144.TopAttach = ((uint)(1)); + w144.BottomAttach = ((uint)(2)); + w144.LeftAttach = ((uint)(11)); + w144.RightAttach = ((uint)(12)); + w144.XOptions = ((global::Gtk.AttachOptions)(4)); + w144.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP5 = new global::Gtk.Button(); this.btnP5.WidthRequest = 50; @@ -1681,16 +1698,16 @@ namespace Mundus.Views.Windows this.btnP5.Name = "btnP5"; this.btnP5.UseUnderline = true; this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w144 = new global::Gtk.Image(); - this.btnP5.Image = w144; + global::Gtk.Image w145 = new global::Gtk.Image(); + this.btnP5.Image = w145; this.tbUI.Add(this.btnP5); - 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)); + global::Gtk.Table.TableChild w146 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); + w146.TopAttach = ((uint)(1)); + w146.BottomAttach = ((uint)(2)); + w146.LeftAttach = ((uint)(12)); + w146.RightAttach = ((uint)(13)); + w146.XOptions = ((global::Gtk.AttachOptions)(4)); + w146.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP6 = new global::Gtk.Button(); this.btnP6.WidthRequest = 50; @@ -1699,16 +1716,16 @@ namespace Mundus.Views.Windows this.btnP6.Name = "btnP6"; this.btnP6.UseUnderline = true; this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w146 = new global::Gtk.Image(); - this.btnP6.Image = w146; + global::Gtk.Image w147 = new global::Gtk.Image(); + this.btnP6.Image = w147; this.tbUI.Add(this.btnP6); - 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)); + global::Gtk.Table.TableChild w148 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); + w148.TopAttach = ((uint)(2)); + w148.BottomAttach = ((uint)(3)); + w148.LeftAttach = ((uint)(8)); + w148.RightAttach = ((uint)(9)); + w148.XOptions = ((global::Gtk.AttachOptions)(4)); + w148.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP7 = new global::Gtk.Button(); this.btnP7.WidthRequest = 50; @@ -1717,16 +1734,16 @@ namespace Mundus.Views.Windows this.btnP7.Name = "btnP7"; this.btnP7.UseUnderline = true; this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w148 = new global::Gtk.Image(); - this.btnP7.Image = w148; + global::Gtk.Image w149 = new global::Gtk.Image(); + this.btnP7.Image = w149; this.tbUI.Add(this.btnP7); - 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)); + global::Gtk.Table.TableChild w150 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); + w150.TopAttach = ((uint)(2)); + w150.BottomAttach = ((uint)(3)); + w150.LeftAttach = ((uint)(9)); + w150.RightAttach = ((uint)(10)); + w150.XOptions = ((global::Gtk.AttachOptions)(4)); + w150.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP8 = new global::Gtk.Button(); this.btnP8.WidthRequest = 50; @@ -1735,16 +1752,16 @@ namespace Mundus.Views.Windows this.btnP8.Name = "btnP8"; this.btnP8.UseUnderline = true; this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w150 = new global::Gtk.Image(); - this.btnP8.Image = w150; + global::Gtk.Image w151 = new global::Gtk.Image(); + this.btnP8.Image = w151; this.tbUI.Add(this.btnP8); - 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)); + global::Gtk.Table.TableChild w152 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); + w152.TopAttach = ((uint)(2)); + w152.BottomAttach = ((uint)(3)); + w152.LeftAttach = ((uint)(10)); + w152.RightAttach = ((uint)(11)); + w152.XOptions = ((global::Gtk.AttachOptions)(4)); + w152.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP9 = new global::Gtk.Button(); this.btnP9.WidthRequest = 50; @@ -1753,16 +1770,16 @@ namespace Mundus.Views.Windows this.btnP9.Name = "btnP9"; this.btnP9.UseUnderline = true; this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w152 = new global::Gtk.Image(); - this.btnP9.Image = w152; + global::Gtk.Image w153 = new global::Gtk.Image(); + this.btnP9.Image = w153; this.tbUI.Add(this.btnP9); - 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)); + global::Gtk.Table.TableChild w154 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); + w154.TopAttach = ((uint)(2)); + w154.BottomAttach = ((uint)(3)); + w154.LeftAttach = ((uint)(11)); + w154.RightAttach = ((uint)(12)); + w154.XOptions = ((global::Gtk.AttachOptions)(4)); + w154.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnPause = new global::Gtk.Button(); this.btnPause.WidthRequest = 50; @@ -1772,868 +1789,869 @@ 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 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)); + global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); + w155.TopAttach = ((uint)(11)); + w155.BottomAttach = ((uint)(12)); + w155.LeftAttach = ((uint)(13)); + w155.RightAttach = ((uint)(14)); + w155.XOptions = ((global::Gtk.AttachOptions)(4)); + w155.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 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)); + global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); + w156.TopAttach = ((uint)(2)); + w156.BottomAttach = ((uint)(3)); + w156.LeftAttach = ((uint)(1)); + w156.RightAttach = ((uint)(2)); + w156.XOptions = ((global::Gtk.AttachOptions)(4)); + w156.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG10 = new global::Gtk.Image(); this.imgG10.Name = "imgG10"; this.tbUI.Add(this.imgG10); - 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)); + global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); + w157.TopAttach = ((uint)(3)); + w157.BottomAttach = ((uint)(4)); + w157.LeftAttach = ((uint)(5)); + w157.RightAttach = ((uint)(6)); + w157.XOptions = ((global::Gtk.AttachOptions)(4)); + w157.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 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 w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); + global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); w158.TopAttach = ((uint)(4)); w158.BottomAttach = ((uint)(5)); - w158.LeftAttach = ((uint)(2)); - w158.RightAttach = ((uint)(3)); + w158.LeftAttach = ((uint)(1)); + w158.RightAttach = ((uint)(2)); 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 w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); + this.imgG12 = new global::Gtk.Image(); + this.imgG12.Name = "imgG12"; + this.tbUI.Add(this.imgG12); + global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); w159.TopAttach = ((uint)(4)); w159.BottomAttach = ((uint)(5)); - w159.LeftAttach = ((uint)(3)); - w159.RightAttach = ((uint)(4)); + w159.LeftAttach = ((uint)(2)); + w159.RightAttach = ((uint)(3)); 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 w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); + this.imgG13 = new global::Gtk.Image(); + this.imgG13.Name = "imgG13"; + this.tbUI.Add(this.imgG13); + global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); w160.TopAttach = ((uint)(4)); w160.BottomAttach = ((uint)(5)); - w160.LeftAttach = ((uint)(4)); - w160.RightAttach = ((uint)(5)); + w160.LeftAttach = ((uint)(3)); + w160.RightAttach = ((uint)(4)); 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 w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + this.imgG14 = new global::Gtk.Image(); + this.imgG14.Name = "imgG14"; + this.tbUI.Add(this.imgG14); + global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); w161.TopAttach = ((uint)(4)); w161.BottomAttach = ((uint)(5)); - w161.LeftAttach = ((uint)(5)); - w161.RightAttach = ((uint)(6)); + w161.LeftAttach = ((uint)(4)); + w161.RightAttach = ((uint)(5)); w161.XOptions = ((global::Gtk.AttachOptions)(4)); w161.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 w162 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + w162.TopAttach = ((uint)(4)); + w162.BottomAttach = ((uint)(5)); + w162.LeftAttach = ((uint)(5)); + w162.RightAttach = ((uint)(6)); + w162.XOptions = ((global::Gtk.AttachOptions)(4)); + w162.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 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 w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); + global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); w163.TopAttach = ((uint)(5)); w163.BottomAttach = ((uint)(6)); - w163.LeftAttach = ((uint)(2)); - w163.RightAttach = ((uint)(3)); + w163.LeftAttach = ((uint)(1)); + w163.RightAttach = ((uint)(2)); 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 w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); + this.imgG17 = new global::Gtk.Image(); + this.imgG17.HeightRequest = 50; + this.imgG17.Name = "imgG17"; + this.tbUI.Add(this.imgG17); + global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); w164.TopAttach = ((uint)(5)); w164.BottomAttach = ((uint)(6)); - w164.LeftAttach = ((uint)(3)); - w164.RightAttach = ((uint)(4)); + w164.LeftAttach = ((uint)(2)); + w164.RightAttach = ((uint)(3)); 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 w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + this.imgG18 = new global::Gtk.Image(); + this.imgG18.HeightRequest = 50; + this.imgG18.Name = "imgG18"; + this.tbUI.Add(this.imgG18); + global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); w165.TopAttach = ((uint)(5)); w165.BottomAttach = ((uint)(6)); - w165.LeftAttach = ((uint)(4)); - w165.RightAttach = ((uint)(5)); + w165.LeftAttach = ((uint)(3)); + w165.RightAttach = ((uint)(4)); w165.XOptions = ((global::Gtk.AttachOptions)(4)); w165.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 w166 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + w166.TopAttach = ((uint)(5)); + w166.BottomAttach = ((uint)(6)); + w166.LeftAttach = ((uint)(4)); + w166.RightAttach = ((uint)(5)); + w166.XOptions = ((global::Gtk.AttachOptions)(4)); + w166.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 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)); + global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); + w167.TopAttach = ((uint)(2)); + w167.BottomAttach = ((uint)(3)); + w167.LeftAttach = ((uint)(2)); + w167.RightAttach = ((uint)(3)); + w167.XOptions = ((global::Gtk.AttachOptions)(4)); + w167.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 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)); + global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); + w168.TopAttach = ((uint)(5)); + w168.BottomAttach = ((uint)(6)); + w168.LeftAttach = ((uint)(5)); + w168.RightAttach = ((uint)(6)); + w168.XOptions = ((global::Gtk.AttachOptions)(4)); + w168.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 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 w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); + global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); w169.TopAttach = ((uint)(6)); w169.BottomAttach = ((uint)(7)); - w169.LeftAttach = ((uint)(2)); - w169.RightAttach = ((uint)(3)); + w169.LeftAttach = ((uint)(1)); + w169.RightAttach = ((uint)(2)); 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 w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); + this.imgG22 = new global::Gtk.Image(); + this.imgG22.Name = "imgG22"; + this.tbUI.Add(this.imgG22); + global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); w170.TopAttach = ((uint)(6)); w170.BottomAttach = ((uint)(7)); - w170.LeftAttach = ((uint)(3)); - w170.RightAttach = ((uint)(4)); + w170.LeftAttach = ((uint)(2)); + w170.RightAttach = ((uint)(3)); 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 w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); + this.imgG23 = new global::Gtk.Image(); + this.imgG23.Name = "imgG23"; + this.tbUI.Add(this.imgG23); + global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); w171.TopAttach = ((uint)(6)); w171.BottomAttach = ((uint)(7)); - w171.LeftAttach = ((uint)(4)); - w171.RightAttach = ((uint)(5)); + w171.LeftAttach = ((uint)(3)); + w171.RightAttach = ((uint)(4)); 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 w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + this.imgG24 = new global::Gtk.Image(); + this.imgG24.Name = "imgG24"; + this.tbUI.Add(this.imgG24); + global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); w172.TopAttach = ((uint)(6)); w172.BottomAttach = ((uint)(7)); - w172.LeftAttach = ((uint)(5)); - w172.RightAttach = ((uint)(6)); + w172.LeftAttach = ((uint)(4)); + w172.RightAttach = ((uint)(5)); 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 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)); + this.imgG25 = new global::Gtk.Image(); + this.imgG25.Name = "imgG25"; + this.tbUI.Add(this.imgG25); + global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + w173.TopAttach = ((uint)(6)); + w173.BottomAttach = ((uint)(7)); + w173.LeftAttach = ((uint)(5)); + w173.RightAttach = ((uint)(6)); 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 w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); + this.imgG3 = new global::Gtk.Image(); + this.imgG3.Name = "imgG3"; + this.tbUI.Add(this.imgG3); + global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); w174.TopAttach = ((uint)(2)); w174.BottomAttach = ((uint)(3)); - w174.LeftAttach = ((uint)(4)); - w174.RightAttach = ((uint)(5)); + w174.LeftAttach = ((uint)(3)); + w174.RightAttach = ((uint)(4)); 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 w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + this.imgG4 = new global::Gtk.Image(); + this.imgG4.Name = "imgG4"; + this.tbUI.Add(this.imgG4); + global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); w175.TopAttach = ((uint)(2)); w175.BottomAttach = ((uint)(3)); - w175.LeftAttach = ((uint)(5)); - w175.RightAttach = ((uint)(6)); + w175.LeftAttach = ((uint)(4)); + w175.RightAttach = ((uint)(5)); w175.XOptions = ((global::Gtk.AttachOptions)(4)); w175.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 w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + w176.TopAttach = ((uint)(2)); + w176.BottomAttach = ((uint)(3)); + w176.LeftAttach = ((uint)(5)); + w176.RightAttach = ((uint)(6)); + w176.XOptions = ((global::Gtk.AttachOptions)(4)); + w176.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 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 w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); + global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); w177.TopAttach = ((uint)(3)); w177.BottomAttach = ((uint)(4)); - w177.LeftAttach = ((uint)(2)); - w177.RightAttach = ((uint)(3)); + w177.LeftAttach = ((uint)(1)); + w177.RightAttach = ((uint)(2)); 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 w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); + this.imgG7 = new global::Gtk.Image(); + this.imgG7.Name = "imgG7"; + this.tbUI.Add(this.imgG7); + global::Gtk.Table.TableChild w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); w178.TopAttach = ((uint)(3)); w178.BottomAttach = ((uint)(4)); - w178.LeftAttach = ((uint)(3)); - w178.RightAttach = ((uint)(4)); + w178.LeftAttach = ((uint)(2)); + w178.RightAttach = ((uint)(3)); 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 w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + this.imgG8 = new global::Gtk.Image(); + this.imgG8.Name = "imgG8"; + this.tbUI.Add(this.imgG8); + global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); w179.TopAttach = ((uint)(3)); w179.BottomAttach = ((uint)(4)); - w179.LeftAttach = ((uint)(4)); - w179.RightAttach = ((uint)(5)); + w179.LeftAttach = ((uint)(3)); + w179.RightAttach = ((uint)(4)); w179.XOptions = ((global::Gtk.AttachOptions)(4)); w179.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 w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + w180.TopAttach = ((uint)(3)); + w180.BottomAttach = ((uint)(4)); + w180.LeftAttach = ((uint)(4)); + w180.RightAttach = ((uint)(5)); + w180.XOptions = ((global::Gtk.AttachOptions)(4)); + w180.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 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)); + global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w181.TopAttach = ((uint)(10)); + w181.BottomAttach = ((uint)(11)); + w181.LeftAttach = ((uint)(1)); + w181.RightAttach = ((uint)(2)); + w181.XOptions = ((global::Gtk.AttachOptions)(4)); + w181.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); + w182.TopAttach = ((uint)(11)); + w182.BottomAttach = ((uint)(12)); + w182.LeftAttach = ((uint)(5)); + w182.RightAttach = ((uint)(6)); + w182.XOptions = ((global::Gtk.AttachOptions)(4)); + w182.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 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)); + global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); + w183.TopAttach = ((uint)(12)); + w183.BottomAttach = ((uint)(13)); + w183.LeftAttach = ((uint)(1)); + w183.RightAttach = ((uint)(2)); + w183.XOptions = ((global::Gtk.AttachOptions)(4)); + w183.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 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)); + global::Gtk.Table.TableChild w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); + w184.TopAttach = ((uint)(12)); + w184.BottomAttach = ((uint)(13)); + w184.LeftAttach = ((uint)(2)); + w184.RightAttach = ((uint)(3)); + w184.XOptions = ((global::Gtk.AttachOptions)(4)); + w184.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 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)); + global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); + w185.TopAttach = ((uint)(12)); + w185.BottomAttach = ((uint)(13)); + w185.LeftAttach = ((uint)(3)); + w185.RightAttach = ((uint)(4)); + w185.XOptions = ((global::Gtk.AttachOptions)(4)); + w185.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 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)); + global::Gtk.Table.TableChild w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); + w186.TopAttach = ((uint)(12)); + w186.BottomAttach = ((uint)(13)); + w186.LeftAttach = ((uint)(4)); + w186.RightAttach = ((uint)(5)); + w186.XOptions = ((global::Gtk.AttachOptions)(4)); + w186.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 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)); + global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); + w187.TopAttach = ((uint)(12)); + w187.BottomAttach = ((uint)(13)); + w187.LeftAttach = ((uint)(5)); + w187.RightAttach = ((uint)(6)); + w187.XOptions = ((global::Gtk.AttachOptions)(4)); + w187.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 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)); + global::Gtk.Table.TableChild w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); + w188.TopAttach = ((uint)(13)); + w188.BottomAttach = ((uint)(14)); + w188.LeftAttach = ((uint)(1)); + w188.RightAttach = ((uint)(2)); + w188.XOptions = ((global::Gtk.AttachOptions)(4)); + w188.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 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)); + global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); + w189.TopAttach = ((uint)(13)); + w189.BottomAttach = ((uint)(14)); + w189.LeftAttach = ((uint)(2)); + w189.RightAttach = ((uint)(3)); + w189.XOptions = ((global::Gtk.AttachOptions)(4)); + w189.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 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)); + global::Gtk.Table.TableChild w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); + w190.TopAttach = ((uint)(13)); + w190.BottomAttach = ((uint)(14)); + w190.LeftAttach = ((uint)(3)); + w190.RightAttach = ((uint)(4)); + w190.XOptions = ((global::Gtk.AttachOptions)(4)); + w190.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 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)); + global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); + w191.TopAttach = ((uint)(13)); + w191.BottomAttach = ((uint)(14)); + w191.LeftAttach = ((uint)(4)); + w191.RightAttach = ((uint)(5)); + w191.XOptions = ((global::Gtk.AttachOptions)(4)); + w191.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 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)); + global::Gtk.Table.TableChild w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w192.TopAttach = ((uint)(10)); + w192.BottomAttach = ((uint)(11)); + w192.LeftAttach = ((uint)(2)); + w192.RightAttach = ((uint)(3)); + w192.XOptions = ((global::Gtk.AttachOptions)(4)); + w192.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 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)); + global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); + w193.TopAttach = ((uint)(13)); + w193.BottomAttach = ((uint)(14)); + w193.LeftAttach = ((uint)(5)); + w193.RightAttach = ((uint)(6)); + w193.XOptions = ((global::Gtk.AttachOptions)(4)); + w193.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 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)); + global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); + w194.TopAttach = ((uint)(14)); + w194.BottomAttach = ((uint)(15)); + w194.LeftAttach = ((uint)(1)); + w194.RightAttach = ((uint)(2)); + w194.XOptions = ((global::Gtk.AttachOptions)(4)); + w194.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 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)); + global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); + w195.TopAttach = ((uint)(14)); + w195.BottomAttach = ((uint)(15)); + w195.LeftAttach = ((uint)(2)); + w195.RightAttach = ((uint)(3)); + w195.XOptions = ((global::Gtk.AttachOptions)(4)); + w195.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 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)); + global::Gtk.Table.TableChild w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); + w196.TopAttach = ((uint)(14)); + w196.BottomAttach = ((uint)(15)); + w196.LeftAttach = ((uint)(3)); + w196.RightAttach = ((uint)(4)); + w196.XOptions = ((global::Gtk.AttachOptions)(4)); + w196.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 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)); + global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); + w197.TopAttach = ((uint)(14)); + w197.BottomAttach = ((uint)(15)); + w197.LeftAttach = ((uint)(4)); + w197.RightAttach = ((uint)(5)); + w197.XOptions = ((global::Gtk.AttachOptions)(4)); + w197.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 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)); + global::Gtk.Table.TableChild w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); + w198.TopAttach = ((uint)(14)); + w198.BottomAttach = ((uint)(15)); + w198.LeftAttach = ((uint)(5)); + w198.RightAttach = ((uint)(6)); + w198.XOptions = ((global::Gtk.AttachOptions)(4)); + w198.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 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)); + global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w199.TopAttach = ((uint)(10)); + w199.BottomAttach = ((uint)(11)); + w199.LeftAttach = ((uint)(3)); + w199.RightAttach = ((uint)(4)); + w199.XOptions = ((global::Gtk.AttachOptions)(4)); + w199.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 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)); + global::Gtk.Table.TableChild w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w200.TopAttach = ((uint)(10)); + w200.BottomAttach = ((uint)(11)); + w200.LeftAttach = ((uint)(4)); + w200.RightAttach = ((uint)(5)); + w200.XOptions = ((global::Gtk.AttachOptions)(4)); + w200.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 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)); + global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w201.TopAttach = ((uint)(10)); + w201.BottomAttach = ((uint)(11)); + w201.LeftAttach = ((uint)(5)); + w201.RightAttach = ((uint)(6)); + w201.XOptions = ((global::Gtk.AttachOptions)(4)); + w201.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 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)); + global::Gtk.Table.TableChild w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); + w202.TopAttach = ((uint)(11)); + w202.BottomAttach = ((uint)(12)); + w202.LeftAttach = ((uint)(1)); + w202.RightAttach = ((uint)(2)); + w202.XOptions = ((global::Gtk.AttachOptions)(4)); + w202.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 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)); + global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); + w203.TopAttach = ((uint)(11)); + w203.BottomAttach = ((uint)(12)); + w203.LeftAttach = ((uint)(2)); + w203.RightAttach = ((uint)(3)); + w203.XOptions = ((global::Gtk.AttachOptions)(4)); + w203.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 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)); + global::Gtk.Table.TableChild w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); + w204.TopAttach = ((uint)(11)); + w204.BottomAttach = ((uint)(12)); + w204.LeftAttach = ((uint)(3)); + w204.RightAttach = ((uint)(4)); + w204.XOptions = ((global::Gtk.AttachOptions)(4)); + w204.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 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)); + global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); + w205.TopAttach = ((uint)(11)); + w205.BottomAttach = ((uint)(12)); + w205.LeftAttach = ((uint)(4)); + w205.RightAttach = ((uint)(5)); + w205.XOptions = ((global::Gtk.AttachOptions)(4)); + w205.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)); + global::Gtk.Table.TableChild w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); + w206.TopAttach = ((uint)(14)); + w206.BottomAttach = ((uint)(15)); + w206.LeftAttach = ((uint)(17)); + w206.RightAttach = ((uint)(18)); + w206.XOptions = ((global::Gtk.AttachOptions)(4)); + w206.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 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)); + global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); + w207.TopAttach = ((uint)(7)); + w207.BottomAttach = ((uint)(8)); + w207.LeftAttach = ((uint)(8)); + w207.RightAttach = ((uint)(9)); + w207.XOptions = ((global::Gtk.AttachOptions)(4)); + w207.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 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)); + global::Gtk.Table.TableChild w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); + w208.TopAttach = ((uint)(8)); + w208.BottomAttach = ((uint)(9)); + w208.LeftAttach = ((uint)(12)); + w208.RightAttach = ((uint)(13)); + w208.XOptions = ((global::Gtk.AttachOptions)(4)); + w208.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 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)); + global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); + w209.TopAttach = ((uint)(7)); + w209.BottomAttach = ((uint)(8)); + w209.LeftAttach = ((uint)(9)); + w209.RightAttach = ((uint)(10)); + w209.XOptions = ((global::Gtk.AttachOptions)(4)); + w209.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 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)); + global::Gtk.Table.TableChild w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); + w210.TopAttach = ((uint)(7)); + w210.BottomAttach = ((uint)(8)); + w210.LeftAttach = ((uint)(10)); + w210.RightAttach = ((uint)(11)); + w210.XOptions = ((global::Gtk.AttachOptions)(4)); + w210.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 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)); + global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); + w211.TopAttach = ((uint)(7)); + w211.BottomAttach = ((uint)(8)); + w211.LeftAttach = ((uint)(11)); + w211.RightAttach = ((uint)(12)); + w211.XOptions = ((global::Gtk.AttachOptions)(4)); + w211.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 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)); + global::Gtk.Table.TableChild w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); + w212.TopAttach = ((uint)(7)); + w212.BottomAttach = ((uint)(8)); + w212.LeftAttach = ((uint)(12)); + w212.RightAttach = ((uint)(13)); + w212.XOptions = ((global::Gtk.AttachOptions)(4)); + w212.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 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)); + global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); + w213.TopAttach = ((uint)(8)); + w213.BottomAttach = ((uint)(9)); + w213.LeftAttach = ((uint)(8)); + w213.RightAttach = ((uint)(9)); + w213.XOptions = ((global::Gtk.AttachOptions)(4)); + w213.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 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)); + global::Gtk.Table.TableChild w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); + w214.TopAttach = ((uint)(8)); + w214.BottomAttach = ((uint)(9)); + w214.LeftAttach = ((uint)(9)); + w214.RightAttach = ((uint)(10)); + w214.XOptions = ((global::Gtk.AttachOptions)(4)); + w214.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 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)); + global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); + w215.TopAttach = ((uint)(8)); + w215.BottomAttach = ((uint)(9)); + w215.LeftAttach = ((uint)(10)); + w215.RightAttach = ((uint)(11)); + w215.XOptions = ((global::Gtk.AttachOptions)(4)); + w215.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 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)); + global::Gtk.Table.TableChild w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); + w216.TopAttach = ((uint)(8)); + w216.BottomAttach = ((uint)(9)); + w216.LeftAttach = ((uint)(11)); + w216.RightAttach = ((uint)(12)); + w216.XOptions = ((global::Gtk.AttachOptions)(4)); + w216.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.lblAccessories.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblAccessories); - 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)); + global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); + w217.TopAttach = ((uint)(8)); + w217.BottomAttach = ((uint)(9)); + w217.LeftAttach = ((uint)(15)); + w217.RightAttach = ((uint)(20)); + w217.XOptions = ((global::Gtk.AttachOptions)(4)); + w217.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 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)); + global::Gtk.Table.TableChild w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w218.TopAttach = ((uint)(3)); + w218.BottomAttach = ((uint)(4)); + w218.LeftAttach = ((uint)(6)); + w218.RightAttach = ((uint)(7)); + w218.XOptions = ((global::Gtk.AttachOptions)(4)); + w218.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 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)); + global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w219.TopAttach = ((uint)(6)); + w219.BottomAttach = ((uint)(7)); + w219.LeftAttach = ((uint)(10)); + w219.RightAttach = ((uint)(11)); + w219.XOptions = ((global::Gtk.AttachOptions)(4)); + w219.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w220.TopAttach = ((uint)(3)); + w220.BottomAttach = ((uint)(4)); + w220.LeftAttach = ((uint)(14)); + w220.RightAttach = ((uint)(15)); + w220.XOptions = ((global::Gtk.AttachOptions)(4)); + w220.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 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)); + global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w221.TopAttach = ((uint)(3)); + w221.BottomAttach = ((uint)(4)); + w221.LeftAttach = ((uint)(20)); + w221.RightAttach = ((uint)(21)); + w221.XOptions = ((global::Gtk.AttachOptions)(4)); + w221.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 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)); + global::Gtk.Table.TableChild w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w222.TopAttach = ((uint)(3)); + w222.BottomAttach = ((uint)(4)); + w222.XOptions = ((global::Gtk.AttachOptions)(4)); + w222.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 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)); + global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); + w223.TopAttach = ((uint)(16)); + w223.BottomAttach = ((uint)(17)); + 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.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 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)); + global::Gtk.Table.TableChild w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank9])); + w224.LeftAttach = ((uint)(10)); + w224.RightAttach = ((uint)(11)); + w224.XOptions = ((global::Gtk.AttachOptions)(4)); + w224.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblEventLog = new global::Gtk.Label(); this.lblEventLog.WidthRequest = 50; @@ -2641,38 +2659,39 @@ 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 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)); + global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); + w225.TopAttach = ((uint)(11)); + w225.BottomAttach = ((uint)(12)); + w225.LeftAttach = ((uint)(8)); + w225.RightAttach = ((uint)(13)); + w225.XOptions = ((global::Gtk.AttachOptions)(4)); + w225.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblGear = new global::Gtk.Label(); this.lblGear.HeightRequest = 50; this.lblGear.Name = "lblGear"; this.lblGear.LabelProp = global::Mono.Unix.Catalog.GetString("Gear"); + this.lblGear.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblGear); - 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)); + global::Gtk.Table.TableChild w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); + w226.TopAttach = ((uint)(11)); + w226.BottomAttach = ((uint)(12)); + w226.LeftAttach = ((uint)(15)); + w226.RightAttach = ((uint)(20)); + w226.XOptions = ((global::Gtk.AttachOptions)(4)); + w226.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); + w227.TopAttach = ((uint)(1)); + w227.BottomAttach = ((uint)(2)); + w227.LeftAttach = ((uint)(1)); + w227.RightAttach = ((uint)(6)); + w227.XOptions = ((global::Gtk.AttachOptions)(4)); + w227.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblHotbar = new global::Gtk.Label(); this.lblHotbar.WidthRequest = 50; @@ -2680,13 +2699,13 @@ 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 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)); + global::Gtk.Table.TableChild w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); + w228.TopAttach = ((uint)(9)); + w228.BottomAttach = ((uint)(10)); + w228.LeftAttach = ((uint)(8)); + w228.RightAttach = ((uint)(13)); + w228.XOptions = ((global::Gtk.AttachOptions)(4)); + w228.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblInfo = new global::Gtk.Label(); this.lblInfo.WidthRequest = 250; @@ -2695,77 +2714,77 @@ namespace Mundus.Views.Windows 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)); + global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); + w229.TopAttach = ((uint)(15)); + w229.BottomAttach = ((uint)(16)); + w229.LeftAttach = ((uint)(15)); + w229.RightAttach = ((uint)(20)); + w229.XOptions = ((global::Gtk.AttachOptions)(4)); + w229.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 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)); + global::Gtk.Table.TableChild w230 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); + w230.TopAttach = ((uint)(9)); + w230.BottomAttach = ((uint)(10)); + w230.LeftAttach = ((uint)(1)); + w230.RightAttach = ((uint)(6)); + w230.XOptions = ((global::Gtk.AttachOptions)(4)); + w230.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 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)); + global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); + w231.TopAttach = ((uint)(12)); + w231.BottomAttach = ((uint)(13)); + 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.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 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)); + global::Gtk.Table.TableChild w232 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); + w232.TopAttach = ((uint)(13)); + w232.BottomAttach = ((uint)(14)); + 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.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 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)); + global::Gtk.Table.TableChild w233 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); + w233.TopAttach = ((uint)(14)); + w233.BottomAttach = ((uint)(15)); + w233.LeftAttach = ((uint)(8)); + w233.RightAttach = ((uint)(13)); + w233.XOptions = ((global::Gtk.AttachOptions)(4)); + w233.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 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)); + global::Gtk.Table.TableChild w234 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); + w234.TopAttach = ((uint)(15)); + w234.BottomAttach = ((uint)(16)); + w234.LeftAttach = ((uint)(8)); + w234.RightAttach = ((uint)(13)); + w234.XOptions = ((global::Gtk.AttachOptions)(4)); + w234.YOptions = ((global::Gtk.AttachOptions)(4)); this.Add(this.tbUI); if ((this.Child != null)) { @@ -2841,6 +2860,7 @@ namespace Mundus.Views.Windows this.btnG3.Clicked += new global::System.EventHandler(this.OnBtnG3Clicked); this.btnG2.Clicked += new global::System.EventHandler(this.OnBtnG2Clicked); this.btnG1.Clicked += new global::System.EventHandler(this.OnBtnG1Clicked); + this.btnCrafting.Clicked += new global::System.EventHandler(this.OnBtnCraftingClicked); this.btnA9.Clicked += new global::System.EventHandler(this.OnBtnA9Clicked); this.btnA8.Clicked += new global::System.EventHandler(this.OnBtnA8Clicked); this.btnA7.Clicked += new global::System.EventHandler(this.OnBtnA7Clicked); diff --git a/Mundus/gtk-gui/gui.stetic b/Mundus/gtk-gui/gui.stetic index 4517ed3..3c7d38a 100644 --- a/Mundus/gtk-gui/gui.stetic +++ b/Mundus/gtk-gui/gui.stetic @@ -1252,21 +1252,6 @@ - - - - - - - - - - - - - - - @@ -1279,8 +1264,8 @@ - 8 - 9 + 9 + 10 15 16 True @@ -1306,8 +1291,8 @@ - 9 - 10 + 10 + 11 19 20 True @@ -1333,8 +1318,8 @@ - 8 - 9 + 9 + 10 16 17 True @@ -1360,8 +1345,8 @@ - 8 - 9 + 9 + 10 17 18 True @@ -1387,8 +1372,8 @@ - 8 - 9 + 9 + 10 18 19 True @@ -1414,8 +1399,8 @@ - 8 - 9 + 9 + 10 19 20 True @@ -1441,8 +1426,8 @@ - 9 - 10 + 10 + 11 15 16 True @@ -1468,8 +1453,8 @@ - 9 - 10 + 10 + 11 16 17 True @@ -1495,8 +1480,8 @@ - 9 - 10 + 10 + 11 17 18 True @@ -1522,8 +1507,8 @@ - 9 - 10 + 10 + 11 18 19 True @@ -1537,6 +1522,32 @@ False + + + + 50 + True + TextOnly + Crafting Menu + True + + + + 6 + 7 + 15 + 20 + True + Fill + Fill + False + True + False + False + True + False + + @@ -1549,8 +1560,8 @@ - 11 - 12 + 12 + 13 15 16 True @@ -1576,8 +1587,8 @@ - 11 - 12 + 12 + 13 16 17 True @@ -1603,8 +1614,8 @@ - 11 - 12 + 12 + 13 17 18 True @@ -1630,8 +1641,8 @@ - 11 - 12 + 12 + 13 18 19 True @@ -1657,8 +1668,8 @@ - 11 - 12 + 12 + 13 19 20 True @@ -2602,8 +2613,8 @@ - 12 - 13 + 13 + 14 15 16 True @@ -2629,8 +2640,8 @@ - 12 - 13 + 13 + 14 16 17 True @@ -4839,10 +4850,11 @@ 50 Accessories + Center - 7 - 8 + 8 + 9 15 20 True @@ -5034,10 +5046,11 @@ 50 Gear + Center - 10 - 11 + 11 + 12 15 20 True @@ -5614,12 +5627,744 @@ - + CraftingWindow CenterOnParent - + + + 11 + 7 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + False + True + TextOnly + Next + True + + + 7 + 8 + 4 + 5 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + False + True + TextOnly + Prev + True + + + 7 + 8 + 2 + 3 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + False + True + TextOnly + Craft + True + + + 9 + 10 + 1 + 6 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 1 + 2 + 4 + 5 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 2 + 3 + 4 + 5 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 3 + 4 + 4 + 5 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 4 + 5 + 4 + 5 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 5 + 6 + 4 + 5 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 7 + 8 + 3 + 4 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 1 + 2 + 3 + 4 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 2 + 3 + 3 + 4 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 3 + 4 + 3 + 4 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 4 + 5 + 3 + 4 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 5 + 6 + 3 + 4 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 10 + 50 + + + 5 + 6 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 10 + 50 + + + 5 + 6 + 6 + 7 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 10 + + + 3 + 4 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 10 + + + 10 + 11 + 3 + 4 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 5 + 6 + 1 + 2 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 5 + 6 + 5 + 6 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 50 + 50 + + + 6 + 7 + 3 + 4 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 0 + Center + + + 1 + 2 + 2 + 3 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 0 + Center + + + 2 + 3 + 2 + 3 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 0 + + + 3 + 4 + 2 + 3 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 0 + Center + + + 4 + 5 + 2 + 3 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 0 + Center + + + 5 + 6 + 2 + 3 + True + Fill + Fill + False + True + False + False + True + False + + + + + + 250 + 50 + Center + + + 8 + 9 + 1 + 6 + True + Fill + Fill + False + True + False + False + True + False + + + -- cgit v1.2.3