diff options
| -rw-r--r-- | Mundus/Data/SuperLayers/LandContext.cs | 4 | ||||
| -rw-r--r-- | Mundus/Data/SuperLayers/SkyContext.cs | 4 | ||||
| -rw-r--r-- | Mundus/Data/SuperLayers/UndergroundContext.cs | 4 | ||||
| -rw-r--r-- | Mundus/Service/SuperLayers/ImageController.cs | 3 | ||||
| -rw-r--r-- | Mundus/Views/Windows/GameWindows/Large/LargePrinting.cs | 4 | ||||
| -rw-r--r-- | Mundus/Views/Windows/GameWindows/Medium/MediumPrinting.cs | 6 | ||||
| -rw-r--r-- | Mundus/Views/Windows/GameWindows/Small/SmallButtonClickedEvents.cs | 10 | ||||
| -rw-r--r-- | Mundus/Views/Windows/GameWindows/Small/SmallLogic.cs | 3 | ||||
| -rw-r--r-- | Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Small.SmallGameWindow.cs | 1726 | ||||
| -rw-r--r-- | Mundus/gtk-gui/gui.stetic | 60 |
10 files changed, 871 insertions, 953 deletions
diff --git a/Mundus/Data/SuperLayers/LandContext.cs b/Mundus/Data/SuperLayers/LandContext.cs index 0607e23..9301438 100644 --- a/Mundus/Data/SuperLayers/LandContext.cs +++ b/Mundus/Data/SuperLayers/LandContext.cs @@ -165,5 +165,9 @@ { optionsBuilder.UseMySQL(DataBaseContexts.ConnectionStringMySQL); } + + public override string ToString() { + return "Land"; + } } } diff --git a/Mundus/Data/SuperLayers/SkyContext.cs b/Mundus/Data/SuperLayers/SkyContext.cs index 45d58a2..25dc216 100644 --- a/Mundus/Data/SuperLayers/SkyContext.cs +++ b/Mundus/Data/SuperLayers/SkyContext.cs @@ -165,5 +165,9 @@ { optionsBuilder.UseMySQL(DataBaseContexts.ConnectionStringMySQL); } + + public override string ToString() { + return "Sky"; + } } } diff --git a/Mundus/Data/SuperLayers/UndergroundContext.cs b/Mundus/Data/SuperLayers/UndergroundContext.cs index 4874360..641f480 100644 --- a/Mundus/Data/SuperLayers/UndergroundContext.cs +++ b/Mundus/Data/SuperLayers/UndergroundContext.cs @@ -164,5 +164,9 @@ { optionsBuilder.UseMySQL(DataBaseContexts.ConnectionStringMySQL); } + + public override string ToString() { + return "Underground"; + } } } diff --git a/Mundus/Service/SuperLayers/ImageController.cs b/Mundus/Service/SuperLayers/ImageController.cs index d5a2bae..19b4793 100644 --- a/Mundus/Service/SuperLayers/ImageController.cs +++ b/Mundus/Service/SuperLayers/ImageController.cs @@ -9,7 +9,7 @@ public static class ImageController { - private static ISuperLayerContext superLayer = MI.Player.CurrSuperLayer; + private static ISuperLayerContext superLayer; public enum Layer { @@ -24,6 +24,7 @@ /// </summary> public static Image GetPlayerScreenImage(int y, int x, Layer layer) { + superLayer = MI.Player.CurrSuperLayer; Image img = null; if (layer == Layer.Ground) diff --git a/Mundus/Views/Windows/GameWindows/Large/LargePrinting.cs b/Mundus/Views/Windows/GameWindows/Large/LargePrinting.cs index 8001f32..9352f67 100644 --- a/Mundus/Views/Windows/GameWindows/Large/LargePrinting.cs +++ b/Mundus/Views/Windows/GameWindows/Large/LargePrinting.cs @@ -525,7 +525,9 @@ { for (int col = Calculate.CalculateStartX(Size), maxX = Calculate.CalculateMaxX(Size); col <= maxX; col++, img++) { - string stockName = GetPlayerScreenImage(row, col, Layer.Structure).Stock; + Image image = GetPlayerScreenImage(row, col, Layer.Structure); + + string stockName = (image == null) ? "blank" : image.Stock; switch (img) { diff --git a/Mundus/Views/Windows/GameWindows/Medium/MediumPrinting.cs b/Mundus/Views/Windows/GameWindows/Medium/MediumPrinting.cs index afe4ea9..16ab423 100644 --- a/Mundus/Views/Windows/GameWindows/Medium/MediumPrinting.cs +++ b/Mundus/Views/Windows/GameWindows/Medium/MediumPrinting.cs @@ -293,7 +293,7 @@ private void PrintAccessoriesInventory() { for (int row = 0; row < 2; row++) { for (int col = 0; col < Size; col++) { - Image img = GetPlayerInventoryImage(InventoryPlace.Accessories, (row * Size) + col + 1); + Image img = GetPlayerInventoryImage(InventoryPlace.Accessories, (row * Size) + col); switch ((row * Size) + col + 1) { case 1: btnA1.Image = img; break; @@ -405,7 +405,9 @@ { for (int col = Calculate.CalculateStartX(Size), maxX = Calculate.CalculateMaxX(Size); col <= maxX; col++, img++) { - string stockName = GetPlayerScreenImage(row, col, Layer.Structure).Stock; + Image image = GetPlayerScreenImage(row, col, Layer.Structure); + + string stockName = (image == null) ? "blank" : image.Stock; switch (img) { diff --git a/Mundus/Views/Windows/GameWindows/Small/SmallButtonClickedEvents.cs b/Mundus/Views/Windows/GameWindows/Small/SmallButtonClickedEvents.cs index 87ac695..4b46ebb 100644 --- a/Mundus/Views/Windows/GameWindows/Small/SmallButtonClickedEvents.cs +++ b/Mundus/Views/Windows/GameWindows/Small/SmallButtonClickedEvents.cs @@ -6,16 +6,6 @@ public partial class SmallGameWindow : Gtk.Window { - protected void OnBtnIG1Clicked(object sender, EventArgs e) - { - this.PrintMainMenu(); - } - - protected void OnBtnIG2Clicked(object sender, EventArgs e) - { - this.PrintMainMenu(); - } - protected void OnBtnPauseClicked(object sender, EventArgs e) { // Note: pause window blocks player input diff --git a/Mundus/Views/Windows/GameWindows/Small/SmallLogic.cs b/Mundus/Views/Windows/GameWindows/Small/SmallLogic.cs index c5cd1f9..a7ae6af 100644 --- a/Mundus/Views/Windows/GameWindows/Small/SmallLogic.cs +++ b/Mundus/Views/Windows/GameWindows/Small/SmallLogic.cs @@ -201,9 +201,6 @@ btnG4.Visible = isVisible; btnG5.Visible = isVisible; - btnIG1.Visible = isVisible; - btnIG2.Visible = isVisible; - imgInfo.Visible = isVisible; lblInfo.Visible = isVisible; diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Small.SmallGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Small.SmallGameWindow.cs index 37b84da..805a34d 100644 --- a/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Small.SmallGameWindow.cs +++ b/Mundus/gtk-gui/Mundus.Views.Windows.GameWindows.Small.SmallGameWindow.cs @@ -98,10 +98,6 @@ namespace Mundus.Views.Windows.GameWindows.Small private global::Gtk.Button btnI9; - private global::Gtk.Button btnIG1; - - private global::Gtk.Button btnIG2; - private global::Gtk.Button btnInv; private global::Gtk.Button btnLog; @@ -1152,38 +1148,6 @@ namespace Mundus.Views.Windows.GameWindows.Small w91.XOptions = ((global::Gtk.AttachOptions)(4)); w91.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.btnIG1 = new global::Gtk.Button(); - this.btnIG1.WidthRequest = 50; - this.btnIG1.HeightRequest = 50; - this.btnIG1.CanFocus = true; - this.btnIG1.Name = "btnIG1"; - this.btnIG1.UseUnderline = true; - this.btnIG1.Label = "TESTING"; - this.tbUI.Add(this.btnIG1); - global::Gtk.Table.TableChild w92 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG1])); - w92.TopAttach = ((uint)(13)); - w92.BottomAttach = ((uint)(14)); - w92.LeftAttach = ((uint)(15)); - w92.RightAttach = ((uint)(16)); - w92.XOptions = ((global::Gtk.AttachOptions)(4)); - w92.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.btnIG2 = new global::Gtk.Button(); - this.btnIG2.WidthRequest = 50; - this.btnIG2.HeightRequest = 50; - this.btnIG2.CanFocus = true; - this.btnIG2.Name = "btnIG2"; - this.btnIG2.UseUnderline = true; - this.btnIG2.Label = "TESTING"; - this.tbUI.Add(this.btnIG2); - global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnIG2])); - w93.TopAttach = ((uint)(13)); - w93.BottomAttach = ((uint)(14)); - w93.LeftAttach = ((uint)(16)); - w93.RightAttach = ((uint)(17)); - w93.XOptions = ((global::Gtk.AttachOptions)(4)); - w93.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild this.btnInv = new global::Gtk.Button(); this.btnInv.WidthRequest = 50; this.btnInv.HeightRequest = 50; @@ -1192,13 +1156,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnInv.UseUnderline = true; this.btnInv.Label = "Inv"; this.tbUI.Add(this.btnInv); - global::Gtk.Table.TableChild w94 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); - w94.TopAttach = ((uint)(9)); - w94.BottomAttach = ((uint)(10)); - w94.LeftAttach = ((uint)(13)); - w94.RightAttach = ((uint)(14)); - w94.XOptions = ((global::Gtk.AttachOptions)(4)); - w94.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w92 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnInv])); + w92.TopAttach = ((uint)(9)); + w92.BottomAttach = ((uint)(10)); + w92.LeftAttach = ((uint)(13)); + w92.RightAttach = ((uint)(14)); + w92.XOptions = ((global::Gtk.AttachOptions)(4)); + w92.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnLog = new global::Gtk.Button(); this.btnLog.WidthRequest = 250; @@ -1209,13 +1173,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnLog.FocusOnClick = false; this.btnLog.Label = "Event Log"; this.tbUI.Add(this.btnLog); - global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); - w95.TopAttach = ((uint)(11)); - w95.BottomAttach = ((uint)(12)); - w95.LeftAttach = ((uint)(8)); - w95.RightAttach = ((uint)(13)); - w95.XOptions = ((global::Gtk.AttachOptions)(0)); - w95.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); + w93.TopAttach = ((uint)(11)); + w93.BottomAttach = ((uint)(12)); + w93.LeftAttach = ((uint)(8)); + w93.RightAttach = ((uint)(13)); + w93.XOptions = ((global::Gtk.AttachOptions)(0)); + w93.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnMap = new global::Gtk.Button(); this.btnMap.WidthRequest = 50; @@ -1225,13 +1189,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnMap.UseUnderline = true; this.btnMap.Label = "Map"; this.tbUI.Add(this.btnMap); - global::Gtk.Table.TableChild w96 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); - w96.TopAttach = ((uint)(9)); - w96.BottomAttach = ((uint)(10)); - w96.LeftAttach = ((uint)(7)); - w96.RightAttach = ((uint)(8)); - w96.XOptions = ((global::Gtk.AttachOptions)(4)); - w96.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w94 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); + w94.TopAttach = ((uint)(9)); + w94.BottomAttach = ((uint)(10)); + w94.LeftAttach = ((uint)(7)); + w94.RightAttach = ((uint)(8)); + w94.XOptions = ((global::Gtk.AttachOptions)(4)); + w94.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnMusic = new global::Gtk.Button(); this.btnMusic.WidthRequest = 50; @@ -1241,13 +1205,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnMusic.UseUnderline = true; this.btnMusic.Label = "Music"; this.tbUI.Add(this.btnMusic); - global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); - w97.TopAttach = ((uint)(11)); - w97.BottomAttach = ((uint)(12)); - w97.LeftAttach = ((uint)(7)); - w97.RightAttach = ((uint)(8)); - w97.XOptions = ((global::Gtk.AttachOptions)(4)); - w97.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); + w95.TopAttach = ((uint)(11)); + w95.BottomAttach = ((uint)(12)); + w95.LeftAttach = ((uint)(7)); + w95.RightAttach = ((uint)(8)); + w95.XOptions = ((global::Gtk.AttachOptions)(4)); + w95.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP1 = new global::Gtk.Button(); this.btnP1.WidthRequest = 50; @@ -1256,16 +1220,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP1.Name = "btnP1"; this.btnP1.UseUnderline = true; this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w98 = new global::Gtk.Image(); - this.btnP1.Image = w98; + global::Gtk.Image w96 = new global::Gtk.Image(); + this.btnP1.Image = w96; this.tbUI.Add(this.btnP1); - global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); - w99.TopAttach = ((uint)(1)); - w99.BottomAttach = ((uint)(2)); - w99.LeftAttach = ((uint)(8)); - w99.RightAttach = ((uint)(9)); - w99.XOptions = ((global::Gtk.AttachOptions)(4)); - w99.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); + w97.TopAttach = ((uint)(1)); + w97.BottomAttach = ((uint)(2)); + w97.LeftAttach = ((uint)(8)); + w97.RightAttach = ((uint)(9)); + w97.XOptions = ((global::Gtk.AttachOptions)(4)); + w97.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP10 = new global::Gtk.Button(); this.btnP10.WidthRequest = 50; @@ -1274,16 +1238,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP10.Name = "btnP10"; this.btnP10.UseUnderline = true; this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w100 = new global::Gtk.Image(); - this.btnP10.Image = w100; + global::Gtk.Image w98 = new global::Gtk.Image(); + this.btnP10.Image = w98; this.tbUI.Add(this.btnP10); - global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); - w101.TopAttach = ((uint)(2)); - w101.BottomAttach = ((uint)(3)); - w101.LeftAttach = ((uint)(12)); - w101.RightAttach = ((uint)(13)); - w101.XOptions = ((global::Gtk.AttachOptions)(4)); - w101.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); + w99.TopAttach = ((uint)(2)); + w99.BottomAttach = ((uint)(3)); + w99.LeftAttach = ((uint)(12)); + w99.RightAttach = ((uint)(13)); + w99.XOptions = ((global::Gtk.AttachOptions)(4)); + w99.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP11 = new global::Gtk.Button(); this.btnP11.WidthRequest = 50; @@ -1292,16 +1256,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP11.Name = "btnP11"; this.btnP11.UseUnderline = true; this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w102 = new global::Gtk.Image(); - this.btnP11.Image = w102; + global::Gtk.Image w100 = new global::Gtk.Image(); + this.btnP11.Image = w100; this.tbUI.Add(this.btnP11); - global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); - w103.TopAttach = ((uint)(3)); - w103.BottomAttach = ((uint)(4)); - w103.LeftAttach = ((uint)(8)); - w103.RightAttach = ((uint)(9)); - w103.XOptions = ((global::Gtk.AttachOptions)(4)); - w103.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); + w101.TopAttach = ((uint)(3)); + w101.BottomAttach = ((uint)(4)); + w101.LeftAttach = ((uint)(8)); + w101.RightAttach = ((uint)(9)); + w101.XOptions = ((global::Gtk.AttachOptions)(4)); + w101.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP12 = new global::Gtk.Button(); this.btnP12.WidthRequest = 50; @@ -1310,16 +1274,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP12.Name = "btnP12"; this.btnP12.UseUnderline = true; this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w104 = new global::Gtk.Image(); - this.btnP12.Image = w104; + global::Gtk.Image w102 = new global::Gtk.Image(); + this.btnP12.Image = w102; this.tbUI.Add(this.btnP12); - global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); - w105.TopAttach = ((uint)(3)); - w105.BottomAttach = ((uint)(4)); - w105.LeftAttach = ((uint)(9)); - w105.RightAttach = ((uint)(10)); - w105.XOptions = ((global::Gtk.AttachOptions)(4)); - w105.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); + w103.TopAttach = ((uint)(3)); + w103.BottomAttach = ((uint)(4)); + w103.LeftAttach = ((uint)(9)); + w103.RightAttach = ((uint)(10)); + w103.XOptions = ((global::Gtk.AttachOptions)(4)); + w103.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP13 = new global::Gtk.Button(); this.btnP13.WidthRequest = 50; @@ -1328,16 +1292,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP13.Name = "btnP13"; this.btnP13.UseUnderline = true; this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w106 = new global::Gtk.Image(); - this.btnP13.Image = w106; + global::Gtk.Image w104 = new global::Gtk.Image(); + this.btnP13.Image = w104; this.tbUI.Add(this.btnP13); - global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); - w107.TopAttach = ((uint)(3)); - w107.BottomAttach = ((uint)(4)); - w107.LeftAttach = ((uint)(10)); - w107.RightAttach = ((uint)(11)); - w107.XOptions = ((global::Gtk.AttachOptions)(4)); - w107.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); + w105.TopAttach = ((uint)(3)); + w105.BottomAttach = ((uint)(4)); + w105.LeftAttach = ((uint)(10)); + w105.RightAttach = ((uint)(11)); + w105.XOptions = ((global::Gtk.AttachOptions)(4)); + w105.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP14 = new global::Gtk.Button(); this.btnP14.WidthRequest = 50; @@ -1346,16 +1310,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP14.Name = "btnP14"; this.btnP14.UseUnderline = true; this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w108 = new global::Gtk.Image(); - this.btnP14.Image = w108; + global::Gtk.Image w106 = new global::Gtk.Image(); + this.btnP14.Image = w106; this.tbUI.Add(this.btnP14); - global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); - w109.TopAttach = ((uint)(3)); - w109.BottomAttach = ((uint)(4)); - w109.LeftAttach = ((uint)(11)); - w109.RightAttach = ((uint)(12)); - w109.XOptions = ((global::Gtk.AttachOptions)(4)); - w109.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); + w107.TopAttach = ((uint)(3)); + w107.BottomAttach = ((uint)(4)); + w107.LeftAttach = ((uint)(11)); + w107.RightAttach = ((uint)(12)); + w107.XOptions = ((global::Gtk.AttachOptions)(4)); + w107.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP15 = new global::Gtk.Button(); this.btnP15.WidthRequest = 50; @@ -1364,16 +1328,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP15.Name = "btnP15"; this.btnP15.UseUnderline = true; this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w110 = new global::Gtk.Image(); - this.btnP15.Image = w110; + global::Gtk.Image w108 = new global::Gtk.Image(); + this.btnP15.Image = w108; this.tbUI.Add(this.btnP15); - global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); - w111.TopAttach = ((uint)(3)); - w111.BottomAttach = ((uint)(4)); - w111.LeftAttach = ((uint)(12)); - w111.RightAttach = ((uint)(13)); - w111.XOptions = ((global::Gtk.AttachOptions)(4)); - w111.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); + w109.TopAttach = ((uint)(3)); + w109.BottomAttach = ((uint)(4)); + w109.LeftAttach = ((uint)(12)); + w109.RightAttach = ((uint)(13)); + w109.XOptions = ((global::Gtk.AttachOptions)(4)); + w109.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP16 = new global::Gtk.Button(); this.btnP16.WidthRequest = 50; @@ -1382,16 +1346,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP16.Name = "btnP16"; this.btnP16.UseUnderline = true; this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w112 = new global::Gtk.Image(); - this.btnP16.Image = w112; + global::Gtk.Image w110 = new global::Gtk.Image(); + this.btnP16.Image = w110; this.tbUI.Add(this.btnP16); - global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); - w113.TopAttach = ((uint)(4)); - w113.BottomAttach = ((uint)(5)); - w113.LeftAttach = ((uint)(8)); - w113.RightAttach = ((uint)(9)); - w113.XOptions = ((global::Gtk.AttachOptions)(4)); - w113.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); + w111.TopAttach = ((uint)(4)); + w111.BottomAttach = ((uint)(5)); + w111.LeftAttach = ((uint)(8)); + w111.RightAttach = ((uint)(9)); + w111.XOptions = ((global::Gtk.AttachOptions)(4)); + w111.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP17 = new global::Gtk.Button(); this.btnP17.WidthRequest = 50; @@ -1400,16 +1364,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP17.Name = "btnP17"; this.btnP17.UseUnderline = true; this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w114 = new global::Gtk.Image(); - this.btnP17.Image = w114; + global::Gtk.Image w112 = new global::Gtk.Image(); + this.btnP17.Image = w112; this.tbUI.Add(this.btnP17); - global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); - w115.TopAttach = ((uint)(4)); - w115.BottomAttach = ((uint)(5)); - w115.LeftAttach = ((uint)(9)); - w115.RightAttach = ((uint)(10)); - w115.XOptions = ((global::Gtk.AttachOptions)(4)); - w115.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); + w113.TopAttach = ((uint)(4)); + w113.BottomAttach = ((uint)(5)); + w113.LeftAttach = ((uint)(9)); + w113.RightAttach = ((uint)(10)); + w113.XOptions = ((global::Gtk.AttachOptions)(4)); + w113.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP18 = new global::Gtk.Button(); this.btnP18.WidthRequest = 50; @@ -1418,16 +1382,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP18.Name = "btnP18"; this.btnP18.UseUnderline = true; this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w116 = new global::Gtk.Image(); - this.btnP18.Image = w116; + global::Gtk.Image w114 = new global::Gtk.Image(); + this.btnP18.Image = w114; this.tbUI.Add(this.btnP18); - global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); - w117.TopAttach = ((uint)(4)); - w117.BottomAttach = ((uint)(5)); - w117.LeftAttach = ((uint)(10)); - w117.RightAttach = ((uint)(11)); - w117.XOptions = ((global::Gtk.AttachOptions)(4)); - w117.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); + w115.TopAttach = ((uint)(4)); + w115.BottomAttach = ((uint)(5)); + w115.LeftAttach = ((uint)(10)); + w115.RightAttach = ((uint)(11)); + w115.XOptions = ((global::Gtk.AttachOptions)(4)); + w115.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP19 = new global::Gtk.Button(); this.btnP19.WidthRequest = 50; @@ -1436,16 +1400,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP19.Name = "btnP19"; this.btnP19.UseUnderline = true; this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w118 = new global::Gtk.Image(); - this.btnP19.Image = w118; + global::Gtk.Image w116 = new global::Gtk.Image(); + this.btnP19.Image = w116; this.tbUI.Add(this.btnP19); - global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); - w119.TopAttach = ((uint)(4)); - w119.BottomAttach = ((uint)(5)); - w119.LeftAttach = ((uint)(11)); - w119.RightAttach = ((uint)(12)); - w119.XOptions = ((global::Gtk.AttachOptions)(4)); - w119.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); + w117.TopAttach = ((uint)(4)); + w117.BottomAttach = ((uint)(5)); + w117.LeftAttach = ((uint)(11)); + w117.RightAttach = ((uint)(12)); + w117.XOptions = ((global::Gtk.AttachOptions)(4)); + w117.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP2 = new global::Gtk.Button(); this.btnP2.WidthRequest = 50; @@ -1454,16 +1418,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP2.Name = "btnP2"; this.btnP2.UseUnderline = true; this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w120 = new global::Gtk.Image(); - this.btnP2.Image = w120; + global::Gtk.Image w118 = new global::Gtk.Image(); + this.btnP2.Image = w118; this.tbUI.Add(this.btnP2); - global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); - w121.TopAttach = ((uint)(1)); - w121.BottomAttach = ((uint)(2)); - w121.LeftAttach = ((uint)(9)); - w121.RightAttach = ((uint)(10)); - w121.XOptions = ((global::Gtk.AttachOptions)(4)); - w121.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); + w119.TopAttach = ((uint)(1)); + w119.BottomAttach = ((uint)(2)); + w119.LeftAttach = ((uint)(9)); + w119.RightAttach = ((uint)(10)); + w119.XOptions = ((global::Gtk.AttachOptions)(4)); + w119.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP20 = new global::Gtk.Button(); this.btnP20.WidthRequest = 50; @@ -1472,16 +1436,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP20.Name = "btnP20"; this.btnP20.UseUnderline = true; this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w122 = new global::Gtk.Image(); - this.btnP20.Image = w122; + global::Gtk.Image w120 = new global::Gtk.Image(); + this.btnP20.Image = w120; this.tbUI.Add(this.btnP20); - global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); - w123.TopAttach = ((uint)(4)); - w123.BottomAttach = ((uint)(5)); - w123.LeftAttach = ((uint)(12)); - w123.RightAttach = ((uint)(13)); - w123.XOptions = ((global::Gtk.AttachOptions)(4)); - w123.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); + w121.TopAttach = ((uint)(4)); + w121.BottomAttach = ((uint)(5)); + w121.LeftAttach = ((uint)(12)); + w121.RightAttach = ((uint)(13)); + w121.XOptions = ((global::Gtk.AttachOptions)(4)); + w121.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP21 = new global::Gtk.Button(); this.btnP21.WidthRequest = 50; @@ -1490,16 +1454,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP21.Name = "btnP21"; this.btnP21.UseUnderline = true; this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w124 = new global::Gtk.Image(); - this.btnP21.Image = w124; + global::Gtk.Image w122 = new global::Gtk.Image(); + this.btnP21.Image = w122; this.tbUI.Add(this.btnP21); - global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); - w125.TopAttach = ((uint)(5)); - w125.BottomAttach = ((uint)(6)); - w125.LeftAttach = ((uint)(8)); - w125.RightAttach = ((uint)(9)); - w125.XOptions = ((global::Gtk.AttachOptions)(4)); - w125.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); + w123.TopAttach = ((uint)(5)); + w123.BottomAttach = ((uint)(6)); + w123.LeftAttach = ((uint)(8)); + w123.RightAttach = ((uint)(9)); + w123.XOptions = ((global::Gtk.AttachOptions)(4)); + w123.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP22 = new global::Gtk.Button(); this.btnP22.WidthRequest = 50; @@ -1508,16 +1472,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP22.Name = "btnP22"; this.btnP22.UseUnderline = true; this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w126 = new global::Gtk.Image(); - this.btnP22.Image = w126; + global::Gtk.Image w124 = new global::Gtk.Image(); + this.btnP22.Image = w124; this.tbUI.Add(this.btnP22); - global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); - w127.TopAttach = ((uint)(5)); - w127.BottomAttach = ((uint)(6)); - w127.LeftAttach = ((uint)(9)); - w127.RightAttach = ((uint)(10)); - w127.XOptions = ((global::Gtk.AttachOptions)(4)); - w127.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); + w125.TopAttach = ((uint)(5)); + w125.BottomAttach = ((uint)(6)); + w125.LeftAttach = ((uint)(9)); + w125.RightAttach = ((uint)(10)); + w125.XOptions = ((global::Gtk.AttachOptions)(4)); + w125.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP23 = new global::Gtk.Button(); this.btnP23.WidthRequest = 50; @@ -1526,16 +1490,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP23.Name = "btnP23"; this.btnP23.UseUnderline = true; this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w128 = new global::Gtk.Image(); - this.btnP23.Image = w128; + global::Gtk.Image w126 = new global::Gtk.Image(); + this.btnP23.Image = w126; this.tbUI.Add(this.btnP23); - global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); - w129.TopAttach = ((uint)(5)); - w129.BottomAttach = ((uint)(6)); - w129.LeftAttach = ((uint)(10)); - w129.RightAttach = ((uint)(11)); - w129.XOptions = ((global::Gtk.AttachOptions)(4)); - w129.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); + w127.TopAttach = ((uint)(5)); + w127.BottomAttach = ((uint)(6)); + w127.LeftAttach = ((uint)(10)); + w127.RightAttach = ((uint)(11)); + w127.XOptions = ((global::Gtk.AttachOptions)(4)); + w127.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP24 = new global::Gtk.Button(); this.btnP24.WidthRequest = 50; @@ -1544,16 +1508,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP24.Name = "btnP24"; this.btnP24.UseUnderline = true; this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w130 = new global::Gtk.Image(); - this.btnP24.Image = w130; + global::Gtk.Image w128 = new global::Gtk.Image(); + this.btnP24.Image = w128; this.tbUI.Add(this.btnP24); - global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); - w131.TopAttach = ((uint)(5)); - w131.BottomAttach = ((uint)(6)); - w131.LeftAttach = ((uint)(11)); - w131.RightAttach = ((uint)(12)); - w131.XOptions = ((global::Gtk.AttachOptions)(4)); - w131.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); + w129.TopAttach = ((uint)(5)); + w129.BottomAttach = ((uint)(6)); + w129.LeftAttach = ((uint)(11)); + w129.RightAttach = ((uint)(12)); + w129.XOptions = ((global::Gtk.AttachOptions)(4)); + w129.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP25 = new global::Gtk.Button(); this.btnP25.WidthRequest = 50; @@ -1562,16 +1526,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP25.Name = "btnP25"; this.btnP25.UseUnderline = true; this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w132 = new global::Gtk.Image(); - this.btnP25.Image = w132; + global::Gtk.Image w130 = new global::Gtk.Image(); + this.btnP25.Image = w130; this.tbUI.Add(this.btnP25); - global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); - w133.TopAttach = ((uint)(5)); - w133.BottomAttach = ((uint)(6)); - w133.LeftAttach = ((uint)(12)); - w133.RightAttach = ((uint)(13)); - w133.XOptions = ((global::Gtk.AttachOptions)(4)); - w133.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); + w131.TopAttach = ((uint)(5)); + w131.BottomAttach = ((uint)(6)); + w131.LeftAttach = ((uint)(12)); + w131.RightAttach = ((uint)(13)); + w131.XOptions = ((global::Gtk.AttachOptions)(4)); + w131.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP3 = new global::Gtk.Button(); this.btnP3.WidthRequest = 50; @@ -1580,16 +1544,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP3.Name = "btnP3"; this.btnP3.UseUnderline = true; this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w134 = new global::Gtk.Image(); - this.btnP3.Image = w134; + global::Gtk.Image w132 = new global::Gtk.Image(); + this.btnP3.Image = w132; this.tbUI.Add(this.btnP3); - global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); - w135.TopAttach = ((uint)(1)); - w135.BottomAttach = ((uint)(2)); - w135.LeftAttach = ((uint)(10)); - w135.RightAttach = ((uint)(11)); - w135.XOptions = ((global::Gtk.AttachOptions)(4)); - w135.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); + w133.TopAttach = ((uint)(1)); + w133.BottomAttach = ((uint)(2)); + w133.LeftAttach = ((uint)(10)); + w133.RightAttach = ((uint)(11)); + w133.XOptions = ((global::Gtk.AttachOptions)(4)); + w133.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP4 = new global::Gtk.Button(); this.btnP4.WidthRequest = 50; @@ -1598,16 +1562,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP4.Name = "btnP4"; this.btnP4.UseUnderline = true; this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w136 = new global::Gtk.Image(); - this.btnP4.Image = w136; + global::Gtk.Image w134 = new global::Gtk.Image(); + this.btnP4.Image = w134; this.tbUI.Add(this.btnP4); - global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); - w137.TopAttach = ((uint)(1)); - w137.BottomAttach = ((uint)(2)); - w137.LeftAttach = ((uint)(11)); - w137.RightAttach = ((uint)(12)); - w137.XOptions = ((global::Gtk.AttachOptions)(4)); - w137.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); + w135.TopAttach = ((uint)(1)); + w135.BottomAttach = ((uint)(2)); + w135.LeftAttach = ((uint)(11)); + w135.RightAttach = ((uint)(12)); + w135.XOptions = ((global::Gtk.AttachOptions)(4)); + w135.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP5 = new global::Gtk.Button(); this.btnP5.WidthRequest = 50; @@ -1616,16 +1580,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP5.Name = "btnP5"; this.btnP5.UseUnderline = true; this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w138 = new global::Gtk.Image(); - this.btnP5.Image = w138; + global::Gtk.Image w136 = new global::Gtk.Image(); + this.btnP5.Image = w136; this.tbUI.Add(this.btnP5); - global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); - w139.TopAttach = ((uint)(1)); - w139.BottomAttach = ((uint)(2)); - w139.LeftAttach = ((uint)(12)); - w139.RightAttach = ((uint)(13)); - w139.XOptions = ((global::Gtk.AttachOptions)(4)); - w139.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); + w137.TopAttach = ((uint)(1)); + w137.BottomAttach = ((uint)(2)); + w137.LeftAttach = ((uint)(12)); + w137.RightAttach = ((uint)(13)); + w137.XOptions = ((global::Gtk.AttachOptions)(4)); + w137.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP6 = new global::Gtk.Button(); this.btnP6.WidthRequest = 50; @@ -1634,16 +1598,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP6.Name = "btnP6"; this.btnP6.UseUnderline = true; this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w140 = new global::Gtk.Image(); - this.btnP6.Image = w140; + global::Gtk.Image w138 = new global::Gtk.Image(); + this.btnP6.Image = w138; this.tbUI.Add(this.btnP6); - global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); - w141.TopAttach = ((uint)(2)); - w141.BottomAttach = ((uint)(3)); - w141.LeftAttach = ((uint)(8)); - w141.RightAttach = ((uint)(9)); - w141.XOptions = ((global::Gtk.AttachOptions)(4)); - w141.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); + w139.TopAttach = ((uint)(2)); + w139.BottomAttach = ((uint)(3)); + w139.LeftAttach = ((uint)(8)); + w139.RightAttach = ((uint)(9)); + w139.XOptions = ((global::Gtk.AttachOptions)(4)); + w139.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP7 = new global::Gtk.Button(); this.btnP7.WidthRequest = 50; @@ -1652,16 +1616,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP7.Name = "btnP7"; this.btnP7.UseUnderline = true; this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w142 = new global::Gtk.Image(); - this.btnP7.Image = w142; + global::Gtk.Image w140 = new global::Gtk.Image(); + this.btnP7.Image = w140; this.tbUI.Add(this.btnP7); - global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); - w143.TopAttach = ((uint)(2)); - w143.BottomAttach = ((uint)(3)); - w143.LeftAttach = ((uint)(9)); - w143.RightAttach = ((uint)(10)); - w143.XOptions = ((global::Gtk.AttachOptions)(4)); - w143.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); + w141.TopAttach = ((uint)(2)); + w141.BottomAttach = ((uint)(3)); + w141.LeftAttach = ((uint)(9)); + w141.RightAttach = ((uint)(10)); + w141.XOptions = ((global::Gtk.AttachOptions)(4)); + w141.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP8 = new global::Gtk.Button(); this.btnP8.WidthRequest = 50; @@ -1670,16 +1634,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP8.Name = "btnP8"; this.btnP8.UseUnderline = true; this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w144 = new global::Gtk.Image(); - this.btnP8.Image = w144; + global::Gtk.Image w142 = new global::Gtk.Image(); + this.btnP8.Image = w142; this.tbUI.Add(this.btnP8); - global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); - w145.TopAttach = ((uint)(2)); - w145.BottomAttach = ((uint)(3)); - w145.LeftAttach = ((uint)(10)); - w145.RightAttach = ((uint)(11)); - w145.XOptions = ((global::Gtk.AttachOptions)(4)); - w145.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); + w143.TopAttach = ((uint)(2)); + w143.BottomAttach = ((uint)(3)); + w143.LeftAttach = ((uint)(10)); + w143.RightAttach = ((uint)(11)); + w143.XOptions = ((global::Gtk.AttachOptions)(4)); + w143.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP9 = new global::Gtk.Button(); this.btnP9.WidthRequest = 50; @@ -1688,16 +1652,16 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnP9.Name = "btnP9"; this.btnP9.UseUnderline = true; this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w146 = new global::Gtk.Image(); - this.btnP9.Image = w146; + global::Gtk.Image w144 = new global::Gtk.Image(); + this.btnP9.Image = w144; this.tbUI.Add(this.btnP9); - global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); - w147.TopAttach = ((uint)(2)); - w147.BottomAttach = ((uint)(3)); - w147.LeftAttach = ((uint)(11)); - w147.RightAttach = ((uint)(12)); - w147.XOptions = ((global::Gtk.AttachOptions)(4)); - w147.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); + w145.TopAttach = ((uint)(2)); + w145.BottomAttach = ((uint)(3)); + w145.LeftAttach = ((uint)(11)); + w145.RightAttach = ((uint)(12)); + w145.XOptions = ((global::Gtk.AttachOptions)(4)); + w145.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnPause = new global::Gtk.Button(); this.btnPause.WidthRequest = 50; @@ -1707,768 +1671,768 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnPause.UseUnderline = true; this.btnPause.Label = "Pause"; this.tbUI.Add(this.btnPause); - global::Gtk.Table.TableChild w148 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); - w148.TopAttach = ((uint)(11)); - w148.BottomAttach = ((uint)(12)); - w148.LeftAttach = ((uint)(13)); - w148.RightAttach = ((uint)(14)); - w148.XOptions = ((global::Gtk.AttachOptions)(4)); - w148.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w146 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); + w146.TopAttach = ((uint)(11)); + w146.BottomAttach = ((uint)(12)); + w146.LeftAttach = ((uint)(13)); + w146.RightAttach = ((uint)(14)); + w146.XOptions = ((global::Gtk.AttachOptions)(4)); + w146.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG1 = new global::Gtk.Image(); this.imgG1.WidthRequest = 50; this.imgG1.HeightRequest = 50; this.imgG1.Name = "imgG1"; this.tbUI.Add(this.imgG1); - global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); - w149.TopAttach = ((uint)(2)); - w149.BottomAttach = ((uint)(3)); - w149.LeftAttach = ((uint)(1)); - w149.RightAttach = ((uint)(2)); - w149.XOptions = ((global::Gtk.AttachOptions)(4)); - w149.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); + w147.TopAttach = ((uint)(2)); + w147.BottomAttach = ((uint)(3)); + w147.LeftAttach = ((uint)(1)); + w147.RightAttach = ((uint)(2)); + w147.XOptions = ((global::Gtk.AttachOptions)(4)); + w147.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG10 = new global::Gtk.Image(); this.imgG10.Name = "imgG10"; this.tbUI.Add(this.imgG10); - global::Gtk.Table.TableChild w150 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); - w150.TopAttach = ((uint)(3)); - w150.BottomAttach = ((uint)(4)); - w150.LeftAttach = ((uint)(5)); - w150.RightAttach = ((uint)(6)); - w150.XOptions = ((global::Gtk.AttachOptions)(4)); - w150.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w148 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); + w148.TopAttach = ((uint)(3)); + w148.BottomAttach = ((uint)(4)); + w148.LeftAttach = ((uint)(5)); + w148.RightAttach = ((uint)(6)); + w148.XOptions = ((global::Gtk.AttachOptions)(4)); + w148.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG11 = new global::Gtk.Image(); this.imgG11.WidthRequest = 50; this.imgG11.HeightRequest = 50; this.imgG11.Name = "imgG11"; this.tbUI.Add(this.imgG11); - global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); - w151.TopAttach = ((uint)(4)); - w151.BottomAttach = ((uint)(5)); - w151.LeftAttach = ((uint)(1)); - w151.RightAttach = ((uint)(2)); - w151.XOptions = ((global::Gtk.AttachOptions)(4)); - w151.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); + w149.TopAttach = ((uint)(4)); + w149.BottomAttach = ((uint)(5)); + w149.LeftAttach = ((uint)(1)); + w149.RightAttach = ((uint)(2)); + w149.XOptions = ((global::Gtk.AttachOptions)(4)); + w149.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG12 = new global::Gtk.Image(); this.imgG12.Name = "imgG12"; this.tbUI.Add(this.imgG12); - global::Gtk.Table.TableChild w152 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); - w152.TopAttach = ((uint)(4)); - w152.BottomAttach = ((uint)(5)); - w152.LeftAttach = ((uint)(2)); - w152.RightAttach = ((uint)(3)); - w152.XOptions = ((global::Gtk.AttachOptions)(4)); - w152.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w150 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); + w150.TopAttach = ((uint)(4)); + w150.BottomAttach = ((uint)(5)); + w150.LeftAttach = ((uint)(2)); + w150.RightAttach = ((uint)(3)); + w150.XOptions = ((global::Gtk.AttachOptions)(4)); + w150.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG13 = new global::Gtk.Image(); this.imgG13.Name = "imgG13"; this.tbUI.Add(this.imgG13); - global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); - w153.TopAttach = ((uint)(4)); - w153.BottomAttach = ((uint)(5)); - w153.LeftAttach = ((uint)(3)); - w153.RightAttach = ((uint)(4)); - w153.XOptions = ((global::Gtk.AttachOptions)(4)); - w153.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); + w151.TopAttach = ((uint)(4)); + w151.BottomAttach = ((uint)(5)); + w151.LeftAttach = ((uint)(3)); + w151.RightAttach = ((uint)(4)); + w151.XOptions = ((global::Gtk.AttachOptions)(4)); + w151.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG14 = new global::Gtk.Image(); this.imgG14.Name = "imgG14"; this.tbUI.Add(this.imgG14); - global::Gtk.Table.TableChild w154 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); - w154.TopAttach = ((uint)(4)); - w154.BottomAttach = ((uint)(5)); - w154.LeftAttach = ((uint)(4)); - w154.RightAttach = ((uint)(5)); - w154.XOptions = ((global::Gtk.AttachOptions)(4)); - w154.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w152 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); + w152.TopAttach = ((uint)(4)); + w152.BottomAttach = ((uint)(5)); + w152.LeftAttach = ((uint)(4)); + w152.RightAttach = ((uint)(5)); + w152.XOptions = ((global::Gtk.AttachOptions)(4)); + w152.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG15 = new global::Gtk.Image(); this.imgG15.Name = "imgG15"; this.tbUI.Add(this.imgG15); - global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); - w155.TopAttach = ((uint)(4)); - w155.BottomAttach = ((uint)(5)); - w155.LeftAttach = ((uint)(5)); - w155.RightAttach = ((uint)(6)); - w155.XOptions = ((global::Gtk.AttachOptions)(4)); - w155.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + w153.TopAttach = ((uint)(4)); + w153.BottomAttach = ((uint)(5)); + w153.LeftAttach = ((uint)(5)); + w153.RightAttach = ((uint)(6)); + w153.XOptions = ((global::Gtk.AttachOptions)(4)); + w153.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG16 = new global::Gtk.Image(); this.imgG16.WidthRequest = 50; this.imgG16.HeightRequest = 50; this.imgG16.Name = "imgG16"; this.tbUI.Add(this.imgG16); - global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); - w156.TopAttach = ((uint)(5)); - w156.BottomAttach = ((uint)(6)); - w156.LeftAttach = ((uint)(1)); - w156.RightAttach = ((uint)(2)); - w156.XOptions = ((global::Gtk.AttachOptions)(4)); - w156.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w154 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); + w154.TopAttach = ((uint)(5)); + w154.BottomAttach = ((uint)(6)); + w154.LeftAttach = ((uint)(1)); + w154.RightAttach = ((uint)(2)); + w154.XOptions = ((global::Gtk.AttachOptions)(4)); + w154.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG17 = new global::Gtk.Image(); this.imgG17.HeightRequest = 50; this.imgG17.Name = "imgG17"; this.tbUI.Add(this.imgG17); - global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); - w157.TopAttach = ((uint)(5)); - w157.BottomAttach = ((uint)(6)); - w157.LeftAttach = ((uint)(2)); - w157.RightAttach = ((uint)(3)); - w157.XOptions = ((global::Gtk.AttachOptions)(4)); - w157.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); + w155.TopAttach = ((uint)(5)); + w155.BottomAttach = ((uint)(6)); + w155.LeftAttach = ((uint)(2)); + w155.RightAttach = ((uint)(3)); + w155.XOptions = ((global::Gtk.AttachOptions)(4)); + w155.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG18 = new global::Gtk.Image(); this.imgG18.HeightRequest = 50; this.imgG18.Name = "imgG18"; this.tbUI.Add(this.imgG18); - global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); - w158.TopAttach = ((uint)(5)); - w158.BottomAttach = ((uint)(6)); - w158.LeftAttach = ((uint)(3)); - w158.RightAttach = ((uint)(4)); - w158.XOptions = ((global::Gtk.AttachOptions)(4)); - w158.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); + w156.TopAttach = ((uint)(5)); + w156.BottomAttach = ((uint)(6)); + w156.LeftAttach = ((uint)(3)); + w156.RightAttach = ((uint)(4)); + w156.XOptions = ((global::Gtk.AttachOptions)(4)); + w156.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG19 = new global::Gtk.Image(); this.imgG19.Name = "imgG19"; this.tbUI.Add(this.imgG19); - global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); - w159.TopAttach = ((uint)(5)); - w159.BottomAttach = ((uint)(6)); - w159.LeftAttach = ((uint)(4)); - w159.RightAttach = ((uint)(5)); - w159.XOptions = ((global::Gtk.AttachOptions)(4)); - w159.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + w157.TopAttach = ((uint)(5)); + w157.BottomAttach = ((uint)(6)); + w157.LeftAttach = ((uint)(4)); + w157.RightAttach = ((uint)(5)); + w157.XOptions = ((global::Gtk.AttachOptions)(4)); + w157.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG2 = new global::Gtk.Image(); this.imgG2.Name = "imgG2"; this.tbUI.Add(this.imgG2); - global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); - w160.TopAttach = ((uint)(2)); - w160.BottomAttach = ((uint)(3)); - w160.LeftAttach = ((uint)(2)); - w160.RightAttach = ((uint)(3)); - w160.XOptions = ((global::Gtk.AttachOptions)(4)); - w160.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); + w158.TopAttach = ((uint)(2)); + w158.BottomAttach = ((uint)(3)); + 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.imgG20 = new global::Gtk.Image(); this.imgG20.Name = "imgG20"; this.tbUI.Add(this.imgG20); - global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); - w161.TopAttach = ((uint)(5)); - w161.BottomAttach = ((uint)(6)); - w161.LeftAttach = ((uint)(5)); - w161.RightAttach = ((uint)(6)); - w161.XOptions = ((global::Gtk.AttachOptions)(4)); - w161.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); + w159.TopAttach = ((uint)(5)); + w159.BottomAttach = ((uint)(6)); + w159.LeftAttach = ((uint)(5)); + w159.RightAttach = ((uint)(6)); + w159.XOptions = ((global::Gtk.AttachOptions)(4)); + w159.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG21 = new global::Gtk.Image(); this.imgG21.WidthRequest = 50; this.imgG21.HeightRequest = 50; this.imgG21.Name = "imgG21"; this.tbUI.Add(this.imgG21); - global::Gtk.Table.TableChild w162 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); - w162.TopAttach = ((uint)(6)); - w162.BottomAttach = ((uint)(7)); - w162.LeftAttach = ((uint)(1)); - w162.RightAttach = ((uint)(2)); - w162.XOptions = ((global::Gtk.AttachOptions)(4)); - w162.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); + w160.TopAttach = ((uint)(6)); + w160.BottomAttach = ((uint)(7)); + w160.LeftAttach = ((uint)(1)); + w160.RightAttach = ((uint)(2)); + w160.XOptions = ((global::Gtk.AttachOptions)(4)); + w160.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG22 = new global::Gtk.Image(); this.imgG22.Name = "imgG22"; this.tbUI.Add(this.imgG22); - global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); - w163.TopAttach = ((uint)(6)); - w163.BottomAttach = ((uint)(7)); - w163.LeftAttach = ((uint)(2)); - w163.RightAttach = ((uint)(3)); - w163.XOptions = ((global::Gtk.AttachOptions)(4)); - w163.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); + w161.TopAttach = ((uint)(6)); + w161.BottomAttach = ((uint)(7)); + 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.imgG23 = new global::Gtk.Image(); this.imgG23.Name = "imgG23"; this.tbUI.Add(this.imgG23); - global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); - w164.TopAttach = ((uint)(6)); - w164.BottomAttach = ((uint)(7)); - w164.LeftAttach = ((uint)(3)); - w164.RightAttach = ((uint)(4)); - w164.XOptions = ((global::Gtk.AttachOptions)(4)); - w164.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w162 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); + w162.TopAttach = ((uint)(6)); + w162.BottomAttach = ((uint)(7)); + w162.LeftAttach = ((uint)(3)); + w162.RightAttach = ((uint)(4)); + w162.XOptions = ((global::Gtk.AttachOptions)(4)); + w162.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG24 = new global::Gtk.Image(); this.imgG24.Name = "imgG24"; this.tbUI.Add(this.imgG24); - global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); - w165.TopAttach = ((uint)(6)); - w165.BottomAttach = ((uint)(7)); - w165.LeftAttach = ((uint)(4)); - w165.RightAttach = ((uint)(5)); - w165.XOptions = ((global::Gtk.AttachOptions)(4)); - w165.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); + w163.TopAttach = ((uint)(6)); + w163.BottomAttach = ((uint)(7)); + w163.LeftAttach = ((uint)(4)); + w163.RightAttach = ((uint)(5)); + w163.XOptions = ((global::Gtk.AttachOptions)(4)); + w163.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG25 = new global::Gtk.Image(); this.imgG25.Name = "imgG25"; this.tbUI.Add(this.imgG25); - global::Gtk.Table.TableChild w166 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); - w166.TopAttach = ((uint)(6)); - w166.BottomAttach = ((uint)(7)); - w166.LeftAttach = ((uint)(5)); - w166.RightAttach = ((uint)(6)); - w166.XOptions = ((global::Gtk.AttachOptions)(4)); - w166.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + w164.TopAttach = ((uint)(6)); + w164.BottomAttach = ((uint)(7)); + w164.LeftAttach = ((uint)(5)); + w164.RightAttach = ((uint)(6)); + w164.XOptions = ((global::Gtk.AttachOptions)(4)); + w164.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG3 = new global::Gtk.Image(); this.imgG3.Name = "imgG3"; this.tbUI.Add(this.imgG3); - global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); - w167.TopAttach = ((uint)(2)); - w167.BottomAttach = ((uint)(3)); - w167.LeftAttach = ((uint)(3)); - w167.RightAttach = ((uint)(4)); - w167.XOptions = ((global::Gtk.AttachOptions)(4)); - w167.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); + w165.TopAttach = ((uint)(2)); + w165.BottomAttach = ((uint)(3)); + 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.imgG4 = new global::Gtk.Image(); this.imgG4.Name = "imgG4"; this.tbUI.Add(this.imgG4); - global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); - w168.TopAttach = ((uint)(2)); - w168.BottomAttach = ((uint)(3)); - w168.LeftAttach = ((uint)(4)); - w168.RightAttach = ((uint)(5)); - w168.XOptions = ((global::Gtk.AttachOptions)(4)); - w168.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w166 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); + w166.TopAttach = ((uint)(2)); + w166.BottomAttach = ((uint)(3)); + 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.imgG5 = new global::Gtk.Image(); this.imgG5.Name = "imgG5"; this.tbUI.Add(this.imgG5); - global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); - w169.TopAttach = ((uint)(2)); - w169.BottomAttach = ((uint)(3)); - w169.LeftAttach = ((uint)(5)); - w169.RightAttach = ((uint)(6)); - w169.XOptions = ((global::Gtk.AttachOptions)(4)); - w169.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + w167.TopAttach = ((uint)(2)); + w167.BottomAttach = ((uint)(3)); + 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.imgG6 = new global::Gtk.Image(); this.imgG6.WidthRequest = 50; this.imgG6.HeightRequest = 50; this.imgG6.Name = "imgG6"; this.tbUI.Add(this.imgG6); - global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); - w170.TopAttach = ((uint)(3)); - w170.BottomAttach = ((uint)(4)); - w170.LeftAttach = ((uint)(1)); - w170.RightAttach = ((uint)(2)); - w170.XOptions = ((global::Gtk.AttachOptions)(4)); - w170.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); + w168.TopAttach = ((uint)(3)); + w168.BottomAttach = ((uint)(4)); + w168.LeftAttach = ((uint)(1)); + w168.RightAttach = ((uint)(2)); + w168.XOptions = ((global::Gtk.AttachOptions)(4)); + w168.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG7 = new global::Gtk.Image(); this.imgG7.Name = "imgG7"; this.tbUI.Add(this.imgG7); - global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); - w171.TopAttach = ((uint)(3)); - w171.BottomAttach = ((uint)(4)); - w171.LeftAttach = ((uint)(2)); - w171.RightAttach = ((uint)(3)); - w171.XOptions = ((global::Gtk.AttachOptions)(4)); - w171.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); + w169.TopAttach = ((uint)(3)); + w169.BottomAttach = ((uint)(4)); + w169.LeftAttach = ((uint)(2)); + w169.RightAttach = ((uint)(3)); + w169.XOptions = ((global::Gtk.AttachOptions)(4)); + w169.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG8 = new global::Gtk.Image(); this.imgG8.Name = "imgG8"; this.tbUI.Add(this.imgG8); - global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); - w172.TopAttach = ((uint)(3)); - w172.BottomAttach = ((uint)(4)); - w172.LeftAttach = ((uint)(3)); - w172.RightAttach = ((uint)(4)); - w172.XOptions = ((global::Gtk.AttachOptions)(4)); - w172.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); + w170.TopAttach = ((uint)(3)); + w170.BottomAttach = ((uint)(4)); + w170.LeftAttach = ((uint)(3)); + w170.RightAttach = ((uint)(4)); + w170.XOptions = ((global::Gtk.AttachOptions)(4)); + w170.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG9 = new global::Gtk.Image(); this.imgG9.Name = "imgG9"; this.tbUI.Add(this.imgG9); - global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); - w173.TopAttach = ((uint)(3)); - w173.BottomAttach = ((uint)(4)); - w173.LeftAttach = ((uint)(4)); - w173.RightAttach = ((uint)(5)); - w173.XOptions = ((global::Gtk.AttachOptions)(4)); - w173.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + w171.TopAttach = ((uint)(3)); + w171.BottomAttach = ((uint)(4)); + w171.LeftAttach = ((uint)(4)); + w171.RightAttach = ((uint)(5)); + w171.XOptions = ((global::Gtk.AttachOptions)(4)); + w171.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI1 = new global::Gtk.Image(); this.imgI1.WidthRequest = 50; this.imgI1.HeightRequest = 50; this.imgI1.Name = "imgI1"; this.tbUI.Add(this.imgI1); - global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); - w174.TopAttach = ((uint)(10)); - w174.BottomAttach = ((uint)(11)); - w174.LeftAttach = ((uint)(1)); - w174.RightAttach = ((uint)(2)); - w174.XOptions = ((global::Gtk.AttachOptions)(4)); - w174.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w172.TopAttach = ((uint)(10)); + w172.BottomAttach = ((uint)(11)); + w172.LeftAttach = ((uint)(1)); + w172.RightAttach = ((uint)(2)); + w172.XOptions = ((global::Gtk.AttachOptions)(4)); + w172.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI10 = new global::Gtk.Image(); this.imgI10.WidthRequest = 50; this.imgI10.HeightRequest = 50; this.imgI10.Name = "imgI10"; this.tbUI.Add(this.imgI10); - global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); - w175.TopAttach = ((uint)(11)); - w175.BottomAttach = ((uint)(12)); - w175.LeftAttach = ((uint)(5)); - w175.RightAttach = ((uint)(6)); - w175.XOptions = ((global::Gtk.AttachOptions)(4)); - w175.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); + w173.TopAttach = ((uint)(11)); + w173.BottomAttach = ((uint)(12)); + w173.LeftAttach = ((uint)(5)); + w173.RightAttach = ((uint)(6)); + w173.XOptions = ((global::Gtk.AttachOptions)(4)); + w173.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI11 = new global::Gtk.Image(); this.imgI11.WidthRequest = 50; this.imgI11.HeightRequest = 50; this.imgI11.Name = "imgI11"; this.tbUI.Add(this.imgI11); - global::Gtk.Table.TableChild w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); - w176.TopAttach = ((uint)(12)); - w176.BottomAttach = ((uint)(13)); - w176.LeftAttach = ((uint)(1)); - w176.RightAttach = ((uint)(2)); - w176.XOptions = ((global::Gtk.AttachOptions)(4)); - w176.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); + w174.TopAttach = ((uint)(12)); + w174.BottomAttach = ((uint)(13)); + w174.LeftAttach = ((uint)(1)); + w174.RightAttach = ((uint)(2)); + w174.XOptions = ((global::Gtk.AttachOptions)(4)); + w174.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI12 = new global::Gtk.Image(); this.imgI12.WidthRequest = 50; this.imgI12.HeightRequest = 50; this.imgI12.Name = "imgI12"; this.tbUI.Add(this.imgI12); - global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); - w177.TopAttach = ((uint)(12)); - w177.BottomAttach = ((uint)(13)); - w177.LeftAttach = ((uint)(2)); - w177.RightAttach = ((uint)(3)); - w177.XOptions = ((global::Gtk.AttachOptions)(4)); - w177.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); + w175.TopAttach = ((uint)(12)); + w175.BottomAttach = ((uint)(13)); + w175.LeftAttach = ((uint)(2)); + w175.RightAttach = ((uint)(3)); + w175.XOptions = ((global::Gtk.AttachOptions)(4)); + w175.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI13 = new global::Gtk.Image(); this.imgI13.WidthRequest = 50; this.imgI13.HeightRequest = 50; this.imgI13.Name = "imgI13"; this.tbUI.Add(this.imgI13); - global::Gtk.Table.TableChild w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); - w178.TopAttach = ((uint)(12)); - w178.BottomAttach = ((uint)(13)); - w178.LeftAttach = ((uint)(3)); - w178.RightAttach = ((uint)(4)); - w178.XOptions = ((global::Gtk.AttachOptions)(4)); - w178.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); + w176.TopAttach = ((uint)(12)); + w176.BottomAttach = ((uint)(13)); + w176.LeftAttach = ((uint)(3)); + w176.RightAttach = ((uint)(4)); + w176.XOptions = ((global::Gtk.AttachOptions)(4)); + w176.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI14 = new global::Gtk.Image(); this.imgI14.WidthRequest = 50; this.imgI14.HeightRequest = 50; this.imgI14.Name = "imgI14"; this.tbUI.Add(this.imgI14); - global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); - w179.TopAttach = ((uint)(12)); - w179.BottomAttach = ((uint)(13)); - w179.LeftAttach = ((uint)(4)); - w179.RightAttach = ((uint)(5)); - w179.XOptions = ((global::Gtk.AttachOptions)(4)); - w179.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); + w177.TopAttach = ((uint)(12)); + w177.BottomAttach = ((uint)(13)); + w177.LeftAttach = ((uint)(4)); + w177.RightAttach = ((uint)(5)); + w177.XOptions = ((global::Gtk.AttachOptions)(4)); + w177.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI15 = new global::Gtk.Image(); this.imgI15.WidthRequest = 50; this.imgI15.HeightRequest = 50; this.imgI15.Name = "imgI15"; this.tbUI.Add(this.imgI15); - global::Gtk.Table.TableChild w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); - w180.TopAttach = ((uint)(12)); - w180.BottomAttach = ((uint)(13)); - w180.LeftAttach = ((uint)(5)); - w180.RightAttach = ((uint)(6)); - w180.XOptions = ((global::Gtk.AttachOptions)(4)); - w180.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); + w178.TopAttach = ((uint)(12)); + w178.BottomAttach = ((uint)(13)); + w178.LeftAttach = ((uint)(5)); + w178.RightAttach = ((uint)(6)); + w178.XOptions = ((global::Gtk.AttachOptions)(4)); + w178.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI16 = new global::Gtk.Image(); this.imgI16.WidthRequest = 50; this.imgI16.HeightRequest = 50; this.imgI16.Name = "imgI16"; this.tbUI.Add(this.imgI16); - global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); - w181.TopAttach = ((uint)(13)); - w181.BottomAttach = ((uint)(14)); - w181.LeftAttach = ((uint)(1)); - w181.RightAttach = ((uint)(2)); - w181.XOptions = ((global::Gtk.AttachOptions)(4)); - w181.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); + w179.TopAttach = ((uint)(13)); + w179.BottomAttach = ((uint)(14)); + w179.LeftAttach = ((uint)(1)); + w179.RightAttach = ((uint)(2)); + w179.XOptions = ((global::Gtk.AttachOptions)(4)); + w179.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI17 = new global::Gtk.Image(); this.imgI17.WidthRequest = 50; this.imgI17.HeightRequest = 50; this.imgI17.Name = "imgI17"; this.tbUI.Add(this.imgI17); - global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); - w182.TopAttach = ((uint)(13)); - w182.BottomAttach = ((uint)(14)); - w182.LeftAttach = ((uint)(2)); - w182.RightAttach = ((uint)(3)); - w182.XOptions = ((global::Gtk.AttachOptions)(4)); - w182.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); + w180.TopAttach = ((uint)(13)); + w180.BottomAttach = ((uint)(14)); + w180.LeftAttach = ((uint)(2)); + w180.RightAttach = ((uint)(3)); + w180.XOptions = ((global::Gtk.AttachOptions)(4)); + w180.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI18 = new global::Gtk.Image(); this.imgI18.WidthRequest = 50; this.imgI18.HeightRequest = 50; this.imgI18.Name = "imgI18"; this.tbUI.Add(this.imgI18); - global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); - w183.TopAttach = ((uint)(13)); - w183.BottomAttach = ((uint)(14)); - w183.LeftAttach = ((uint)(3)); - w183.RightAttach = ((uint)(4)); - w183.XOptions = ((global::Gtk.AttachOptions)(4)); - w183.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); + w181.TopAttach = ((uint)(13)); + w181.BottomAttach = ((uint)(14)); + w181.LeftAttach = ((uint)(3)); + w181.RightAttach = ((uint)(4)); + w181.XOptions = ((global::Gtk.AttachOptions)(4)); + w181.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI19 = new global::Gtk.Image(); this.imgI19.WidthRequest = 50; this.imgI19.HeightRequest = 50; this.imgI19.Name = "imgI19"; this.tbUI.Add(this.imgI19); - global::Gtk.Table.TableChild w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); - w184.TopAttach = ((uint)(13)); - w184.BottomAttach = ((uint)(14)); - w184.LeftAttach = ((uint)(4)); - w184.RightAttach = ((uint)(5)); - w184.XOptions = ((global::Gtk.AttachOptions)(4)); - w184.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); + w182.TopAttach = ((uint)(13)); + w182.BottomAttach = ((uint)(14)); + w182.LeftAttach = ((uint)(4)); + w182.RightAttach = ((uint)(5)); + w182.XOptions = ((global::Gtk.AttachOptions)(4)); + w182.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI2 = new global::Gtk.Image(); this.imgI2.WidthRequest = 50; this.imgI2.HeightRequest = 50; this.imgI2.Name = "imgI2"; this.tbUI.Add(this.imgI2); - global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); - w185.TopAttach = ((uint)(10)); - w185.BottomAttach = ((uint)(11)); - w185.LeftAttach = ((uint)(2)); - w185.RightAttach = ((uint)(3)); - w185.XOptions = ((global::Gtk.AttachOptions)(4)); - w185.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w183.TopAttach = ((uint)(10)); + w183.BottomAttach = ((uint)(11)); + 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.imgI20 = new global::Gtk.Image(); this.imgI20.WidthRequest = 50; this.imgI20.HeightRequest = 50; this.imgI20.Name = "imgI20"; this.tbUI.Add(this.imgI20); - global::Gtk.Table.TableChild w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); - w186.TopAttach = ((uint)(13)); - w186.BottomAttach = ((uint)(14)); - w186.LeftAttach = ((uint)(5)); - w186.RightAttach = ((uint)(6)); - w186.XOptions = ((global::Gtk.AttachOptions)(4)); - w186.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); + w184.TopAttach = ((uint)(13)); + w184.BottomAttach = ((uint)(14)); + w184.LeftAttach = ((uint)(5)); + w184.RightAttach = ((uint)(6)); + w184.XOptions = ((global::Gtk.AttachOptions)(4)); + w184.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI21 = new global::Gtk.Image(); this.imgI21.WidthRequest = 50; this.imgI21.HeightRequest = 50; this.imgI21.Name = "imgI21"; this.tbUI.Add(this.imgI21); - global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); - w187.TopAttach = ((uint)(14)); - w187.BottomAttach = ((uint)(15)); - w187.LeftAttach = ((uint)(1)); - w187.RightAttach = ((uint)(2)); - w187.XOptions = ((global::Gtk.AttachOptions)(4)); - w187.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); + w185.TopAttach = ((uint)(14)); + w185.BottomAttach = ((uint)(15)); + w185.LeftAttach = ((uint)(1)); + w185.RightAttach = ((uint)(2)); + w185.XOptions = ((global::Gtk.AttachOptions)(4)); + w185.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI22 = new global::Gtk.Image(); this.imgI22.WidthRequest = 50; this.imgI22.HeightRequest = 50; this.imgI22.Name = "imgI22"; this.tbUI.Add(this.imgI22); - global::Gtk.Table.TableChild w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); - w188.TopAttach = ((uint)(14)); - w188.BottomAttach = ((uint)(15)); - w188.LeftAttach = ((uint)(2)); - w188.RightAttach = ((uint)(3)); - w188.XOptions = ((global::Gtk.AttachOptions)(4)); - w188.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); + w186.TopAttach = ((uint)(14)); + w186.BottomAttach = ((uint)(15)); + 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.imgI23 = new global::Gtk.Image(); this.imgI23.WidthRequest = 50; this.imgI23.HeightRequest = 50; this.imgI23.Name = "imgI23"; this.tbUI.Add(this.imgI23); - global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); - w189.TopAttach = ((uint)(14)); - w189.BottomAttach = ((uint)(15)); - w189.LeftAttach = ((uint)(3)); - w189.RightAttach = ((uint)(4)); - w189.XOptions = ((global::Gtk.AttachOptions)(4)); - w189.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); + w187.TopAttach = ((uint)(14)); + w187.BottomAttach = ((uint)(15)); + w187.LeftAttach = ((uint)(3)); + w187.RightAttach = ((uint)(4)); + w187.XOptions = ((global::Gtk.AttachOptions)(4)); + w187.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI24 = new global::Gtk.Image(); this.imgI24.WidthRequest = 50; this.imgI24.HeightRequest = 50; this.imgI24.Name = "imgI24"; this.tbUI.Add(this.imgI24); - global::Gtk.Table.TableChild w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); - w190.TopAttach = ((uint)(14)); - w190.BottomAttach = ((uint)(15)); - w190.LeftAttach = ((uint)(4)); - w190.RightAttach = ((uint)(5)); - w190.XOptions = ((global::Gtk.AttachOptions)(4)); - w190.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); + w188.TopAttach = ((uint)(14)); + w188.BottomAttach = ((uint)(15)); + w188.LeftAttach = ((uint)(4)); + w188.RightAttach = ((uint)(5)); + w188.XOptions = ((global::Gtk.AttachOptions)(4)); + w188.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI25 = new global::Gtk.Image(); this.imgI25.WidthRequest = 50; this.imgI25.HeightRequest = 50; this.imgI25.Name = "imgI25"; this.tbUI.Add(this.imgI25); - global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); - w191.TopAttach = ((uint)(14)); - w191.BottomAttach = ((uint)(15)); - w191.LeftAttach = ((uint)(5)); - w191.RightAttach = ((uint)(6)); - w191.XOptions = ((global::Gtk.AttachOptions)(4)); - w191.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); + w189.TopAttach = ((uint)(14)); + w189.BottomAttach = ((uint)(15)); + w189.LeftAttach = ((uint)(5)); + w189.RightAttach = ((uint)(6)); + w189.XOptions = ((global::Gtk.AttachOptions)(4)); + w189.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI3 = new global::Gtk.Image(); this.imgI3.WidthRequest = 50; this.imgI3.HeightRequest = 50; this.imgI3.Name = "imgI3"; this.tbUI.Add(this.imgI3); - global::Gtk.Table.TableChild w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); - w192.TopAttach = ((uint)(10)); - w192.BottomAttach = ((uint)(11)); - w192.LeftAttach = ((uint)(3)); - w192.RightAttach = ((uint)(4)); - w192.XOptions = ((global::Gtk.AttachOptions)(4)); - w192.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w190.TopAttach = ((uint)(10)); + w190.BottomAttach = ((uint)(11)); + 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.imgI4 = new global::Gtk.Image(); this.imgI4.WidthRequest = 50; this.imgI4.HeightRequest = 50; this.imgI4.Name = "imgI4"; this.tbUI.Add(this.imgI4); - global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); - w193.TopAttach = ((uint)(10)); - w193.BottomAttach = ((uint)(11)); - w193.LeftAttach = ((uint)(4)); - w193.RightAttach = ((uint)(5)); - w193.XOptions = ((global::Gtk.AttachOptions)(4)); - w193.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w191.TopAttach = ((uint)(10)); + w191.BottomAttach = ((uint)(11)); + 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.imgI5 = new global::Gtk.Image(); this.imgI5.WidthRequest = 50; this.imgI5.HeightRequest = 50; this.imgI5.Name = "imgI5"; this.tbUI.Add(this.imgI5); - global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); - w194.TopAttach = ((uint)(10)); - w194.BottomAttach = ((uint)(11)); - w194.LeftAttach = ((uint)(5)); - w194.RightAttach = ((uint)(6)); - w194.XOptions = ((global::Gtk.AttachOptions)(4)); - w194.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w192.TopAttach = ((uint)(10)); + w192.BottomAttach = ((uint)(11)); + 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.imgI6 = new global::Gtk.Image(); this.imgI6.WidthRequest = 50; this.imgI6.HeightRequest = 50; this.imgI6.Name = "imgI6"; this.tbUI.Add(this.imgI6); - global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); - w195.TopAttach = ((uint)(11)); - w195.BottomAttach = ((uint)(12)); - w195.LeftAttach = ((uint)(1)); - w195.RightAttach = ((uint)(2)); - w195.XOptions = ((global::Gtk.AttachOptions)(4)); - w195.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); + w193.TopAttach = ((uint)(11)); + w193.BottomAttach = ((uint)(12)); + w193.LeftAttach = ((uint)(1)); + w193.RightAttach = ((uint)(2)); + w193.XOptions = ((global::Gtk.AttachOptions)(4)); + w193.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI7 = new global::Gtk.Image(); this.imgI7.WidthRequest = 50; this.imgI7.HeightRequest = 50; this.imgI7.Name = "imgI7"; this.tbUI.Add(this.imgI7); - global::Gtk.Table.TableChild w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); - w196.TopAttach = ((uint)(11)); - w196.BottomAttach = ((uint)(12)); - w196.LeftAttach = ((uint)(2)); - w196.RightAttach = ((uint)(3)); - w196.XOptions = ((global::Gtk.AttachOptions)(4)); - w196.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); + w194.TopAttach = ((uint)(11)); + w194.BottomAttach = ((uint)(12)); + w194.LeftAttach = ((uint)(2)); + w194.RightAttach = ((uint)(3)); + w194.XOptions = ((global::Gtk.AttachOptions)(4)); + w194.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI8 = new global::Gtk.Image(); this.imgI8.WidthRequest = 50; this.imgI8.HeightRequest = 50; this.imgI8.Name = "imgI8"; this.tbUI.Add(this.imgI8); - global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); - w197.TopAttach = ((uint)(11)); - w197.BottomAttach = ((uint)(12)); - w197.LeftAttach = ((uint)(3)); - w197.RightAttach = ((uint)(4)); - w197.XOptions = ((global::Gtk.AttachOptions)(4)); - w197.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); + w195.TopAttach = ((uint)(11)); + w195.BottomAttach = ((uint)(12)); + w195.LeftAttach = ((uint)(3)); + w195.RightAttach = ((uint)(4)); + w195.XOptions = ((global::Gtk.AttachOptions)(4)); + w195.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI9 = new global::Gtk.Image(); this.imgI9.WidthRequest = 50; this.imgI9.HeightRequest = 50; this.imgI9.Name = "imgI9"; this.tbUI.Add(this.imgI9); - global::Gtk.Table.TableChild w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); - w198.TopAttach = ((uint)(11)); - w198.BottomAttach = ((uint)(12)); - w198.LeftAttach = ((uint)(4)); - w198.RightAttach = ((uint)(5)); - w198.XOptions = ((global::Gtk.AttachOptions)(4)); - w198.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); + w196.TopAttach = ((uint)(11)); + w196.BottomAttach = ((uint)(12)); + w196.LeftAttach = ((uint)(4)); + w196.RightAttach = ((uint)(5)); + w196.XOptions = ((global::Gtk.AttachOptions)(4)); + w196.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgInfo = new global::Gtk.Image(); this.imgInfo.WidthRequest = 50; this.imgInfo.HeightRequest = 50; this.imgInfo.Name = "imgInfo"; this.tbUI.Add(this.imgInfo); - global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); - w199.TopAttach = ((uint)(14)); - w199.BottomAttach = ((uint)(15)); - w199.LeftAttach = ((uint)(17)); - w199.RightAttach = ((uint)(18)); - w199.XOptions = ((global::Gtk.AttachOptions)(4)); - w199.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); + w197.TopAttach = ((uint)(14)); + w197.BottomAttach = ((uint)(15)); + w197.LeftAttach = ((uint)(17)); + w197.RightAttach = ((uint)(18)); + w197.XOptions = ((global::Gtk.AttachOptions)(4)); + w197.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS1 = new global::Gtk.Image(); this.imgS1.WidthRequest = 50; this.imgS1.HeightRequest = 50; this.imgS1.Name = "imgS1"; this.tbUI.Add(this.imgS1); - global::Gtk.Table.TableChild w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); - w200.TopAttach = ((uint)(7)); - w200.BottomAttach = ((uint)(8)); - w200.LeftAttach = ((uint)(8)); - w200.RightAttach = ((uint)(9)); - w200.XOptions = ((global::Gtk.AttachOptions)(4)); - w200.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); + w198.TopAttach = ((uint)(7)); + w198.BottomAttach = ((uint)(8)); + w198.LeftAttach = ((uint)(8)); + w198.RightAttach = ((uint)(9)); + w198.XOptions = ((global::Gtk.AttachOptions)(4)); + w198.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS10 = new global::Gtk.Image(); this.imgS10.WidthRequest = 50; this.imgS10.HeightRequest = 50; this.imgS10.Name = "imgS10"; this.tbUI.Add(this.imgS10); - global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); - w201.TopAttach = ((uint)(8)); - w201.BottomAttach = ((uint)(9)); - w201.LeftAttach = ((uint)(12)); - w201.RightAttach = ((uint)(13)); - w201.XOptions = ((global::Gtk.AttachOptions)(4)); - w201.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); + w199.TopAttach = ((uint)(8)); + w199.BottomAttach = ((uint)(9)); + w199.LeftAttach = ((uint)(12)); + w199.RightAttach = ((uint)(13)); + w199.XOptions = ((global::Gtk.AttachOptions)(4)); + w199.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS2 = new global::Gtk.Image(); this.imgS2.WidthRequest = 50; this.imgS2.HeightRequest = 50; this.imgS2.Name = "imgS2"; this.tbUI.Add(this.imgS2); - global::Gtk.Table.TableChild w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); - w202.TopAttach = ((uint)(7)); - w202.BottomAttach = ((uint)(8)); - w202.LeftAttach = ((uint)(9)); - w202.RightAttach = ((uint)(10)); - w202.XOptions = ((global::Gtk.AttachOptions)(4)); - w202.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); + w200.TopAttach = ((uint)(7)); + w200.BottomAttach = ((uint)(8)); + w200.LeftAttach = ((uint)(9)); + w200.RightAttach = ((uint)(10)); + w200.XOptions = ((global::Gtk.AttachOptions)(4)); + w200.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS3 = new global::Gtk.Image(); this.imgS3.WidthRequest = 50; this.imgS3.HeightRequest = 50; this.imgS3.Name = "imgS3"; this.tbUI.Add(this.imgS3); - global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); - w203.TopAttach = ((uint)(7)); - w203.BottomAttach = ((uint)(8)); - w203.LeftAttach = ((uint)(10)); - w203.RightAttach = ((uint)(11)); - w203.XOptions = ((global::Gtk.AttachOptions)(4)); - w203.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); + w201.TopAttach = ((uint)(7)); + w201.BottomAttach = ((uint)(8)); + w201.LeftAttach = ((uint)(10)); + w201.RightAttach = ((uint)(11)); + w201.XOptions = ((global::Gtk.AttachOptions)(4)); + w201.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS4 = new global::Gtk.Image(); this.imgS4.WidthRequest = 50; this.imgS4.HeightRequest = 50; this.imgS4.Name = "imgS4"; this.tbUI.Add(this.imgS4); - global::Gtk.Table.TableChild w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); - w204.TopAttach = ((uint)(7)); - w204.BottomAttach = ((uint)(8)); - w204.LeftAttach = ((uint)(11)); - w204.RightAttach = ((uint)(12)); - w204.XOptions = ((global::Gtk.AttachOptions)(4)); - w204.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); + w202.TopAttach = ((uint)(7)); + w202.BottomAttach = ((uint)(8)); + w202.LeftAttach = ((uint)(11)); + w202.RightAttach = ((uint)(12)); + w202.XOptions = ((global::Gtk.AttachOptions)(4)); + w202.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS5 = new global::Gtk.Image(); this.imgS5.WidthRequest = 50; this.imgS5.HeightRequest = 50; this.imgS5.Name = "imgS5"; this.tbUI.Add(this.imgS5); - global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); - w205.TopAttach = ((uint)(7)); - w205.BottomAttach = ((uint)(8)); - w205.LeftAttach = ((uint)(12)); - w205.RightAttach = ((uint)(13)); - w205.XOptions = ((global::Gtk.AttachOptions)(4)); - w205.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); + w203.TopAttach = ((uint)(7)); + w203.BottomAttach = ((uint)(8)); + w203.LeftAttach = ((uint)(12)); + w203.RightAttach = ((uint)(13)); + w203.XOptions = ((global::Gtk.AttachOptions)(4)); + w203.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS6 = new global::Gtk.Image(); this.imgS6.WidthRequest = 50; this.imgS6.HeightRequest = 50; this.imgS6.Name = "imgS6"; this.tbUI.Add(this.imgS6); - global::Gtk.Table.TableChild w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); - w206.TopAttach = ((uint)(8)); - w206.BottomAttach = ((uint)(9)); - w206.LeftAttach = ((uint)(8)); - w206.RightAttach = ((uint)(9)); - w206.XOptions = ((global::Gtk.AttachOptions)(4)); - w206.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); + w204.TopAttach = ((uint)(8)); + w204.BottomAttach = ((uint)(9)); + w204.LeftAttach = ((uint)(8)); + w204.RightAttach = ((uint)(9)); + w204.XOptions = ((global::Gtk.AttachOptions)(4)); + w204.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS7 = new global::Gtk.Image(); this.imgS7.WidthRequest = 50; this.imgS7.HeightRequest = 50; this.imgS7.Name = "imgS7"; this.tbUI.Add(this.imgS7); - global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); - w207.TopAttach = ((uint)(8)); - w207.BottomAttach = ((uint)(9)); - w207.LeftAttach = ((uint)(9)); - w207.RightAttach = ((uint)(10)); - w207.XOptions = ((global::Gtk.AttachOptions)(4)); - w207.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); + w205.TopAttach = ((uint)(8)); + w205.BottomAttach = ((uint)(9)); + w205.LeftAttach = ((uint)(9)); + w205.RightAttach = ((uint)(10)); + w205.XOptions = ((global::Gtk.AttachOptions)(4)); + w205.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS8 = new global::Gtk.Image(); this.imgS8.WidthRequest = 50; this.imgS8.HeightRequest = 50; this.imgS8.Name = "imgS8"; this.tbUI.Add(this.imgS8); - global::Gtk.Table.TableChild w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); - w208.TopAttach = ((uint)(8)); - w208.BottomAttach = ((uint)(9)); - w208.LeftAttach = ((uint)(10)); - w208.RightAttach = ((uint)(11)); - w208.XOptions = ((global::Gtk.AttachOptions)(4)); - w208.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); + w206.TopAttach = ((uint)(8)); + w206.BottomAttach = ((uint)(9)); + w206.LeftAttach = ((uint)(10)); + w206.RightAttach = ((uint)(11)); + w206.XOptions = ((global::Gtk.AttachOptions)(4)); + w206.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS9 = new global::Gtk.Image(); this.imgS9.WidthRequest = 50; this.imgS9.HeightRequest = 50; this.imgS9.Name = "imgS9"; this.tbUI.Add(this.imgS9); - global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); - w209.TopAttach = ((uint)(8)); - w209.BottomAttach = ((uint)(9)); - w209.LeftAttach = ((uint)(11)); - w209.RightAttach = ((uint)(12)); - w209.XOptions = ((global::Gtk.AttachOptions)(4)); - w209.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); + w207.TopAttach = ((uint)(8)); + w207.BottomAttach = ((uint)(9)); + w207.LeftAttach = ((uint)(11)); + w207.RightAttach = ((uint)(12)); + w207.XOptions = ((global::Gtk.AttachOptions)(4)); + w207.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblAccessories = new global::Gtk.Label(); this.lblAccessories.HeightRequest = 50; @@ -2476,100 +2440,100 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblAccessories.LabelProp = "Accessories"; this.lblAccessories.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblAccessories); - global::Gtk.Table.TableChild w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); - w210.TopAttach = ((uint)(8)); - w210.BottomAttach = ((uint)(9)); - w210.LeftAttach = ((uint)(15)); - w210.RightAttach = ((uint)(20)); - w210.XOptions = ((global::Gtk.AttachOptions)(4)); - w210.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); + w208.TopAttach = ((uint)(8)); + w208.BottomAttach = ((uint)(9)); + w208.LeftAttach = ((uint)(15)); + w208.RightAttach = ((uint)(20)); + w208.XOptions = ((global::Gtk.AttachOptions)(4)); + w208.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank1 = new global::Gtk.Label(); this.lblBlank1.WidthRequest = 10; this.lblBlank1.HeightRequest = 50; this.lblBlank1.Name = "lblBlank1"; this.tbUI.Add(this.lblBlank1); - global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); - w211.TopAttach = ((uint)(3)); - w211.BottomAttach = ((uint)(4)); - w211.LeftAttach = ((uint)(6)); - w211.RightAttach = ((uint)(7)); - w211.XOptions = ((global::Gtk.AttachOptions)(4)); - w211.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w209.TopAttach = ((uint)(3)); + w209.BottomAttach = ((uint)(4)); + w209.LeftAttach = ((uint)(6)); + w209.RightAttach = ((uint)(7)); + w209.XOptions = ((global::Gtk.AttachOptions)(4)); + w209.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank2 = new global::Gtk.Label(); this.lblBlank2.WidthRequest = 50; this.lblBlank2.HeightRequest = 50; this.lblBlank2.Name = "lblBlank2"; this.tbUI.Add(this.lblBlank2); - global::Gtk.Table.TableChild w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); - w212.TopAttach = ((uint)(6)); - w212.BottomAttach = ((uint)(7)); - w212.LeftAttach = ((uint)(10)); - w212.RightAttach = ((uint)(11)); - w212.XOptions = ((global::Gtk.AttachOptions)(4)); - w212.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w210.TopAttach = ((uint)(6)); + w210.BottomAttach = ((uint)(7)); + w210.LeftAttach = ((uint)(10)); + w210.RightAttach = ((uint)(11)); + w210.XOptions = ((global::Gtk.AttachOptions)(4)); + w210.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank3 = new global::Gtk.Label(); this.lblBlank3.WidthRequest = 10; this.lblBlank3.HeightRequest = 50; this.lblBlank3.Name = "lblBlank3"; this.tbUI.Add(this.lblBlank3); - global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); - w213.TopAttach = ((uint)(3)); - w213.BottomAttach = ((uint)(4)); - w213.LeftAttach = ((uint)(14)); - w213.RightAttach = ((uint)(15)); - w213.XOptions = ((global::Gtk.AttachOptions)(4)); - w213.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w211.TopAttach = ((uint)(3)); + w211.BottomAttach = ((uint)(4)); + w211.LeftAttach = ((uint)(14)); + w211.RightAttach = ((uint)(15)); + w211.XOptions = ((global::Gtk.AttachOptions)(4)); + w211.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank4 = new global::Gtk.Label(); this.lblBlank4.WidthRequest = 10; this.lblBlank4.HeightRequest = 50; this.lblBlank4.Name = "lblBlank4"; this.tbUI.Add(this.lblBlank4); - global::Gtk.Table.TableChild w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); - w214.TopAttach = ((uint)(3)); - w214.BottomAttach = ((uint)(4)); - w214.LeftAttach = ((uint)(20)); - w214.RightAttach = ((uint)(21)); - w214.XOptions = ((global::Gtk.AttachOptions)(4)); - w214.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w212.TopAttach = ((uint)(3)); + w212.BottomAttach = ((uint)(4)); + w212.LeftAttach = ((uint)(20)); + w212.RightAttach = ((uint)(21)); + w212.XOptions = ((global::Gtk.AttachOptions)(4)); + w212.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank5 = new global::Gtk.Label(); this.lblBlank5.WidthRequest = 10; this.lblBlank5.HeightRequest = 50; this.lblBlank5.Name = "lblBlank5"; this.tbUI.Add(this.lblBlank5); - global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); - w215.TopAttach = ((uint)(3)); - w215.BottomAttach = ((uint)(4)); - w215.XOptions = ((global::Gtk.AttachOptions)(4)); - w215.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w213.TopAttach = ((uint)(3)); + w213.BottomAttach = ((uint)(4)); + w213.XOptions = ((global::Gtk.AttachOptions)(4)); + w213.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank8 = new global::Gtk.Label(); this.lblBlank8.WidthRequest = 50; this.lblBlank8.HeightRequest = 10; this.lblBlank8.Name = "lblBlank8"; this.tbUI.Add(this.lblBlank8); - global::Gtk.Table.TableChild w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); - w216.TopAttach = ((uint)(16)); - w216.BottomAttach = ((uint)(17)); - w216.LeftAttach = ((uint)(10)); - w216.RightAttach = ((uint)(11)); - w216.XOptions = ((global::Gtk.AttachOptions)(4)); - w216.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); + w214.TopAttach = ((uint)(16)); + w214.BottomAttach = ((uint)(17)); + w214.LeftAttach = ((uint)(10)); + w214.RightAttach = ((uint)(11)); + w214.XOptions = ((global::Gtk.AttachOptions)(4)); + w214.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank9 = new global::Gtk.Label(); this.lblBlank9.WidthRequest = 50; this.lblBlank9.HeightRequest = 10; this.lblBlank9.Name = "lblBlank9"; this.tbUI.Add(this.lblBlank9); - global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank9])); - w217.LeftAttach = ((uint)(10)); - w217.RightAttach = ((uint)(11)); - w217.XOptions = ((global::Gtk.AttachOptions)(4)); - w217.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank9])); + w215.LeftAttach = ((uint)(10)); + w215.RightAttach = ((uint)(11)); + w215.XOptions = ((global::Gtk.AttachOptions)(4)); + w215.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblCoord1 = new global::Gtk.Label(); this.lblCoord1.WidthRequest = 50; @@ -2577,13 +2541,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblCoord1.Name = "lblCoord1"; this.lblCoord1.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblCoord1); - global::Gtk.Table.TableChild w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); - w218.TopAttach = ((uint)(7)); - w218.BottomAttach = ((uint)(8)); - w218.LeftAttach = ((uint)(4)); - w218.RightAttach = ((uint)(5)); - w218.XOptions = ((global::Gtk.AttachOptions)(4)); - w218.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); + w216.TopAttach = ((uint)(7)); + w216.BottomAttach = ((uint)(8)); + w216.LeftAttach = ((uint)(4)); + w216.RightAttach = ((uint)(5)); + w216.XOptions = ((global::Gtk.AttachOptions)(4)); + w216.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblCoord2 = new global::Gtk.Label(); this.lblCoord2.WidthRequest = 50; @@ -2591,13 +2555,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblCoord2.Name = "lblCoord2"; this.lblCoord2.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblCoord2); - global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); - w219.TopAttach = ((uint)(7)); - w219.BottomAttach = ((uint)(8)); - w219.LeftAttach = ((uint)(5)); - w219.RightAttach = ((uint)(6)); - w219.XOptions = ((global::Gtk.AttachOptions)(4)); - w219.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); + w217.TopAttach = ((uint)(7)); + w217.BottomAttach = ((uint)(8)); + w217.LeftAttach = ((uint)(5)); + w217.RightAttach = ((uint)(6)); + w217.XOptions = ((global::Gtk.AttachOptions)(4)); + w217.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblEventLog = new global::Gtk.Label(); this.lblEventLog.WidthRequest = 50; @@ -2605,13 +2569,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblEventLog.Name = "lblEventLog"; this.lblEventLog.LabelProp = "Event Log"; this.tbUI.Add(this.lblEventLog); - global::Gtk.Table.TableChild w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); - w220.TopAttach = ((uint)(11)); - w220.BottomAttach = ((uint)(12)); - w220.LeftAttach = ((uint)(8)); - w220.RightAttach = ((uint)(13)); - w220.XOptions = ((global::Gtk.AttachOptions)(4)); - w220.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); + w218.TopAttach = ((uint)(11)); + w218.BottomAttach = ((uint)(12)); + w218.LeftAttach = ((uint)(8)); + w218.RightAttach = ((uint)(13)); + w218.XOptions = ((global::Gtk.AttachOptions)(4)); + w218.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblGear = new global::Gtk.Label(); this.lblGear.HeightRequest = 50; @@ -2619,25 +2583,25 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblGear.LabelProp = "Gear"; this.lblGear.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblGear); - global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); - w221.TopAttach = ((uint)(11)); - w221.BottomAttach = ((uint)(12)); - w221.LeftAttach = ((uint)(15)); - w221.RightAttach = ((uint)(20)); - w221.XOptions = ((global::Gtk.AttachOptions)(4)); - w221.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); + w219.TopAttach = ((uint)(11)); + w219.BottomAttach = ((uint)(12)); + w219.LeftAttach = ((uint)(15)); + w219.RightAttach = ((uint)(20)); + w219.XOptions = ((global::Gtk.AttachOptions)(4)); + w219.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblGroundLayer = new global::Gtk.Label(); this.lblGroundLayer.Name = "lblGroundLayer"; this.lblGroundLayer.LabelProp = "Ground Layer"; this.tbUI.Add(this.lblGroundLayer); - global::Gtk.Table.TableChild w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); - w222.TopAttach = ((uint)(1)); - w222.BottomAttach = ((uint)(2)); - w222.LeftAttach = ((uint)(1)); - w222.RightAttach = ((uint)(6)); - w222.XOptions = ((global::Gtk.AttachOptions)(4)); - w222.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); + w220.TopAttach = ((uint)(1)); + w220.BottomAttach = ((uint)(2)); + w220.LeftAttach = ((uint)(1)); + w220.RightAttach = ((uint)(6)); + w220.XOptions = ((global::Gtk.AttachOptions)(4)); + w220.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblHoleMsg = new global::Gtk.Label(); this.lblHoleMsg.WidthRequest = 200; @@ -2646,13 +2610,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblHoleMsg.LabelProp = "There is a hole above player:"; this.lblHoleMsg.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblHoleMsg); - global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleMsg])); - w223.TopAttach = ((uint)(15)); - w223.BottomAttach = ((uint)(16)); - w223.LeftAttach = ((uint)(1)); - w223.RightAttach = ((uint)(5)); - w223.XOptions = ((global::Gtk.AttachOptions)(4)); - w223.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleMsg])); + w221.TopAttach = ((uint)(15)); + w221.BottomAttach = ((uint)(16)); + w221.LeftAttach = ((uint)(1)); + w221.RightAttach = ((uint)(5)); + w221.XOptions = ((global::Gtk.AttachOptions)(4)); + w221.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblHoleOnTop = new global::Gtk.Label(); this.lblHoleOnTop.WidthRequest = 50; @@ -2660,13 +2624,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblHoleOnTop.Name = "lblHoleOnTop"; this.lblHoleOnTop.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblHoleOnTop); - global::Gtk.Table.TableChild w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleOnTop])); - w224.TopAttach = ((uint)(15)); - w224.BottomAttach = ((uint)(16)); - w224.LeftAttach = ((uint)(5)); - w224.RightAttach = ((uint)(6)); - w224.XOptions = ((global::Gtk.AttachOptions)(4)); - w224.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleOnTop])); + w222.TopAttach = ((uint)(15)); + w222.BottomAttach = ((uint)(16)); + w222.LeftAttach = ((uint)(5)); + w222.RightAttach = ((uint)(6)); + w222.XOptions = ((global::Gtk.AttachOptions)(4)); + w222.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblHotbar = new global::Gtk.Label(); this.lblHotbar.WidthRequest = 50; @@ -2674,13 +2638,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblHotbar.Name = "lblHotbar"; this.lblHotbar.LabelProp = "Hotbar"; this.tbUI.Add(this.lblHotbar); - global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); - w225.TopAttach = ((uint)(9)); - w225.BottomAttach = ((uint)(10)); - w225.LeftAttach = ((uint)(8)); - w225.RightAttach = ((uint)(13)); - w225.XOptions = ((global::Gtk.AttachOptions)(4)); - w225.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); + w223.TopAttach = ((uint)(9)); + w223.BottomAttach = ((uint)(10)); + w223.LeftAttach = ((uint)(8)); + w223.RightAttach = ((uint)(13)); + w223.XOptions = ((global::Gtk.AttachOptions)(4)); + w223.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblInfo = new global::Gtk.Label(); this.lblInfo.WidthRequest = 250; @@ -2689,25 +2653,25 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblInfo.Wrap = true; this.lblInfo.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblInfo); - global::Gtk.Table.TableChild w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); - w226.TopAttach = ((uint)(15)); - w226.BottomAttach = ((uint)(16)); - w226.LeftAttach = ((uint)(15)); - w226.RightAttach = ((uint)(20)); - w226.XOptions = ((global::Gtk.AttachOptions)(4)); - w226.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); + w224.TopAttach = ((uint)(15)); + w224.BottomAttach = ((uint)(16)); + w224.LeftAttach = ((uint)(15)); + w224.RightAttach = ((uint)(20)); + w224.XOptions = ((global::Gtk.AttachOptions)(4)); + w224.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblItemLayer = new global::Gtk.Label(); this.lblItemLayer.Name = "lblItemLayer"; this.lblItemLayer.LabelProp = "Structure Layer"; this.tbUI.Add(this.lblItemLayer); - global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); - w227.TopAttach = ((uint)(9)); - w227.BottomAttach = ((uint)(10)); - w227.LeftAttach = ((uint)(1)); - w227.RightAttach = ((uint)(6)); - w227.XOptions = ((global::Gtk.AttachOptions)(4)); - w227.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); + w225.TopAttach = ((uint)(9)); + w225.BottomAttach = ((uint)(10)); + w225.LeftAttach = ((uint)(1)); + w225.RightAttach = ((uint)(6)); + w225.XOptions = ((global::Gtk.AttachOptions)(4)); + w225.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog1 = new global::Gtk.Label(); this.lblLog1.WidthRequest = 250; @@ -2716,13 +2680,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblLog1.LabelProp = "ERROR"; this.lblLog1.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblLog1); - global::Gtk.Table.TableChild w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); - w228.TopAttach = ((uint)(12)); - w228.BottomAttach = ((uint)(13)); - w228.LeftAttach = ((uint)(8)); - w228.RightAttach = ((uint)(13)); - w228.XOptions = ((global::Gtk.AttachOptions)(4)); - w228.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); + w226.TopAttach = ((uint)(12)); + w226.BottomAttach = ((uint)(13)); + 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.lblLog2 = new global::Gtk.Label(); this.lblLog2.WidthRequest = 250; @@ -2731,13 +2695,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblLog2.LabelProp = "ERROR"; this.lblLog2.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblLog2); - global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); - w229.TopAttach = ((uint)(13)); - w229.BottomAttach = ((uint)(14)); - w229.LeftAttach = ((uint)(8)); - w229.RightAttach = ((uint)(13)); - w229.XOptions = ((global::Gtk.AttachOptions)(4)); - w229.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); + w227.TopAttach = ((uint)(13)); + w227.BottomAttach = ((uint)(14)); + 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.lblLog3 = new global::Gtk.Label(); this.lblLog3.WidthRequest = 250; @@ -2746,13 +2710,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblLog3.LabelProp = "ERROR"; this.lblLog3.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblLog3); - global::Gtk.Table.TableChild w230 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); - w230.TopAttach = ((uint)(14)); - w230.BottomAttach = ((uint)(15)); - w230.LeftAttach = ((uint)(8)); - w230.RightAttach = ((uint)(13)); - w230.XOptions = ((global::Gtk.AttachOptions)(4)); - w230.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); + w228.TopAttach = ((uint)(14)); + w228.BottomAttach = ((uint)(15)); + w228.LeftAttach = ((uint)(8)); + w228.RightAttach = ((uint)(13)); + w228.XOptions = ((global::Gtk.AttachOptions)(4)); + w228.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog4 = new global::Gtk.Label(); this.lblLog4.WidthRequest = 250; @@ -2761,13 +2725,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblLog4.LabelProp = "ERROR"; this.lblLog4.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblLog4); - global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); - w231.TopAttach = ((uint)(15)); - w231.BottomAttach = ((uint)(16)); - w231.LeftAttach = ((uint)(8)); - w231.RightAttach = ((uint)(13)); - w231.XOptions = ((global::Gtk.AttachOptions)(4)); - w231.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); + w229.TopAttach = ((uint)(15)); + w229.BottomAttach = ((uint)(16)); + w229.LeftAttach = ((uint)(8)); + w229.RightAttach = ((uint)(13)); + w229.XOptions = ((global::Gtk.AttachOptions)(4)); + w229.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblSuperLayer = new global::Gtk.Label(); this.lblSuperLayer.WidthRequest = 100; @@ -2775,13 +2739,13 @@ namespace Mundus.Views.Windows.GameWindows.Small this.lblSuperLayer.Name = "lblSuperLayer"; this.lblSuperLayer.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblSuperLayer); - global::Gtk.Table.TableChild w232 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblSuperLayer])); - w232.TopAttach = ((uint)(7)); - w232.BottomAttach = ((uint)(8)); - w232.LeftAttach = ((uint)(1)); - w232.RightAttach = ((uint)(3)); - w232.XOptions = ((global::Gtk.AttachOptions)(4)); - w232.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w230 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblSuperLayer])); + w230.TopAttach = ((uint)(7)); + w230.BottomAttach = ((uint)(8)); + w230.LeftAttach = ((uint)(1)); + w230.RightAttach = ((uint)(3)); + w230.XOptions = ((global::Gtk.AttachOptions)(4)); + w230.YOptions = ((global::Gtk.AttachOptions)(4)); this.Add(this.tbUI); if ((this.Child != null)) { @@ -2821,8 +2785,6 @@ namespace Mundus.Views.Windows.GameWindows.Small this.btnMap.Clicked += new global::System.EventHandler(this.OnBtnMapClicked); this.btnLog.Clicked += new global::System.EventHandler(this.OnBtnLogClicked); this.btnInv.Clicked += new global::System.EventHandler(this.OnBtnInvClicked); - this.btnIG2.Clicked += new global::System.EventHandler(this.OnBtnIG2Clicked); - this.btnIG1.Clicked += new global::System.EventHandler(this.OnBtnIG1Clicked); this.btnI9.Clicked += new global::System.EventHandler(this.OnBtnI9Clicked); this.btnI8.Clicked += new global::System.EventHandler(this.OnBtnI8Clicked); this.btnI7.Clicked += new global::System.EventHandler(this.OnBtnI7Clicked); diff --git a/Mundus/gtk-gui/gui.stetic b/Mundus/gtk-gui/gui.stetic index e61aae8..b14a1c6 100644 --- a/Mundus/gtk-gui/gui.stetic +++ b/Mundus/gtk-gui/gui.stetic @@ -1395,6 +1395,12 @@ <placeholder /> </child> <child> + <placeholder /> + </child> + <child> + <placeholder /> + </child> + <child> <widget class="Gtk.Button" id="btnA1"> <property name="MemberName" /> <property name="WidthRequest">50</property> @@ -2665,60 +2671,6 @@ </packing> </child> <child> - <widget class="Gtk.Button" id="btnIG1"> - <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">TESTING</property> - <property name="UseUnderline">True</property> - <signal name="Clicked" handler="OnBtnIG1Clicked" /> - </widget> - <packing> - <property name="TopAttach">13</property> - <property name="BottomAttach">14</property> - <property name="LeftAttach">15</property> - <property name="RightAttach">16</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="btnIG2"> - <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">TESTING</property> - <property name="UseUnderline">True</property> - <signal name="Clicked" handler="OnBtnIG2Clicked" /> - </widget> - <packing> - <property name="TopAttach">13</property> - <property name="BottomAttach">14</property> - <property name="LeftAttach">16</property> - <property name="RightAttach">17</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> |
