diff options
| -rw-r--r-- | Mundus/Data/Crafting/RI.cs | 12 | ||||
| -rw-r--r-- | Mundus/Data/Tiles/ToolTypes.cs | 2 | ||||
| -rw-r--r-- | Mundus/Icons/Land/Tools/stone_shovel.png | bin | 0 -> 4339 bytes | |||
| -rw-r--r-- | Mundus/Icons/Land/Tools/wooden_shovel.png | bin | 0 -> 4339 bytes | |||
| -rw-r--r-- | Mundus/Icons/Project files/stone_shovel.xcf | bin | 0 -> 2594 bytes | |||
| -rw-r--r-- | Mundus/Icons/Project files/wooden_shovel.xcf | bin | 0 -> 2643 bytes | |||
| -rw-r--r-- | Mundus/Mundus.csproj | 2 | ||||
| -rw-r--r-- | Mundus/Service/Tiles/ItemPresets/ToolPresets.cs | 8 | ||||
| -rw-r--r-- | Mundus/Views/Windows/SmallGameWindow.cs | 8 | ||||
| -rw-r--r-- | Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs | 2288 | ||||
| -rw-r--r-- | Mundus/gtk-gui/generated.cs | 4 | ||||
| -rw-r--r-- | Mundus/gtk-gui/gui.stetic | 184 |
12 files changed, 1140 insertions, 1368 deletions
diff --git a/Mundus/Data/Crafting/RI.cs b/Mundus/Data/Crafting/RI.cs index 18ba00d..7bdcf42 100644 --- a/Mundus/Data/Crafting/RI.cs +++ b/Mundus/Data/Crafting/RI.cs @@ -1,29 +1,31 @@ -using System; -using System.Collections.Generic; -using Mundus.Data.Tiles; +using System.Collections.Generic; using Mundus.Service.Crafting; using Mundus.Service.Tiles.ItemPresets; -using Mundus.Service.Tiles.Items; namespace Mundus.Data.Crafting { public static class RI { //short for Recipe Instances public static List<CraftingRecipe> AllRecipies { get; private set; } + public static CraftingRecipe WoodenShovel { get; private set; } public static CraftingRecipe WoodenPickaxe { get; private set; } public static CraftingRecipe WoodenAxe { get; private set; } + public static CraftingRecipe StoneShovel { get; private set; } public static CraftingRecipe StonePickAxe { get; private set; } public static CraftingRecipe StoneAxe { get; private set; } public static void CreateInstances() { + WoodenShovel = new CraftingRecipe(ToolPresets.GetAWoodenShovel(), 5, MaterialPresets.GetAStick()); WoodenPickaxe = new CraftingRecipe(ToolPresets.GetAWoodenPickaxe(), 4, MaterialPresets.GetAStick()); WoodenAxe = new CraftingRecipe(ToolPresets.GetAWoodenAxe(), 3, MaterialPresets.GetAStick()); + StoneShovel = new CraftingRecipe(ToolPresets.GetAStoneShovel(), 4, MaterialPresets.GetALandRock(), 2, MaterialPresets.GetAStick()); StonePickAxe = new CraftingRecipe(ToolPresets.GetAStonePickaxe(), 4, MaterialPresets.GetALandRock(), 2, MaterialPresets.GetAStick()); StoneAxe = new CraftingRecipe(ToolPresets.GetAStoneAxe(), 3, MaterialPresets.GetALandRock(), 2, MaterialPresets.GetAStick()); AllRecipies = new List<CraftingRecipe> { - WoodenPickaxe, WoodenAxe, StonePickAxe, StoneAxe + WoodenShovel, WoodenPickaxe, WoodenAxe, + StoneShovel, StonePickAxe, StoneAxe }; } } diff --git a/Mundus/Data/Tiles/ToolTypes.cs b/Mundus/Data/Tiles/ToolTypes.cs index f65c573..3548af7 100644 --- a/Mundus/Data/Tiles/ToolTypes.cs +++ b/Mundus/Data/Tiles/ToolTypes.cs @@ -1,6 +1,6 @@ namespace Mundus.Data.Tiles { public static class ToolTypes { - public static int Sword = 0; + public static int Shovel = 0; public static int Axe = 1; public static int Pickaxe = 2; } diff --git a/Mundus/Icons/Land/Tools/stone_shovel.png b/Mundus/Icons/Land/Tools/stone_shovel.png Binary files differnew file mode 100644 index 0000000..e771e3f --- /dev/null +++ b/Mundus/Icons/Land/Tools/stone_shovel.png diff --git a/Mundus/Icons/Land/Tools/wooden_shovel.png b/Mundus/Icons/Land/Tools/wooden_shovel.png Binary files differnew file mode 100644 index 0000000..1990a4f --- /dev/null +++ b/Mundus/Icons/Land/Tools/wooden_shovel.png diff --git a/Mundus/Icons/Project files/stone_shovel.xcf b/Mundus/Icons/Project files/stone_shovel.xcf Binary files differnew file mode 100644 index 0000000..294ebea --- /dev/null +++ b/Mundus/Icons/Project files/stone_shovel.xcf diff --git a/Mundus/Icons/Project files/wooden_shovel.xcf b/Mundus/Icons/Project files/wooden_shovel.xcf Binary files differnew file mode 100644 index 0000000..4e75ea0 --- /dev/null +++ b/Mundus/Icons/Project files/wooden_shovel.xcf diff --git a/Mundus/Mundus.csproj b/Mundus/Mundus.csproj index 5dca99b..aa75077 100644 --- a/Mundus/Mundus.csproj +++ b/Mundus/Mundus.csproj @@ -72,6 +72,8 @@ <EmbeddedResource Include="Icons\UI\Blanks\blank_multiplication.png" />
<EmbeddedResource Include="Icons\Land\Tools\wooden_axe.png" />
<EmbeddedResource Include="Icons\Land\Tools\wooden_pickaxe.png" />
+ <EmbeddedResource Include="Icons\Land\Tools\wooden_shovel.png" />
+ <EmbeddedResource Include="Icons\Land\Tools\stone_shovel.png" />
</ItemGroup>
<ItemGroup>
<Compile Include="gtk-gui\generated.cs" />
diff --git a/Mundus/Service/Tiles/ItemPresets/ToolPresets.cs b/Mundus/Service/Tiles/ItemPresets/ToolPresets.cs index cd4b6e0..b6ecddd 100644 --- a/Mundus/Service/Tiles/ItemPresets/ToolPresets.cs +++ b/Mundus/Service/Tiles/ItemPresets/ToolPresets.cs @@ -12,6 +12,10 @@ namespace Mundus.Service.Tiles.ItemPresets { return new Tool("wooden_axe", ToolTypes.Axe, 1); } + public static Tool GetAWoodenShovel() { + return new Tool("wooden_shovel", ToolTypes.Shovel, 1); + } + public static Tool GetAStonePickaxe() { return new Tool("stone_pickaxe", ToolTypes.Pickaxe, 2); } @@ -19,5 +23,9 @@ namespace Mundus.Service.Tiles.ItemPresets { public static Tool GetAStoneAxe() { return new Tool("stone_axe", ToolTypes.Axe, 2); } + + public static Tool GetAStoneShovel() { + return new Tool("stone_shovel", ToolTypes.Shovel, 2); + } } } diff --git a/Mundus/Views/Windows/SmallGameWindow.cs b/Mundus/Views/Windows/SmallGameWindow.cs index 1956e31..515db93 100644 --- a/Mundus/Views/Windows/SmallGameWindow.cs +++ b/Mundus/Views/Windows/SmallGameWindow.cs @@ -87,10 +87,6 @@ namespace Mundus.Views.Windows { imgG24.Visible = isVisible; imgG25.Visible = isVisible; - btnGM1.Visible = isVisible; - btnGM2.Visible = isVisible; - btnGM3.Visible = isVisible; - lblItemLayer.Visible = isVisible; imgI1.Visible = isVisible; imgI2.Visible = isVisible; @@ -118,10 +114,6 @@ namespace Mundus.Views.Windows { imgI24.Visible = isVisible; imgI25.Visible = isVisible; - btnIM1.Visible = isVisible; - btnIM2.Visible = isVisible; - btnIM3.Visible = isVisible; - lblBlank5.Visible = isVisible; } diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs index d694627..0e82868 100644 --- a/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs +++ b/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs @@ -38,12 +38,6 @@ namespace Mundus.Views.Windows private global::Gtk.Button btnG5; - private global::Gtk.Button btnGM1; - - private global::Gtk.Button btnGM2; - - private global::Gtk.Button btnGM3; - private global::Gtk.Button btnH1; private global::Gtk.Button btnH2; @@ -108,12 +102,6 @@ namespace Mundus.Views.Windows private global::Gtk.Button btnIG2; - private global::Gtk.Button btnIM1; - - private global::Gtk.Button btnIM2; - - private global::Gtk.Button btnIM3; - private global::Gtk.Button btnInv; private global::Gtk.Button btnMap; @@ -613,54 +601,6 @@ namespace Mundus.Views.Windows 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; - this.btnGM1.HeightRequest = 50; - this.btnGM1.CanFocus = true; - this.btnGM1.Name = "btnGM1"; - this.btnGM1.UseUnderline = true; - this.btnGM1.Label = global::Mono.Unix.Catalog.GetString("1:1"); - this.tbUI.Add(this.btnGM1); - 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; - this.btnGM2.HeightRequest = 50; - this.btnGM2.CanFocus = true; - this.btnGM2.Name = "btnGM2"; - this.btnGM2.UseUnderline = true; - this.btnGM2.Label = global::Mono.Unix.Catalog.GetString("1:5"); - this.tbUI.Add(this.btnGM2); - 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; - this.btnGM3.HeightRequest = 50; - this.btnGM3.CanFocus = true; - this.btnGM3.Name = "btnGM3"; - this.btnGM3.UseUnderline = true; - this.btnGM3.Label = global::Mono.Unix.Catalog.GetString("1:10"); - this.tbUI.Add(this.btnGM3); - 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; this.btnH1.HeightRequest = 50; @@ -668,16 +608,16 @@ namespace Mundus.Views.Windows this.btnH1.Name = "btnH1"; this.btnH1.UseUnderline = true; this.btnH1.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w35 = new global::Gtk.Image(); - this.btnH1.Image = w35; + global::Gtk.Image w32 = new global::Gtk.Image(); + this.btnH1.Image = w32; this.tbUI.Add(this.btnH1); - 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)); + global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH1])); + w33.TopAttach = ((uint)(10)); + w33.BottomAttach = ((uint)(11)); + w33.LeftAttach = ((uint)(8)); + w33.RightAttach = ((uint)(9)); + w33.XOptions = ((global::Gtk.AttachOptions)(4)); + w33.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnH2 = new global::Gtk.Button(); this.btnH2.WidthRequest = 50; @@ -686,16 +626,16 @@ namespace Mundus.Views.Windows this.btnH2.Name = "btnH2"; this.btnH2.UseUnderline = true; this.btnH2.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w37 = new global::Gtk.Image(); - this.btnH2.Image = w37; + global::Gtk.Image w34 = new global::Gtk.Image(); + this.btnH2.Image = w34; this.tbUI.Add(this.btnH2); - 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)); + global::Gtk.Table.TableChild w35 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH2])); + w35.TopAttach = ((uint)(10)); + w35.BottomAttach = ((uint)(11)); + w35.LeftAttach = ((uint)(9)); + w35.RightAttach = ((uint)(10)); + w35.XOptions = ((global::Gtk.AttachOptions)(4)); + w35.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnH3 = new global::Gtk.Button(); this.btnH3.WidthRequest = 50; @@ -704,16 +644,16 @@ namespace Mundus.Views.Windows this.btnH3.Name = "btnH3"; this.btnH3.UseUnderline = true; this.btnH3.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w39 = new global::Gtk.Image(); - this.btnH3.Image = w39; + global::Gtk.Image w36 = new global::Gtk.Image(); + this.btnH3.Image = w36; this.tbUI.Add(this.btnH3); - 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)); + global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH3])); + w37.TopAttach = ((uint)(10)); + w37.BottomAttach = ((uint)(11)); + w37.LeftAttach = ((uint)(10)); + w37.RightAttach = ((uint)(11)); + w37.XOptions = ((global::Gtk.AttachOptions)(4)); + w37.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnH4 = new global::Gtk.Button(); this.btnH4.WidthRequest = 50; @@ -722,16 +662,16 @@ namespace Mundus.Views.Windows this.btnH4.Name = "btnH4"; this.btnH4.UseUnderline = true; this.btnH4.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w41 = new global::Gtk.Image(); - this.btnH4.Image = w41; + global::Gtk.Image w38 = new global::Gtk.Image(); + this.btnH4.Image = w38; this.tbUI.Add(this.btnH4); - 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)); + global::Gtk.Table.TableChild w39 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH4])); + w39.TopAttach = ((uint)(10)); + w39.BottomAttach = ((uint)(11)); + w39.LeftAttach = ((uint)(11)); + w39.RightAttach = ((uint)(12)); + w39.XOptions = ((global::Gtk.AttachOptions)(4)); + w39.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnH5 = new global::Gtk.Button(); this.btnH5.WidthRequest = 50; @@ -740,16 +680,16 @@ namespace Mundus.Views.Windows this.btnH5.Name = "btnH5"; this.btnH5.UseUnderline = true; this.btnH5.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w43 = new global::Gtk.Image(); - this.btnH5.Image = w43; + global::Gtk.Image w40 = new global::Gtk.Image(); + this.btnH5.Image = w40; this.tbUI.Add(this.btnH5); - 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)); + global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnH5])); + w41.TopAttach = ((uint)(10)); + w41.BottomAttach = ((uint)(11)); + w41.LeftAttach = ((uint)(12)); + w41.RightAttach = ((uint)(13)); + w41.XOptions = ((global::Gtk.AttachOptions)(4)); + w41.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI1 = new global::Gtk.Button(); this.btnI1.WidthRequest = 50; @@ -758,16 +698,16 @@ namespace Mundus.Views.Windows this.btnI1.Name = "btnI1"; this.btnI1.UseUnderline = true; this.btnI1.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w45 = new global::Gtk.Image(); - this.btnI1.Image = w45; + global::Gtk.Image w42 = new global::Gtk.Image(); + this.btnI1.Image = w42; this.tbUI.Add(this.btnI1); - 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)); + global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI1])); + w43.TopAttach = ((uint)(1)); + w43.BottomAttach = ((uint)(2)); + w43.LeftAttach = ((uint)(15)); + w43.RightAttach = ((uint)(16)); + w43.XOptions = ((global::Gtk.AttachOptions)(4)); + w43.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI10 = new global::Gtk.Button(); this.btnI10.WidthRequest = 50; @@ -776,16 +716,16 @@ namespace Mundus.Views.Windows this.btnI10.Name = "btnI10"; this.btnI10.UseUnderline = true; this.btnI10.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w47 = new global::Gtk.Image(); - this.btnI10.Image = w47; + global::Gtk.Image w44 = new global::Gtk.Image(); + this.btnI10.Image = w44; this.tbUI.Add(this.btnI10); - 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)); + global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI10])); + w45.TopAttach = ((uint)(2)); + w45.BottomAttach = ((uint)(3)); + w45.LeftAttach = ((uint)(19)); + w45.RightAttach = ((uint)(20)); + w45.XOptions = ((global::Gtk.AttachOptions)(4)); + w45.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI11 = new global::Gtk.Button(); this.btnI11.WidthRequest = 50; @@ -794,16 +734,16 @@ namespace Mundus.Views.Windows this.btnI11.Name = "btnI11"; this.btnI11.UseUnderline = true; this.btnI11.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w49 = new global::Gtk.Image(); - this.btnI11.Image = w49; + global::Gtk.Image w46 = new global::Gtk.Image(); + this.btnI11.Image = w46; this.tbUI.Add(this.btnI11); - 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)); + global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI11])); + w47.TopAttach = ((uint)(3)); + w47.BottomAttach = ((uint)(4)); + w47.LeftAttach = ((uint)(15)); + w47.RightAttach = ((uint)(16)); + w47.XOptions = ((global::Gtk.AttachOptions)(4)); + w47.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI12 = new global::Gtk.Button(); this.btnI12.WidthRequest = 50; @@ -812,16 +752,16 @@ namespace Mundus.Views.Windows this.btnI12.Name = "btnI12"; this.btnI12.UseUnderline = true; this.btnI12.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w51 = new global::Gtk.Image(); - this.btnI12.Image = w51; + global::Gtk.Image w48 = new global::Gtk.Image(); + this.btnI12.Image = w48; this.tbUI.Add(this.btnI12); - 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)); + global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI12])); + w49.TopAttach = ((uint)(3)); + w49.BottomAttach = ((uint)(4)); + w49.LeftAttach = ((uint)(16)); + w49.RightAttach = ((uint)(17)); + w49.XOptions = ((global::Gtk.AttachOptions)(4)); + w49.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI13 = new global::Gtk.Button(); this.btnI13.WidthRequest = 50; @@ -830,16 +770,16 @@ namespace Mundus.Views.Windows this.btnI13.Name = "btnI13"; this.btnI13.UseUnderline = true; this.btnI13.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w53 = new global::Gtk.Image(); - this.btnI13.Image = w53; + global::Gtk.Image w50 = new global::Gtk.Image(); + this.btnI13.Image = w50; this.tbUI.Add(this.btnI13); - 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)); + global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI13])); + w51.TopAttach = ((uint)(3)); + w51.BottomAttach = ((uint)(4)); + w51.LeftAttach = ((uint)(17)); + w51.RightAttach = ((uint)(18)); + w51.XOptions = ((global::Gtk.AttachOptions)(4)); + w51.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI14 = new global::Gtk.Button(); this.btnI14.WidthRequest = 50; @@ -848,16 +788,16 @@ namespace Mundus.Views.Windows this.btnI14.Name = "btnI14"; this.btnI14.UseUnderline = true; this.btnI14.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w55 = new global::Gtk.Image(); - this.btnI14.Image = w55; + global::Gtk.Image w52 = new global::Gtk.Image(); + this.btnI14.Image = w52; this.tbUI.Add(this.btnI14); - 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)); + global::Gtk.Table.TableChild w53 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI14])); + w53.TopAttach = ((uint)(3)); + w53.BottomAttach = ((uint)(4)); + w53.LeftAttach = ((uint)(18)); + w53.RightAttach = ((uint)(19)); + w53.XOptions = ((global::Gtk.AttachOptions)(4)); + w53.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI15 = new global::Gtk.Button(); this.btnI15.WidthRequest = 50; @@ -866,16 +806,16 @@ namespace Mundus.Views.Windows this.btnI15.Name = "btnI15"; this.btnI15.UseUnderline = true; this.btnI15.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w57 = new global::Gtk.Image(); - this.btnI15.Image = w57; + global::Gtk.Image w54 = new global::Gtk.Image(); + this.btnI15.Image = w54; this.tbUI.Add(this.btnI15); - 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)); + global::Gtk.Table.TableChild w55 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI15])); + w55.TopAttach = ((uint)(3)); + w55.BottomAttach = ((uint)(4)); + w55.LeftAttach = ((uint)(19)); + w55.RightAttach = ((uint)(20)); + w55.XOptions = ((global::Gtk.AttachOptions)(4)); + w55.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI16 = new global::Gtk.Button(); this.btnI16.WidthRequest = 50; @@ -884,16 +824,16 @@ namespace Mundus.Views.Windows this.btnI16.Name = "btnI16"; this.btnI16.UseUnderline = true; this.btnI16.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w59 = new global::Gtk.Image(); - this.btnI16.Image = w59; + global::Gtk.Image w56 = new global::Gtk.Image(); + this.btnI16.Image = w56; this.tbUI.Add(this.btnI16); - 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)); + global::Gtk.Table.TableChild w57 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI16])); + w57.TopAttach = ((uint)(4)); + w57.BottomAttach = ((uint)(5)); + w57.LeftAttach = ((uint)(15)); + w57.RightAttach = ((uint)(16)); + w57.XOptions = ((global::Gtk.AttachOptions)(4)); + w57.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI17 = new global::Gtk.Button(); this.btnI17.WidthRequest = 50; @@ -902,16 +842,16 @@ namespace Mundus.Views.Windows this.btnI17.Name = "btnI17"; this.btnI17.UseUnderline = true; this.btnI17.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w61 = new global::Gtk.Image(); - this.btnI17.Image = w61; + global::Gtk.Image w58 = new global::Gtk.Image(); + this.btnI17.Image = w58; this.tbUI.Add(this.btnI17); - 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)); + global::Gtk.Table.TableChild w59 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI17])); + w59.TopAttach = ((uint)(4)); + w59.BottomAttach = ((uint)(5)); + w59.LeftAttach = ((uint)(16)); + w59.RightAttach = ((uint)(17)); + w59.XOptions = ((global::Gtk.AttachOptions)(4)); + w59.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI18 = new global::Gtk.Button(); this.btnI18.WidthRequest = 50; @@ -920,16 +860,16 @@ namespace Mundus.Views.Windows this.btnI18.Name = "btnI18"; this.btnI18.UseUnderline = true; this.btnI18.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w63 = new global::Gtk.Image(); - this.btnI18.Image = w63; + global::Gtk.Image w60 = new global::Gtk.Image(); + this.btnI18.Image = w60; this.tbUI.Add(this.btnI18); - 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)); + global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI18])); + w61.TopAttach = ((uint)(4)); + w61.BottomAttach = ((uint)(5)); + w61.LeftAttach = ((uint)(17)); + w61.RightAttach = ((uint)(18)); + w61.XOptions = ((global::Gtk.AttachOptions)(4)); + w61.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI19 = new global::Gtk.Button(); this.btnI19.WidthRequest = 50; @@ -938,16 +878,16 @@ namespace Mundus.Views.Windows this.btnI19.Name = "btnI19"; this.btnI19.UseUnderline = true; this.btnI19.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w65 = new global::Gtk.Image(); - this.btnI19.Image = w65; + global::Gtk.Image w62 = new global::Gtk.Image(); + this.btnI19.Image = w62; this.tbUI.Add(this.btnI19); - 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)); + global::Gtk.Table.TableChild w63 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI19])); + w63.TopAttach = ((uint)(4)); + w63.BottomAttach = ((uint)(5)); + w63.LeftAttach = ((uint)(18)); + w63.RightAttach = ((uint)(19)); + w63.XOptions = ((global::Gtk.AttachOptions)(4)); + w63.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI2 = new global::Gtk.Button(); this.btnI2.WidthRequest = 50; @@ -956,16 +896,16 @@ namespace Mundus.Views.Windows this.btnI2.Name = "btnI2"; this.btnI2.UseUnderline = true; this.btnI2.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w67 = new global::Gtk.Image(); - this.btnI2.Image = w67; + global::Gtk.Image w64 = new global::Gtk.Image(); + this.btnI2.Image = w64; this.tbUI.Add(this.btnI2); - 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)); + global::Gtk.Table.TableChild w65 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI2])); + w65.TopAttach = ((uint)(1)); + w65.BottomAttach = ((uint)(2)); + w65.LeftAttach = ((uint)(16)); + w65.RightAttach = ((uint)(17)); + w65.XOptions = ((global::Gtk.AttachOptions)(4)); + w65.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI20 = new global::Gtk.Button(); this.btnI20.WidthRequest = 50; @@ -974,16 +914,16 @@ namespace Mundus.Views.Windows this.btnI20.Name = "btnI20"; this.btnI20.UseUnderline = true; this.btnI20.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w69 = new global::Gtk.Image(); - this.btnI20.Image = w69; + global::Gtk.Image w66 = new global::Gtk.Image(); + this.btnI20.Image = w66; this.tbUI.Add(this.btnI20); - 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)); + global::Gtk.Table.TableChild w67 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI20])); + w67.TopAttach = ((uint)(4)); + w67.BottomAttach = ((uint)(5)); + w67.LeftAttach = ((uint)(19)); + w67.RightAttach = ((uint)(20)); + w67.XOptions = ((global::Gtk.AttachOptions)(4)); + w67.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI21 = new global::Gtk.Button(); this.btnI21.WidthRequest = 50; @@ -992,16 +932,16 @@ namespace Mundus.Views.Windows this.btnI21.Name = "btnI21"; this.btnI21.UseUnderline = true; this.btnI21.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w71 = new global::Gtk.Image(); - this.btnI21.Image = w71; + global::Gtk.Image w68 = new global::Gtk.Image(); + this.btnI21.Image = w68; this.tbUI.Add(this.btnI21); - 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)); + global::Gtk.Table.TableChild w69 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI21])); + w69.TopAttach = ((uint)(5)); + w69.BottomAttach = ((uint)(6)); + w69.LeftAttach = ((uint)(15)); + w69.RightAttach = ((uint)(16)); + w69.XOptions = ((global::Gtk.AttachOptions)(4)); + w69.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI22 = new global::Gtk.Button(); this.btnI22.WidthRequest = 50; @@ -1010,16 +950,16 @@ namespace Mundus.Views.Windows this.btnI22.Name = "btnI22"; this.btnI22.UseUnderline = true; this.btnI22.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w73 = new global::Gtk.Image(); - this.btnI22.Image = w73; + global::Gtk.Image w70 = new global::Gtk.Image(); + this.btnI22.Image = w70; this.tbUI.Add(this.btnI22); - 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)); + global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI22])); + w71.TopAttach = ((uint)(5)); + w71.BottomAttach = ((uint)(6)); + w71.LeftAttach = ((uint)(16)); + w71.RightAttach = ((uint)(17)); + w71.XOptions = ((global::Gtk.AttachOptions)(4)); + w71.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI23 = new global::Gtk.Button(); this.btnI23.WidthRequest = 50; @@ -1028,16 +968,16 @@ namespace Mundus.Views.Windows this.btnI23.Name = "btnI23"; this.btnI23.UseUnderline = true; this.btnI23.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w75 = new global::Gtk.Image(); - this.btnI23.Image = w75; + global::Gtk.Image w72 = new global::Gtk.Image(); + this.btnI23.Image = w72; this.tbUI.Add(this.btnI23); - 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)); + global::Gtk.Table.TableChild w73 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI23])); + w73.TopAttach = ((uint)(5)); + w73.BottomAttach = ((uint)(6)); + w73.LeftAttach = ((uint)(17)); + w73.RightAttach = ((uint)(18)); + w73.XOptions = ((global::Gtk.AttachOptions)(4)); + w73.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI24 = new global::Gtk.Button(); this.btnI24.WidthRequest = 50; @@ -1046,16 +986,16 @@ namespace Mundus.Views.Windows this.btnI24.Name = "btnI24"; this.btnI24.UseUnderline = true; this.btnI24.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w77 = new global::Gtk.Image(); - this.btnI24.Image = w77; + global::Gtk.Image w74 = new global::Gtk.Image(); + this.btnI24.Image = w74; this.tbUI.Add(this.btnI24); - 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)); + global::Gtk.Table.TableChild w75 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI24])); + w75.TopAttach = ((uint)(5)); + w75.BottomAttach = ((uint)(6)); + w75.LeftAttach = ((uint)(18)); + w75.RightAttach = ((uint)(19)); + w75.XOptions = ((global::Gtk.AttachOptions)(4)); + w75.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI25 = new global::Gtk.Button(); this.btnI25.WidthRequest = 50; @@ -1064,16 +1004,16 @@ namespace Mundus.Views.Windows this.btnI25.Name = "btnI25"; this.btnI25.UseUnderline = true; this.btnI25.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w79 = new global::Gtk.Image(); - this.btnI25.Image = w79; + global::Gtk.Image w76 = new global::Gtk.Image(); + this.btnI25.Image = w76; this.tbUI.Add(this.btnI25); - 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)); + global::Gtk.Table.TableChild w77 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI25])); + w77.TopAttach = ((uint)(5)); + w77.BottomAttach = ((uint)(6)); + w77.LeftAttach = ((uint)(19)); + w77.RightAttach = ((uint)(20)); + w77.XOptions = ((global::Gtk.AttachOptions)(4)); + w77.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI3 = new global::Gtk.Button(); this.btnI3.WidthRequest = 50; @@ -1082,16 +1022,16 @@ namespace Mundus.Views.Windows this.btnI3.Name = "btnI3"; this.btnI3.UseUnderline = true; this.btnI3.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w81 = new global::Gtk.Image(); - this.btnI3.Image = w81; + global::Gtk.Image w78 = new global::Gtk.Image(); + this.btnI3.Image = w78; this.tbUI.Add(this.btnI3); - 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)); + global::Gtk.Table.TableChild w79 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI3])); + w79.TopAttach = ((uint)(1)); + w79.BottomAttach = ((uint)(2)); + w79.LeftAttach = ((uint)(17)); + w79.RightAttach = ((uint)(18)); + w79.XOptions = ((global::Gtk.AttachOptions)(4)); + w79.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI4 = new global::Gtk.Button(); this.btnI4.WidthRequest = 50; @@ -1100,16 +1040,16 @@ namespace Mundus.Views.Windows this.btnI4.Name = "btnI4"; this.btnI4.UseUnderline = true; this.btnI4.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w83 = new global::Gtk.Image(); - this.btnI4.Image = w83; + global::Gtk.Image w80 = new global::Gtk.Image(); + this.btnI4.Image = w80; this.tbUI.Add(this.btnI4); - 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)); + global::Gtk.Table.TableChild w81 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI4])); + w81.TopAttach = ((uint)(1)); + w81.BottomAttach = ((uint)(2)); + w81.LeftAttach = ((uint)(18)); + w81.RightAttach = ((uint)(19)); + w81.XOptions = ((global::Gtk.AttachOptions)(4)); + w81.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI5 = new global::Gtk.Button(); this.btnI5.WidthRequest = 50; @@ -1118,16 +1058,16 @@ namespace Mundus.Views.Windows this.btnI5.Name = "btnI5"; this.btnI5.UseUnderline = true; this.btnI5.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w85 = new global::Gtk.Image(); - this.btnI5.Image = w85; + global::Gtk.Image w82 = new global::Gtk.Image(); + this.btnI5.Image = w82; this.tbUI.Add(this.btnI5); - 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)); + global::Gtk.Table.TableChild w83 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI5])); + w83.TopAttach = ((uint)(1)); + w83.BottomAttach = ((uint)(2)); + w83.LeftAttach = ((uint)(19)); + w83.RightAttach = ((uint)(20)); + w83.XOptions = ((global::Gtk.AttachOptions)(4)); + w83.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI6 = new global::Gtk.Button(); this.btnI6.WidthRequest = 50; @@ -1136,16 +1076,16 @@ namespace Mundus.Views.Windows this.btnI6.Name = "btnI6"; this.btnI6.UseUnderline = true; this.btnI6.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w87 = new global::Gtk.Image(); - this.btnI6.Image = w87; + global::Gtk.Image w84 = new global::Gtk.Image(); + this.btnI6.Image = w84; this.tbUI.Add(this.btnI6); - 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)); + global::Gtk.Table.TableChild w85 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI6])); + w85.TopAttach = ((uint)(2)); + w85.BottomAttach = ((uint)(3)); + w85.LeftAttach = ((uint)(15)); + w85.RightAttach = ((uint)(16)); + w85.XOptions = ((global::Gtk.AttachOptions)(4)); + w85.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI7 = new global::Gtk.Button(); this.btnI7.WidthRequest = 50; @@ -1154,16 +1094,16 @@ namespace Mundus.Views.Windows this.btnI7.Name = "btnI7"; this.btnI7.UseUnderline = true; this.btnI7.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w89 = new global::Gtk.Image(); - this.btnI7.Image = w89; + global::Gtk.Image w86 = new global::Gtk.Image(); + this.btnI7.Image = w86; this.tbUI.Add(this.btnI7); - 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)); + global::Gtk.Table.TableChild w87 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI7])); + w87.TopAttach = ((uint)(2)); + w87.BottomAttach = ((uint)(3)); + w87.LeftAttach = ((uint)(16)); + w87.RightAttach = ((uint)(17)); + w87.XOptions = ((global::Gtk.AttachOptions)(4)); + w87.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI8 = new global::Gtk.Button(); this.btnI8.WidthRequest = 50; @@ -1172,16 +1112,16 @@ namespace Mundus.Views.Windows this.btnI8.Name = "btnI8"; this.btnI8.UseUnderline = true; this.btnI8.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w91 = new global::Gtk.Image(); - this.btnI8.Image = w91; + global::Gtk.Image w88 = new global::Gtk.Image(); + this.btnI8.Image = w88; this.tbUI.Add(this.btnI8); - 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)); + global::Gtk.Table.TableChild w89 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI8])); + w89.TopAttach = ((uint)(2)); + w89.BottomAttach = ((uint)(3)); + w89.LeftAttach = ((uint)(17)); + w89.RightAttach = ((uint)(18)); + w89.XOptions = ((global::Gtk.AttachOptions)(4)); + w89.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnI9 = new global::Gtk.Button(); this.btnI9.WidthRequest = 50; @@ -1190,16 +1130,16 @@ namespace Mundus.Views.Windows this.btnI9.Name = "btnI9"; this.btnI9.UseUnderline = true; this.btnI9.Relief = ((global::Gtk.ReliefStyle)(1)); - global::Gtk.Image w93 = new global::Gtk.Image(); - this.btnI9.Image = w93; + global::Gtk.Image w90 = new global::Gtk.Image(); + this.btnI9.Image = w90; this.tbUI.Add(this.btnI9); - 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)); + global::Gtk.Table.TableChild w91 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnI9])); + w91.TopAttach = ((uint)(2)); + w91.BottomAttach = ((uint)(3)); + w91.LeftAttach = ((uint)(18)); + w91.RightAttach = ((uint)(19)); + w91.XOptions = ((global::Gtk.AttachOptions)(4)); + w91.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnIG1 = new global::Gtk.Button(); this.btnIG1.WidthRequest = 50; @@ -1207,16 +1147,16 @@ namespace Mundus.Views.Windows this.btnIG1.CanFocus = true; this.btnIG1.Name = "btnIG1"; this.btnIG1.UseUnderline = true; - global::Gtk.Image w95 = new global::Gtk.Image(); - this.btnIG1.Image = w95; + global::Gtk.Image w92 = new global::Gtk.Image(); + this.btnIG1.Image = w92; this.tbUI.Add(this.btnIG1); - 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)); + global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG1])); + w93.TopAttach = ((uint)(13)); + w93.BottomAttach = ((uint)(14)); + w93.LeftAttach = ((uint)(15)); + w93.RightAttach = ((uint)(16)); + w93.XOptions = ((global::Gtk.AttachOptions)(4)); + w93.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnIG2 = new global::Gtk.Button(); this.btnIG2.WidthRequest = 50; @@ -1224,64 +1164,16 @@ namespace Mundus.Views.Windows this.btnIG2.CanFocus = true; this.btnIG2.Name = "btnIG2"; this.btnIG2.UseUnderline = true; - global::Gtk.Image w97 = new global::Gtk.Image(); - this.btnIG2.Image = w97; + global::Gtk.Image w94 = new global::Gtk.Image(); + this.btnIG2.Image = w94; this.tbUI.Add(this.btnIG2); - 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; - this.btnIM1.HeightRequest = 50; - this.btnIM1.CanFocus = true; - this.btnIM1.Name = "btnIM1"; - this.btnIM1.UseUnderline = true; - this.btnIM1.Label = global::Mono.Unix.Catalog.GetString("1:1"); - this.tbUI.Add(this.btnIM1); - 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; - this.btnIM2.HeightRequest = 50; - this.btnIM2.CanFocus = true; - this.btnIM2.Name = "btnIM2"; - this.btnIM2.UseUnderline = true; - this.btnIM2.Label = global::Mono.Unix.Catalog.GetString("1:5"); - this.tbUI.Add(this.btnIM2); - 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; - this.btnIM3.HeightRequest = 50; - this.btnIM3.CanFocus = true; - this.btnIM3.Name = "btnIM3"; - this.btnIM3.UseUnderline = true; - this.btnIM3.Label = global::Mono.Unix.Catalog.GetString("1:10"); - this.tbUI.Add(this.btnIM3); - 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)); + global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG2])); + w95.TopAttach = ((uint)(13)); + w95.BottomAttach = ((uint)(14)); + w95.LeftAttach = ((uint)(16)); + w95.RightAttach = ((uint)(17)); + w95.XOptions = ((global::Gtk.AttachOptions)(4)); + w95.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnInv = new global::Gtk.Button(); this.btnInv.WidthRequest = 50; @@ -1291,13 +1183,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 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)); + global::Gtk.Table.TableChild w96 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); + w96.TopAttach = ((uint)(9)); + w96.BottomAttach = ((uint)(10)); + w96.LeftAttach = ((uint)(13)); + w96.RightAttach = ((uint)(14)); + w96.XOptions = ((global::Gtk.AttachOptions)(4)); + w96.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnMap = new global::Gtk.Button(); this.btnMap.WidthRequest = 50; @@ -1307,13 +1199,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 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)); + global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); + w97.TopAttach = ((uint)(9)); + w97.BottomAttach = ((uint)(10)); + w97.LeftAttach = ((uint)(7)); + w97.RightAttach = ((uint)(8)); + w97.XOptions = ((global::Gtk.AttachOptions)(4)); + w97.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnMusic = new global::Gtk.Button(); this.btnMusic.WidthRequest = 50; @@ -1323,13 +1215,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 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)); + global::Gtk.Table.TableChild w98 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); + w98.TopAttach = ((uint)(11)); + w98.BottomAttach = ((uint)(12)); + w98.LeftAttach = ((uint)(7)); + w98.RightAttach = ((uint)(8)); + w98.XOptions = ((global::Gtk.AttachOptions)(4)); + w98.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP1 = new global::Gtk.Button(); this.btnP1.WidthRequest = 50; @@ -1338,16 +1230,16 @@ namespace Mundus.Views.Windows this.btnP1.Name = "btnP1"; this.btnP1.UseUnderline = true; this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w105 = new global::Gtk.Image(); - this.btnP1.Image = w105; + global::Gtk.Image w99 = new global::Gtk.Image(); + this.btnP1.Image = w99; this.tbUI.Add(this.btnP1); - 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)); + global::Gtk.Table.TableChild w100 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); + w100.TopAttach = ((uint)(1)); + w100.BottomAttach = ((uint)(2)); + w100.LeftAttach = ((uint)(8)); + w100.RightAttach = ((uint)(9)); + w100.XOptions = ((global::Gtk.AttachOptions)(4)); + w100.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP10 = new global::Gtk.Button(); this.btnP10.WidthRequest = 50; @@ -1356,16 +1248,16 @@ namespace Mundus.Views.Windows this.btnP10.Name = "btnP10"; this.btnP10.UseUnderline = true; this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w107 = new global::Gtk.Image(); - this.btnP10.Image = w107; + global::Gtk.Image w101 = new global::Gtk.Image(); + this.btnP10.Image = w101; this.tbUI.Add(this.btnP10); - 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)); + global::Gtk.Table.TableChild w102 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); + w102.TopAttach = ((uint)(2)); + w102.BottomAttach = ((uint)(3)); + w102.LeftAttach = ((uint)(12)); + w102.RightAttach = ((uint)(13)); + w102.XOptions = ((global::Gtk.AttachOptions)(4)); + w102.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP11 = new global::Gtk.Button(); this.btnP11.WidthRequest = 50; @@ -1374,16 +1266,16 @@ namespace Mundus.Views.Windows this.btnP11.Name = "btnP11"; this.btnP11.UseUnderline = true; this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w109 = new global::Gtk.Image(); - this.btnP11.Image = w109; + global::Gtk.Image w103 = new global::Gtk.Image(); + this.btnP11.Image = w103; this.tbUI.Add(this.btnP11); - 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)); + global::Gtk.Table.TableChild w104 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); + w104.TopAttach = ((uint)(3)); + w104.BottomAttach = ((uint)(4)); + w104.LeftAttach = ((uint)(8)); + w104.RightAttach = ((uint)(9)); + w104.XOptions = ((global::Gtk.AttachOptions)(4)); + w104.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP12 = new global::Gtk.Button(); this.btnP12.WidthRequest = 50; @@ -1392,16 +1284,16 @@ namespace Mundus.Views.Windows this.btnP12.Name = "btnP12"; this.btnP12.UseUnderline = true; this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w111 = new global::Gtk.Image(); - this.btnP12.Image = w111; + global::Gtk.Image w105 = new global::Gtk.Image(); + this.btnP12.Image = w105; this.tbUI.Add(this.btnP12); - 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)); + global::Gtk.Table.TableChild w106 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); + w106.TopAttach = ((uint)(3)); + w106.BottomAttach = ((uint)(4)); + w106.LeftAttach = ((uint)(9)); + w106.RightAttach = ((uint)(10)); + w106.XOptions = ((global::Gtk.AttachOptions)(4)); + w106.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP13 = new global::Gtk.Button(); this.btnP13.WidthRequest = 50; @@ -1410,16 +1302,16 @@ namespace Mundus.Views.Windows this.btnP13.Name = "btnP13"; this.btnP13.UseUnderline = true; this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w113 = new global::Gtk.Image(); - this.btnP13.Image = w113; + global::Gtk.Image w107 = new global::Gtk.Image(); + this.btnP13.Image = w107; this.tbUI.Add(this.btnP13); - 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)); + global::Gtk.Table.TableChild w108 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); + w108.TopAttach = ((uint)(3)); + w108.BottomAttach = ((uint)(4)); + w108.LeftAttach = ((uint)(10)); + w108.RightAttach = ((uint)(11)); + w108.XOptions = ((global::Gtk.AttachOptions)(4)); + w108.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP14 = new global::Gtk.Button(); this.btnP14.WidthRequest = 50; @@ -1428,16 +1320,16 @@ namespace Mundus.Views.Windows this.btnP14.Name = "btnP14"; this.btnP14.UseUnderline = true; this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w115 = new global::Gtk.Image(); - this.btnP14.Image = w115; + global::Gtk.Image w109 = new global::Gtk.Image(); + this.btnP14.Image = w109; this.tbUI.Add(this.btnP14); - 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)); + global::Gtk.Table.TableChild w110 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); + w110.TopAttach = ((uint)(3)); + w110.BottomAttach = ((uint)(4)); + w110.LeftAttach = ((uint)(11)); + w110.RightAttach = ((uint)(12)); + w110.XOptions = ((global::Gtk.AttachOptions)(4)); + w110.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP15 = new global::Gtk.Button(); this.btnP15.WidthRequest = 50; @@ -1446,16 +1338,16 @@ namespace Mundus.Views.Windows this.btnP15.Name = "btnP15"; this.btnP15.UseUnderline = true; this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w117 = new global::Gtk.Image(); - this.btnP15.Image = w117; + global::Gtk.Image w111 = new global::Gtk.Image(); + this.btnP15.Image = w111; this.tbUI.Add(this.btnP15); - 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)); + global::Gtk.Table.TableChild w112 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); + w112.TopAttach = ((uint)(3)); + w112.BottomAttach = ((uint)(4)); + w112.LeftAttach = ((uint)(12)); + w112.RightAttach = ((uint)(13)); + w112.XOptions = ((global::Gtk.AttachOptions)(4)); + w112.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP16 = new global::Gtk.Button(); this.btnP16.WidthRequest = 50; @@ -1464,16 +1356,16 @@ namespace Mundus.Views.Windows this.btnP16.Name = "btnP16"; this.btnP16.UseUnderline = true; this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w119 = new global::Gtk.Image(); - this.btnP16.Image = w119; + global::Gtk.Image w113 = new global::Gtk.Image(); + this.btnP16.Image = w113; this.tbUI.Add(this.btnP16); - 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)); + global::Gtk.Table.TableChild w114 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); + w114.TopAttach = ((uint)(4)); + w114.BottomAttach = ((uint)(5)); + w114.LeftAttach = ((uint)(8)); + w114.RightAttach = ((uint)(9)); + w114.XOptions = ((global::Gtk.AttachOptions)(4)); + w114.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP17 = new global::Gtk.Button(); this.btnP17.WidthRequest = 50; @@ -1482,16 +1374,16 @@ namespace Mundus.Views.Windows this.btnP17.Name = "btnP17"; this.btnP17.UseUnderline = true; this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w121 = new global::Gtk.Image(); - this.btnP17.Image = w121; + global::Gtk.Image w115 = new global::Gtk.Image(); + this.btnP17.Image = w115; this.tbUI.Add(this.btnP17); - 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)); + global::Gtk.Table.TableChild w116 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); + w116.TopAttach = ((uint)(4)); + w116.BottomAttach = ((uint)(5)); + w116.LeftAttach = ((uint)(9)); + w116.RightAttach = ((uint)(10)); + w116.XOptions = ((global::Gtk.AttachOptions)(4)); + w116.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP18 = new global::Gtk.Button(); this.btnP18.WidthRequest = 50; @@ -1500,16 +1392,16 @@ namespace Mundus.Views.Windows this.btnP18.Name = "btnP18"; this.btnP18.UseUnderline = true; this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w123 = new global::Gtk.Image(); - this.btnP18.Image = w123; + global::Gtk.Image w117 = new global::Gtk.Image(); + this.btnP18.Image = w117; this.tbUI.Add(this.btnP18); - 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)); + global::Gtk.Table.TableChild w118 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); + w118.TopAttach = ((uint)(4)); + w118.BottomAttach = ((uint)(5)); + w118.LeftAttach = ((uint)(10)); + w118.RightAttach = ((uint)(11)); + w118.XOptions = ((global::Gtk.AttachOptions)(4)); + w118.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP19 = new global::Gtk.Button(); this.btnP19.WidthRequest = 50; @@ -1518,16 +1410,16 @@ namespace Mundus.Views.Windows this.btnP19.Name = "btnP19"; this.btnP19.UseUnderline = true; this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w125 = new global::Gtk.Image(); - this.btnP19.Image = w125; + global::Gtk.Image w119 = new global::Gtk.Image(); + this.btnP19.Image = w119; this.tbUI.Add(this.btnP19); - 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)); + global::Gtk.Table.TableChild w120 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); + w120.TopAttach = ((uint)(4)); + w120.BottomAttach = ((uint)(5)); + w120.LeftAttach = ((uint)(11)); + w120.RightAttach = ((uint)(12)); + w120.XOptions = ((global::Gtk.AttachOptions)(4)); + w120.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP2 = new global::Gtk.Button(); this.btnP2.WidthRequest = 50; @@ -1536,16 +1428,16 @@ namespace Mundus.Views.Windows this.btnP2.Name = "btnP2"; this.btnP2.UseUnderline = true; this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w127 = new global::Gtk.Image(); - this.btnP2.Image = w127; + global::Gtk.Image w121 = new global::Gtk.Image(); + this.btnP2.Image = w121; this.tbUI.Add(this.btnP2); - 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)); + global::Gtk.Table.TableChild w122 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); + w122.TopAttach = ((uint)(1)); + w122.BottomAttach = ((uint)(2)); + 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.btnP20 = new global::Gtk.Button(); this.btnP20.WidthRequest = 50; @@ -1554,16 +1446,16 @@ namespace Mundus.Views.Windows this.btnP20.Name = "btnP20"; this.btnP20.UseUnderline = true; this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w129 = new global::Gtk.Image(); - this.btnP20.Image = w129; + global::Gtk.Image w123 = new global::Gtk.Image(); + this.btnP20.Image = w123; this.tbUI.Add(this.btnP20); - 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)); + global::Gtk.Table.TableChild w124 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); + w124.TopAttach = ((uint)(4)); + w124.BottomAttach = ((uint)(5)); + w124.LeftAttach = ((uint)(12)); + w124.RightAttach = ((uint)(13)); + w124.XOptions = ((global::Gtk.AttachOptions)(4)); + w124.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP21 = new global::Gtk.Button(); this.btnP21.WidthRequest = 50; @@ -1572,16 +1464,16 @@ namespace Mundus.Views.Windows this.btnP21.Name = "btnP21"; this.btnP21.UseUnderline = true; this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w131 = new global::Gtk.Image(); - this.btnP21.Image = w131; + global::Gtk.Image w125 = new global::Gtk.Image(); + this.btnP21.Image = w125; this.tbUI.Add(this.btnP21); - 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)); + global::Gtk.Table.TableChild w126 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); + w126.TopAttach = ((uint)(5)); + w126.BottomAttach = ((uint)(6)); + w126.LeftAttach = ((uint)(8)); + w126.RightAttach = ((uint)(9)); + w126.XOptions = ((global::Gtk.AttachOptions)(4)); + w126.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP22 = new global::Gtk.Button(); this.btnP22.WidthRequest = 50; @@ -1590,16 +1482,16 @@ namespace Mundus.Views.Windows this.btnP22.Name = "btnP22"; this.btnP22.UseUnderline = true; this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w133 = new global::Gtk.Image(); - this.btnP22.Image = w133; + global::Gtk.Image w127 = new global::Gtk.Image(); + this.btnP22.Image = w127; this.tbUI.Add(this.btnP22); - 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)); + global::Gtk.Table.TableChild w128 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); + w128.TopAttach = ((uint)(5)); + w128.BottomAttach = ((uint)(6)); + 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.btnP23 = new global::Gtk.Button(); this.btnP23.WidthRequest = 50; @@ -1608,16 +1500,16 @@ namespace Mundus.Views.Windows this.btnP23.Name = "btnP23"; this.btnP23.UseUnderline = true; this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w135 = new global::Gtk.Image(); - this.btnP23.Image = w135; + global::Gtk.Image w129 = new global::Gtk.Image(); + this.btnP23.Image = w129; this.tbUI.Add(this.btnP23); - 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)); + global::Gtk.Table.TableChild w130 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); + w130.TopAttach = ((uint)(5)); + w130.BottomAttach = ((uint)(6)); + w130.LeftAttach = ((uint)(10)); + w130.RightAttach = ((uint)(11)); + w130.XOptions = ((global::Gtk.AttachOptions)(4)); + w130.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP24 = new global::Gtk.Button(); this.btnP24.WidthRequest = 50; @@ -1626,16 +1518,16 @@ namespace Mundus.Views.Windows this.btnP24.Name = "btnP24"; this.btnP24.UseUnderline = true; this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w137 = new global::Gtk.Image(); - this.btnP24.Image = w137; + global::Gtk.Image w131 = new global::Gtk.Image(); + this.btnP24.Image = w131; this.tbUI.Add(this.btnP24); - 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)); + global::Gtk.Table.TableChild w132 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); + w132.TopAttach = ((uint)(5)); + w132.BottomAttach = ((uint)(6)); + w132.LeftAttach = ((uint)(11)); + w132.RightAttach = ((uint)(12)); + w132.XOptions = ((global::Gtk.AttachOptions)(4)); + w132.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP25 = new global::Gtk.Button(); this.btnP25.WidthRequest = 50; @@ -1644,16 +1536,16 @@ namespace Mundus.Views.Windows this.btnP25.Name = "btnP25"; this.btnP25.UseUnderline = true; this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w139 = new global::Gtk.Image(); - this.btnP25.Image = w139; + global::Gtk.Image w133 = new global::Gtk.Image(); + this.btnP25.Image = w133; this.tbUI.Add(this.btnP25); - 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)); + global::Gtk.Table.TableChild w134 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); + w134.TopAttach = ((uint)(5)); + w134.BottomAttach = ((uint)(6)); + w134.LeftAttach = ((uint)(12)); + w134.RightAttach = ((uint)(13)); + w134.XOptions = ((global::Gtk.AttachOptions)(4)); + w134.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP3 = new global::Gtk.Button(); this.btnP3.WidthRequest = 50; @@ -1662,16 +1554,16 @@ namespace Mundus.Views.Windows this.btnP3.Name = "btnP3"; this.btnP3.UseUnderline = true; this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w141 = new global::Gtk.Image(); - this.btnP3.Image = w141; + global::Gtk.Image w135 = new global::Gtk.Image(); + this.btnP3.Image = w135; this.tbUI.Add(this.btnP3); - 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)); + global::Gtk.Table.TableChild w136 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); + w136.TopAttach = ((uint)(1)); + w136.BottomAttach = ((uint)(2)); + 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.btnP4 = new global::Gtk.Button(); this.btnP4.WidthRequest = 50; @@ -1680,16 +1572,16 @@ namespace Mundus.Views.Windows this.btnP4.Name = "btnP4"; this.btnP4.UseUnderline = true; this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w143 = new global::Gtk.Image(); - this.btnP4.Image = w143; + global::Gtk.Image w137 = new global::Gtk.Image(); + this.btnP4.Image = w137; this.tbUI.Add(this.btnP4); - 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)); + global::Gtk.Table.TableChild w138 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); + w138.TopAttach = ((uint)(1)); + w138.BottomAttach = ((uint)(2)); + 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.btnP5 = new global::Gtk.Button(); this.btnP5.WidthRequest = 50; @@ -1698,16 +1590,16 @@ namespace Mundus.Views.Windows this.btnP5.Name = "btnP5"; this.btnP5.UseUnderline = true; this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w145 = new global::Gtk.Image(); - this.btnP5.Image = w145; + global::Gtk.Image w139 = new global::Gtk.Image(); + this.btnP5.Image = w139; this.tbUI.Add(this.btnP5); - 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)); + global::Gtk.Table.TableChild w140 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); + w140.TopAttach = ((uint)(1)); + w140.BottomAttach = ((uint)(2)); + 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.btnP6 = new global::Gtk.Button(); this.btnP6.WidthRequest = 50; @@ -1716,16 +1608,16 @@ namespace Mundus.Views.Windows this.btnP6.Name = "btnP6"; this.btnP6.UseUnderline = true; this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w147 = new global::Gtk.Image(); - this.btnP6.Image = w147; + global::Gtk.Image w141 = new global::Gtk.Image(); + this.btnP6.Image = w141; this.tbUI.Add(this.btnP6); - 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)); + global::Gtk.Table.TableChild w142 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); + w142.TopAttach = ((uint)(2)); + w142.BottomAttach = ((uint)(3)); + w142.LeftAttach = ((uint)(8)); + w142.RightAttach = ((uint)(9)); + w142.XOptions = ((global::Gtk.AttachOptions)(4)); + w142.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP7 = new global::Gtk.Button(); this.btnP7.WidthRequest = 50; @@ -1734,16 +1626,16 @@ namespace Mundus.Views.Windows this.btnP7.Name = "btnP7"; this.btnP7.UseUnderline = true; this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w149 = new global::Gtk.Image(); - this.btnP7.Image = w149; + global::Gtk.Image w143 = new global::Gtk.Image(); + this.btnP7.Image = w143; this.tbUI.Add(this.btnP7); - 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)); + global::Gtk.Table.TableChild w144 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); + w144.TopAttach = ((uint)(2)); + w144.BottomAttach = ((uint)(3)); + w144.LeftAttach = ((uint)(9)); + w144.RightAttach = ((uint)(10)); + w144.XOptions = ((global::Gtk.AttachOptions)(4)); + w144.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP8 = new global::Gtk.Button(); this.btnP8.WidthRequest = 50; @@ -1752,16 +1644,16 @@ namespace Mundus.Views.Windows this.btnP8.Name = "btnP8"; this.btnP8.UseUnderline = true; this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w151 = new global::Gtk.Image(); - this.btnP8.Image = w151; + global::Gtk.Image w145 = new global::Gtk.Image(); + this.btnP8.Image = w145; this.tbUI.Add(this.btnP8); - 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)); + global::Gtk.Table.TableChild w146 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); + w146.TopAttach = ((uint)(2)); + w146.BottomAttach = ((uint)(3)); + w146.LeftAttach = ((uint)(10)); + w146.RightAttach = ((uint)(11)); + w146.XOptions = ((global::Gtk.AttachOptions)(4)); + w146.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP9 = new global::Gtk.Button(); this.btnP9.WidthRequest = 50; @@ -1770,16 +1662,16 @@ namespace Mundus.Views.Windows this.btnP9.Name = "btnP9"; this.btnP9.UseUnderline = true; this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w153 = new global::Gtk.Image(); - this.btnP9.Image = w153; + global::Gtk.Image w147 = new global::Gtk.Image(); + this.btnP9.Image = w147; this.tbUI.Add(this.btnP9); - 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)); + global::Gtk.Table.TableChild w148 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); + w148.TopAttach = ((uint)(2)); + w148.BottomAttach = ((uint)(3)); + w148.LeftAttach = ((uint)(11)); + w148.RightAttach = ((uint)(12)); + w148.XOptions = ((global::Gtk.AttachOptions)(4)); + w148.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnPause = new global::Gtk.Button(); this.btnPause.WidthRequest = 50; @@ -1789,768 +1681,768 @@ 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 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)); + global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); + w149.TopAttach = ((uint)(11)); + w149.BottomAttach = ((uint)(12)); + w149.LeftAttach = ((uint)(13)); + w149.RightAttach = ((uint)(14)); + w149.XOptions = ((global::Gtk.AttachOptions)(4)); + w149.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 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)); + global::Gtk.Table.TableChild w150 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); + w150.TopAttach = ((uint)(2)); + w150.BottomAttach = ((uint)(3)); + w150.LeftAttach = ((uint)(1)); + w150.RightAttach = ((uint)(2)); + w150.XOptions = ((global::Gtk.AttachOptions)(4)); + w150.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 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)); + global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); + w151.TopAttach = ((uint)(3)); + w151.BottomAttach = ((uint)(4)); + w151.LeftAttach = ((uint)(5)); + w151.RightAttach = ((uint)(6)); + w151.XOptions = ((global::Gtk.AttachOptions)(4)); + w151.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 w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); - w158.TopAttach = ((uint)(4)); - w158.BottomAttach = ((uint)(5)); - w158.LeftAttach = ((uint)(1)); - w158.RightAttach = ((uint)(2)); - w158.XOptions = ((global::Gtk.AttachOptions)(4)); - w158.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w152 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); + w152.TopAttach = ((uint)(4)); + w152.BottomAttach = ((uint)(5)); + w152.LeftAttach = ((uint)(1)); + w152.RightAttach = ((uint)(2)); + w152.XOptions = ((global::Gtk.AttachOptions)(4)); + w152.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 w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); - w159.TopAttach = ((uint)(4)); - w159.BottomAttach = ((uint)(5)); - w159.LeftAttach = ((uint)(2)); - w159.RightAttach = ((uint)(3)); - w159.XOptions = ((global::Gtk.AttachOptions)(4)); - w159.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); + w153.TopAttach = ((uint)(4)); + w153.BottomAttach = ((uint)(5)); + w153.LeftAttach = ((uint)(2)); + w153.RightAttach = ((uint)(3)); + w153.XOptions = ((global::Gtk.AttachOptions)(4)); + w153.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 w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); - w160.TopAttach = ((uint)(4)); - w160.BottomAttach = ((uint)(5)); - w160.LeftAttach = ((uint)(3)); - w160.RightAttach = ((uint)(4)); - w160.XOptions = ((global::Gtk.AttachOptions)(4)); - w160.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w154 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); + w154.TopAttach = ((uint)(4)); + w154.BottomAttach = ((uint)(5)); + w154.LeftAttach = ((uint)(3)); + w154.RightAttach = ((uint)(4)); + w154.XOptions = ((global::Gtk.AttachOptions)(4)); + w154.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 w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); - w161.TopAttach = ((uint)(4)); - w161.BottomAttach = ((uint)(5)); - w161.LeftAttach = ((uint)(4)); - w161.RightAttach = ((uint)(5)); - w161.XOptions = ((global::Gtk.AttachOptions)(4)); - w161.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); + w155.TopAttach = ((uint)(4)); + w155.BottomAttach = ((uint)(5)); + w155.LeftAttach = ((uint)(4)); + w155.RightAttach = ((uint)(5)); + w155.XOptions = ((global::Gtk.AttachOptions)(4)); + w155.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)); + global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + w156.TopAttach = ((uint)(4)); + w156.BottomAttach = ((uint)(5)); + w156.LeftAttach = ((uint)(5)); + w156.RightAttach = ((uint)(6)); + w156.XOptions = ((global::Gtk.AttachOptions)(4)); + w156.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); - w163.TopAttach = ((uint)(5)); - w163.BottomAttach = ((uint)(6)); - w163.LeftAttach = ((uint)(1)); - w163.RightAttach = ((uint)(2)); - w163.XOptions = ((global::Gtk.AttachOptions)(4)); - w163.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); + w157.TopAttach = ((uint)(5)); + w157.BottomAttach = ((uint)(6)); + 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.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)(2)); - w164.RightAttach = ((uint)(3)); - w164.XOptions = ((global::Gtk.AttachOptions)(4)); - w164.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); + w158.TopAttach = ((uint)(5)); + w158.BottomAttach = ((uint)(6)); + w158.LeftAttach = ((uint)(2)); + w158.RightAttach = ((uint)(3)); + w158.XOptions = ((global::Gtk.AttachOptions)(4)); + w158.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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)(3)); - w165.RightAttach = ((uint)(4)); - w165.XOptions = ((global::Gtk.AttachOptions)(4)); - w165.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); + w159.TopAttach = ((uint)(5)); + w159.BottomAttach = ((uint)(6)); + w159.LeftAttach = ((uint)(3)); + w159.RightAttach = ((uint)(4)); + w159.XOptions = ((global::Gtk.AttachOptions)(4)); + w159.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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)); + global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + w160.TopAttach = ((uint)(5)); + w160.BottomAttach = ((uint)(6)); + w160.LeftAttach = ((uint)(4)); + w160.RightAttach = ((uint)(5)); + w160.XOptions = ((global::Gtk.AttachOptions)(4)); + w160.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG2 = new global::Gtk.Image(); this.imgG2.Name = "imgG2"; this.tbUI.Add(this.imgG2); - 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)); + global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); + w161.TopAttach = ((uint)(2)); + w161.BottomAttach = ((uint)(3)); + w161.LeftAttach = ((uint)(2)); + w161.RightAttach = ((uint)(3)); + w161.XOptions = ((global::Gtk.AttachOptions)(4)); + w161.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 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)); + global::Gtk.Table.TableChild w162 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); + w162.TopAttach = ((uint)(5)); + w162.BottomAttach = ((uint)(6)); + 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.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 w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); - w169.TopAttach = ((uint)(6)); - w169.BottomAttach = ((uint)(7)); - w169.LeftAttach = ((uint)(1)); - w169.RightAttach = ((uint)(2)); - w169.XOptions = ((global::Gtk.AttachOptions)(4)); - w169.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); + w163.TopAttach = ((uint)(6)); + w163.BottomAttach = ((uint)(7)); + 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.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)(2)); - w170.RightAttach = ((uint)(3)); - w170.XOptions = ((global::Gtk.AttachOptions)(4)); - w170.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); + w164.TopAttach = ((uint)(6)); + w164.BottomAttach = ((uint)(7)); + 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.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)(3)); - w171.RightAttach = ((uint)(4)); - w171.XOptions = ((global::Gtk.AttachOptions)(4)); - w171.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); + w165.TopAttach = ((uint)(6)); + w165.BottomAttach = ((uint)(7)); + 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.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)(4)); - w172.RightAttach = ((uint)(5)); - w172.XOptions = ((global::Gtk.AttachOptions)(4)); - w172.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w166 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); + w166.TopAttach = ((uint)(6)); + w166.BottomAttach = ((uint)(7)); + 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.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)); + global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + w167.TopAttach = ((uint)(6)); + w167.BottomAttach = ((uint)(7)); + w167.LeftAttach = ((uint)(5)); + w167.RightAttach = ((uint)(6)); + w167.XOptions = ((global::Gtk.AttachOptions)(4)); + w167.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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)(3)); - w174.RightAttach = ((uint)(4)); - w174.XOptions = ((global::Gtk.AttachOptions)(4)); - w174.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); + w168.TopAttach = ((uint)(2)); + w168.BottomAttach = ((uint)(3)); + w168.LeftAttach = ((uint)(3)); + w168.RightAttach = ((uint)(4)); + w168.XOptions = ((global::Gtk.AttachOptions)(4)); + w168.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 w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); - w175.TopAttach = ((uint)(2)); - w175.BottomAttach = ((uint)(3)); - w175.LeftAttach = ((uint)(4)); - w175.RightAttach = ((uint)(5)); - w175.XOptions = ((global::Gtk.AttachOptions)(4)); - w175.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); + w169.TopAttach = ((uint)(2)); + w169.BottomAttach = ((uint)(3)); + w169.LeftAttach = ((uint)(4)); + w169.RightAttach = ((uint)(5)); + w169.XOptions = ((global::Gtk.AttachOptions)(4)); + w169.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)); + global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + w170.TopAttach = ((uint)(2)); + w170.BottomAttach = ((uint)(3)); + w170.LeftAttach = ((uint)(5)); + w170.RightAttach = ((uint)(6)); + w170.XOptions = ((global::Gtk.AttachOptions)(4)); + w170.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 w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); - w177.TopAttach = ((uint)(3)); - w177.BottomAttach = ((uint)(4)); - w177.LeftAttach = ((uint)(1)); - w177.RightAttach = ((uint)(2)); - w177.XOptions = ((global::Gtk.AttachOptions)(4)); - w177.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); + w171.TopAttach = ((uint)(3)); + w171.BottomAttach = ((uint)(4)); + w171.LeftAttach = ((uint)(1)); + w171.RightAttach = ((uint)(2)); + w171.XOptions = ((global::Gtk.AttachOptions)(4)); + w171.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 w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); - w178.TopAttach = ((uint)(3)); - w178.BottomAttach = ((uint)(4)); - w178.LeftAttach = ((uint)(2)); - w178.RightAttach = ((uint)(3)); - w178.XOptions = ((global::Gtk.AttachOptions)(4)); - w178.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); + w172.TopAttach = ((uint)(3)); + w172.BottomAttach = ((uint)(4)); + w172.LeftAttach = ((uint)(2)); + w172.RightAttach = ((uint)(3)); + w172.XOptions = ((global::Gtk.AttachOptions)(4)); + w172.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 w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); - w179.TopAttach = ((uint)(3)); - w179.BottomAttach = ((uint)(4)); - w179.LeftAttach = ((uint)(3)); - w179.RightAttach = ((uint)(4)); - w179.XOptions = ((global::Gtk.AttachOptions)(4)); - w179.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); + w173.TopAttach = ((uint)(3)); + w173.BottomAttach = ((uint)(4)); + w173.LeftAttach = ((uint)(3)); + w173.RightAttach = ((uint)(4)); + w173.XOptions = ((global::Gtk.AttachOptions)(4)); + w173.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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)); + global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + w174.TopAttach = ((uint)(3)); + w174.BottomAttach = ((uint)(4)); + w174.LeftAttach = ((uint)(4)); + w174.RightAttach = ((uint)(5)); + w174.XOptions = ((global::Gtk.AttachOptions)(4)); + w174.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w175.TopAttach = ((uint)(10)); + w175.BottomAttach = ((uint)(11)); + w175.LeftAttach = ((uint)(1)); + w175.RightAttach = ((uint)(2)); + w175.XOptions = ((global::Gtk.AttachOptions)(4)); + w175.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 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)); + global::Gtk.Table.TableChild w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); + w176.TopAttach = ((uint)(11)); + w176.BottomAttach = ((uint)(12)); + 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.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 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)); + global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); + w177.TopAttach = ((uint)(12)); + w177.BottomAttach = ((uint)(13)); + 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.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 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)); + global::Gtk.Table.TableChild w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); + w178.TopAttach = ((uint)(12)); + w178.BottomAttach = ((uint)(13)); + 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.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 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)); + global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); + w179.TopAttach = ((uint)(12)); + w179.BottomAttach = ((uint)(13)); + 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.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 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)); + global::Gtk.Table.TableChild w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); + w180.TopAttach = ((uint)(12)); + w180.BottomAttach = ((uint)(13)); + 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.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 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)); + global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); + w181.TopAttach = ((uint)(12)); + w181.BottomAttach = ((uint)(13)); + w181.LeftAttach = ((uint)(5)); + w181.RightAttach = ((uint)(6)); + w181.XOptions = ((global::Gtk.AttachOptions)(4)); + w181.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); + w182.TopAttach = ((uint)(13)); + w182.BottomAttach = ((uint)(14)); + w182.LeftAttach = ((uint)(1)); + w182.RightAttach = ((uint)(2)); + w182.XOptions = ((global::Gtk.AttachOptions)(4)); + w182.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); + w183.TopAttach = ((uint)(13)); + w183.BottomAttach = ((uint)(14)); + w183.LeftAttach = ((uint)(2)); + w183.RightAttach = ((uint)(3)); + w183.XOptions = ((global::Gtk.AttachOptions)(4)); + w183.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); + w184.TopAttach = ((uint)(13)); + w184.BottomAttach = ((uint)(14)); + w184.LeftAttach = ((uint)(3)); + w184.RightAttach = ((uint)(4)); + w184.XOptions = ((global::Gtk.AttachOptions)(4)); + w184.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); + w185.TopAttach = ((uint)(13)); + w185.BottomAttach = ((uint)(14)); + w185.LeftAttach = ((uint)(4)); + w185.RightAttach = ((uint)(5)); + w185.XOptions = ((global::Gtk.AttachOptions)(4)); + w185.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w186.TopAttach = ((uint)(10)); + w186.BottomAttach = ((uint)(11)); + w186.LeftAttach = ((uint)(2)); + w186.RightAttach = ((uint)(3)); + w186.XOptions = ((global::Gtk.AttachOptions)(4)); + w186.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 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)); + global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); + w187.TopAttach = ((uint)(13)); + w187.BottomAttach = ((uint)(14)); + 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.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 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)); + global::Gtk.Table.TableChild w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); + w188.TopAttach = ((uint)(14)); + w188.BottomAttach = ((uint)(15)); + 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.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 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)); + global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); + w189.TopAttach = ((uint)(14)); + w189.BottomAttach = ((uint)(15)); + 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.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 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)); + global::Gtk.Table.TableChild w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); + w190.TopAttach = ((uint)(14)); + w190.BottomAttach = ((uint)(15)); + 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.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 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)); + global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); + w191.TopAttach = ((uint)(14)); + w191.BottomAttach = ((uint)(15)); + 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.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 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)); + global::Gtk.Table.TableChild w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); + w192.TopAttach = ((uint)(14)); + w192.BottomAttach = ((uint)(15)); + w192.LeftAttach = ((uint)(5)); + w192.RightAttach = ((uint)(6)); + w192.XOptions = ((global::Gtk.AttachOptions)(4)); + w192.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w193.TopAttach = ((uint)(10)); + w193.BottomAttach = ((uint)(11)); + w193.LeftAttach = ((uint)(3)); + w193.RightAttach = ((uint)(4)); + w193.XOptions = ((global::Gtk.AttachOptions)(4)); + w193.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 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)); + global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w194.TopAttach = ((uint)(10)); + w194.BottomAttach = ((uint)(11)); + w194.LeftAttach = ((uint)(4)); + w194.RightAttach = ((uint)(5)); + w194.XOptions = ((global::Gtk.AttachOptions)(4)); + w194.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 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)); + global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w195.TopAttach = ((uint)(10)); + w195.BottomAttach = ((uint)(11)); + w195.LeftAttach = ((uint)(5)); + w195.RightAttach = ((uint)(6)); + w195.XOptions = ((global::Gtk.AttachOptions)(4)); + w195.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 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)); + global::Gtk.Table.TableChild w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); + w196.TopAttach = ((uint)(11)); + w196.BottomAttach = ((uint)(12)); + w196.LeftAttach = ((uint)(1)); + w196.RightAttach = ((uint)(2)); + w196.XOptions = ((global::Gtk.AttachOptions)(4)); + w196.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 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)); + global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); + w197.TopAttach = ((uint)(11)); + w197.BottomAttach = ((uint)(12)); + w197.LeftAttach = ((uint)(2)); + w197.RightAttach = ((uint)(3)); + w197.XOptions = ((global::Gtk.AttachOptions)(4)); + w197.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 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)); + global::Gtk.Table.TableChild w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); + w198.TopAttach = ((uint)(11)); + w198.BottomAttach = ((uint)(12)); + w198.LeftAttach = ((uint)(3)); + w198.RightAttach = ((uint)(4)); + w198.XOptions = ((global::Gtk.AttachOptions)(4)); + w198.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); + w199.TopAttach = ((uint)(11)); + w199.BottomAttach = ((uint)(12)); + w199.LeftAttach = ((uint)(4)); + w199.RightAttach = ((uint)(5)); + w199.XOptions = ((global::Gtk.AttachOptions)(4)); + w199.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); + w200.TopAttach = ((uint)(14)); + w200.BottomAttach = ((uint)(15)); + w200.LeftAttach = ((uint)(17)); + w200.RightAttach = ((uint)(18)); + w200.XOptions = ((global::Gtk.AttachOptions)(4)); + w200.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 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)); + global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); + w201.TopAttach = ((uint)(7)); + w201.BottomAttach = ((uint)(8)); + w201.LeftAttach = ((uint)(8)); + w201.RightAttach = ((uint)(9)); + w201.XOptions = ((global::Gtk.AttachOptions)(4)); + w201.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 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)); + global::Gtk.Table.TableChild w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); + w202.TopAttach = ((uint)(8)); + w202.BottomAttach = ((uint)(9)); + w202.LeftAttach = ((uint)(12)); + w202.RightAttach = ((uint)(13)); + w202.XOptions = ((global::Gtk.AttachOptions)(4)); + w202.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 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)); + global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); + w203.TopAttach = ((uint)(7)); + w203.BottomAttach = ((uint)(8)); + w203.LeftAttach = ((uint)(9)); + w203.RightAttach = ((uint)(10)); + w203.XOptions = ((global::Gtk.AttachOptions)(4)); + w203.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 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)); + global::Gtk.Table.TableChild w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); + w204.TopAttach = ((uint)(7)); + w204.BottomAttach = ((uint)(8)); + w204.LeftAttach = ((uint)(10)); + w204.RightAttach = ((uint)(11)); + w204.XOptions = ((global::Gtk.AttachOptions)(4)); + w204.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 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)); + global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); + w205.TopAttach = ((uint)(7)); + w205.BottomAttach = ((uint)(8)); + w205.LeftAttach = ((uint)(11)); + w205.RightAttach = ((uint)(12)); + w205.XOptions = ((global::Gtk.AttachOptions)(4)); + w205.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 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)); + global::Gtk.Table.TableChild w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); + w206.TopAttach = ((uint)(7)); + w206.BottomAttach = ((uint)(8)); + w206.LeftAttach = ((uint)(12)); + w206.RightAttach = ((uint)(13)); + w206.XOptions = ((global::Gtk.AttachOptions)(4)); + w206.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 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)); + global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); + w207.TopAttach = ((uint)(8)); + w207.BottomAttach = ((uint)(9)); + 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.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 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)); + global::Gtk.Table.TableChild w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); + w208.TopAttach = ((uint)(8)); + w208.BottomAttach = ((uint)(9)); + w208.LeftAttach = ((uint)(9)); + w208.RightAttach = ((uint)(10)); + w208.XOptions = ((global::Gtk.AttachOptions)(4)); + w208.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); + w209.TopAttach = ((uint)(8)); + w209.BottomAttach = ((uint)(9)); + w209.LeftAttach = ((uint)(10)); + w209.RightAttach = ((uint)(11)); + w209.XOptions = ((global::Gtk.AttachOptions)(4)); + w209.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); + w210.TopAttach = ((uint)(8)); + w210.BottomAttach = ((uint)(9)); + w210.LeftAttach = ((uint)(11)); + w210.RightAttach = ((uint)(12)); + w210.XOptions = ((global::Gtk.AttachOptions)(4)); + w210.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblAccessories = new global::Gtk.Label(); this.lblAccessories.HeightRequest = 50; @@ -2558,100 +2450,100 @@ namespace Mundus.Views.Windows 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 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)); + global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); + w211.TopAttach = ((uint)(8)); + w211.BottomAttach = ((uint)(9)); + w211.LeftAttach = ((uint)(15)); + w211.RightAttach = ((uint)(20)); + w211.XOptions = ((global::Gtk.AttachOptions)(4)); + w211.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 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)); + global::Gtk.Table.TableChild w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w212.TopAttach = ((uint)(3)); + w212.BottomAttach = ((uint)(4)); + w212.LeftAttach = ((uint)(6)); + w212.RightAttach = ((uint)(7)); + w212.XOptions = ((global::Gtk.AttachOptions)(4)); + w212.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 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)); + global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w213.TopAttach = ((uint)(6)); + w213.BottomAttach = ((uint)(7)); + w213.LeftAttach = ((uint)(10)); + w213.RightAttach = ((uint)(11)); + w213.XOptions = ((global::Gtk.AttachOptions)(4)); + w213.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 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)); + global::Gtk.Table.TableChild w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w214.TopAttach = ((uint)(3)); + w214.BottomAttach = ((uint)(4)); + w214.LeftAttach = ((uint)(14)); + w214.RightAttach = ((uint)(15)); + w214.XOptions = ((global::Gtk.AttachOptions)(4)); + w214.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 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)); + global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w215.TopAttach = ((uint)(3)); + w215.BottomAttach = ((uint)(4)); + w215.LeftAttach = ((uint)(20)); + w215.RightAttach = ((uint)(21)); + w215.XOptions = ((global::Gtk.AttachOptions)(4)); + w215.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 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)); + global::Gtk.Table.TableChild w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w216.TopAttach = ((uint)(3)); + w216.BottomAttach = ((uint)(4)); + w216.XOptions = ((global::Gtk.AttachOptions)(4)); + w216.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 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)); + global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); + w217.TopAttach = ((uint)(16)); + w217.BottomAttach = ((uint)(17)); + w217.LeftAttach = ((uint)(10)); + w217.RightAttach = ((uint)(11)); + w217.XOptions = ((global::Gtk.AttachOptions)(4)); + w217.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank9])); + w218.LeftAttach = ((uint)(10)); + w218.RightAttach = ((uint)(11)); + w218.XOptions = ((global::Gtk.AttachOptions)(4)); + w218.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblEventLog = new global::Gtk.Label(); this.lblEventLog.WidthRequest = 50; @@ -2659,13 +2551,13 @@ 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 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)); + global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); + w219.TopAttach = ((uint)(11)); + w219.BottomAttach = ((uint)(12)); + w219.LeftAttach = ((uint)(8)); + w219.RightAttach = ((uint)(13)); + w219.XOptions = ((global::Gtk.AttachOptions)(4)); + w219.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblGear = new global::Gtk.Label(); this.lblGear.HeightRequest = 50; @@ -2673,25 +2565,25 @@ namespace Mundus.Views.Windows 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 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)); + global::Gtk.Table.TableChild w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); + w220.TopAttach = ((uint)(11)); + w220.BottomAttach = ((uint)(12)); + w220.LeftAttach = ((uint)(15)); + w220.RightAttach = ((uint)(20)); + w220.XOptions = ((global::Gtk.AttachOptions)(4)); + w220.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 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)); + global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); + w221.TopAttach = ((uint)(1)); + w221.BottomAttach = ((uint)(2)); + w221.LeftAttach = ((uint)(1)); + w221.RightAttach = ((uint)(6)); + w221.XOptions = ((global::Gtk.AttachOptions)(4)); + w221.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblHotbar = new global::Gtk.Label(); this.lblHotbar.WidthRequest = 50; @@ -2699,13 +2591,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 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)); + global::Gtk.Table.TableChild w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); + w222.TopAttach = ((uint)(9)); + w222.BottomAttach = ((uint)(10)); + w222.LeftAttach = ((uint)(8)); + w222.RightAttach = ((uint)(13)); + w222.XOptions = ((global::Gtk.AttachOptions)(4)); + w222.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblInfo = new global::Gtk.Label(); this.lblInfo.WidthRequest = 250; @@ -2714,77 +2606,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 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)); + global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); + w223.TopAttach = ((uint)(15)); + w223.BottomAttach = ((uint)(16)); + w223.LeftAttach = ((uint)(15)); + w223.RightAttach = ((uint)(20)); + w223.XOptions = ((global::Gtk.AttachOptions)(4)); + w223.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 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)); + global::Gtk.Table.TableChild w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); + w224.TopAttach = ((uint)(9)); + w224.BottomAttach = ((uint)(10)); + w224.LeftAttach = ((uint)(1)); + w224.RightAttach = ((uint)(6)); + w224.XOptions = ((global::Gtk.AttachOptions)(4)); + w224.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 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)); + global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); + w225.TopAttach = ((uint)(12)); + w225.BottomAttach = ((uint)(13)); + 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.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 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)); + global::Gtk.Table.TableChild w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); + w226.TopAttach = ((uint)(13)); + w226.BottomAttach = ((uint)(14)); + w226.LeftAttach = ((uint)(8)); + w226.RightAttach = ((uint)(13)); + w226.XOptions = ((global::Gtk.AttachOptions)(4)); + w226.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 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)); + global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); + w227.TopAttach = ((uint)(14)); + w227.BottomAttach = ((uint)(15)); + w227.LeftAttach = ((uint)(8)); + w227.RightAttach = ((uint)(13)); + w227.XOptions = ((global::Gtk.AttachOptions)(4)); + w227.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 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)); + global::Gtk.Table.TableChild w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); + w228.TopAttach = ((uint)(15)); + w228.BottomAttach = ((uint)(16)); + w228.LeftAttach = ((uint)(8)); + w228.RightAttach = ((uint)(13)); + w228.XOptions = ((global::Gtk.AttachOptions)(4)); + w228.YOptions = ((global::Gtk.AttachOptions)(4)); this.Add(this.tbUI); if ((this.Child != null)) { diff --git a/Mundus/gtk-gui/generated.cs b/Mundus/gtk-gui/generated.cs index 6aa9169..886588a 100644 --- a/Mundus/gtk-gui/generated.cs +++ b/Mundus/gtk-gui/generated.cs @@ -52,6 +52,10 @@ namespace Stetic w1.Add("wooden_axe", w20); global::Gtk.IconSet w21 = new global::Gtk.IconSet(global::Gdk.Pixbuf.LoadFromResource("Mundus.Icons.Land.Tools.wooden_pickaxe.png")); w1.Add("wooden_pickaxe", w21); + global::Gtk.IconSet w22 = new global::Gtk.IconSet(global::Gdk.Pixbuf.LoadFromResource("Mundus.Icons.Land.Tools.wooden_shovel.png")); + w1.Add("wooden_shovel", w22); + global::Gtk.IconSet w23 = new global::Gtk.IconSet(global::Gdk.Pixbuf.LoadFromResource("Mundus.Icons.Land.Tools.stone_shovel.png")); + w1.Add("stone_shovel", w23); w1.AddDefault(); } } diff --git a/Mundus/gtk-gui/gui.stetic b/Mundus/gtk-gui/gui.stetic index 6aab50a..0988406 100644 --- a/Mundus/gtk-gui/gui.stetic +++ b/Mundus/gtk-gui/gui.stetic @@ -107,6 +107,16 @@ <property name="Image">resource:Mundus.Icons.Land.Tools.wooden_pickaxe.png</property> </source> </icon-set> + <icon-set id="wooden_shovel"> + <source> + <property name="Image">resource:Mundus.Icons.Land.Tools.wooden_shovel.png</property> + </source> + </icon-set> + <icon-set id="stone_shovel"> + <source> + <property name="Image">resource:Mundus.Icons.Land.Tools.stone_shovel.png</property> + </source> + </icon-set> </icon-factory> <widget class="Gtk.Window" id="Mundus.Views.Windows.NewGameWindow" design-size="581 275"> <property name="MemberName" /> @@ -1278,6 +1288,24 @@ <placeholder /> </child> <child> + <placeholder /> + </child> + <child> + <placeholder /> + </child> + <child> + <placeholder /> + </child> + <child> + <placeholder /> + </child> + <child> + <placeholder /> + </child> + <child> + <placeholder /> + </child> + <child> <widget class="Gtk.Button" id="btnA1"> <property name="MemberName" /> <property name="WidthRequest">50</property> @@ -1709,84 +1737,6 @@ </packing> </child> <child> - <widget class="Gtk.Button" id="btnGM1"> - <property name="MemberName" /> - <property name="WidthRequest">50</property> - <property name="HeightRequest">50</property> - <property name="CanFocus">True</property> - <property name="Type">TextOnly</property> - <property name="Label" translatable="yes">1:1</property> - <property name="UseUnderline">True</property> - </widget> - <packing> - <property name="TopAttach">7</property> - <property name="BottomAttach">8</property> - <property name="LeftAttach">1</property> - <property name="RightAttach">2</property> - <property name="AutoSize">True</property> - <property name="XOptions">Fill</property> - <property name="YOptions">Fill</property> - <property name="XExpand">False</property> - <property name="XFill">True</property> - <property name="XShrink">False</property> - <property name="YExpand">False</property> - <property name="YFill">True</property> - <property name="YShrink">False</property> - </packing> - </child> - <child> - <widget class="Gtk.Button" id="btnGM2"> - <property name="MemberName" /> - <property name="WidthRequest">50</property> - <property name="HeightRequest">50</property> - <property name="CanFocus">True</property> - <property name="Type">TextOnly</property> - <property name="Label" translatable="yes">1:5</property> - <property name="UseUnderline">True</property> - </widget> - <packing> - <property name="TopAttach">7</property> - <property name="BottomAttach">8</property> - <property name="LeftAttach">3</property> - <property name="RightAttach">4</property> - <property name="AutoSize">True</property> - <property name="XOptions">Fill</property> - <property name="YOptions">Fill</property> - <property name="XExpand">False</property> - <property name="XFill">True</property> - <property name="XShrink">False</property> - <property name="YExpand">False</property> - <property name="YFill">True</property> - <property name="YShrink">False</property> - </packing> - </child> - <child> - <widget class="Gtk.Button" id="btnGM3"> - <property name="MemberName" /> - <property name="WidthRequest">50</property> - <property name="HeightRequest">50</property> - <property name="CanFocus">True</property> - <property name="Type">TextOnly</property> - <property name="Label" translatable="yes">1:10</property> - <property name="UseUnderline">True</property> - </widget> - <packing> - <property name="TopAttach">7</property> - <property name="BottomAttach">8</property> - <property name="LeftAttach">5</property> - <property name="RightAttach">6</property> - <property name="AutoSize">True</property> - <property name="XOptions">Fill</property> - <property name="YOptions">Fill</property> - <property name="XExpand">False</property> - <property name="XFill">True</property> - <property name="XShrink">False</property> - <property name="YExpand">False</property> - <property name="YFill">True</property> - <property name="YShrink">False</property> - </packing> - </child> - <child> <widget class="Gtk.Button" id="btnH1"> <property name="MemberName" /> <property name="WidthRequest">50</property> @@ -2681,84 +2631,6 @@ </packing> </child> <child> - <widget class="Gtk.Button" id="btnIM1"> - <property name="MemberName" /> - <property name="WidthRequest">50</property> - <property name="HeightRequest">50</property> - <property name="CanFocus">True</property> - <property name="Type">TextOnly</property> - <property name="Label" translatable="yes">1:1</property> - <property name="UseUnderline">True</property> - </widget> - <packing> - <property name="TopAttach">15</property> - <property name="BottomAttach">16</property> - <property name="LeftAttach">1</property> - <property name="RightAttach">2</property> - <property name="AutoSize">True</property> - <property name="XOptions">Fill</property> - <property name="YOptions">Fill</property> - <property name="XExpand">False</property> - <property name="XFill">True</property> - <property name="XShrink">False</property> - <property name="YExpand">False</property> - <property name="YFill">True</property> - <property name="YShrink">False</property> - </packing> - </child> - <child> - <widget class="Gtk.Button" id="btnIM2"> - <property name="MemberName" /> - <property name="WidthRequest">50</property> - <property name="HeightRequest">50</property> - <property name="CanFocus">True</property> - <property name="Type">TextOnly</property> - <property name="Label" translatable="yes">1:5</property> - <property name="UseUnderline">True</property> - </widget> - <packing> - <property name="TopAttach">15</property> - <property name="BottomAttach">16</property> - <property name="LeftAttach">3</property> - <property name="RightAttach">4</property> - <property name="AutoSize">True</property> - <property name="XOptions">Fill</property> - <property name="YOptions">Fill</property> - <property name="XExpand">False</property> - <property name="XFill">True</property> - <property name="XShrink">False</property> - <property name="YExpand">False</property> - <property name="YFill">True</property> - <property name="YShrink">False</property> - </packing> - </child> - <child> - <widget class="Gtk.Button" id="btnIM3"> - <property name="MemberName" /> - <property name="WidthRequest">50</property> - <property name="HeightRequest">50</property> - <property name="CanFocus">True</property> - <property name="Type">TextOnly</property> - <property name="Label" translatable="yes">1:10</property> - <property name="UseUnderline">True</property> - </widget> - <packing> - <property name="TopAttach">15</property> - <property name="BottomAttach">16</property> - <property name="LeftAttach">5</property> - <property name="RightAttach">6</property> - <property name="AutoSize">True</property> - <property name="XOptions">Fill</property> - <property name="YOptions">Fill</property> - <property name="XExpand">False</property> - <property name="XFill">True</property> - <property name="XShrink">False</property> - <property name="YExpand">False</property> - <property name="YFill">True</property> - <property name="YShrink">False</property> - </packing> - </child> - <child> <widget class="Gtk.Button" id="btnInv"> <property name="MemberName" /> <property name="WidthRequest">50</property> |
