diff options
20 files changed, 5159 insertions, 4359 deletions
diff --git a/Mundus Build 30-04-2020 No1.exe b/Mundus Build 30-04-2020 No2.exe Binary files differindex 33be0ef..abce32f 100644 --- a/Mundus Build 30-04-2020 No1.exe +++ b/Mundus Build 30-04-2020 No2.exe diff --git a/Mundus/Data/Log.cs b/Mundus/Data/Log.cs new file mode 100644 index 0000000..0da7e92 --- /dev/null +++ b/Mundus/Data/Log.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; + +namespace Mundus.Data { + public static class Log { + public static List<string> LogMessages { get; set; } + + + } +} diff --git a/Mundus/Data/Windows/WI.cs b/Mundus/Data/Windows/WI.cs index 3a25b94..0f064fb 100644 --- a/Mundus/Data/Windows/WI.cs +++ b/Mundus/Data/Windows/WI.cs @@ -2,7 +2,7 @@ namespace Mundus.Data.Windows { public static class WI { //stands for Window Instances - public const string BuildName = "Build 30-04-2020 No1"; + public const string BuildName = "Build 30-04-2020 No2"; public static IGameWindow SelWin { get; set; } @@ -15,6 +15,7 @@ namespace Mundus.Data.Windows { public static PauseWindow WPause { get; private set; } public static MusicWindow WMusic { get; private set; } public static CraftingWindow WCrafting { get; private set; } + public static LogWindow WLog { get; private set; } //Gtk opens all window instances in the project automatically, unless they are hidden public static void CreateInstances() { @@ -36,6 +37,8 @@ namespace Mundus.Data.Windows { WMusic.Hide(); WCrafting = new CraftingWindow(); WCrafting.Hide(); + WLog = new LogWindow(); + WLog.Hide(); } } } diff --git a/Mundus/Mundus.csproj b/Mundus/Mundus.csproj index d99ec96..6ccae13 100644 --- a/Mundus/Mundus.csproj +++ b/Mundus/Mundus.csproj @@ -154,6 +154,10 @@ <Compile Include="Service\Mobs\Controllers\MobTerraforming.cs" />
<Compile Include="Service\Mobs\LandMobs\Player.cs" />
<Compile Include="Data\Difficulty.cs" />
+ <Compile Include="Data\Log.cs" />
+ <Compile Include="Service\LogController.cs" />
+ <Compile Include="Views\Windows\LogWindow.cs" />
+ <Compile Include="gtk-gui\Mundus.Views.Windows.LogWindow.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Service\" />
diff --git a/Mundus/Program.cs b/Mundus/Program.cs index 7df0dc9..7ca908c 100644 --- a/Mundus/Program.cs +++ b/Mundus/Program.cs @@ -4,6 +4,8 @@ using Mundus.Data.Dialogues; using Mundus.Data.Superlayers.Mobs; using Mundus.Data.SuperLayers; using Mundus.Data.Windows; +using Mundus.Data; +using Mundus.Service; namespace Mundus { public static class MainClass { @@ -12,6 +14,7 @@ namespace Mundus { public static void Main(string[] args) { Application.Init(); //All windows and dialogues that are used by user (instances) are saved and created in WindowInstances.cs + LogController.Initialize(); WI.CreateInstances(); DI.CreateInstances(); LI.CreateInstances(); diff --git a/Mundus/Service/LogController.cs b/Mundus/Service/LogController.cs new file mode 100644 index 0000000..ca4feb4 --- /dev/null +++ b/Mundus/Service/LogController.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using Mundus.Data; + +namespace Mundus.Service { + public static class LogController { + public static void Initialize() { + Log.LogMessages = new List<string>(); + } + + public static void AddMessage(string logMessage) { + Log.LogMessages.Add(logMessage); + } + + public static string GetMessagage(int index) { + return (0 <= index && index < GetCount()) ? Log.LogMessages[index] : null; + } + + public static int GetCount() { + return Log.LogMessages.Count; + } + } +}
\ No newline at end of file diff --git a/Mundus/Service/Mobs/Controllers/MobFighting.cs b/Mundus/Service/Mobs/Controllers/MobFighting.cs index 92b3f64..aa937cd 100644 --- a/Mundus/Service/Mobs/Controllers/MobFighting.cs +++ b/Mundus/Service/Mobs/Controllers/MobFighting.cs @@ -1,6 +1,7 @@ using System.Linq; using Mundus.Data.Superlayers.Mobs; using Mundus.Data.Tiles; +using Mundus.Service.Mobs.LandMobs; using Mundus.Service.Tiles; using Mundus.Service.Tiles.Items; @@ -59,14 +60,31 @@ namespace Mundus.Service.Mobs.Controllers { MobTile targetMob = mob.CurrSuperLayer.GetMobLayerTile(mapYPos, mapXPos); if (selTool.Class >= targetMob.Defense) { - if (!targetMob.TakeDamage(1 + (selTool.Class - targetMob.Defense))) { + int damagePoints = 1 + (selTool.Class - targetMob.Defense); + + if (!targetMob.TakeDamage(damagePoints)) { mob.CurrSuperLayer.SetMobAtPosition(null, mapYPos, mapXPos); if (mob.Inventory.Items.Contains(null)) { mob.Inventory.AppendToItems(targetMob.DroppedUponDeath); } + + if (mob.GetType() == typeof(Player)) { + LogController.AddMessage($"Player killed \"{targetMob.stock_id}\""); + } + } else if (mob.GetType() == typeof(Player)) { + LogController.AddMessage($"Player did {damagePoints} damage to \"{targetMob.stock_id}\" (H:{targetMob.Health}) "); } } + else if (mob.GetType() == typeof(Player)) { + LogController.AddMessage($"You need a tool class of atleast {targetMob.Defense} to fight this mob"); + } + } + else if (mob.CurrSuperLayer.GetMobLayerTile(mapYPos, mapXPos) == null && mob.GetType() == typeof(Player)) { + LogController.AddMessage($"There is no mob to fight on \"{mob.CurrSuperLayer}\" at Y:{mapYPos}, X:{mapXPos}"); + } + else if (mob.GetType() == typeof(Player)) { // Inventory.GetPlayerItem(selPlace, selIndex).GetType() != typeof(Tool) || ((Tool)Inventory.GetPlayerItem(selPlace, selIndex)).Type != ToolTypes.Sword + LogController.AddMessage($"You need a Tool of type {ToolTypes.Sword} to fight with other mobs"); } } } diff --git a/Mundus/Service/Mobs/Controllers/MobMovement.cs b/Mundus/Service/Mobs/Controllers/MobMovement.cs index 20082b9..a26fc27 100644 --- a/Mundus/Service/Mobs/Controllers/MobMovement.cs +++ b/Mundus/Service/Mobs/Controllers/MobMovement.cs @@ -2,6 +2,7 @@ using Mundus.Data;
using Mundus.Data.Superlayers.Mobs; using Mundus.Data.SuperLayers; +using Mundus.Service.Mobs.LandMobs; using Mundus.Service.SuperLayers; using Mundus.Service.Tiles; @@ -39,8 +40,11 @@ namespace Mundus.Service.Mobs.Controllers { public static void ChangeMobPosition(MobTile mob, int yPos, int xPos, int mapSize) { if (InBoundaries(yPos, xPos)) { - if (CanWalkAt(mob, yPos, xPos)) { + if (CanWalkTo(mob, yPos, xPos)) { ChangeMobPosition(mob, yPos, xPos); + }
+ else if (mob.GetType() == typeof(Player)) { + LogController.AddMessage($"Cannot walk to Y:{yPos}, X:{xPos}"); } } } @@ -60,16 +64,31 @@ namespace Mundus.Service.Mobs.Controllers { {
if (HeightController.GetLayerUnderneathMob(mob).GetMobLayerTile(yPos, xPos) == null)
{ - mob.CurrSuperLayer = HeightController.GetLayerUnderneathMob(mob); + mob.CurrSuperLayer = HeightController.GetLayerUnderneathMob(mob);
+
+ if (mob.GetType() == typeof(Player)) { + LogController.AddMessage($"Player fell down a superlayer, to {mob.CurrSuperLayer}"); + }
+ }
+ else if (mob.GetType() == typeof(Player)) { + LogController.AddMessage($"Cannot fall down a superlayer, blocked by {HeightController.GetLayerUnderneathMob(mob).GetMobLayerTile(yPos, xPos).stock_id}"); } }
// If mob can go down a layer from non-solid ground
else if (!mob.CurrSuperLayer.GetGroundLayerTile(yPos, xPos).Solid &&
HeightController.GetLayerUnderneathMob(mob) != null)
{
+
if (HeightController.GetLayerUnderneathMob(mob).GetMobLayerTile(yPos, xPos) == null)
{ - mob.CurrSuperLayer = HeightController.GetLayerUnderneathMob(mob); + mob.CurrSuperLayer = HeightController.GetLayerUnderneathMob(mob);
+
+ if (mob.GetType() == typeof(Player)) {
+ LogController.AddMessage($"Player descended a superlayer, to {mob.CurrSuperLayer}");
+ } + }
+ else if (mob.GetType() == typeof(Player)) { + LogController.AddMessage($"Cannot descend a superlayer, blocked by {HeightController.GetLayerUnderneathMob(mob).GetMobLayerTile(yPos, xPos).stock_id}"); } }
// If mob can climb up @@ -85,12 +104,25 @@ namespace Mundus.Service.Mobs.Controllers { if (HeightController.GetLayerAboveMob(mob).GetGroundLayerTile(yPos, xPos) == null ||
!HeightController.GetLayerAboveMob(mob).GetGroundLayerTile(yPos, xPos).Solid)
{ - mob.CurrSuperLayer = HeightController.GetLayerAboveMob(mob); + mob.CurrSuperLayer = HeightController.GetLayerAboveMob(mob);
+
+ if (mob.GetType() == typeof(Player)) { + LogController.AddMessage($"Player climbed up a superlayer"); + } }
- else { - // TODO: add a message to log + else if (HeightController.GetLayerAboveMob(mob).GetGroundLayerTile(yPos, xPos) != null && mob.GetType() == typeof(Player)) { + LogController.AddMessage($"Cannot climb up a superlayer, there is solid ground above"); } + }
+ else if (!mob.CurrSuperLayer.GetStructureLayerTile(yPos, xPos).IsClimable && mob.GetType() == typeof(Player)) {
+ LogController.AddMessage($"Cannot climb up a superlayer using a \"{mob.CurrSuperLayer.GetStructureLayerTile(yPos, xPos).stock_id}\"");
+ }
+ else if (HeightController.GetLayerAboveMob(mob) == null && mob.GetType() == typeof(Player)) {
+ LogController.AddMessage($"There is no superlayer to climb up to");
} + }
+ else if (HeightController.GetLayerAboveMob(mob).GetMobLayerTile(yPos, xPos) != null && mob.GetType() == typeof(Player)) { + LogController.AddMessage($"Cannot climb up a superlayer, {HeightController.GetLayerAboveMob(mob).GetMobLayerTile(yPos, xPos).stock_id} is blocking the way"); } mob.YPos = yPos; @@ -98,7 +130,7 @@ namespace Mundus.Service.Mobs.Controllers { mob.CurrSuperLayer.SetMobAtPosition(mob, yPos, xPos); }
- private static bool CanWalkAt(MobTile mob, int yPos, int xPos) {
+ private static bool CanWalkTo(MobTile mob, int yPos, int xPos) {
//Mobs can only walk on free ground (no structure or mob) or walkable structures return (mob.CurrSuperLayer.GetStructureLayerTile(yPos, xPos) == null || mob.CurrSuperLayer.GetStructureLayerTile(yPos, xPos).IsWalkable) &&
diff --git a/Mundus/Service/Mobs/Controllers/MobTerraforming.cs b/Mundus/Service/Mobs/Controllers/MobTerraforming.cs index 589818e..bbbb15a 100644 --- a/Mundus/Service/Mobs/Controllers/MobTerraforming.cs +++ b/Mundus/Service/Mobs/Controllers/MobTerraforming.cs @@ -16,18 +16,34 @@ namespace Mundus.Service.Mobs.Controllers { var selectedItemType = Inventory.GetPlayerItem(inventoryPlace, inventoryIndex).GetType(); // If player can place strucure - if (selectedItemType == typeof(Structure) && PlayerCanBuildStructureAt(mapYPos, mapXPos)) { - PlayerBuildStructureAt(mapYPos, mapXPos, inventoryPlace, inventoryIndex); - MI.Player.Inventory.DeleteItemTile(inventoryPlace, inventoryIndex); + if (selectedItemType == typeof(Structure)) {
+ if (PlayerCanBuildStructureAt(mapYPos, mapXPos)) { + PlayerBuildStructureAt(mapYPos, mapXPos, inventoryPlace, inventoryIndex); + MI.Player.Inventory.DeleteItemTile(inventoryPlace, inventoryIndex); + }
+ else { + LogController.AddMessage($"Cannot build structure at Y:{mapYPos}, X:{mapXPos}"); + } + }
// If Player can place ground
- else if (selectedItemType == typeof(GroundTile) && PlayerCanPlaceGroundAt(mapYPos, mapXPos)) { - PlayerPlaceGroundAt(mapYPos, mapXPos, inventoryPlace, inventoryIndex); - MI.Player.Inventory.DeleteItemTile(inventoryPlace, inventoryIndex); + else if (selectedItemType == typeof(GroundTile)) {
+ if (PlayerCanPlaceGroundAt(mapYPos, mapXPos)) { + PlayerPlaceGroundAt(mapYPos, mapXPos, inventoryPlace, inventoryIndex); + MI.Player.Inventory.DeleteItemTile(inventoryPlace, inventoryIndex); + }
+ else { + LogController.AddMessage($"Cannot place ground at Y:{mapYPos}, X:{mapXPos}"); + } }
// If player can mine/dig - else if (selectedItemType == typeof(Tool) && PlayerCanDestroyAt(mapYPos, mapXPos)) { - PlayerDestroyAt(mapYPos, mapXPos, inventoryPlace, inventoryIndex); + else if (selectedItemType == typeof(Tool)) {
+ if (PlayerCanDestroyAt(mapYPos, mapXPos)) { + PlayerDestroyAt(mapYPos, mapXPos, inventoryPlace, inventoryIndex); + }
+ else { + LogController.AddMessage($"Cannot destroy at Y:{mapYPos}, X:{mapXPos}"); + } } }
@@ -53,7 +69,7 @@ namespace Mundus.Service.Mobs.Controllers { private static void PlayerTryDestroyGroundAt(int mapYPos, int mapXPos, Tool shovel) { var selectedGround = MI.Player.CurrSuperLayer.GetGroundLayerTile(mapYPos, mapXPos); - // Grdound tiles that should be unbreakable have a negative required shovel class + // Ground tiles that should be unbreakable have a negative required shovel class if (selectedGround.ReqShovelClass <= shovel.Class && selectedGround.ReqShovelClass >= 0) { MI.Player.CurrSuperLayer.SetGroundAtPosition(null, mapYPos, mapXPos); @@ -67,7 +83,15 @@ namespace Mundus.Service.Mobs.Controllers { if (MI.Player.Inventory.Items.Contains(null)) { MI.Player.Inventory.AppendToItems(new GroundTile(selectedGround)); - } + }
+
+ LogController.AddMessage($"Player destroyed \"{selectedGround.stock_id}\" from layer \"{MI.Player.CurrSuperLayer}\" at Y:{mapYPos}, X:{mapXPos}"); + }
+ else if (selectedGround.ReqShovelClass > shovel.Class) { + LogController.AddMessage($"Ground \"{selectedGround.stock_id}\" requires minimum shovel class of: {selectedGround.ReqShovelClass}");
+ }
+ else { // selectedGround.ReqSHovelClass < 0 + LogController.AddMessage($"This ground cannot be destroyed."); } }
@@ -92,8 +116,19 @@ namespace Mundus.Service.Mobs.Controllers { // Damage to the structure is done after adding the dropped item/items. if (!selStructure.TakeDamage(damagePoints)) { - MI.Player.CurrSuperLayer.SetStructureAtPosition(null, mapYPos, mapXPos); + MI.Player.CurrSuperLayer.SetStructureAtPosition(null, mapYPos, mapXPos);
+
+ LogController.AddMessage($"Player destroyed \"{selStructure.stock_id}\" from layer \"{MI.Player.CurrSuperLayer}\" at Y:{mapYPos}, X:{mapXPos}"); + } + else { + LogController.AddMessage($"Player did {damagePoints} damage to \"{selStructure.stock_id}\" (H:{selStructure.Health})");
} + }
+ else if (selStructure.ReqToolType != tool.Type) { + LogController.AddMessage($"Structure \"{selStructure.stock_id}\" requires tool type: {selStructure.ReqToolType}"); + }
+ else { // selStructure.ReqToolClass > tool.Class + LogController.AddMessage($"Structure \"{selStructure.stock_id}\" requires minimum tool class of: {selStructure.ReqToolClass}");
} }
@@ -106,7 +141,9 @@ namespace Mundus.Service.Mobs.Controllers { private static void PlayerPlaceGroundAt(int yPos, int xPos, string inventoryPlace, int inventoryIndex) { GroundTile toPlace = (GroundTile)MI.Player.Inventory.GetItemTile(inventoryPlace, inventoryIndex);
- MI.Player.CurrSuperLayer.SetGroundAtPosition(toPlace, yPos, xPos); + MI.Player.CurrSuperLayer.SetGroundAtPosition(toPlace, yPos, xPos);
+
+ LogController.AddMessage($"Set ground \"{toPlace.stock_id}\" on layer \"{MI.Player.CurrSuperLayer}\" at Y:{yPos}, X:{xPos}"); }
@@ -123,9 +160,13 @@ namespace Mundus.Service.Mobs.Controllers { HeightController.GetLayerUnderneathMob(MI.Player).GetStructureLayerTile(yPos, xPos) == null)
{
HeightController.GetLayerUnderneathMob(MI.Player).SetStructureAtPosition(toBuild, yPos, xPos);
+
+ LogController.AddMessage($"Set structure \"{toBuild.stock_id}\" on layer \"{HeightController.GetLayerUnderneathMob(MI.Player)}\" at Y:{yPos}, X:{xPos}"); }
else if (MI.Player.CurrSuperLayer.GetGroundLayerTile(yPos, xPos) != null) { MI.Player.CurrSuperLayer.SetStructureAtPosition(toBuild, yPos, xPos);
+
+ LogController.AddMessage($"Set structure \"{toBuild.stock_id}\" on layer \"{MI.Player.CurrSuperLayer}\" at Y:{yPos}, X:{xPos}");
}
} } diff --git a/Mundus/Service/WindowController.cs b/Mundus/Service/WindowController.cs index 72a6558..d662a19 100644 --- a/Mundus/Service/WindowController.cs +++ b/Mundus/Service/WindowController.cs @@ -55,5 +55,11 @@ namespace Mundus.Service { WI.WCrafting.Show(); WI.WCrafting.Present(); } + + public static void ShowLogWindow() { + WI.WLog.Initialize(); + WI.WLog.Show(); + WI.WLog.Present(); + } } } diff --git a/Mundus/Views/Windows/LargeGameWindow.cs b/Mundus/Views/Windows/LargeGameWindow.cs index a3e0da8..d010a68 100644 --- a/Mundus/Views/Windows/LargeGameWindow.cs +++ b/Mundus/Views/Windows/LargeGameWindow.cs @@ -239,7 +239,21 @@ namespace Mundus.Views.Windows { }
}
- //Print log
+ //Prints log
+ for (int i = 0, mIndex = LogController.GetCount() - 1; i < Size; mIndex--, i++) {
+ string msg = LogController.GetMessagage(mIndex);
+
+ switch (i) {
+ case 0: lblLog1.Text = msg; break;
+ case 1: lblLog2.Text = msg; break;
+ case 2: lblLog3.Text = msg; break;
+ case 3: lblLog4.Text = msg; break;
+ case 4: lblLog5.Text = msg; break;
+ case 5: lblLog6.Text = msg; break;
+ case 7: lblLog7.Text = msg; break;
+ case 8: lblLog8.Text = msg; break;
+ }
+ }
}
public void PrintMap() {
@@ -1164,6 +1178,10 @@ namespace Mundus.Views.Windows { }
}
+ protected void OnBtnLogClicked(object sender, EventArgs e) {
+ WindowController.ShowLogWindow();
+ }
+
// Inventory (items) buttons
protected void OnBtnI1Clicked(object sender, EventArgs e) {
if (!WindowController.PauseWindowVisible) {
diff --git a/Mundus/Views/Windows/LogWindow.cs b/Mundus/Views/Windows/LogWindow.cs new file mode 100644 index 0000000..cf074b6 --- /dev/null +++ b/Mundus/Views/Windows/LogWindow.cs @@ -0,0 +1,59 @@ +using System; +using Mundus.Service; + +namespace Mundus.Views.Windows { + public partial class LogWindow : Gtk.Window { + public LogWindow() : + base(Gtk.WindowType.Toplevel) { + this.Build(); + + } + + public void Initialize() { + PrintLogs(); + UpdateButtons(); + } + + protected void OnDeleteEvent(object o, Gtk.DeleteEventArgs args) { + args.RetVal = true; + this.Hide(); + } + + private int scroll = 0; + + public void PrintLogs() { + for (int i = LogController.GetCount() - 1 - scroll, logIndex = 0; logIndex < 9; logIndex++, i--) { + string msg = LogController.GetMessagage(i); + + switch (logIndex) { + case 0: lblLog1.Text = msg; break; + case 1: lblLog2.Text = msg; break; + case 2: lblLog3.Text = msg; break; + case 3: lblLog4.Text = msg; break; + case 4: lblLog5.Text = msg; break; + case 5: lblLog6.Text = msg; break; + case 6: lblLog7.Text = msg; break; + case 7: lblLog8.Text = msg; break; + case 8: lblLog9.Text = msg; break; + } + } + } + + protected void OnBtnNewerClicked(object sender, EventArgs e) { + scroll--; + PrintLogs(); + UpdateButtons(); + } + + protected void OnBtnOlderClicked(object sender, EventArgs e) { + scroll++; + PrintLogs(); + UpdateButtons(); + } + + private void UpdateButtons() { + btnNewer.Sensitive = scroll > 0; + btnOlder.Sensitive = scroll < LogController.GetCount() - 9; + } + } +} diff --git a/Mundus/Views/Windows/MediumGameWindow.cs b/Mundus/Views/Windows/MediumGameWindow.cs index fde50c8..623eece 100644 --- a/Mundus/Views/Windows/MediumGameWindow.cs +++ b/Mundus/Views/Windows/MediumGameWindow.cs @@ -206,7 +206,19 @@ namespace Mundus.Views.Windows { } } - //Print log + //Prints log + for (int i = 0, mIndex = LogController.GetCount() - 1; i < Size; mIndex--, i++) { + string msg = LogController.GetMessagage(mIndex); + + switch (i) { + case 0: lblLog1.Text = msg; break; + case 1: lblLog2.Text = msg; break; + case 2: lblLog3.Text = msg; break; + case 3: lblLog4.Text = msg; break; + case 4: lblLog5.Text = msg; break; + case 5: lblLog6.Text = msg; break; + } + } } public void PrintMap() { @@ -824,6 +836,10 @@ namespace Mundus.Views.Windows { } } + protected void OnBtnLogClicked(object sender, EventArgs e) { + WindowController.ShowLogWindow(); + } + // Inventory (items) buttons protected void OnBtnI1Clicked(object sender, EventArgs e) { if (!WindowController.PauseWindowVisible) { diff --git a/Mundus/Views/Windows/SmallGameWindow.cs b/Mundus/Views/Windows/SmallGameWindow.cs index 2a551cf..d57ea30 100644 --- a/Mundus/Views/Windows/SmallGameWindow.cs +++ b/Mundus/Views/Windows/SmallGameWindow.cs @@ -199,7 +199,17 @@ namespace Mundus.Views.Windows { } } - //Print log + //Prints log + for (int i = 0, mIndex = LogController.GetCount() - 1; i < Size; mIndex--, i++) { + string msg = LogController.GetMessagage(mIndex); + + switch(i) { + case 0: lblLog1.Text = msg; break; + case 1: lblLog2.Text = msg; break; + case 2: lblLog3.Text = msg; break; + case 3: lblLog4.Text = msg; break; + } + } } public void PrintMap() { @@ -568,6 +578,10 @@ namespace Mundus.Views.Windows { } } + protected void OnBtnLogClicked(object sender, EventArgs e) { + WindowController.ShowLogWindow(); + } + // Inventory (items) buttons protected void OnBtnI1Clicked(object sender, EventArgs e) { if (!WindowController.PauseWindowVisible) { @@ -942,7 +956,5 @@ namespace Mundus.Views.Windows { lblBlank4.Visible = isVisible; } - - } } diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.LargeGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.LargeGameWindow.cs index e264cd4..3a31e9d 100644 --- a/Mundus/gtk-gui/Mundus.Views.Windows.LargeGameWindow.cs +++ b/Mundus/gtk-gui/Mundus.Views.Windows.LargeGameWindow.cs @@ -244,6 +244,8 @@ namespace Mundus.Views.Windows private global::Gtk.Button btnInv; + private global::Gtk.Button btnLog; + private global::Gtk.Button btnMap; private global::Gtk.Button btnMusic; @@ -794,8 +796,6 @@ namespace Mundus.Views.Windows private global::Gtk.Label lblCoord2; - private global::Gtk.Label lblEventLog; - private global::Gtk.Label lblGear; private global::Gtk.Label lblGroundLayer; @@ -2950,6 +2950,23 @@ namespace Mundus.Views.Windows w236.XOptions = ((global::Gtk.AttachOptions)(4)); w236.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild + this.btnLog = new global::Gtk.Button(); + this.btnLog.WidthRequest = 250; + this.btnLog.HeightRequest = 50; + this.btnLog.CanFocus = true; + this.btnLog.Name = "btnLog"; + this.btnLog.UseUnderline = true; + this.btnLog.FocusOnClick = false; + this.btnLog.Label = "Event Log"; + this.tbUI.Add(this.btnLog); + global::Gtk.Table.TableChild w237 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); + w237.TopAttach = ((uint)(15)); + w237.BottomAttach = ((uint)(16)); + w237.LeftAttach = ((uint)(12)); + w237.RightAttach = ((uint)(21)); + w237.XOptions = ((global::Gtk.AttachOptions)(4)); + w237.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild this.btnMap = new global::Gtk.Button(); this.btnMap.WidthRequest = 50; this.btnMap.HeightRequest = 50; @@ -2958,13 +2975,13 @@ namespace Mundus.Views.Windows this.btnMap.UseUnderline = true; this.btnMap.Label = "Map"; this.tbUI.Add(this.btnMap); - global::Gtk.Table.TableChild w237 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); - w237.TopAttach = ((uint)(13)); - w237.BottomAttach = ((uint)(14)); - w237.LeftAttach = ((uint)(11)); - w237.RightAttach = ((uint)(12)); - w237.XOptions = ((global::Gtk.AttachOptions)(4)); - w237.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w238 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); + w238.TopAttach = ((uint)(13)); + w238.BottomAttach = ((uint)(14)); + w238.LeftAttach = ((uint)(11)); + w238.RightAttach = ((uint)(12)); + w238.XOptions = ((global::Gtk.AttachOptions)(4)); + w238.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnMusic = new global::Gtk.Button(); this.btnMusic.WidthRequest = 50; @@ -2974,13 +2991,13 @@ namespace Mundus.Views.Windows this.btnMusic.UseUnderline = true; this.btnMusic.Label = "Music"; this.tbUI.Add(this.btnMusic); - global::Gtk.Table.TableChild w238 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); - w238.TopAttach = ((uint)(15)); - w238.BottomAttach = ((uint)(16)); - w238.LeftAttach = ((uint)(11)); - w238.RightAttach = ((uint)(12)); - w238.XOptions = ((global::Gtk.AttachOptions)(4)); - w238.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w239 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); + w239.TopAttach = ((uint)(15)); + w239.BottomAttach = ((uint)(16)); + w239.LeftAttach = ((uint)(11)); + w239.RightAttach = ((uint)(12)); + w239.XOptions = ((global::Gtk.AttachOptions)(4)); + w239.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP1 = new global::Gtk.Button(); this.btnP1.WidthRequest = 50; @@ -2989,16 +3006,16 @@ namespace Mundus.Views.Windows this.btnP1.Name = "btnP1"; this.btnP1.UseUnderline = true; this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w239 = new global::Gtk.Image(); - this.btnP1.Image = w239; + global::Gtk.Image w240 = new global::Gtk.Image(); + this.btnP1.Image = w240; this.tbUI.Add(this.btnP1); - global::Gtk.Table.TableChild w240 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); - w240.TopAttach = ((uint)(1)); - w240.BottomAttach = ((uint)(2)); - w240.LeftAttach = ((uint)(12)); - w240.RightAttach = ((uint)(13)); - w240.XOptions = ((global::Gtk.AttachOptions)(4)); - w240.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w241 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); + w241.TopAttach = ((uint)(1)); + w241.BottomAttach = ((uint)(2)); + w241.LeftAttach = ((uint)(12)); + w241.RightAttach = ((uint)(13)); + w241.XOptions = ((global::Gtk.AttachOptions)(4)); + w241.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP10 = new global::Gtk.Button(); this.btnP10.WidthRequest = 50; @@ -3007,16 +3024,16 @@ namespace Mundus.Views.Windows this.btnP10.Name = "btnP10"; this.btnP10.UseUnderline = true; this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w241 = new global::Gtk.Image(); - this.btnP10.Image = w241; + global::Gtk.Image w242 = new global::Gtk.Image(); + this.btnP10.Image = w242; this.tbUI.Add(this.btnP10); - global::Gtk.Table.TableChild w242 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); - w242.TopAttach = ((uint)(2)); - w242.BottomAttach = ((uint)(3)); - w242.LeftAttach = ((uint)(12)); - w242.RightAttach = ((uint)(13)); - w242.XOptions = ((global::Gtk.AttachOptions)(4)); - w242.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w243 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); + w243.TopAttach = ((uint)(2)); + w243.BottomAttach = ((uint)(3)); + w243.LeftAttach = ((uint)(12)); + w243.RightAttach = ((uint)(13)); + w243.XOptions = ((global::Gtk.AttachOptions)(4)); + w243.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP11 = new global::Gtk.Button(); this.btnP11.WidthRequest = 50; @@ -3025,16 +3042,16 @@ namespace Mundus.Views.Windows this.btnP11.Name = "btnP11"; this.btnP11.UseUnderline = true; this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w243 = new global::Gtk.Image(); - this.btnP11.Image = w243; + global::Gtk.Image w244 = new global::Gtk.Image(); + this.btnP11.Image = w244; this.tbUI.Add(this.btnP11); - global::Gtk.Table.TableChild w244 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); - w244.TopAttach = ((uint)(2)); - w244.BottomAttach = ((uint)(3)); - w244.LeftAttach = ((uint)(13)); - w244.RightAttach = ((uint)(14)); - w244.XOptions = ((global::Gtk.AttachOptions)(4)); - w244.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w245 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); + w245.TopAttach = ((uint)(2)); + w245.BottomAttach = ((uint)(3)); + w245.LeftAttach = ((uint)(13)); + w245.RightAttach = ((uint)(14)); + w245.XOptions = ((global::Gtk.AttachOptions)(4)); + w245.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP12 = new global::Gtk.Button(); this.btnP12.WidthRequest = 50; @@ -3043,16 +3060,16 @@ namespace Mundus.Views.Windows this.btnP12.Name = "btnP12"; this.btnP12.UseUnderline = true; this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w245 = new global::Gtk.Image(); - this.btnP12.Image = w245; + global::Gtk.Image w246 = new global::Gtk.Image(); + this.btnP12.Image = w246; this.tbUI.Add(this.btnP12); - global::Gtk.Table.TableChild w246 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); - w246.TopAttach = ((uint)(2)); - w246.BottomAttach = ((uint)(3)); - w246.LeftAttach = ((uint)(14)); - w246.RightAttach = ((uint)(15)); - w246.XOptions = ((global::Gtk.AttachOptions)(4)); - w246.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w247 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); + w247.TopAttach = ((uint)(2)); + w247.BottomAttach = ((uint)(3)); + w247.LeftAttach = ((uint)(14)); + w247.RightAttach = ((uint)(15)); + w247.XOptions = ((global::Gtk.AttachOptions)(4)); + w247.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP13 = new global::Gtk.Button(); this.btnP13.WidthRequest = 50; @@ -3061,16 +3078,16 @@ namespace Mundus.Views.Windows this.btnP13.Name = "btnP13"; this.btnP13.UseUnderline = true; this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w247 = new global::Gtk.Image(); - this.btnP13.Image = w247; + global::Gtk.Image w248 = new global::Gtk.Image(); + this.btnP13.Image = w248; this.tbUI.Add(this.btnP13); - global::Gtk.Table.TableChild w248 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); - w248.TopAttach = ((uint)(2)); - w248.BottomAttach = ((uint)(3)); - w248.LeftAttach = ((uint)(15)); - w248.RightAttach = ((uint)(16)); - w248.XOptions = ((global::Gtk.AttachOptions)(4)); - w248.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w249 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); + w249.TopAttach = ((uint)(2)); + w249.BottomAttach = ((uint)(3)); + w249.LeftAttach = ((uint)(15)); + w249.RightAttach = ((uint)(16)); + w249.XOptions = ((global::Gtk.AttachOptions)(4)); + w249.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP14 = new global::Gtk.Button(); this.btnP14.WidthRequest = 50; @@ -3079,16 +3096,16 @@ namespace Mundus.Views.Windows this.btnP14.Name = "btnP14"; this.btnP14.UseUnderline = true; this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w249 = new global::Gtk.Image(); - this.btnP14.Image = w249; + global::Gtk.Image w250 = new global::Gtk.Image(); + this.btnP14.Image = w250; this.tbUI.Add(this.btnP14); - global::Gtk.Table.TableChild w250 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); - w250.TopAttach = ((uint)(2)); - w250.BottomAttach = ((uint)(3)); - w250.LeftAttach = ((uint)(16)); - w250.RightAttach = ((uint)(17)); - w250.XOptions = ((global::Gtk.AttachOptions)(4)); - w250.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w251 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); + w251.TopAttach = ((uint)(2)); + w251.BottomAttach = ((uint)(3)); + w251.LeftAttach = ((uint)(16)); + w251.RightAttach = ((uint)(17)); + w251.XOptions = ((global::Gtk.AttachOptions)(4)); + w251.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP15 = new global::Gtk.Button(); this.btnP15.WidthRequest = 50; @@ -3097,16 +3114,16 @@ namespace Mundus.Views.Windows this.btnP15.Name = "btnP15"; this.btnP15.UseUnderline = true; this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w251 = new global::Gtk.Image(); - this.btnP15.Image = w251; + global::Gtk.Image w252 = new global::Gtk.Image(); + this.btnP15.Image = w252; this.tbUI.Add(this.btnP15); - global::Gtk.Table.TableChild w252 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); - w252.TopAttach = ((uint)(2)); - w252.BottomAttach = ((uint)(3)); - w252.LeftAttach = ((uint)(17)); - w252.RightAttach = ((uint)(18)); - w252.XOptions = ((global::Gtk.AttachOptions)(4)); - w252.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w253 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); + w253.TopAttach = ((uint)(2)); + w253.BottomAttach = ((uint)(3)); + w253.LeftAttach = ((uint)(17)); + w253.RightAttach = ((uint)(18)); + w253.XOptions = ((global::Gtk.AttachOptions)(4)); + w253.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP16 = new global::Gtk.Button(); this.btnP16.WidthRequest = 50; @@ -3115,16 +3132,16 @@ namespace Mundus.Views.Windows this.btnP16.Name = "btnP16"; this.btnP16.UseUnderline = true; this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w253 = new global::Gtk.Image(); - this.btnP16.Image = w253; + global::Gtk.Image w254 = new global::Gtk.Image(); + this.btnP16.Image = w254; this.tbUI.Add(this.btnP16); - global::Gtk.Table.TableChild w254 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); - w254.TopAttach = ((uint)(2)); - w254.BottomAttach = ((uint)(3)); - w254.LeftAttach = ((uint)(18)); - w254.RightAttach = ((uint)(19)); - w254.XOptions = ((global::Gtk.AttachOptions)(4)); - w254.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w255 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); + w255.TopAttach = ((uint)(2)); + w255.BottomAttach = ((uint)(3)); + w255.LeftAttach = ((uint)(18)); + w255.RightAttach = ((uint)(19)); + w255.XOptions = ((global::Gtk.AttachOptions)(4)); + w255.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP17 = new global::Gtk.Button(); this.btnP17.WidthRequest = 50; @@ -3133,16 +3150,16 @@ namespace Mundus.Views.Windows this.btnP17.Name = "btnP17"; this.btnP17.UseUnderline = true; this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w255 = new global::Gtk.Image(); - this.btnP17.Image = w255; + global::Gtk.Image w256 = new global::Gtk.Image(); + this.btnP17.Image = w256; this.tbUI.Add(this.btnP17); - global::Gtk.Table.TableChild w256 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); - w256.TopAttach = ((uint)(2)); - w256.BottomAttach = ((uint)(3)); - w256.LeftAttach = ((uint)(19)); - w256.RightAttach = ((uint)(20)); - w256.XOptions = ((global::Gtk.AttachOptions)(4)); - w256.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w257 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); + w257.TopAttach = ((uint)(2)); + w257.BottomAttach = ((uint)(3)); + w257.LeftAttach = ((uint)(19)); + w257.RightAttach = ((uint)(20)); + w257.XOptions = ((global::Gtk.AttachOptions)(4)); + w257.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP18 = new global::Gtk.Button(); this.btnP18.WidthRequest = 50; @@ -3151,16 +3168,16 @@ namespace Mundus.Views.Windows this.btnP18.Name = "btnP18"; this.btnP18.UseUnderline = true; this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w257 = new global::Gtk.Image(); - this.btnP18.Image = w257; + global::Gtk.Image w258 = new global::Gtk.Image(); + this.btnP18.Image = w258; this.tbUI.Add(this.btnP18); - global::Gtk.Table.TableChild w258 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); - w258.TopAttach = ((uint)(2)); - w258.BottomAttach = ((uint)(3)); - w258.LeftAttach = ((uint)(20)); - w258.RightAttach = ((uint)(21)); - w258.XOptions = ((global::Gtk.AttachOptions)(4)); - w258.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w259 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); + w259.TopAttach = ((uint)(2)); + w259.BottomAttach = ((uint)(3)); + w259.LeftAttach = ((uint)(20)); + w259.RightAttach = ((uint)(21)); + w259.XOptions = ((global::Gtk.AttachOptions)(4)); + w259.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP19 = new global::Gtk.Button(); this.btnP19.WidthRequest = 50; @@ -3169,16 +3186,16 @@ namespace Mundus.Views.Windows this.btnP19.Name = "btnP19"; this.btnP19.UseUnderline = true; this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w259 = new global::Gtk.Image(); - this.btnP19.Image = w259; + global::Gtk.Image w260 = new global::Gtk.Image(); + this.btnP19.Image = w260; this.tbUI.Add(this.btnP19); - global::Gtk.Table.TableChild w260 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); - w260.TopAttach = ((uint)(3)); - w260.BottomAttach = ((uint)(4)); - w260.LeftAttach = ((uint)(12)); - w260.RightAttach = ((uint)(13)); - w260.XOptions = ((global::Gtk.AttachOptions)(4)); - w260.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w261 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); + w261.TopAttach = ((uint)(3)); + w261.BottomAttach = ((uint)(4)); + w261.LeftAttach = ((uint)(12)); + w261.RightAttach = ((uint)(13)); + w261.XOptions = ((global::Gtk.AttachOptions)(4)); + w261.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP2 = new global::Gtk.Button(); this.btnP2.WidthRequest = 50; @@ -3187,16 +3204,16 @@ namespace Mundus.Views.Windows this.btnP2.Name = "btnP2"; this.btnP2.UseUnderline = true; this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w261 = new global::Gtk.Image(); - this.btnP2.Image = w261; + global::Gtk.Image w262 = new global::Gtk.Image(); + this.btnP2.Image = w262; this.tbUI.Add(this.btnP2); - global::Gtk.Table.TableChild w262 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); - w262.TopAttach = ((uint)(1)); - w262.BottomAttach = ((uint)(2)); - w262.LeftAttach = ((uint)(13)); - w262.RightAttach = ((uint)(14)); - w262.XOptions = ((global::Gtk.AttachOptions)(4)); - w262.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w263 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); + w263.TopAttach = ((uint)(1)); + w263.BottomAttach = ((uint)(2)); + w263.LeftAttach = ((uint)(13)); + w263.RightAttach = ((uint)(14)); + w263.XOptions = ((global::Gtk.AttachOptions)(4)); + w263.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP20 = new global::Gtk.Button(); this.btnP20.WidthRequest = 50; @@ -3205,16 +3222,16 @@ namespace Mundus.Views.Windows this.btnP20.Name = "btnP20"; this.btnP20.UseUnderline = true; this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w263 = new global::Gtk.Image(); - this.btnP20.Image = w263; + global::Gtk.Image w264 = new global::Gtk.Image(); + this.btnP20.Image = w264; this.tbUI.Add(this.btnP20); - global::Gtk.Table.TableChild w264 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); - w264.TopAttach = ((uint)(3)); - w264.BottomAttach = ((uint)(4)); - w264.LeftAttach = ((uint)(13)); - w264.RightAttach = ((uint)(14)); - w264.XOptions = ((global::Gtk.AttachOptions)(4)); - w264.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w265 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); + w265.TopAttach = ((uint)(3)); + w265.BottomAttach = ((uint)(4)); + w265.LeftAttach = ((uint)(13)); + w265.RightAttach = ((uint)(14)); + w265.XOptions = ((global::Gtk.AttachOptions)(4)); + w265.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP21 = new global::Gtk.Button(); this.btnP21.WidthRequest = 50; @@ -3223,16 +3240,16 @@ namespace Mundus.Views.Windows this.btnP21.Name = "btnP21"; this.btnP21.UseUnderline = true; this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w265 = new global::Gtk.Image(); - this.btnP21.Image = w265; + global::Gtk.Image w266 = new global::Gtk.Image(); + this.btnP21.Image = w266; this.tbUI.Add(this.btnP21); - global::Gtk.Table.TableChild w266 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); - w266.TopAttach = ((uint)(3)); - w266.BottomAttach = ((uint)(4)); - w266.LeftAttach = ((uint)(14)); - w266.RightAttach = ((uint)(15)); - w266.XOptions = ((global::Gtk.AttachOptions)(4)); - w266.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w267 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); + w267.TopAttach = ((uint)(3)); + w267.BottomAttach = ((uint)(4)); + w267.LeftAttach = ((uint)(14)); + w267.RightAttach = ((uint)(15)); + w267.XOptions = ((global::Gtk.AttachOptions)(4)); + w267.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP22 = new global::Gtk.Button(); this.btnP22.WidthRequest = 50; @@ -3241,16 +3258,16 @@ namespace Mundus.Views.Windows this.btnP22.Name = "btnP22"; this.btnP22.UseUnderline = true; this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w267 = new global::Gtk.Image(); - this.btnP22.Image = w267; + global::Gtk.Image w268 = new global::Gtk.Image(); + this.btnP22.Image = w268; this.tbUI.Add(this.btnP22); - global::Gtk.Table.TableChild w268 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); - w268.TopAttach = ((uint)(3)); - w268.BottomAttach = ((uint)(4)); - w268.LeftAttach = ((uint)(15)); - w268.RightAttach = ((uint)(16)); - w268.XOptions = ((global::Gtk.AttachOptions)(4)); - w268.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w269 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); + w269.TopAttach = ((uint)(3)); + w269.BottomAttach = ((uint)(4)); + w269.LeftAttach = ((uint)(15)); + w269.RightAttach = ((uint)(16)); + w269.XOptions = ((global::Gtk.AttachOptions)(4)); + w269.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP23 = new global::Gtk.Button(); this.btnP23.WidthRequest = 50; @@ -3259,16 +3276,16 @@ namespace Mundus.Views.Windows this.btnP23.Name = "btnP23"; this.btnP23.UseUnderline = true; this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w269 = new global::Gtk.Image(); - this.btnP23.Image = w269; + global::Gtk.Image w270 = new global::Gtk.Image(); + this.btnP23.Image = w270; this.tbUI.Add(this.btnP23); - global::Gtk.Table.TableChild w270 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); - w270.TopAttach = ((uint)(3)); - w270.BottomAttach = ((uint)(4)); - w270.LeftAttach = ((uint)(16)); - w270.RightAttach = ((uint)(17)); - w270.XOptions = ((global::Gtk.AttachOptions)(4)); - w270.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w271 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); + w271.TopAttach = ((uint)(3)); + w271.BottomAttach = ((uint)(4)); + w271.LeftAttach = ((uint)(16)); + w271.RightAttach = ((uint)(17)); + w271.XOptions = ((global::Gtk.AttachOptions)(4)); + w271.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP24 = new global::Gtk.Button(); this.btnP24.WidthRequest = 50; @@ -3277,16 +3294,16 @@ namespace Mundus.Views.Windows this.btnP24.Name = "btnP24"; this.btnP24.UseUnderline = true; this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w271 = new global::Gtk.Image(); - this.btnP24.Image = w271; + global::Gtk.Image w272 = new global::Gtk.Image(); + this.btnP24.Image = w272; this.tbUI.Add(this.btnP24); - global::Gtk.Table.TableChild w272 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); - w272.TopAttach = ((uint)(3)); - w272.BottomAttach = ((uint)(4)); - w272.LeftAttach = ((uint)(17)); - w272.RightAttach = ((uint)(18)); - w272.XOptions = ((global::Gtk.AttachOptions)(4)); - w272.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w273 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); + w273.TopAttach = ((uint)(3)); + w273.BottomAttach = ((uint)(4)); + w273.LeftAttach = ((uint)(17)); + w273.RightAttach = ((uint)(18)); + w273.XOptions = ((global::Gtk.AttachOptions)(4)); + w273.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP25 = new global::Gtk.Button(); this.btnP25.WidthRequest = 50; @@ -3295,16 +3312,16 @@ namespace Mundus.Views.Windows this.btnP25.Name = "btnP25"; this.btnP25.UseUnderline = true; this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w273 = new global::Gtk.Image(); - this.btnP25.Image = w273; + global::Gtk.Image w274 = new global::Gtk.Image(); + this.btnP25.Image = w274; this.tbUI.Add(this.btnP25); - global::Gtk.Table.TableChild w274 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); - w274.TopAttach = ((uint)(3)); - w274.BottomAttach = ((uint)(4)); - w274.LeftAttach = ((uint)(18)); - w274.RightAttach = ((uint)(19)); - w274.XOptions = ((global::Gtk.AttachOptions)(4)); - w274.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w275 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); + w275.TopAttach = ((uint)(3)); + w275.BottomAttach = ((uint)(4)); + w275.LeftAttach = ((uint)(18)); + w275.RightAttach = ((uint)(19)); + w275.XOptions = ((global::Gtk.AttachOptions)(4)); + w275.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP26 = new global::Gtk.Button(); this.btnP26.WidthRequest = 50; @@ -3313,16 +3330,16 @@ namespace Mundus.Views.Windows this.btnP26.Name = "btnP26"; this.btnP26.UseUnderline = true; this.btnP26.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w275 = new global::Gtk.Image(); - this.btnP26.Image = w275; + global::Gtk.Image w276 = new global::Gtk.Image(); + this.btnP26.Image = w276; this.tbUI.Add(this.btnP26); - global::Gtk.Table.TableChild w276 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP26])); - w276.TopAttach = ((uint)(3)); - w276.BottomAttach = ((uint)(4)); - w276.LeftAttach = ((uint)(19)); - w276.RightAttach = ((uint)(20)); - w276.XOptions = ((global::Gtk.AttachOptions)(4)); - w276.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w277 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP26])); + w277.TopAttach = ((uint)(3)); + w277.BottomAttach = ((uint)(4)); + w277.LeftAttach = ((uint)(19)); + w277.RightAttach = ((uint)(20)); + w277.XOptions = ((global::Gtk.AttachOptions)(4)); + w277.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP27 = new global::Gtk.Button(); this.btnP27.WidthRequest = 50; @@ -3331,16 +3348,16 @@ namespace Mundus.Views.Windows this.btnP27.Name = "btnP27"; this.btnP27.UseUnderline = true; this.btnP27.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w277 = new global::Gtk.Image(); - this.btnP27.Image = w277; + global::Gtk.Image w278 = new global::Gtk.Image(); + this.btnP27.Image = w278; this.tbUI.Add(this.btnP27); - global::Gtk.Table.TableChild w278 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP27])); - w278.TopAttach = ((uint)(3)); - w278.BottomAttach = ((uint)(4)); - w278.LeftAttach = ((uint)(20)); - w278.RightAttach = ((uint)(21)); - w278.XOptions = ((global::Gtk.AttachOptions)(4)); - w278.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w279 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP27])); + w279.TopAttach = ((uint)(3)); + w279.BottomAttach = ((uint)(4)); + w279.LeftAttach = ((uint)(20)); + w279.RightAttach = ((uint)(21)); + w279.XOptions = ((global::Gtk.AttachOptions)(4)); + w279.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP28 = new global::Gtk.Button(); this.btnP28.WidthRequest = 50; @@ -3349,16 +3366,16 @@ namespace Mundus.Views.Windows this.btnP28.Name = "btnP28"; this.btnP28.UseUnderline = true; this.btnP28.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w279 = new global::Gtk.Image(); - this.btnP28.Image = w279; + global::Gtk.Image w280 = new global::Gtk.Image(); + this.btnP28.Image = w280; this.tbUI.Add(this.btnP28); - global::Gtk.Table.TableChild w280 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP28])); - w280.TopAttach = ((uint)(4)); - w280.BottomAttach = ((uint)(5)); - w280.LeftAttach = ((uint)(12)); - w280.RightAttach = ((uint)(13)); - w280.XOptions = ((global::Gtk.AttachOptions)(4)); - w280.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w281 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP28])); + w281.TopAttach = ((uint)(4)); + w281.BottomAttach = ((uint)(5)); + w281.LeftAttach = ((uint)(12)); + w281.RightAttach = ((uint)(13)); + w281.XOptions = ((global::Gtk.AttachOptions)(4)); + w281.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP29 = new global::Gtk.Button(); this.btnP29.WidthRequest = 50; @@ -3367,16 +3384,16 @@ namespace Mundus.Views.Windows this.btnP29.Name = "btnP29"; this.btnP29.UseUnderline = true; this.btnP29.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w281 = new global::Gtk.Image(); - this.btnP29.Image = w281; + global::Gtk.Image w282 = new global::Gtk.Image(); + this.btnP29.Image = w282; this.tbUI.Add(this.btnP29); - global::Gtk.Table.TableChild w282 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP29])); - w282.TopAttach = ((uint)(4)); - w282.BottomAttach = ((uint)(5)); - w282.LeftAttach = ((uint)(13)); - w282.RightAttach = ((uint)(14)); - w282.XOptions = ((global::Gtk.AttachOptions)(4)); - w282.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w283 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP29])); + w283.TopAttach = ((uint)(4)); + w283.BottomAttach = ((uint)(5)); + w283.LeftAttach = ((uint)(13)); + w283.RightAttach = ((uint)(14)); + w283.XOptions = ((global::Gtk.AttachOptions)(4)); + w283.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP3 = new global::Gtk.Button(); this.btnP3.WidthRequest = 50; @@ -3385,16 +3402,16 @@ namespace Mundus.Views.Windows this.btnP3.Name = "btnP3"; this.btnP3.UseUnderline = true; this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w283 = new global::Gtk.Image(); - this.btnP3.Image = w283; + global::Gtk.Image w284 = new global::Gtk.Image(); + this.btnP3.Image = w284; this.tbUI.Add(this.btnP3); - global::Gtk.Table.TableChild w284 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); - w284.TopAttach = ((uint)(1)); - w284.BottomAttach = ((uint)(2)); - w284.LeftAttach = ((uint)(14)); - w284.RightAttach = ((uint)(15)); - w284.XOptions = ((global::Gtk.AttachOptions)(4)); - w284.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w285 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); + w285.TopAttach = ((uint)(1)); + w285.BottomAttach = ((uint)(2)); + w285.LeftAttach = ((uint)(14)); + w285.RightAttach = ((uint)(15)); + w285.XOptions = ((global::Gtk.AttachOptions)(4)); + w285.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP30 = new global::Gtk.Button(); this.btnP30.WidthRequest = 50; @@ -3403,16 +3420,16 @@ namespace Mundus.Views.Windows this.btnP30.Name = "btnP30"; this.btnP30.UseUnderline = true; this.btnP30.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w285 = new global::Gtk.Image(); - this.btnP30.Image = w285; + global::Gtk.Image w286 = new global::Gtk.Image(); + this.btnP30.Image = w286; this.tbUI.Add(this.btnP30); - global::Gtk.Table.TableChild w286 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP30])); - w286.TopAttach = ((uint)(4)); - w286.BottomAttach = ((uint)(5)); - w286.LeftAttach = ((uint)(14)); - w286.RightAttach = ((uint)(15)); - w286.XOptions = ((global::Gtk.AttachOptions)(4)); - w286.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w287 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP30])); + w287.TopAttach = ((uint)(4)); + w287.BottomAttach = ((uint)(5)); + w287.LeftAttach = ((uint)(14)); + w287.RightAttach = ((uint)(15)); + w287.XOptions = ((global::Gtk.AttachOptions)(4)); + w287.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP31 = new global::Gtk.Button(); this.btnP31.WidthRequest = 50; @@ -3421,16 +3438,16 @@ namespace Mundus.Views.Windows this.btnP31.Name = "btnP31"; this.btnP31.UseUnderline = true; this.btnP31.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w287 = new global::Gtk.Image(); - this.btnP31.Image = w287; + global::Gtk.Image w288 = new global::Gtk.Image(); + this.btnP31.Image = w288; this.tbUI.Add(this.btnP31); - global::Gtk.Table.TableChild w288 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP31])); - w288.TopAttach = ((uint)(4)); - w288.BottomAttach = ((uint)(5)); - w288.LeftAttach = ((uint)(15)); - w288.RightAttach = ((uint)(16)); - w288.XOptions = ((global::Gtk.AttachOptions)(4)); - w288.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w289 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP31])); + w289.TopAttach = ((uint)(4)); + w289.BottomAttach = ((uint)(5)); + w289.LeftAttach = ((uint)(15)); + w289.RightAttach = ((uint)(16)); + w289.XOptions = ((global::Gtk.AttachOptions)(4)); + w289.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP32 = new global::Gtk.Button(); this.btnP32.WidthRequest = 50; @@ -3439,16 +3456,16 @@ namespace Mundus.Views.Windows this.btnP32.Name = "btnP32"; this.btnP32.UseUnderline = true; this.btnP32.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w289 = new global::Gtk.Image(); - this.btnP32.Image = w289; + global::Gtk.Image w290 = new global::Gtk.Image(); + this.btnP32.Image = w290; this.tbUI.Add(this.btnP32); - global::Gtk.Table.TableChild w290 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP32])); - w290.TopAttach = ((uint)(4)); - w290.BottomAttach = ((uint)(5)); - w290.LeftAttach = ((uint)(16)); - w290.RightAttach = ((uint)(17)); - w290.XOptions = ((global::Gtk.AttachOptions)(4)); - w290.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w291 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP32])); + w291.TopAttach = ((uint)(4)); + w291.BottomAttach = ((uint)(5)); + w291.LeftAttach = ((uint)(16)); + w291.RightAttach = ((uint)(17)); + w291.XOptions = ((global::Gtk.AttachOptions)(4)); + w291.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP33 = new global::Gtk.Button(); this.btnP33.WidthRequest = 50; @@ -3457,16 +3474,16 @@ namespace Mundus.Views.Windows this.btnP33.Name = "btnP33"; this.btnP33.UseUnderline = true; this.btnP33.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w291 = new global::Gtk.Image(); - this.btnP33.Image = w291; + global::Gtk.Image w292 = new global::Gtk.Image(); + this.btnP33.Image = w292; this.tbUI.Add(this.btnP33); - global::Gtk.Table.TableChild w292 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP33])); - w292.TopAttach = ((uint)(4)); - w292.BottomAttach = ((uint)(5)); - w292.LeftAttach = ((uint)(17)); - w292.RightAttach = ((uint)(18)); - w292.XOptions = ((global::Gtk.AttachOptions)(4)); - w292.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w293 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP33])); + w293.TopAttach = ((uint)(4)); + w293.BottomAttach = ((uint)(5)); + w293.LeftAttach = ((uint)(17)); + w293.RightAttach = ((uint)(18)); + w293.XOptions = ((global::Gtk.AttachOptions)(4)); + w293.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP34 = new global::Gtk.Button(); this.btnP34.WidthRequest = 50; @@ -3475,16 +3492,16 @@ namespace Mundus.Views.Windows this.btnP34.Name = "btnP34"; this.btnP34.UseUnderline = true; this.btnP34.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w293 = new global::Gtk.Image(); - this.btnP34.Image = w293; + global::Gtk.Image w294 = new global::Gtk.Image(); + this.btnP34.Image = w294; this.tbUI.Add(this.btnP34); - global::Gtk.Table.TableChild w294 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP34])); - w294.TopAttach = ((uint)(4)); - w294.BottomAttach = ((uint)(5)); - w294.LeftAttach = ((uint)(18)); - w294.RightAttach = ((uint)(19)); - w294.XOptions = ((global::Gtk.AttachOptions)(4)); - w294.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w295 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP34])); + w295.TopAttach = ((uint)(4)); + w295.BottomAttach = ((uint)(5)); + w295.LeftAttach = ((uint)(18)); + w295.RightAttach = ((uint)(19)); + w295.XOptions = ((global::Gtk.AttachOptions)(4)); + w295.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP35 = new global::Gtk.Button(); this.btnP35.WidthRequest = 50; @@ -3493,16 +3510,16 @@ namespace Mundus.Views.Windows this.btnP35.Name = "btnP35"; this.btnP35.UseUnderline = true; this.btnP35.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w295 = new global::Gtk.Image(); - this.btnP35.Image = w295; + global::Gtk.Image w296 = new global::Gtk.Image(); + this.btnP35.Image = w296; this.tbUI.Add(this.btnP35); - global::Gtk.Table.TableChild w296 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP35])); - w296.TopAttach = ((uint)(4)); - w296.BottomAttach = ((uint)(5)); - w296.LeftAttach = ((uint)(19)); - w296.RightAttach = ((uint)(20)); - w296.XOptions = ((global::Gtk.AttachOptions)(4)); - w296.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w297 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP35])); + w297.TopAttach = ((uint)(4)); + w297.BottomAttach = ((uint)(5)); + w297.LeftAttach = ((uint)(19)); + w297.RightAttach = ((uint)(20)); + w297.XOptions = ((global::Gtk.AttachOptions)(4)); + w297.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP36 = new global::Gtk.Button(); this.btnP36.WidthRequest = 50; @@ -3511,16 +3528,16 @@ namespace Mundus.Views.Windows this.btnP36.Name = "btnP36"; this.btnP36.UseUnderline = true; this.btnP36.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w297 = new global::Gtk.Image(); - this.btnP36.Image = w297; + global::Gtk.Image w298 = new global::Gtk.Image(); + this.btnP36.Image = w298; this.tbUI.Add(this.btnP36); - global::Gtk.Table.TableChild w298 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP36])); - w298.TopAttach = ((uint)(4)); - w298.BottomAttach = ((uint)(5)); - w298.LeftAttach = ((uint)(20)); - w298.RightAttach = ((uint)(21)); - w298.XOptions = ((global::Gtk.AttachOptions)(4)); - w298.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w299 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP36])); + w299.TopAttach = ((uint)(4)); + w299.BottomAttach = ((uint)(5)); + w299.LeftAttach = ((uint)(20)); + w299.RightAttach = ((uint)(21)); + w299.XOptions = ((global::Gtk.AttachOptions)(4)); + w299.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP37 = new global::Gtk.Button(); this.btnP37.WidthRequest = 50; @@ -3529,16 +3546,16 @@ namespace Mundus.Views.Windows this.btnP37.Name = "btnP37"; this.btnP37.UseUnderline = true; this.btnP37.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w299 = new global::Gtk.Image(); - this.btnP37.Image = w299; + global::Gtk.Image w300 = new global::Gtk.Image(); + this.btnP37.Image = w300; this.tbUI.Add(this.btnP37); - global::Gtk.Table.TableChild w300 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP37])); - w300.TopAttach = ((uint)(5)); - w300.BottomAttach = ((uint)(6)); - w300.LeftAttach = ((uint)(12)); - w300.RightAttach = ((uint)(13)); - w300.XOptions = ((global::Gtk.AttachOptions)(4)); - w300.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w301 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP37])); + w301.TopAttach = ((uint)(5)); + w301.BottomAttach = ((uint)(6)); + w301.LeftAttach = ((uint)(12)); + w301.RightAttach = ((uint)(13)); + w301.XOptions = ((global::Gtk.AttachOptions)(4)); + w301.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP38 = new global::Gtk.Button(); this.btnP38.WidthRequest = 50; @@ -3547,16 +3564,16 @@ namespace Mundus.Views.Windows this.btnP38.Name = "btnP38"; this.btnP38.UseUnderline = true; this.btnP38.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w301 = new global::Gtk.Image(); - this.btnP38.Image = w301; + global::Gtk.Image w302 = new global::Gtk.Image(); + this.btnP38.Image = w302; this.tbUI.Add(this.btnP38); - global::Gtk.Table.TableChild w302 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP38])); - w302.TopAttach = ((uint)(5)); - w302.BottomAttach = ((uint)(6)); - w302.LeftAttach = ((uint)(13)); - w302.RightAttach = ((uint)(14)); - w302.XOptions = ((global::Gtk.AttachOptions)(4)); - w302.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w303 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP38])); + w303.TopAttach = ((uint)(5)); + w303.BottomAttach = ((uint)(6)); + w303.LeftAttach = ((uint)(13)); + w303.RightAttach = ((uint)(14)); + w303.XOptions = ((global::Gtk.AttachOptions)(4)); + w303.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP39 = new global::Gtk.Button(); this.btnP39.WidthRequest = 50; @@ -3565,16 +3582,16 @@ namespace Mundus.Views.Windows this.btnP39.Name = "btnP39"; this.btnP39.UseUnderline = true; this.btnP39.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w303 = new global::Gtk.Image(); - this.btnP39.Image = w303; + global::Gtk.Image w304 = new global::Gtk.Image(); + this.btnP39.Image = w304; this.tbUI.Add(this.btnP39); - global::Gtk.Table.TableChild w304 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP39])); - w304.TopAttach = ((uint)(5)); - w304.BottomAttach = ((uint)(6)); - w304.LeftAttach = ((uint)(14)); - w304.RightAttach = ((uint)(15)); - w304.XOptions = ((global::Gtk.AttachOptions)(4)); - w304.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w305 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP39])); + w305.TopAttach = ((uint)(5)); + w305.BottomAttach = ((uint)(6)); + w305.LeftAttach = ((uint)(14)); + w305.RightAttach = ((uint)(15)); + w305.XOptions = ((global::Gtk.AttachOptions)(4)); + w305.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP4 = new global::Gtk.Button(); this.btnP4.WidthRequest = 50; @@ -3583,16 +3600,16 @@ namespace Mundus.Views.Windows this.btnP4.Name = "btnP4"; this.btnP4.UseUnderline = true; this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w305 = new global::Gtk.Image(); - this.btnP4.Image = w305; + global::Gtk.Image w306 = new global::Gtk.Image(); + this.btnP4.Image = w306; this.tbUI.Add(this.btnP4); - global::Gtk.Table.TableChild w306 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); - w306.TopAttach = ((uint)(1)); - w306.BottomAttach = ((uint)(2)); - w306.LeftAttach = ((uint)(15)); - w306.RightAttach = ((uint)(16)); - w306.XOptions = ((global::Gtk.AttachOptions)(4)); - w306.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w307 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); + w307.TopAttach = ((uint)(1)); + w307.BottomAttach = ((uint)(2)); + w307.LeftAttach = ((uint)(15)); + w307.RightAttach = ((uint)(16)); + w307.XOptions = ((global::Gtk.AttachOptions)(4)); + w307.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP40 = new global::Gtk.Button(); this.btnP40.WidthRequest = 50; @@ -3601,16 +3618,16 @@ namespace Mundus.Views.Windows this.btnP40.Name = "btnP40"; this.btnP40.UseUnderline = true; this.btnP40.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w307 = new global::Gtk.Image(); - this.btnP40.Image = w307; + global::Gtk.Image w308 = new global::Gtk.Image(); + this.btnP40.Image = w308; this.tbUI.Add(this.btnP40); - global::Gtk.Table.TableChild w308 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP40])); - w308.TopAttach = ((uint)(5)); - w308.BottomAttach = ((uint)(6)); - w308.LeftAttach = ((uint)(15)); - w308.RightAttach = ((uint)(16)); - w308.XOptions = ((global::Gtk.AttachOptions)(4)); - w308.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w309 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP40])); + w309.TopAttach = ((uint)(5)); + w309.BottomAttach = ((uint)(6)); + w309.LeftAttach = ((uint)(15)); + w309.RightAttach = ((uint)(16)); + w309.XOptions = ((global::Gtk.AttachOptions)(4)); + w309.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP41 = new global::Gtk.Button(); this.btnP41.WidthRequest = 50; @@ -3619,16 +3636,16 @@ namespace Mundus.Views.Windows this.btnP41.Name = "btnP41"; this.btnP41.UseUnderline = true; this.btnP41.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w309 = new global::Gtk.Image(); - this.btnP41.Image = w309; + global::Gtk.Image w310 = new global::Gtk.Image(); + this.btnP41.Image = w310; this.tbUI.Add(this.btnP41); - global::Gtk.Table.TableChild w310 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP41])); - w310.TopAttach = ((uint)(5)); - w310.BottomAttach = ((uint)(6)); - w310.LeftAttach = ((uint)(16)); - w310.RightAttach = ((uint)(17)); - w310.XOptions = ((global::Gtk.AttachOptions)(4)); - w310.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w311 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP41])); + w311.TopAttach = ((uint)(5)); + w311.BottomAttach = ((uint)(6)); + w311.LeftAttach = ((uint)(16)); + w311.RightAttach = ((uint)(17)); + w311.XOptions = ((global::Gtk.AttachOptions)(4)); + w311.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP42 = new global::Gtk.Button(); this.btnP42.WidthRequest = 50; @@ -3637,16 +3654,16 @@ namespace Mundus.Views.Windows this.btnP42.Name = "btnP42"; this.btnP42.UseUnderline = true; this.btnP42.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w311 = new global::Gtk.Image(); - this.btnP42.Image = w311; + global::Gtk.Image w312 = new global::Gtk.Image(); + this.btnP42.Image = w312; this.tbUI.Add(this.btnP42); - global::Gtk.Table.TableChild w312 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP42])); - w312.TopAttach = ((uint)(5)); - w312.BottomAttach = ((uint)(6)); - w312.LeftAttach = ((uint)(17)); - w312.RightAttach = ((uint)(18)); - w312.XOptions = ((global::Gtk.AttachOptions)(4)); - w312.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w313 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP42])); + w313.TopAttach = ((uint)(5)); + w313.BottomAttach = ((uint)(6)); + w313.LeftAttach = ((uint)(17)); + w313.RightAttach = ((uint)(18)); + w313.XOptions = ((global::Gtk.AttachOptions)(4)); + w313.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP43 = new global::Gtk.Button(); this.btnP43.WidthRequest = 50; @@ -3655,16 +3672,16 @@ namespace Mundus.Views.Windows this.btnP43.Name = "btnP43"; this.btnP43.UseUnderline = true; this.btnP43.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w313 = new global::Gtk.Image(); - this.btnP43.Image = w313; + global::Gtk.Image w314 = new global::Gtk.Image(); + this.btnP43.Image = w314; this.tbUI.Add(this.btnP43); - global::Gtk.Table.TableChild w314 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP43])); - w314.TopAttach = ((uint)(5)); - w314.BottomAttach = ((uint)(6)); - w314.LeftAttach = ((uint)(18)); - w314.RightAttach = ((uint)(19)); - w314.XOptions = ((global::Gtk.AttachOptions)(4)); - w314.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w315 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP43])); + w315.TopAttach = ((uint)(5)); + w315.BottomAttach = ((uint)(6)); + w315.LeftAttach = ((uint)(18)); + w315.RightAttach = ((uint)(19)); + w315.XOptions = ((global::Gtk.AttachOptions)(4)); + w315.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP44 = new global::Gtk.Button(); this.btnP44.WidthRequest = 50; @@ -3673,16 +3690,16 @@ namespace Mundus.Views.Windows this.btnP44.Name = "btnP44"; this.btnP44.UseUnderline = true; this.btnP44.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w315 = new global::Gtk.Image(); - this.btnP44.Image = w315; + global::Gtk.Image w316 = new global::Gtk.Image(); + this.btnP44.Image = w316; this.tbUI.Add(this.btnP44); - global::Gtk.Table.TableChild w316 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP44])); - w316.TopAttach = ((uint)(5)); - w316.BottomAttach = ((uint)(6)); - w316.LeftAttach = ((uint)(19)); - w316.RightAttach = ((uint)(20)); - w316.XOptions = ((global::Gtk.AttachOptions)(4)); - w316.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w317 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP44])); + w317.TopAttach = ((uint)(5)); + w317.BottomAttach = ((uint)(6)); + w317.LeftAttach = ((uint)(19)); + w317.RightAttach = ((uint)(20)); + w317.XOptions = ((global::Gtk.AttachOptions)(4)); + w317.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP45 = new global::Gtk.Button(); this.btnP45.WidthRequest = 50; @@ -3691,16 +3708,16 @@ namespace Mundus.Views.Windows this.btnP45.Name = "btnP45"; this.btnP45.UseUnderline = true; this.btnP45.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w317 = new global::Gtk.Image(); - this.btnP45.Image = w317; + global::Gtk.Image w318 = new global::Gtk.Image(); + this.btnP45.Image = w318; this.tbUI.Add(this.btnP45); - global::Gtk.Table.TableChild w318 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP45])); - w318.TopAttach = ((uint)(5)); - w318.BottomAttach = ((uint)(6)); - w318.LeftAttach = ((uint)(20)); - w318.RightAttach = ((uint)(21)); - w318.XOptions = ((global::Gtk.AttachOptions)(4)); - w318.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w319 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP45])); + w319.TopAttach = ((uint)(5)); + w319.BottomAttach = ((uint)(6)); + w319.LeftAttach = ((uint)(20)); + w319.RightAttach = ((uint)(21)); + w319.XOptions = ((global::Gtk.AttachOptions)(4)); + w319.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP46 = new global::Gtk.Button(); this.btnP46.WidthRequest = 50; @@ -3709,16 +3726,16 @@ namespace Mundus.Views.Windows this.btnP46.Name = "btnP46"; this.btnP46.UseUnderline = true; this.btnP46.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w319 = new global::Gtk.Image(); - this.btnP46.Image = w319; + global::Gtk.Image w320 = new global::Gtk.Image(); + this.btnP46.Image = w320; this.tbUI.Add(this.btnP46); - global::Gtk.Table.TableChild w320 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP46])); - w320.TopAttach = ((uint)(6)); - w320.BottomAttach = ((uint)(7)); - w320.LeftAttach = ((uint)(12)); - w320.RightAttach = ((uint)(13)); - w320.XOptions = ((global::Gtk.AttachOptions)(4)); - w320.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w321 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP46])); + w321.TopAttach = ((uint)(6)); + w321.BottomAttach = ((uint)(7)); + w321.LeftAttach = ((uint)(12)); + w321.RightAttach = ((uint)(13)); + w321.XOptions = ((global::Gtk.AttachOptions)(4)); + w321.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP47 = new global::Gtk.Button(); this.btnP47.WidthRequest = 50; @@ -3727,16 +3744,16 @@ namespace Mundus.Views.Windows this.btnP47.Name = "btnP47"; this.btnP47.UseUnderline = true; this.btnP47.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w321 = new global::Gtk.Image(); - this.btnP47.Image = w321; + global::Gtk.Image w322 = new global::Gtk.Image(); + this.btnP47.Image = w322; this.tbUI.Add(this.btnP47); - global::Gtk.Table.TableChild w322 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP47])); - w322.TopAttach = ((uint)(6)); - w322.BottomAttach = ((uint)(7)); - w322.LeftAttach = ((uint)(13)); - w322.RightAttach = ((uint)(14)); - w322.XOptions = ((global::Gtk.AttachOptions)(4)); - w322.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w323 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP47])); + w323.TopAttach = ((uint)(6)); + w323.BottomAttach = ((uint)(7)); + w323.LeftAttach = ((uint)(13)); + w323.RightAttach = ((uint)(14)); + w323.XOptions = ((global::Gtk.AttachOptions)(4)); + w323.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP48 = new global::Gtk.Button(); this.btnP48.WidthRequest = 50; @@ -3745,16 +3762,16 @@ namespace Mundus.Views.Windows this.btnP48.Name = "btnP48"; this.btnP48.UseUnderline = true; this.btnP48.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w323 = new global::Gtk.Image(); - this.btnP48.Image = w323; + global::Gtk.Image w324 = new global::Gtk.Image(); + this.btnP48.Image = w324; this.tbUI.Add(this.btnP48); - global::Gtk.Table.TableChild w324 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP48])); - w324.TopAttach = ((uint)(6)); - w324.BottomAttach = ((uint)(7)); - w324.LeftAttach = ((uint)(14)); - w324.RightAttach = ((uint)(15)); - w324.XOptions = ((global::Gtk.AttachOptions)(4)); - w324.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w325 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP48])); + w325.TopAttach = ((uint)(6)); + w325.BottomAttach = ((uint)(7)); + w325.LeftAttach = ((uint)(14)); + w325.RightAttach = ((uint)(15)); + w325.XOptions = ((global::Gtk.AttachOptions)(4)); + w325.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP49 = new global::Gtk.Button(); this.btnP49.WidthRequest = 50; @@ -3763,16 +3780,16 @@ namespace Mundus.Views.Windows this.btnP49.Name = "btnP49"; this.btnP49.UseUnderline = true; this.btnP49.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w325 = new global::Gtk.Image(); - this.btnP49.Image = w325; + global::Gtk.Image w326 = new global::Gtk.Image(); + this.btnP49.Image = w326; this.tbUI.Add(this.btnP49); - global::Gtk.Table.TableChild w326 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP49])); - w326.TopAttach = ((uint)(6)); - w326.BottomAttach = ((uint)(7)); - w326.LeftAttach = ((uint)(15)); - w326.RightAttach = ((uint)(16)); - w326.XOptions = ((global::Gtk.AttachOptions)(4)); - w326.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w327 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP49])); + w327.TopAttach = ((uint)(6)); + w327.BottomAttach = ((uint)(7)); + w327.LeftAttach = ((uint)(15)); + w327.RightAttach = ((uint)(16)); + w327.XOptions = ((global::Gtk.AttachOptions)(4)); + w327.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP5 = new global::Gtk.Button(); this.btnP5.WidthRequest = 50; @@ -3781,16 +3798,16 @@ namespace Mundus.Views.Windows this.btnP5.Name = "btnP5"; this.btnP5.UseUnderline = true; this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w327 = new global::Gtk.Image(); - this.btnP5.Image = w327; + global::Gtk.Image w328 = new global::Gtk.Image(); + this.btnP5.Image = w328; this.tbUI.Add(this.btnP5); - global::Gtk.Table.TableChild w328 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); - w328.TopAttach = ((uint)(1)); - w328.BottomAttach = ((uint)(2)); - w328.LeftAttach = ((uint)(16)); - w328.RightAttach = ((uint)(17)); - w328.XOptions = ((global::Gtk.AttachOptions)(4)); - w328.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w329 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); + w329.TopAttach = ((uint)(1)); + w329.BottomAttach = ((uint)(2)); + w329.LeftAttach = ((uint)(16)); + w329.RightAttach = ((uint)(17)); + w329.XOptions = ((global::Gtk.AttachOptions)(4)); + w329.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP50 = new global::Gtk.Button(); this.btnP50.WidthRequest = 50; @@ -3799,16 +3816,16 @@ namespace Mundus.Views.Windows this.btnP50.Name = "btnP50"; this.btnP50.UseUnderline = true; this.btnP50.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w329 = new global::Gtk.Image(); - this.btnP50.Image = w329; + global::Gtk.Image w330 = new global::Gtk.Image(); + this.btnP50.Image = w330; this.tbUI.Add(this.btnP50); - global::Gtk.Table.TableChild w330 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP50])); - w330.TopAttach = ((uint)(6)); - w330.BottomAttach = ((uint)(7)); - w330.LeftAttach = ((uint)(16)); - w330.RightAttach = ((uint)(17)); - w330.XOptions = ((global::Gtk.AttachOptions)(4)); - w330.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w331 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP50])); + w331.TopAttach = ((uint)(6)); + w331.BottomAttach = ((uint)(7)); + w331.LeftAttach = ((uint)(16)); + w331.RightAttach = ((uint)(17)); + w331.XOptions = ((global::Gtk.AttachOptions)(4)); + w331.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP51 = new global::Gtk.Button(); this.btnP51.WidthRequest = 50; @@ -3817,16 +3834,16 @@ namespace Mundus.Views.Windows this.btnP51.Name = "btnP51"; this.btnP51.UseUnderline = true; this.btnP51.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w331 = new global::Gtk.Image(); - this.btnP51.Image = w331; + global::Gtk.Image w332 = new global::Gtk.Image(); + this.btnP51.Image = w332; this.tbUI.Add(this.btnP51); - global::Gtk.Table.TableChild w332 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP51])); - w332.TopAttach = ((uint)(6)); - w332.BottomAttach = ((uint)(7)); - w332.LeftAttach = ((uint)(17)); - w332.RightAttach = ((uint)(18)); - w332.XOptions = ((global::Gtk.AttachOptions)(4)); - w332.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w333 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP51])); + w333.TopAttach = ((uint)(6)); + w333.BottomAttach = ((uint)(7)); + w333.LeftAttach = ((uint)(17)); + w333.RightAttach = ((uint)(18)); + w333.XOptions = ((global::Gtk.AttachOptions)(4)); + w333.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP52 = new global::Gtk.Button(); this.btnP52.WidthRequest = 50; @@ -3835,16 +3852,16 @@ namespace Mundus.Views.Windows this.btnP52.Name = "btnP52"; this.btnP52.UseUnderline = true; this.btnP52.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w333 = new global::Gtk.Image(); - this.btnP52.Image = w333; + global::Gtk.Image w334 = new global::Gtk.Image(); + this.btnP52.Image = w334; this.tbUI.Add(this.btnP52); - global::Gtk.Table.TableChild w334 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP52])); - w334.TopAttach = ((uint)(6)); - w334.BottomAttach = ((uint)(7)); - w334.LeftAttach = ((uint)(18)); - w334.RightAttach = ((uint)(19)); - w334.XOptions = ((global::Gtk.AttachOptions)(4)); - w334.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w335 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP52])); + w335.TopAttach = ((uint)(6)); + w335.BottomAttach = ((uint)(7)); + w335.LeftAttach = ((uint)(18)); + w335.RightAttach = ((uint)(19)); + w335.XOptions = ((global::Gtk.AttachOptions)(4)); + w335.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP53 = new global::Gtk.Button(); this.btnP53.WidthRequest = 50; @@ -3853,16 +3870,16 @@ namespace Mundus.Views.Windows this.btnP53.Name = "btnP53"; this.btnP53.UseUnderline = true; this.btnP53.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w335 = new global::Gtk.Image(); - this.btnP53.Image = w335; + global::Gtk.Image w336 = new global::Gtk.Image(); + this.btnP53.Image = w336; this.tbUI.Add(this.btnP53); - global::Gtk.Table.TableChild w336 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP53])); - w336.TopAttach = ((uint)(6)); - w336.BottomAttach = ((uint)(7)); - w336.LeftAttach = ((uint)(19)); - w336.RightAttach = ((uint)(20)); - w336.XOptions = ((global::Gtk.AttachOptions)(4)); - w336.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w337 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP53])); + w337.TopAttach = ((uint)(6)); + w337.BottomAttach = ((uint)(7)); + w337.LeftAttach = ((uint)(19)); + w337.RightAttach = ((uint)(20)); + w337.XOptions = ((global::Gtk.AttachOptions)(4)); + w337.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP54 = new global::Gtk.Button(); this.btnP54.WidthRequest = 50; @@ -3871,16 +3888,16 @@ namespace Mundus.Views.Windows this.btnP54.Name = "btnP54"; this.btnP54.UseUnderline = true; this.btnP54.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w337 = new global::Gtk.Image(); - this.btnP54.Image = w337; + global::Gtk.Image w338 = new global::Gtk.Image(); + this.btnP54.Image = w338; this.tbUI.Add(this.btnP54); - global::Gtk.Table.TableChild w338 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP54])); - w338.TopAttach = ((uint)(6)); - w338.BottomAttach = ((uint)(7)); - w338.LeftAttach = ((uint)(20)); - w338.RightAttach = ((uint)(21)); - w338.XOptions = ((global::Gtk.AttachOptions)(4)); - w338.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w339 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP54])); + w339.TopAttach = ((uint)(6)); + w339.BottomAttach = ((uint)(7)); + w339.LeftAttach = ((uint)(20)); + w339.RightAttach = ((uint)(21)); + w339.XOptions = ((global::Gtk.AttachOptions)(4)); + w339.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP55 = new global::Gtk.Button(); this.btnP55.WidthRequest = 50; @@ -3889,16 +3906,16 @@ namespace Mundus.Views.Windows this.btnP55.Name = "btnP55"; this.btnP55.UseUnderline = true; this.btnP55.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w339 = new global::Gtk.Image(); - this.btnP55.Image = w339; + global::Gtk.Image w340 = new global::Gtk.Image(); + this.btnP55.Image = w340; this.tbUI.Add(this.btnP55); - global::Gtk.Table.TableChild w340 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP55])); - w340.TopAttach = ((uint)(7)); - w340.BottomAttach = ((uint)(8)); - w340.LeftAttach = ((uint)(12)); - w340.RightAttach = ((uint)(13)); - w340.XOptions = ((global::Gtk.AttachOptions)(4)); - w340.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w341 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP55])); + w341.TopAttach = ((uint)(7)); + w341.BottomAttach = ((uint)(8)); + w341.LeftAttach = ((uint)(12)); + w341.RightAttach = ((uint)(13)); + w341.XOptions = ((global::Gtk.AttachOptions)(4)); + w341.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP56 = new global::Gtk.Button(); this.btnP56.WidthRequest = 50; @@ -3907,16 +3924,16 @@ namespace Mundus.Views.Windows this.btnP56.Name = "btnP56"; this.btnP56.UseUnderline = true; this.btnP56.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w341 = new global::Gtk.Image(); - this.btnP56.Image = w341; + global::Gtk.Image w342 = new global::Gtk.Image(); + this.btnP56.Image = w342; this.tbUI.Add(this.btnP56); - global::Gtk.Table.TableChild w342 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP56])); - w342.TopAttach = ((uint)(7)); - w342.BottomAttach = ((uint)(8)); - w342.LeftAttach = ((uint)(13)); - w342.RightAttach = ((uint)(14)); - w342.XOptions = ((global::Gtk.AttachOptions)(4)); - w342.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w343 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP56])); + w343.TopAttach = ((uint)(7)); + w343.BottomAttach = ((uint)(8)); + w343.LeftAttach = ((uint)(13)); + w343.RightAttach = ((uint)(14)); + w343.XOptions = ((global::Gtk.AttachOptions)(4)); + w343.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP57 = new global::Gtk.Button(); this.btnP57.WidthRequest = 50; @@ -3925,16 +3942,16 @@ namespace Mundus.Views.Windows this.btnP57.Name = "btnP57"; this.btnP57.UseUnderline = true; this.btnP57.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w343 = new global::Gtk.Image(); - this.btnP57.Image = w343; + global::Gtk.Image w344 = new global::Gtk.Image(); + this.btnP57.Image = w344; this.tbUI.Add(this.btnP57); - global::Gtk.Table.TableChild w344 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP57])); - w344.TopAttach = ((uint)(7)); - w344.BottomAttach = ((uint)(8)); - w344.LeftAttach = ((uint)(14)); - w344.RightAttach = ((uint)(15)); - w344.XOptions = ((global::Gtk.AttachOptions)(4)); - w344.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w345 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP57])); + w345.TopAttach = ((uint)(7)); + w345.BottomAttach = ((uint)(8)); + w345.LeftAttach = ((uint)(14)); + w345.RightAttach = ((uint)(15)); + w345.XOptions = ((global::Gtk.AttachOptions)(4)); + w345.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP58 = new global::Gtk.Button(); this.btnP58.WidthRequest = 50; @@ -3943,16 +3960,16 @@ namespace Mundus.Views.Windows this.btnP58.Name = "btnP58"; this.btnP58.UseUnderline = true; this.btnP58.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w345 = new global::Gtk.Image(); - this.btnP58.Image = w345; + global::Gtk.Image w346 = new global::Gtk.Image(); + this.btnP58.Image = w346; this.tbUI.Add(this.btnP58); - global::Gtk.Table.TableChild w346 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP58])); - w346.TopAttach = ((uint)(7)); - w346.BottomAttach = ((uint)(8)); - w346.LeftAttach = ((uint)(15)); - w346.RightAttach = ((uint)(16)); - w346.XOptions = ((global::Gtk.AttachOptions)(4)); - w346.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w347 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP58])); + w347.TopAttach = ((uint)(7)); + w347.BottomAttach = ((uint)(8)); + w347.LeftAttach = ((uint)(15)); + w347.RightAttach = ((uint)(16)); + w347.XOptions = ((global::Gtk.AttachOptions)(4)); + w347.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP59 = new global::Gtk.Button(); this.btnP59.WidthRequest = 50; @@ -3961,16 +3978,16 @@ namespace Mundus.Views.Windows this.btnP59.Name = "btnP59"; this.btnP59.UseUnderline = true; this.btnP59.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w347 = new global::Gtk.Image(); - this.btnP59.Image = w347; + global::Gtk.Image w348 = new global::Gtk.Image(); + this.btnP59.Image = w348; this.tbUI.Add(this.btnP59); - global::Gtk.Table.TableChild w348 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP59])); - w348.TopAttach = ((uint)(7)); - w348.BottomAttach = ((uint)(8)); - w348.LeftAttach = ((uint)(16)); - w348.RightAttach = ((uint)(17)); - w348.XOptions = ((global::Gtk.AttachOptions)(4)); - w348.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w349 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP59])); + w349.TopAttach = ((uint)(7)); + w349.BottomAttach = ((uint)(8)); + w349.LeftAttach = ((uint)(16)); + w349.RightAttach = ((uint)(17)); + w349.XOptions = ((global::Gtk.AttachOptions)(4)); + w349.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP6 = new global::Gtk.Button(); this.btnP6.WidthRequest = 50; @@ -3979,16 +3996,16 @@ namespace Mundus.Views.Windows this.btnP6.Name = "btnP6"; this.btnP6.UseUnderline = true; this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w349 = new global::Gtk.Image(); - this.btnP6.Image = w349; + global::Gtk.Image w350 = new global::Gtk.Image(); + this.btnP6.Image = w350; this.tbUI.Add(this.btnP6); - global::Gtk.Table.TableChild w350 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); - w350.TopAttach = ((uint)(1)); - w350.BottomAttach = ((uint)(2)); - w350.LeftAttach = ((uint)(17)); - w350.RightAttach = ((uint)(18)); - w350.XOptions = ((global::Gtk.AttachOptions)(4)); - w350.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w351 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); + w351.TopAttach = ((uint)(1)); + w351.BottomAttach = ((uint)(2)); + w351.LeftAttach = ((uint)(17)); + w351.RightAttach = ((uint)(18)); + w351.XOptions = ((global::Gtk.AttachOptions)(4)); + w351.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP60 = new global::Gtk.Button(); this.btnP60.WidthRequest = 50; @@ -3997,16 +4014,16 @@ namespace Mundus.Views.Windows this.btnP60.Name = "btnP60"; this.btnP60.UseUnderline = true; this.btnP60.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w351 = new global::Gtk.Image(); - this.btnP60.Image = w351; + global::Gtk.Image w352 = new global::Gtk.Image(); + this.btnP60.Image = w352; this.tbUI.Add(this.btnP60); - global::Gtk.Table.TableChild w352 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP60])); - w352.TopAttach = ((uint)(7)); - w352.BottomAttach = ((uint)(8)); - w352.LeftAttach = ((uint)(17)); - w352.RightAttach = ((uint)(18)); - w352.XOptions = ((global::Gtk.AttachOptions)(4)); - w352.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w353 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP60])); + w353.TopAttach = ((uint)(7)); + w353.BottomAttach = ((uint)(8)); + w353.LeftAttach = ((uint)(17)); + w353.RightAttach = ((uint)(18)); + w353.XOptions = ((global::Gtk.AttachOptions)(4)); + w353.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP61 = new global::Gtk.Button(); this.btnP61.WidthRequest = 50; @@ -4015,16 +4032,16 @@ namespace Mundus.Views.Windows this.btnP61.Name = "btnP61"; this.btnP61.UseUnderline = true; this.btnP61.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w353 = new global::Gtk.Image(); - this.btnP61.Image = w353; + global::Gtk.Image w354 = new global::Gtk.Image(); + this.btnP61.Image = w354; this.tbUI.Add(this.btnP61); - global::Gtk.Table.TableChild w354 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP61])); - w354.TopAttach = ((uint)(7)); - w354.BottomAttach = ((uint)(8)); - w354.LeftAttach = ((uint)(18)); - w354.RightAttach = ((uint)(19)); - w354.XOptions = ((global::Gtk.AttachOptions)(4)); - w354.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w355 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP61])); + w355.TopAttach = ((uint)(7)); + w355.BottomAttach = ((uint)(8)); + w355.LeftAttach = ((uint)(18)); + w355.RightAttach = ((uint)(19)); + w355.XOptions = ((global::Gtk.AttachOptions)(4)); + w355.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP62 = new global::Gtk.Button(); this.btnP62.WidthRequest = 50; @@ -4033,16 +4050,16 @@ namespace Mundus.Views.Windows this.btnP62.Name = "btnP62"; this.btnP62.UseUnderline = true; this.btnP62.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w355 = new global::Gtk.Image(); - this.btnP62.Image = w355; + global::Gtk.Image w356 = new global::Gtk.Image(); + this.btnP62.Image = w356; this.tbUI.Add(this.btnP62); - global::Gtk.Table.TableChild w356 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP62])); - w356.TopAttach = ((uint)(7)); - w356.BottomAttach = ((uint)(8)); - w356.LeftAttach = ((uint)(19)); - w356.RightAttach = ((uint)(20)); - w356.XOptions = ((global::Gtk.AttachOptions)(4)); - w356.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w357 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP62])); + w357.TopAttach = ((uint)(7)); + w357.BottomAttach = ((uint)(8)); + w357.LeftAttach = ((uint)(19)); + w357.RightAttach = ((uint)(20)); + w357.XOptions = ((global::Gtk.AttachOptions)(4)); + w357.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP63 = new global::Gtk.Button(); this.btnP63.WidthRequest = 50; @@ -4051,16 +4068,16 @@ namespace Mundus.Views.Windows this.btnP63.Name = "btnP63"; this.btnP63.UseUnderline = true; this.btnP63.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w357 = new global::Gtk.Image(); - this.btnP63.Image = w357; + global::Gtk.Image w358 = new global::Gtk.Image(); + this.btnP63.Image = w358; this.tbUI.Add(this.btnP63); - global::Gtk.Table.TableChild w358 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP63])); - w358.TopAttach = ((uint)(7)); - w358.BottomAttach = ((uint)(8)); - w358.LeftAttach = ((uint)(20)); - w358.RightAttach = ((uint)(21)); - w358.XOptions = ((global::Gtk.AttachOptions)(4)); - w358.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w359 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP63])); + w359.TopAttach = ((uint)(7)); + w359.BottomAttach = ((uint)(8)); + w359.LeftAttach = ((uint)(20)); + w359.RightAttach = ((uint)(21)); + w359.XOptions = ((global::Gtk.AttachOptions)(4)); + w359.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP64 = new global::Gtk.Button(); this.btnP64.WidthRequest = 50; @@ -4069,16 +4086,16 @@ namespace Mundus.Views.Windows this.btnP64.Name = "btnP64"; this.btnP64.UseUnderline = true; this.btnP64.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w359 = new global::Gtk.Image(); - this.btnP64.Image = w359; + global::Gtk.Image w360 = new global::Gtk.Image(); + this.btnP64.Image = w360; this.tbUI.Add(this.btnP64); - global::Gtk.Table.TableChild w360 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP64])); - w360.TopAttach = ((uint)(8)); - w360.BottomAttach = ((uint)(9)); - w360.LeftAttach = ((uint)(12)); - w360.RightAttach = ((uint)(13)); - w360.XOptions = ((global::Gtk.AttachOptions)(4)); - w360.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w361 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP64])); + w361.TopAttach = ((uint)(8)); + w361.BottomAttach = ((uint)(9)); + w361.LeftAttach = ((uint)(12)); + w361.RightAttach = ((uint)(13)); + w361.XOptions = ((global::Gtk.AttachOptions)(4)); + w361.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP65 = new global::Gtk.Button(); this.btnP65.WidthRequest = 50; @@ -4087,16 +4104,16 @@ namespace Mundus.Views.Windows this.btnP65.Name = "btnP65"; this.btnP65.UseUnderline = true; this.btnP65.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w361 = new global::Gtk.Image(); - this.btnP65.Image = w361; + global::Gtk.Image w362 = new global::Gtk.Image(); + this.btnP65.Image = w362; this.tbUI.Add(this.btnP65); - global::Gtk.Table.TableChild w362 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP65])); - w362.TopAttach = ((uint)(8)); - w362.BottomAttach = ((uint)(9)); - w362.LeftAttach = ((uint)(13)); - w362.RightAttach = ((uint)(14)); - w362.XOptions = ((global::Gtk.AttachOptions)(4)); - w362.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w363 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP65])); + w363.TopAttach = ((uint)(8)); + w363.BottomAttach = ((uint)(9)); + w363.LeftAttach = ((uint)(13)); + w363.RightAttach = ((uint)(14)); + w363.XOptions = ((global::Gtk.AttachOptions)(4)); + w363.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP66 = new global::Gtk.Button(); this.btnP66.WidthRequest = 50; @@ -4105,16 +4122,16 @@ namespace Mundus.Views.Windows this.btnP66.Name = "btnP66"; this.btnP66.UseUnderline = true; this.btnP66.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w363 = new global::Gtk.Image(); - this.btnP66.Image = w363; + global::Gtk.Image w364 = new global::Gtk.Image(); + this.btnP66.Image = w364; this.tbUI.Add(this.btnP66); - global::Gtk.Table.TableChild w364 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP66])); - w364.TopAttach = ((uint)(8)); - w364.BottomAttach = ((uint)(9)); - w364.LeftAttach = ((uint)(14)); - w364.RightAttach = ((uint)(15)); - w364.XOptions = ((global::Gtk.AttachOptions)(4)); - w364.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w365 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP66])); + w365.TopAttach = ((uint)(8)); + w365.BottomAttach = ((uint)(9)); + w365.LeftAttach = ((uint)(14)); + w365.RightAttach = ((uint)(15)); + w365.XOptions = ((global::Gtk.AttachOptions)(4)); + w365.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP67 = new global::Gtk.Button(); this.btnP67.WidthRequest = 50; @@ -4123,16 +4140,16 @@ namespace Mundus.Views.Windows this.btnP67.Name = "btnP67"; this.btnP67.UseUnderline = true; this.btnP67.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w365 = new global::Gtk.Image(); - this.btnP67.Image = w365; + global::Gtk.Image w366 = new global::Gtk.Image(); + this.btnP67.Image = w366; this.tbUI.Add(this.btnP67); - global::Gtk.Table.TableChild w366 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP67])); - w366.TopAttach = ((uint)(8)); - w366.BottomAttach = ((uint)(9)); - w366.LeftAttach = ((uint)(15)); - w366.RightAttach = ((uint)(16)); - w366.XOptions = ((global::Gtk.AttachOptions)(4)); - w366.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w367 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP67])); + w367.TopAttach = ((uint)(8)); + w367.BottomAttach = ((uint)(9)); + w367.LeftAttach = ((uint)(15)); + w367.RightAttach = ((uint)(16)); + w367.XOptions = ((global::Gtk.AttachOptions)(4)); + w367.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP68 = new global::Gtk.Button(); this.btnP68.WidthRequest = 50; @@ -4141,16 +4158,16 @@ namespace Mundus.Views.Windows this.btnP68.Name = "btnP68"; this.btnP68.UseUnderline = true; this.btnP68.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w367 = new global::Gtk.Image(); - this.btnP68.Image = w367; + global::Gtk.Image w368 = new global::Gtk.Image(); + this.btnP68.Image = w368; this.tbUI.Add(this.btnP68); - global::Gtk.Table.TableChild w368 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP68])); - w368.TopAttach = ((uint)(8)); - w368.BottomAttach = ((uint)(9)); - w368.LeftAttach = ((uint)(16)); - w368.RightAttach = ((uint)(17)); - w368.XOptions = ((global::Gtk.AttachOptions)(4)); - w368.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w369 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP68])); + w369.TopAttach = ((uint)(8)); + w369.BottomAttach = ((uint)(9)); + w369.LeftAttach = ((uint)(16)); + w369.RightAttach = ((uint)(17)); + w369.XOptions = ((global::Gtk.AttachOptions)(4)); + w369.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP69 = new global::Gtk.Button(); this.btnP69.WidthRequest = 50; @@ -4159,16 +4176,16 @@ namespace Mundus.Views.Windows this.btnP69.Name = "btnP69"; this.btnP69.UseUnderline = true; this.btnP69.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w369 = new global::Gtk.Image(); - this.btnP69.Image = w369; + global::Gtk.Image w370 = new global::Gtk.Image(); + this.btnP69.Image = w370; this.tbUI.Add(this.btnP69); - global::Gtk.Table.TableChild w370 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP69])); - w370.TopAttach = ((uint)(8)); - w370.BottomAttach = ((uint)(9)); - w370.LeftAttach = ((uint)(17)); - w370.RightAttach = ((uint)(18)); - w370.XOptions = ((global::Gtk.AttachOptions)(4)); - w370.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w371 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP69])); + w371.TopAttach = ((uint)(8)); + w371.BottomAttach = ((uint)(9)); + w371.LeftAttach = ((uint)(17)); + w371.RightAttach = ((uint)(18)); + w371.XOptions = ((global::Gtk.AttachOptions)(4)); + w371.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP7 = new global::Gtk.Button(); this.btnP7.WidthRequest = 50; @@ -4177,16 +4194,16 @@ namespace Mundus.Views.Windows this.btnP7.Name = "btnP7"; this.btnP7.UseUnderline = true; this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w371 = new global::Gtk.Image(); - this.btnP7.Image = w371; + global::Gtk.Image w372 = new global::Gtk.Image(); + this.btnP7.Image = w372; this.tbUI.Add(this.btnP7); - global::Gtk.Table.TableChild w372 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); - w372.TopAttach = ((uint)(1)); - w372.BottomAttach = ((uint)(2)); - w372.LeftAttach = ((uint)(18)); - w372.RightAttach = ((uint)(19)); - w372.XOptions = ((global::Gtk.AttachOptions)(4)); - w372.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w373 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); + w373.TopAttach = ((uint)(1)); + w373.BottomAttach = ((uint)(2)); + w373.LeftAttach = ((uint)(18)); + w373.RightAttach = ((uint)(19)); + w373.XOptions = ((global::Gtk.AttachOptions)(4)); + w373.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP70 = new global::Gtk.Button(); this.btnP70.WidthRequest = 50; @@ -4195,16 +4212,16 @@ namespace Mundus.Views.Windows this.btnP70.Name = "btnP70"; this.btnP70.UseUnderline = true; this.btnP70.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w373 = new global::Gtk.Image(); - this.btnP70.Image = w373; + global::Gtk.Image w374 = new global::Gtk.Image(); + this.btnP70.Image = w374; this.tbUI.Add(this.btnP70); - global::Gtk.Table.TableChild w374 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP70])); - w374.TopAttach = ((uint)(8)); - w374.BottomAttach = ((uint)(9)); - w374.LeftAttach = ((uint)(18)); - w374.RightAttach = ((uint)(19)); - w374.XOptions = ((global::Gtk.AttachOptions)(4)); - w374.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w375 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP70])); + w375.TopAttach = ((uint)(8)); + w375.BottomAttach = ((uint)(9)); + w375.LeftAttach = ((uint)(18)); + w375.RightAttach = ((uint)(19)); + w375.XOptions = ((global::Gtk.AttachOptions)(4)); + w375.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP71 = new global::Gtk.Button(); this.btnP71.WidthRequest = 50; @@ -4213,16 +4230,16 @@ namespace Mundus.Views.Windows this.btnP71.Name = "btnP71"; this.btnP71.UseUnderline = true; this.btnP71.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w375 = new global::Gtk.Image(); - this.btnP71.Image = w375; + global::Gtk.Image w376 = new global::Gtk.Image(); + this.btnP71.Image = w376; this.tbUI.Add(this.btnP71); - global::Gtk.Table.TableChild w376 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP71])); - w376.TopAttach = ((uint)(8)); - w376.BottomAttach = ((uint)(9)); - w376.LeftAttach = ((uint)(19)); - w376.RightAttach = ((uint)(20)); - w376.XOptions = ((global::Gtk.AttachOptions)(4)); - w376.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w377 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP71])); + w377.TopAttach = ((uint)(8)); + w377.BottomAttach = ((uint)(9)); + w377.LeftAttach = ((uint)(19)); + w377.RightAttach = ((uint)(20)); + w377.XOptions = ((global::Gtk.AttachOptions)(4)); + w377.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP72 = new global::Gtk.Button(); this.btnP72.WidthRequest = 50; @@ -4231,16 +4248,16 @@ namespace Mundus.Views.Windows this.btnP72.Name = "btnP72"; this.btnP72.UseUnderline = true; this.btnP72.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w377 = new global::Gtk.Image(); - this.btnP72.Image = w377; + global::Gtk.Image w378 = new global::Gtk.Image(); + this.btnP72.Image = w378; this.tbUI.Add(this.btnP72); - global::Gtk.Table.TableChild w378 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP72])); - w378.TopAttach = ((uint)(8)); - w378.BottomAttach = ((uint)(9)); - w378.LeftAttach = ((uint)(20)); - w378.RightAttach = ((uint)(21)); - w378.XOptions = ((global::Gtk.AttachOptions)(4)); - w378.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w379 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP72])); + w379.TopAttach = ((uint)(8)); + w379.BottomAttach = ((uint)(9)); + w379.LeftAttach = ((uint)(20)); + w379.RightAttach = ((uint)(21)); + w379.XOptions = ((global::Gtk.AttachOptions)(4)); + w379.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP73 = new global::Gtk.Button(); this.btnP73.WidthRequest = 50; @@ -4249,16 +4266,16 @@ namespace Mundus.Views.Windows this.btnP73.Name = "btnP73"; this.btnP73.UseUnderline = true; this.btnP73.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w379 = new global::Gtk.Image(); - this.btnP73.Image = w379; + global::Gtk.Image w380 = new global::Gtk.Image(); + this.btnP73.Image = w380; this.tbUI.Add(this.btnP73); - global::Gtk.Table.TableChild w380 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP73])); - w380.TopAttach = ((uint)(9)); - w380.BottomAttach = ((uint)(10)); - w380.LeftAttach = ((uint)(12)); - w380.RightAttach = ((uint)(13)); - w380.XOptions = ((global::Gtk.AttachOptions)(4)); - w380.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w381 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP73])); + w381.TopAttach = ((uint)(9)); + w381.BottomAttach = ((uint)(10)); + w381.LeftAttach = ((uint)(12)); + w381.RightAttach = ((uint)(13)); + w381.XOptions = ((global::Gtk.AttachOptions)(4)); + w381.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP74 = new global::Gtk.Button(); this.btnP74.WidthRequest = 50; @@ -4267,16 +4284,16 @@ namespace Mundus.Views.Windows this.btnP74.Name = "btnP74"; this.btnP74.UseUnderline = true; this.btnP74.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w381 = new global::Gtk.Image(); - this.btnP74.Image = w381; + global::Gtk.Image w382 = new global::Gtk.Image(); + this.btnP74.Image = w382; this.tbUI.Add(this.btnP74); - global::Gtk.Table.TableChild w382 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP74])); - w382.TopAttach = ((uint)(9)); - w382.BottomAttach = ((uint)(10)); - w382.LeftAttach = ((uint)(13)); - w382.RightAttach = ((uint)(14)); - w382.XOptions = ((global::Gtk.AttachOptions)(4)); - w382.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w383 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP74])); + w383.TopAttach = ((uint)(9)); + w383.BottomAttach = ((uint)(10)); + w383.LeftAttach = ((uint)(13)); + w383.RightAttach = ((uint)(14)); + w383.XOptions = ((global::Gtk.AttachOptions)(4)); + w383.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP75 = new global::Gtk.Button(); this.btnP75.WidthRequest = 50; @@ -4285,16 +4302,16 @@ namespace Mundus.Views.Windows this.btnP75.Name = "btnP75"; this.btnP75.UseUnderline = true; this.btnP75.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w383 = new global::Gtk.Image(); - this.btnP75.Image = w383; + global::Gtk.Image w384 = new global::Gtk.Image(); + this.btnP75.Image = w384; this.tbUI.Add(this.btnP75); - global::Gtk.Table.TableChild w384 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP75])); - w384.TopAttach = ((uint)(9)); - w384.BottomAttach = ((uint)(10)); - w384.LeftAttach = ((uint)(14)); - w384.RightAttach = ((uint)(15)); - w384.XOptions = ((global::Gtk.AttachOptions)(4)); - w384.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w385 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP75])); + w385.TopAttach = ((uint)(9)); + w385.BottomAttach = ((uint)(10)); + w385.LeftAttach = ((uint)(14)); + w385.RightAttach = ((uint)(15)); + w385.XOptions = ((global::Gtk.AttachOptions)(4)); + w385.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP76 = new global::Gtk.Button(); this.btnP76.WidthRequest = 50; @@ -4303,16 +4320,16 @@ namespace Mundus.Views.Windows this.btnP76.Name = "btnP76"; this.btnP76.UseUnderline = true; this.btnP76.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w385 = new global::Gtk.Image(); - this.btnP76.Image = w385; + global::Gtk.Image w386 = new global::Gtk.Image(); + this.btnP76.Image = w386; this.tbUI.Add(this.btnP76); - global::Gtk.Table.TableChild w386 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP76])); - w386.TopAttach = ((uint)(9)); - w386.BottomAttach = ((uint)(10)); - w386.LeftAttach = ((uint)(15)); - w386.RightAttach = ((uint)(16)); - w386.XOptions = ((global::Gtk.AttachOptions)(4)); - w386.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w387 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP76])); + w387.TopAttach = ((uint)(9)); + w387.BottomAttach = ((uint)(10)); + w387.LeftAttach = ((uint)(15)); + w387.RightAttach = ((uint)(16)); + w387.XOptions = ((global::Gtk.AttachOptions)(4)); + w387.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP77 = new global::Gtk.Button(); this.btnP77.WidthRequest = 50; @@ -4321,16 +4338,16 @@ namespace Mundus.Views.Windows this.btnP77.Name = "btnP77"; this.btnP77.UseUnderline = true; this.btnP77.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w387 = new global::Gtk.Image(); - this.btnP77.Image = w387; + global::Gtk.Image w388 = new global::Gtk.Image(); + this.btnP77.Image = w388; this.tbUI.Add(this.btnP77); - global::Gtk.Table.TableChild w388 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP77])); - w388.TopAttach = ((uint)(9)); - w388.BottomAttach = ((uint)(10)); - w388.LeftAttach = ((uint)(16)); - w388.RightAttach = ((uint)(17)); - w388.XOptions = ((global::Gtk.AttachOptions)(4)); - w388.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w389 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP77])); + w389.TopAttach = ((uint)(9)); + w389.BottomAttach = ((uint)(10)); + w389.LeftAttach = ((uint)(16)); + w389.RightAttach = ((uint)(17)); + w389.XOptions = ((global::Gtk.AttachOptions)(4)); + w389.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP78 = new global::Gtk.Button(); this.btnP78.WidthRequest = 50; @@ -4339,16 +4356,16 @@ namespace Mundus.Views.Windows this.btnP78.Name = "btnP78"; this.btnP78.UseUnderline = true; this.btnP78.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w389 = new global::Gtk.Image(); - this.btnP78.Image = w389; + global::Gtk.Image w390 = new global::Gtk.Image(); + this.btnP78.Image = w390; this.tbUI.Add(this.btnP78); - global::Gtk.Table.TableChild w390 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP78])); - w390.TopAttach = ((uint)(9)); - w390.BottomAttach = ((uint)(10)); - w390.LeftAttach = ((uint)(17)); - w390.RightAttach = ((uint)(18)); - w390.XOptions = ((global::Gtk.AttachOptions)(4)); - w390.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w391 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP78])); + w391.TopAttach = ((uint)(9)); + w391.BottomAttach = ((uint)(10)); + w391.LeftAttach = ((uint)(17)); + w391.RightAttach = ((uint)(18)); + w391.XOptions = ((global::Gtk.AttachOptions)(4)); + w391.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP79 = new global::Gtk.Button(); this.btnP79.WidthRequest = 50; @@ -4357,16 +4374,16 @@ namespace Mundus.Views.Windows this.btnP79.Name = "btnP79"; this.btnP79.UseUnderline = true; this.btnP79.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w391 = new global::Gtk.Image(); - this.btnP79.Image = w391; + global::Gtk.Image w392 = new global::Gtk.Image(); + this.btnP79.Image = w392; this.tbUI.Add(this.btnP79); - global::Gtk.Table.TableChild w392 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP79])); - w392.TopAttach = ((uint)(9)); - w392.BottomAttach = ((uint)(10)); - w392.LeftAttach = ((uint)(18)); - w392.RightAttach = ((uint)(19)); - w392.XOptions = ((global::Gtk.AttachOptions)(4)); - w392.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w393 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP79])); + w393.TopAttach = ((uint)(9)); + w393.BottomAttach = ((uint)(10)); + w393.LeftAttach = ((uint)(18)); + w393.RightAttach = ((uint)(19)); + w393.XOptions = ((global::Gtk.AttachOptions)(4)); + w393.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP8 = new global::Gtk.Button(); this.btnP8.WidthRequest = 50; @@ -4375,16 +4392,16 @@ namespace Mundus.Views.Windows this.btnP8.Name = "btnP8"; this.btnP8.UseUnderline = true; this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w393 = new global::Gtk.Image(); - this.btnP8.Image = w393; + global::Gtk.Image w394 = new global::Gtk.Image(); + this.btnP8.Image = w394; this.tbUI.Add(this.btnP8); - global::Gtk.Table.TableChild w394 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); - w394.TopAttach = ((uint)(1)); - w394.BottomAttach = ((uint)(2)); - w394.LeftAttach = ((uint)(19)); - w394.RightAttach = ((uint)(20)); - w394.XOptions = ((global::Gtk.AttachOptions)(4)); - w394.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w395 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); + w395.TopAttach = ((uint)(1)); + w395.BottomAttach = ((uint)(2)); + w395.LeftAttach = ((uint)(19)); + w395.RightAttach = ((uint)(20)); + w395.XOptions = ((global::Gtk.AttachOptions)(4)); + w395.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP80 = new global::Gtk.Button(); this.btnP80.WidthRequest = 50; @@ -4393,16 +4410,16 @@ namespace Mundus.Views.Windows this.btnP80.Name = "btnP80"; this.btnP80.UseUnderline = true; this.btnP80.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w395 = new global::Gtk.Image(); - this.btnP80.Image = w395; + global::Gtk.Image w396 = new global::Gtk.Image(); + this.btnP80.Image = w396; this.tbUI.Add(this.btnP80); - global::Gtk.Table.TableChild w396 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP80])); - w396.TopAttach = ((uint)(9)); - w396.BottomAttach = ((uint)(10)); - w396.LeftAttach = ((uint)(19)); - w396.RightAttach = ((uint)(20)); - w396.XOptions = ((global::Gtk.AttachOptions)(4)); - w396.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w397 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP80])); + w397.TopAttach = ((uint)(9)); + w397.BottomAttach = ((uint)(10)); + w397.LeftAttach = ((uint)(19)); + w397.RightAttach = ((uint)(20)); + w397.XOptions = ((global::Gtk.AttachOptions)(4)); + w397.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP81 = new global::Gtk.Button(); this.btnP81.WidthRequest = 50; @@ -4411,16 +4428,16 @@ namespace Mundus.Views.Windows this.btnP81.Name = "btnP81"; this.btnP81.UseUnderline = true; this.btnP81.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w397 = new global::Gtk.Image(); - this.btnP81.Image = w397; + global::Gtk.Image w398 = new global::Gtk.Image(); + this.btnP81.Image = w398; this.tbUI.Add(this.btnP81); - global::Gtk.Table.TableChild w398 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP81])); - w398.TopAttach = ((uint)(9)); - w398.BottomAttach = ((uint)(10)); - w398.LeftAttach = ((uint)(20)); - w398.RightAttach = ((uint)(21)); - w398.XOptions = ((global::Gtk.AttachOptions)(4)); - w398.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w399 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP81])); + w399.TopAttach = ((uint)(9)); + w399.BottomAttach = ((uint)(10)); + w399.LeftAttach = ((uint)(20)); + w399.RightAttach = ((uint)(21)); + w399.XOptions = ((global::Gtk.AttachOptions)(4)); + w399.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP9 = new global::Gtk.Button(); this.btnP9.WidthRequest = 50; @@ -4429,16 +4446,16 @@ namespace Mundus.Views.Windows this.btnP9.Name = "btnP9"; this.btnP9.UseUnderline = true; this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w399 = new global::Gtk.Image(); - this.btnP9.Image = w399; + global::Gtk.Image w400 = new global::Gtk.Image(); + this.btnP9.Image = w400; this.tbUI.Add(this.btnP9); - global::Gtk.Table.TableChild w400 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); - w400.TopAttach = ((uint)(1)); - w400.BottomAttach = ((uint)(2)); - w400.LeftAttach = ((uint)(20)); - w400.RightAttach = ((uint)(21)); - w400.XOptions = ((global::Gtk.AttachOptions)(4)); - w400.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w401 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); + w401.TopAttach = ((uint)(1)); + w401.BottomAttach = ((uint)(2)); + w401.LeftAttach = ((uint)(20)); + w401.RightAttach = ((uint)(21)); + w401.XOptions = ((global::Gtk.AttachOptions)(4)); + w401.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnPause = new global::Gtk.Button(); this.btnPause.WidthRequest = 50; @@ -4448,2366 +4465,2366 @@ namespace Mundus.Views.Windows this.btnPause.UseUnderline = true; this.btnPause.Label = "Pause"; this.tbUI.Add(this.btnPause); - global::Gtk.Table.TableChild w401 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); - w401.TopAttach = ((uint)(15)); - w401.BottomAttach = ((uint)(16)); - w401.LeftAttach = ((uint)(21)); - w401.RightAttach = ((uint)(22)); - w401.XOptions = ((global::Gtk.AttachOptions)(4)); - w401.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w402 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); + w402.TopAttach = ((uint)(15)); + w402.BottomAttach = ((uint)(16)); + w402.LeftAttach = ((uint)(21)); + w402.RightAttach = ((uint)(22)); + w402.XOptions = ((global::Gtk.AttachOptions)(4)); + w402.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG1 = new global::Gtk.Image(); this.imgG1.WidthRequest = 50; this.imgG1.HeightRequest = 50; this.imgG1.Name = "imgG1"; this.tbUI.Add(this.imgG1); - global::Gtk.Table.TableChild w402 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); - w402.TopAttach = ((uint)(2)); - w402.BottomAttach = ((uint)(3)); - w402.LeftAttach = ((uint)(1)); - w402.RightAttach = ((uint)(2)); - w402.XOptions = ((global::Gtk.AttachOptions)(4)); - w402.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w403 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); + w403.TopAttach = ((uint)(2)); + w403.BottomAttach = ((uint)(3)); + w403.LeftAttach = ((uint)(1)); + w403.RightAttach = ((uint)(2)); + w403.XOptions = ((global::Gtk.AttachOptions)(4)); + w403.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG10 = new global::Gtk.Image(); this.imgG10.WidthRequest = 50; this.imgG10.HeightRequest = 50; this.imgG10.Name = "imgG10"; this.tbUI.Add(this.imgG10); - global::Gtk.Table.TableChild w403 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); - w403.TopAttach = ((uint)(3)); - w403.BottomAttach = ((uint)(4)); - w403.LeftAttach = ((uint)(1)); - w403.RightAttach = ((uint)(2)); - w403.XOptions = ((global::Gtk.AttachOptions)(4)); - w403.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w404 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); + w404.TopAttach = ((uint)(3)); + w404.BottomAttach = ((uint)(4)); + w404.LeftAttach = ((uint)(1)); + w404.RightAttach = ((uint)(2)); + w404.XOptions = ((global::Gtk.AttachOptions)(4)); + w404.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG11 = new global::Gtk.Image(); this.imgG11.WidthRequest = 50; this.imgG11.HeightRequest = 50; this.imgG11.Name = "imgG11"; this.tbUI.Add(this.imgG11); - global::Gtk.Table.TableChild w404 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); - w404.TopAttach = ((uint)(3)); - w404.BottomAttach = ((uint)(4)); - w404.LeftAttach = ((uint)(2)); - w404.RightAttach = ((uint)(3)); - w404.XOptions = ((global::Gtk.AttachOptions)(4)); - w404.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w405 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); + w405.TopAttach = ((uint)(3)); + w405.BottomAttach = ((uint)(4)); + w405.LeftAttach = ((uint)(2)); + w405.RightAttach = ((uint)(3)); + w405.XOptions = ((global::Gtk.AttachOptions)(4)); + w405.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG12 = new global::Gtk.Image(); this.imgG12.WidthRequest = 50; this.imgG12.HeightRequest = 50; this.imgG12.Name = "imgG12"; this.tbUI.Add(this.imgG12); - global::Gtk.Table.TableChild w405 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); - w405.TopAttach = ((uint)(3)); - w405.BottomAttach = ((uint)(4)); - w405.LeftAttach = ((uint)(3)); - w405.RightAttach = ((uint)(4)); - w405.XOptions = ((global::Gtk.AttachOptions)(4)); - w405.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w406 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); + w406.TopAttach = ((uint)(3)); + w406.BottomAttach = ((uint)(4)); + w406.LeftAttach = ((uint)(3)); + w406.RightAttach = ((uint)(4)); + w406.XOptions = ((global::Gtk.AttachOptions)(4)); + w406.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG13 = new global::Gtk.Image(); this.imgG13.WidthRequest = 50; this.imgG13.HeightRequest = 50; this.imgG13.Name = "imgG13"; this.tbUI.Add(this.imgG13); - global::Gtk.Table.TableChild w406 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); - w406.TopAttach = ((uint)(3)); - w406.BottomAttach = ((uint)(4)); - w406.LeftAttach = ((uint)(4)); - w406.RightAttach = ((uint)(5)); - w406.XOptions = ((global::Gtk.AttachOptions)(4)); - w406.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w407 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); + w407.TopAttach = ((uint)(3)); + w407.BottomAttach = ((uint)(4)); + w407.LeftAttach = ((uint)(4)); + w407.RightAttach = ((uint)(5)); + w407.XOptions = ((global::Gtk.AttachOptions)(4)); + w407.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG14 = new global::Gtk.Image(); this.imgG14.WidthRequest = 50; this.imgG14.HeightRequest = 50; this.imgG14.Name = "imgG14"; this.tbUI.Add(this.imgG14); - global::Gtk.Table.TableChild w407 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); - w407.TopAttach = ((uint)(3)); - w407.BottomAttach = ((uint)(4)); - w407.LeftAttach = ((uint)(5)); - w407.RightAttach = ((uint)(6)); - w407.XOptions = ((global::Gtk.AttachOptions)(4)); - w407.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w408 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); + w408.TopAttach = ((uint)(3)); + w408.BottomAttach = ((uint)(4)); + w408.LeftAttach = ((uint)(5)); + w408.RightAttach = ((uint)(6)); + w408.XOptions = ((global::Gtk.AttachOptions)(4)); + w408.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG15 = new global::Gtk.Image(); this.imgG15.WidthRequest = 50; this.imgG15.HeightRequest = 50; this.imgG15.Name = "imgG15"; this.tbUI.Add(this.imgG15); - global::Gtk.Table.TableChild w408 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); - w408.TopAttach = ((uint)(3)); - w408.BottomAttach = ((uint)(4)); - w408.LeftAttach = ((uint)(6)); - w408.RightAttach = ((uint)(7)); - w408.XOptions = ((global::Gtk.AttachOptions)(4)); - w408.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w409 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + w409.TopAttach = ((uint)(3)); + w409.BottomAttach = ((uint)(4)); + w409.LeftAttach = ((uint)(6)); + w409.RightAttach = ((uint)(7)); + w409.XOptions = ((global::Gtk.AttachOptions)(4)); + w409.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG16 = new global::Gtk.Image(); this.imgG16.WidthRequest = 50; this.imgG16.HeightRequest = 50; this.imgG16.Name = "imgG16"; this.tbUI.Add(this.imgG16); - global::Gtk.Table.TableChild w409 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); - w409.TopAttach = ((uint)(3)); - w409.BottomAttach = ((uint)(4)); - w409.LeftAttach = ((uint)(7)); - w409.RightAttach = ((uint)(8)); - w409.XOptions = ((global::Gtk.AttachOptions)(4)); - w409.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w410 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); + w410.TopAttach = ((uint)(3)); + w410.BottomAttach = ((uint)(4)); + w410.LeftAttach = ((uint)(7)); + w410.RightAttach = ((uint)(8)); + w410.XOptions = ((global::Gtk.AttachOptions)(4)); + w410.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG17 = new global::Gtk.Image(); this.imgG17.WidthRequest = 50; this.imgG17.HeightRequest = 50; this.imgG17.Name = "imgG17"; this.tbUI.Add(this.imgG17); - global::Gtk.Table.TableChild w410 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); - w410.TopAttach = ((uint)(3)); - w410.BottomAttach = ((uint)(4)); - w410.LeftAttach = ((uint)(8)); - w410.RightAttach = ((uint)(9)); - w410.XOptions = ((global::Gtk.AttachOptions)(4)); - w410.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w411 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); + w411.TopAttach = ((uint)(3)); + w411.BottomAttach = ((uint)(4)); + w411.LeftAttach = ((uint)(8)); + w411.RightAttach = ((uint)(9)); + w411.XOptions = ((global::Gtk.AttachOptions)(4)); + w411.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG18 = new global::Gtk.Image(); this.imgG18.WidthRequest = 50; this.imgG18.HeightRequest = 50; this.imgG18.Name = "imgG18"; this.tbUI.Add(this.imgG18); - global::Gtk.Table.TableChild w411 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); - w411.TopAttach = ((uint)(3)); - w411.BottomAttach = ((uint)(4)); - w411.LeftAttach = ((uint)(9)); - w411.RightAttach = ((uint)(10)); - w411.XOptions = ((global::Gtk.AttachOptions)(4)); - w411.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w412 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); + w412.TopAttach = ((uint)(3)); + w412.BottomAttach = ((uint)(4)); + w412.LeftAttach = ((uint)(9)); + w412.RightAttach = ((uint)(10)); + w412.XOptions = ((global::Gtk.AttachOptions)(4)); + w412.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG19 = new global::Gtk.Image(); this.imgG19.WidthRequest = 50; this.imgG19.HeightRequest = 50; this.imgG19.Name = "imgG19"; this.tbUI.Add(this.imgG19); - global::Gtk.Table.TableChild w412 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); - w412.TopAttach = ((uint)(4)); - w412.BottomAttach = ((uint)(5)); - w412.LeftAttach = ((uint)(1)); - w412.RightAttach = ((uint)(2)); - w412.XOptions = ((global::Gtk.AttachOptions)(4)); - w412.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w413 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + w413.TopAttach = ((uint)(4)); + w413.BottomAttach = ((uint)(5)); + w413.LeftAttach = ((uint)(1)); + w413.RightAttach = ((uint)(2)); + w413.XOptions = ((global::Gtk.AttachOptions)(4)); + w413.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG2 = new global::Gtk.Image(); this.imgG2.WidthRequest = 50; this.imgG2.HeightRequest = 50; this.imgG2.Name = "imgG2"; this.tbUI.Add(this.imgG2); - global::Gtk.Table.TableChild w413 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); - w413.TopAttach = ((uint)(2)); - w413.BottomAttach = ((uint)(3)); - w413.LeftAttach = ((uint)(2)); - w413.RightAttach = ((uint)(3)); - w413.XOptions = ((global::Gtk.AttachOptions)(4)); - w413.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w414 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); + w414.TopAttach = ((uint)(2)); + w414.BottomAttach = ((uint)(3)); + w414.LeftAttach = ((uint)(2)); + w414.RightAttach = ((uint)(3)); + w414.XOptions = ((global::Gtk.AttachOptions)(4)); + w414.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG20 = new global::Gtk.Image(); this.imgG20.WidthRequest = 50; this.imgG20.HeightRequest = 50; this.imgG20.Name = "imgG20"; this.tbUI.Add(this.imgG20); - global::Gtk.Table.TableChild w414 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); - w414.TopAttach = ((uint)(4)); - w414.BottomAttach = ((uint)(5)); - w414.LeftAttach = ((uint)(2)); - w414.RightAttach = ((uint)(3)); - w414.XOptions = ((global::Gtk.AttachOptions)(4)); - w414.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w415 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); + w415.TopAttach = ((uint)(4)); + w415.BottomAttach = ((uint)(5)); + w415.LeftAttach = ((uint)(2)); + w415.RightAttach = ((uint)(3)); + w415.XOptions = ((global::Gtk.AttachOptions)(4)); + w415.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG21 = new global::Gtk.Image(); this.imgG21.WidthRequest = 50; this.imgG21.HeightRequest = 50; this.imgG21.Name = "imgG21"; this.tbUI.Add(this.imgG21); - global::Gtk.Table.TableChild w415 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); - w415.TopAttach = ((uint)(4)); - w415.BottomAttach = ((uint)(5)); - w415.LeftAttach = ((uint)(3)); - w415.RightAttach = ((uint)(4)); - w415.XOptions = ((global::Gtk.AttachOptions)(4)); - w415.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w416 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); + w416.TopAttach = ((uint)(4)); + w416.BottomAttach = ((uint)(5)); + w416.LeftAttach = ((uint)(3)); + w416.RightAttach = ((uint)(4)); + w416.XOptions = ((global::Gtk.AttachOptions)(4)); + w416.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG22 = new global::Gtk.Image(); this.imgG22.WidthRequest = 50; this.imgG22.HeightRequest = 50; this.imgG22.Name = "imgG22"; this.tbUI.Add(this.imgG22); - global::Gtk.Table.TableChild w416 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); - w416.TopAttach = ((uint)(4)); - w416.BottomAttach = ((uint)(5)); - w416.LeftAttach = ((uint)(4)); - w416.RightAttach = ((uint)(5)); - w416.XOptions = ((global::Gtk.AttachOptions)(4)); - w416.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w417 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); + w417.TopAttach = ((uint)(4)); + w417.BottomAttach = ((uint)(5)); + w417.LeftAttach = ((uint)(4)); + w417.RightAttach = ((uint)(5)); + w417.XOptions = ((global::Gtk.AttachOptions)(4)); + w417.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG23 = new global::Gtk.Image(); this.imgG23.WidthRequest = 50; this.imgG23.HeightRequest = 50; this.imgG23.Name = "imgG23"; this.tbUI.Add(this.imgG23); - global::Gtk.Table.TableChild w417 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); - w417.TopAttach = ((uint)(4)); - w417.BottomAttach = ((uint)(5)); - w417.LeftAttach = ((uint)(5)); - w417.RightAttach = ((uint)(6)); - w417.XOptions = ((global::Gtk.AttachOptions)(4)); - w417.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w418 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); + w418.TopAttach = ((uint)(4)); + w418.BottomAttach = ((uint)(5)); + w418.LeftAttach = ((uint)(5)); + w418.RightAttach = ((uint)(6)); + w418.XOptions = ((global::Gtk.AttachOptions)(4)); + w418.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG24 = new global::Gtk.Image(); this.imgG24.WidthRequest = 50; this.imgG24.HeightRequest = 50; this.imgG24.Name = "imgG24"; this.tbUI.Add(this.imgG24); - global::Gtk.Table.TableChild w418 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); - w418.TopAttach = ((uint)(4)); - w418.BottomAttach = ((uint)(5)); - w418.LeftAttach = ((uint)(6)); - w418.RightAttach = ((uint)(7)); - w418.XOptions = ((global::Gtk.AttachOptions)(4)); - w418.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w419 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); + w419.TopAttach = ((uint)(4)); + w419.BottomAttach = ((uint)(5)); + w419.LeftAttach = ((uint)(6)); + w419.RightAttach = ((uint)(7)); + w419.XOptions = ((global::Gtk.AttachOptions)(4)); + w419.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG25 = new global::Gtk.Image(); this.imgG25.WidthRequest = 50; this.imgG25.HeightRequest = 50; this.imgG25.Name = "imgG25"; this.tbUI.Add(this.imgG25); - global::Gtk.Table.TableChild w419 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); - w419.TopAttach = ((uint)(4)); - w419.BottomAttach = ((uint)(5)); - w419.LeftAttach = ((uint)(7)); - w419.RightAttach = ((uint)(8)); - w419.XOptions = ((global::Gtk.AttachOptions)(4)); - w419.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w420 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + w420.TopAttach = ((uint)(4)); + w420.BottomAttach = ((uint)(5)); + w420.LeftAttach = ((uint)(7)); + w420.RightAttach = ((uint)(8)); + w420.XOptions = ((global::Gtk.AttachOptions)(4)); + w420.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG26 = new global::Gtk.Image(); this.imgG26.WidthRequest = 50; this.imgG26.HeightRequest = 50; this.imgG26.Name = "imgG26"; this.tbUI.Add(this.imgG26); - global::Gtk.Table.TableChild w420 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG26])); - w420.TopAttach = ((uint)(4)); - w420.BottomAttach = ((uint)(5)); - w420.LeftAttach = ((uint)(8)); - w420.RightAttach = ((uint)(9)); - w420.XOptions = ((global::Gtk.AttachOptions)(4)); - w420.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w421 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG26])); + w421.TopAttach = ((uint)(4)); + w421.BottomAttach = ((uint)(5)); + w421.LeftAttach = ((uint)(8)); + w421.RightAttach = ((uint)(9)); + w421.XOptions = ((global::Gtk.AttachOptions)(4)); + w421.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG27 = new global::Gtk.Image(); this.imgG27.WidthRequest = 50; this.imgG27.HeightRequest = 50; this.imgG27.Name = "imgG27"; this.tbUI.Add(this.imgG27); - global::Gtk.Table.TableChild w421 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG27])); - w421.TopAttach = ((uint)(4)); - w421.BottomAttach = ((uint)(5)); - w421.LeftAttach = ((uint)(9)); - w421.RightAttach = ((uint)(10)); - w421.XOptions = ((global::Gtk.AttachOptions)(4)); - w421.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w422 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG27])); + w422.TopAttach = ((uint)(4)); + w422.BottomAttach = ((uint)(5)); + w422.LeftAttach = ((uint)(9)); + w422.RightAttach = ((uint)(10)); + w422.XOptions = ((global::Gtk.AttachOptions)(4)); + w422.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG28 = new global::Gtk.Image(); this.imgG28.WidthRequest = 50; this.imgG28.HeightRequest = 50; this.imgG28.Name = "imgG28"; this.tbUI.Add(this.imgG28); - global::Gtk.Table.TableChild w422 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG28])); - w422.TopAttach = ((uint)(5)); - w422.BottomAttach = ((uint)(6)); - w422.LeftAttach = ((uint)(1)); - w422.RightAttach = ((uint)(2)); - w422.XOptions = ((global::Gtk.AttachOptions)(4)); - w422.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w423 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG28])); + w423.TopAttach = ((uint)(5)); + w423.BottomAttach = ((uint)(6)); + w423.LeftAttach = ((uint)(1)); + w423.RightAttach = ((uint)(2)); + w423.XOptions = ((global::Gtk.AttachOptions)(4)); + w423.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG29 = new global::Gtk.Image(); this.imgG29.WidthRequest = 50; this.imgG29.HeightRequest = 50; this.imgG29.Name = "imgG29"; this.tbUI.Add(this.imgG29); - global::Gtk.Table.TableChild w423 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG29])); - w423.TopAttach = ((uint)(5)); - w423.BottomAttach = ((uint)(6)); - w423.LeftAttach = ((uint)(2)); - w423.RightAttach = ((uint)(3)); - w423.XOptions = ((global::Gtk.AttachOptions)(4)); - w423.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w424 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG29])); + w424.TopAttach = ((uint)(5)); + w424.BottomAttach = ((uint)(6)); + w424.LeftAttach = ((uint)(2)); + w424.RightAttach = ((uint)(3)); + w424.XOptions = ((global::Gtk.AttachOptions)(4)); + w424.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG3 = new global::Gtk.Image(); this.imgG3.WidthRequest = 50; this.imgG3.HeightRequest = 50; this.imgG3.Name = "imgG3"; this.tbUI.Add(this.imgG3); - global::Gtk.Table.TableChild w424 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); - w424.TopAttach = ((uint)(2)); - w424.BottomAttach = ((uint)(3)); - w424.LeftAttach = ((uint)(3)); - w424.RightAttach = ((uint)(4)); - w424.XOptions = ((global::Gtk.AttachOptions)(4)); - w424.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w425 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); + w425.TopAttach = ((uint)(2)); + w425.BottomAttach = ((uint)(3)); + w425.LeftAttach = ((uint)(3)); + w425.RightAttach = ((uint)(4)); + w425.XOptions = ((global::Gtk.AttachOptions)(4)); + w425.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG30 = new global::Gtk.Image(); this.imgG30.WidthRequest = 50; this.imgG30.HeightRequest = 50; this.imgG30.Name = "imgG30"; this.tbUI.Add(this.imgG30); - global::Gtk.Table.TableChild w425 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG30])); - w425.TopAttach = ((uint)(5)); - w425.BottomAttach = ((uint)(6)); - w425.LeftAttach = ((uint)(3)); - w425.RightAttach = ((uint)(4)); - w425.XOptions = ((global::Gtk.AttachOptions)(4)); - w425.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w426 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG30])); + w426.TopAttach = ((uint)(5)); + w426.BottomAttach = ((uint)(6)); + w426.LeftAttach = ((uint)(3)); + w426.RightAttach = ((uint)(4)); + w426.XOptions = ((global::Gtk.AttachOptions)(4)); + w426.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG31 = new global::Gtk.Image(); this.imgG31.WidthRequest = 50; this.imgG31.HeightRequest = 50; this.imgG31.Name = "imgG31"; this.tbUI.Add(this.imgG31); - global::Gtk.Table.TableChild w426 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG31])); - w426.TopAttach = ((uint)(5)); - w426.BottomAttach = ((uint)(6)); - w426.LeftAttach = ((uint)(4)); - w426.RightAttach = ((uint)(5)); - w426.XOptions = ((global::Gtk.AttachOptions)(4)); - w426.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w427 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG31])); + w427.TopAttach = ((uint)(5)); + w427.BottomAttach = ((uint)(6)); + w427.LeftAttach = ((uint)(4)); + w427.RightAttach = ((uint)(5)); + w427.XOptions = ((global::Gtk.AttachOptions)(4)); + w427.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG32 = new global::Gtk.Image(); this.imgG32.WidthRequest = 50; this.imgG32.HeightRequest = 50; this.imgG32.Name = "imgG32"; this.tbUI.Add(this.imgG32); - global::Gtk.Table.TableChild w427 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG32])); - w427.TopAttach = ((uint)(5)); - w427.BottomAttach = ((uint)(6)); - w427.LeftAttach = ((uint)(5)); - w427.RightAttach = ((uint)(6)); - w427.XOptions = ((global::Gtk.AttachOptions)(4)); - w427.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w428 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG32])); + w428.TopAttach = ((uint)(5)); + w428.BottomAttach = ((uint)(6)); + w428.LeftAttach = ((uint)(5)); + w428.RightAttach = ((uint)(6)); + w428.XOptions = ((global::Gtk.AttachOptions)(4)); + w428.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG33 = new global::Gtk.Image(); this.imgG33.WidthRequest = 50; this.imgG33.HeightRequest = 50; this.imgG33.Name = "imgG33"; this.tbUI.Add(this.imgG33); - global::Gtk.Table.TableChild w428 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG33])); - w428.TopAttach = ((uint)(5)); - w428.BottomAttach = ((uint)(6)); - w428.LeftAttach = ((uint)(6)); - w428.RightAttach = ((uint)(7)); - w428.XOptions = ((global::Gtk.AttachOptions)(4)); - w428.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w429 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG33])); + w429.TopAttach = ((uint)(5)); + w429.BottomAttach = ((uint)(6)); + w429.LeftAttach = ((uint)(6)); + w429.RightAttach = ((uint)(7)); + w429.XOptions = ((global::Gtk.AttachOptions)(4)); + w429.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG34 = new global::Gtk.Image(); this.imgG34.WidthRequest = 50; this.imgG34.HeightRequest = 50; this.imgG34.Name = "imgG34"; this.tbUI.Add(this.imgG34); - global::Gtk.Table.TableChild w429 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG34])); - w429.TopAttach = ((uint)(5)); - w429.BottomAttach = ((uint)(6)); - w429.LeftAttach = ((uint)(7)); - w429.RightAttach = ((uint)(8)); - w429.XOptions = ((global::Gtk.AttachOptions)(4)); - w429.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w430 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG34])); + w430.TopAttach = ((uint)(5)); + w430.BottomAttach = ((uint)(6)); + w430.LeftAttach = ((uint)(7)); + w430.RightAttach = ((uint)(8)); + w430.XOptions = ((global::Gtk.AttachOptions)(4)); + w430.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG35 = new global::Gtk.Image(); this.imgG35.WidthRequest = 50; this.imgG35.HeightRequest = 50; this.imgG35.Name = "imgG35"; this.tbUI.Add(this.imgG35); - global::Gtk.Table.TableChild w430 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG35])); - w430.TopAttach = ((uint)(5)); - w430.BottomAttach = ((uint)(6)); - w430.LeftAttach = ((uint)(8)); - w430.RightAttach = ((uint)(9)); - w430.XOptions = ((global::Gtk.AttachOptions)(4)); - w430.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w431 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG35])); + w431.TopAttach = ((uint)(5)); + w431.BottomAttach = ((uint)(6)); + w431.LeftAttach = ((uint)(8)); + w431.RightAttach = ((uint)(9)); + w431.XOptions = ((global::Gtk.AttachOptions)(4)); + w431.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG36 = new global::Gtk.Image(); this.imgG36.WidthRequest = 50; this.imgG36.HeightRequest = 50; this.imgG36.Name = "imgG36"; this.tbUI.Add(this.imgG36); - global::Gtk.Table.TableChild w431 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG36])); - w431.TopAttach = ((uint)(5)); - w431.BottomAttach = ((uint)(6)); - w431.LeftAttach = ((uint)(9)); - w431.RightAttach = ((uint)(10)); - w431.XOptions = ((global::Gtk.AttachOptions)(4)); - w431.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w432 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG36])); + w432.TopAttach = ((uint)(5)); + w432.BottomAttach = ((uint)(6)); + w432.LeftAttach = ((uint)(9)); + w432.RightAttach = ((uint)(10)); + w432.XOptions = ((global::Gtk.AttachOptions)(4)); + w432.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG37 = new global::Gtk.Image(); this.imgG37.WidthRequest = 50; this.imgG37.HeightRequest = 50; this.imgG37.Name = "imgG37"; this.tbUI.Add(this.imgG37); - global::Gtk.Table.TableChild w432 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG37])); - w432.TopAttach = ((uint)(6)); - w432.BottomAttach = ((uint)(7)); - w432.LeftAttach = ((uint)(1)); - w432.RightAttach = ((uint)(2)); - w432.XOptions = ((global::Gtk.AttachOptions)(4)); - w432.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w433 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG37])); + w433.TopAttach = ((uint)(6)); + w433.BottomAttach = ((uint)(7)); + w433.LeftAttach = ((uint)(1)); + w433.RightAttach = ((uint)(2)); + w433.XOptions = ((global::Gtk.AttachOptions)(4)); + w433.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG38 = new global::Gtk.Image(); this.imgG38.WidthRequest = 50; this.imgG38.HeightRequest = 50; this.imgG38.Name = "imgG38"; this.tbUI.Add(this.imgG38); - global::Gtk.Table.TableChild w433 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG38])); - w433.TopAttach = ((uint)(6)); - w433.BottomAttach = ((uint)(7)); - w433.LeftAttach = ((uint)(2)); - w433.RightAttach = ((uint)(3)); - w433.XOptions = ((global::Gtk.AttachOptions)(4)); - w433.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w434 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG38])); + w434.TopAttach = ((uint)(6)); + w434.BottomAttach = ((uint)(7)); + w434.LeftAttach = ((uint)(2)); + w434.RightAttach = ((uint)(3)); + w434.XOptions = ((global::Gtk.AttachOptions)(4)); + w434.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG39 = new global::Gtk.Image(); this.imgG39.WidthRequest = 50; this.imgG39.HeightRequest = 50; this.imgG39.Name = "imgG39"; this.tbUI.Add(this.imgG39); - global::Gtk.Table.TableChild w434 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG39])); - w434.TopAttach = ((uint)(6)); - w434.BottomAttach = ((uint)(7)); - w434.LeftAttach = ((uint)(3)); - w434.RightAttach = ((uint)(4)); - w434.XOptions = ((global::Gtk.AttachOptions)(4)); - w434.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w435 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG39])); + w435.TopAttach = ((uint)(6)); + w435.BottomAttach = ((uint)(7)); + w435.LeftAttach = ((uint)(3)); + w435.RightAttach = ((uint)(4)); + w435.XOptions = ((global::Gtk.AttachOptions)(4)); + w435.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG4 = new global::Gtk.Image(); this.imgG4.WidthRequest = 50; this.imgG4.HeightRequest = 50; this.imgG4.Name = "imgG4"; this.tbUI.Add(this.imgG4); - global::Gtk.Table.TableChild w435 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); - w435.TopAttach = ((uint)(2)); - w435.BottomAttach = ((uint)(3)); - w435.LeftAttach = ((uint)(4)); - w435.RightAttach = ((uint)(5)); - w435.XOptions = ((global::Gtk.AttachOptions)(4)); - w435.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w436 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); + w436.TopAttach = ((uint)(2)); + w436.BottomAttach = ((uint)(3)); + w436.LeftAttach = ((uint)(4)); + w436.RightAttach = ((uint)(5)); + w436.XOptions = ((global::Gtk.AttachOptions)(4)); + w436.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG40 = new global::Gtk.Image(); this.imgG40.WidthRequest = 50; this.imgG40.HeightRequest = 50; this.imgG40.Name = "imgG40"; this.tbUI.Add(this.imgG40); - global::Gtk.Table.TableChild w436 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG40])); - w436.TopAttach = ((uint)(6)); - w436.BottomAttach = ((uint)(7)); - w436.LeftAttach = ((uint)(4)); - w436.RightAttach = ((uint)(5)); - w436.XOptions = ((global::Gtk.AttachOptions)(4)); - w436.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w437 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG40])); + w437.TopAttach = ((uint)(6)); + w437.BottomAttach = ((uint)(7)); + w437.LeftAttach = ((uint)(4)); + w437.RightAttach = ((uint)(5)); + w437.XOptions = ((global::Gtk.AttachOptions)(4)); + w437.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG41 = new global::Gtk.Image(); this.imgG41.WidthRequest = 50; this.imgG41.HeightRequest = 50; this.imgG41.Name = "imgG41"; this.tbUI.Add(this.imgG41); - global::Gtk.Table.TableChild w437 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG41])); - w437.TopAttach = ((uint)(6)); - w437.BottomAttach = ((uint)(7)); - w437.LeftAttach = ((uint)(5)); - w437.RightAttach = ((uint)(6)); - w437.XOptions = ((global::Gtk.AttachOptions)(4)); - w437.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w438 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG41])); + w438.TopAttach = ((uint)(6)); + w438.BottomAttach = ((uint)(7)); + w438.LeftAttach = ((uint)(5)); + w438.RightAttach = ((uint)(6)); + w438.XOptions = ((global::Gtk.AttachOptions)(4)); + w438.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG42 = new global::Gtk.Image(); this.imgG42.WidthRequest = 50; this.imgG42.HeightRequest = 50; this.imgG42.Name = "imgG42"; this.tbUI.Add(this.imgG42); - global::Gtk.Table.TableChild w438 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG42])); - w438.TopAttach = ((uint)(6)); - w438.BottomAttach = ((uint)(7)); - w438.LeftAttach = ((uint)(6)); - w438.RightAttach = ((uint)(7)); - w438.XOptions = ((global::Gtk.AttachOptions)(4)); - w438.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w439 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG42])); + w439.TopAttach = ((uint)(6)); + w439.BottomAttach = ((uint)(7)); + w439.LeftAttach = ((uint)(6)); + w439.RightAttach = ((uint)(7)); + w439.XOptions = ((global::Gtk.AttachOptions)(4)); + w439.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG43 = new global::Gtk.Image(); this.imgG43.WidthRequest = 50; this.imgG43.HeightRequest = 50; this.imgG43.Name = "imgG43"; this.tbUI.Add(this.imgG43); - global::Gtk.Table.TableChild w439 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG43])); - w439.TopAttach = ((uint)(6)); - w439.BottomAttach = ((uint)(7)); - w439.LeftAttach = ((uint)(7)); - w439.RightAttach = ((uint)(8)); - w439.XOptions = ((global::Gtk.AttachOptions)(4)); - w439.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w440 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG43])); + w440.TopAttach = ((uint)(6)); + w440.BottomAttach = ((uint)(7)); + w440.LeftAttach = ((uint)(7)); + w440.RightAttach = ((uint)(8)); + w440.XOptions = ((global::Gtk.AttachOptions)(4)); + w440.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG44 = new global::Gtk.Image(); this.imgG44.WidthRequest = 50; this.imgG44.HeightRequest = 50; this.imgG44.Name = "imgG44"; this.tbUI.Add(this.imgG44); - global::Gtk.Table.TableChild w440 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG44])); - w440.TopAttach = ((uint)(6)); - w440.BottomAttach = ((uint)(7)); - w440.LeftAttach = ((uint)(8)); - w440.RightAttach = ((uint)(9)); - w440.XOptions = ((global::Gtk.AttachOptions)(4)); - w440.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w441 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG44])); + w441.TopAttach = ((uint)(6)); + w441.BottomAttach = ((uint)(7)); + w441.LeftAttach = ((uint)(8)); + w441.RightAttach = ((uint)(9)); + w441.XOptions = ((global::Gtk.AttachOptions)(4)); + w441.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG45 = new global::Gtk.Image(); this.imgG45.WidthRequest = 50; this.imgG45.HeightRequest = 50; this.imgG45.Name = "imgG45"; this.tbUI.Add(this.imgG45); - global::Gtk.Table.TableChild w441 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG45])); - w441.TopAttach = ((uint)(6)); - w441.BottomAttach = ((uint)(7)); - w441.LeftAttach = ((uint)(9)); - w441.RightAttach = ((uint)(10)); - w441.XOptions = ((global::Gtk.AttachOptions)(4)); - w441.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w442 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG45])); + w442.TopAttach = ((uint)(6)); + w442.BottomAttach = ((uint)(7)); + w442.LeftAttach = ((uint)(9)); + w442.RightAttach = ((uint)(10)); + w442.XOptions = ((global::Gtk.AttachOptions)(4)); + w442.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG46 = new global::Gtk.Image(); this.imgG46.WidthRequest = 50; this.imgG46.HeightRequest = 50; this.imgG46.Name = "imgG46"; this.tbUI.Add(this.imgG46); - global::Gtk.Table.TableChild w442 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG46])); - w442.TopAttach = ((uint)(7)); - w442.BottomAttach = ((uint)(8)); - w442.LeftAttach = ((uint)(1)); - w442.RightAttach = ((uint)(2)); - w442.XOptions = ((global::Gtk.AttachOptions)(4)); - w442.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w443 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG46])); + w443.TopAttach = ((uint)(7)); + w443.BottomAttach = ((uint)(8)); + w443.LeftAttach = ((uint)(1)); + w443.RightAttach = ((uint)(2)); + w443.XOptions = ((global::Gtk.AttachOptions)(4)); + w443.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG47 = new global::Gtk.Image(); this.imgG47.WidthRequest = 50; this.imgG47.HeightRequest = 50; this.imgG47.Name = "imgG47"; this.tbUI.Add(this.imgG47); - global::Gtk.Table.TableChild w443 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG47])); - w443.TopAttach = ((uint)(7)); - w443.BottomAttach = ((uint)(8)); - w443.LeftAttach = ((uint)(2)); - w443.RightAttach = ((uint)(3)); - w443.XOptions = ((global::Gtk.AttachOptions)(4)); - w443.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w444 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG47])); + w444.TopAttach = ((uint)(7)); + w444.BottomAttach = ((uint)(8)); + w444.LeftAttach = ((uint)(2)); + w444.RightAttach = ((uint)(3)); + w444.XOptions = ((global::Gtk.AttachOptions)(4)); + w444.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG48 = new global::Gtk.Image(); this.imgG48.WidthRequest = 50; this.imgG48.HeightRequest = 50; this.imgG48.Name = "imgG48"; this.tbUI.Add(this.imgG48); - global::Gtk.Table.TableChild w444 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG48])); - w444.TopAttach = ((uint)(7)); - w444.BottomAttach = ((uint)(8)); - w444.LeftAttach = ((uint)(3)); - w444.RightAttach = ((uint)(4)); - w444.XOptions = ((global::Gtk.AttachOptions)(4)); - w444.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w445 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG48])); + w445.TopAttach = ((uint)(7)); + w445.BottomAttach = ((uint)(8)); + w445.LeftAttach = ((uint)(3)); + w445.RightAttach = ((uint)(4)); + w445.XOptions = ((global::Gtk.AttachOptions)(4)); + w445.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG49 = new global::Gtk.Image(); this.imgG49.WidthRequest = 50; this.imgG49.HeightRequest = 50; this.imgG49.Name = "imgG49"; this.tbUI.Add(this.imgG49); - global::Gtk.Table.TableChild w445 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG49])); - w445.TopAttach = ((uint)(7)); - w445.BottomAttach = ((uint)(8)); - w445.LeftAttach = ((uint)(4)); - w445.RightAttach = ((uint)(5)); - w445.XOptions = ((global::Gtk.AttachOptions)(4)); - w445.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w446 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG49])); + w446.TopAttach = ((uint)(7)); + w446.BottomAttach = ((uint)(8)); + w446.LeftAttach = ((uint)(4)); + w446.RightAttach = ((uint)(5)); + w446.XOptions = ((global::Gtk.AttachOptions)(4)); + w446.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG5 = new global::Gtk.Image(); this.imgG5.WidthRequest = 50; this.imgG5.HeightRequest = 50; this.imgG5.Name = "imgG5"; this.tbUI.Add(this.imgG5); - global::Gtk.Table.TableChild w446 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); - w446.TopAttach = ((uint)(2)); - w446.BottomAttach = ((uint)(3)); - w446.LeftAttach = ((uint)(5)); - w446.RightAttach = ((uint)(6)); - w446.XOptions = ((global::Gtk.AttachOptions)(4)); - w446.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w447 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + w447.TopAttach = ((uint)(2)); + w447.BottomAttach = ((uint)(3)); + w447.LeftAttach = ((uint)(5)); + w447.RightAttach = ((uint)(6)); + w447.XOptions = ((global::Gtk.AttachOptions)(4)); + w447.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG50 = new global::Gtk.Image(); this.imgG50.WidthRequest = 50; this.imgG50.HeightRequest = 50; this.imgG50.Name = "imgG50"; this.tbUI.Add(this.imgG50); - global::Gtk.Table.TableChild w447 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG50])); - w447.TopAttach = ((uint)(7)); - w447.BottomAttach = ((uint)(8)); - w447.LeftAttach = ((uint)(5)); - w447.RightAttach = ((uint)(6)); - w447.XOptions = ((global::Gtk.AttachOptions)(4)); - w447.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w448 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG50])); + w448.TopAttach = ((uint)(7)); + w448.BottomAttach = ((uint)(8)); + w448.LeftAttach = ((uint)(5)); + w448.RightAttach = ((uint)(6)); + w448.XOptions = ((global::Gtk.AttachOptions)(4)); + w448.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG51 = new global::Gtk.Image(); this.imgG51.WidthRequest = 50; this.imgG51.HeightRequest = 50; this.imgG51.Name = "imgG51"; this.tbUI.Add(this.imgG51); - global::Gtk.Table.TableChild w448 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG51])); - w448.TopAttach = ((uint)(7)); - w448.BottomAttach = ((uint)(8)); - w448.LeftAttach = ((uint)(6)); - w448.RightAttach = ((uint)(7)); - w448.XOptions = ((global::Gtk.AttachOptions)(4)); - w448.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w449 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG51])); + w449.TopAttach = ((uint)(7)); + w449.BottomAttach = ((uint)(8)); + w449.LeftAttach = ((uint)(6)); + w449.RightAttach = ((uint)(7)); + w449.XOptions = ((global::Gtk.AttachOptions)(4)); + w449.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG52 = new global::Gtk.Image(); this.imgG52.WidthRequest = 50; this.imgG52.HeightRequest = 50; this.imgG52.Name = "imgG52"; this.tbUI.Add(this.imgG52); - global::Gtk.Table.TableChild w449 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG52])); - w449.TopAttach = ((uint)(7)); - w449.BottomAttach = ((uint)(8)); - w449.LeftAttach = ((uint)(7)); - w449.RightAttach = ((uint)(8)); - w449.XOptions = ((global::Gtk.AttachOptions)(4)); - w449.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w450 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG52])); + w450.TopAttach = ((uint)(7)); + w450.BottomAttach = ((uint)(8)); + w450.LeftAttach = ((uint)(7)); + w450.RightAttach = ((uint)(8)); + w450.XOptions = ((global::Gtk.AttachOptions)(4)); + w450.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG53 = new global::Gtk.Image(); this.imgG53.WidthRequest = 50; this.imgG53.HeightRequest = 50; this.imgG53.Name = "imgG53"; this.tbUI.Add(this.imgG53); - global::Gtk.Table.TableChild w450 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG53])); - w450.TopAttach = ((uint)(7)); - w450.BottomAttach = ((uint)(8)); - w450.LeftAttach = ((uint)(8)); - w450.RightAttach = ((uint)(9)); - w450.XOptions = ((global::Gtk.AttachOptions)(4)); - w450.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w451 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG53])); + w451.TopAttach = ((uint)(7)); + w451.BottomAttach = ((uint)(8)); + w451.LeftAttach = ((uint)(8)); + w451.RightAttach = ((uint)(9)); + w451.XOptions = ((global::Gtk.AttachOptions)(4)); + w451.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG54 = new global::Gtk.Image(); this.imgG54.WidthRequest = 50; this.imgG54.HeightRequest = 50; this.imgG54.Name = "imgG54"; this.tbUI.Add(this.imgG54); - global::Gtk.Table.TableChild w451 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG54])); - w451.TopAttach = ((uint)(7)); - w451.BottomAttach = ((uint)(8)); - w451.LeftAttach = ((uint)(9)); - w451.RightAttach = ((uint)(10)); - w451.XOptions = ((global::Gtk.AttachOptions)(4)); - w451.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w452 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG54])); + w452.TopAttach = ((uint)(7)); + w452.BottomAttach = ((uint)(8)); + w452.LeftAttach = ((uint)(9)); + w452.RightAttach = ((uint)(10)); + w452.XOptions = ((global::Gtk.AttachOptions)(4)); + w452.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG55 = new global::Gtk.Image(); this.imgG55.WidthRequest = 50; this.imgG55.HeightRequest = 50; this.imgG55.Name = "imgG55"; this.tbUI.Add(this.imgG55); - global::Gtk.Table.TableChild w452 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG55])); - w452.TopAttach = ((uint)(8)); - w452.BottomAttach = ((uint)(9)); - w452.LeftAttach = ((uint)(1)); - w452.RightAttach = ((uint)(2)); - w452.XOptions = ((global::Gtk.AttachOptions)(4)); - w452.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w453 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG55])); + w453.TopAttach = ((uint)(8)); + w453.BottomAttach = ((uint)(9)); + w453.LeftAttach = ((uint)(1)); + w453.RightAttach = ((uint)(2)); + w453.XOptions = ((global::Gtk.AttachOptions)(4)); + w453.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG56 = new global::Gtk.Image(); this.imgG56.WidthRequest = 50; this.imgG56.HeightRequest = 50; this.imgG56.Name = "imgG56"; this.tbUI.Add(this.imgG56); - global::Gtk.Table.TableChild w453 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG56])); - w453.TopAttach = ((uint)(8)); - w453.BottomAttach = ((uint)(9)); - w453.LeftAttach = ((uint)(2)); - w453.RightAttach = ((uint)(3)); - w453.XOptions = ((global::Gtk.AttachOptions)(4)); - w453.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w454 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG56])); + w454.TopAttach = ((uint)(8)); + w454.BottomAttach = ((uint)(9)); + w454.LeftAttach = ((uint)(2)); + w454.RightAttach = ((uint)(3)); + w454.XOptions = ((global::Gtk.AttachOptions)(4)); + w454.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG57 = new global::Gtk.Image(); this.imgG57.WidthRequest = 50; this.imgG57.HeightRequest = 50; this.imgG57.Name = "imgG57"; this.tbUI.Add(this.imgG57); - global::Gtk.Table.TableChild w454 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG57])); - w454.TopAttach = ((uint)(8)); - w454.BottomAttach = ((uint)(9)); - w454.LeftAttach = ((uint)(3)); - w454.RightAttach = ((uint)(4)); - w454.XOptions = ((global::Gtk.AttachOptions)(4)); - w454.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w455 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG57])); + w455.TopAttach = ((uint)(8)); + w455.BottomAttach = ((uint)(9)); + w455.LeftAttach = ((uint)(3)); + w455.RightAttach = ((uint)(4)); + w455.XOptions = ((global::Gtk.AttachOptions)(4)); + w455.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG58 = new global::Gtk.Image(); this.imgG58.WidthRequest = 50; this.imgG58.HeightRequest = 50; this.imgG58.Name = "imgG58"; this.tbUI.Add(this.imgG58); - global::Gtk.Table.TableChild w455 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG58])); - w455.TopAttach = ((uint)(8)); - w455.BottomAttach = ((uint)(9)); - w455.LeftAttach = ((uint)(4)); - w455.RightAttach = ((uint)(5)); - w455.XOptions = ((global::Gtk.AttachOptions)(4)); - w455.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w456 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG58])); + w456.TopAttach = ((uint)(8)); + w456.BottomAttach = ((uint)(9)); + w456.LeftAttach = ((uint)(4)); + w456.RightAttach = ((uint)(5)); + w456.XOptions = ((global::Gtk.AttachOptions)(4)); + w456.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG59 = new global::Gtk.Image(); this.imgG59.WidthRequest = 50; this.imgG59.HeightRequest = 50; this.imgG59.Name = "imgG59"; this.tbUI.Add(this.imgG59); - global::Gtk.Table.TableChild w456 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG59])); - w456.TopAttach = ((uint)(8)); - w456.BottomAttach = ((uint)(9)); - w456.LeftAttach = ((uint)(5)); - w456.RightAttach = ((uint)(6)); - w456.XOptions = ((global::Gtk.AttachOptions)(4)); - w456.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w457 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG59])); + w457.TopAttach = ((uint)(8)); + w457.BottomAttach = ((uint)(9)); + w457.LeftAttach = ((uint)(5)); + w457.RightAttach = ((uint)(6)); + w457.XOptions = ((global::Gtk.AttachOptions)(4)); + w457.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG6 = new global::Gtk.Image(); this.imgG6.WidthRequest = 50; this.imgG6.HeightRequest = 50; this.imgG6.Name = "imgG6"; this.tbUI.Add(this.imgG6); - global::Gtk.Table.TableChild w457 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); - w457.TopAttach = ((uint)(2)); - w457.BottomAttach = ((uint)(3)); - w457.LeftAttach = ((uint)(6)); - w457.RightAttach = ((uint)(7)); - w457.XOptions = ((global::Gtk.AttachOptions)(4)); - w457.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w458 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); + w458.TopAttach = ((uint)(2)); + w458.BottomAttach = ((uint)(3)); + w458.LeftAttach = ((uint)(6)); + w458.RightAttach = ((uint)(7)); + w458.XOptions = ((global::Gtk.AttachOptions)(4)); + w458.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG60 = new global::Gtk.Image(); this.imgG60.WidthRequest = 50; this.imgG60.HeightRequest = 50; this.imgG60.Name = "imgG60"; this.tbUI.Add(this.imgG60); - global::Gtk.Table.TableChild w458 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG60])); - w458.TopAttach = ((uint)(8)); - w458.BottomAttach = ((uint)(9)); - w458.LeftAttach = ((uint)(6)); - w458.RightAttach = ((uint)(7)); - w458.XOptions = ((global::Gtk.AttachOptions)(4)); - w458.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w459 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG60])); + w459.TopAttach = ((uint)(8)); + w459.BottomAttach = ((uint)(9)); + w459.LeftAttach = ((uint)(6)); + w459.RightAttach = ((uint)(7)); + w459.XOptions = ((global::Gtk.AttachOptions)(4)); + w459.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG61 = new global::Gtk.Image(); this.imgG61.WidthRequest = 50; this.imgG61.HeightRequest = 50; this.imgG61.Name = "imgG61"; this.tbUI.Add(this.imgG61); - global::Gtk.Table.TableChild w459 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG61])); - w459.TopAttach = ((uint)(8)); - w459.BottomAttach = ((uint)(9)); - w459.LeftAttach = ((uint)(7)); - w459.RightAttach = ((uint)(8)); - w459.XOptions = ((global::Gtk.AttachOptions)(4)); - w459.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w460 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG61])); + w460.TopAttach = ((uint)(8)); + w460.BottomAttach = ((uint)(9)); + w460.LeftAttach = ((uint)(7)); + w460.RightAttach = ((uint)(8)); + w460.XOptions = ((global::Gtk.AttachOptions)(4)); + w460.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG62 = new global::Gtk.Image(); this.imgG62.WidthRequest = 50; this.imgG62.HeightRequest = 50; this.imgG62.Name = "imgG62"; this.tbUI.Add(this.imgG62); - global::Gtk.Table.TableChild w460 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG62])); - w460.TopAttach = ((uint)(8)); - w460.BottomAttach = ((uint)(9)); - w460.LeftAttach = ((uint)(8)); - w460.RightAttach = ((uint)(9)); - w460.XOptions = ((global::Gtk.AttachOptions)(4)); - w460.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w461 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG62])); + w461.TopAttach = ((uint)(8)); + w461.BottomAttach = ((uint)(9)); + w461.LeftAttach = ((uint)(8)); + w461.RightAttach = ((uint)(9)); + w461.XOptions = ((global::Gtk.AttachOptions)(4)); + w461.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG63 = new global::Gtk.Image(); this.imgG63.WidthRequest = 50; this.imgG63.HeightRequest = 50; this.imgG63.Name = "imgG63"; this.tbUI.Add(this.imgG63); - global::Gtk.Table.TableChild w461 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG63])); - w461.TopAttach = ((uint)(8)); - w461.BottomAttach = ((uint)(9)); - w461.LeftAttach = ((uint)(9)); - w461.RightAttach = ((uint)(10)); - w461.XOptions = ((global::Gtk.AttachOptions)(4)); - w461.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w462 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG63])); + w462.TopAttach = ((uint)(8)); + w462.BottomAttach = ((uint)(9)); + w462.LeftAttach = ((uint)(9)); + w462.RightAttach = ((uint)(10)); + w462.XOptions = ((global::Gtk.AttachOptions)(4)); + w462.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG64 = new global::Gtk.Image(); this.imgG64.WidthRequest = 50; this.imgG64.HeightRequest = 50; this.imgG64.Name = "imgG64"; this.tbUI.Add(this.imgG64); - global::Gtk.Table.TableChild w462 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG64])); - w462.TopAttach = ((uint)(9)); - w462.BottomAttach = ((uint)(10)); - w462.LeftAttach = ((uint)(1)); - w462.RightAttach = ((uint)(2)); - w462.XOptions = ((global::Gtk.AttachOptions)(4)); - w462.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w463 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG64])); + w463.TopAttach = ((uint)(9)); + w463.BottomAttach = ((uint)(10)); + w463.LeftAttach = ((uint)(1)); + w463.RightAttach = ((uint)(2)); + w463.XOptions = ((global::Gtk.AttachOptions)(4)); + w463.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG65 = new global::Gtk.Image(); this.imgG65.WidthRequest = 50; this.imgG65.HeightRequest = 50; this.imgG65.Name = "imgG65"; this.tbUI.Add(this.imgG65); - global::Gtk.Table.TableChild w463 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG65])); - w463.TopAttach = ((uint)(9)); - w463.BottomAttach = ((uint)(10)); - w463.LeftAttach = ((uint)(2)); - w463.RightAttach = ((uint)(3)); - w463.XOptions = ((global::Gtk.AttachOptions)(4)); - w463.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w464 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG65])); + w464.TopAttach = ((uint)(9)); + w464.BottomAttach = ((uint)(10)); + w464.LeftAttach = ((uint)(2)); + w464.RightAttach = ((uint)(3)); + w464.XOptions = ((global::Gtk.AttachOptions)(4)); + w464.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG66 = new global::Gtk.Image(); this.imgG66.WidthRequest = 50; this.imgG66.HeightRequest = 50; this.imgG66.Name = "imgG66"; this.tbUI.Add(this.imgG66); - global::Gtk.Table.TableChild w464 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG66])); - w464.TopAttach = ((uint)(9)); - w464.BottomAttach = ((uint)(10)); - w464.LeftAttach = ((uint)(3)); - w464.RightAttach = ((uint)(4)); - w464.XOptions = ((global::Gtk.AttachOptions)(4)); - w464.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w465 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG66])); + w465.TopAttach = ((uint)(9)); + w465.BottomAttach = ((uint)(10)); + w465.LeftAttach = ((uint)(3)); + w465.RightAttach = ((uint)(4)); + w465.XOptions = ((global::Gtk.AttachOptions)(4)); + w465.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG67 = new global::Gtk.Image(); this.imgG67.WidthRequest = 50; this.imgG67.HeightRequest = 50; this.imgG67.Name = "imgG67"; this.tbUI.Add(this.imgG67); - global::Gtk.Table.TableChild w465 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG67])); - w465.TopAttach = ((uint)(9)); - w465.BottomAttach = ((uint)(10)); - w465.LeftAttach = ((uint)(4)); - w465.RightAttach = ((uint)(5)); - w465.XOptions = ((global::Gtk.AttachOptions)(4)); - w465.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w466 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG67])); + w466.TopAttach = ((uint)(9)); + w466.BottomAttach = ((uint)(10)); + w466.LeftAttach = ((uint)(4)); + w466.RightAttach = ((uint)(5)); + w466.XOptions = ((global::Gtk.AttachOptions)(4)); + w466.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG68 = new global::Gtk.Image(); this.imgG68.WidthRequest = 50; this.imgG68.HeightRequest = 50; this.imgG68.Name = "imgG68"; this.tbUI.Add(this.imgG68); - global::Gtk.Table.TableChild w466 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG68])); - w466.TopAttach = ((uint)(9)); - w466.BottomAttach = ((uint)(10)); - w466.LeftAttach = ((uint)(5)); - w466.RightAttach = ((uint)(6)); - w466.XOptions = ((global::Gtk.AttachOptions)(4)); - w466.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w467 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG68])); + w467.TopAttach = ((uint)(9)); + w467.BottomAttach = ((uint)(10)); + w467.LeftAttach = ((uint)(5)); + w467.RightAttach = ((uint)(6)); + w467.XOptions = ((global::Gtk.AttachOptions)(4)); + w467.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG69 = new global::Gtk.Image(); this.imgG69.WidthRequest = 50; this.imgG69.HeightRequest = 50; this.imgG69.Name = "imgG69"; this.tbUI.Add(this.imgG69); - global::Gtk.Table.TableChild w467 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG69])); - w467.TopAttach = ((uint)(9)); - w467.BottomAttach = ((uint)(10)); - w467.LeftAttach = ((uint)(6)); - w467.RightAttach = ((uint)(7)); - w467.XOptions = ((global::Gtk.AttachOptions)(4)); - w467.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w468 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG69])); + w468.TopAttach = ((uint)(9)); + w468.BottomAttach = ((uint)(10)); + w468.LeftAttach = ((uint)(6)); + w468.RightAttach = ((uint)(7)); + w468.XOptions = ((global::Gtk.AttachOptions)(4)); + w468.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG7 = new global::Gtk.Image(); this.imgG7.WidthRequest = 50; this.imgG7.HeightRequest = 50; this.imgG7.Name = "imgG7"; this.tbUI.Add(this.imgG7); - global::Gtk.Table.TableChild w468 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); - w468.TopAttach = ((uint)(2)); - w468.BottomAttach = ((uint)(3)); - w468.LeftAttach = ((uint)(7)); - w468.RightAttach = ((uint)(8)); - w468.XOptions = ((global::Gtk.AttachOptions)(4)); - w468.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w469 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); + w469.TopAttach = ((uint)(2)); + w469.BottomAttach = ((uint)(3)); + w469.LeftAttach = ((uint)(7)); + w469.RightAttach = ((uint)(8)); + w469.XOptions = ((global::Gtk.AttachOptions)(4)); + w469.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG70 = new global::Gtk.Image(); this.imgG70.WidthRequest = 50; this.imgG70.HeightRequest = 50; this.imgG70.Name = "imgG70"; this.tbUI.Add(this.imgG70); - global::Gtk.Table.TableChild w469 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG70])); - w469.TopAttach = ((uint)(9)); - w469.BottomAttach = ((uint)(10)); - w469.LeftAttach = ((uint)(7)); - w469.RightAttach = ((uint)(8)); - w469.XOptions = ((global::Gtk.AttachOptions)(4)); - w469.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w470 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG70])); + w470.TopAttach = ((uint)(9)); + w470.BottomAttach = ((uint)(10)); + w470.LeftAttach = ((uint)(7)); + w470.RightAttach = ((uint)(8)); + w470.XOptions = ((global::Gtk.AttachOptions)(4)); + w470.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG71 = new global::Gtk.Image(); this.imgG71.WidthRequest = 50; this.imgG71.HeightRequest = 50; this.imgG71.Name = "imgG71"; this.tbUI.Add(this.imgG71); - global::Gtk.Table.TableChild w470 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG71])); - w470.TopAttach = ((uint)(9)); - w470.BottomAttach = ((uint)(10)); - w470.LeftAttach = ((uint)(8)); - w470.RightAttach = ((uint)(9)); - w470.XOptions = ((global::Gtk.AttachOptions)(4)); - w470.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w471 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG71])); + w471.TopAttach = ((uint)(9)); + w471.BottomAttach = ((uint)(10)); + w471.LeftAttach = ((uint)(8)); + w471.RightAttach = ((uint)(9)); + w471.XOptions = ((global::Gtk.AttachOptions)(4)); + w471.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG72 = new global::Gtk.Image(); this.imgG72.WidthRequest = 50; this.imgG72.HeightRequest = 50; this.imgG72.Name = "imgG72"; this.tbUI.Add(this.imgG72); - global::Gtk.Table.TableChild w471 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG72])); - w471.TopAttach = ((uint)(9)); - w471.BottomAttach = ((uint)(10)); - w471.LeftAttach = ((uint)(9)); - w471.RightAttach = ((uint)(10)); - w471.XOptions = ((global::Gtk.AttachOptions)(4)); - w471.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w472 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG72])); + w472.TopAttach = ((uint)(9)); + w472.BottomAttach = ((uint)(10)); + w472.LeftAttach = ((uint)(9)); + w472.RightAttach = ((uint)(10)); + w472.XOptions = ((global::Gtk.AttachOptions)(4)); + w472.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG73 = new global::Gtk.Image(); this.imgG73.WidthRequest = 50; this.imgG73.HeightRequest = 50; this.imgG73.Name = "imgG73"; this.tbUI.Add(this.imgG73); - global::Gtk.Table.TableChild w472 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG73])); - w472.TopAttach = ((uint)(10)); - w472.BottomAttach = ((uint)(11)); - w472.LeftAttach = ((uint)(1)); - w472.RightAttach = ((uint)(2)); - w472.XOptions = ((global::Gtk.AttachOptions)(4)); - w472.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w473 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG73])); + w473.TopAttach = ((uint)(10)); + w473.BottomAttach = ((uint)(11)); + w473.LeftAttach = ((uint)(1)); + w473.RightAttach = ((uint)(2)); + w473.XOptions = ((global::Gtk.AttachOptions)(4)); + w473.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG74 = new global::Gtk.Image(); this.imgG74.WidthRequest = 50; this.imgG74.HeightRequest = 50; this.imgG74.Name = "imgG74"; this.tbUI.Add(this.imgG74); - global::Gtk.Table.TableChild w473 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG74])); - w473.TopAttach = ((uint)(10)); - w473.BottomAttach = ((uint)(11)); - w473.LeftAttach = ((uint)(2)); - w473.RightAttach = ((uint)(3)); - w473.XOptions = ((global::Gtk.AttachOptions)(4)); - w473.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w474 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG74])); + w474.TopAttach = ((uint)(10)); + w474.BottomAttach = ((uint)(11)); + w474.LeftAttach = ((uint)(2)); + w474.RightAttach = ((uint)(3)); + w474.XOptions = ((global::Gtk.AttachOptions)(4)); + w474.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG75 = new global::Gtk.Image(); this.imgG75.WidthRequest = 50; this.imgG75.HeightRequest = 50; this.imgG75.Name = "imgG75"; this.tbUI.Add(this.imgG75); - global::Gtk.Table.TableChild w474 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG75])); - w474.TopAttach = ((uint)(10)); - w474.BottomAttach = ((uint)(11)); - w474.LeftAttach = ((uint)(3)); - w474.RightAttach = ((uint)(4)); - w474.XOptions = ((global::Gtk.AttachOptions)(4)); - w474.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w475 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG75])); + w475.TopAttach = ((uint)(10)); + w475.BottomAttach = ((uint)(11)); + w475.LeftAttach = ((uint)(3)); + w475.RightAttach = ((uint)(4)); + w475.XOptions = ((global::Gtk.AttachOptions)(4)); + w475.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG76 = new global::Gtk.Image(); this.imgG76.WidthRequest = 50; this.imgG76.HeightRequest = 50; this.imgG76.Name = "imgG76"; this.tbUI.Add(this.imgG76); - global::Gtk.Table.TableChild w475 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG76])); - w475.TopAttach = ((uint)(10)); - w475.BottomAttach = ((uint)(11)); - w475.LeftAttach = ((uint)(4)); - w475.RightAttach = ((uint)(5)); - w475.XOptions = ((global::Gtk.AttachOptions)(4)); - w475.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w476 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG76])); + w476.TopAttach = ((uint)(10)); + w476.BottomAttach = ((uint)(11)); + w476.LeftAttach = ((uint)(4)); + w476.RightAttach = ((uint)(5)); + w476.XOptions = ((global::Gtk.AttachOptions)(4)); + w476.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG77 = new global::Gtk.Image(); this.imgG77.WidthRequest = 50; this.imgG77.HeightRequest = 50; this.imgG77.Name = "imgG77"; this.tbUI.Add(this.imgG77); - global::Gtk.Table.TableChild w476 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG77])); - w476.TopAttach = ((uint)(10)); - w476.BottomAttach = ((uint)(11)); - w476.LeftAttach = ((uint)(5)); - w476.RightAttach = ((uint)(6)); - w476.XOptions = ((global::Gtk.AttachOptions)(4)); - w476.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w477 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG77])); + w477.TopAttach = ((uint)(10)); + w477.BottomAttach = ((uint)(11)); + w477.LeftAttach = ((uint)(5)); + w477.RightAttach = ((uint)(6)); + w477.XOptions = ((global::Gtk.AttachOptions)(4)); + w477.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG78 = new global::Gtk.Image(); this.imgG78.WidthRequest = 50; this.imgG78.HeightRequest = 50; this.imgG78.Name = "imgG78"; this.tbUI.Add(this.imgG78); - global::Gtk.Table.TableChild w477 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG78])); - w477.TopAttach = ((uint)(10)); - w477.BottomAttach = ((uint)(11)); - w477.LeftAttach = ((uint)(6)); - w477.RightAttach = ((uint)(7)); - w477.XOptions = ((global::Gtk.AttachOptions)(4)); - w477.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w478 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG78])); + w478.TopAttach = ((uint)(10)); + w478.BottomAttach = ((uint)(11)); + w478.LeftAttach = ((uint)(6)); + w478.RightAttach = ((uint)(7)); + w478.XOptions = ((global::Gtk.AttachOptions)(4)); + w478.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG79 = new global::Gtk.Image(); this.imgG79.WidthRequest = 50; this.imgG79.HeightRequest = 50; this.imgG79.Name = "imgG79"; this.tbUI.Add(this.imgG79); - global::Gtk.Table.TableChild w478 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG79])); - w478.TopAttach = ((uint)(10)); - w478.BottomAttach = ((uint)(11)); - w478.LeftAttach = ((uint)(7)); - w478.RightAttach = ((uint)(8)); - w478.XOptions = ((global::Gtk.AttachOptions)(4)); - w478.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w479 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG79])); + w479.TopAttach = ((uint)(10)); + w479.BottomAttach = ((uint)(11)); + w479.LeftAttach = ((uint)(7)); + w479.RightAttach = ((uint)(8)); + w479.XOptions = ((global::Gtk.AttachOptions)(4)); + w479.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG8 = new global::Gtk.Image(); this.imgG8.WidthRequest = 50; this.imgG8.HeightRequest = 50; this.imgG8.Name = "imgG8"; this.tbUI.Add(this.imgG8); - global::Gtk.Table.TableChild w479 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); - w479.TopAttach = ((uint)(2)); - w479.BottomAttach = ((uint)(3)); - w479.LeftAttach = ((uint)(8)); - w479.RightAttach = ((uint)(9)); - w479.XOptions = ((global::Gtk.AttachOptions)(4)); - w479.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w480 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); + w480.TopAttach = ((uint)(2)); + w480.BottomAttach = ((uint)(3)); + w480.LeftAttach = ((uint)(8)); + w480.RightAttach = ((uint)(9)); + w480.XOptions = ((global::Gtk.AttachOptions)(4)); + w480.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG80 = new global::Gtk.Image(); this.imgG80.WidthRequest = 50; this.imgG80.HeightRequest = 50; this.imgG80.Name = "imgG80"; this.tbUI.Add(this.imgG80); - global::Gtk.Table.TableChild w480 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG80])); - w480.TopAttach = ((uint)(10)); - w480.BottomAttach = ((uint)(11)); - w480.LeftAttach = ((uint)(8)); - w480.RightAttach = ((uint)(9)); - w480.XOptions = ((global::Gtk.AttachOptions)(4)); - w480.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w481 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG80])); + w481.TopAttach = ((uint)(10)); + w481.BottomAttach = ((uint)(11)); + w481.LeftAttach = ((uint)(8)); + w481.RightAttach = ((uint)(9)); + w481.XOptions = ((global::Gtk.AttachOptions)(4)); + w481.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG81 = new global::Gtk.Image(); this.imgG81.WidthRequest = 50; this.imgG81.HeightRequest = 50; this.imgG81.Name = "imgG81"; this.tbUI.Add(this.imgG81); - global::Gtk.Table.TableChild w481 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG81])); - w481.TopAttach = ((uint)(10)); - w481.BottomAttach = ((uint)(11)); - w481.LeftAttach = ((uint)(9)); - w481.RightAttach = ((uint)(10)); - w481.XOptions = ((global::Gtk.AttachOptions)(4)); - w481.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w482 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG81])); + w482.TopAttach = ((uint)(10)); + w482.BottomAttach = ((uint)(11)); + w482.LeftAttach = ((uint)(9)); + w482.RightAttach = ((uint)(10)); + w482.XOptions = ((global::Gtk.AttachOptions)(4)); + w482.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG9 = new global::Gtk.Image(); this.imgG9.WidthRequest = 50; this.imgG9.HeightRequest = 50; this.imgG9.Name = "imgG9"; this.tbUI.Add(this.imgG9); - global::Gtk.Table.TableChild w482 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); - w482.TopAttach = ((uint)(2)); - w482.BottomAttach = ((uint)(3)); - w482.LeftAttach = ((uint)(9)); - w482.RightAttach = ((uint)(10)); - w482.XOptions = ((global::Gtk.AttachOptions)(4)); - w482.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w483 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + w483.TopAttach = ((uint)(2)); + w483.BottomAttach = ((uint)(3)); + w483.LeftAttach = ((uint)(9)); + w483.RightAttach = ((uint)(10)); + w483.XOptions = ((global::Gtk.AttachOptions)(4)); + w483.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI1 = new global::Gtk.Image(); this.imgI1.WidthRequest = 50; this.imgI1.HeightRequest = 50; this.imgI1.Name = "imgI1"; this.tbUI.Add(this.imgI1); - global::Gtk.Table.TableChild w483 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); - w483.TopAttach = ((uint)(14)); - w483.BottomAttach = ((uint)(15)); - w483.LeftAttach = ((uint)(1)); - w483.RightAttach = ((uint)(2)); - w483.XOptions = ((global::Gtk.AttachOptions)(4)); - w483.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w484 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w484.TopAttach = ((uint)(14)); + w484.BottomAttach = ((uint)(15)); + w484.LeftAttach = ((uint)(1)); + w484.RightAttach = ((uint)(2)); + w484.XOptions = ((global::Gtk.AttachOptions)(4)); + w484.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI10 = new global::Gtk.Image(); this.imgI10.WidthRequest = 50; this.imgI10.HeightRequest = 50; this.imgI10.Name = "imgI10"; this.tbUI.Add(this.imgI10); - global::Gtk.Table.TableChild w484 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); - w484.TopAttach = ((uint)(15)); - w484.BottomAttach = ((uint)(16)); - w484.LeftAttach = ((uint)(1)); - w484.RightAttach = ((uint)(2)); - w484.XOptions = ((global::Gtk.AttachOptions)(4)); - w484.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w485 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); + w485.TopAttach = ((uint)(15)); + w485.BottomAttach = ((uint)(16)); + w485.LeftAttach = ((uint)(1)); + w485.RightAttach = ((uint)(2)); + w485.XOptions = ((global::Gtk.AttachOptions)(4)); + w485.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI11 = new global::Gtk.Image(); this.imgI11.WidthRequest = 50; this.imgI11.HeightRequest = 50; this.imgI11.Name = "imgI11"; this.tbUI.Add(this.imgI11); - global::Gtk.Table.TableChild w485 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); - w485.TopAttach = ((uint)(15)); - w485.BottomAttach = ((uint)(16)); - w485.LeftAttach = ((uint)(2)); - w485.RightAttach = ((uint)(3)); - w485.XOptions = ((global::Gtk.AttachOptions)(4)); - w485.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w486 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); + w486.TopAttach = ((uint)(15)); + w486.BottomAttach = ((uint)(16)); + w486.LeftAttach = ((uint)(2)); + w486.RightAttach = ((uint)(3)); + w486.XOptions = ((global::Gtk.AttachOptions)(4)); + w486.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI12 = new global::Gtk.Image(); this.imgI12.WidthRequest = 50; this.imgI12.HeightRequest = 50; this.imgI12.Name = "imgI12"; this.tbUI.Add(this.imgI12); - global::Gtk.Table.TableChild w486 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); - w486.TopAttach = ((uint)(15)); - w486.BottomAttach = ((uint)(16)); - w486.LeftAttach = ((uint)(3)); - w486.RightAttach = ((uint)(4)); - w486.XOptions = ((global::Gtk.AttachOptions)(4)); - w486.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w487 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); + w487.TopAttach = ((uint)(15)); + w487.BottomAttach = ((uint)(16)); + w487.LeftAttach = ((uint)(3)); + w487.RightAttach = ((uint)(4)); + w487.XOptions = ((global::Gtk.AttachOptions)(4)); + w487.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI13 = new global::Gtk.Image(); this.imgI13.WidthRequest = 50; this.imgI13.HeightRequest = 50; this.imgI13.Name = "imgI13"; this.tbUI.Add(this.imgI13); - global::Gtk.Table.TableChild w487 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); - w487.TopAttach = ((uint)(15)); - w487.BottomAttach = ((uint)(16)); - w487.LeftAttach = ((uint)(4)); - w487.RightAttach = ((uint)(5)); - w487.XOptions = ((global::Gtk.AttachOptions)(4)); - w487.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w488 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); + w488.TopAttach = ((uint)(15)); + w488.BottomAttach = ((uint)(16)); + w488.LeftAttach = ((uint)(4)); + w488.RightAttach = ((uint)(5)); + w488.XOptions = ((global::Gtk.AttachOptions)(4)); + w488.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI14 = new global::Gtk.Image(); this.imgI14.WidthRequest = 50; this.imgI14.HeightRequest = 50; this.imgI14.Name = "imgI14"; this.tbUI.Add(this.imgI14); - global::Gtk.Table.TableChild w488 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); - w488.TopAttach = ((uint)(15)); - w488.BottomAttach = ((uint)(16)); - w488.LeftAttach = ((uint)(5)); - w488.RightAttach = ((uint)(6)); - w488.XOptions = ((global::Gtk.AttachOptions)(4)); - w488.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w489 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); + w489.TopAttach = ((uint)(15)); + w489.BottomAttach = ((uint)(16)); + w489.LeftAttach = ((uint)(5)); + w489.RightAttach = ((uint)(6)); + w489.XOptions = ((global::Gtk.AttachOptions)(4)); + w489.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI15 = new global::Gtk.Image(); this.imgI15.WidthRequest = 50; this.imgI15.HeightRequest = 50; this.imgI15.Name = "imgI15"; this.tbUI.Add(this.imgI15); - global::Gtk.Table.TableChild w489 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); - w489.TopAttach = ((uint)(15)); - w489.BottomAttach = ((uint)(16)); - w489.LeftAttach = ((uint)(6)); - w489.RightAttach = ((uint)(7)); - w489.XOptions = ((global::Gtk.AttachOptions)(4)); - w489.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w490 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); + w490.TopAttach = ((uint)(15)); + w490.BottomAttach = ((uint)(16)); + w490.LeftAttach = ((uint)(6)); + w490.RightAttach = ((uint)(7)); + w490.XOptions = ((global::Gtk.AttachOptions)(4)); + w490.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI16 = new global::Gtk.Image(); this.imgI16.WidthRequest = 50; this.imgI16.HeightRequest = 50; this.imgI16.Name = "imgI16"; this.tbUI.Add(this.imgI16); - global::Gtk.Table.TableChild w490 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); - w490.TopAttach = ((uint)(15)); - w490.BottomAttach = ((uint)(16)); - w490.LeftAttach = ((uint)(7)); - w490.RightAttach = ((uint)(8)); - w490.XOptions = ((global::Gtk.AttachOptions)(4)); - w490.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w491 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); + w491.TopAttach = ((uint)(15)); + w491.BottomAttach = ((uint)(16)); + w491.LeftAttach = ((uint)(7)); + w491.RightAttach = ((uint)(8)); + w491.XOptions = ((global::Gtk.AttachOptions)(4)); + w491.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI17 = new global::Gtk.Image(); this.imgI17.WidthRequest = 50; this.imgI17.HeightRequest = 50; this.imgI17.Name = "imgI17"; this.tbUI.Add(this.imgI17); - global::Gtk.Table.TableChild w491 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); - w491.TopAttach = ((uint)(15)); - w491.BottomAttach = ((uint)(16)); - w491.LeftAttach = ((uint)(8)); - w491.RightAttach = ((uint)(9)); - w491.XOptions = ((global::Gtk.AttachOptions)(4)); - w491.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w492 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); + w492.TopAttach = ((uint)(15)); + w492.BottomAttach = ((uint)(16)); + w492.LeftAttach = ((uint)(8)); + w492.RightAttach = ((uint)(9)); + w492.XOptions = ((global::Gtk.AttachOptions)(4)); + w492.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI18 = new global::Gtk.Image(); this.imgI18.WidthRequest = 50; this.imgI18.HeightRequest = 50; this.imgI18.Name = "imgI18"; this.tbUI.Add(this.imgI18); - global::Gtk.Table.TableChild w492 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); - w492.TopAttach = ((uint)(15)); - w492.BottomAttach = ((uint)(16)); - w492.LeftAttach = ((uint)(9)); - w492.RightAttach = ((uint)(10)); - w492.XOptions = ((global::Gtk.AttachOptions)(4)); - w492.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w493 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); + w493.TopAttach = ((uint)(15)); + w493.BottomAttach = ((uint)(16)); + w493.LeftAttach = ((uint)(9)); + w493.RightAttach = ((uint)(10)); + w493.XOptions = ((global::Gtk.AttachOptions)(4)); + w493.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI19 = new global::Gtk.Image(); this.imgI19.WidthRequest = 50; this.imgI19.HeightRequest = 50; this.imgI19.Name = "imgI19"; this.tbUI.Add(this.imgI19); - global::Gtk.Table.TableChild w493 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); - w493.TopAttach = ((uint)(16)); - w493.BottomAttach = ((uint)(17)); - w493.LeftAttach = ((uint)(1)); - w493.RightAttach = ((uint)(2)); - w493.XOptions = ((global::Gtk.AttachOptions)(4)); - w493.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w494 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); + w494.TopAttach = ((uint)(16)); + w494.BottomAttach = ((uint)(17)); + w494.LeftAttach = ((uint)(1)); + w494.RightAttach = ((uint)(2)); + w494.XOptions = ((global::Gtk.AttachOptions)(4)); + w494.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI2 = new global::Gtk.Image(); this.imgI2.WidthRequest = 50; this.imgI2.HeightRequest = 50; this.imgI2.Name = "imgI2"; this.tbUI.Add(this.imgI2); - global::Gtk.Table.TableChild w494 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); - w494.TopAttach = ((uint)(14)); - w494.BottomAttach = ((uint)(15)); - w494.LeftAttach = ((uint)(2)); - w494.RightAttach = ((uint)(3)); - w494.XOptions = ((global::Gtk.AttachOptions)(4)); - w494.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w495 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w495.TopAttach = ((uint)(14)); + w495.BottomAttach = ((uint)(15)); + w495.LeftAttach = ((uint)(2)); + w495.RightAttach = ((uint)(3)); + w495.XOptions = ((global::Gtk.AttachOptions)(4)); + w495.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI20 = new global::Gtk.Image(); this.imgI20.WidthRequest = 50; this.imgI20.HeightRequest = 50; this.imgI20.Name = "imgI20"; this.tbUI.Add(this.imgI20); - global::Gtk.Table.TableChild w495 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); - w495.TopAttach = ((uint)(16)); - w495.BottomAttach = ((uint)(17)); - w495.LeftAttach = ((uint)(2)); - w495.RightAttach = ((uint)(3)); - w495.XOptions = ((global::Gtk.AttachOptions)(4)); - w495.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w496 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); + w496.TopAttach = ((uint)(16)); + w496.BottomAttach = ((uint)(17)); + w496.LeftAttach = ((uint)(2)); + w496.RightAttach = ((uint)(3)); + w496.XOptions = ((global::Gtk.AttachOptions)(4)); + w496.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI21 = new global::Gtk.Image(); this.imgI21.WidthRequest = 50; this.imgI21.HeightRequest = 50; this.imgI21.Name = "imgI21"; this.tbUI.Add(this.imgI21); - global::Gtk.Table.TableChild w496 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); - w496.TopAttach = ((uint)(16)); - w496.BottomAttach = ((uint)(17)); - w496.LeftAttach = ((uint)(3)); - w496.RightAttach = ((uint)(4)); - w496.XOptions = ((global::Gtk.AttachOptions)(4)); - w496.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w497 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); + w497.TopAttach = ((uint)(16)); + w497.BottomAttach = ((uint)(17)); + w497.LeftAttach = ((uint)(3)); + w497.RightAttach = ((uint)(4)); + w497.XOptions = ((global::Gtk.AttachOptions)(4)); + w497.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI22 = new global::Gtk.Image(); this.imgI22.WidthRequest = 50; this.imgI22.HeightRequest = 50; this.imgI22.Name = "imgI22"; this.tbUI.Add(this.imgI22); - global::Gtk.Table.TableChild w497 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); - w497.TopAttach = ((uint)(16)); - w497.BottomAttach = ((uint)(17)); - w497.LeftAttach = ((uint)(4)); - w497.RightAttach = ((uint)(5)); - w497.XOptions = ((global::Gtk.AttachOptions)(4)); - w497.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w498 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); + w498.TopAttach = ((uint)(16)); + w498.BottomAttach = ((uint)(17)); + w498.LeftAttach = ((uint)(4)); + w498.RightAttach = ((uint)(5)); + w498.XOptions = ((global::Gtk.AttachOptions)(4)); + w498.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI23 = new global::Gtk.Image(); this.imgI23.WidthRequest = 50; this.imgI23.HeightRequest = 50; this.imgI23.Name = "imgI23"; this.tbUI.Add(this.imgI23); - global::Gtk.Table.TableChild w498 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); - w498.TopAttach = ((uint)(16)); - w498.BottomAttach = ((uint)(17)); - w498.LeftAttach = ((uint)(5)); - w498.RightAttach = ((uint)(6)); - w498.XOptions = ((global::Gtk.AttachOptions)(4)); - w498.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w499 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); + w499.TopAttach = ((uint)(16)); + w499.BottomAttach = ((uint)(17)); + w499.LeftAttach = ((uint)(5)); + w499.RightAttach = ((uint)(6)); + w499.XOptions = ((global::Gtk.AttachOptions)(4)); + w499.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI24 = new global::Gtk.Image(); this.imgI24.WidthRequest = 50; this.imgI24.HeightRequest = 50; this.imgI24.Name = "imgI24"; this.tbUI.Add(this.imgI24); - global::Gtk.Table.TableChild w499 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); - w499.TopAttach = ((uint)(16)); - w499.BottomAttach = ((uint)(17)); - w499.LeftAttach = ((uint)(6)); - w499.RightAttach = ((uint)(7)); - w499.XOptions = ((global::Gtk.AttachOptions)(4)); - w499.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w500 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); + w500.TopAttach = ((uint)(16)); + w500.BottomAttach = ((uint)(17)); + w500.LeftAttach = ((uint)(6)); + w500.RightAttach = ((uint)(7)); + w500.XOptions = ((global::Gtk.AttachOptions)(4)); + w500.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI25 = new global::Gtk.Image(); this.imgI25.WidthRequest = 50; this.imgI25.HeightRequest = 50; this.imgI25.Name = "imgI25"; this.tbUI.Add(this.imgI25); - global::Gtk.Table.TableChild w500 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); - w500.TopAttach = ((uint)(16)); - w500.BottomAttach = ((uint)(17)); - w500.LeftAttach = ((uint)(7)); - w500.RightAttach = ((uint)(8)); - w500.XOptions = ((global::Gtk.AttachOptions)(4)); - w500.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w501 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); + w501.TopAttach = ((uint)(16)); + w501.BottomAttach = ((uint)(17)); + w501.LeftAttach = ((uint)(7)); + w501.RightAttach = ((uint)(8)); + w501.XOptions = ((global::Gtk.AttachOptions)(4)); + w501.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI26 = new global::Gtk.Image(); this.imgI26.WidthRequest = 50; this.imgI26.HeightRequest = 50; this.imgI26.Name = "imgI26"; this.tbUI.Add(this.imgI26); - global::Gtk.Table.TableChild w501 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI26])); - w501.TopAttach = ((uint)(16)); - w501.BottomAttach = ((uint)(17)); - w501.LeftAttach = ((uint)(8)); - w501.RightAttach = ((uint)(9)); - w501.XOptions = ((global::Gtk.AttachOptions)(4)); - w501.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w502 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI26])); + w502.TopAttach = ((uint)(16)); + w502.BottomAttach = ((uint)(17)); + w502.LeftAttach = ((uint)(8)); + w502.RightAttach = ((uint)(9)); + w502.XOptions = ((global::Gtk.AttachOptions)(4)); + w502.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI27 = new global::Gtk.Image(); this.imgI27.WidthRequest = 50; this.imgI27.HeightRequest = 50; this.imgI27.Name = "imgI27"; this.tbUI.Add(this.imgI27); - global::Gtk.Table.TableChild w502 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI27])); - w502.TopAttach = ((uint)(16)); - w502.BottomAttach = ((uint)(17)); - w502.LeftAttach = ((uint)(9)); - w502.RightAttach = ((uint)(10)); - w502.XOptions = ((global::Gtk.AttachOptions)(4)); - w502.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w503 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI27])); + w503.TopAttach = ((uint)(16)); + w503.BottomAttach = ((uint)(17)); + w503.LeftAttach = ((uint)(9)); + w503.RightAttach = ((uint)(10)); + w503.XOptions = ((global::Gtk.AttachOptions)(4)); + w503.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI28 = new global::Gtk.Image(); this.imgI28.WidthRequest = 50; this.imgI28.HeightRequest = 50; this.imgI28.Name = "imgI28"; this.tbUI.Add(this.imgI28); - global::Gtk.Table.TableChild w503 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI28])); - w503.TopAttach = ((uint)(17)); - w503.BottomAttach = ((uint)(18)); - w503.LeftAttach = ((uint)(1)); - w503.RightAttach = ((uint)(2)); - w503.XOptions = ((global::Gtk.AttachOptions)(4)); - w503.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w504 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI28])); + w504.TopAttach = ((uint)(17)); + w504.BottomAttach = ((uint)(18)); + w504.LeftAttach = ((uint)(1)); + w504.RightAttach = ((uint)(2)); + w504.XOptions = ((global::Gtk.AttachOptions)(4)); + w504.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI29 = new global::Gtk.Image(); this.imgI29.WidthRequest = 50; this.imgI29.HeightRequest = 50; this.imgI29.Name = "imgI29"; this.tbUI.Add(this.imgI29); - global::Gtk.Table.TableChild w504 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI29])); - w504.TopAttach = ((uint)(17)); - w504.BottomAttach = ((uint)(18)); - w504.LeftAttach = ((uint)(2)); - w504.RightAttach = ((uint)(3)); - w504.XOptions = ((global::Gtk.AttachOptions)(4)); - w504.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w505 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI29])); + w505.TopAttach = ((uint)(17)); + w505.BottomAttach = ((uint)(18)); + w505.LeftAttach = ((uint)(2)); + w505.RightAttach = ((uint)(3)); + w505.XOptions = ((global::Gtk.AttachOptions)(4)); + w505.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI3 = new global::Gtk.Image(); this.imgI3.WidthRequest = 50; this.imgI3.HeightRequest = 50; this.imgI3.Name = "imgI3"; this.tbUI.Add(this.imgI3); - global::Gtk.Table.TableChild w505 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); - w505.TopAttach = ((uint)(14)); - w505.BottomAttach = ((uint)(15)); - w505.LeftAttach = ((uint)(3)); - w505.RightAttach = ((uint)(4)); - w505.XOptions = ((global::Gtk.AttachOptions)(4)); - w505.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w506 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w506.TopAttach = ((uint)(14)); + w506.BottomAttach = ((uint)(15)); + w506.LeftAttach = ((uint)(3)); + w506.RightAttach = ((uint)(4)); + w506.XOptions = ((global::Gtk.AttachOptions)(4)); + w506.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI30 = new global::Gtk.Image(); this.imgI30.WidthRequest = 50; this.imgI30.HeightRequest = 50; this.imgI30.Name = "imgI30"; this.tbUI.Add(this.imgI30); - global::Gtk.Table.TableChild w506 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI30])); - w506.TopAttach = ((uint)(17)); - w506.BottomAttach = ((uint)(18)); - w506.LeftAttach = ((uint)(3)); - w506.RightAttach = ((uint)(4)); - w506.XOptions = ((global::Gtk.AttachOptions)(4)); - w506.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w507 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI30])); + w507.TopAttach = ((uint)(17)); + w507.BottomAttach = ((uint)(18)); + w507.LeftAttach = ((uint)(3)); + w507.RightAttach = ((uint)(4)); + w507.XOptions = ((global::Gtk.AttachOptions)(4)); + w507.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI31 = new global::Gtk.Image(); this.imgI31.WidthRequest = 50; this.imgI31.HeightRequest = 50; this.imgI31.Name = "imgI31"; this.tbUI.Add(this.imgI31); - global::Gtk.Table.TableChild w507 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI31])); - w507.TopAttach = ((uint)(17)); - w507.BottomAttach = ((uint)(18)); - w507.LeftAttach = ((uint)(4)); - w507.RightAttach = ((uint)(5)); - w507.XOptions = ((global::Gtk.AttachOptions)(4)); - w507.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w508 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI31])); + w508.TopAttach = ((uint)(17)); + w508.BottomAttach = ((uint)(18)); + w508.LeftAttach = ((uint)(4)); + w508.RightAttach = ((uint)(5)); + w508.XOptions = ((global::Gtk.AttachOptions)(4)); + w508.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI32 = new global::Gtk.Image(); this.imgI32.WidthRequest = 50; this.imgI32.HeightRequest = 50; this.imgI32.Name = "imgI32"; this.tbUI.Add(this.imgI32); - global::Gtk.Table.TableChild w508 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI32])); - w508.TopAttach = ((uint)(17)); - w508.BottomAttach = ((uint)(18)); - w508.LeftAttach = ((uint)(5)); - w508.RightAttach = ((uint)(6)); - w508.XOptions = ((global::Gtk.AttachOptions)(4)); - w508.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w509 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI32])); + w509.TopAttach = ((uint)(17)); + w509.BottomAttach = ((uint)(18)); + w509.LeftAttach = ((uint)(5)); + w509.RightAttach = ((uint)(6)); + w509.XOptions = ((global::Gtk.AttachOptions)(4)); + w509.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI33 = new global::Gtk.Image(); this.imgI33.WidthRequest = 50; this.imgI33.HeightRequest = 50; this.imgI33.Name = "imgI33"; this.tbUI.Add(this.imgI33); - global::Gtk.Table.TableChild w509 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI33])); - w509.TopAttach = ((uint)(17)); - w509.BottomAttach = ((uint)(18)); - w509.LeftAttach = ((uint)(6)); - w509.RightAttach = ((uint)(7)); - w509.XOptions = ((global::Gtk.AttachOptions)(4)); - w509.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w510 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI33])); + w510.TopAttach = ((uint)(17)); + w510.BottomAttach = ((uint)(18)); + w510.LeftAttach = ((uint)(6)); + w510.RightAttach = ((uint)(7)); + w510.XOptions = ((global::Gtk.AttachOptions)(4)); + w510.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI34 = new global::Gtk.Image(); this.imgI34.WidthRequest = 50; this.imgI34.HeightRequest = 50; this.imgI34.Name = "imgI34"; this.tbUI.Add(this.imgI34); - global::Gtk.Table.TableChild w510 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI34])); - w510.TopAttach = ((uint)(17)); - w510.BottomAttach = ((uint)(18)); - w510.LeftAttach = ((uint)(7)); - w510.RightAttach = ((uint)(8)); - w510.XOptions = ((global::Gtk.AttachOptions)(4)); - w510.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w511 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI34])); + w511.TopAttach = ((uint)(17)); + w511.BottomAttach = ((uint)(18)); + w511.LeftAttach = ((uint)(7)); + w511.RightAttach = ((uint)(8)); + w511.XOptions = ((global::Gtk.AttachOptions)(4)); + w511.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI35 = new global::Gtk.Image(); this.imgI35.WidthRequest = 50; this.imgI35.HeightRequest = 50; this.imgI35.Name = "imgI35"; this.tbUI.Add(this.imgI35); - global::Gtk.Table.TableChild w511 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI35])); - w511.TopAttach = ((uint)(17)); - w511.BottomAttach = ((uint)(18)); - w511.LeftAttach = ((uint)(8)); - w511.RightAttach = ((uint)(9)); - w511.XOptions = ((global::Gtk.AttachOptions)(4)); - w511.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w512 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI35])); + w512.TopAttach = ((uint)(17)); + w512.BottomAttach = ((uint)(18)); + w512.LeftAttach = ((uint)(8)); + w512.RightAttach = ((uint)(9)); + w512.XOptions = ((global::Gtk.AttachOptions)(4)); + w512.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI36 = new global::Gtk.Image(); this.imgI36.WidthRequest = 50; this.imgI36.HeightRequest = 50; this.imgI36.Name = "imgI36"; this.tbUI.Add(this.imgI36); - global::Gtk.Table.TableChild w512 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI36])); - w512.TopAttach = ((uint)(17)); - w512.BottomAttach = ((uint)(18)); - w512.LeftAttach = ((uint)(9)); - w512.RightAttach = ((uint)(10)); - w512.XOptions = ((global::Gtk.AttachOptions)(4)); - w512.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w513 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI36])); + w513.TopAttach = ((uint)(17)); + w513.BottomAttach = ((uint)(18)); + w513.LeftAttach = ((uint)(9)); + w513.RightAttach = ((uint)(10)); + w513.XOptions = ((global::Gtk.AttachOptions)(4)); + w513.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI37 = new global::Gtk.Image(); this.imgI37.WidthRequest = 50; this.imgI37.HeightRequest = 50; this.imgI37.Name = "imgI37"; this.tbUI.Add(this.imgI37); - global::Gtk.Table.TableChild w513 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI37])); - w513.TopAttach = ((uint)(18)); - w513.BottomAttach = ((uint)(19)); - w513.LeftAttach = ((uint)(1)); - w513.RightAttach = ((uint)(2)); - w513.XOptions = ((global::Gtk.AttachOptions)(4)); - w513.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w514 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI37])); + w514.TopAttach = ((uint)(18)); + w514.BottomAttach = ((uint)(19)); + w514.LeftAttach = ((uint)(1)); + w514.RightAttach = ((uint)(2)); + w514.XOptions = ((global::Gtk.AttachOptions)(4)); + w514.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI38 = new global::Gtk.Image(); this.imgI38.WidthRequest = 50; this.imgI38.HeightRequest = 50; this.imgI38.Name = "imgI38"; this.tbUI.Add(this.imgI38); - global::Gtk.Table.TableChild w514 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI38])); - w514.TopAttach = ((uint)(18)); - w514.BottomAttach = ((uint)(19)); - w514.LeftAttach = ((uint)(2)); - w514.RightAttach = ((uint)(3)); - w514.XOptions = ((global::Gtk.AttachOptions)(4)); - w514.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w515 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI38])); + w515.TopAttach = ((uint)(18)); + w515.BottomAttach = ((uint)(19)); + w515.LeftAttach = ((uint)(2)); + w515.RightAttach = ((uint)(3)); + w515.XOptions = ((global::Gtk.AttachOptions)(4)); + w515.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI39 = new global::Gtk.Image(); this.imgI39.WidthRequest = 50; this.imgI39.HeightRequest = 50; this.imgI39.Name = "imgI39"; this.tbUI.Add(this.imgI39); - global::Gtk.Table.TableChild w515 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI39])); - w515.TopAttach = ((uint)(18)); - w515.BottomAttach = ((uint)(19)); - w515.LeftAttach = ((uint)(3)); - w515.RightAttach = ((uint)(4)); - w515.XOptions = ((global::Gtk.AttachOptions)(4)); - w515.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w516 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI39])); + w516.TopAttach = ((uint)(18)); + w516.BottomAttach = ((uint)(19)); + w516.LeftAttach = ((uint)(3)); + w516.RightAttach = ((uint)(4)); + w516.XOptions = ((global::Gtk.AttachOptions)(4)); + w516.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI4 = new global::Gtk.Image(); this.imgI4.WidthRequest = 50; this.imgI4.HeightRequest = 50; this.imgI4.Name = "imgI4"; this.tbUI.Add(this.imgI4); - global::Gtk.Table.TableChild w516 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); - w516.TopAttach = ((uint)(14)); - w516.BottomAttach = ((uint)(15)); - w516.LeftAttach = ((uint)(4)); - w516.RightAttach = ((uint)(5)); - w516.XOptions = ((global::Gtk.AttachOptions)(4)); - w516.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w517 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w517.TopAttach = ((uint)(14)); + w517.BottomAttach = ((uint)(15)); + w517.LeftAttach = ((uint)(4)); + w517.RightAttach = ((uint)(5)); + w517.XOptions = ((global::Gtk.AttachOptions)(4)); + w517.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI40 = new global::Gtk.Image(); this.imgI40.WidthRequest = 50; this.imgI40.HeightRequest = 50; this.imgI40.Name = "imgI40"; this.tbUI.Add(this.imgI40); - global::Gtk.Table.TableChild w517 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI40])); - w517.TopAttach = ((uint)(18)); - w517.BottomAttach = ((uint)(19)); - w517.LeftAttach = ((uint)(4)); - w517.RightAttach = ((uint)(5)); - w517.XOptions = ((global::Gtk.AttachOptions)(4)); - w517.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w518 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI40])); + w518.TopAttach = ((uint)(18)); + w518.BottomAttach = ((uint)(19)); + w518.LeftAttach = ((uint)(4)); + w518.RightAttach = ((uint)(5)); + w518.XOptions = ((global::Gtk.AttachOptions)(4)); + w518.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI41 = new global::Gtk.Image(); this.imgI41.WidthRequest = 50; this.imgI41.HeightRequest = 50; this.imgI41.Name = "imgI41"; this.tbUI.Add(this.imgI41); - global::Gtk.Table.TableChild w518 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI41])); - w518.TopAttach = ((uint)(18)); - w518.BottomAttach = ((uint)(19)); - w518.LeftAttach = ((uint)(5)); - w518.RightAttach = ((uint)(6)); - w518.XOptions = ((global::Gtk.AttachOptions)(4)); - w518.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w519 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI41])); + w519.TopAttach = ((uint)(18)); + w519.BottomAttach = ((uint)(19)); + w519.LeftAttach = ((uint)(5)); + w519.RightAttach = ((uint)(6)); + w519.XOptions = ((global::Gtk.AttachOptions)(4)); + w519.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI42 = new global::Gtk.Image(); this.imgI42.WidthRequest = 50; this.imgI42.HeightRequest = 50; this.imgI42.Name = "imgI42"; this.tbUI.Add(this.imgI42); - global::Gtk.Table.TableChild w519 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI42])); - w519.TopAttach = ((uint)(18)); - w519.BottomAttach = ((uint)(19)); - w519.LeftAttach = ((uint)(6)); - w519.RightAttach = ((uint)(7)); - w519.XOptions = ((global::Gtk.AttachOptions)(4)); - w519.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w520 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI42])); + w520.TopAttach = ((uint)(18)); + w520.BottomAttach = ((uint)(19)); + w520.LeftAttach = ((uint)(6)); + w520.RightAttach = ((uint)(7)); + w520.XOptions = ((global::Gtk.AttachOptions)(4)); + w520.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI43 = new global::Gtk.Image(); this.imgI43.WidthRequest = 50; this.imgI43.HeightRequest = 50; this.imgI43.Name = "imgI43"; this.tbUI.Add(this.imgI43); - global::Gtk.Table.TableChild w520 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI43])); - w520.TopAttach = ((uint)(18)); - w520.BottomAttach = ((uint)(19)); - w520.LeftAttach = ((uint)(7)); - w520.RightAttach = ((uint)(8)); - w520.XOptions = ((global::Gtk.AttachOptions)(4)); - w520.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w521 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI43])); + w521.TopAttach = ((uint)(18)); + w521.BottomAttach = ((uint)(19)); + w521.LeftAttach = ((uint)(7)); + w521.RightAttach = ((uint)(8)); + w521.XOptions = ((global::Gtk.AttachOptions)(4)); + w521.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI44 = new global::Gtk.Image(); this.imgI44.WidthRequest = 50; this.imgI44.HeightRequest = 50; this.imgI44.Name = "imgI44"; this.tbUI.Add(this.imgI44); - global::Gtk.Table.TableChild w521 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI44])); - w521.TopAttach = ((uint)(18)); - w521.BottomAttach = ((uint)(19)); - w521.LeftAttach = ((uint)(8)); - w521.RightAttach = ((uint)(9)); - w521.XOptions = ((global::Gtk.AttachOptions)(4)); - w521.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w522 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI44])); + w522.TopAttach = ((uint)(18)); + w522.BottomAttach = ((uint)(19)); + w522.LeftAttach = ((uint)(8)); + w522.RightAttach = ((uint)(9)); + w522.XOptions = ((global::Gtk.AttachOptions)(4)); + w522.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI45 = new global::Gtk.Image(); this.imgI45.WidthRequest = 50; this.imgI45.HeightRequest = 50; this.imgI45.Name = "imgI45"; this.tbUI.Add(this.imgI45); - global::Gtk.Table.TableChild w522 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI45])); - w522.TopAttach = ((uint)(18)); - w522.BottomAttach = ((uint)(19)); - w522.LeftAttach = ((uint)(9)); - w522.RightAttach = ((uint)(10)); - w522.XOptions = ((global::Gtk.AttachOptions)(4)); - w522.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w523 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI45])); + w523.TopAttach = ((uint)(18)); + w523.BottomAttach = ((uint)(19)); + w523.LeftAttach = ((uint)(9)); + w523.RightAttach = ((uint)(10)); + w523.XOptions = ((global::Gtk.AttachOptions)(4)); + w523.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI46 = new global::Gtk.Image(); this.imgI46.WidthRequest = 50; this.imgI46.HeightRequest = 50; this.imgI46.Name = "imgI46"; this.tbUI.Add(this.imgI46); - global::Gtk.Table.TableChild w523 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI46])); - w523.TopAttach = ((uint)(19)); - w523.BottomAttach = ((uint)(20)); - w523.LeftAttach = ((uint)(1)); - w523.RightAttach = ((uint)(2)); - w523.XOptions = ((global::Gtk.AttachOptions)(4)); - w523.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w524 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI46])); + w524.TopAttach = ((uint)(19)); + w524.BottomAttach = ((uint)(20)); + w524.LeftAttach = ((uint)(1)); + w524.RightAttach = ((uint)(2)); + w524.XOptions = ((global::Gtk.AttachOptions)(4)); + w524.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI47 = new global::Gtk.Image(); this.imgI47.WidthRequest = 50; this.imgI47.HeightRequest = 50; this.imgI47.Name = "imgI47"; this.tbUI.Add(this.imgI47); - global::Gtk.Table.TableChild w524 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI47])); - w524.TopAttach = ((uint)(19)); - w524.BottomAttach = ((uint)(20)); - w524.LeftAttach = ((uint)(2)); - w524.RightAttach = ((uint)(3)); - w524.XOptions = ((global::Gtk.AttachOptions)(4)); - w524.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w525 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI47])); + w525.TopAttach = ((uint)(19)); + w525.BottomAttach = ((uint)(20)); + w525.LeftAttach = ((uint)(2)); + w525.RightAttach = ((uint)(3)); + w525.XOptions = ((global::Gtk.AttachOptions)(4)); + w525.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI48 = new global::Gtk.Image(); this.imgI48.WidthRequest = 50; this.imgI48.HeightRequest = 50; this.imgI48.Name = "imgI48"; this.tbUI.Add(this.imgI48); - global::Gtk.Table.TableChild w525 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI48])); - w525.TopAttach = ((uint)(19)); - w525.BottomAttach = ((uint)(20)); - w525.LeftAttach = ((uint)(3)); - w525.RightAttach = ((uint)(4)); - w525.XOptions = ((global::Gtk.AttachOptions)(4)); - w525.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w526 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI48])); + w526.TopAttach = ((uint)(19)); + w526.BottomAttach = ((uint)(20)); + w526.LeftAttach = ((uint)(3)); + w526.RightAttach = ((uint)(4)); + w526.XOptions = ((global::Gtk.AttachOptions)(4)); + w526.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI49 = new global::Gtk.Image(); this.imgI49.WidthRequest = 50; this.imgI49.HeightRequest = 50; this.imgI49.Name = "imgI49"; this.tbUI.Add(this.imgI49); - global::Gtk.Table.TableChild w526 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI49])); - w526.TopAttach = ((uint)(19)); - w526.BottomAttach = ((uint)(20)); - w526.LeftAttach = ((uint)(4)); - w526.RightAttach = ((uint)(5)); - w526.XOptions = ((global::Gtk.AttachOptions)(4)); - w526.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w527 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI49])); + w527.TopAttach = ((uint)(19)); + w527.BottomAttach = ((uint)(20)); + w527.LeftAttach = ((uint)(4)); + w527.RightAttach = ((uint)(5)); + w527.XOptions = ((global::Gtk.AttachOptions)(4)); + w527.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI5 = new global::Gtk.Image(); this.imgI5.WidthRequest = 50; this.imgI5.HeightRequest = 50; this.imgI5.Name = "imgI5"; this.tbUI.Add(this.imgI5); - global::Gtk.Table.TableChild w527 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); - w527.TopAttach = ((uint)(14)); - w527.BottomAttach = ((uint)(15)); - w527.LeftAttach = ((uint)(5)); - w527.RightAttach = ((uint)(6)); - w527.XOptions = ((global::Gtk.AttachOptions)(4)); - w527.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w528 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w528.TopAttach = ((uint)(14)); + w528.BottomAttach = ((uint)(15)); + w528.LeftAttach = ((uint)(5)); + w528.RightAttach = ((uint)(6)); + w528.XOptions = ((global::Gtk.AttachOptions)(4)); + w528.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI50 = new global::Gtk.Image(); this.imgI50.WidthRequest = 50; this.imgI50.HeightRequest = 50; this.imgI50.Name = "imgI50"; this.tbUI.Add(this.imgI50); - global::Gtk.Table.TableChild w528 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI50])); - w528.TopAttach = ((uint)(19)); - w528.BottomAttach = ((uint)(20)); - w528.LeftAttach = ((uint)(5)); - w528.RightAttach = ((uint)(6)); - w528.XOptions = ((global::Gtk.AttachOptions)(4)); - w528.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w529 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI50])); + w529.TopAttach = ((uint)(19)); + w529.BottomAttach = ((uint)(20)); + w529.LeftAttach = ((uint)(5)); + w529.RightAttach = ((uint)(6)); + w529.XOptions = ((global::Gtk.AttachOptions)(4)); + w529.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI51 = new global::Gtk.Image(); this.imgI51.WidthRequest = 50; this.imgI51.HeightRequest = 50; this.imgI51.Name = "imgI51"; this.tbUI.Add(this.imgI51); - global::Gtk.Table.TableChild w529 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI51])); - w529.TopAttach = ((uint)(19)); - w529.BottomAttach = ((uint)(20)); - w529.LeftAttach = ((uint)(6)); - w529.RightAttach = ((uint)(7)); - w529.XOptions = ((global::Gtk.AttachOptions)(4)); - w529.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w530 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI51])); + w530.TopAttach = ((uint)(19)); + w530.BottomAttach = ((uint)(20)); + w530.LeftAttach = ((uint)(6)); + w530.RightAttach = ((uint)(7)); + w530.XOptions = ((global::Gtk.AttachOptions)(4)); + w530.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI52 = new global::Gtk.Image(); this.imgI52.WidthRequest = 50; this.imgI52.HeightRequest = 50; this.imgI52.Name = "imgI52"; this.tbUI.Add(this.imgI52); - global::Gtk.Table.TableChild w530 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI52])); - w530.TopAttach = ((uint)(19)); - w530.BottomAttach = ((uint)(20)); - w530.LeftAttach = ((uint)(7)); - w530.RightAttach = ((uint)(8)); - w530.XOptions = ((global::Gtk.AttachOptions)(4)); - w530.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w531 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI52])); + w531.TopAttach = ((uint)(19)); + w531.BottomAttach = ((uint)(20)); + w531.LeftAttach = ((uint)(7)); + w531.RightAttach = ((uint)(8)); + w531.XOptions = ((global::Gtk.AttachOptions)(4)); + w531.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI53 = new global::Gtk.Image(); this.imgI53.WidthRequest = 50; this.imgI53.HeightRequest = 50; this.imgI53.Name = "imgI53"; this.tbUI.Add(this.imgI53); - global::Gtk.Table.TableChild w531 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI53])); - w531.TopAttach = ((uint)(19)); - w531.BottomAttach = ((uint)(20)); - w531.LeftAttach = ((uint)(8)); - w531.RightAttach = ((uint)(9)); - w531.XOptions = ((global::Gtk.AttachOptions)(4)); - w531.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w532 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI53])); + w532.TopAttach = ((uint)(19)); + w532.BottomAttach = ((uint)(20)); + w532.LeftAttach = ((uint)(8)); + w532.RightAttach = ((uint)(9)); + w532.XOptions = ((global::Gtk.AttachOptions)(4)); + w532.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI54 = new global::Gtk.Image(); this.imgI54.WidthRequest = 50; this.imgI54.HeightRequest = 50; this.imgI54.Name = "imgI54"; this.tbUI.Add(this.imgI54); - global::Gtk.Table.TableChild w532 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI54])); - w532.TopAttach = ((uint)(19)); - w532.BottomAttach = ((uint)(20)); - w532.LeftAttach = ((uint)(9)); - w532.RightAttach = ((uint)(10)); - w532.XOptions = ((global::Gtk.AttachOptions)(4)); - w532.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w533 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI54])); + w533.TopAttach = ((uint)(19)); + w533.BottomAttach = ((uint)(20)); + w533.LeftAttach = ((uint)(9)); + w533.RightAttach = ((uint)(10)); + w533.XOptions = ((global::Gtk.AttachOptions)(4)); + w533.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI55 = new global::Gtk.Image(); this.imgI55.WidthRequest = 50; this.imgI55.HeightRequest = 50; this.imgI55.Name = "imgI55"; this.tbUI.Add(this.imgI55); - global::Gtk.Table.TableChild w533 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI55])); - w533.TopAttach = ((uint)(20)); - w533.BottomAttach = ((uint)(21)); - w533.LeftAttach = ((uint)(1)); - w533.RightAttach = ((uint)(2)); - w533.XOptions = ((global::Gtk.AttachOptions)(4)); - w533.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w534 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI55])); + w534.TopAttach = ((uint)(20)); + w534.BottomAttach = ((uint)(21)); + w534.LeftAttach = ((uint)(1)); + w534.RightAttach = ((uint)(2)); + w534.XOptions = ((global::Gtk.AttachOptions)(4)); + w534.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI56 = new global::Gtk.Image(); this.imgI56.WidthRequest = 50; this.imgI56.HeightRequest = 50; this.imgI56.Name = "imgI56"; this.tbUI.Add(this.imgI56); - global::Gtk.Table.TableChild w534 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI56])); - w534.TopAttach = ((uint)(20)); - w534.BottomAttach = ((uint)(21)); - w534.LeftAttach = ((uint)(2)); - w534.RightAttach = ((uint)(3)); - w534.XOptions = ((global::Gtk.AttachOptions)(4)); - w534.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w535 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI56])); + w535.TopAttach = ((uint)(20)); + w535.BottomAttach = ((uint)(21)); + w535.LeftAttach = ((uint)(2)); + w535.RightAttach = ((uint)(3)); + w535.XOptions = ((global::Gtk.AttachOptions)(4)); + w535.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI57 = new global::Gtk.Image(); this.imgI57.WidthRequest = 50; this.imgI57.HeightRequest = 50; this.imgI57.Name = "imgI57"; this.tbUI.Add(this.imgI57); - global::Gtk.Table.TableChild w535 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI57])); - w535.TopAttach = ((uint)(20)); - w535.BottomAttach = ((uint)(21)); - w535.LeftAttach = ((uint)(3)); - w535.RightAttach = ((uint)(4)); - w535.XOptions = ((global::Gtk.AttachOptions)(4)); - w535.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w536 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI57])); + w536.TopAttach = ((uint)(20)); + w536.BottomAttach = ((uint)(21)); + w536.LeftAttach = ((uint)(3)); + w536.RightAttach = ((uint)(4)); + w536.XOptions = ((global::Gtk.AttachOptions)(4)); + w536.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI58 = new global::Gtk.Image(); this.imgI58.WidthRequest = 50; this.imgI58.HeightRequest = 50; this.imgI58.Name = "imgI58"; this.tbUI.Add(this.imgI58); - global::Gtk.Table.TableChild w536 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI58])); - w536.TopAttach = ((uint)(20)); - w536.BottomAttach = ((uint)(21)); - w536.LeftAttach = ((uint)(4)); - w536.RightAttach = ((uint)(5)); - w536.XOptions = ((global::Gtk.AttachOptions)(4)); - w536.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w537 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI58])); + w537.TopAttach = ((uint)(20)); + w537.BottomAttach = ((uint)(21)); + w537.LeftAttach = ((uint)(4)); + w537.RightAttach = ((uint)(5)); + w537.XOptions = ((global::Gtk.AttachOptions)(4)); + w537.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI59 = new global::Gtk.Image(); this.imgI59.WidthRequest = 50; this.imgI59.HeightRequest = 50; this.imgI59.Name = "imgI59"; this.tbUI.Add(this.imgI59); - global::Gtk.Table.TableChild w537 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI59])); - w537.TopAttach = ((uint)(20)); - w537.BottomAttach = ((uint)(21)); - w537.LeftAttach = ((uint)(5)); - w537.RightAttach = ((uint)(6)); - w537.XOptions = ((global::Gtk.AttachOptions)(4)); - w537.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w538 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI59])); + w538.TopAttach = ((uint)(20)); + w538.BottomAttach = ((uint)(21)); + w538.LeftAttach = ((uint)(5)); + w538.RightAttach = ((uint)(6)); + w538.XOptions = ((global::Gtk.AttachOptions)(4)); + w538.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI6 = new global::Gtk.Image(); this.imgI6.WidthRequest = 50; this.imgI6.HeightRequest = 50; this.imgI6.Name = "imgI6"; this.tbUI.Add(this.imgI6); - global::Gtk.Table.TableChild w538 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); - w538.TopAttach = ((uint)(14)); - w538.BottomAttach = ((uint)(15)); - w538.LeftAttach = ((uint)(6)); - w538.RightAttach = ((uint)(7)); - w538.XOptions = ((global::Gtk.AttachOptions)(4)); - w538.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w539 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); + w539.TopAttach = ((uint)(14)); + w539.BottomAttach = ((uint)(15)); + w539.LeftAttach = ((uint)(6)); + w539.RightAttach = ((uint)(7)); + w539.XOptions = ((global::Gtk.AttachOptions)(4)); + w539.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI60 = new global::Gtk.Image(); this.imgI60.WidthRequest = 50; this.imgI60.HeightRequest = 50; this.imgI60.Name = "imgI60"; this.tbUI.Add(this.imgI60); - global::Gtk.Table.TableChild w539 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI60])); - w539.TopAttach = ((uint)(20)); - w539.BottomAttach = ((uint)(21)); - w539.LeftAttach = ((uint)(6)); - w539.RightAttach = ((uint)(7)); - w539.XOptions = ((global::Gtk.AttachOptions)(4)); - w539.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w540 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI60])); + w540.TopAttach = ((uint)(20)); + w540.BottomAttach = ((uint)(21)); + w540.LeftAttach = ((uint)(6)); + w540.RightAttach = ((uint)(7)); + w540.XOptions = ((global::Gtk.AttachOptions)(4)); + w540.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI61 = new global::Gtk.Image(); this.imgI61.WidthRequest = 50; this.imgI61.HeightRequest = 50; this.imgI61.Name = "imgI61"; this.tbUI.Add(this.imgI61); - global::Gtk.Table.TableChild w540 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI61])); - w540.TopAttach = ((uint)(20)); - w540.BottomAttach = ((uint)(21)); - w540.LeftAttach = ((uint)(7)); - w540.RightAttach = ((uint)(8)); - w540.XOptions = ((global::Gtk.AttachOptions)(4)); - w540.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w541 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI61])); + w541.TopAttach = ((uint)(20)); + w541.BottomAttach = ((uint)(21)); + w541.LeftAttach = ((uint)(7)); + w541.RightAttach = ((uint)(8)); + w541.XOptions = ((global::Gtk.AttachOptions)(4)); + w541.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI62 = new global::Gtk.Image(); this.imgI62.WidthRequest = 50; this.imgI62.HeightRequest = 50; this.imgI62.Name = "imgI62"; this.tbUI.Add(this.imgI62); - global::Gtk.Table.TableChild w541 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI62])); - w541.TopAttach = ((uint)(20)); - w541.BottomAttach = ((uint)(21)); - w541.LeftAttach = ((uint)(8)); - w541.RightAttach = ((uint)(9)); - w541.XOptions = ((global::Gtk.AttachOptions)(4)); - w541.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w542 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI62])); + w542.TopAttach = ((uint)(20)); + w542.BottomAttach = ((uint)(21)); + w542.LeftAttach = ((uint)(8)); + w542.RightAttach = ((uint)(9)); + w542.XOptions = ((global::Gtk.AttachOptions)(4)); + w542.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI63 = new global::Gtk.Image(); this.imgI63.WidthRequest = 50; this.imgI63.HeightRequest = 50; this.imgI63.Name = "imgI63"; this.tbUI.Add(this.imgI63); - global::Gtk.Table.TableChild w542 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI63])); - w542.TopAttach = ((uint)(20)); - w542.BottomAttach = ((uint)(21)); - w542.LeftAttach = ((uint)(9)); - w542.RightAttach = ((uint)(10)); - w542.XOptions = ((global::Gtk.AttachOptions)(4)); - w542.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w543 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI63])); + w543.TopAttach = ((uint)(20)); + w543.BottomAttach = ((uint)(21)); + w543.LeftAttach = ((uint)(9)); + w543.RightAttach = ((uint)(10)); + w543.XOptions = ((global::Gtk.AttachOptions)(4)); + w543.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI64 = new global::Gtk.Image(); this.imgI64.WidthRequest = 50; this.imgI64.HeightRequest = 50; this.imgI64.Name = "imgI64"; this.tbUI.Add(this.imgI64); - global::Gtk.Table.TableChild w543 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI64])); - w543.TopAttach = ((uint)(21)); - w543.BottomAttach = ((uint)(22)); - w543.LeftAttach = ((uint)(1)); - w543.RightAttach = ((uint)(2)); - w543.XOptions = ((global::Gtk.AttachOptions)(4)); - w543.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w544 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI64])); + w544.TopAttach = ((uint)(21)); + w544.BottomAttach = ((uint)(22)); + w544.LeftAttach = ((uint)(1)); + w544.RightAttach = ((uint)(2)); + w544.XOptions = ((global::Gtk.AttachOptions)(4)); + w544.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI65 = new global::Gtk.Image(); this.imgI65.WidthRequest = 50; this.imgI65.HeightRequest = 50; this.imgI65.Name = "imgI65"; this.tbUI.Add(this.imgI65); - global::Gtk.Table.TableChild w544 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI65])); - w544.TopAttach = ((uint)(21)); - w544.BottomAttach = ((uint)(22)); - w544.LeftAttach = ((uint)(2)); - w544.RightAttach = ((uint)(3)); - w544.XOptions = ((global::Gtk.AttachOptions)(4)); - w544.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w545 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI65])); + w545.TopAttach = ((uint)(21)); + w545.BottomAttach = ((uint)(22)); + w545.LeftAttach = ((uint)(2)); + w545.RightAttach = ((uint)(3)); + w545.XOptions = ((global::Gtk.AttachOptions)(4)); + w545.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI66 = new global::Gtk.Image(); this.imgI66.WidthRequest = 50; this.imgI66.HeightRequest = 50; this.imgI66.Name = "imgI66"; this.tbUI.Add(this.imgI66); - global::Gtk.Table.TableChild w545 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI66])); - w545.TopAttach = ((uint)(21)); - w545.BottomAttach = ((uint)(22)); - w545.LeftAttach = ((uint)(3)); - w545.RightAttach = ((uint)(4)); - w545.XOptions = ((global::Gtk.AttachOptions)(4)); - w545.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w546 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI66])); + w546.TopAttach = ((uint)(21)); + w546.BottomAttach = ((uint)(22)); + w546.LeftAttach = ((uint)(3)); + w546.RightAttach = ((uint)(4)); + w546.XOptions = ((global::Gtk.AttachOptions)(4)); + w546.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI67 = new global::Gtk.Image(); this.imgI67.WidthRequest = 50; this.imgI67.HeightRequest = 50; this.imgI67.Name = "imgI67"; this.tbUI.Add(this.imgI67); - global::Gtk.Table.TableChild w546 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI67])); - w546.TopAttach = ((uint)(21)); - w546.BottomAttach = ((uint)(22)); - w546.LeftAttach = ((uint)(4)); - w546.RightAttach = ((uint)(5)); - w546.XOptions = ((global::Gtk.AttachOptions)(4)); - w546.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w547 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI67])); + w547.TopAttach = ((uint)(21)); + w547.BottomAttach = ((uint)(22)); + w547.LeftAttach = ((uint)(4)); + w547.RightAttach = ((uint)(5)); + w547.XOptions = ((global::Gtk.AttachOptions)(4)); + w547.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI68 = new global::Gtk.Image(); this.imgI68.WidthRequest = 50; this.imgI68.HeightRequest = 50; this.imgI68.Name = "imgI68"; this.tbUI.Add(this.imgI68); - global::Gtk.Table.TableChild w547 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI68])); - w547.TopAttach = ((uint)(21)); - w547.BottomAttach = ((uint)(22)); - w547.LeftAttach = ((uint)(5)); - w547.RightAttach = ((uint)(6)); - w547.XOptions = ((global::Gtk.AttachOptions)(4)); - w547.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w548 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI68])); + w548.TopAttach = ((uint)(21)); + w548.BottomAttach = ((uint)(22)); + w548.LeftAttach = ((uint)(5)); + w548.RightAttach = ((uint)(6)); + w548.XOptions = ((global::Gtk.AttachOptions)(4)); + w548.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI69 = new global::Gtk.Image(); this.imgI69.WidthRequest = 50; this.imgI69.HeightRequest = 50; this.imgI69.Name = "imgI69"; this.tbUI.Add(this.imgI69); - global::Gtk.Table.TableChild w548 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI69])); - w548.TopAttach = ((uint)(21)); - w548.BottomAttach = ((uint)(22)); - w548.LeftAttach = ((uint)(6)); - w548.RightAttach = ((uint)(7)); - w548.XOptions = ((global::Gtk.AttachOptions)(4)); - w548.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w549 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI69])); + w549.TopAttach = ((uint)(21)); + w549.BottomAttach = ((uint)(22)); + w549.LeftAttach = ((uint)(6)); + w549.RightAttach = ((uint)(7)); + w549.XOptions = ((global::Gtk.AttachOptions)(4)); + w549.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI7 = new global::Gtk.Image(); this.imgI7.WidthRequest = 50; this.imgI7.HeightRequest = 50; this.imgI7.Name = "imgI7"; this.tbUI.Add(this.imgI7); - global::Gtk.Table.TableChild w549 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); - w549.TopAttach = ((uint)(14)); - w549.BottomAttach = ((uint)(15)); - w549.LeftAttach = ((uint)(7)); - w549.RightAttach = ((uint)(8)); - w549.XOptions = ((global::Gtk.AttachOptions)(4)); - w549.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w550 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); + w550.TopAttach = ((uint)(14)); + w550.BottomAttach = ((uint)(15)); + w550.LeftAttach = ((uint)(7)); + w550.RightAttach = ((uint)(8)); + w550.XOptions = ((global::Gtk.AttachOptions)(4)); + w550.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI70 = new global::Gtk.Image(); this.imgI70.WidthRequest = 50; this.imgI70.HeightRequest = 50; this.imgI70.Name = "imgI70"; this.tbUI.Add(this.imgI70); - global::Gtk.Table.TableChild w550 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI70])); - w550.TopAttach = ((uint)(21)); - w550.BottomAttach = ((uint)(22)); - w550.LeftAttach = ((uint)(7)); - w550.RightAttach = ((uint)(8)); - w550.XOptions = ((global::Gtk.AttachOptions)(4)); - w550.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w551 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI70])); + w551.TopAttach = ((uint)(21)); + w551.BottomAttach = ((uint)(22)); + w551.LeftAttach = ((uint)(7)); + w551.RightAttach = ((uint)(8)); + w551.XOptions = ((global::Gtk.AttachOptions)(4)); + w551.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI71 = new global::Gtk.Image(); this.imgI71.WidthRequest = 50; this.imgI71.HeightRequest = 50; this.imgI71.Name = "imgI71"; this.tbUI.Add(this.imgI71); - global::Gtk.Table.TableChild w551 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI71])); - w551.TopAttach = ((uint)(21)); - w551.BottomAttach = ((uint)(22)); - w551.LeftAttach = ((uint)(8)); - w551.RightAttach = ((uint)(9)); - w551.XOptions = ((global::Gtk.AttachOptions)(4)); - w551.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w552 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI71])); + w552.TopAttach = ((uint)(21)); + w552.BottomAttach = ((uint)(22)); + w552.LeftAttach = ((uint)(8)); + w552.RightAttach = ((uint)(9)); + w552.XOptions = ((global::Gtk.AttachOptions)(4)); + w552.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI72 = new global::Gtk.Image(); this.imgI72.WidthRequest = 50; this.imgI72.HeightRequest = 50; this.imgI72.Name = "imgI72"; this.tbUI.Add(this.imgI72); - global::Gtk.Table.TableChild w552 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI72])); - w552.TopAttach = ((uint)(21)); - w552.BottomAttach = ((uint)(22)); - w552.LeftAttach = ((uint)(9)); - w552.RightAttach = ((uint)(10)); - w552.XOptions = ((global::Gtk.AttachOptions)(4)); - w552.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w553 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI72])); + w553.TopAttach = ((uint)(21)); + w553.BottomAttach = ((uint)(22)); + w553.LeftAttach = ((uint)(9)); + w553.RightAttach = ((uint)(10)); + w553.XOptions = ((global::Gtk.AttachOptions)(4)); + w553.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI73 = new global::Gtk.Image(); this.imgI73.WidthRequest = 50; this.imgI73.HeightRequest = 50; this.imgI73.Name = "imgI73"; this.tbUI.Add(this.imgI73); - global::Gtk.Table.TableChild w553 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI73])); - w553.TopAttach = ((uint)(22)); - w553.BottomAttach = ((uint)(23)); - w553.LeftAttach = ((uint)(1)); - w553.RightAttach = ((uint)(2)); - w553.XOptions = ((global::Gtk.AttachOptions)(4)); - w553.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w554 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI73])); + w554.TopAttach = ((uint)(22)); + w554.BottomAttach = ((uint)(23)); + w554.LeftAttach = ((uint)(1)); + w554.RightAttach = ((uint)(2)); + w554.XOptions = ((global::Gtk.AttachOptions)(4)); + w554.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI74 = new global::Gtk.Image(); this.imgI74.WidthRequest = 50; this.imgI74.HeightRequest = 50; this.imgI74.Name = "imgI74"; this.tbUI.Add(this.imgI74); - global::Gtk.Table.TableChild w554 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI74])); - w554.TopAttach = ((uint)(22)); - w554.BottomAttach = ((uint)(23)); - w554.LeftAttach = ((uint)(2)); - w554.RightAttach = ((uint)(3)); - w554.XOptions = ((global::Gtk.AttachOptions)(4)); - w554.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w555 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI74])); + w555.TopAttach = ((uint)(22)); + w555.BottomAttach = ((uint)(23)); + w555.LeftAttach = ((uint)(2)); + w555.RightAttach = ((uint)(3)); + w555.XOptions = ((global::Gtk.AttachOptions)(4)); + w555.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI75 = new global::Gtk.Image(); this.imgI75.WidthRequest = 50; this.imgI75.HeightRequest = 50; this.imgI75.Name = "imgI75"; this.tbUI.Add(this.imgI75); - global::Gtk.Table.TableChild w555 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI75])); - w555.TopAttach = ((uint)(22)); - w555.BottomAttach = ((uint)(23)); - w555.LeftAttach = ((uint)(3)); - w555.RightAttach = ((uint)(4)); - w555.XOptions = ((global::Gtk.AttachOptions)(4)); - w555.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w556 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI75])); + w556.TopAttach = ((uint)(22)); + w556.BottomAttach = ((uint)(23)); + w556.LeftAttach = ((uint)(3)); + w556.RightAttach = ((uint)(4)); + w556.XOptions = ((global::Gtk.AttachOptions)(4)); + w556.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI76 = new global::Gtk.Image(); this.imgI76.WidthRequest = 50; this.imgI76.HeightRequest = 50; this.imgI76.Name = "imgI76"; this.tbUI.Add(this.imgI76); - global::Gtk.Table.TableChild w556 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI76])); - w556.TopAttach = ((uint)(22)); - w556.BottomAttach = ((uint)(23)); - w556.LeftAttach = ((uint)(4)); - w556.RightAttach = ((uint)(5)); - w556.XOptions = ((global::Gtk.AttachOptions)(4)); - w556.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w557 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI76])); + w557.TopAttach = ((uint)(22)); + w557.BottomAttach = ((uint)(23)); + w557.LeftAttach = ((uint)(4)); + w557.RightAttach = ((uint)(5)); + w557.XOptions = ((global::Gtk.AttachOptions)(4)); + w557.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI77 = new global::Gtk.Image(); this.imgI77.WidthRequest = 50; this.imgI77.HeightRequest = 50; this.imgI77.Name = "imgI77"; this.tbUI.Add(this.imgI77); - global::Gtk.Table.TableChild w557 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI77])); - w557.TopAttach = ((uint)(22)); - w557.BottomAttach = ((uint)(23)); - w557.LeftAttach = ((uint)(5)); - w557.RightAttach = ((uint)(6)); - w557.XOptions = ((global::Gtk.AttachOptions)(4)); - w557.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w558 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI77])); + w558.TopAttach = ((uint)(22)); + w558.BottomAttach = ((uint)(23)); + w558.LeftAttach = ((uint)(5)); + w558.RightAttach = ((uint)(6)); + w558.XOptions = ((global::Gtk.AttachOptions)(4)); + w558.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI78 = new global::Gtk.Image(); this.imgI78.WidthRequest = 50; this.imgI78.HeightRequest = 50; this.imgI78.Name = "imgI78"; this.tbUI.Add(this.imgI78); - global::Gtk.Table.TableChild w558 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI78])); - w558.TopAttach = ((uint)(22)); - w558.BottomAttach = ((uint)(23)); - w558.LeftAttach = ((uint)(6)); - w558.RightAttach = ((uint)(7)); - w558.XOptions = ((global::Gtk.AttachOptions)(4)); - w558.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w559 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI78])); + w559.TopAttach = ((uint)(22)); + w559.BottomAttach = ((uint)(23)); + w559.LeftAttach = ((uint)(6)); + w559.RightAttach = ((uint)(7)); + w559.XOptions = ((global::Gtk.AttachOptions)(4)); + w559.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI79 = new global::Gtk.Image(); this.imgI79.WidthRequest = 50; this.imgI79.HeightRequest = 50; this.imgI79.Name = "imgI79"; this.tbUI.Add(this.imgI79); - global::Gtk.Table.TableChild w559 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI79])); - w559.TopAttach = ((uint)(22)); - w559.BottomAttach = ((uint)(23)); - w559.LeftAttach = ((uint)(7)); - w559.RightAttach = ((uint)(8)); - w559.XOptions = ((global::Gtk.AttachOptions)(4)); - w559.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w560 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI79])); + w560.TopAttach = ((uint)(22)); + w560.BottomAttach = ((uint)(23)); + w560.LeftAttach = ((uint)(7)); + w560.RightAttach = ((uint)(8)); + w560.XOptions = ((global::Gtk.AttachOptions)(4)); + w560.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI8 = new global::Gtk.Image(); this.imgI8.WidthRequest = 50; this.imgI8.HeightRequest = 50; this.imgI8.Name = "imgI8"; this.tbUI.Add(this.imgI8); - global::Gtk.Table.TableChild w560 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); - w560.TopAttach = ((uint)(14)); - w560.BottomAttach = ((uint)(15)); - w560.LeftAttach = ((uint)(8)); - w560.RightAttach = ((uint)(9)); - w560.XOptions = ((global::Gtk.AttachOptions)(4)); - w560.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w561 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); + w561.TopAttach = ((uint)(14)); + w561.BottomAttach = ((uint)(15)); + w561.LeftAttach = ((uint)(8)); + w561.RightAttach = ((uint)(9)); + w561.XOptions = ((global::Gtk.AttachOptions)(4)); + w561.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI80 = new global::Gtk.Image(); this.imgI80.WidthRequest = 50; this.imgI80.HeightRequest = 50; this.imgI80.Name = "imgI80"; this.tbUI.Add(this.imgI80); - global::Gtk.Table.TableChild w561 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI80])); - w561.TopAttach = ((uint)(22)); - w561.BottomAttach = ((uint)(23)); - w561.LeftAttach = ((uint)(8)); - w561.RightAttach = ((uint)(9)); - w561.XOptions = ((global::Gtk.AttachOptions)(4)); - w561.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w562 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI80])); + w562.TopAttach = ((uint)(22)); + w562.BottomAttach = ((uint)(23)); + w562.LeftAttach = ((uint)(8)); + w562.RightAttach = ((uint)(9)); + w562.XOptions = ((global::Gtk.AttachOptions)(4)); + w562.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI81 = new global::Gtk.Image(); this.imgI81.WidthRequest = 50; this.imgI81.HeightRequest = 50; this.imgI81.Name = "imgI81"; this.tbUI.Add(this.imgI81); - global::Gtk.Table.TableChild w562 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI81])); - w562.TopAttach = ((uint)(22)); - w562.BottomAttach = ((uint)(23)); - w562.LeftAttach = ((uint)(9)); - w562.RightAttach = ((uint)(10)); - w562.XOptions = ((global::Gtk.AttachOptions)(4)); - w562.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w563 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI81])); + w563.TopAttach = ((uint)(22)); + w563.BottomAttach = ((uint)(23)); + w563.LeftAttach = ((uint)(9)); + w563.RightAttach = ((uint)(10)); + w563.XOptions = ((global::Gtk.AttachOptions)(4)); + w563.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI9 = new global::Gtk.Image(); this.imgI9.WidthRequest = 50; this.imgI9.HeightRequest = 50; this.imgI9.Name = "imgI9"; this.tbUI.Add(this.imgI9); - global::Gtk.Table.TableChild w563 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); - w563.TopAttach = ((uint)(14)); - w563.BottomAttach = ((uint)(15)); - w563.LeftAttach = ((uint)(9)); - w563.RightAttach = ((uint)(10)); - w563.XOptions = ((global::Gtk.AttachOptions)(4)); - w563.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w564 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); + w564.TopAttach = ((uint)(14)); + w564.BottomAttach = ((uint)(15)); + w564.LeftAttach = ((uint)(9)); + w564.RightAttach = ((uint)(10)); + w564.XOptions = ((global::Gtk.AttachOptions)(4)); + w564.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgInfo = new global::Gtk.Image(); this.imgInfo.WidthRequest = 50; this.imgInfo.HeightRequest = 50; this.imgInfo.Name = "imgInfo"; this.tbUI.Add(this.imgInfo); - global::Gtk.Table.TableChild w564 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); - w564.TopAttach = ((uint)(22)); - w564.BottomAttach = ((uint)(23)); - w564.LeftAttach = ((uint)(27)); - w564.RightAttach = ((uint)(28)); - w564.XOptions = ((global::Gtk.AttachOptions)(4)); - w564.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w565 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); + w565.TopAttach = ((uint)(22)); + w565.BottomAttach = ((uint)(23)); + w565.LeftAttach = ((uint)(27)); + w565.RightAttach = ((uint)(28)); + w565.XOptions = ((global::Gtk.AttachOptions)(4)); + w565.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS1 = new global::Gtk.Image(); this.imgS1.WidthRequest = 50; this.imgS1.HeightRequest = 50; this.imgS1.Name = "imgS1"; this.tbUI.Add(this.imgS1); - global::Gtk.Table.TableChild w565 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); - w565.TopAttach = ((uint)(11)); - w565.BottomAttach = ((uint)(12)); - w565.LeftAttach = ((uint)(12)); - w565.RightAttach = ((uint)(13)); - w565.XOptions = ((global::Gtk.AttachOptions)(4)); - w565.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w566 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); + w566.TopAttach = ((uint)(11)); + w566.BottomAttach = ((uint)(12)); + w566.LeftAttach = ((uint)(12)); + w566.RightAttach = ((uint)(13)); + w566.XOptions = ((global::Gtk.AttachOptions)(4)); + w566.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS10 = new global::Gtk.Image(); this.imgS10.WidthRequest = 50; this.imgS10.HeightRequest = 50; this.imgS10.Name = "imgS10"; this.tbUI.Add(this.imgS10); - global::Gtk.Table.TableChild w566 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); - w566.TopAttach = ((uint)(12)); - w566.BottomAttach = ((uint)(13)); - w566.LeftAttach = ((uint)(12)); - w566.RightAttach = ((uint)(13)); - w566.XOptions = ((global::Gtk.AttachOptions)(4)); - w566.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w567 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); + w567.TopAttach = ((uint)(12)); + w567.BottomAttach = ((uint)(13)); + w567.LeftAttach = ((uint)(12)); + w567.RightAttach = ((uint)(13)); + w567.XOptions = ((global::Gtk.AttachOptions)(4)); + w567.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS11 = new global::Gtk.Image(); this.imgS11.WidthRequest = 50; this.imgS11.HeightRequest = 50; this.imgS11.Name = "imgS11"; this.tbUI.Add(this.imgS11); - global::Gtk.Table.TableChild w567 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS11])); - w567.TopAttach = ((uint)(12)); - w567.BottomAttach = ((uint)(13)); - w567.LeftAttach = ((uint)(13)); - w567.RightAttach = ((uint)(14)); - w567.XOptions = ((global::Gtk.AttachOptions)(4)); - w567.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w568 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS11])); + w568.TopAttach = ((uint)(12)); + w568.BottomAttach = ((uint)(13)); + w568.LeftAttach = ((uint)(13)); + w568.RightAttach = ((uint)(14)); + w568.XOptions = ((global::Gtk.AttachOptions)(4)); + w568.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS12 = new global::Gtk.Image(); this.imgS12.WidthRequest = 50; this.imgS12.HeightRequest = 50; this.imgS12.Name = "imgS12"; this.tbUI.Add(this.imgS12); - global::Gtk.Table.TableChild w568 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS12])); - w568.TopAttach = ((uint)(12)); - w568.BottomAttach = ((uint)(13)); - w568.LeftAttach = ((uint)(14)); - w568.RightAttach = ((uint)(15)); - w568.XOptions = ((global::Gtk.AttachOptions)(4)); - w568.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w569 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS12])); + w569.TopAttach = ((uint)(12)); + w569.BottomAttach = ((uint)(13)); + w569.LeftAttach = ((uint)(14)); + w569.RightAttach = ((uint)(15)); + w569.XOptions = ((global::Gtk.AttachOptions)(4)); + w569.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS13 = new global::Gtk.Image(); this.imgS13.WidthRequest = 50; this.imgS13.HeightRequest = 50; this.imgS13.Name = "imgS13"; this.tbUI.Add(this.imgS13); - global::Gtk.Table.TableChild w569 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS13])); - w569.TopAttach = ((uint)(12)); - w569.BottomAttach = ((uint)(13)); - w569.LeftAttach = ((uint)(15)); - w569.RightAttach = ((uint)(16)); - w569.XOptions = ((global::Gtk.AttachOptions)(4)); - w569.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w570 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS13])); + w570.TopAttach = ((uint)(12)); + w570.BottomAttach = ((uint)(13)); + w570.LeftAttach = ((uint)(15)); + w570.RightAttach = ((uint)(16)); + w570.XOptions = ((global::Gtk.AttachOptions)(4)); + w570.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS14 = new global::Gtk.Image(); this.imgS14.WidthRequest = 50; this.imgS14.HeightRequest = 50; this.imgS14.Name = "imgS14"; this.tbUI.Add(this.imgS14); - global::Gtk.Table.TableChild w570 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS14])); - w570.TopAttach = ((uint)(12)); - w570.BottomAttach = ((uint)(13)); - w570.LeftAttach = ((uint)(16)); - w570.RightAttach = ((uint)(17)); - w570.XOptions = ((global::Gtk.AttachOptions)(4)); - w570.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w571 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS14])); + w571.TopAttach = ((uint)(12)); + w571.BottomAttach = ((uint)(13)); + w571.LeftAttach = ((uint)(16)); + w571.RightAttach = ((uint)(17)); + w571.XOptions = ((global::Gtk.AttachOptions)(4)); + w571.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS15 = new global::Gtk.Image(); this.imgS15.WidthRequest = 50; this.imgS15.HeightRequest = 50; this.imgS15.Name = "imgS15"; this.tbUI.Add(this.imgS15); - global::Gtk.Table.TableChild w571 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS15])); - w571.TopAttach = ((uint)(12)); - w571.BottomAttach = ((uint)(13)); - w571.LeftAttach = ((uint)(17)); - w571.RightAttach = ((uint)(18)); - w571.XOptions = ((global::Gtk.AttachOptions)(4)); - w571.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w572 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS15])); + w572.TopAttach = ((uint)(12)); + w572.BottomAttach = ((uint)(13)); + w572.LeftAttach = ((uint)(17)); + w572.RightAttach = ((uint)(18)); + w572.XOptions = ((global::Gtk.AttachOptions)(4)); + w572.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS16 = new global::Gtk.Image(); this.imgS16.WidthRequest = 50; this.imgS16.HeightRequest = 50; this.imgS16.Name = "imgS16"; this.tbUI.Add(this.imgS16); - global::Gtk.Table.TableChild w572 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS16])); - w572.TopAttach = ((uint)(12)); - w572.BottomAttach = ((uint)(13)); - w572.LeftAttach = ((uint)(18)); - w572.RightAttach = ((uint)(19)); - w572.XOptions = ((global::Gtk.AttachOptions)(4)); - w572.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w573 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS16])); + w573.TopAttach = ((uint)(12)); + w573.BottomAttach = ((uint)(13)); + w573.LeftAttach = ((uint)(18)); + w573.RightAttach = ((uint)(19)); + w573.XOptions = ((global::Gtk.AttachOptions)(4)); + w573.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS17 = new global::Gtk.Image(); this.imgS17.WidthRequest = 50; this.imgS17.HeightRequest = 50; this.imgS17.Name = "imgS17"; this.tbUI.Add(this.imgS17); - global::Gtk.Table.TableChild w573 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS17])); - w573.TopAttach = ((uint)(12)); - w573.BottomAttach = ((uint)(13)); - w573.LeftAttach = ((uint)(19)); - w573.RightAttach = ((uint)(20)); - w573.XOptions = ((global::Gtk.AttachOptions)(4)); - w573.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w574 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS17])); + w574.TopAttach = ((uint)(12)); + w574.BottomAttach = ((uint)(13)); + w574.LeftAttach = ((uint)(19)); + w574.RightAttach = ((uint)(20)); + w574.XOptions = ((global::Gtk.AttachOptions)(4)); + w574.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS18 = new global::Gtk.Image(); this.imgS18.WidthRequest = 50; this.imgS18.HeightRequest = 50; this.imgS18.Name = "imgS18"; this.tbUI.Add(this.imgS18); - global::Gtk.Table.TableChild w574 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS18])); - w574.TopAttach = ((uint)(12)); - w574.BottomAttach = ((uint)(13)); - w574.LeftAttach = ((uint)(20)); - w574.RightAttach = ((uint)(21)); - w574.XOptions = ((global::Gtk.AttachOptions)(4)); - w574.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w575 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS18])); + w575.TopAttach = ((uint)(12)); + w575.BottomAttach = ((uint)(13)); + w575.LeftAttach = ((uint)(20)); + w575.RightAttach = ((uint)(21)); + w575.XOptions = ((global::Gtk.AttachOptions)(4)); + w575.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS2 = new global::Gtk.Image(); this.imgS2.WidthRequest = 50; this.imgS2.HeightRequest = 50; this.imgS2.Name = "imgS2"; this.tbUI.Add(this.imgS2); - global::Gtk.Table.TableChild w575 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); - w575.TopAttach = ((uint)(11)); - w575.BottomAttach = ((uint)(12)); - w575.LeftAttach = ((uint)(13)); - w575.RightAttach = ((uint)(14)); - w575.XOptions = ((global::Gtk.AttachOptions)(4)); - w575.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w576 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); + w576.TopAttach = ((uint)(11)); + w576.BottomAttach = ((uint)(12)); + w576.LeftAttach = ((uint)(13)); + w576.RightAttach = ((uint)(14)); + w576.XOptions = ((global::Gtk.AttachOptions)(4)); + w576.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS3 = new global::Gtk.Image(); this.imgS3.WidthRequest = 50; this.imgS3.HeightRequest = 50; this.imgS3.Name = "imgS3"; this.tbUI.Add(this.imgS3); - global::Gtk.Table.TableChild w576 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); - w576.TopAttach = ((uint)(11)); - w576.BottomAttach = ((uint)(12)); - w576.LeftAttach = ((uint)(14)); - w576.RightAttach = ((uint)(15)); - w576.XOptions = ((global::Gtk.AttachOptions)(4)); - w576.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w577 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); + w577.TopAttach = ((uint)(11)); + w577.BottomAttach = ((uint)(12)); + w577.LeftAttach = ((uint)(14)); + w577.RightAttach = ((uint)(15)); + w577.XOptions = ((global::Gtk.AttachOptions)(4)); + w577.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS4 = new global::Gtk.Image(); this.imgS4.WidthRequest = 50; this.imgS4.HeightRequest = 50; this.imgS4.Name = "imgS4"; this.tbUI.Add(this.imgS4); - global::Gtk.Table.TableChild w577 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); - w577.TopAttach = ((uint)(11)); - w577.BottomAttach = ((uint)(12)); - w577.LeftAttach = ((uint)(15)); - w577.RightAttach = ((uint)(16)); - w577.XOptions = ((global::Gtk.AttachOptions)(4)); - w577.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w578 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); + w578.TopAttach = ((uint)(11)); + w578.BottomAttach = ((uint)(12)); + w578.LeftAttach = ((uint)(15)); + w578.RightAttach = ((uint)(16)); + w578.XOptions = ((global::Gtk.AttachOptions)(4)); + w578.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS5 = new global::Gtk.Image(); this.imgS5.WidthRequest = 50; this.imgS5.HeightRequest = 50; this.imgS5.Name = "imgS5"; this.tbUI.Add(this.imgS5); - global::Gtk.Table.TableChild w578 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); - w578.TopAttach = ((uint)(11)); - w578.BottomAttach = ((uint)(12)); - w578.LeftAttach = ((uint)(16)); - w578.RightAttach = ((uint)(17)); - w578.XOptions = ((global::Gtk.AttachOptions)(4)); - w578.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w579 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); + w579.TopAttach = ((uint)(11)); + w579.BottomAttach = ((uint)(12)); + w579.LeftAttach = ((uint)(16)); + w579.RightAttach = ((uint)(17)); + w579.XOptions = ((global::Gtk.AttachOptions)(4)); + w579.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS6 = new global::Gtk.Image(); this.imgS6.WidthRequest = 50; this.imgS6.HeightRequest = 50; this.imgS6.Name = "imgS6"; this.tbUI.Add(this.imgS6); - global::Gtk.Table.TableChild w579 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); - w579.TopAttach = ((uint)(11)); - w579.BottomAttach = ((uint)(12)); - w579.LeftAttach = ((uint)(17)); - w579.RightAttach = ((uint)(18)); - w579.XOptions = ((global::Gtk.AttachOptions)(4)); - w579.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w580 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); + w580.TopAttach = ((uint)(11)); + w580.BottomAttach = ((uint)(12)); + w580.LeftAttach = ((uint)(17)); + w580.RightAttach = ((uint)(18)); + w580.XOptions = ((global::Gtk.AttachOptions)(4)); + w580.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS7 = new global::Gtk.Image(); this.imgS7.WidthRequest = 50; this.imgS7.HeightRequest = 50; this.imgS7.Name = "imgS7"; this.tbUI.Add(this.imgS7); - global::Gtk.Table.TableChild w580 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); - w580.TopAttach = ((uint)(11)); - w580.BottomAttach = ((uint)(12)); - w580.LeftAttach = ((uint)(18)); - w580.RightAttach = ((uint)(19)); - w580.XOptions = ((global::Gtk.AttachOptions)(4)); - w580.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w581 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); + w581.TopAttach = ((uint)(11)); + w581.BottomAttach = ((uint)(12)); + w581.LeftAttach = ((uint)(18)); + w581.RightAttach = ((uint)(19)); + w581.XOptions = ((global::Gtk.AttachOptions)(4)); + w581.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS8 = new global::Gtk.Image(); this.imgS8.WidthRequest = 50; this.imgS8.HeightRequest = 50; this.imgS8.Name = "imgS8"; this.tbUI.Add(this.imgS8); - global::Gtk.Table.TableChild w581 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); - w581.TopAttach = ((uint)(11)); - w581.BottomAttach = ((uint)(12)); - w581.LeftAttach = ((uint)(19)); - w581.RightAttach = ((uint)(20)); - w581.XOptions = ((global::Gtk.AttachOptions)(4)); - w581.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w582 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); + w582.TopAttach = ((uint)(11)); + w582.BottomAttach = ((uint)(12)); + w582.LeftAttach = ((uint)(19)); + w582.RightAttach = ((uint)(20)); + w582.XOptions = ((global::Gtk.AttachOptions)(4)); + w582.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS9 = new global::Gtk.Image(); this.imgS9.WidthRequest = 50; this.imgS9.HeightRequest = 50; this.imgS9.Name = "imgS9"; this.tbUI.Add(this.imgS9); - global::Gtk.Table.TableChild w582 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); - w582.TopAttach = ((uint)(11)); - w582.BottomAttach = ((uint)(12)); - w582.LeftAttach = ((uint)(20)); - w582.RightAttach = ((uint)(21)); - w582.XOptions = ((global::Gtk.AttachOptions)(4)); - w582.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w583 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); + w583.TopAttach = ((uint)(11)); + w583.BottomAttach = ((uint)(12)); + w583.LeftAttach = ((uint)(20)); + w583.RightAttach = ((uint)(21)); + w583.XOptions = ((global::Gtk.AttachOptions)(4)); + w583.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblAccessories = new global::Gtk.Label(); this.lblAccessories.HeightRequest = 50; @@ -6815,100 +6832,100 @@ namespace Mundus.Views.Windows this.lblAccessories.LabelProp = "Accessories"; this.lblAccessories.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblAccessories); - global::Gtk.Table.TableChild w583 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); - w583.TopAttach = ((uint)(12)); - w583.BottomAttach = ((uint)(13)); - w583.LeftAttach = ((uint)(23)); - w583.RightAttach = ((uint)(32)); - w583.XOptions = ((global::Gtk.AttachOptions)(4)); - w583.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w584 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); + w584.TopAttach = ((uint)(12)); + w584.BottomAttach = ((uint)(13)); + w584.LeftAttach = ((uint)(23)); + w584.RightAttach = ((uint)(32)); + w584.XOptions = ((global::Gtk.AttachOptions)(4)); + w584.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank1 = new global::Gtk.Label(); this.lblBlank1.WidthRequest = 50; this.lblBlank1.HeightRequest = 10; this.lblBlank1.Name = "lblBlank1"; this.tbUI.Add(this.lblBlank1); - global::Gtk.Table.TableChild w584 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); - w584.LeftAttach = ((uint)(16)); - w584.RightAttach = ((uint)(17)); - w584.XOptions = ((global::Gtk.AttachOptions)(4)); - w584.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w585 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w585.LeftAttach = ((uint)(16)); + w585.RightAttach = ((uint)(17)); + w585.XOptions = ((global::Gtk.AttachOptions)(4)); + w585.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank2 = new global::Gtk.Label(); this.lblBlank2.WidthRequest = 10; this.lblBlank2.HeightRequest = 50; this.lblBlank2.Name = "lblBlank2"; this.tbUI.Add(this.lblBlank2); - global::Gtk.Table.TableChild w585 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); - w585.TopAttach = ((uint)(4)); - w585.BottomAttach = ((uint)(5)); - w585.XOptions = ((global::Gtk.AttachOptions)(4)); - w585.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w586 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w586.TopAttach = ((uint)(4)); + w586.BottomAttach = ((uint)(5)); + w586.XOptions = ((global::Gtk.AttachOptions)(4)); + w586.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank3 = new global::Gtk.Label(); this.lblBlank3.WidthRequest = 50; this.lblBlank3.HeightRequest = 50; this.lblBlank3.Name = "lblBlank3"; this.tbUI.Add(this.lblBlank3); - global::Gtk.Table.TableChild w586 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); - w586.TopAttach = ((uint)(10)); - w586.BottomAttach = ((uint)(11)); - w586.LeftAttach = ((uint)(16)); - w586.RightAttach = ((uint)(17)); - w586.XOptions = ((global::Gtk.AttachOptions)(4)); - w586.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w587 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w587.TopAttach = ((uint)(10)); + w587.BottomAttach = ((uint)(11)); + w587.LeftAttach = ((uint)(16)); + w587.RightAttach = ((uint)(17)); + w587.XOptions = ((global::Gtk.AttachOptions)(4)); + w587.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank4 = new global::Gtk.Label(); this.lblBlank4.WidthRequest = 10; this.lblBlank4.HeightRequest = 50; this.lblBlank4.Name = "lblBlank4"; this.tbUI.Add(this.lblBlank4); - global::Gtk.Table.TableChild w587 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); - w587.TopAttach = ((uint)(4)); - w587.BottomAttach = ((uint)(5)); - w587.LeftAttach = ((uint)(10)); - w587.RightAttach = ((uint)(11)); - w587.XOptions = ((global::Gtk.AttachOptions)(4)); - w587.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w588 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w588.TopAttach = ((uint)(4)); + w588.BottomAttach = ((uint)(5)); + w588.LeftAttach = ((uint)(10)); + w588.RightAttach = ((uint)(11)); + w588.XOptions = ((global::Gtk.AttachOptions)(4)); + w588.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank5 = new global::Gtk.Label(); this.lblBlank5.WidthRequest = 10; this.lblBlank5.HeightRequest = 50; this.lblBlank5.Name = "lblBlank5"; this.tbUI.Add(this.lblBlank5); - global::Gtk.Table.TableChild w588 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); - w588.TopAttach = ((uint)(4)); - w588.BottomAttach = ((uint)(5)); - w588.LeftAttach = ((uint)(22)); - w588.RightAttach = ((uint)(23)); - w588.XOptions = ((global::Gtk.AttachOptions)(4)); - w588.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w589 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w589.TopAttach = ((uint)(4)); + w589.BottomAttach = ((uint)(5)); + w589.LeftAttach = ((uint)(22)); + w589.RightAttach = ((uint)(23)); + w589.XOptions = ((global::Gtk.AttachOptions)(4)); + w589.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank6 = new global::Gtk.Label(); this.lblBlank6.WidthRequest = 10; this.lblBlank6.HeightRequest = 50; this.lblBlank6.Name = "lblBlank6"; this.tbUI.Add(this.lblBlank6); - global::Gtk.Table.TableChild w589 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank6])); - w589.TopAttach = ((uint)(4)); - w589.BottomAttach = ((uint)(5)); - w589.LeftAttach = ((uint)(32)); - w589.RightAttach = ((uint)(33)); - w589.XOptions = ((global::Gtk.AttachOptions)(4)); - w589.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w590 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank6])); + w590.TopAttach = ((uint)(4)); + w590.BottomAttach = ((uint)(5)); + w590.LeftAttach = ((uint)(32)); + w590.RightAttach = ((uint)(33)); + w590.XOptions = ((global::Gtk.AttachOptions)(4)); + w590.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank8 = new global::Gtk.Label(); this.lblBlank8.WidthRequest = 50; this.lblBlank8.HeightRequest = 10; this.lblBlank8.Name = "lblBlank8"; this.tbUI.Add(this.lblBlank8); - global::Gtk.Table.TableChild w590 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); - w590.TopAttach = ((uint)(24)); - w590.BottomAttach = ((uint)(25)); - w590.LeftAttach = ((uint)(16)); - w590.RightAttach = ((uint)(17)); - w590.XOptions = ((global::Gtk.AttachOptions)(4)); - w590.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w591 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); + w591.TopAttach = ((uint)(24)); + w591.BottomAttach = ((uint)(25)); + w591.LeftAttach = ((uint)(16)); + w591.RightAttach = ((uint)(17)); + w591.XOptions = ((global::Gtk.AttachOptions)(4)); + w591.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblCoord1 = new global::Gtk.Label(); this.lblCoord1.WidthRequest = 50; @@ -6916,13 +6933,13 @@ namespace Mundus.Views.Windows this.lblCoord1.Name = "lblCoord1"; this.lblCoord1.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblCoord1); - global::Gtk.Table.TableChild w591 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); - w591.TopAttach = ((uint)(11)); - w591.BottomAttach = ((uint)(12)); - w591.LeftAttach = ((uint)(8)); - w591.RightAttach = ((uint)(9)); - w591.XOptions = ((global::Gtk.AttachOptions)(4)); - w591.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w592 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); + w592.TopAttach = ((uint)(11)); + w592.BottomAttach = ((uint)(12)); + w592.LeftAttach = ((uint)(8)); + w592.RightAttach = ((uint)(9)); + w592.XOptions = ((global::Gtk.AttachOptions)(4)); + w592.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblCoord2 = new global::Gtk.Label(); this.lblCoord2.WidthRequest = 50; @@ -6930,25 +6947,11 @@ namespace Mundus.Views.Windows this.lblCoord2.Name = "lblCoord2"; this.lblCoord2.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblCoord2); - global::Gtk.Table.TableChild w592 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); - w592.TopAttach = ((uint)(11)); - w592.BottomAttach = ((uint)(12)); - w592.LeftAttach = ((uint)(9)); - w592.RightAttach = ((uint)(10)); - w592.XOptions = ((global::Gtk.AttachOptions)(4)); - w592.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblEventLog = new global::Gtk.Label(); - this.lblEventLog.WidthRequest = 50; - this.lblEventLog.HeightRequest = 50; - this.lblEventLog.Name = "lblEventLog"; - this.lblEventLog.LabelProp = "Event Log"; - this.tbUI.Add(this.lblEventLog); - global::Gtk.Table.TableChild w593 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); - w593.TopAttach = ((uint)(15)); - w593.BottomAttach = ((uint)(16)); - w593.LeftAttach = ((uint)(12)); - w593.RightAttach = ((uint)(21)); + global::Gtk.Table.TableChild w593 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); + w593.TopAttach = ((uint)(11)); + w593.BottomAttach = ((uint)(12)); + w593.LeftAttach = ((uint)(9)); + w593.RightAttach = ((uint)(10)); w593.XOptions = ((global::Gtk.AttachOptions)(4)); w593.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild @@ -7052,9 +7055,9 @@ namespace Mundus.Views.Windows w600.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog1 = new global::Gtk.Label(); + this.lblLog1.WidthRequest = 450; this.lblLog1.HeightRequest = 50; this.lblLog1.Name = "lblLog1"; - this.lblLog1.LabelProp = "label6"; this.tbUI.Add(this.lblLog1); global::Gtk.Table.TableChild w601 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); w601.TopAttach = ((uint)(16)); @@ -7065,9 +7068,9 @@ namespace Mundus.Views.Windows w601.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog2 = new global::Gtk.Label(); + this.lblLog2.WidthRequest = 450; this.lblLog2.HeightRequest = 50; this.lblLog2.Name = "lblLog2"; - this.lblLog2.LabelProp = "label6"; this.tbUI.Add(this.lblLog2); global::Gtk.Table.TableChild w602 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); w602.TopAttach = ((uint)(17)); @@ -7078,9 +7081,9 @@ namespace Mundus.Views.Windows w602.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog3 = new global::Gtk.Label(); + this.lblLog3.WidthRequest = 450; this.lblLog3.HeightRequest = 50; this.lblLog3.Name = "lblLog3"; - this.lblLog3.LabelProp = "label6"; this.tbUI.Add(this.lblLog3); global::Gtk.Table.TableChild w603 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); w603.TopAttach = ((uint)(18)); @@ -7091,9 +7094,9 @@ namespace Mundus.Views.Windows w603.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog4 = new global::Gtk.Label(); + this.lblLog4.WidthRequest = 450; this.lblLog4.HeightRequest = 50; this.lblLog4.Name = "lblLog4"; - this.lblLog4.LabelProp = "label6"; this.tbUI.Add(this.lblLog4); global::Gtk.Table.TableChild w604 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); w604.TopAttach = ((uint)(19)); @@ -7104,9 +7107,9 @@ namespace Mundus.Views.Windows w604.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog5 = new global::Gtk.Label(); + this.lblLog5.WidthRequest = 450; this.lblLog5.HeightRequest = 50; this.lblLog5.Name = "lblLog5"; - this.lblLog5.LabelProp = "label6"; this.tbUI.Add(this.lblLog5); global::Gtk.Table.TableChild w605 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog5])); w605.TopAttach = ((uint)(20)); @@ -7117,9 +7120,9 @@ namespace Mundus.Views.Windows w605.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog6 = new global::Gtk.Label(); + this.lblLog6.WidthRequest = 450; this.lblLog6.HeightRequest = 50; this.lblLog6.Name = "lblLog6"; - this.lblLog6.LabelProp = "label6"; this.tbUI.Add(this.lblLog6); global::Gtk.Table.TableChild w606 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog6])); w606.TopAttach = ((uint)(21)); @@ -7130,9 +7133,9 @@ namespace Mundus.Views.Windows w606.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog7 = new global::Gtk.Label(); + this.lblLog7.WidthRequest = 450; this.lblLog7.HeightRequest = 50; this.lblLog7.Name = "lblLog7"; - this.lblLog7.LabelProp = "label6"; this.tbUI.Add(this.lblLog7); global::Gtk.Table.TableChild w607 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog7])); w607.TopAttach = ((uint)(22)); @@ -7143,9 +7146,9 @@ namespace Mundus.Views.Windows w607.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog8 = new global::Gtk.Label(); + this.lblLog8.WidthRequest = 450; this.lblLog8.HeightRequest = 50; this.lblLog8.Name = "lblLog8"; - this.lblLog8.LabelProp = "label6"; this.tbUI.Add(this.lblLog8); global::Gtk.Table.TableChild w608 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog8])); w608.TopAttach = ((uint)(23)); @@ -7261,6 +7264,7 @@ namespace Mundus.Views.Windows this.btnP1.Clicked += new global::System.EventHandler(this.OnBtnP1Clicked); this.btnMusic.Clicked += new global::System.EventHandler(this.OnBtnMusicClicked); this.btnMap.Clicked += new global::System.EventHandler(this.OnBtnMapClicked); + this.btnLog.Clicked += new global::System.EventHandler(this.OnBtnLogClicked); this.btnInv.Clicked += new global::System.EventHandler(this.OnBtnInvClicked); this.btnI9.Clicked += new global::System.EventHandler(this.OnBtnI9Clicked); this.btnI81.Clicked += new global::System.EventHandler(this.OnBtnI81Clicked); diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.LogWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.LogWindow.cs new file mode 100644 index 0000000..8ed3990 --- /dev/null +++ b/Mundus/gtk-gui/Mundus.Views.Windows.LogWindow.cs @@ -0,0 +1,202 @@ + +// This file has been generated by the GUI designer. Do not modify. +namespace Mundus.Views.Windows +{ + public partial class LogWindow + { + private global::Gtk.Table tbUI; + + private global::Gtk.Button btnNewer; + + private global::Gtk.Button btnOlder; + + private global::Gtk.Label lblLog1; + + private global::Gtk.Label lblLog2; + + private global::Gtk.Label lblLog3; + + private global::Gtk.Label lblLog4; + + private global::Gtk.Label lblLog5; + + private global::Gtk.Label lblLog6; + + private global::Gtk.Label lblLog7; + + private global::Gtk.Label lblLog8; + + private global::Gtk.Label lblLog9; + + protected virtual void Build() + { + global::Stetic.Gui.Initialize(this); + // Widget Mundus.Views.Windows.LogWindow + this.Name = "Mundus.Views.Windows.LogWindow"; + this.Title = "LogWindow"; + this.WindowPosition = ((global::Gtk.WindowPosition)(4)); + this.Resizable = false; + this.AllowGrow = false; + // Container child Mundus.Views.Windows.LogWindow.Gtk.Container+ContainerChild + this.tbUI = new global::Gtk.Table(((uint)(9)), ((uint)(2)), false); + this.tbUI.Name = "tbUI"; + // Container child tbUI.Gtk.Table+TableChild + this.btnNewer = new global::Gtk.Button(); + this.btnNewer.WidthRequest = 60; + this.btnNewer.HeightRequest = 50; + this.btnNewer.CanFocus = true; + this.btnNewer.Name = "btnNewer"; + this.btnNewer.UseUnderline = true; + this.btnNewer.Label = "Newer"; + this.tbUI.Add(this.btnNewer); + global::Gtk.Table.TableChild w1 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnNewer])); + w1.BottomAttach = ((uint)(4)); + w1.LeftAttach = ((uint)(1)); + w1.RightAttach = ((uint)(2)); + w1.XOptions = ((global::Gtk.AttachOptions)(4)); + w1.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.btnOlder = new global::Gtk.Button(); + this.btnOlder.WidthRequest = 60; + this.btnOlder.HeightRequest = 50; + this.btnOlder.CanFocus = true; + this.btnOlder.Name = "btnOlder"; + this.btnOlder.UseUnderline = true; + this.btnOlder.Label = "Older"; + this.tbUI.Add(this.btnOlder); + global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnOlder])); + w2.TopAttach = ((uint)(5)); + w2.BottomAttach = ((uint)(9)); + w2.LeftAttach = ((uint)(1)); + w2.RightAttach = ((uint)(2)); + w2.XOptions = ((global::Gtk.AttachOptions)(4)); + w2.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog1 = new global::Gtk.Label(); + this.lblLog1.WidthRequest = 250; + this.lblLog1.HeightRequest = 50; + this.lblLog1.Name = "lblLog1"; + this.lblLog1.Wrap = true; + this.lblLog1.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog1); + global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); + w3.XOptions = ((global::Gtk.AttachOptions)(4)); + w3.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog2 = new global::Gtk.Label(); + this.lblLog2.WidthRequest = 250; + this.lblLog2.HeightRequest = 50; + this.lblLog2.Name = "lblLog2"; + this.lblLog2.Wrap = true; + this.lblLog2.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog2); + global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); + w4.TopAttach = ((uint)(1)); + w4.BottomAttach = ((uint)(2)); + w4.XOptions = ((global::Gtk.AttachOptions)(4)); + w4.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog3 = new global::Gtk.Label(); + this.lblLog3.WidthRequest = 250; + this.lblLog3.HeightRequest = 50; + this.lblLog3.Name = "lblLog3"; + this.lblLog3.Wrap = true; + this.lblLog3.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog3); + global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); + w5.TopAttach = ((uint)(2)); + w5.BottomAttach = ((uint)(3)); + w5.XOptions = ((global::Gtk.AttachOptions)(4)); + w5.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog4 = new global::Gtk.Label(); + this.lblLog4.WidthRequest = 250; + this.lblLog4.HeightRequest = 50; + this.lblLog4.Name = "lblLog4"; + this.lblLog4.Wrap = true; + this.lblLog4.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog4); + global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); + w6.TopAttach = ((uint)(3)); + w6.BottomAttach = ((uint)(4)); + w6.XOptions = ((global::Gtk.AttachOptions)(4)); + w6.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog5 = new global::Gtk.Label(); + this.lblLog5.WidthRequest = 250; + this.lblLog5.HeightRequest = 50; + this.lblLog5.Name = "lblLog5"; + this.lblLog5.Wrap = true; + this.lblLog5.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog5); + global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog5])); + w7.TopAttach = ((uint)(4)); + w7.BottomAttach = ((uint)(5)); + w7.XOptions = ((global::Gtk.AttachOptions)(4)); + w7.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog6 = new global::Gtk.Label(); + this.lblLog6.WidthRequest = 250; + this.lblLog6.HeightRequest = 50; + this.lblLog6.Name = "lblLog6"; + this.lblLog6.Wrap = true; + this.lblLog6.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog6); + global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog6])); + w8.TopAttach = ((uint)(5)); + w8.BottomAttach = ((uint)(6)); + w8.XOptions = ((global::Gtk.AttachOptions)(4)); + w8.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog7 = new global::Gtk.Label(); + this.lblLog7.WidthRequest = 250; + this.lblLog7.HeightRequest = 50; + this.lblLog7.Name = "lblLog7"; + this.lblLog7.Wrap = true; + this.lblLog7.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog7); + global::Gtk.Table.TableChild w9 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog7])); + w9.TopAttach = ((uint)(6)); + w9.BottomAttach = ((uint)(7)); + w9.XOptions = ((global::Gtk.AttachOptions)(4)); + w9.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog8 = new global::Gtk.Label(); + this.lblLog8.WidthRequest = 250; + this.lblLog8.HeightRequest = 50; + this.lblLog8.Name = "lblLog8"; + this.lblLog8.Wrap = true; + this.lblLog8.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog8); + global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog8])); + w10.TopAttach = ((uint)(7)); + w10.BottomAttach = ((uint)(8)); + w10.XOptions = ((global::Gtk.AttachOptions)(4)); + w10.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild + this.lblLog9 = new global::Gtk.Label(); + this.lblLog9.WidthRequest = 250; + this.lblLog9.HeightRequest = 50; + this.lblLog9.Name = "lblLog9"; + this.lblLog9.Wrap = true; + this.lblLog9.Justify = ((global::Gtk.Justification)(2)); + this.tbUI.Add(this.lblLog9); + global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog9])); + w11.TopAttach = ((uint)(8)); + w11.BottomAttach = ((uint)(9)); + w11.XOptions = ((global::Gtk.AttachOptions)(4)); + w11.YOptions = ((global::Gtk.AttachOptions)(4)); + this.Add(this.tbUI); + if ((this.Child != null)) + { + this.Child.ShowAll(); + } + this.DefaultWidth = 310; + this.DefaultHeight = 450; + this.Show(); + this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent); + this.btnOlder.Clicked += new global::System.EventHandler(this.OnBtnOlderClicked); + this.btnNewer.Clicked += new global::System.EventHandler(this.OnBtnNewerClicked); + } + } +} diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.MediumGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.MediumGameWindow.cs index 735f295..7dac688 100644 --- a/Mundus/gtk-gui/Mundus.Views.Windows.MediumGameWindow.cs +++ b/Mundus/gtk-gui/Mundus.Views.Windows.MediumGameWindow.cs @@ -164,6 +164,8 @@ namespace Mundus.Views.Windows private global::Gtk.Button btnInv; + private global::Gtk.Button btnLog; + private global::Gtk.Button btnMap; private global::Gtk.Button btnMusic; @@ -514,8 +516,6 @@ namespace Mundus.Views.Windows private global::Gtk.Label lblCoord2; - private global::Gtk.Label lblEventLog; - private global::Gtk.Label lblGear; private global::Gtk.Label lblGroundLayer; @@ -1952,6 +1952,23 @@ namespace Mundus.Views.Windows w156.XOptions = ((global::Gtk.AttachOptions)(4)); w156.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild + this.btnLog = new global::Gtk.Button(); + this.btnLog.WidthRequest = 350; + this.btnLog.HeightRequest = 50; + this.btnLog.CanFocus = true; + this.btnLog.Name = "btnLog"; + this.btnLog.UseUnderline = true; + this.btnLog.FocusOnClick = false; + this.btnLog.Label = "Event Log"; + this.tbUI.Add(this.btnLog); + global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); + w157.TopAttach = ((uint)(13)); + w157.BottomAttach = ((uint)(14)); + w157.LeftAttach = ((uint)(10)); + w157.RightAttach = ((uint)(17)); + w157.XOptions = ((global::Gtk.AttachOptions)(4)); + w157.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild this.btnMap = new global::Gtk.Button(); this.btnMap.WidthRequest = 50; this.btnMap.HeightRequest = 50; @@ -1960,13 +1977,13 @@ namespace Mundus.Views.Windows this.btnMap.UseUnderline = true; this.btnMap.Label = "Map"; this.tbUI.Add(this.btnMap); - global::Gtk.Table.TableChild w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); - w157.TopAttach = ((uint)(11)); - w157.BottomAttach = ((uint)(12)); - w157.LeftAttach = ((uint)(9)); - w157.RightAttach = ((uint)(10)); - w157.XOptions = ((global::Gtk.AttachOptions)(4)); - w157.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); + w158.TopAttach = ((uint)(11)); + w158.BottomAttach = ((uint)(12)); + w158.LeftAttach = ((uint)(9)); + w158.RightAttach = ((uint)(10)); + w158.XOptions = ((global::Gtk.AttachOptions)(4)); + w158.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnMusic = new global::Gtk.Button(); this.btnMusic.WidthRequest = 50; @@ -1976,13 +1993,13 @@ namespace Mundus.Views.Windows this.btnMusic.UseUnderline = true; this.btnMusic.Label = "Music"; this.tbUI.Add(this.btnMusic); - global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); - w158.TopAttach = ((uint)(13)); - w158.BottomAttach = ((uint)(14)); - w158.LeftAttach = ((uint)(9)); - w158.RightAttach = ((uint)(10)); - w158.XOptions = ((global::Gtk.AttachOptions)(4)); - w158.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); + w159.TopAttach = ((uint)(13)); + w159.BottomAttach = ((uint)(14)); + w159.LeftAttach = ((uint)(9)); + w159.RightAttach = ((uint)(10)); + w159.XOptions = ((global::Gtk.AttachOptions)(4)); + w159.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP1 = new global::Gtk.Button(); this.btnP1.WidthRequest = 50; @@ -1991,16 +2008,16 @@ namespace Mundus.Views.Windows this.btnP1.Name = "btnP1"; this.btnP1.UseUnderline = true; this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w159 = new global::Gtk.Image(); - this.btnP1.Image = w159; + global::Gtk.Image w160 = new global::Gtk.Image(); + this.btnP1.Image = w160; this.tbUI.Add(this.btnP1); - global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); - w160.TopAttach = ((uint)(1)); - w160.BottomAttach = ((uint)(2)); - w160.LeftAttach = ((uint)(10)); - w160.RightAttach = ((uint)(11)); - w160.XOptions = ((global::Gtk.AttachOptions)(4)); - w160.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); + w161.TopAttach = ((uint)(1)); + w161.BottomAttach = ((uint)(2)); + w161.LeftAttach = ((uint)(10)); + w161.RightAttach = ((uint)(11)); + w161.XOptions = ((global::Gtk.AttachOptions)(4)); + w161.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP10 = new global::Gtk.Button(); this.btnP10.WidthRequest = 50; @@ -2009,16 +2026,16 @@ namespace Mundus.Views.Windows this.btnP10.Name = "btnP10"; this.btnP10.UseUnderline = true; this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w161 = new global::Gtk.Image(); - this.btnP10.Image = w161; + global::Gtk.Image w162 = new global::Gtk.Image(); + this.btnP10.Image = w162; this.tbUI.Add(this.btnP10); - global::Gtk.Table.TableChild w162 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); - w162.TopAttach = ((uint)(2)); - w162.BottomAttach = ((uint)(3)); - w162.LeftAttach = ((uint)(12)); - w162.RightAttach = ((uint)(13)); - w162.XOptions = ((global::Gtk.AttachOptions)(4)); - w162.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); + w163.TopAttach = ((uint)(2)); + w163.BottomAttach = ((uint)(3)); + w163.LeftAttach = ((uint)(12)); + w163.RightAttach = ((uint)(13)); + w163.XOptions = ((global::Gtk.AttachOptions)(4)); + w163.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP11 = new global::Gtk.Button(); this.btnP11.WidthRequest = 50; @@ -2027,16 +2044,16 @@ namespace Mundus.Views.Windows this.btnP11.Name = "btnP11"; this.btnP11.UseUnderline = true; this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w163 = new global::Gtk.Image(); - this.btnP11.Image = w163; + global::Gtk.Image w164 = new global::Gtk.Image(); + this.btnP11.Image = w164; this.tbUI.Add(this.btnP11); - global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); - w164.TopAttach = ((uint)(2)); - w164.BottomAttach = ((uint)(3)); - w164.LeftAttach = ((uint)(13)); - w164.RightAttach = ((uint)(14)); - w164.XOptions = ((global::Gtk.AttachOptions)(4)); - w164.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); + w165.TopAttach = ((uint)(2)); + w165.BottomAttach = ((uint)(3)); + w165.LeftAttach = ((uint)(13)); + w165.RightAttach = ((uint)(14)); + w165.XOptions = ((global::Gtk.AttachOptions)(4)); + w165.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP12 = new global::Gtk.Button(); this.btnP12.WidthRequest = 50; @@ -2045,16 +2062,16 @@ namespace Mundus.Views.Windows this.btnP12.Name = "btnP12"; this.btnP12.UseUnderline = true; this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w165 = new global::Gtk.Image(); - this.btnP12.Image = w165; + global::Gtk.Image w166 = new global::Gtk.Image(); + this.btnP12.Image = w166; this.tbUI.Add(this.btnP12); - global::Gtk.Table.TableChild w166 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); - w166.TopAttach = ((uint)(2)); - w166.BottomAttach = ((uint)(3)); - w166.LeftAttach = ((uint)(14)); - w166.RightAttach = ((uint)(15)); - w166.XOptions = ((global::Gtk.AttachOptions)(4)); - w166.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); + w167.TopAttach = ((uint)(2)); + w167.BottomAttach = ((uint)(3)); + w167.LeftAttach = ((uint)(14)); + w167.RightAttach = ((uint)(15)); + w167.XOptions = ((global::Gtk.AttachOptions)(4)); + w167.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP13 = new global::Gtk.Button(); this.btnP13.WidthRequest = 50; @@ -2063,16 +2080,16 @@ namespace Mundus.Views.Windows this.btnP13.Name = "btnP13"; this.btnP13.UseUnderline = true; this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w167 = new global::Gtk.Image(); - this.btnP13.Image = w167; + global::Gtk.Image w168 = new global::Gtk.Image(); + this.btnP13.Image = w168; this.tbUI.Add(this.btnP13); - global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); - w168.TopAttach = ((uint)(2)); - w168.BottomAttach = ((uint)(3)); - w168.LeftAttach = ((uint)(15)); - w168.RightAttach = ((uint)(16)); - w168.XOptions = ((global::Gtk.AttachOptions)(4)); - w168.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); + w169.TopAttach = ((uint)(2)); + w169.BottomAttach = ((uint)(3)); + w169.LeftAttach = ((uint)(15)); + w169.RightAttach = ((uint)(16)); + w169.XOptions = ((global::Gtk.AttachOptions)(4)); + w169.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP14 = new global::Gtk.Button(); this.btnP14.WidthRequest = 50; @@ -2081,16 +2098,16 @@ namespace Mundus.Views.Windows this.btnP14.Name = "btnP14"; this.btnP14.UseUnderline = true; this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w169 = new global::Gtk.Image(); - this.btnP14.Image = w169; + global::Gtk.Image w170 = new global::Gtk.Image(); + this.btnP14.Image = w170; this.tbUI.Add(this.btnP14); - global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); - w170.TopAttach = ((uint)(2)); - w170.BottomAttach = ((uint)(3)); - w170.LeftAttach = ((uint)(16)); - w170.RightAttach = ((uint)(17)); - w170.XOptions = ((global::Gtk.AttachOptions)(4)); - w170.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); + w171.TopAttach = ((uint)(2)); + w171.BottomAttach = ((uint)(3)); + w171.LeftAttach = ((uint)(16)); + w171.RightAttach = ((uint)(17)); + w171.XOptions = ((global::Gtk.AttachOptions)(4)); + w171.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP15 = new global::Gtk.Button(); this.btnP15.WidthRequest = 50; @@ -2099,16 +2116,16 @@ namespace Mundus.Views.Windows this.btnP15.Name = "btnP15"; this.btnP15.UseUnderline = true; this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w171 = new global::Gtk.Image(); - this.btnP15.Image = w171; + global::Gtk.Image w172 = new global::Gtk.Image(); + this.btnP15.Image = w172; this.tbUI.Add(this.btnP15); - global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); - w172.TopAttach = ((uint)(3)); - w172.BottomAttach = ((uint)(4)); - w172.LeftAttach = ((uint)(10)); - w172.RightAttach = ((uint)(11)); - w172.XOptions = ((global::Gtk.AttachOptions)(4)); - w172.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); + w173.TopAttach = ((uint)(3)); + w173.BottomAttach = ((uint)(4)); + w173.LeftAttach = ((uint)(10)); + w173.RightAttach = ((uint)(11)); + w173.XOptions = ((global::Gtk.AttachOptions)(4)); + w173.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP16 = new global::Gtk.Button(); this.btnP16.WidthRequest = 50; @@ -2117,16 +2134,16 @@ namespace Mundus.Views.Windows this.btnP16.Name = "btnP16"; this.btnP16.UseUnderline = true; this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w173 = new global::Gtk.Image(); - this.btnP16.Image = w173; + global::Gtk.Image w174 = new global::Gtk.Image(); + this.btnP16.Image = w174; this.tbUI.Add(this.btnP16); - global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); - w174.TopAttach = ((uint)(3)); - w174.BottomAttach = ((uint)(4)); - w174.LeftAttach = ((uint)(11)); - w174.RightAttach = ((uint)(12)); - w174.XOptions = ((global::Gtk.AttachOptions)(4)); - w174.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); + w175.TopAttach = ((uint)(3)); + w175.BottomAttach = ((uint)(4)); + w175.LeftAttach = ((uint)(11)); + w175.RightAttach = ((uint)(12)); + w175.XOptions = ((global::Gtk.AttachOptions)(4)); + w175.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP17 = new global::Gtk.Button(); this.btnP17.WidthRequest = 50; @@ -2135,16 +2152,16 @@ namespace Mundus.Views.Windows this.btnP17.Name = "btnP17"; this.btnP17.UseUnderline = true; this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w175 = new global::Gtk.Image(); - this.btnP17.Image = w175; + global::Gtk.Image w176 = new global::Gtk.Image(); + this.btnP17.Image = w176; this.tbUI.Add(this.btnP17); - global::Gtk.Table.TableChild w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); - w176.TopAttach = ((uint)(3)); - w176.BottomAttach = ((uint)(4)); - w176.LeftAttach = ((uint)(12)); - w176.RightAttach = ((uint)(13)); - w176.XOptions = ((global::Gtk.AttachOptions)(4)); - w176.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); + w177.TopAttach = ((uint)(3)); + w177.BottomAttach = ((uint)(4)); + w177.LeftAttach = ((uint)(12)); + w177.RightAttach = ((uint)(13)); + w177.XOptions = ((global::Gtk.AttachOptions)(4)); + w177.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP18 = new global::Gtk.Button(); this.btnP18.WidthRequest = 50; @@ -2153,16 +2170,16 @@ namespace Mundus.Views.Windows this.btnP18.Name = "btnP18"; this.btnP18.UseUnderline = true; this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w177 = new global::Gtk.Image(); - this.btnP18.Image = w177; + global::Gtk.Image w178 = new global::Gtk.Image(); + this.btnP18.Image = w178; this.tbUI.Add(this.btnP18); - global::Gtk.Table.TableChild w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); - w178.TopAttach = ((uint)(3)); - w178.BottomAttach = ((uint)(4)); - w178.LeftAttach = ((uint)(13)); - w178.RightAttach = ((uint)(14)); - w178.XOptions = ((global::Gtk.AttachOptions)(4)); - w178.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); + w179.TopAttach = ((uint)(3)); + w179.BottomAttach = ((uint)(4)); + w179.LeftAttach = ((uint)(13)); + w179.RightAttach = ((uint)(14)); + w179.XOptions = ((global::Gtk.AttachOptions)(4)); + w179.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP19 = new global::Gtk.Button(); this.btnP19.WidthRequest = 50; @@ -2171,16 +2188,16 @@ namespace Mundus.Views.Windows this.btnP19.Name = "btnP19"; this.btnP19.UseUnderline = true; this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w179 = new global::Gtk.Image(); - this.btnP19.Image = w179; + global::Gtk.Image w180 = new global::Gtk.Image(); + this.btnP19.Image = w180; this.tbUI.Add(this.btnP19); - global::Gtk.Table.TableChild w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); - w180.TopAttach = ((uint)(3)); - w180.BottomAttach = ((uint)(4)); - w180.LeftAttach = ((uint)(14)); - w180.RightAttach = ((uint)(15)); - w180.XOptions = ((global::Gtk.AttachOptions)(4)); - w180.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); + w181.TopAttach = ((uint)(3)); + w181.BottomAttach = ((uint)(4)); + w181.LeftAttach = ((uint)(14)); + w181.RightAttach = ((uint)(15)); + w181.XOptions = ((global::Gtk.AttachOptions)(4)); + w181.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP2 = new global::Gtk.Button(); this.btnP2.WidthRequest = 50; @@ -2189,16 +2206,16 @@ namespace Mundus.Views.Windows this.btnP2.Name = "btnP2"; this.btnP2.UseUnderline = true; this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w181 = new global::Gtk.Image(); - this.btnP2.Image = w181; + global::Gtk.Image w182 = new global::Gtk.Image(); + this.btnP2.Image = w182; this.tbUI.Add(this.btnP2); - global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); - w182.TopAttach = ((uint)(1)); - w182.BottomAttach = ((uint)(2)); - w182.LeftAttach = ((uint)(11)); - w182.RightAttach = ((uint)(12)); - w182.XOptions = ((global::Gtk.AttachOptions)(4)); - w182.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); + w183.TopAttach = ((uint)(1)); + w183.BottomAttach = ((uint)(2)); + w183.LeftAttach = ((uint)(11)); + w183.RightAttach = ((uint)(12)); + w183.XOptions = ((global::Gtk.AttachOptions)(4)); + w183.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP20 = new global::Gtk.Button(); this.btnP20.WidthRequest = 50; @@ -2207,16 +2224,16 @@ namespace Mundus.Views.Windows this.btnP20.Name = "btnP20"; this.btnP20.UseUnderline = true; this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w183 = new global::Gtk.Image(); - this.btnP20.Image = w183; + global::Gtk.Image w184 = new global::Gtk.Image(); + this.btnP20.Image = w184; this.tbUI.Add(this.btnP20); - global::Gtk.Table.TableChild w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); - w184.TopAttach = ((uint)(3)); - w184.BottomAttach = ((uint)(4)); - w184.LeftAttach = ((uint)(15)); - w184.RightAttach = ((uint)(16)); - w184.XOptions = ((global::Gtk.AttachOptions)(4)); - w184.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); + w185.TopAttach = ((uint)(3)); + w185.BottomAttach = ((uint)(4)); + w185.LeftAttach = ((uint)(15)); + w185.RightAttach = ((uint)(16)); + w185.XOptions = ((global::Gtk.AttachOptions)(4)); + w185.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP21 = new global::Gtk.Button(); this.btnP21.WidthRequest = 50; @@ -2225,16 +2242,16 @@ namespace Mundus.Views.Windows this.btnP21.Name = "btnP21"; this.btnP21.UseUnderline = true; this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w185 = new global::Gtk.Image(); - this.btnP21.Image = w185; + global::Gtk.Image w186 = new global::Gtk.Image(); + this.btnP21.Image = w186; this.tbUI.Add(this.btnP21); - global::Gtk.Table.TableChild w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); - w186.TopAttach = ((uint)(3)); - w186.BottomAttach = ((uint)(4)); - w186.LeftAttach = ((uint)(16)); - w186.RightAttach = ((uint)(17)); - w186.XOptions = ((global::Gtk.AttachOptions)(4)); - w186.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); + w187.TopAttach = ((uint)(3)); + w187.BottomAttach = ((uint)(4)); + w187.LeftAttach = ((uint)(16)); + w187.RightAttach = ((uint)(17)); + w187.XOptions = ((global::Gtk.AttachOptions)(4)); + w187.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP22 = new global::Gtk.Button(); this.btnP22.WidthRequest = 50; @@ -2243,16 +2260,16 @@ namespace Mundus.Views.Windows this.btnP22.Name = "btnP22"; this.btnP22.UseUnderline = true; this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w187 = new global::Gtk.Image(); - this.btnP22.Image = w187; + global::Gtk.Image w188 = new global::Gtk.Image(); + this.btnP22.Image = w188; this.tbUI.Add(this.btnP22); - global::Gtk.Table.TableChild w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); - w188.TopAttach = ((uint)(4)); - w188.BottomAttach = ((uint)(5)); - w188.LeftAttach = ((uint)(10)); - w188.RightAttach = ((uint)(11)); - w188.XOptions = ((global::Gtk.AttachOptions)(4)); - w188.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); + w189.TopAttach = ((uint)(4)); + w189.BottomAttach = ((uint)(5)); + w189.LeftAttach = ((uint)(10)); + w189.RightAttach = ((uint)(11)); + w189.XOptions = ((global::Gtk.AttachOptions)(4)); + w189.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP23 = new global::Gtk.Button(); this.btnP23.WidthRequest = 50; @@ -2261,16 +2278,16 @@ namespace Mundus.Views.Windows this.btnP23.Name = "btnP23"; this.btnP23.UseUnderline = true; this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w189 = new global::Gtk.Image(); - this.btnP23.Image = w189; + global::Gtk.Image w190 = new global::Gtk.Image(); + this.btnP23.Image = w190; this.tbUI.Add(this.btnP23); - global::Gtk.Table.TableChild w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); - w190.TopAttach = ((uint)(4)); - w190.BottomAttach = ((uint)(5)); - w190.LeftAttach = ((uint)(11)); - w190.RightAttach = ((uint)(12)); - w190.XOptions = ((global::Gtk.AttachOptions)(4)); - w190.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); + w191.TopAttach = ((uint)(4)); + w191.BottomAttach = ((uint)(5)); + w191.LeftAttach = ((uint)(11)); + w191.RightAttach = ((uint)(12)); + w191.XOptions = ((global::Gtk.AttachOptions)(4)); + w191.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP24 = new global::Gtk.Button(); this.btnP24.WidthRequest = 50; @@ -2279,16 +2296,16 @@ namespace Mundus.Views.Windows this.btnP24.Name = "btnP24"; this.btnP24.UseUnderline = true; this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w191 = new global::Gtk.Image(); - this.btnP24.Image = w191; + global::Gtk.Image w192 = new global::Gtk.Image(); + this.btnP24.Image = w192; this.tbUI.Add(this.btnP24); - global::Gtk.Table.TableChild w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); - w192.TopAttach = ((uint)(4)); - w192.BottomAttach = ((uint)(5)); - w192.LeftAttach = ((uint)(12)); - w192.RightAttach = ((uint)(13)); - w192.XOptions = ((global::Gtk.AttachOptions)(4)); - w192.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); + w193.TopAttach = ((uint)(4)); + w193.BottomAttach = ((uint)(5)); + w193.LeftAttach = ((uint)(12)); + w193.RightAttach = ((uint)(13)); + w193.XOptions = ((global::Gtk.AttachOptions)(4)); + w193.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP25 = new global::Gtk.Button(); this.btnP25.WidthRequest = 50; @@ -2297,16 +2314,16 @@ namespace Mundus.Views.Windows this.btnP25.Name = "btnP25"; this.btnP25.UseUnderline = true; this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w193 = new global::Gtk.Image(); - this.btnP25.Image = w193; + global::Gtk.Image w194 = new global::Gtk.Image(); + this.btnP25.Image = w194; this.tbUI.Add(this.btnP25); - global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); - w194.TopAttach = ((uint)(4)); - w194.BottomAttach = ((uint)(5)); - w194.LeftAttach = ((uint)(13)); - w194.RightAttach = ((uint)(14)); - w194.XOptions = ((global::Gtk.AttachOptions)(4)); - w194.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); + w195.TopAttach = ((uint)(4)); + w195.BottomAttach = ((uint)(5)); + w195.LeftAttach = ((uint)(13)); + w195.RightAttach = ((uint)(14)); + w195.XOptions = ((global::Gtk.AttachOptions)(4)); + w195.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP26 = new global::Gtk.Button(); this.btnP26.WidthRequest = 50; @@ -2315,16 +2332,16 @@ namespace Mundus.Views.Windows this.btnP26.Name = "btnP26"; this.btnP26.UseUnderline = true; this.btnP26.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w195 = new global::Gtk.Image(); - this.btnP26.Image = w195; + global::Gtk.Image w196 = new global::Gtk.Image(); + this.btnP26.Image = w196; this.tbUI.Add(this.btnP26); - global::Gtk.Table.TableChild w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP26])); - w196.TopAttach = ((uint)(4)); - w196.BottomAttach = ((uint)(5)); - w196.LeftAttach = ((uint)(14)); - w196.RightAttach = ((uint)(15)); - w196.XOptions = ((global::Gtk.AttachOptions)(4)); - w196.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP26])); + w197.TopAttach = ((uint)(4)); + w197.BottomAttach = ((uint)(5)); + w197.LeftAttach = ((uint)(14)); + w197.RightAttach = ((uint)(15)); + w197.XOptions = ((global::Gtk.AttachOptions)(4)); + w197.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP27 = new global::Gtk.Button(); this.btnP27.WidthRequest = 50; @@ -2333,16 +2350,16 @@ namespace Mundus.Views.Windows this.btnP27.Name = "btnP27"; this.btnP27.UseUnderline = true; this.btnP27.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w197 = new global::Gtk.Image(); - this.btnP27.Image = w197; + global::Gtk.Image w198 = new global::Gtk.Image(); + this.btnP27.Image = w198; this.tbUI.Add(this.btnP27); - global::Gtk.Table.TableChild w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP27])); - w198.TopAttach = ((uint)(4)); - w198.BottomAttach = ((uint)(5)); - w198.LeftAttach = ((uint)(15)); - w198.RightAttach = ((uint)(16)); - w198.XOptions = ((global::Gtk.AttachOptions)(4)); - w198.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP27])); + w199.TopAttach = ((uint)(4)); + w199.BottomAttach = ((uint)(5)); + w199.LeftAttach = ((uint)(15)); + w199.RightAttach = ((uint)(16)); + w199.XOptions = ((global::Gtk.AttachOptions)(4)); + w199.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP28 = new global::Gtk.Button(); this.btnP28.WidthRequest = 50; @@ -2351,16 +2368,16 @@ namespace Mundus.Views.Windows this.btnP28.Name = "btnP28"; this.btnP28.UseUnderline = true; this.btnP28.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w199 = new global::Gtk.Image(); - this.btnP28.Image = w199; + global::Gtk.Image w200 = new global::Gtk.Image(); + this.btnP28.Image = w200; this.tbUI.Add(this.btnP28); - global::Gtk.Table.TableChild w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP28])); - w200.TopAttach = ((uint)(4)); - w200.BottomAttach = ((uint)(5)); - w200.LeftAttach = ((uint)(16)); - w200.RightAttach = ((uint)(17)); - w200.XOptions = ((global::Gtk.AttachOptions)(4)); - w200.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP28])); + w201.TopAttach = ((uint)(4)); + w201.BottomAttach = ((uint)(5)); + w201.LeftAttach = ((uint)(16)); + w201.RightAttach = ((uint)(17)); + w201.XOptions = ((global::Gtk.AttachOptions)(4)); + w201.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP29 = new global::Gtk.Button(); this.btnP29.WidthRequest = 50; @@ -2369,16 +2386,16 @@ namespace Mundus.Views.Windows this.btnP29.Name = "btnP29"; this.btnP29.UseUnderline = true; this.btnP29.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w201 = new global::Gtk.Image(); - this.btnP29.Image = w201; + global::Gtk.Image w202 = new global::Gtk.Image(); + this.btnP29.Image = w202; this.tbUI.Add(this.btnP29); - global::Gtk.Table.TableChild w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP29])); - w202.TopAttach = ((uint)(5)); - w202.BottomAttach = ((uint)(6)); - w202.LeftAttach = ((uint)(10)); - w202.RightAttach = ((uint)(11)); - w202.XOptions = ((global::Gtk.AttachOptions)(4)); - w202.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP29])); + w203.TopAttach = ((uint)(5)); + w203.BottomAttach = ((uint)(6)); + w203.LeftAttach = ((uint)(10)); + w203.RightAttach = ((uint)(11)); + w203.XOptions = ((global::Gtk.AttachOptions)(4)); + w203.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP3 = new global::Gtk.Button(); this.btnP3.WidthRequest = 50; @@ -2387,16 +2404,16 @@ namespace Mundus.Views.Windows this.btnP3.Name = "btnP3"; this.btnP3.UseUnderline = true; this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w203 = new global::Gtk.Image(); - this.btnP3.Image = w203; + global::Gtk.Image w204 = new global::Gtk.Image(); + this.btnP3.Image = w204; this.tbUI.Add(this.btnP3); - global::Gtk.Table.TableChild w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); - w204.TopAttach = ((uint)(1)); - w204.BottomAttach = ((uint)(2)); - w204.LeftAttach = ((uint)(12)); - w204.RightAttach = ((uint)(13)); - w204.XOptions = ((global::Gtk.AttachOptions)(4)); - w204.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); + w205.TopAttach = ((uint)(1)); + w205.BottomAttach = ((uint)(2)); + w205.LeftAttach = ((uint)(12)); + w205.RightAttach = ((uint)(13)); + w205.XOptions = ((global::Gtk.AttachOptions)(4)); + w205.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP30 = new global::Gtk.Button(); this.btnP30.WidthRequest = 50; @@ -2405,16 +2422,16 @@ namespace Mundus.Views.Windows this.btnP30.Name = "btnP30"; this.btnP30.UseUnderline = true; this.btnP30.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w205 = new global::Gtk.Image(); - this.btnP30.Image = w205; + global::Gtk.Image w206 = new global::Gtk.Image(); + this.btnP30.Image = w206; this.tbUI.Add(this.btnP30); - global::Gtk.Table.TableChild w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP30])); - w206.TopAttach = ((uint)(5)); - w206.BottomAttach = ((uint)(6)); - w206.LeftAttach = ((uint)(11)); - w206.RightAttach = ((uint)(12)); - w206.XOptions = ((global::Gtk.AttachOptions)(4)); - w206.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP30])); + w207.TopAttach = ((uint)(5)); + w207.BottomAttach = ((uint)(6)); + w207.LeftAttach = ((uint)(11)); + w207.RightAttach = ((uint)(12)); + w207.XOptions = ((global::Gtk.AttachOptions)(4)); + w207.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP31 = new global::Gtk.Button(); this.btnP31.WidthRequest = 50; @@ -2423,16 +2440,16 @@ namespace Mundus.Views.Windows this.btnP31.Name = "btnP31"; this.btnP31.UseUnderline = true; this.btnP31.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w207 = new global::Gtk.Image(); - this.btnP31.Image = w207; + global::Gtk.Image w208 = new global::Gtk.Image(); + this.btnP31.Image = w208; this.tbUI.Add(this.btnP31); - global::Gtk.Table.TableChild w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP31])); - w208.TopAttach = ((uint)(5)); - w208.BottomAttach = ((uint)(6)); - w208.LeftAttach = ((uint)(12)); - w208.RightAttach = ((uint)(13)); - w208.XOptions = ((global::Gtk.AttachOptions)(4)); - w208.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP31])); + w209.TopAttach = ((uint)(5)); + w209.BottomAttach = ((uint)(6)); + w209.LeftAttach = ((uint)(12)); + w209.RightAttach = ((uint)(13)); + w209.XOptions = ((global::Gtk.AttachOptions)(4)); + w209.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP32 = new global::Gtk.Button(); this.btnP32.WidthRequest = 50; @@ -2441,16 +2458,16 @@ namespace Mundus.Views.Windows this.btnP32.Name = "btnP32"; this.btnP32.UseUnderline = true; this.btnP32.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w209 = new global::Gtk.Image(); - this.btnP32.Image = w209; + global::Gtk.Image w210 = new global::Gtk.Image(); + this.btnP32.Image = w210; this.tbUI.Add(this.btnP32); - global::Gtk.Table.TableChild w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP32])); - w210.TopAttach = ((uint)(5)); - w210.BottomAttach = ((uint)(6)); - w210.LeftAttach = ((uint)(13)); - w210.RightAttach = ((uint)(14)); - w210.XOptions = ((global::Gtk.AttachOptions)(4)); - w210.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP32])); + w211.TopAttach = ((uint)(5)); + w211.BottomAttach = ((uint)(6)); + w211.LeftAttach = ((uint)(13)); + w211.RightAttach = ((uint)(14)); + w211.XOptions = ((global::Gtk.AttachOptions)(4)); + w211.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP33 = new global::Gtk.Button(); this.btnP33.WidthRequest = 50; @@ -2459,16 +2476,16 @@ namespace Mundus.Views.Windows this.btnP33.Name = "btnP33"; this.btnP33.UseUnderline = true; this.btnP33.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w211 = new global::Gtk.Image(); - this.btnP33.Image = w211; + global::Gtk.Image w212 = new global::Gtk.Image(); + this.btnP33.Image = w212; this.tbUI.Add(this.btnP33); - global::Gtk.Table.TableChild w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP33])); - w212.TopAttach = ((uint)(5)); - w212.BottomAttach = ((uint)(6)); - w212.LeftAttach = ((uint)(14)); - w212.RightAttach = ((uint)(15)); - w212.XOptions = ((global::Gtk.AttachOptions)(4)); - w212.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP33])); + w213.TopAttach = ((uint)(5)); + w213.BottomAttach = ((uint)(6)); + w213.LeftAttach = ((uint)(14)); + w213.RightAttach = ((uint)(15)); + w213.XOptions = ((global::Gtk.AttachOptions)(4)); + w213.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP34 = new global::Gtk.Button(); this.btnP34.WidthRequest = 50; @@ -2477,16 +2494,16 @@ namespace Mundus.Views.Windows this.btnP34.Name = "btnP34"; this.btnP34.UseUnderline = true; this.btnP34.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w213 = new global::Gtk.Image(); - this.btnP34.Image = w213; + global::Gtk.Image w214 = new global::Gtk.Image(); + this.btnP34.Image = w214; this.tbUI.Add(this.btnP34); - global::Gtk.Table.TableChild w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP34])); - w214.TopAttach = ((uint)(5)); - w214.BottomAttach = ((uint)(6)); - w214.LeftAttach = ((uint)(15)); - w214.RightAttach = ((uint)(16)); - w214.XOptions = ((global::Gtk.AttachOptions)(4)); - w214.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP34])); + w215.TopAttach = ((uint)(5)); + w215.BottomAttach = ((uint)(6)); + w215.LeftAttach = ((uint)(15)); + w215.RightAttach = ((uint)(16)); + w215.XOptions = ((global::Gtk.AttachOptions)(4)); + w215.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP35 = new global::Gtk.Button(); this.btnP35.WidthRequest = 50; @@ -2495,16 +2512,16 @@ namespace Mundus.Views.Windows this.btnP35.Name = "btnP35"; this.btnP35.UseUnderline = true; this.btnP35.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w215 = new global::Gtk.Image(); - this.btnP35.Image = w215; + global::Gtk.Image w216 = new global::Gtk.Image(); + this.btnP35.Image = w216; this.tbUI.Add(this.btnP35); - global::Gtk.Table.TableChild w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP35])); - w216.TopAttach = ((uint)(5)); - w216.BottomAttach = ((uint)(6)); - w216.LeftAttach = ((uint)(16)); - w216.RightAttach = ((uint)(17)); - w216.XOptions = ((global::Gtk.AttachOptions)(4)); - w216.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP35])); + w217.TopAttach = ((uint)(5)); + w217.BottomAttach = ((uint)(6)); + w217.LeftAttach = ((uint)(16)); + w217.RightAttach = ((uint)(17)); + w217.XOptions = ((global::Gtk.AttachOptions)(4)); + w217.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP36 = new global::Gtk.Button(); this.btnP36.WidthRequest = 50; @@ -2513,16 +2530,16 @@ namespace Mundus.Views.Windows this.btnP36.Name = "btnP36"; this.btnP36.UseUnderline = true; this.btnP36.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w217 = new global::Gtk.Image(); - this.btnP36.Image = w217; + global::Gtk.Image w218 = new global::Gtk.Image(); + this.btnP36.Image = w218; this.tbUI.Add(this.btnP36); - global::Gtk.Table.TableChild w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP36])); - w218.TopAttach = ((uint)(6)); - w218.BottomAttach = ((uint)(7)); - w218.LeftAttach = ((uint)(10)); - w218.RightAttach = ((uint)(11)); - w218.XOptions = ((global::Gtk.AttachOptions)(4)); - w218.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP36])); + w219.TopAttach = ((uint)(6)); + w219.BottomAttach = ((uint)(7)); + w219.LeftAttach = ((uint)(10)); + w219.RightAttach = ((uint)(11)); + w219.XOptions = ((global::Gtk.AttachOptions)(4)); + w219.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP37 = new global::Gtk.Button(); this.btnP37.WidthRequest = 50; @@ -2531,16 +2548,16 @@ namespace Mundus.Views.Windows this.btnP37.Name = "btnP37"; this.btnP37.UseUnderline = true; this.btnP37.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w219 = new global::Gtk.Image(); - this.btnP37.Image = w219; + global::Gtk.Image w220 = new global::Gtk.Image(); + this.btnP37.Image = w220; this.tbUI.Add(this.btnP37); - global::Gtk.Table.TableChild w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP37])); - w220.TopAttach = ((uint)(6)); - w220.BottomAttach = ((uint)(7)); - w220.LeftAttach = ((uint)(11)); - w220.RightAttach = ((uint)(12)); - w220.XOptions = ((global::Gtk.AttachOptions)(4)); - w220.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP37])); + w221.TopAttach = ((uint)(6)); + w221.BottomAttach = ((uint)(7)); + w221.LeftAttach = ((uint)(11)); + w221.RightAttach = ((uint)(12)); + w221.XOptions = ((global::Gtk.AttachOptions)(4)); + w221.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP38 = new global::Gtk.Button(); this.btnP38.WidthRequest = 50; @@ -2549,16 +2566,16 @@ namespace Mundus.Views.Windows this.btnP38.Name = "btnP38"; this.btnP38.UseUnderline = true; this.btnP38.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w221 = new global::Gtk.Image(); - this.btnP38.Image = w221; + global::Gtk.Image w222 = new global::Gtk.Image(); + this.btnP38.Image = w222; this.tbUI.Add(this.btnP38); - global::Gtk.Table.TableChild w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP38])); - w222.TopAttach = ((uint)(6)); - w222.BottomAttach = ((uint)(7)); - w222.LeftAttach = ((uint)(12)); - w222.RightAttach = ((uint)(13)); - w222.XOptions = ((global::Gtk.AttachOptions)(4)); - w222.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP38])); + w223.TopAttach = ((uint)(6)); + w223.BottomAttach = ((uint)(7)); + w223.LeftAttach = ((uint)(12)); + w223.RightAttach = ((uint)(13)); + w223.XOptions = ((global::Gtk.AttachOptions)(4)); + w223.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP39 = new global::Gtk.Button(); this.btnP39.WidthRequest = 50; @@ -2567,16 +2584,16 @@ namespace Mundus.Views.Windows this.btnP39.Name = "btnP39"; this.btnP39.UseUnderline = true; this.btnP39.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w223 = new global::Gtk.Image(); - this.btnP39.Image = w223; + global::Gtk.Image w224 = new global::Gtk.Image(); + this.btnP39.Image = w224; this.tbUI.Add(this.btnP39); - global::Gtk.Table.TableChild w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP39])); - w224.TopAttach = ((uint)(6)); - w224.BottomAttach = ((uint)(7)); - w224.LeftAttach = ((uint)(13)); - w224.RightAttach = ((uint)(14)); - w224.XOptions = ((global::Gtk.AttachOptions)(4)); - w224.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP39])); + w225.TopAttach = ((uint)(6)); + w225.BottomAttach = ((uint)(7)); + w225.LeftAttach = ((uint)(13)); + w225.RightAttach = ((uint)(14)); + w225.XOptions = ((global::Gtk.AttachOptions)(4)); + w225.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP4 = new global::Gtk.Button(); this.btnP4.WidthRequest = 50; @@ -2585,16 +2602,16 @@ namespace Mundus.Views.Windows this.btnP4.Name = "btnP4"; this.btnP4.UseUnderline = true; this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w225 = new global::Gtk.Image(); - this.btnP4.Image = w225; + global::Gtk.Image w226 = new global::Gtk.Image(); + this.btnP4.Image = w226; this.tbUI.Add(this.btnP4); - global::Gtk.Table.TableChild w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); - w226.TopAttach = ((uint)(1)); - w226.BottomAttach = ((uint)(2)); - w226.LeftAttach = ((uint)(13)); - w226.RightAttach = ((uint)(14)); - w226.XOptions = ((global::Gtk.AttachOptions)(4)); - w226.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); + w227.TopAttach = ((uint)(1)); + w227.BottomAttach = ((uint)(2)); + w227.LeftAttach = ((uint)(13)); + w227.RightAttach = ((uint)(14)); + w227.XOptions = ((global::Gtk.AttachOptions)(4)); + w227.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP40 = new global::Gtk.Button(); this.btnP40.WidthRequest = 50; @@ -2603,16 +2620,16 @@ namespace Mundus.Views.Windows this.btnP40.Name = "btnP40"; this.btnP40.UseUnderline = true; this.btnP40.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w227 = new global::Gtk.Image(); - this.btnP40.Image = w227; + global::Gtk.Image w228 = new global::Gtk.Image(); + this.btnP40.Image = w228; this.tbUI.Add(this.btnP40); - global::Gtk.Table.TableChild w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP40])); - w228.TopAttach = ((uint)(6)); - w228.BottomAttach = ((uint)(7)); - w228.LeftAttach = ((uint)(14)); - w228.RightAttach = ((uint)(15)); - w228.XOptions = ((global::Gtk.AttachOptions)(4)); - w228.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP40])); + w229.TopAttach = ((uint)(6)); + w229.BottomAttach = ((uint)(7)); + w229.LeftAttach = ((uint)(14)); + w229.RightAttach = ((uint)(15)); + w229.XOptions = ((global::Gtk.AttachOptions)(4)); + w229.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP41 = new global::Gtk.Button(); this.btnP41.WidthRequest = 50; @@ -2621,16 +2638,16 @@ namespace Mundus.Views.Windows this.btnP41.Name = "btnP41"; this.btnP41.UseUnderline = true; this.btnP41.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w229 = new global::Gtk.Image(); - this.btnP41.Image = w229; + global::Gtk.Image w230 = new global::Gtk.Image(); + this.btnP41.Image = w230; this.tbUI.Add(this.btnP41); - global::Gtk.Table.TableChild w230 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP41])); - w230.TopAttach = ((uint)(6)); - w230.BottomAttach = ((uint)(7)); - w230.LeftAttach = ((uint)(15)); - w230.RightAttach = ((uint)(16)); - w230.XOptions = ((global::Gtk.AttachOptions)(4)); - w230.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP41])); + w231.TopAttach = ((uint)(6)); + w231.BottomAttach = ((uint)(7)); + w231.LeftAttach = ((uint)(15)); + w231.RightAttach = ((uint)(16)); + w231.XOptions = ((global::Gtk.AttachOptions)(4)); + w231.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP42 = new global::Gtk.Button(); this.btnP42.WidthRequest = 50; @@ -2639,16 +2656,16 @@ namespace Mundus.Views.Windows this.btnP42.Name = "btnP42"; this.btnP42.UseUnderline = true; this.btnP42.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w231 = new global::Gtk.Image(); - this.btnP42.Image = w231; + global::Gtk.Image w232 = new global::Gtk.Image(); + this.btnP42.Image = w232; this.tbUI.Add(this.btnP42); - global::Gtk.Table.TableChild w232 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP42])); - w232.TopAttach = ((uint)(6)); - w232.BottomAttach = ((uint)(7)); - w232.LeftAttach = ((uint)(16)); - w232.RightAttach = ((uint)(17)); - w232.XOptions = ((global::Gtk.AttachOptions)(4)); - w232.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w233 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP42])); + w233.TopAttach = ((uint)(6)); + w233.BottomAttach = ((uint)(7)); + w233.LeftAttach = ((uint)(16)); + w233.RightAttach = ((uint)(17)); + w233.XOptions = ((global::Gtk.AttachOptions)(4)); + w233.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP43 = new global::Gtk.Button(); this.btnP43.WidthRequest = 50; @@ -2657,16 +2674,16 @@ namespace Mundus.Views.Windows this.btnP43.Name = "btnP43"; this.btnP43.UseUnderline = true; this.btnP43.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w233 = new global::Gtk.Image(); - this.btnP43.Image = w233; + global::Gtk.Image w234 = new global::Gtk.Image(); + this.btnP43.Image = w234; this.tbUI.Add(this.btnP43); - global::Gtk.Table.TableChild w234 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP43])); - w234.TopAttach = ((uint)(7)); - w234.BottomAttach = ((uint)(8)); - w234.LeftAttach = ((uint)(10)); - w234.RightAttach = ((uint)(11)); - w234.XOptions = ((global::Gtk.AttachOptions)(4)); - w234.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w235 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP43])); + w235.TopAttach = ((uint)(7)); + w235.BottomAttach = ((uint)(8)); + w235.LeftAttach = ((uint)(10)); + w235.RightAttach = ((uint)(11)); + w235.XOptions = ((global::Gtk.AttachOptions)(4)); + w235.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP44 = new global::Gtk.Button(); this.btnP44.WidthRequest = 50; @@ -2675,16 +2692,16 @@ namespace Mundus.Views.Windows this.btnP44.Name = "btnP44"; this.btnP44.UseUnderline = true; this.btnP44.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w235 = new global::Gtk.Image(); - this.btnP44.Image = w235; + global::Gtk.Image w236 = new global::Gtk.Image(); + this.btnP44.Image = w236; this.tbUI.Add(this.btnP44); - global::Gtk.Table.TableChild w236 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP44])); - w236.TopAttach = ((uint)(7)); - w236.BottomAttach = ((uint)(8)); - w236.LeftAttach = ((uint)(11)); - w236.RightAttach = ((uint)(12)); - w236.XOptions = ((global::Gtk.AttachOptions)(4)); - w236.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w237 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP44])); + w237.TopAttach = ((uint)(7)); + w237.BottomAttach = ((uint)(8)); + w237.LeftAttach = ((uint)(11)); + w237.RightAttach = ((uint)(12)); + w237.XOptions = ((global::Gtk.AttachOptions)(4)); + w237.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP45 = new global::Gtk.Button(); this.btnP45.WidthRequest = 50; @@ -2693,16 +2710,16 @@ namespace Mundus.Views.Windows this.btnP45.Name = "btnP45"; this.btnP45.UseUnderline = true; this.btnP45.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w237 = new global::Gtk.Image(); - this.btnP45.Image = w237; + global::Gtk.Image w238 = new global::Gtk.Image(); + this.btnP45.Image = w238; this.tbUI.Add(this.btnP45); - global::Gtk.Table.TableChild w238 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP45])); - w238.TopAttach = ((uint)(7)); - w238.BottomAttach = ((uint)(8)); - w238.LeftAttach = ((uint)(12)); - w238.RightAttach = ((uint)(13)); - w238.XOptions = ((global::Gtk.AttachOptions)(4)); - w238.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w239 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP45])); + w239.TopAttach = ((uint)(7)); + w239.BottomAttach = ((uint)(8)); + w239.LeftAttach = ((uint)(12)); + w239.RightAttach = ((uint)(13)); + w239.XOptions = ((global::Gtk.AttachOptions)(4)); + w239.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP46 = new global::Gtk.Button(); this.btnP46.WidthRequest = 50; @@ -2711,16 +2728,16 @@ namespace Mundus.Views.Windows this.btnP46.Name = "btnP46"; this.btnP46.UseUnderline = true; this.btnP46.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w239 = new global::Gtk.Image(); - this.btnP46.Image = w239; + global::Gtk.Image w240 = new global::Gtk.Image(); + this.btnP46.Image = w240; this.tbUI.Add(this.btnP46); - global::Gtk.Table.TableChild w240 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP46])); - w240.TopAttach = ((uint)(7)); - w240.BottomAttach = ((uint)(8)); - w240.LeftAttach = ((uint)(13)); - w240.RightAttach = ((uint)(14)); - w240.XOptions = ((global::Gtk.AttachOptions)(4)); - w240.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w241 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP46])); + w241.TopAttach = ((uint)(7)); + w241.BottomAttach = ((uint)(8)); + w241.LeftAttach = ((uint)(13)); + w241.RightAttach = ((uint)(14)); + w241.XOptions = ((global::Gtk.AttachOptions)(4)); + w241.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP47 = new global::Gtk.Button(); this.btnP47.WidthRequest = 50; @@ -2729,16 +2746,16 @@ namespace Mundus.Views.Windows this.btnP47.Name = "btnP47"; this.btnP47.UseUnderline = true; this.btnP47.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w241 = new global::Gtk.Image(); - this.btnP47.Image = w241; + global::Gtk.Image w242 = new global::Gtk.Image(); + this.btnP47.Image = w242; this.tbUI.Add(this.btnP47); - global::Gtk.Table.TableChild w242 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP47])); - w242.TopAttach = ((uint)(7)); - w242.BottomAttach = ((uint)(8)); - w242.LeftAttach = ((uint)(14)); - w242.RightAttach = ((uint)(15)); - w242.XOptions = ((global::Gtk.AttachOptions)(4)); - w242.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w243 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP47])); + w243.TopAttach = ((uint)(7)); + w243.BottomAttach = ((uint)(8)); + w243.LeftAttach = ((uint)(14)); + w243.RightAttach = ((uint)(15)); + w243.XOptions = ((global::Gtk.AttachOptions)(4)); + w243.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP48 = new global::Gtk.Button(); this.btnP48.WidthRequest = 50; @@ -2747,16 +2764,16 @@ namespace Mundus.Views.Windows this.btnP48.Name = "btnP48"; this.btnP48.UseUnderline = true; this.btnP48.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w243 = new global::Gtk.Image(); - this.btnP48.Image = w243; + global::Gtk.Image w244 = new global::Gtk.Image(); + this.btnP48.Image = w244; this.tbUI.Add(this.btnP48); - global::Gtk.Table.TableChild w244 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP48])); - w244.TopAttach = ((uint)(7)); - w244.BottomAttach = ((uint)(8)); - w244.LeftAttach = ((uint)(15)); - w244.RightAttach = ((uint)(16)); - w244.XOptions = ((global::Gtk.AttachOptions)(4)); - w244.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w245 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP48])); + w245.TopAttach = ((uint)(7)); + w245.BottomAttach = ((uint)(8)); + w245.LeftAttach = ((uint)(15)); + w245.RightAttach = ((uint)(16)); + w245.XOptions = ((global::Gtk.AttachOptions)(4)); + w245.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP49 = new global::Gtk.Button(); this.btnP49.WidthRequest = 50; @@ -2765,16 +2782,16 @@ namespace Mundus.Views.Windows this.btnP49.Name = "btnP49"; this.btnP49.UseUnderline = true; this.btnP49.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w245 = new global::Gtk.Image(); - this.btnP49.Image = w245; + global::Gtk.Image w246 = new global::Gtk.Image(); + this.btnP49.Image = w246; this.tbUI.Add(this.btnP49); - global::Gtk.Table.TableChild w246 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP49])); - w246.TopAttach = ((uint)(7)); - w246.BottomAttach = ((uint)(8)); - w246.LeftAttach = ((uint)(16)); - w246.RightAttach = ((uint)(17)); - w246.XOptions = ((global::Gtk.AttachOptions)(4)); - w246.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w247 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP49])); + w247.TopAttach = ((uint)(7)); + w247.BottomAttach = ((uint)(8)); + w247.LeftAttach = ((uint)(16)); + w247.RightAttach = ((uint)(17)); + w247.XOptions = ((global::Gtk.AttachOptions)(4)); + w247.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP5 = new global::Gtk.Button(); this.btnP5.WidthRequest = 50; @@ -2783,16 +2800,16 @@ namespace Mundus.Views.Windows this.btnP5.Name = "btnP5"; this.btnP5.UseUnderline = true; this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w247 = new global::Gtk.Image(); - this.btnP5.Image = w247; + global::Gtk.Image w248 = new global::Gtk.Image(); + this.btnP5.Image = w248; this.tbUI.Add(this.btnP5); - global::Gtk.Table.TableChild w248 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); - w248.TopAttach = ((uint)(1)); - w248.BottomAttach = ((uint)(2)); - w248.LeftAttach = ((uint)(14)); - w248.RightAttach = ((uint)(15)); - w248.XOptions = ((global::Gtk.AttachOptions)(4)); - w248.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w249 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); + w249.TopAttach = ((uint)(1)); + w249.BottomAttach = ((uint)(2)); + w249.LeftAttach = ((uint)(14)); + w249.RightAttach = ((uint)(15)); + w249.XOptions = ((global::Gtk.AttachOptions)(4)); + w249.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP6 = new global::Gtk.Button(); this.btnP6.WidthRequest = 50; @@ -2801,16 +2818,16 @@ namespace Mundus.Views.Windows this.btnP6.Name = "btnP6"; this.btnP6.UseUnderline = true; this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w249 = new global::Gtk.Image(); - this.btnP6.Image = w249; + global::Gtk.Image w250 = new global::Gtk.Image(); + this.btnP6.Image = w250; this.tbUI.Add(this.btnP6); - global::Gtk.Table.TableChild w250 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); - w250.TopAttach = ((uint)(1)); - w250.BottomAttach = ((uint)(2)); - w250.LeftAttach = ((uint)(15)); - w250.RightAttach = ((uint)(16)); - w250.XOptions = ((global::Gtk.AttachOptions)(4)); - w250.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w251 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); + w251.TopAttach = ((uint)(1)); + w251.BottomAttach = ((uint)(2)); + w251.LeftAttach = ((uint)(15)); + w251.RightAttach = ((uint)(16)); + w251.XOptions = ((global::Gtk.AttachOptions)(4)); + w251.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP7 = new global::Gtk.Button(); this.btnP7.WidthRequest = 50; @@ -2819,16 +2836,16 @@ namespace Mundus.Views.Windows this.btnP7.Name = "btnP7"; this.btnP7.UseUnderline = true; this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w251 = new global::Gtk.Image(); - this.btnP7.Image = w251; + global::Gtk.Image w252 = new global::Gtk.Image(); + this.btnP7.Image = w252; this.tbUI.Add(this.btnP7); - global::Gtk.Table.TableChild w252 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); - w252.TopAttach = ((uint)(1)); - w252.BottomAttach = ((uint)(2)); - w252.LeftAttach = ((uint)(16)); - w252.RightAttach = ((uint)(17)); - w252.XOptions = ((global::Gtk.AttachOptions)(4)); - w252.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w253 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); + w253.TopAttach = ((uint)(1)); + w253.BottomAttach = ((uint)(2)); + w253.LeftAttach = ((uint)(16)); + w253.RightAttach = ((uint)(17)); + w253.XOptions = ((global::Gtk.AttachOptions)(4)); + w253.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP8 = new global::Gtk.Button(); this.btnP8.WidthRequest = 50; @@ -2837,16 +2854,16 @@ namespace Mundus.Views.Windows this.btnP8.Name = "btnP8"; this.btnP8.UseUnderline = true; this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w253 = new global::Gtk.Image(); - this.btnP8.Image = w253; + global::Gtk.Image w254 = new global::Gtk.Image(); + this.btnP8.Image = w254; this.tbUI.Add(this.btnP8); - global::Gtk.Table.TableChild w254 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); - w254.TopAttach = ((uint)(2)); - w254.BottomAttach = ((uint)(3)); - w254.LeftAttach = ((uint)(10)); - w254.RightAttach = ((uint)(11)); - w254.XOptions = ((global::Gtk.AttachOptions)(4)); - w254.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w255 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); + w255.TopAttach = ((uint)(2)); + w255.BottomAttach = ((uint)(3)); + w255.LeftAttach = ((uint)(10)); + w255.RightAttach = ((uint)(11)); + w255.XOptions = ((global::Gtk.AttachOptions)(4)); + w255.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP9 = new global::Gtk.Button(); this.btnP9.WidthRequest = 50; @@ -2855,16 +2872,16 @@ namespace Mundus.Views.Windows this.btnP9.Name = "btnP9"; this.btnP9.UseUnderline = true; this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w255 = new global::Gtk.Image(); - this.btnP9.Image = w255; + global::Gtk.Image w256 = new global::Gtk.Image(); + this.btnP9.Image = w256; this.tbUI.Add(this.btnP9); - global::Gtk.Table.TableChild w256 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); - w256.TopAttach = ((uint)(2)); - w256.BottomAttach = ((uint)(3)); - w256.LeftAttach = ((uint)(11)); - w256.RightAttach = ((uint)(12)); - w256.XOptions = ((global::Gtk.AttachOptions)(4)); - w256.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w257 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); + w257.TopAttach = ((uint)(2)); + w257.BottomAttach = ((uint)(3)); + w257.LeftAttach = ((uint)(11)); + w257.RightAttach = ((uint)(12)); + w257.XOptions = ((global::Gtk.AttachOptions)(4)); + w257.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnPause = new global::Gtk.Button(); this.btnPause.WidthRequest = 50; @@ -2874,1482 +2891,1482 @@ namespace Mundus.Views.Windows this.btnPause.UseUnderline = true; this.btnPause.Label = "Pause"; this.tbUI.Add(this.btnPause); - global::Gtk.Table.TableChild w257 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); - w257.TopAttach = ((uint)(13)); - w257.BottomAttach = ((uint)(14)); - w257.LeftAttach = ((uint)(17)); - w257.RightAttach = ((uint)(18)); - w257.XOptions = ((global::Gtk.AttachOptions)(4)); - w257.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w258 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); + w258.TopAttach = ((uint)(13)); + w258.BottomAttach = ((uint)(14)); + w258.LeftAttach = ((uint)(17)); + w258.RightAttach = ((uint)(18)); + w258.XOptions = ((global::Gtk.AttachOptions)(4)); + w258.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG1 = new global::Gtk.Image(); this.imgG1.WidthRequest = 50; this.imgG1.HeightRequest = 50; this.imgG1.Name = "imgG1"; this.tbUI.Add(this.imgG1); - global::Gtk.Table.TableChild w258 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); - w258.TopAttach = ((uint)(2)); - w258.BottomAttach = ((uint)(3)); - w258.LeftAttach = ((uint)(1)); - w258.RightAttach = ((uint)(2)); - w258.XOptions = ((global::Gtk.AttachOptions)(4)); - w258.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w259 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); + w259.TopAttach = ((uint)(2)); + w259.BottomAttach = ((uint)(3)); + w259.LeftAttach = ((uint)(1)); + w259.RightAttach = ((uint)(2)); + w259.XOptions = ((global::Gtk.AttachOptions)(4)); + w259.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG10 = new global::Gtk.Image(); this.imgG10.WidthRequest = 50; this.imgG10.HeightRequest = 50; this.imgG10.Name = "imgG10"; this.tbUI.Add(this.imgG10); - global::Gtk.Table.TableChild w259 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); - w259.TopAttach = ((uint)(3)); - w259.BottomAttach = ((uint)(4)); - w259.LeftAttach = ((uint)(3)); - w259.RightAttach = ((uint)(4)); - w259.XOptions = ((global::Gtk.AttachOptions)(4)); - w259.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w260 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); + w260.TopAttach = ((uint)(3)); + w260.BottomAttach = ((uint)(4)); + w260.LeftAttach = ((uint)(3)); + w260.RightAttach = ((uint)(4)); + w260.XOptions = ((global::Gtk.AttachOptions)(4)); + w260.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG11 = new global::Gtk.Image(); this.imgG11.WidthRequest = 50; this.imgG11.HeightRequest = 50; this.imgG11.Name = "imgG11"; this.tbUI.Add(this.imgG11); - global::Gtk.Table.TableChild w260 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); - w260.TopAttach = ((uint)(3)); - w260.BottomAttach = ((uint)(4)); - w260.LeftAttach = ((uint)(4)); - w260.RightAttach = ((uint)(5)); - w260.XOptions = ((global::Gtk.AttachOptions)(4)); - w260.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w261 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); + w261.TopAttach = ((uint)(3)); + w261.BottomAttach = ((uint)(4)); + w261.LeftAttach = ((uint)(4)); + w261.RightAttach = ((uint)(5)); + w261.XOptions = ((global::Gtk.AttachOptions)(4)); + w261.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG12 = new global::Gtk.Image(); this.imgG12.WidthRequest = 50; this.imgG12.HeightRequest = 50; this.imgG12.Name = "imgG12"; this.tbUI.Add(this.imgG12); - global::Gtk.Table.TableChild w261 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); - w261.TopAttach = ((uint)(3)); - w261.BottomAttach = ((uint)(4)); - w261.LeftAttach = ((uint)(5)); - w261.RightAttach = ((uint)(6)); - w261.XOptions = ((global::Gtk.AttachOptions)(4)); - w261.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w262 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); + w262.TopAttach = ((uint)(3)); + w262.BottomAttach = ((uint)(4)); + w262.LeftAttach = ((uint)(5)); + w262.RightAttach = ((uint)(6)); + w262.XOptions = ((global::Gtk.AttachOptions)(4)); + w262.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG13 = new global::Gtk.Image(); this.imgG13.WidthRequest = 50; this.imgG13.HeightRequest = 50; this.imgG13.Name = "imgG13"; this.tbUI.Add(this.imgG13); - global::Gtk.Table.TableChild w262 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); - w262.TopAttach = ((uint)(3)); - w262.BottomAttach = ((uint)(4)); - w262.LeftAttach = ((uint)(6)); - w262.RightAttach = ((uint)(7)); - w262.XOptions = ((global::Gtk.AttachOptions)(4)); - w262.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w263 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); + w263.TopAttach = ((uint)(3)); + w263.BottomAttach = ((uint)(4)); + w263.LeftAttach = ((uint)(6)); + w263.RightAttach = ((uint)(7)); + w263.XOptions = ((global::Gtk.AttachOptions)(4)); + w263.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG14 = new global::Gtk.Image(); this.imgG14.WidthRequest = 50; this.imgG14.HeightRequest = 50; this.imgG14.Name = "imgG14"; this.tbUI.Add(this.imgG14); - global::Gtk.Table.TableChild w263 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); - w263.TopAttach = ((uint)(3)); - w263.BottomAttach = ((uint)(4)); - w263.LeftAttach = ((uint)(7)); - w263.RightAttach = ((uint)(8)); - w263.XOptions = ((global::Gtk.AttachOptions)(4)); - w263.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w264 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); + w264.TopAttach = ((uint)(3)); + w264.BottomAttach = ((uint)(4)); + w264.LeftAttach = ((uint)(7)); + w264.RightAttach = ((uint)(8)); + w264.XOptions = ((global::Gtk.AttachOptions)(4)); + w264.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG15 = new global::Gtk.Image(); this.imgG15.WidthRequest = 50; this.imgG15.HeightRequest = 50; this.imgG15.Name = "imgG15"; this.tbUI.Add(this.imgG15); - global::Gtk.Table.TableChild w264 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); - w264.TopAttach = ((uint)(4)); - w264.BottomAttach = ((uint)(5)); - w264.LeftAttach = ((uint)(1)); - w264.RightAttach = ((uint)(2)); - w264.XOptions = ((global::Gtk.AttachOptions)(4)); - w264.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w265 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + w265.TopAttach = ((uint)(4)); + w265.BottomAttach = ((uint)(5)); + w265.LeftAttach = ((uint)(1)); + w265.RightAttach = ((uint)(2)); + w265.XOptions = ((global::Gtk.AttachOptions)(4)); + w265.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG16 = new global::Gtk.Image(); this.imgG16.WidthRequest = 50; this.imgG16.HeightRequest = 50; this.imgG16.Name = "imgG16"; this.tbUI.Add(this.imgG16); - global::Gtk.Table.TableChild w265 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); - w265.TopAttach = ((uint)(4)); - w265.BottomAttach = ((uint)(5)); - w265.LeftAttach = ((uint)(2)); - w265.RightAttach = ((uint)(3)); - w265.XOptions = ((global::Gtk.AttachOptions)(4)); - w265.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w266 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); + w266.TopAttach = ((uint)(4)); + w266.BottomAttach = ((uint)(5)); + w266.LeftAttach = ((uint)(2)); + w266.RightAttach = ((uint)(3)); + w266.XOptions = ((global::Gtk.AttachOptions)(4)); + w266.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG17 = new global::Gtk.Image(); this.imgG17.WidthRequest = 50; this.imgG17.HeightRequest = 50; this.imgG17.Name = "imgG17"; this.tbUI.Add(this.imgG17); - global::Gtk.Table.TableChild w266 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); - w266.TopAttach = ((uint)(4)); - w266.BottomAttach = ((uint)(5)); - w266.LeftAttach = ((uint)(3)); - w266.RightAttach = ((uint)(4)); - w266.XOptions = ((global::Gtk.AttachOptions)(4)); - w266.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w267 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); + w267.TopAttach = ((uint)(4)); + w267.BottomAttach = ((uint)(5)); + w267.LeftAttach = ((uint)(3)); + w267.RightAttach = ((uint)(4)); + w267.XOptions = ((global::Gtk.AttachOptions)(4)); + w267.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG18 = new global::Gtk.Image(); this.imgG18.WidthRequest = 50; this.imgG18.HeightRequest = 50; this.imgG18.Name = "imgG18"; this.tbUI.Add(this.imgG18); - global::Gtk.Table.TableChild w267 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); - w267.TopAttach = ((uint)(4)); - w267.BottomAttach = ((uint)(5)); - w267.LeftAttach = ((uint)(4)); - w267.RightAttach = ((uint)(5)); - w267.XOptions = ((global::Gtk.AttachOptions)(4)); - w267.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w268 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); + w268.TopAttach = ((uint)(4)); + w268.BottomAttach = ((uint)(5)); + w268.LeftAttach = ((uint)(4)); + w268.RightAttach = ((uint)(5)); + w268.XOptions = ((global::Gtk.AttachOptions)(4)); + w268.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG19 = new global::Gtk.Image(); this.imgG19.WidthRequest = 50; this.imgG19.HeightRequest = 50; this.imgG19.Name = "imgG19"; this.tbUI.Add(this.imgG19); - global::Gtk.Table.TableChild w268 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); - w268.TopAttach = ((uint)(4)); - w268.BottomAttach = ((uint)(5)); - w268.LeftAttach = ((uint)(5)); - w268.RightAttach = ((uint)(6)); - w268.XOptions = ((global::Gtk.AttachOptions)(4)); - w268.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w269 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + w269.TopAttach = ((uint)(4)); + w269.BottomAttach = ((uint)(5)); + w269.LeftAttach = ((uint)(5)); + w269.RightAttach = ((uint)(6)); + w269.XOptions = ((global::Gtk.AttachOptions)(4)); + w269.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG2 = new global::Gtk.Image(); this.imgG2.WidthRequest = 50; this.imgG2.HeightRequest = 50; this.imgG2.Name = "imgG2"; this.tbUI.Add(this.imgG2); - global::Gtk.Table.TableChild w269 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); - w269.TopAttach = ((uint)(2)); - w269.BottomAttach = ((uint)(3)); - w269.LeftAttach = ((uint)(2)); - w269.RightAttach = ((uint)(3)); - w269.XOptions = ((global::Gtk.AttachOptions)(4)); - w269.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w270 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); + w270.TopAttach = ((uint)(2)); + w270.BottomAttach = ((uint)(3)); + w270.LeftAttach = ((uint)(2)); + w270.RightAttach = ((uint)(3)); + w270.XOptions = ((global::Gtk.AttachOptions)(4)); + w270.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG20 = new global::Gtk.Image(); this.imgG20.WidthRequest = 50; this.imgG20.HeightRequest = 50; this.imgG20.Name = "imgG20"; this.tbUI.Add(this.imgG20); - global::Gtk.Table.TableChild w270 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); - w270.TopAttach = ((uint)(4)); - w270.BottomAttach = ((uint)(5)); - w270.LeftAttach = ((uint)(6)); - w270.RightAttach = ((uint)(7)); - w270.XOptions = ((global::Gtk.AttachOptions)(4)); - w270.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w271 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); + w271.TopAttach = ((uint)(4)); + w271.BottomAttach = ((uint)(5)); + w271.LeftAttach = ((uint)(6)); + w271.RightAttach = ((uint)(7)); + w271.XOptions = ((global::Gtk.AttachOptions)(4)); + w271.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG21 = new global::Gtk.Image(); this.imgG21.WidthRequest = 50; this.imgG21.HeightRequest = 50; this.imgG21.Name = "imgG21"; this.tbUI.Add(this.imgG21); - global::Gtk.Table.TableChild w271 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); - w271.TopAttach = ((uint)(4)); - w271.BottomAttach = ((uint)(5)); - w271.LeftAttach = ((uint)(7)); - w271.RightAttach = ((uint)(8)); - w271.XOptions = ((global::Gtk.AttachOptions)(4)); - w271.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w272 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); + w272.TopAttach = ((uint)(4)); + w272.BottomAttach = ((uint)(5)); + w272.LeftAttach = ((uint)(7)); + w272.RightAttach = ((uint)(8)); + w272.XOptions = ((global::Gtk.AttachOptions)(4)); + w272.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG22 = new global::Gtk.Image(); this.imgG22.WidthRequest = 50; this.imgG22.HeightRequest = 50; this.imgG22.Name = "imgG22"; this.tbUI.Add(this.imgG22); - global::Gtk.Table.TableChild w272 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); - w272.TopAttach = ((uint)(5)); - w272.BottomAttach = ((uint)(6)); - w272.LeftAttach = ((uint)(1)); - w272.RightAttach = ((uint)(2)); - w272.XOptions = ((global::Gtk.AttachOptions)(4)); - w272.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w273 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); + w273.TopAttach = ((uint)(5)); + w273.BottomAttach = ((uint)(6)); + w273.LeftAttach = ((uint)(1)); + w273.RightAttach = ((uint)(2)); + w273.XOptions = ((global::Gtk.AttachOptions)(4)); + w273.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG23 = new global::Gtk.Image(); this.imgG23.WidthRequest = 50; this.imgG23.HeightRequest = 50; this.imgG23.Name = "imgG23"; this.tbUI.Add(this.imgG23); - global::Gtk.Table.TableChild w273 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); - w273.TopAttach = ((uint)(5)); - w273.BottomAttach = ((uint)(6)); - w273.LeftAttach = ((uint)(2)); - w273.RightAttach = ((uint)(3)); - w273.XOptions = ((global::Gtk.AttachOptions)(4)); - w273.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w274 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); + w274.TopAttach = ((uint)(5)); + w274.BottomAttach = ((uint)(6)); + w274.LeftAttach = ((uint)(2)); + w274.RightAttach = ((uint)(3)); + w274.XOptions = ((global::Gtk.AttachOptions)(4)); + w274.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG24 = new global::Gtk.Image(); this.imgG24.WidthRequest = 50; this.imgG24.HeightRequest = 50; this.imgG24.Name = "imgG24"; this.tbUI.Add(this.imgG24); - global::Gtk.Table.TableChild w274 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); - w274.TopAttach = ((uint)(5)); - w274.BottomAttach = ((uint)(6)); - w274.LeftAttach = ((uint)(3)); - w274.RightAttach = ((uint)(4)); - w274.XOptions = ((global::Gtk.AttachOptions)(4)); - w274.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w275 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); + w275.TopAttach = ((uint)(5)); + w275.BottomAttach = ((uint)(6)); + w275.LeftAttach = ((uint)(3)); + w275.RightAttach = ((uint)(4)); + w275.XOptions = ((global::Gtk.AttachOptions)(4)); + w275.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG25 = new global::Gtk.Image(); this.imgG25.WidthRequest = 50; this.imgG25.HeightRequest = 50; this.imgG25.Name = "imgG25"; this.tbUI.Add(this.imgG25); - global::Gtk.Table.TableChild w275 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); - w275.TopAttach = ((uint)(5)); - w275.BottomAttach = ((uint)(6)); - w275.LeftAttach = ((uint)(4)); - w275.RightAttach = ((uint)(5)); - w275.XOptions = ((global::Gtk.AttachOptions)(4)); - w275.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w276 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + w276.TopAttach = ((uint)(5)); + w276.BottomAttach = ((uint)(6)); + w276.LeftAttach = ((uint)(4)); + w276.RightAttach = ((uint)(5)); + w276.XOptions = ((global::Gtk.AttachOptions)(4)); + w276.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG26 = new global::Gtk.Image(); this.imgG26.WidthRequest = 50; this.imgG26.HeightRequest = 50; this.imgG26.Name = "imgG26"; this.tbUI.Add(this.imgG26); - global::Gtk.Table.TableChild w276 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG26])); - w276.TopAttach = ((uint)(5)); - w276.BottomAttach = ((uint)(6)); - w276.LeftAttach = ((uint)(5)); - w276.RightAttach = ((uint)(6)); - w276.XOptions = ((global::Gtk.AttachOptions)(4)); - w276.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w277 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG26])); + w277.TopAttach = ((uint)(5)); + w277.BottomAttach = ((uint)(6)); + w277.LeftAttach = ((uint)(5)); + w277.RightAttach = ((uint)(6)); + w277.XOptions = ((global::Gtk.AttachOptions)(4)); + w277.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG27 = new global::Gtk.Image(); this.imgG27.WidthRequest = 50; this.imgG27.HeightRequest = 50; this.imgG27.Name = "imgG27"; this.tbUI.Add(this.imgG27); - global::Gtk.Table.TableChild w277 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG27])); - w277.TopAttach = ((uint)(5)); - w277.BottomAttach = ((uint)(6)); - w277.LeftAttach = ((uint)(6)); - w277.RightAttach = ((uint)(7)); - w277.XOptions = ((global::Gtk.AttachOptions)(4)); - w277.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w278 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG27])); + w278.TopAttach = ((uint)(5)); + w278.BottomAttach = ((uint)(6)); + w278.LeftAttach = ((uint)(6)); + w278.RightAttach = ((uint)(7)); + w278.XOptions = ((global::Gtk.AttachOptions)(4)); + w278.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG28 = new global::Gtk.Image(); this.imgG28.WidthRequest = 50; this.imgG28.HeightRequest = 50; this.imgG28.Name = "imgG28"; this.tbUI.Add(this.imgG28); - global::Gtk.Table.TableChild w278 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG28])); - w278.TopAttach = ((uint)(5)); - w278.BottomAttach = ((uint)(6)); - w278.LeftAttach = ((uint)(7)); - w278.RightAttach = ((uint)(8)); - w278.XOptions = ((global::Gtk.AttachOptions)(4)); - w278.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w279 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG28])); + w279.TopAttach = ((uint)(5)); + w279.BottomAttach = ((uint)(6)); + w279.LeftAttach = ((uint)(7)); + w279.RightAttach = ((uint)(8)); + w279.XOptions = ((global::Gtk.AttachOptions)(4)); + w279.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG29 = new global::Gtk.Image(); this.imgG29.WidthRequest = 50; this.imgG29.HeightRequest = 50; this.imgG29.Name = "imgG29"; this.tbUI.Add(this.imgG29); - global::Gtk.Table.TableChild w279 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG29])); - w279.TopAttach = ((uint)(6)); - w279.BottomAttach = ((uint)(7)); - w279.LeftAttach = ((uint)(1)); - w279.RightAttach = ((uint)(2)); - w279.XOptions = ((global::Gtk.AttachOptions)(4)); - w279.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w280 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG29])); + w280.TopAttach = ((uint)(6)); + w280.BottomAttach = ((uint)(7)); + w280.LeftAttach = ((uint)(1)); + w280.RightAttach = ((uint)(2)); + w280.XOptions = ((global::Gtk.AttachOptions)(4)); + w280.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG3 = new global::Gtk.Image(); this.imgG3.WidthRequest = 50; this.imgG3.HeightRequest = 50; this.imgG3.Name = "imgG3"; this.tbUI.Add(this.imgG3); - global::Gtk.Table.TableChild w280 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); - w280.TopAttach = ((uint)(2)); - w280.BottomAttach = ((uint)(3)); - w280.LeftAttach = ((uint)(3)); - w280.RightAttach = ((uint)(4)); - w280.XOptions = ((global::Gtk.AttachOptions)(4)); - w280.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w281 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); + w281.TopAttach = ((uint)(2)); + w281.BottomAttach = ((uint)(3)); + w281.LeftAttach = ((uint)(3)); + w281.RightAttach = ((uint)(4)); + w281.XOptions = ((global::Gtk.AttachOptions)(4)); + w281.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG30 = new global::Gtk.Image(); this.imgG30.WidthRequest = 50; this.imgG30.HeightRequest = 50; this.imgG30.Name = "imgG30"; this.tbUI.Add(this.imgG30); - global::Gtk.Table.TableChild w281 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG30])); - w281.TopAttach = ((uint)(6)); - w281.BottomAttach = ((uint)(7)); - w281.LeftAttach = ((uint)(2)); - w281.RightAttach = ((uint)(3)); - w281.XOptions = ((global::Gtk.AttachOptions)(4)); - w281.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w282 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG30])); + w282.TopAttach = ((uint)(6)); + w282.BottomAttach = ((uint)(7)); + w282.LeftAttach = ((uint)(2)); + w282.RightAttach = ((uint)(3)); + w282.XOptions = ((global::Gtk.AttachOptions)(4)); + w282.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG31 = new global::Gtk.Image(); this.imgG31.WidthRequest = 50; this.imgG31.HeightRequest = 50; this.imgG31.Name = "imgG31"; this.tbUI.Add(this.imgG31); - global::Gtk.Table.TableChild w282 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG31])); - w282.TopAttach = ((uint)(6)); - w282.BottomAttach = ((uint)(7)); - w282.LeftAttach = ((uint)(3)); - w282.RightAttach = ((uint)(4)); - w282.XOptions = ((global::Gtk.AttachOptions)(4)); - w282.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w283 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG31])); + w283.TopAttach = ((uint)(6)); + w283.BottomAttach = ((uint)(7)); + w283.LeftAttach = ((uint)(3)); + w283.RightAttach = ((uint)(4)); + w283.XOptions = ((global::Gtk.AttachOptions)(4)); + w283.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG32 = new global::Gtk.Image(); this.imgG32.WidthRequest = 50; this.imgG32.HeightRequest = 50; this.imgG32.Name = "imgG32"; this.tbUI.Add(this.imgG32); - global::Gtk.Table.TableChild w283 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG32])); - w283.TopAttach = ((uint)(6)); - w283.BottomAttach = ((uint)(7)); - w283.LeftAttach = ((uint)(4)); - w283.RightAttach = ((uint)(5)); - w283.XOptions = ((global::Gtk.AttachOptions)(4)); - w283.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w284 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG32])); + w284.TopAttach = ((uint)(6)); + w284.BottomAttach = ((uint)(7)); + w284.LeftAttach = ((uint)(4)); + w284.RightAttach = ((uint)(5)); + w284.XOptions = ((global::Gtk.AttachOptions)(4)); + w284.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG33 = new global::Gtk.Image(); this.imgG33.WidthRequest = 50; this.imgG33.HeightRequest = 50; this.imgG33.Name = "imgG33"; this.tbUI.Add(this.imgG33); - global::Gtk.Table.TableChild w284 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG33])); - w284.TopAttach = ((uint)(6)); - w284.BottomAttach = ((uint)(7)); - w284.LeftAttach = ((uint)(5)); - w284.RightAttach = ((uint)(6)); - w284.XOptions = ((global::Gtk.AttachOptions)(4)); - w284.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w285 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG33])); + w285.TopAttach = ((uint)(6)); + w285.BottomAttach = ((uint)(7)); + w285.LeftAttach = ((uint)(5)); + w285.RightAttach = ((uint)(6)); + w285.XOptions = ((global::Gtk.AttachOptions)(4)); + w285.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG34 = new global::Gtk.Image(); this.imgG34.WidthRequest = 50; this.imgG34.HeightRequest = 50; this.imgG34.Name = "imgG34"; this.tbUI.Add(this.imgG34); - global::Gtk.Table.TableChild w285 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG34])); - w285.TopAttach = ((uint)(6)); - w285.BottomAttach = ((uint)(7)); - w285.LeftAttach = ((uint)(6)); - w285.RightAttach = ((uint)(7)); - w285.XOptions = ((global::Gtk.AttachOptions)(4)); - w285.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w286 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG34])); + w286.TopAttach = ((uint)(6)); + w286.BottomAttach = ((uint)(7)); + w286.LeftAttach = ((uint)(6)); + w286.RightAttach = ((uint)(7)); + w286.XOptions = ((global::Gtk.AttachOptions)(4)); + w286.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG35 = new global::Gtk.Image(); this.imgG35.WidthRequest = 50; this.imgG35.HeightRequest = 50; this.imgG35.Name = "imgG35"; this.tbUI.Add(this.imgG35); - global::Gtk.Table.TableChild w286 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG35])); - w286.TopAttach = ((uint)(6)); - w286.BottomAttach = ((uint)(7)); - w286.LeftAttach = ((uint)(7)); - w286.RightAttach = ((uint)(8)); - w286.XOptions = ((global::Gtk.AttachOptions)(4)); - w286.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w287 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG35])); + w287.TopAttach = ((uint)(6)); + w287.BottomAttach = ((uint)(7)); + w287.LeftAttach = ((uint)(7)); + w287.RightAttach = ((uint)(8)); + w287.XOptions = ((global::Gtk.AttachOptions)(4)); + w287.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG36 = new global::Gtk.Image(); this.imgG36.WidthRequest = 50; this.imgG36.HeightRequest = 50; this.imgG36.Name = "imgG36"; this.tbUI.Add(this.imgG36); - global::Gtk.Table.TableChild w287 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG36])); - w287.TopAttach = ((uint)(7)); - w287.BottomAttach = ((uint)(8)); - w287.LeftAttach = ((uint)(1)); - w287.RightAttach = ((uint)(2)); - w287.XOptions = ((global::Gtk.AttachOptions)(4)); - w287.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w288 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG36])); + w288.TopAttach = ((uint)(7)); + w288.BottomAttach = ((uint)(8)); + w288.LeftAttach = ((uint)(1)); + w288.RightAttach = ((uint)(2)); + w288.XOptions = ((global::Gtk.AttachOptions)(4)); + w288.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG37 = new global::Gtk.Image(); this.imgG37.WidthRequest = 50; this.imgG37.HeightRequest = 50; this.imgG37.Name = "imgG37"; this.tbUI.Add(this.imgG37); - global::Gtk.Table.TableChild w288 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG37])); - w288.TopAttach = ((uint)(7)); - w288.BottomAttach = ((uint)(8)); - w288.LeftAttach = ((uint)(2)); - w288.RightAttach = ((uint)(3)); - w288.XOptions = ((global::Gtk.AttachOptions)(4)); - w288.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w289 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG37])); + w289.TopAttach = ((uint)(7)); + w289.BottomAttach = ((uint)(8)); + w289.LeftAttach = ((uint)(2)); + w289.RightAttach = ((uint)(3)); + w289.XOptions = ((global::Gtk.AttachOptions)(4)); + w289.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG38 = new global::Gtk.Image(); this.imgG38.WidthRequest = 50; this.imgG38.HeightRequest = 50; this.imgG38.Name = "imgG38"; this.tbUI.Add(this.imgG38); - global::Gtk.Table.TableChild w289 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG38])); - w289.TopAttach = ((uint)(7)); - w289.BottomAttach = ((uint)(8)); - w289.LeftAttach = ((uint)(3)); - w289.RightAttach = ((uint)(4)); - w289.XOptions = ((global::Gtk.AttachOptions)(4)); - w289.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w290 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG38])); + w290.TopAttach = ((uint)(7)); + w290.BottomAttach = ((uint)(8)); + w290.LeftAttach = ((uint)(3)); + w290.RightAttach = ((uint)(4)); + w290.XOptions = ((global::Gtk.AttachOptions)(4)); + w290.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG39 = new global::Gtk.Image(); this.imgG39.WidthRequest = 50; this.imgG39.HeightRequest = 50; this.imgG39.Name = "imgG39"; this.tbUI.Add(this.imgG39); - global::Gtk.Table.TableChild w290 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG39])); - w290.TopAttach = ((uint)(7)); - w290.BottomAttach = ((uint)(8)); - w290.LeftAttach = ((uint)(4)); - w290.RightAttach = ((uint)(5)); - w290.XOptions = ((global::Gtk.AttachOptions)(4)); - w290.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w291 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG39])); + w291.TopAttach = ((uint)(7)); + w291.BottomAttach = ((uint)(8)); + w291.LeftAttach = ((uint)(4)); + w291.RightAttach = ((uint)(5)); + w291.XOptions = ((global::Gtk.AttachOptions)(4)); + w291.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG4 = new global::Gtk.Image(); this.imgG4.WidthRequest = 50; this.imgG4.HeightRequest = 50; this.imgG4.Name = "imgG4"; this.tbUI.Add(this.imgG4); - global::Gtk.Table.TableChild w291 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); - w291.TopAttach = ((uint)(2)); - w291.BottomAttach = ((uint)(3)); - w291.LeftAttach = ((uint)(4)); - w291.RightAttach = ((uint)(5)); - w291.XOptions = ((global::Gtk.AttachOptions)(4)); - w291.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w292 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); + w292.TopAttach = ((uint)(2)); + w292.BottomAttach = ((uint)(3)); + w292.LeftAttach = ((uint)(4)); + w292.RightAttach = ((uint)(5)); + w292.XOptions = ((global::Gtk.AttachOptions)(4)); + w292.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG40 = new global::Gtk.Image(); this.imgG40.WidthRequest = 50; this.imgG40.HeightRequest = 50; this.imgG40.Name = "imgG40"; this.tbUI.Add(this.imgG40); - global::Gtk.Table.TableChild w292 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG40])); - w292.TopAttach = ((uint)(7)); - w292.BottomAttach = ((uint)(8)); - w292.LeftAttach = ((uint)(5)); - w292.RightAttach = ((uint)(6)); - w292.XOptions = ((global::Gtk.AttachOptions)(4)); - w292.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w293 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG40])); + w293.TopAttach = ((uint)(7)); + w293.BottomAttach = ((uint)(8)); + w293.LeftAttach = ((uint)(5)); + w293.RightAttach = ((uint)(6)); + w293.XOptions = ((global::Gtk.AttachOptions)(4)); + w293.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG41 = new global::Gtk.Image(); this.imgG41.WidthRequest = 50; this.imgG41.HeightRequest = 50; this.imgG41.Name = "imgG41"; this.tbUI.Add(this.imgG41); - global::Gtk.Table.TableChild w293 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG41])); - w293.TopAttach = ((uint)(7)); - w293.BottomAttach = ((uint)(8)); - w293.LeftAttach = ((uint)(6)); - w293.RightAttach = ((uint)(7)); - w293.XOptions = ((global::Gtk.AttachOptions)(4)); - w293.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w294 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG41])); + w294.TopAttach = ((uint)(7)); + w294.BottomAttach = ((uint)(8)); + w294.LeftAttach = ((uint)(6)); + w294.RightAttach = ((uint)(7)); + w294.XOptions = ((global::Gtk.AttachOptions)(4)); + w294.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG42 = new global::Gtk.Image(); this.imgG42.WidthRequest = 50; this.imgG42.HeightRequest = 50; this.imgG42.Name = "imgG42"; this.tbUI.Add(this.imgG42); - global::Gtk.Table.TableChild w294 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG42])); - w294.TopAttach = ((uint)(7)); - w294.BottomAttach = ((uint)(8)); - w294.LeftAttach = ((uint)(7)); - w294.RightAttach = ((uint)(8)); - w294.XOptions = ((global::Gtk.AttachOptions)(4)); - w294.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w295 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG42])); + w295.TopAttach = ((uint)(7)); + w295.BottomAttach = ((uint)(8)); + w295.LeftAttach = ((uint)(7)); + w295.RightAttach = ((uint)(8)); + w295.XOptions = ((global::Gtk.AttachOptions)(4)); + w295.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG43 = new global::Gtk.Image(); this.imgG43.WidthRequest = 50; this.imgG43.HeightRequest = 50; this.imgG43.Name = "imgG43"; this.tbUI.Add(this.imgG43); - global::Gtk.Table.TableChild w295 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG43])); - w295.TopAttach = ((uint)(8)); - w295.BottomAttach = ((uint)(9)); - w295.LeftAttach = ((uint)(1)); - w295.RightAttach = ((uint)(2)); - w295.XOptions = ((global::Gtk.AttachOptions)(4)); - w295.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w296 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG43])); + w296.TopAttach = ((uint)(8)); + w296.BottomAttach = ((uint)(9)); + w296.LeftAttach = ((uint)(1)); + w296.RightAttach = ((uint)(2)); + w296.XOptions = ((global::Gtk.AttachOptions)(4)); + w296.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG44 = new global::Gtk.Image(); this.imgG44.WidthRequest = 50; this.imgG44.HeightRequest = 50; this.imgG44.Name = "imgG44"; this.tbUI.Add(this.imgG44); - global::Gtk.Table.TableChild w296 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG44])); - w296.TopAttach = ((uint)(8)); - w296.BottomAttach = ((uint)(9)); - w296.LeftAttach = ((uint)(2)); - w296.RightAttach = ((uint)(3)); - w296.XOptions = ((global::Gtk.AttachOptions)(4)); - w296.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w297 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG44])); + w297.TopAttach = ((uint)(8)); + w297.BottomAttach = ((uint)(9)); + w297.LeftAttach = ((uint)(2)); + w297.RightAttach = ((uint)(3)); + w297.XOptions = ((global::Gtk.AttachOptions)(4)); + w297.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG45 = new global::Gtk.Image(); this.imgG45.WidthRequest = 50; this.imgG45.HeightRequest = 50; this.imgG45.Name = "imgG45"; this.tbUI.Add(this.imgG45); - global::Gtk.Table.TableChild w297 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG45])); - w297.TopAttach = ((uint)(8)); - w297.BottomAttach = ((uint)(9)); - w297.LeftAttach = ((uint)(3)); - w297.RightAttach = ((uint)(4)); - w297.XOptions = ((global::Gtk.AttachOptions)(4)); - w297.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w298 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG45])); + w298.TopAttach = ((uint)(8)); + w298.BottomAttach = ((uint)(9)); + w298.LeftAttach = ((uint)(3)); + w298.RightAttach = ((uint)(4)); + w298.XOptions = ((global::Gtk.AttachOptions)(4)); + w298.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG46 = new global::Gtk.Image(); this.imgG46.WidthRequest = 50; this.imgG46.HeightRequest = 50; this.imgG46.Name = "imgG46"; this.tbUI.Add(this.imgG46); - global::Gtk.Table.TableChild w298 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG46])); - w298.TopAttach = ((uint)(8)); - w298.BottomAttach = ((uint)(9)); - w298.LeftAttach = ((uint)(4)); - w298.RightAttach = ((uint)(5)); - w298.XOptions = ((global::Gtk.AttachOptions)(4)); - w298.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w299 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG46])); + w299.TopAttach = ((uint)(8)); + w299.BottomAttach = ((uint)(9)); + w299.LeftAttach = ((uint)(4)); + w299.RightAttach = ((uint)(5)); + w299.XOptions = ((global::Gtk.AttachOptions)(4)); + w299.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG47 = new global::Gtk.Image(); this.imgG47.WidthRequest = 50; this.imgG47.HeightRequest = 50; this.imgG47.Name = "imgG47"; this.tbUI.Add(this.imgG47); - global::Gtk.Table.TableChild w299 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG47])); - w299.TopAttach = ((uint)(8)); - w299.BottomAttach = ((uint)(9)); - w299.LeftAttach = ((uint)(5)); - w299.RightAttach = ((uint)(6)); - w299.XOptions = ((global::Gtk.AttachOptions)(4)); - w299.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w300 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG47])); + w300.TopAttach = ((uint)(8)); + w300.BottomAttach = ((uint)(9)); + w300.LeftAttach = ((uint)(5)); + w300.RightAttach = ((uint)(6)); + w300.XOptions = ((global::Gtk.AttachOptions)(4)); + w300.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG48 = new global::Gtk.Image(); this.imgG48.WidthRequest = 50; this.imgG48.HeightRequest = 50; this.imgG48.Name = "imgG48"; this.tbUI.Add(this.imgG48); - global::Gtk.Table.TableChild w300 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG48])); - w300.TopAttach = ((uint)(8)); - w300.BottomAttach = ((uint)(9)); - w300.LeftAttach = ((uint)(6)); - w300.RightAttach = ((uint)(7)); - w300.XOptions = ((global::Gtk.AttachOptions)(4)); - w300.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w301 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG48])); + w301.TopAttach = ((uint)(8)); + w301.BottomAttach = ((uint)(9)); + w301.LeftAttach = ((uint)(6)); + w301.RightAttach = ((uint)(7)); + w301.XOptions = ((global::Gtk.AttachOptions)(4)); + w301.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG49 = new global::Gtk.Image(); this.imgG49.WidthRequest = 50; this.imgG49.HeightRequest = 50; this.imgG49.Name = "imgG49"; this.tbUI.Add(this.imgG49); - global::Gtk.Table.TableChild w301 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG49])); - w301.TopAttach = ((uint)(8)); - w301.BottomAttach = ((uint)(9)); - w301.LeftAttach = ((uint)(7)); - w301.RightAttach = ((uint)(8)); - w301.XOptions = ((global::Gtk.AttachOptions)(4)); - w301.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w302 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG49])); + w302.TopAttach = ((uint)(8)); + w302.BottomAttach = ((uint)(9)); + w302.LeftAttach = ((uint)(7)); + w302.RightAttach = ((uint)(8)); + w302.XOptions = ((global::Gtk.AttachOptions)(4)); + w302.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG5 = new global::Gtk.Image(); this.imgG5.WidthRequest = 50; this.imgG5.HeightRequest = 50; this.imgG5.Name = "imgG5"; this.tbUI.Add(this.imgG5); - global::Gtk.Table.TableChild w302 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); - w302.TopAttach = ((uint)(2)); - w302.BottomAttach = ((uint)(3)); - w302.LeftAttach = ((uint)(5)); - w302.RightAttach = ((uint)(6)); - w302.XOptions = ((global::Gtk.AttachOptions)(4)); - w302.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w303 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + w303.TopAttach = ((uint)(2)); + w303.BottomAttach = ((uint)(3)); + w303.LeftAttach = ((uint)(5)); + w303.RightAttach = ((uint)(6)); + w303.XOptions = ((global::Gtk.AttachOptions)(4)); + w303.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG6 = new global::Gtk.Image(); this.imgG6.WidthRequest = 50; this.imgG6.HeightRequest = 50; this.imgG6.Name = "imgG6"; this.tbUI.Add(this.imgG6); - global::Gtk.Table.TableChild w303 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); - w303.TopAttach = ((uint)(2)); - w303.BottomAttach = ((uint)(3)); - w303.LeftAttach = ((uint)(6)); - w303.RightAttach = ((uint)(7)); - w303.XOptions = ((global::Gtk.AttachOptions)(4)); - w303.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w304 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); + w304.TopAttach = ((uint)(2)); + w304.BottomAttach = ((uint)(3)); + w304.LeftAttach = ((uint)(6)); + w304.RightAttach = ((uint)(7)); + w304.XOptions = ((global::Gtk.AttachOptions)(4)); + w304.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG7 = new global::Gtk.Image(); this.imgG7.WidthRequest = 50; this.imgG7.HeightRequest = 50; this.imgG7.Name = "imgG7"; this.tbUI.Add(this.imgG7); - global::Gtk.Table.TableChild w304 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); - w304.TopAttach = ((uint)(2)); - w304.BottomAttach = ((uint)(3)); - w304.LeftAttach = ((uint)(7)); - w304.RightAttach = ((uint)(8)); - w304.XOptions = ((global::Gtk.AttachOptions)(4)); - w304.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w305 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); + w305.TopAttach = ((uint)(2)); + w305.BottomAttach = ((uint)(3)); + w305.LeftAttach = ((uint)(7)); + w305.RightAttach = ((uint)(8)); + w305.XOptions = ((global::Gtk.AttachOptions)(4)); + w305.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG8 = new global::Gtk.Image(); this.imgG8.WidthRequest = 50; this.imgG8.HeightRequest = 50; this.imgG8.Name = "imgG8"; this.tbUI.Add(this.imgG8); - global::Gtk.Table.TableChild w305 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); - w305.TopAttach = ((uint)(3)); - w305.BottomAttach = ((uint)(4)); - w305.LeftAttach = ((uint)(1)); - w305.RightAttach = ((uint)(2)); - w305.XOptions = ((global::Gtk.AttachOptions)(4)); - w305.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w306 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); + w306.TopAttach = ((uint)(3)); + w306.BottomAttach = ((uint)(4)); + w306.LeftAttach = ((uint)(1)); + w306.RightAttach = ((uint)(2)); + w306.XOptions = ((global::Gtk.AttachOptions)(4)); + w306.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG9 = new global::Gtk.Image(); this.imgG9.WidthRequest = 50; this.imgG9.HeightRequest = 50; this.imgG9.Name = "imgG9"; this.tbUI.Add(this.imgG9); - global::Gtk.Table.TableChild w306 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); - w306.TopAttach = ((uint)(3)); - w306.BottomAttach = ((uint)(4)); - w306.LeftAttach = ((uint)(2)); - w306.RightAttach = ((uint)(3)); - w306.XOptions = ((global::Gtk.AttachOptions)(4)); - w306.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w307 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + w307.TopAttach = ((uint)(3)); + w307.BottomAttach = ((uint)(4)); + w307.LeftAttach = ((uint)(2)); + w307.RightAttach = ((uint)(3)); + w307.XOptions = ((global::Gtk.AttachOptions)(4)); + w307.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI1 = new global::Gtk.Image(); this.imgI1.WidthRequest = 50; this.imgI1.HeightRequest = 50; this.imgI1.Name = "imgI1"; this.tbUI.Add(this.imgI1); - global::Gtk.Table.TableChild w307 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); - w307.TopAttach = ((uint)(12)); - w307.BottomAttach = ((uint)(13)); - w307.LeftAttach = ((uint)(1)); - w307.RightAttach = ((uint)(2)); - w307.XOptions = ((global::Gtk.AttachOptions)(4)); - w307.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w308 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w308.TopAttach = ((uint)(12)); + w308.BottomAttach = ((uint)(13)); + w308.LeftAttach = ((uint)(1)); + w308.RightAttach = ((uint)(2)); + w308.XOptions = ((global::Gtk.AttachOptions)(4)); + w308.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI10 = new global::Gtk.Image(); this.imgI10.WidthRequest = 50; this.imgI10.HeightRequest = 50; this.imgI10.Name = "imgI10"; this.tbUI.Add(this.imgI10); - global::Gtk.Table.TableChild w308 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); - w308.TopAttach = ((uint)(13)); - w308.BottomAttach = ((uint)(14)); - w308.LeftAttach = ((uint)(3)); - w308.RightAttach = ((uint)(4)); - w308.XOptions = ((global::Gtk.AttachOptions)(4)); - w308.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w309 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); + w309.TopAttach = ((uint)(13)); + w309.BottomAttach = ((uint)(14)); + w309.LeftAttach = ((uint)(3)); + w309.RightAttach = ((uint)(4)); + w309.XOptions = ((global::Gtk.AttachOptions)(4)); + w309.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI11 = new global::Gtk.Image(); this.imgI11.WidthRequest = 50; this.imgI11.HeightRequest = 50; this.imgI11.Name = "imgI11"; this.tbUI.Add(this.imgI11); - global::Gtk.Table.TableChild w309 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); - w309.TopAttach = ((uint)(13)); - w309.BottomAttach = ((uint)(14)); - w309.LeftAttach = ((uint)(4)); - w309.RightAttach = ((uint)(5)); - w309.XOptions = ((global::Gtk.AttachOptions)(4)); - w309.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w310 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); + w310.TopAttach = ((uint)(13)); + w310.BottomAttach = ((uint)(14)); + w310.LeftAttach = ((uint)(4)); + w310.RightAttach = ((uint)(5)); + w310.XOptions = ((global::Gtk.AttachOptions)(4)); + w310.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI12 = new global::Gtk.Image(); this.imgI12.WidthRequest = 50; this.imgI12.HeightRequest = 50; this.imgI12.Name = "imgI12"; this.tbUI.Add(this.imgI12); - global::Gtk.Table.TableChild w310 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); - w310.TopAttach = ((uint)(13)); - w310.BottomAttach = ((uint)(14)); - w310.LeftAttach = ((uint)(5)); - w310.RightAttach = ((uint)(6)); - w310.XOptions = ((global::Gtk.AttachOptions)(4)); - w310.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w311 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); + w311.TopAttach = ((uint)(13)); + w311.BottomAttach = ((uint)(14)); + w311.LeftAttach = ((uint)(5)); + w311.RightAttach = ((uint)(6)); + w311.XOptions = ((global::Gtk.AttachOptions)(4)); + w311.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI13 = new global::Gtk.Image(); this.imgI13.WidthRequest = 50; this.imgI13.HeightRequest = 50; this.imgI13.Name = "imgI13"; this.tbUI.Add(this.imgI13); - global::Gtk.Table.TableChild w311 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); - w311.TopAttach = ((uint)(13)); - w311.BottomAttach = ((uint)(14)); - w311.LeftAttach = ((uint)(6)); - w311.RightAttach = ((uint)(7)); - w311.XOptions = ((global::Gtk.AttachOptions)(4)); - w311.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w312 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); + w312.TopAttach = ((uint)(13)); + w312.BottomAttach = ((uint)(14)); + w312.LeftAttach = ((uint)(6)); + w312.RightAttach = ((uint)(7)); + w312.XOptions = ((global::Gtk.AttachOptions)(4)); + w312.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI14 = new global::Gtk.Image(); this.imgI14.WidthRequest = 50; this.imgI14.HeightRequest = 50; this.imgI14.Name = "imgI14"; this.tbUI.Add(this.imgI14); - global::Gtk.Table.TableChild w312 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); - w312.TopAttach = ((uint)(13)); - w312.BottomAttach = ((uint)(14)); - w312.LeftAttach = ((uint)(7)); - w312.RightAttach = ((uint)(8)); - w312.XOptions = ((global::Gtk.AttachOptions)(4)); - w312.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w313 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); + w313.TopAttach = ((uint)(13)); + w313.BottomAttach = ((uint)(14)); + w313.LeftAttach = ((uint)(7)); + w313.RightAttach = ((uint)(8)); + w313.XOptions = ((global::Gtk.AttachOptions)(4)); + w313.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI15 = new global::Gtk.Image(); this.imgI15.WidthRequest = 50; this.imgI15.HeightRequest = 50; this.imgI15.Name = "imgI15"; this.tbUI.Add(this.imgI15); - global::Gtk.Table.TableChild w313 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); - w313.TopAttach = ((uint)(14)); - w313.BottomAttach = ((uint)(15)); - w313.LeftAttach = ((uint)(1)); - w313.RightAttach = ((uint)(2)); - w313.XOptions = ((global::Gtk.AttachOptions)(4)); - w313.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w314 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); + w314.TopAttach = ((uint)(14)); + w314.BottomAttach = ((uint)(15)); + w314.LeftAttach = ((uint)(1)); + w314.RightAttach = ((uint)(2)); + w314.XOptions = ((global::Gtk.AttachOptions)(4)); + w314.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI16 = new global::Gtk.Image(); this.imgI16.WidthRequest = 50; this.imgI16.HeightRequest = 50; this.imgI16.Name = "imgI16"; this.tbUI.Add(this.imgI16); - global::Gtk.Table.TableChild w314 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); - w314.TopAttach = ((uint)(14)); - w314.BottomAttach = ((uint)(15)); - w314.LeftAttach = ((uint)(2)); - w314.RightAttach = ((uint)(3)); - w314.XOptions = ((global::Gtk.AttachOptions)(4)); - w314.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w315 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); + w315.TopAttach = ((uint)(14)); + w315.BottomAttach = ((uint)(15)); + w315.LeftAttach = ((uint)(2)); + w315.RightAttach = ((uint)(3)); + w315.XOptions = ((global::Gtk.AttachOptions)(4)); + w315.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI17 = new global::Gtk.Image(); this.imgI17.WidthRequest = 50; this.imgI17.HeightRequest = 50; this.imgI17.Name = "imgI17"; this.tbUI.Add(this.imgI17); - global::Gtk.Table.TableChild w315 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); - w315.TopAttach = ((uint)(14)); - w315.BottomAttach = ((uint)(15)); - w315.LeftAttach = ((uint)(3)); - w315.RightAttach = ((uint)(4)); - w315.XOptions = ((global::Gtk.AttachOptions)(4)); - w315.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w316 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); + w316.TopAttach = ((uint)(14)); + w316.BottomAttach = ((uint)(15)); + w316.LeftAttach = ((uint)(3)); + w316.RightAttach = ((uint)(4)); + w316.XOptions = ((global::Gtk.AttachOptions)(4)); + w316.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI18 = new global::Gtk.Image(); this.imgI18.WidthRequest = 50; this.imgI18.HeightRequest = 50; this.imgI18.Name = "imgI18"; this.tbUI.Add(this.imgI18); - global::Gtk.Table.TableChild w316 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); - w316.TopAttach = ((uint)(14)); - w316.BottomAttach = ((uint)(15)); - w316.LeftAttach = ((uint)(4)); - w316.RightAttach = ((uint)(5)); - w316.XOptions = ((global::Gtk.AttachOptions)(4)); - w316.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w317 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); + w317.TopAttach = ((uint)(14)); + w317.BottomAttach = ((uint)(15)); + w317.LeftAttach = ((uint)(4)); + w317.RightAttach = ((uint)(5)); + w317.XOptions = ((global::Gtk.AttachOptions)(4)); + w317.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI19 = new global::Gtk.Image(); this.imgI19.WidthRequest = 50; this.imgI19.HeightRequest = 50; this.imgI19.Name = "imgI19"; this.tbUI.Add(this.imgI19); - global::Gtk.Table.TableChild w317 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); - w317.TopAttach = ((uint)(14)); - w317.BottomAttach = ((uint)(15)); - w317.LeftAttach = ((uint)(5)); - w317.RightAttach = ((uint)(6)); - w317.XOptions = ((global::Gtk.AttachOptions)(4)); - w317.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w318 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); + w318.TopAttach = ((uint)(14)); + w318.BottomAttach = ((uint)(15)); + w318.LeftAttach = ((uint)(5)); + w318.RightAttach = ((uint)(6)); + w318.XOptions = ((global::Gtk.AttachOptions)(4)); + w318.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI2 = new global::Gtk.Image(); this.imgI2.WidthRequest = 50; this.imgI2.HeightRequest = 50; this.imgI2.Name = "imgI2"; this.tbUI.Add(this.imgI2); - global::Gtk.Table.TableChild w318 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); - w318.TopAttach = ((uint)(12)); - w318.BottomAttach = ((uint)(13)); - w318.LeftAttach = ((uint)(2)); - w318.RightAttach = ((uint)(3)); - w318.XOptions = ((global::Gtk.AttachOptions)(4)); - w318.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w319 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w319.TopAttach = ((uint)(12)); + w319.BottomAttach = ((uint)(13)); + w319.LeftAttach = ((uint)(2)); + w319.RightAttach = ((uint)(3)); + w319.XOptions = ((global::Gtk.AttachOptions)(4)); + w319.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI20 = new global::Gtk.Image(); this.imgI20.WidthRequest = 50; this.imgI20.HeightRequest = 50; this.imgI20.Name = "imgI20"; this.tbUI.Add(this.imgI20); - global::Gtk.Table.TableChild w319 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); - w319.TopAttach = ((uint)(14)); - w319.BottomAttach = ((uint)(15)); - w319.LeftAttach = ((uint)(6)); - w319.RightAttach = ((uint)(7)); - w319.XOptions = ((global::Gtk.AttachOptions)(4)); - w319.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w320 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); + w320.TopAttach = ((uint)(14)); + w320.BottomAttach = ((uint)(15)); + w320.LeftAttach = ((uint)(6)); + w320.RightAttach = ((uint)(7)); + w320.XOptions = ((global::Gtk.AttachOptions)(4)); + w320.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI21 = new global::Gtk.Image(); this.imgI21.WidthRequest = 50; this.imgI21.HeightRequest = 50; this.imgI21.Name = "imgI21"; this.tbUI.Add(this.imgI21); - global::Gtk.Table.TableChild w320 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); - w320.TopAttach = ((uint)(14)); - w320.BottomAttach = ((uint)(15)); - w320.LeftAttach = ((uint)(7)); - w320.RightAttach = ((uint)(8)); - w320.XOptions = ((global::Gtk.AttachOptions)(4)); - w320.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w321 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); + w321.TopAttach = ((uint)(14)); + w321.BottomAttach = ((uint)(15)); + w321.LeftAttach = ((uint)(7)); + w321.RightAttach = ((uint)(8)); + w321.XOptions = ((global::Gtk.AttachOptions)(4)); + w321.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI22 = new global::Gtk.Image(); this.imgI22.WidthRequest = 50; this.imgI22.HeightRequest = 50; this.imgI22.Name = "imgI22"; this.tbUI.Add(this.imgI22); - global::Gtk.Table.TableChild w321 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); - w321.TopAttach = ((uint)(15)); - w321.BottomAttach = ((uint)(16)); - w321.LeftAttach = ((uint)(1)); - w321.RightAttach = ((uint)(2)); - w321.XOptions = ((global::Gtk.AttachOptions)(4)); - w321.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w322 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); + w322.TopAttach = ((uint)(15)); + w322.BottomAttach = ((uint)(16)); + w322.LeftAttach = ((uint)(1)); + w322.RightAttach = ((uint)(2)); + w322.XOptions = ((global::Gtk.AttachOptions)(4)); + w322.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI23 = new global::Gtk.Image(); this.imgI23.WidthRequest = 50; this.imgI23.HeightRequest = 50; this.imgI23.Name = "imgI23"; this.tbUI.Add(this.imgI23); - global::Gtk.Table.TableChild w322 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); - w322.TopAttach = ((uint)(15)); - w322.BottomAttach = ((uint)(16)); - w322.LeftAttach = ((uint)(2)); - w322.RightAttach = ((uint)(3)); - w322.XOptions = ((global::Gtk.AttachOptions)(4)); - w322.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w323 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); + w323.TopAttach = ((uint)(15)); + w323.BottomAttach = ((uint)(16)); + w323.LeftAttach = ((uint)(2)); + w323.RightAttach = ((uint)(3)); + w323.XOptions = ((global::Gtk.AttachOptions)(4)); + w323.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI24 = new global::Gtk.Image(); this.imgI24.WidthRequest = 50; this.imgI24.HeightRequest = 50; this.imgI24.Name = "imgI24"; this.tbUI.Add(this.imgI24); - global::Gtk.Table.TableChild w323 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); - w323.TopAttach = ((uint)(15)); - w323.BottomAttach = ((uint)(16)); - w323.LeftAttach = ((uint)(3)); - w323.RightAttach = ((uint)(4)); - w323.XOptions = ((global::Gtk.AttachOptions)(4)); - w323.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w324 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); + w324.TopAttach = ((uint)(15)); + w324.BottomAttach = ((uint)(16)); + w324.LeftAttach = ((uint)(3)); + w324.RightAttach = ((uint)(4)); + w324.XOptions = ((global::Gtk.AttachOptions)(4)); + w324.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI25 = new global::Gtk.Image(); this.imgI25.WidthRequest = 50; this.imgI25.HeightRequest = 50; this.imgI25.Name = "imgI25"; this.tbUI.Add(this.imgI25); - global::Gtk.Table.TableChild w324 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); - w324.TopAttach = ((uint)(15)); - w324.BottomAttach = ((uint)(16)); - w324.LeftAttach = ((uint)(4)); - w324.RightAttach = ((uint)(5)); - w324.XOptions = ((global::Gtk.AttachOptions)(4)); - w324.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w325 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); + w325.TopAttach = ((uint)(15)); + w325.BottomAttach = ((uint)(16)); + w325.LeftAttach = ((uint)(4)); + w325.RightAttach = ((uint)(5)); + w325.XOptions = ((global::Gtk.AttachOptions)(4)); + w325.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI26 = new global::Gtk.Image(); this.imgI26.WidthRequest = 50; this.imgI26.HeightRequest = 50; this.imgI26.Name = "imgI26"; this.tbUI.Add(this.imgI26); - global::Gtk.Table.TableChild w325 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI26])); - w325.TopAttach = ((uint)(15)); - w325.BottomAttach = ((uint)(16)); - w325.LeftAttach = ((uint)(5)); - w325.RightAttach = ((uint)(6)); - w325.XOptions = ((global::Gtk.AttachOptions)(4)); - w325.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w326 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI26])); + w326.TopAttach = ((uint)(15)); + w326.BottomAttach = ((uint)(16)); + w326.LeftAttach = ((uint)(5)); + w326.RightAttach = ((uint)(6)); + w326.XOptions = ((global::Gtk.AttachOptions)(4)); + w326.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI27 = new global::Gtk.Image(); this.imgI27.WidthRequest = 50; this.imgI27.HeightRequest = 50; this.imgI27.Name = "imgI27"; this.tbUI.Add(this.imgI27); - global::Gtk.Table.TableChild w326 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI27])); - w326.TopAttach = ((uint)(15)); - w326.BottomAttach = ((uint)(16)); - w326.LeftAttach = ((uint)(6)); - w326.RightAttach = ((uint)(7)); - w326.XOptions = ((global::Gtk.AttachOptions)(4)); - w326.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w327 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI27])); + w327.TopAttach = ((uint)(15)); + w327.BottomAttach = ((uint)(16)); + w327.LeftAttach = ((uint)(6)); + w327.RightAttach = ((uint)(7)); + w327.XOptions = ((global::Gtk.AttachOptions)(4)); + w327.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI28 = new global::Gtk.Image(); this.imgI28.WidthRequest = 50; this.imgI28.HeightRequest = 50; this.imgI28.Name = "imgI28"; this.tbUI.Add(this.imgI28); - global::Gtk.Table.TableChild w327 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI28])); - w327.TopAttach = ((uint)(15)); - w327.BottomAttach = ((uint)(16)); - w327.LeftAttach = ((uint)(7)); - w327.RightAttach = ((uint)(8)); - w327.XOptions = ((global::Gtk.AttachOptions)(4)); - w327.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w328 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI28])); + w328.TopAttach = ((uint)(15)); + w328.BottomAttach = ((uint)(16)); + w328.LeftAttach = ((uint)(7)); + w328.RightAttach = ((uint)(8)); + w328.XOptions = ((global::Gtk.AttachOptions)(4)); + w328.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI29 = new global::Gtk.Image(); this.imgI29.WidthRequest = 50; this.imgI29.HeightRequest = 50; this.imgI29.Name = "imgI29"; this.tbUI.Add(this.imgI29); - global::Gtk.Table.TableChild w328 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI29])); - w328.TopAttach = ((uint)(16)); - w328.BottomAttach = ((uint)(17)); - w328.LeftAttach = ((uint)(1)); - w328.RightAttach = ((uint)(2)); - w328.XOptions = ((global::Gtk.AttachOptions)(4)); - w328.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w329 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI29])); + w329.TopAttach = ((uint)(16)); + w329.BottomAttach = ((uint)(17)); + w329.LeftAttach = ((uint)(1)); + w329.RightAttach = ((uint)(2)); + w329.XOptions = ((global::Gtk.AttachOptions)(4)); + w329.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI3 = new global::Gtk.Image(); this.imgI3.WidthRequest = 50; this.imgI3.HeightRequest = 50; this.imgI3.Name = "imgI3"; this.tbUI.Add(this.imgI3); - global::Gtk.Table.TableChild w329 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); - w329.TopAttach = ((uint)(12)); - w329.BottomAttach = ((uint)(13)); - w329.LeftAttach = ((uint)(3)); - w329.RightAttach = ((uint)(4)); - w329.XOptions = ((global::Gtk.AttachOptions)(4)); - w329.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w330 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w330.TopAttach = ((uint)(12)); + w330.BottomAttach = ((uint)(13)); + w330.LeftAttach = ((uint)(3)); + w330.RightAttach = ((uint)(4)); + w330.XOptions = ((global::Gtk.AttachOptions)(4)); + w330.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI30 = new global::Gtk.Image(); this.imgI30.WidthRequest = 50; this.imgI30.HeightRequest = 50; this.imgI30.Name = "imgI30"; this.tbUI.Add(this.imgI30); - global::Gtk.Table.TableChild w330 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI30])); - w330.TopAttach = ((uint)(16)); - w330.BottomAttach = ((uint)(17)); - w330.LeftAttach = ((uint)(2)); - w330.RightAttach = ((uint)(3)); - w330.XOptions = ((global::Gtk.AttachOptions)(4)); - w330.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w331 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI30])); + w331.TopAttach = ((uint)(16)); + w331.BottomAttach = ((uint)(17)); + w331.LeftAttach = ((uint)(2)); + w331.RightAttach = ((uint)(3)); + w331.XOptions = ((global::Gtk.AttachOptions)(4)); + w331.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI31 = new global::Gtk.Image(); this.imgI31.WidthRequest = 50; this.imgI31.HeightRequest = 50; this.imgI31.Name = "imgI31"; this.tbUI.Add(this.imgI31); - global::Gtk.Table.TableChild w331 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI31])); - w331.TopAttach = ((uint)(16)); - w331.BottomAttach = ((uint)(17)); - w331.LeftAttach = ((uint)(3)); - w331.RightAttach = ((uint)(4)); - w331.XOptions = ((global::Gtk.AttachOptions)(4)); - w331.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w332 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI31])); + w332.TopAttach = ((uint)(16)); + w332.BottomAttach = ((uint)(17)); + w332.LeftAttach = ((uint)(3)); + w332.RightAttach = ((uint)(4)); + w332.XOptions = ((global::Gtk.AttachOptions)(4)); + w332.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI32 = new global::Gtk.Image(); this.imgI32.WidthRequest = 50; this.imgI32.HeightRequest = 50; this.imgI32.Name = "imgI32"; this.tbUI.Add(this.imgI32); - global::Gtk.Table.TableChild w332 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI32])); - w332.TopAttach = ((uint)(16)); - w332.BottomAttach = ((uint)(17)); - w332.LeftAttach = ((uint)(4)); - w332.RightAttach = ((uint)(5)); - w332.XOptions = ((global::Gtk.AttachOptions)(4)); - w332.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w333 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI32])); + w333.TopAttach = ((uint)(16)); + w333.BottomAttach = ((uint)(17)); + w333.LeftAttach = ((uint)(4)); + w333.RightAttach = ((uint)(5)); + w333.XOptions = ((global::Gtk.AttachOptions)(4)); + w333.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI33 = new global::Gtk.Image(); this.imgI33.WidthRequest = 50; this.imgI33.HeightRequest = 50; this.imgI33.Name = "imgI33"; this.tbUI.Add(this.imgI33); - global::Gtk.Table.TableChild w333 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI33])); - w333.TopAttach = ((uint)(16)); - w333.BottomAttach = ((uint)(17)); - w333.LeftAttach = ((uint)(5)); - w333.RightAttach = ((uint)(6)); - w333.XOptions = ((global::Gtk.AttachOptions)(4)); - w333.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w334 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI33])); + w334.TopAttach = ((uint)(16)); + w334.BottomAttach = ((uint)(17)); + w334.LeftAttach = ((uint)(5)); + w334.RightAttach = ((uint)(6)); + w334.XOptions = ((global::Gtk.AttachOptions)(4)); + w334.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI34 = new global::Gtk.Image(); this.imgI34.WidthRequest = 50; this.imgI34.HeightRequest = 50; this.imgI34.Name = "imgI34"; this.tbUI.Add(this.imgI34); - global::Gtk.Table.TableChild w334 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI34])); - w334.TopAttach = ((uint)(16)); - w334.BottomAttach = ((uint)(17)); - w334.LeftAttach = ((uint)(6)); - w334.RightAttach = ((uint)(7)); - w334.XOptions = ((global::Gtk.AttachOptions)(4)); - w334.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w335 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI34])); + w335.TopAttach = ((uint)(16)); + w335.BottomAttach = ((uint)(17)); + w335.LeftAttach = ((uint)(6)); + w335.RightAttach = ((uint)(7)); + w335.XOptions = ((global::Gtk.AttachOptions)(4)); + w335.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI35 = new global::Gtk.Image(); this.imgI35.WidthRequest = 50; this.imgI35.HeightRequest = 50; this.imgI35.Name = "imgI35"; this.tbUI.Add(this.imgI35); - global::Gtk.Table.TableChild w335 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI35])); - w335.TopAttach = ((uint)(16)); - w335.BottomAttach = ((uint)(17)); - w335.LeftAttach = ((uint)(7)); - w335.RightAttach = ((uint)(8)); - w335.XOptions = ((global::Gtk.AttachOptions)(4)); - w335.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w336 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI35])); + w336.TopAttach = ((uint)(16)); + w336.BottomAttach = ((uint)(17)); + w336.LeftAttach = ((uint)(7)); + w336.RightAttach = ((uint)(8)); + w336.XOptions = ((global::Gtk.AttachOptions)(4)); + w336.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI36 = new global::Gtk.Image(); this.imgI36.WidthRequest = 50; this.imgI36.HeightRequest = 50; this.imgI36.Name = "imgI36"; this.tbUI.Add(this.imgI36); - global::Gtk.Table.TableChild w336 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI36])); - w336.TopAttach = ((uint)(17)); - w336.BottomAttach = ((uint)(18)); - w336.LeftAttach = ((uint)(1)); - w336.RightAttach = ((uint)(2)); - w336.XOptions = ((global::Gtk.AttachOptions)(4)); - w336.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w337 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI36])); + w337.TopAttach = ((uint)(17)); + w337.BottomAttach = ((uint)(18)); + w337.LeftAttach = ((uint)(1)); + w337.RightAttach = ((uint)(2)); + w337.XOptions = ((global::Gtk.AttachOptions)(4)); + w337.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI37 = new global::Gtk.Image(); this.imgI37.WidthRequest = 50; this.imgI37.HeightRequest = 50; this.imgI37.Name = "imgI37"; this.tbUI.Add(this.imgI37); - global::Gtk.Table.TableChild w337 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI37])); - w337.TopAttach = ((uint)(17)); - w337.BottomAttach = ((uint)(18)); - w337.LeftAttach = ((uint)(2)); - w337.RightAttach = ((uint)(3)); - w337.XOptions = ((global::Gtk.AttachOptions)(4)); - w337.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w338 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI37])); + w338.TopAttach = ((uint)(17)); + w338.BottomAttach = ((uint)(18)); + w338.LeftAttach = ((uint)(2)); + w338.RightAttach = ((uint)(3)); + w338.XOptions = ((global::Gtk.AttachOptions)(4)); + w338.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI38 = new global::Gtk.Image(); this.imgI38.WidthRequest = 50; this.imgI38.HeightRequest = 50; this.imgI38.Name = "imgI38"; this.tbUI.Add(this.imgI38); - global::Gtk.Table.TableChild w338 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI38])); - w338.TopAttach = ((uint)(17)); - w338.BottomAttach = ((uint)(18)); - w338.LeftAttach = ((uint)(3)); - w338.RightAttach = ((uint)(4)); - w338.XOptions = ((global::Gtk.AttachOptions)(4)); - w338.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w339 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI38])); + w339.TopAttach = ((uint)(17)); + w339.BottomAttach = ((uint)(18)); + w339.LeftAttach = ((uint)(3)); + w339.RightAttach = ((uint)(4)); + w339.XOptions = ((global::Gtk.AttachOptions)(4)); + w339.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI39 = new global::Gtk.Image(); this.imgI39.WidthRequest = 50; this.imgI39.HeightRequest = 50; this.imgI39.Name = "imgI39"; this.tbUI.Add(this.imgI39); - global::Gtk.Table.TableChild w339 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI39])); - w339.TopAttach = ((uint)(17)); - w339.BottomAttach = ((uint)(18)); - w339.LeftAttach = ((uint)(4)); - w339.RightAttach = ((uint)(5)); - w339.XOptions = ((global::Gtk.AttachOptions)(4)); - w339.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w340 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI39])); + w340.TopAttach = ((uint)(17)); + w340.BottomAttach = ((uint)(18)); + w340.LeftAttach = ((uint)(4)); + w340.RightAttach = ((uint)(5)); + w340.XOptions = ((global::Gtk.AttachOptions)(4)); + w340.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI4 = new global::Gtk.Image(); this.imgI4.WidthRequest = 50; this.imgI4.HeightRequest = 50; this.imgI4.Name = "imgI4"; this.tbUI.Add(this.imgI4); - global::Gtk.Table.TableChild w340 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); - w340.TopAttach = ((uint)(12)); - w340.BottomAttach = ((uint)(13)); - w340.LeftAttach = ((uint)(4)); - w340.RightAttach = ((uint)(5)); - w340.XOptions = ((global::Gtk.AttachOptions)(4)); - w340.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w341 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w341.TopAttach = ((uint)(12)); + w341.BottomAttach = ((uint)(13)); + w341.LeftAttach = ((uint)(4)); + w341.RightAttach = ((uint)(5)); + w341.XOptions = ((global::Gtk.AttachOptions)(4)); + w341.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI40 = new global::Gtk.Image(); this.imgI40.WidthRequest = 50; this.imgI40.HeightRequest = 50; this.imgI40.Name = "imgI40"; this.tbUI.Add(this.imgI40); - global::Gtk.Table.TableChild w341 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI40])); - w341.TopAttach = ((uint)(17)); - w341.BottomAttach = ((uint)(18)); - w341.LeftAttach = ((uint)(5)); - w341.RightAttach = ((uint)(6)); - w341.XOptions = ((global::Gtk.AttachOptions)(4)); - w341.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w342 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI40])); + w342.TopAttach = ((uint)(17)); + w342.BottomAttach = ((uint)(18)); + w342.LeftAttach = ((uint)(5)); + w342.RightAttach = ((uint)(6)); + w342.XOptions = ((global::Gtk.AttachOptions)(4)); + w342.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI41 = new global::Gtk.Image(); this.imgI41.WidthRequest = 50; this.imgI41.HeightRequest = 50; this.imgI41.Name = "imgI41"; this.tbUI.Add(this.imgI41); - global::Gtk.Table.TableChild w342 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI41])); - w342.TopAttach = ((uint)(17)); - w342.BottomAttach = ((uint)(18)); - w342.LeftAttach = ((uint)(6)); - w342.RightAttach = ((uint)(7)); - w342.XOptions = ((global::Gtk.AttachOptions)(4)); - w342.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w343 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI41])); + w343.TopAttach = ((uint)(17)); + w343.BottomAttach = ((uint)(18)); + w343.LeftAttach = ((uint)(6)); + w343.RightAttach = ((uint)(7)); + w343.XOptions = ((global::Gtk.AttachOptions)(4)); + w343.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI42 = new global::Gtk.Image(); this.imgI42.WidthRequest = 50; this.imgI42.HeightRequest = 50; this.imgI42.Name = "imgI42"; this.tbUI.Add(this.imgI42); - global::Gtk.Table.TableChild w343 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI42])); - w343.TopAttach = ((uint)(17)); - w343.BottomAttach = ((uint)(18)); - w343.LeftAttach = ((uint)(7)); - w343.RightAttach = ((uint)(8)); - w343.XOptions = ((global::Gtk.AttachOptions)(4)); - w343.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w344 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI42])); + w344.TopAttach = ((uint)(17)); + w344.BottomAttach = ((uint)(18)); + w344.LeftAttach = ((uint)(7)); + w344.RightAttach = ((uint)(8)); + w344.XOptions = ((global::Gtk.AttachOptions)(4)); + w344.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI43 = new global::Gtk.Image(); this.imgI43.WidthRequest = 50; this.imgI43.HeightRequest = 50; this.imgI43.Name = "imgI43"; this.tbUI.Add(this.imgI43); - global::Gtk.Table.TableChild w344 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI43])); - w344.TopAttach = ((uint)(18)); - w344.BottomAttach = ((uint)(19)); - w344.LeftAttach = ((uint)(1)); - w344.RightAttach = ((uint)(2)); - w344.XOptions = ((global::Gtk.AttachOptions)(4)); - w344.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w345 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI43])); + w345.TopAttach = ((uint)(18)); + w345.BottomAttach = ((uint)(19)); + w345.LeftAttach = ((uint)(1)); + w345.RightAttach = ((uint)(2)); + w345.XOptions = ((global::Gtk.AttachOptions)(4)); + w345.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI44 = new global::Gtk.Image(); this.imgI44.WidthRequest = 50; this.imgI44.HeightRequest = 50; this.imgI44.Name = "imgI44"; this.tbUI.Add(this.imgI44); - global::Gtk.Table.TableChild w345 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI44])); - w345.TopAttach = ((uint)(18)); - w345.BottomAttach = ((uint)(19)); - w345.LeftAttach = ((uint)(2)); - w345.RightAttach = ((uint)(3)); - w345.XOptions = ((global::Gtk.AttachOptions)(4)); - w345.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w346 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI44])); + w346.TopAttach = ((uint)(18)); + w346.BottomAttach = ((uint)(19)); + w346.LeftAttach = ((uint)(2)); + w346.RightAttach = ((uint)(3)); + w346.XOptions = ((global::Gtk.AttachOptions)(4)); + w346.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI45 = new global::Gtk.Image(); this.imgI45.WidthRequest = 50; this.imgI45.HeightRequest = 50; this.imgI45.Name = "imgI45"; this.tbUI.Add(this.imgI45); - global::Gtk.Table.TableChild w346 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI45])); - w346.TopAttach = ((uint)(18)); - w346.BottomAttach = ((uint)(19)); - w346.LeftAttach = ((uint)(3)); - w346.RightAttach = ((uint)(4)); - w346.XOptions = ((global::Gtk.AttachOptions)(4)); - w346.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w347 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI45])); + w347.TopAttach = ((uint)(18)); + w347.BottomAttach = ((uint)(19)); + w347.LeftAttach = ((uint)(3)); + w347.RightAttach = ((uint)(4)); + w347.XOptions = ((global::Gtk.AttachOptions)(4)); + w347.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI46 = new global::Gtk.Image(); this.imgI46.WidthRequest = 50; this.imgI46.HeightRequest = 50; this.imgI46.Name = "imgI46"; this.tbUI.Add(this.imgI46); - global::Gtk.Table.TableChild w347 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI46])); - w347.TopAttach = ((uint)(18)); - w347.BottomAttach = ((uint)(19)); - w347.LeftAttach = ((uint)(4)); - w347.RightAttach = ((uint)(5)); - w347.XOptions = ((global::Gtk.AttachOptions)(4)); - w347.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w348 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI46])); + w348.TopAttach = ((uint)(18)); + w348.BottomAttach = ((uint)(19)); + w348.LeftAttach = ((uint)(4)); + w348.RightAttach = ((uint)(5)); + w348.XOptions = ((global::Gtk.AttachOptions)(4)); + w348.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI47 = new global::Gtk.Image(); this.imgI47.WidthRequest = 50; this.imgI47.HeightRequest = 50; this.imgI47.Name = "imgI47"; this.tbUI.Add(this.imgI47); - global::Gtk.Table.TableChild w348 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI47])); - w348.TopAttach = ((uint)(18)); - w348.BottomAttach = ((uint)(19)); - w348.LeftAttach = ((uint)(5)); - w348.RightAttach = ((uint)(6)); - w348.XOptions = ((global::Gtk.AttachOptions)(4)); - w348.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w349 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI47])); + w349.TopAttach = ((uint)(18)); + w349.BottomAttach = ((uint)(19)); + w349.LeftAttach = ((uint)(5)); + w349.RightAttach = ((uint)(6)); + w349.XOptions = ((global::Gtk.AttachOptions)(4)); + w349.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI48 = new global::Gtk.Image(); this.imgI48.WidthRequest = 50; this.imgI48.HeightRequest = 50; this.imgI48.Name = "imgI48"; this.tbUI.Add(this.imgI48); - global::Gtk.Table.TableChild w349 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI48])); - w349.TopAttach = ((uint)(18)); - w349.BottomAttach = ((uint)(19)); - w349.LeftAttach = ((uint)(6)); - w349.RightAttach = ((uint)(7)); - w349.XOptions = ((global::Gtk.AttachOptions)(4)); - w349.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w350 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI48])); + w350.TopAttach = ((uint)(18)); + w350.BottomAttach = ((uint)(19)); + w350.LeftAttach = ((uint)(6)); + w350.RightAttach = ((uint)(7)); + w350.XOptions = ((global::Gtk.AttachOptions)(4)); + w350.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI49 = new global::Gtk.Image(); this.imgI49.WidthRequest = 50; this.imgI49.HeightRequest = 50; this.imgI49.Name = "imgI49"; this.tbUI.Add(this.imgI49); - global::Gtk.Table.TableChild w350 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI49])); - w350.TopAttach = ((uint)(18)); - w350.BottomAttach = ((uint)(19)); - w350.LeftAttach = ((uint)(7)); - w350.RightAttach = ((uint)(8)); - w350.XOptions = ((global::Gtk.AttachOptions)(4)); - w350.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w351 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI49])); + w351.TopAttach = ((uint)(18)); + w351.BottomAttach = ((uint)(19)); + w351.LeftAttach = ((uint)(7)); + w351.RightAttach = ((uint)(8)); + w351.XOptions = ((global::Gtk.AttachOptions)(4)); + w351.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI5 = new global::Gtk.Image(); this.imgI5.WidthRequest = 50; this.imgI5.HeightRequest = 50; this.imgI5.Name = "imgI5"; this.tbUI.Add(this.imgI5); - global::Gtk.Table.TableChild w351 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); - w351.TopAttach = ((uint)(12)); - w351.BottomAttach = ((uint)(13)); - w351.LeftAttach = ((uint)(5)); - w351.RightAttach = ((uint)(6)); - w351.XOptions = ((global::Gtk.AttachOptions)(4)); - w351.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w352 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w352.TopAttach = ((uint)(12)); + w352.BottomAttach = ((uint)(13)); + w352.LeftAttach = ((uint)(5)); + w352.RightAttach = ((uint)(6)); + w352.XOptions = ((global::Gtk.AttachOptions)(4)); + w352.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI6 = new global::Gtk.Image(); this.imgI6.WidthRequest = 50; this.imgI6.HeightRequest = 50; this.imgI6.Name = "imgI6"; this.tbUI.Add(this.imgI6); - global::Gtk.Table.TableChild w352 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); - w352.TopAttach = ((uint)(12)); - w352.BottomAttach = ((uint)(13)); - w352.LeftAttach = ((uint)(6)); - w352.RightAttach = ((uint)(7)); - w352.XOptions = ((global::Gtk.AttachOptions)(4)); - w352.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w353 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); + w353.TopAttach = ((uint)(12)); + w353.BottomAttach = ((uint)(13)); + w353.LeftAttach = ((uint)(6)); + w353.RightAttach = ((uint)(7)); + w353.XOptions = ((global::Gtk.AttachOptions)(4)); + w353.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI7 = new global::Gtk.Image(); this.imgI7.WidthRequest = 50; this.imgI7.HeightRequest = 50; this.imgI7.Name = "imgI7"; this.tbUI.Add(this.imgI7); - global::Gtk.Table.TableChild w353 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); - w353.TopAttach = ((uint)(12)); - w353.BottomAttach = ((uint)(13)); - w353.LeftAttach = ((uint)(7)); - w353.RightAttach = ((uint)(8)); - w353.XOptions = ((global::Gtk.AttachOptions)(4)); - w353.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w354 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); + w354.TopAttach = ((uint)(12)); + w354.BottomAttach = ((uint)(13)); + w354.LeftAttach = ((uint)(7)); + w354.RightAttach = ((uint)(8)); + w354.XOptions = ((global::Gtk.AttachOptions)(4)); + w354.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI8 = new global::Gtk.Image(); this.imgI8.WidthRequest = 50; this.imgI8.HeightRequest = 50; this.imgI8.Name = "imgI8"; this.tbUI.Add(this.imgI8); - global::Gtk.Table.TableChild w354 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); - w354.TopAttach = ((uint)(13)); - w354.BottomAttach = ((uint)(14)); - w354.LeftAttach = ((uint)(1)); - w354.RightAttach = ((uint)(2)); - w354.XOptions = ((global::Gtk.AttachOptions)(4)); - w354.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w355 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); + w355.TopAttach = ((uint)(13)); + w355.BottomAttach = ((uint)(14)); + w355.LeftAttach = ((uint)(1)); + w355.RightAttach = ((uint)(2)); + w355.XOptions = ((global::Gtk.AttachOptions)(4)); + w355.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgI9 = new global::Gtk.Image(); this.imgI9.WidthRequest = 50; this.imgI9.HeightRequest = 50; this.imgI9.Name = "imgI9"; this.tbUI.Add(this.imgI9); - global::Gtk.Table.TableChild w355 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); - w355.TopAttach = ((uint)(13)); - w355.BottomAttach = ((uint)(14)); - w355.LeftAttach = ((uint)(2)); - w355.RightAttach = ((uint)(3)); - w355.XOptions = ((global::Gtk.AttachOptions)(4)); - w355.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w356 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); + w356.TopAttach = ((uint)(13)); + w356.BottomAttach = ((uint)(14)); + w356.LeftAttach = ((uint)(2)); + w356.RightAttach = ((uint)(3)); + w356.XOptions = ((global::Gtk.AttachOptions)(4)); + w356.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgInfo = new global::Gtk.Image(); this.imgInfo.WidthRequest = 50; this.imgInfo.HeightRequest = 50; this.imgInfo.Name = "imgInfo"; this.tbUI.Add(this.imgInfo); - global::Gtk.Table.TableChild w356 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); - w356.TopAttach = ((uint)(18)); - w356.BottomAttach = ((uint)(19)); - w356.LeftAttach = ((uint)(22)); - w356.RightAttach = ((uint)(23)); - w356.XOptions = ((global::Gtk.AttachOptions)(4)); - w356.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w357 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); + w357.TopAttach = ((uint)(18)); + w357.BottomAttach = ((uint)(19)); + w357.LeftAttach = ((uint)(22)); + w357.RightAttach = ((uint)(23)); + w357.XOptions = ((global::Gtk.AttachOptions)(4)); + w357.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS1 = new global::Gtk.Image(); this.imgS1.WidthRequest = 50; this.imgS1.HeightRequest = 50; this.imgS1.Name = "imgS1"; this.tbUI.Add(this.imgS1); - global::Gtk.Table.TableChild w357 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); - w357.TopAttach = ((uint)(9)); - w357.BottomAttach = ((uint)(10)); - w357.LeftAttach = ((uint)(10)); - w357.RightAttach = ((uint)(11)); - w357.XOptions = ((global::Gtk.AttachOptions)(4)); - w357.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w358 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); + w358.TopAttach = ((uint)(9)); + w358.BottomAttach = ((uint)(10)); + w358.LeftAttach = ((uint)(10)); + w358.RightAttach = ((uint)(11)); + w358.XOptions = ((global::Gtk.AttachOptions)(4)); + w358.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS10 = new global::Gtk.Image(); this.imgS10.WidthRequest = 50; this.imgS10.HeightRequest = 50; this.imgS10.Name = "imgS10"; this.tbUI.Add(this.imgS10); - global::Gtk.Table.TableChild w358 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); - w358.TopAttach = ((uint)(10)); - w358.BottomAttach = ((uint)(11)); - w358.LeftAttach = ((uint)(12)); - w358.RightAttach = ((uint)(13)); - w358.XOptions = ((global::Gtk.AttachOptions)(4)); - w358.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w359 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); + w359.TopAttach = ((uint)(10)); + w359.BottomAttach = ((uint)(11)); + w359.LeftAttach = ((uint)(12)); + w359.RightAttach = ((uint)(13)); + w359.XOptions = ((global::Gtk.AttachOptions)(4)); + w359.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS11 = new global::Gtk.Image(); this.imgS11.WidthRequest = 50; this.imgS11.HeightRequest = 50; this.imgS11.Name = "imgS11"; this.tbUI.Add(this.imgS11); - global::Gtk.Table.TableChild w359 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS11])); - w359.TopAttach = ((uint)(10)); - w359.BottomAttach = ((uint)(11)); - w359.LeftAttach = ((uint)(13)); - w359.RightAttach = ((uint)(14)); - w359.XOptions = ((global::Gtk.AttachOptions)(4)); - w359.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w360 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS11])); + w360.TopAttach = ((uint)(10)); + w360.BottomAttach = ((uint)(11)); + w360.LeftAttach = ((uint)(13)); + w360.RightAttach = ((uint)(14)); + w360.XOptions = ((global::Gtk.AttachOptions)(4)); + w360.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS12 = new global::Gtk.Image(); this.imgS12.WidthRequest = 50; this.imgS12.HeightRequest = 50; this.imgS12.Name = "imgS12"; this.tbUI.Add(this.imgS12); - global::Gtk.Table.TableChild w360 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS12])); - w360.TopAttach = ((uint)(10)); - w360.BottomAttach = ((uint)(11)); - w360.LeftAttach = ((uint)(14)); - w360.RightAttach = ((uint)(15)); - w360.XOptions = ((global::Gtk.AttachOptions)(4)); - w360.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w361 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS12])); + w361.TopAttach = ((uint)(10)); + w361.BottomAttach = ((uint)(11)); + w361.LeftAttach = ((uint)(14)); + w361.RightAttach = ((uint)(15)); + w361.XOptions = ((global::Gtk.AttachOptions)(4)); + w361.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS13 = new global::Gtk.Image(); this.imgS13.WidthRequest = 50; this.imgS13.HeightRequest = 50; this.imgS13.Name = "imgS13"; this.tbUI.Add(this.imgS13); - global::Gtk.Table.TableChild w361 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS13])); - w361.TopAttach = ((uint)(10)); - w361.BottomAttach = ((uint)(11)); - w361.LeftAttach = ((uint)(15)); - w361.RightAttach = ((uint)(16)); - w361.XOptions = ((global::Gtk.AttachOptions)(4)); - w361.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w362 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS13])); + w362.TopAttach = ((uint)(10)); + w362.BottomAttach = ((uint)(11)); + w362.LeftAttach = ((uint)(15)); + w362.RightAttach = ((uint)(16)); + w362.XOptions = ((global::Gtk.AttachOptions)(4)); + w362.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS14 = new global::Gtk.Image(); this.imgS14.WidthRequest = 50; this.imgS14.HeightRequest = 50; this.imgS14.Name = "imgS14"; this.tbUI.Add(this.imgS14); - global::Gtk.Table.TableChild w362 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS14])); - w362.TopAttach = ((uint)(10)); - w362.BottomAttach = ((uint)(11)); - w362.LeftAttach = ((uint)(16)); - w362.RightAttach = ((uint)(17)); - w362.XOptions = ((global::Gtk.AttachOptions)(4)); - w362.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w363 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS14])); + w363.TopAttach = ((uint)(10)); + w363.BottomAttach = ((uint)(11)); + w363.LeftAttach = ((uint)(16)); + w363.RightAttach = ((uint)(17)); + w363.XOptions = ((global::Gtk.AttachOptions)(4)); + w363.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS2 = new global::Gtk.Image(); this.imgS2.WidthRequest = 50; this.imgS2.HeightRequest = 50; this.imgS2.Name = "imgS2"; this.tbUI.Add(this.imgS2); - global::Gtk.Table.TableChild w363 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); - w363.TopAttach = ((uint)(9)); - w363.BottomAttach = ((uint)(10)); - w363.LeftAttach = ((uint)(11)); - w363.RightAttach = ((uint)(12)); - w363.XOptions = ((global::Gtk.AttachOptions)(4)); - w363.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w364 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); + w364.TopAttach = ((uint)(9)); + w364.BottomAttach = ((uint)(10)); + w364.LeftAttach = ((uint)(11)); + w364.RightAttach = ((uint)(12)); + w364.XOptions = ((global::Gtk.AttachOptions)(4)); + w364.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS3 = new global::Gtk.Image(); this.imgS3.WidthRequest = 50; this.imgS3.HeightRequest = 50; this.imgS3.Name = "imgS3"; this.tbUI.Add(this.imgS3); - global::Gtk.Table.TableChild w364 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); - w364.TopAttach = ((uint)(9)); - w364.BottomAttach = ((uint)(10)); - w364.LeftAttach = ((uint)(12)); - w364.RightAttach = ((uint)(13)); - w364.XOptions = ((global::Gtk.AttachOptions)(4)); - w364.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w365 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); + w365.TopAttach = ((uint)(9)); + w365.BottomAttach = ((uint)(10)); + w365.LeftAttach = ((uint)(12)); + w365.RightAttach = ((uint)(13)); + w365.XOptions = ((global::Gtk.AttachOptions)(4)); + w365.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS4 = new global::Gtk.Image(); this.imgS4.WidthRequest = 50; this.imgS4.HeightRequest = 50; this.imgS4.Name = "imgS4"; this.tbUI.Add(this.imgS4); - global::Gtk.Table.TableChild w365 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); - w365.TopAttach = ((uint)(9)); - w365.BottomAttach = ((uint)(10)); - w365.LeftAttach = ((uint)(13)); - w365.RightAttach = ((uint)(14)); - w365.XOptions = ((global::Gtk.AttachOptions)(4)); - w365.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w366 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); + w366.TopAttach = ((uint)(9)); + w366.BottomAttach = ((uint)(10)); + w366.LeftAttach = ((uint)(13)); + w366.RightAttach = ((uint)(14)); + w366.XOptions = ((global::Gtk.AttachOptions)(4)); + w366.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS5 = new global::Gtk.Image(); this.imgS5.WidthRequest = 50; this.imgS5.HeightRequest = 50; this.imgS5.Name = "imgS5"; this.tbUI.Add(this.imgS5); - global::Gtk.Table.TableChild w366 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); - w366.TopAttach = ((uint)(9)); - w366.BottomAttach = ((uint)(10)); - w366.LeftAttach = ((uint)(14)); - w366.RightAttach = ((uint)(15)); - w366.XOptions = ((global::Gtk.AttachOptions)(4)); - w366.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w367 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); + w367.TopAttach = ((uint)(9)); + w367.BottomAttach = ((uint)(10)); + w367.LeftAttach = ((uint)(14)); + w367.RightAttach = ((uint)(15)); + w367.XOptions = ((global::Gtk.AttachOptions)(4)); + w367.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS6 = new global::Gtk.Image(); this.imgS6.WidthRequest = 50; this.imgS6.HeightRequest = 50; this.imgS6.Name = "imgS6"; this.tbUI.Add(this.imgS6); - global::Gtk.Table.TableChild w367 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); - w367.TopAttach = ((uint)(9)); - w367.BottomAttach = ((uint)(10)); - w367.LeftAttach = ((uint)(15)); - w367.RightAttach = ((uint)(16)); - w367.XOptions = ((global::Gtk.AttachOptions)(4)); - w367.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w368 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); + w368.TopAttach = ((uint)(9)); + w368.BottomAttach = ((uint)(10)); + w368.LeftAttach = ((uint)(15)); + w368.RightAttach = ((uint)(16)); + w368.XOptions = ((global::Gtk.AttachOptions)(4)); + w368.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS7 = new global::Gtk.Image(); this.imgS7.WidthRequest = 50; this.imgS7.HeightRequest = 50; this.imgS7.Name = "imgS7"; this.tbUI.Add(this.imgS7); - global::Gtk.Table.TableChild w368 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); - w368.TopAttach = ((uint)(9)); - w368.BottomAttach = ((uint)(10)); - w368.LeftAttach = ((uint)(16)); - w368.RightAttach = ((uint)(17)); - w368.XOptions = ((global::Gtk.AttachOptions)(4)); - w368.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w369 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); + w369.TopAttach = ((uint)(9)); + w369.BottomAttach = ((uint)(10)); + w369.LeftAttach = ((uint)(16)); + w369.RightAttach = ((uint)(17)); + w369.XOptions = ((global::Gtk.AttachOptions)(4)); + w369.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS8 = new global::Gtk.Image(); this.imgS8.WidthRequest = 50; this.imgS8.HeightRequest = 50; this.imgS8.Name = "imgS8"; this.tbUI.Add(this.imgS8); - global::Gtk.Table.TableChild w369 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); - w369.TopAttach = ((uint)(10)); - w369.BottomAttach = ((uint)(11)); - w369.LeftAttach = ((uint)(10)); - w369.RightAttach = ((uint)(11)); - w369.XOptions = ((global::Gtk.AttachOptions)(4)); - w369.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w370 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); + w370.TopAttach = ((uint)(10)); + w370.BottomAttach = ((uint)(11)); + w370.LeftAttach = ((uint)(10)); + w370.RightAttach = ((uint)(11)); + w370.XOptions = ((global::Gtk.AttachOptions)(4)); + w370.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgS9 = new global::Gtk.Image(); this.imgS9.WidthRequest = 50; this.imgS9.HeightRequest = 50; this.imgS9.Name = "imgS9"; this.tbUI.Add(this.imgS9); - global::Gtk.Table.TableChild w370 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); - w370.TopAttach = ((uint)(10)); - w370.BottomAttach = ((uint)(11)); - w370.LeftAttach = ((uint)(11)); - w370.RightAttach = ((uint)(12)); - w370.XOptions = ((global::Gtk.AttachOptions)(4)); - w370.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w371 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); + w371.TopAttach = ((uint)(10)); + w371.BottomAttach = ((uint)(11)); + w371.LeftAttach = ((uint)(11)); + w371.RightAttach = ((uint)(12)); + w371.XOptions = ((global::Gtk.AttachOptions)(4)); + w371.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblAccessories = new global::Gtk.Label(); this.lblAccessories.HeightRequest = 50; @@ -4357,100 +4374,100 @@ namespace Mundus.Views.Windows this.lblAccessories.LabelProp = "Accessories"; this.lblAccessories.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblAccessories); - global::Gtk.Table.TableChild w371 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); - w371.TopAttach = ((uint)(10)); - w371.BottomAttach = ((uint)(11)); - w371.LeftAttach = ((uint)(19)); - w371.RightAttach = ((uint)(26)); - w371.XOptions = ((global::Gtk.AttachOptions)(4)); - w371.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w372 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); + w372.TopAttach = ((uint)(10)); + w372.BottomAttach = ((uint)(11)); + w372.LeftAttach = ((uint)(19)); + w372.RightAttach = ((uint)(26)); + w372.XOptions = ((global::Gtk.AttachOptions)(4)); + w372.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank1 = new global::Gtk.Label(); this.lblBlank1.WidthRequest = 50; this.lblBlank1.HeightRequest = 10; this.lblBlank1.Name = "lblBlank1"; this.tbUI.Add(this.lblBlank1); - global::Gtk.Table.TableChild w372 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); - w372.LeftAttach = ((uint)(13)); - w372.RightAttach = ((uint)(14)); - w372.XOptions = ((global::Gtk.AttachOptions)(4)); - w372.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w373 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w373.LeftAttach = ((uint)(13)); + w373.RightAttach = ((uint)(14)); + w373.XOptions = ((global::Gtk.AttachOptions)(4)); + w373.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank2 = new global::Gtk.Label(); this.lblBlank2.WidthRequest = 10; this.lblBlank2.HeightRequest = 50; this.lblBlank2.Name = "lblBlank2"; this.tbUI.Add(this.lblBlank2); - global::Gtk.Table.TableChild w373 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); - w373.TopAttach = ((uint)(4)); - w373.BottomAttach = ((uint)(5)); - w373.XOptions = ((global::Gtk.AttachOptions)(4)); - w373.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w374 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w374.TopAttach = ((uint)(4)); + w374.BottomAttach = ((uint)(5)); + w374.XOptions = ((global::Gtk.AttachOptions)(4)); + w374.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank3 = new global::Gtk.Label(); this.lblBlank3.WidthRequest = 50; this.lblBlank3.HeightRequest = 50; this.lblBlank3.Name = "lblBlank3"; this.tbUI.Add(this.lblBlank3); - global::Gtk.Table.TableChild w374 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); - w374.TopAttach = ((uint)(8)); - w374.BottomAttach = ((uint)(9)); - w374.LeftAttach = ((uint)(13)); - w374.RightAttach = ((uint)(14)); - w374.XOptions = ((global::Gtk.AttachOptions)(4)); - w374.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w375 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w375.TopAttach = ((uint)(8)); + w375.BottomAttach = ((uint)(9)); + w375.LeftAttach = ((uint)(13)); + w375.RightAttach = ((uint)(14)); + w375.XOptions = ((global::Gtk.AttachOptions)(4)); + w375.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank4 = new global::Gtk.Label(); this.lblBlank4.WidthRequest = 10; this.lblBlank4.HeightRequest = 50; this.lblBlank4.Name = "lblBlank4"; this.tbUI.Add(this.lblBlank4); - global::Gtk.Table.TableChild w375 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); - w375.TopAttach = ((uint)(4)); - w375.BottomAttach = ((uint)(5)); - w375.LeftAttach = ((uint)(8)); - w375.RightAttach = ((uint)(9)); - w375.XOptions = ((global::Gtk.AttachOptions)(4)); - w375.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w376 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w376.TopAttach = ((uint)(4)); + w376.BottomAttach = ((uint)(5)); + w376.LeftAttach = ((uint)(8)); + w376.RightAttach = ((uint)(9)); + w376.XOptions = ((global::Gtk.AttachOptions)(4)); + w376.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank5 = new global::Gtk.Label(); this.lblBlank5.WidthRequest = 10; this.lblBlank5.HeightRequest = 50; this.lblBlank5.Name = "lblBlank5"; this.tbUI.Add(this.lblBlank5); - global::Gtk.Table.TableChild w376 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); - w376.TopAttach = ((uint)(4)); - w376.BottomAttach = ((uint)(5)); - w376.LeftAttach = ((uint)(18)); - w376.RightAttach = ((uint)(19)); - w376.XOptions = ((global::Gtk.AttachOptions)(4)); - w376.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w377 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w377.TopAttach = ((uint)(4)); + w377.BottomAttach = ((uint)(5)); + w377.LeftAttach = ((uint)(18)); + w377.RightAttach = ((uint)(19)); + w377.XOptions = ((global::Gtk.AttachOptions)(4)); + w377.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank6 = new global::Gtk.Label(); this.lblBlank6.WidthRequest = 10; this.lblBlank6.HeightRequest = 50; this.lblBlank6.Name = "lblBlank6"; this.tbUI.Add(this.lblBlank6); - global::Gtk.Table.TableChild w377 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank6])); - w377.TopAttach = ((uint)(4)); - w377.BottomAttach = ((uint)(5)); - w377.LeftAttach = ((uint)(26)); - w377.RightAttach = ((uint)(27)); - w377.XOptions = ((global::Gtk.AttachOptions)(4)); - w377.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w378 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank6])); + w378.TopAttach = ((uint)(4)); + w378.BottomAttach = ((uint)(5)); + w378.LeftAttach = ((uint)(26)); + w378.RightAttach = ((uint)(27)); + w378.XOptions = ((global::Gtk.AttachOptions)(4)); + w378.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblBlank8 = new global::Gtk.Label(); this.lblBlank8.WidthRequest = 50; this.lblBlank8.HeightRequest = 10; this.lblBlank8.Name = "lblBlank8"; this.tbUI.Add(this.lblBlank8); - global::Gtk.Table.TableChild w378 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); - w378.TopAttach = ((uint)(20)); - w378.BottomAttach = ((uint)(21)); - w378.LeftAttach = ((uint)(13)); - w378.RightAttach = ((uint)(14)); - w378.XOptions = ((global::Gtk.AttachOptions)(4)); - w378.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w379 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); + w379.TopAttach = ((uint)(20)); + w379.BottomAttach = ((uint)(21)); + w379.LeftAttach = ((uint)(13)); + w379.RightAttach = ((uint)(14)); + w379.XOptions = ((global::Gtk.AttachOptions)(4)); + w379.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblCoord1 = new global::Gtk.Label(); this.lblCoord1.WidthRequest = 50; @@ -4458,13 +4475,13 @@ namespace Mundus.Views.Windows this.lblCoord1.Name = "lblCoord1"; this.lblCoord1.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblCoord1); - global::Gtk.Table.TableChild w379 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); - w379.TopAttach = ((uint)(9)); - w379.BottomAttach = ((uint)(10)); - w379.LeftAttach = ((uint)(6)); - w379.RightAttach = ((uint)(7)); - w379.XOptions = ((global::Gtk.AttachOptions)(4)); - w379.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w380 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); + w380.TopAttach = ((uint)(9)); + w380.BottomAttach = ((uint)(10)); + w380.LeftAttach = ((uint)(6)); + w380.RightAttach = ((uint)(7)); + w380.XOptions = ((global::Gtk.AttachOptions)(4)); + w380.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblCoord2 = new global::Gtk.Label(); this.lblCoord2.WidthRequest = 50; @@ -4472,25 +4489,11 @@ namespace Mundus.Views.Windows this.lblCoord2.Name = "lblCoord2"; this.lblCoord2.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblCoord2); - global::Gtk.Table.TableChild w380 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); - w380.TopAttach = ((uint)(9)); - w380.BottomAttach = ((uint)(10)); - w380.LeftAttach = ((uint)(7)); - w380.RightAttach = ((uint)(8)); - w380.XOptions = ((global::Gtk.AttachOptions)(4)); - w380.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.lblEventLog = new global::Gtk.Label(); - this.lblEventLog.WidthRequest = 50; - this.lblEventLog.HeightRequest = 50; - this.lblEventLog.Name = "lblEventLog"; - this.lblEventLog.LabelProp = "Event Log"; - this.tbUI.Add(this.lblEventLog); - global::Gtk.Table.TableChild w381 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); - w381.TopAttach = ((uint)(13)); - w381.BottomAttach = ((uint)(14)); - w381.LeftAttach = ((uint)(10)); - w381.RightAttach = ((uint)(17)); + global::Gtk.Table.TableChild w381 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); + w381.TopAttach = ((uint)(9)); + w381.BottomAttach = ((uint)(10)); + w381.LeftAttach = ((uint)(7)); + w381.RightAttach = ((uint)(8)); w381.XOptions = ((global::Gtk.AttachOptions)(4)); w381.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild @@ -4594,9 +4597,9 @@ namespace Mundus.Views.Windows w388.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog1 = new global::Gtk.Label(); + this.lblLog1.WidthRequest = 350; this.lblLog1.HeightRequest = 50; this.lblLog1.Name = "lblLog1"; - this.lblLog1.LabelProp = "label6"; this.tbUI.Add(this.lblLog1); global::Gtk.Table.TableChild w389 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); w389.TopAttach = ((uint)(14)); @@ -4607,9 +4610,9 @@ namespace Mundus.Views.Windows w389.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog2 = new global::Gtk.Label(); + this.lblLog2.WidthRequest = 350; this.lblLog2.HeightRequest = 50; this.lblLog2.Name = "lblLog2"; - this.lblLog2.LabelProp = "label6"; this.tbUI.Add(this.lblLog2); global::Gtk.Table.TableChild w390 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); w390.TopAttach = ((uint)(15)); @@ -4620,9 +4623,9 @@ namespace Mundus.Views.Windows w390.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog3 = new global::Gtk.Label(); + this.lblLog3.WidthRequest = 350; this.lblLog3.HeightRequest = 50; this.lblLog3.Name = "lblLog3"; - this.lblLog3.LabelProp = "label6"; this.tbUI.Add(this.lblLog3); global::Gtk.Table.TableChild w391 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); w391.TopAttach = ((uint)(16)); @@ -4633,9 +4636,9 @@ namespace Mundus.Views.Windows w391.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog4 = new global::Gtk.Label(); + this.lblLog4.WidthRequest = 350; this.lblLog4.HeightRequest = 50; this.lblLog4.Name = "lblLog4"; - this.lblLog4.LabelProp = "label6"; this.tbUI.Add(this.lblLog4); global::Gtk.Table.TableChild w392 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); w392.TopAttach = ((uint)(17)); @@ -4646,9 +4649,9 @@ namespace Mundus.Views.Windows w392.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog5 = new global::Gtk.Label(); + this.lblLog5.WidthRequest = 350; this.lblLog5.HeightRequest = 50; this.lblLog5.Name = "lblLog5"; - this.lblLog5.LabelProp = "label6"; this.tbUI.Add(this.lblLog5); global::Gtk.Table.TableChild w393 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog5])); w393.TopAttach = ((uint)(18)); @@ -4659,9 +4662,9 @@ namespace Mundus.Views.Windows w393.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog6 = new global::Gtk.Label(); + this.lblLog6.WidthRequest = 350; this.lblLog6.HeightRequest = 50; this.lblLog6.Name = "lblLog6"; - this.lblLog6.LabelProp = "label6"; this.tbUI.Add(this.lblLog6); global::Gtk.Table.TableChild w394 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog6])); w394.TopAttach = ((uint)(19)); @@ -4745,6 +4748,7 @@ namespace Mundus.Views.Windows this.btnP1.Clicked += new global::System.EventHandler(this.OnBtnP1Clicked); this.btnMusic.Clicked += new global::System.EventHandler(this.OnBtnMusicClicked); this.btnMap.Clicked += new global::System.EventHandler(this.OnBtnMapClicked); + this.btnLog.Clicked += new global::System.EventHandler(this.OnBtnLogClicked); this.btnInv.Clicked += new global::System.EventHandler(this.OnBtnInvClicked); this.btnI9.Clicked += new global::System.EventHandler(this.OnBtnI9Clicked); this.btnI8.Clicked += new global::System.EventHandler(this.OnBtnI8Clicked); diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.NewGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.NewGameWindow.cs index 13f023a..f9c8100 100644 --- a/Mundus/gtk-gui/Mundus.Views.Windows.NewGameWindow.cs +++ b/Mundus/gtk-gui/Mundus.Views.Windows.NewGameWindow.cs @@ -246,6 +246,7 @@ namespace Mundus.Views.Windows this.rbCreative.WidthRequest = 90; this.rbCreative.CanFocus = true; this.rbCreative.Name = "rbCreative"; + this.rbCreative.Active = true; this.rbCreative.DrawIndicator = true; this.rbCreative.UseUnderline = true; this.rbCreative.Group = new global::GLib.SList(global::System.IntPtr.Zero); @@ -262,6 +263,7 @@ namespace Mundus.Views.Windows this.rbEasy.WidthRequest = 90; this.rbEasy.CanFocus = true; this.rbEasy.Name = "rbEasy"; + this.rbEasy.Active = true; this.rbEasy.DrawIndicator = true; this.rbEasy.UseUnderline = true; this.rbEasy.Group = new global::GLib.SList(global::System.IntPtr.Zero); @@ -310,6 +312,7 @@ namespace Mundus.Views.Windows this.rbLarge.WidthRequest = 90; this.rbLarge.CanFocus = true; this.rbLarge.Name = "rbLarge"; + this.rbLarge.Active = true; this.rbLarge.DrawIndicator = true; this.rbLarge.UseUnderline = true; this.rbLarge.Group = new global::GLib.SList(global::System.IntPtr.Zero); @@ -341,6 +344,7 @@ namespace Mundus.Views.Windows this.rbMLarge = new global::Gtk.RadioButton("Large"); this.rbMLarge.CanFocus = true; this.rbMLarge.Name = "rbMLarge"; + this.rbMLarge.Active = true; this.rbMLarge.DrawIndicator = true; this.rbMLarge.UseUnderline = true; this.rbMLarge.Group = new global::GLib.SList(global::System.IntPtr.Zero); diff --git a/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs b/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs index 56e4d8e..5cb01f0 100644 --- a/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs +++ b/Mundus/gtk-gui/Mundus.Views.Windows.SmallGameWindow.cs @@ -104,6 +104,8 @@ namespace Mundus.Views.Windows private global::Gtk.Button btnInv; + private global::Gtk.Button btnLog; + private global::Gtk.Button btnMap; private global::Gtk.Button btnMusic; @@ -1200,6 +1202,23 @@ namespace Mundus.Views.Windows w96.XOptions = ((global::Gtk.AttachOptions)(4)); w96.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild + this.btnLog = new global::Gtk.Button(); + this.btnLog.WidthRequest = 250; + this.btnLog.HeightRequest = 50; + this.btnLog.CanFocus = true; + this.btnLog.Name = "btnLog"; + this.btnLog.UseUnderline = true; + this.btnLog.FocusOnClick = false; + this.btnLog.Label = "Event Log"; + this.tbUI.Add(this.btnLog); + global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnLog])); + w97.TopAttach = ((uint)(11)); + w97.BottomAttach = ((uint)(12)); + w97.LeftAttach = ((uint)(8)); + w97.RightAttach = ((uint)(13)); + w97.XOptions = ((global::Gtk.AttachOptions)(0)); + w97.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild this.btnMap = new global::Gtk.Button(); this.btnMap.WidthRequest = 50; this.btnMap.HeightRequest = 50; @@ -1208,13 +1227,13 @@ namespace Mundus.Views.Windows this.btnMap.UseUnderline = true; this.btnMap.Label = "Map"; this.tbUI.Add(this.btnMap); - global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); - w97.TopAttach = ((uint)(9)); - w97.BottomAttach = ((uint)(10)); - w97.LeftAttach = ((uint)(7)); - w97.RightAttach = ((uint)(8)); - w97.XOptions = ((global::Gtk.AttachOptions)(4)); - w97.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w98 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMap])); + w98.TopAttach = ((uint)(9)); + w98.BottomAttach = ((uint)(10)); + w98.LeftAttach = ((uint)(7)); + w98.RightAttach = ((uint)(8)); + w98.XOptions = ((global::Gtk.AttachOptions)(4)); + w98.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnMusic = new global::Gtk.Button(); this.btnMusic.WidthRequest = 50; @@ -1224,13 +1243,13 @@ namespace Mundus.Views.Windows this.btnMusic.UseUnderline = true; this.btnMusic.Label = "Music"; this.tbUI.Add(this.btnMusic); - global::Gtk.Table.TableChild w98 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); - w98.TopAttach = ((uint)(11)); - w98.BottomAttach = ((uint)(12)); - w98.LeftAttach = ((uint)(7)); - w98.RightAttach = ((uint)(8)); - w98.XOptions = ((global::Gtk.AttachOptions)(4)); - w98.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnMusic])); + w99.TopAttach = ((uint)(11)); + w99.BottomAttach = ((uint)(12)); + w99.LeftAttach = ((uint)(7)); + w99.RightAttach = ((uint)(8)); + w99.XOptions = ((global::Gtk.AttachOptions)(4)); + w99.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP1 = new global::Gtk.Button(); this.btnP1.WidthRequest = 50; @@ -1239,16 +1258,16 @@ namespace Mundus.Views.Windows this.btnP1.Name = "btnP1"; this.btnP1.UseUnderline = true; this.btnP1.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w99 = new global::Gtk.Image(); - this.btnP1.Image = w99; + global::Gtk.Image w100 = new global::Gtk.Image(); + this.btnP1.Image = w100; this.tbUI.Add(this.btnP1); - global::Gtk.Table.TableChild w100 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); - w100.TopAttach = ((uint)(1)); - w100.BottomAttach = ((uint)(2)); - w100.LeftAttach = ((uint)(8)); - w100.RightAttach = ((uint)(9)); - w100.XOptions = ((global::Gtk.AttachOptions)(4)); - w100.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP1])); + w101.TopAttach = ((uint)(1)); + w101.BottomAttach = ((uint)(2)); + 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.btnP10 = new global::Gtk.Button(); this.btnP10.WidthRequest = 50; @@ -1257,16 +1276,16 @@ namespace Mundus.Views.Windows this.btnP10.Name = "btnP10"; this.btnP10.UseUnderline = true; this.btnP10.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w101 = new global::Gtk.Image(); - this.btnP10.Image = w101; + global::Gtk.Image w102 = new global::Gtk.Image(); + this.btnP10.Image = w102; this.tbUI.Add(this.btnP10); - global::Gtk.Table.TableChild w102 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); - w102.TopAttach = ((uint)(2)); - w102.BottomAttach = ((uint)(3)); - w102.LeftAttach = ((uint)(12)); - w102.RightAttach = ((uint)(13)); - w102.XOptions = ((global::Gtk.AttachOptions)(4)); - w102.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP10])); + w103.TopAttach = ((uint)(2)); + w103.BottomAttach = ((uint)(3)); + w103.LeftAttach = ((uint)(12)); + w103.RightAttach = ((uint)(13)); + w103.XOptions = ((global::Gtk.AttachOptions)(4)); + w103.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP11 = new global::Gtk.Button(); this.btnP11.WidthRequest = 50; @@ -1275,16 +1294,16 @@ namespace Mundus.Views.Windows this.btnP11.Name = "btnP11"; this.btnP11.UseUnderline = true; this.btnP11.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w103 = new global::Gtk.Image(); - this.btnP11.Image = w103; + global::Gtk.Image w104 = new global::Gtk.Image(); + this.btnP11.Image = w104; this.tbUI.Add(this.btnP11); - global::Gtk.Table.TableChild w104 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); - w104.TopAttach = ((uint)(3)); - w104.BottomAttach = ((uint)(4)); - w104.LeftAttach = ((uint)(8)); - w104.RightAttach = ((uint)(9)); - w104.XOptions = ((global::Gtk.AttachOptions)(4)); - w104.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP11])); + w105.TopAttach = ((uint)(3)); + w105.BottomAttach = ((uint)(4)); + w105.LeftAttach = ((uint)(8)); + w105.RightAttach = ((uint)(9)); + w105.XOptions = ((global::Gtk.AttachOptions)(4)); + w105.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP12 = new global::Gtk.Button(); this.btnP12.WidthRequest = 50; @@ -1293,16 +1312,16 @@ namespace Mundus.Views.Windows this.btnP12.Name = "btnP12"; this.btnP12.UseUnderline = true; this.btnP12.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w105 = new global::Gtk.Image(); - this.btnP12.Image = w105; + global::Gtk.Image w106 = new global::Gtk.Image(); + this.btnP12.Image = w106; this.tbUI.Add(this.btnP12); - global::Gtk.Table.TableChild w106 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); - w106.TopAttach = ((uint)(3)); - w106.BottomAttach = ((uint)(4)); - w106.LeftAttach = ((uint)(9)); - w106.RightAttach = ((uint)(10)); - w106.XOptions = ((global::Gtk.AttachOptions)(4)); - w106.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP12])); + w107.TopAttach = ((uint)(3)); + w107.BottomAttach = ((uint)(4)); + w107.LeftAttach = ((uint)(9)); + w107.RightAttach = ((uint)(10)); + w107.XOptions = ((global::Gtk.AttachOptions)(4)); + w107.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP13 = new global::Gtk.Button(); this.btnP13.WidthRequest = 50; @@ -1311,16 +1330,16 @@ namespace Mundus.Views.Windows this.btnP13.Name = "btnP13"; this.btnP13.UseUnderline = true; this.btnP13.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w107 = new global::Gtk.Image(); - this.btnP13.Image = w107; + global::Gtk.Image w108 = new global::Gtk.Image(); + this.btnP13.Image = w108; this.tbUI.Add(this.btnP13); - global::Gtk.Table.TableChild w108 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); - w108.TopAttach = ((uint)(3)); - w108.BottomAttach = ((uint)(4)); - w108.LeftAttach = ((uint)(10)); - w108.RightAttach = ((uint)(11)); - w108.XOptions = ((global::Gtk.AttachOptions)(4)); - w108.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP13])); + w109.TopAttach = ((uint)(3)); + w109.BottomAttach = ((uint)(4)); + w109.LeftAttach = ((uint)(10)); + w109.RightAttach = ((uint)(11)); + w109.XOptions = ((global::Gtk.AttachOptions)(4)); + w109.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP14 = new global::Gtk.Button(); this.btnP14.WidthRequest = 50; @@ -1329,16 +1348,16 @@ namespace Mundus.Views.Windows this.btnP14.Name = "btnP14"; this.btnP14.UseUnderline = true; this.btnP14.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w109 = new global::Gtk.Image(); - this.btnP14.Image = w109; + global::Gtk.Image w110 = new global::Gtk.Image(); + this.btnP14.Image = w110; this.tbUI.Add(this.btnP14); - global::Gtk.Table.TableChild w110 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); - w110.TopAttach = ((uint)(3)); - w110.BottomAttach = ((uint)(4)); - w110.LeftAttach = ((uint)(11)); - w110.RightAttach = ((uint)(12)); - w110.XOptions = ((global::Gtk.AttachOptions)(4)); - w110.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP14])); + w111.TopAttach = ((uint)(3)); + w111.BottomAttach = ((uint)(4)); + w111.LeftAttach = ((uint)(11)); + w111.RightAttach = ((uint)(12)); + w111.XOptions = ((global::Gtk.AttachOptions)(4)); + w111.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP15 = new global::Gtk.Button(); this.btnP15.WidthRequest = 50; @@ -1347,16 +1366,16 @@ namespace Mundus.Views.Windows this.btnP15.Name = "btnP15"; this.btnP15.UseUnderline = true; this.btnP15.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w111 = new global::Gtk.Image(); - this.btnP15.Image = w111; + global::Gtk.Image w112 = new global::Gtk.Image(); + this.btnP15.Image = w112; this.tbUI.Add(this.btnP15); - global::Gtk.Table.TableChild w112 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); - w112.TopAttach = ((uint)(3)); - w112.BottomAttach = ((uint)(4)); - w112.LeftAttach = ((uint)(12)); - w112.RightAttach = ((uint)(13)); - w112.XOptions = ((global::Gtk.AttachOptions)(4)); - w112.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP15])); + w113.TopAttach = ((uint)(3)); + w113.BottomAttach = ((uint)(4)); + w113.LeftAttach = ((uint)(12)); + w113.RightAttach = ((uint)(13)); + w113.XOptions = ((global::Gtk.AttachOptions)(4)); + w113.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP16 = new global::Gtk.Button(); this.btnP16.WidthRequest = 50; @@ -1365,16 +1384,16 @@ namespace Mundus.Views.Windows this.btnP16.Name = "btnP16"; this.btnP16.UseUnderline = true; this.btnP16.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w113 = new global::Gtk.Image(); - this.btnP16.Image = w113; + global::Gtk.Image w114 = new global::Gtk.Image(); + this.btnP16.Image = w114; this.tbUI.Add(this.btnP16); - global::Gtk.Table.TableChild w114 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); - w114.TopAttach = ((uint)(4)); - w114.BottomAttach = ((uint)(5)); - w114.LeftAttach = ((uint)(8)); - w114.RightAttach = ((uint)(9)); - w114.XOptions = ((global::Gtk.AttachOptions)(4)); - w114.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP16])); + w115.TopAttach = ((uint)(4)); + w115.BottomAttach = ((uint)(5)); + w115.LeftAttach = ((uint)(8)); + w115.RightAttach = ((uint)(9)); + w115.XOptions = ((global::Gtk.AttachOptions)(4)); + w115.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP17 = new global::Gtk.Button(); this.btnP17.WidthRequest = 50; @@ -1383,16 +1402,16 @@ namespace Mundus.Views.Windows this.btnP17.Name = "btnP17"; this.btnP17.UseUnderline = true; this.btnP17.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w115 = new global::Gtk.Image(); - this.btnP17.Image = w115; + global::Gtk.Image w116 = new global::Gtk.Image(); + this.btnP17.Image = w116; this.tbUI.Add(this.btnP17); - global::Gtk.Table.TableChild w116 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); - w116.TopAttach = ((uint)(4)); - w116.BottomAttach = ((uint)(5)); - w116.LeftAttach = ((uint)(9)); - w116.RightAttach = ((uint)(10)); - w116.XOptions = ((global::Gtk.AttachOptions)(4)); - w116.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP17])); + w117.TopAttach = ((uint)(4)); + w117.BottomAttach = ((uint)(5)); + w117.LeftAttach = ((uint)(9)); + w117.RightAttach = ((uint)(10)); + w117.XOptions = ((global::Gtk.AttachOptions)(4)); + w117.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP18 = new global::Gtk.Button(); this.btnP18.WidthRequest = 50; @@ -1401,16 +1420,16 @@ namespace Mundus.Views.Windows this.btnP18.Name = "btnP18"; this.btnP18.UseUnderline = true; this.btnP18.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w117 = new global::Gtk.Image(); - this.btnP18.Image = w117; + global::Gtk.Image w118 = new global::Gtk.Image(); + this.btnP18.Image = w118; this.tbUI.Add(this.btnP18); - global::Gtk.Table.TableChild w118 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); - w118.TopAttach = ((uint)(4)); - w118.BottomAttach = ((uint)(5)); - w118.LeftAttach = ((uint)(10)); - w118.RightAttach = ((uint)(11)); - w118.XOptions = ((global::Gtk.AttachOptions)(4)); - w118.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP18])); + w119.TopAttach = ((uint)(4)); + w119.BottomAttach = ((uint)(5)); + w119.LeftAttach = ((uint)(10)); + w119.RightAttach = ((uint)(11)); + w119.XOptions = ((global::Gtk.AttachOptions)(4)); + w119.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP19 = new global::Gtk.Button(); this.btnP19.WidthRequest = 50; @@ -1419,16 +1438,16 @@ namespace Mundus.Views.Windows this.btnP19.Name = "btnP19"; this.btnP19.UseUnderline = true; this.btnP19.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w119 = new global::Gtk.Image(); - this.btnP19.Image = w119; + global::Gtk.Image w120 = new global::Gtk.Image(); + this.btnP19.Image = w120; this.tbUI.Add(this.btnP19); - global::Gtk.Table.TableChild w120 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); - w120.TopAttach = ((uint)(4)); - w120.BottomAttach = ((uint)(5)); - w120.LeftAttach = ((uint)(11)); - w120.RightAttach = ((uint)(12)); - w120.XOptions = ((global::Gtk.AttachOptions)(4)); - w120.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP19])); + w121.TopAttach = ((uint)(4)); + w121.BottomAttach = ((uint)(5)); + w121.LeftAttach = ((uint)(11)); + w121.RightAttach = ((uint)(12)); + w121.XOptions = ((global::Gtk.AttachOptions)(4)); + w121.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP2 = new global::Gtk.Button(); this.btnP2.WidthRequest = 50; @@ -1437,16 +1456,16 @@ namespace Mundus.Views.Windows this.btnP2.Name = "btnP2"; this.btnP2.UseUnderline = true; this.btnP2.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w121 = new global::Gtk.Image(); - this.btnP2.Image = w121; + global::Gtk.Image w122 = new global::Gtk.Image(); + this.btnP2.Image = w122; this.tbUI.Add(this.btnP2); - global::Gtk.Table.TableChild w122 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); - w122.TopAttach = ((uint)(1)); - w122.BottomAttach = ((uint)(2)); - w122.LeftAttach = ((uint)(9)); - w122.RightAttach = ((uint)(10)); - w122.XOptions = ((global::Gtk.AttachOptions)(4)); - w122.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP2])); + w123.TopAttach = ((uint)(1)); + w123.BottomAttach = ((uint)(2)); + w123.LeftAttach = ((uint)(9)); + w123.RightAttach = ((uint)(10)); + w123.XOptions = ((global::Gtk.AttachOptions)(4)); + w123.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP20 = new global::Gtk.Button(); this.btnP20.WidthRequest = 50; @@ -1455,16 +1474,16 @@ namespace Mundus.Views.Windows this.btnP20.Name = "btnP20"; this.btnP20.UseUnderline = true; this.btnP20.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w123 = new global::Gtk.Image(); - this.btnP20.Image = w123; + global::Gtk.Image w124 = new global::Gtk.Image(); + this.btnP20.Image = w124; this.tbUI.Add(this.btnP20); - global::Gtk.Table.TableChild w124 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); - w124.TopAttach = ((uint)(4)); - w124.BottomAttach = ((uint)(5)); - w124.LeftAttach = ((uint)(12)); - w124.RightAttach = ((uint)(13)); - w124.XOptions = ((global::Gtk.AttachOptions)(4)); - w124.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP20])); + w125.TopAttach = ((uint)(4)); + w125.BottomAttach = ((uint)(5)); + w125.LeftAttach = ((uint)(12)); + w125.RightAttach = ((uint)(13)); + w125.XOptions = ((global::Gtk.AttachOptions)(4)); + w125.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP21 = new global::Gtk.Button(); this.btnP21.WidthRequest = 50; @@ -1473,16 +1492,16 @@ namespace Mundus.Views.Windows this.btnP21.Name = "btnP21"; this.btnP21.UseUnderline = true; this.btnP21.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w125 = new global::Gtk.Image(); - this.btnP21.Image = w125; + global::Gtk.Image w126 = new global::Gtk.Image(); + this.btnP21.Image = w126; this.tbUI.Add(this.btnP21); - global::Gtk.Table.TableChild w126 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); - w126.TopAttach = ((uint)(5)); - w126.BottomAttach = ((uint)(6)); - w126.LeftAttach = ((uint)(8)); - w126.RightAttach = ((uint)(9)); - w126.XOptions = ((global::Gtk.AttachOptions)(4)); - w126.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP21])); + w127.TopAttach = ((uint)(5)); + w127.BottomAttach = ((uint)(6)); + w127.LeftAttach = ((uint)(8)); + w127.RightAttach = ((uint)(9)); + w127.XOptions = ((global::Gtk.AttachOptions)(4)); + w127.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP22 = new global::Gtk.Button(); this.btnP22.WidthRequest = 50; @@ -1491,16 +1510,16 @@ namespace Mundus.Views.Windows this.btnP22.Name = "btnP22"; this.btnP22.UseUnderline = true; this.btnP22.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w127 = new global::Gtk.Image(); - this.btnP22.Image = w127; + global::Gtk.Image w128 = new global::Gtk.Image(); + this.btnP22.Image = w128; this.tbUI.Add(this.btnP22); - global::Gtk.Table.TableChild w128 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); - w128.TopAttach = ((uint)(5)); - w128.BottomAttach = ((uint)(6)); - w128.LeftAttach = ((uint)(9)); - w128.RightAttach = ((uint)(10)); - w128.XOptions = ((global::Gtk.AttachOptions)(4)); - w128.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP22])); + w129.TopAttach = ((uint)(5)); + w129.BottomAttach = ((uint)(6)); + w129.LeftAttach = ((uint)(9)); + w129.RightAttach = ((uint)(10)); + w129.XOptions = ((global::Gtk.AttachOptions)(4)); + w129.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP23 = new global::Gtk.Button(); this.btnP23.WidthRequest = 50; @@ -1509,16 +1528,16 @@ namespace Mundus.Views.Windows this.btnP23.Name = "btnP23"; this.btnP23.UseUnderline = true; this.btnP23.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w129 = new global::Gtk.Image(); - this.btnP23.Image = w129; + global::Gtk.Image w130 = new global::Gtk.Image(); + this.btnP23.Image = w130; this.tbUI.Add(this.btnP23); - global::Gtk.Table.TableChild w130 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); - w130.TopAttach = ((uint)(5)); - w130.BottomAttach = ((uint)(6)); - w130.LeftAttach = ((uint)(10)); - w130.RightAttach = ((uint)(11)); - w130.XOptions = ((global::Gtk.AttachOptions)(4)); - w130.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP23])); + w131.TopAttach = ((uint)(5)); + w131.BottomAttach = ((uint)(6)); + w131.LeftAttach = ((uint)(10)); + w131.RightAttach = ((uint)(11)); + w131.XOptions = ((global::Gtk.AttachOptions)(4)); + w131.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP24 = new global::Gtk.Button(); this.btnP24.WidthRequest = 50; @@ -1527,16 +1546,16 @@ namespace Mundus.Views.Windows this.btnP24.Name = "btnP24"; this.btnP24.UseUnderline = true; this.btnP24.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w131 = new global::Gtk.Image(); - this.btnP24.Image = w131; + global::Gtk.Image w132 = new global::Gtk.Image(); + this.btnP24.Image = w132; this.tbUI.Add(this.btnP24); - global::Gtk.Table.TableChild w132 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); - w132.TopAttach = ((uint)(5)); - w132.BottomAttach = ((uint)(6)); - w132.LeftAttach = ((uint)(11)); - w132.RightAttach = ((uint)(12)); - w132.XOptions = ((global::Gtk.AttachOptions)(4)); - w132.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP24])); + w133.TopAttach = ((uint)(5)); + w133.BottomAttach = ((uint)(6)); + w133.LeftAttach = ((uint)(11)); + w133.RightAttach = ((uint)(12)); + w133.XOptions = ((global::Gtk.AttachOptions)(4)); + w133.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP25 = new global::Gtk.Button(); this.btnP25.WidthRequest = 50; @@ -1545,16 +1564,16 @@ namespace Mundus.Views.Windows this.btnP25.Name = "btnP25"; this.btnP25.UseUnderline = true; this.btnP25.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w133 = new global::Gtk.Image(); - this.btnP25.Image = w133; + global::Gtk.Image w134 = new global::Gtk.Image(); + this.btnP25.Image = w134; this.tbUI.Add(this.btnP25); - global::Gtk.Table.TableChild w134 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); - w134.TopAttach = ((uint)(5)); - w134.BottomAttach = ((uint)(6)); - w134.LeftAttach = ((uint)(12)); - w134.RightAttach = ((uint)(13)); - w134.XOptions = ((global::Gtk.AttachOptions)(4)); - w134.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP25])); + w135.TopAttach = ((uint)(5)); + w135.BottomAttach = ((uint)(6)); + w135.LeftAttach = ((uint)(12)); + w135.RightAttach = ((uint)(13)); + w135.XOptions = ((global::Gtk.AttachOptions)(4)); + w135.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP3 = new global::Gtk.Button(); this.btnP3.WidthRequest = 50; @@ -1563,16 +1582,16 @@ namespace Mundus.Views.Windows this.btnP3.Name = "btnP3"; this.btnP3.UseUnderline = true; this.btnP3.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w135 = new global::Gtk.Image(); - this.btnP3.Image = w135; + global::Gtk.Image w136 = new global::Gtk.Image(); + this.btnP3.Image = w136; this.tbUI.Add(this.btnP3); - global::Gtk.Table.TableChild w136 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); - w136.TopAttach = ((uint)(1)); - w136.BottomAttach = ((uint)(2)); - w136.LeftAttach = ((uint)(10)); - w136.RightAttach = ((uint)(11)); - w136.XOptions = ((global::Gtk.AttachOptions)(4)); - w136.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP3])); + w137.TopAttach = ((uint)(1)); + w137.BottomAttach = ((uint)(2)); + w137.LeftAttach = ((uint)(10)); + w137.RightAttach = ((uint)(11)); + w137.XOptions = ((global::Gtk.AttachOptions)(4)); + w137.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP4 = new global::Gtk.Button(); this.btnP4.WidthRequest = 50; @@ -1581,16 +1600,16 @@ namespace Mundus.Views.Windows this.btnP4.Name = "btnP4"; this.btnP4.UseUnderline = true; this.btnP4.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w137 = new global::Gtk.Image(); - this.btnP4.Image = w137; + global::Gtk.Image w138 = new global::Gtk.Image(); + this.btnP4.Image = w138; this.tbUI.Add(this.btnP4); - global::Gtk.Table.TableChild w138 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); - w138.TopAttach = ((uint)(1)); - w138.BottomAttach = ((uint)(2)); - w138.LeftAttach = ((uint)(11)); - w138.RightAttach = ((uint)(12)); - w138.XOptions = ((global::Gtk.AttachOptions)(4)); - w138.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP4])); + w139.TopAttach = ((uint)(1)); + w139.BottomAttach = ((uint)(2)); + w139.LeftAttach = ((uint)(11)); + w139.RightAttach = ((uint)(12)); + w139.XOptions = ((global::Gtk.AttachOptions)(4)); + w139.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP5 = new global::Gtk.Button(); this.btnP5.WidthRequest = 50; @@ -1599,16 +1618,16 @@ namespace Mundus.Views.Windows this.btnP5.Name = "btnP5"; this.btnP5.UseUnderline = true; this.btnP5.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w139 = new global::Gtk.Image(); - this.btnP5.Image = w139; + global::Gtk.Image w140 = new global::Gtk.Image(); + this.btnP5.Image = w140; this.tbUI.Add(this.btnP5); - global::Gtk.Table.TableChild w140 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); - w140.TopAttach = ((uint)(1)); - w140.BottomAttach = ((uint)(2)); - w140.LeftAttach = ((uint)(12)); - w140.RightAttach = ((uint)(13)); - w140.XOptions = ((global::Gtk.AttachOptions)(4)); - w140.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP5])); + w141.TopAttach = ((uint)(1)); + w141.BottomAttach = ((uint)(2)); + w141.LeftAttach = ((uint)(12)); + w141.RightAttach = ((uint)(13)); + w141.XOptions = ((global::Gtk.AttachOptions)(4)); + w141.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP6 = new global::Gtk.Button(); this.btnP6.WidthRequest = 50; @@ -1617,16 +1636,16 @@ namespace Mundus.Views.Windows this.btnP6.Name = "btnP6"; this.btnP6.UseUnderline = true; this.btnP6.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w141 = new global::Gtk.Image(); - this.btnP6.Image = w141; + global::Gtk.Image w142 = new global::Gtk.Image(); + this.btnP6.Image = w142; this.tbUI.Add(this.btnP6); - global::Gtk.Table.TableChild w142 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); - w142.TopAttach = ((uint)(2)); - w142.BottomAttach = ((uint)(3)); - w142.LeftAttach = ((uint)(8)); - w142.RightAttach = ((uint)(9)); - w142.XOptions = ((global::Gtk.AttachOptions)(4)); - w142.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP6])); + w143.TopAttach = ((uint)(2)); + w143.BottomAttach = ((uint)(3)); + w143.LeftAttach = ((uint)(8)); + w143.RightAttach = ((uint)(9)); + w143.XOptions = ((global::Gtk.AttachOptions)(4)); + w143.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP7 = new global::Gtk.Button(); this.btnP7.WidthRequest = 50; @@ -1635,16 +1654,16 @@ namespace Mundus.Views.Windows this.btnP7.Name = "btnP7"; this.btnP7.UseUnderline = true; this.btnP7.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w143 = new global::Gtk.Image(); - this.btnP7.Image = w143; + global::Gtk.Image w144 = new global::Gtk.Image(); + this.btnP7.Image = w144; this.tbUI.Add(this.btnP7); - global::Gtk.Table.TableChild w144 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); - w144.TopAttach = ((uint)(2)); - w144.BottomAttach = ((uint)(3)); - w144.LeftAttach = ((uint)(9)); - w144.RightAttach = ((uint)(10)); - w144.XOptions = ((global::Gtk.AttachOptions)(4)); - w144.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP7])); + w145.TopAttach = ((uint)(2)); + w145.BottomAttach = ((uint)(3)); + w145.LeftAttach = ((uint)(9)); + w145.RightAttach = ((uint)(10)); + w145.XOptions = ((global::Gtk.AttachOptions)(4)); + w145.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP8 = new global::Gtk.Button(); this.btnP8.WidthRequest = 50; @@ -1653,16 +1672,16 @@ namespace Mundus.Views.Windows this.btnP8.Name = "btnP8"; this.btnP8.UseUnderline = true; this.btnP8.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w145 = new global::Gtk.Image(); - this.btnP8.Image = w145; + global::Gtk.Image w146 = new global::Gtk.Image(); + this.btnP8.Image = w146; this.tbUI.Add(this.btnP8); - global::Gtk.Table.TableChild w146 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); - w146.TopAttach = ((uint)(2)); - w146.BottomAttach = ((uint)(3)); - w146.LeftAttach = ((uint)(10)); - w146.RightAttach = ((uint)(11)); - w146.XOptions = ((global::Gtk.AttachOptions)(4)); - w146.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP8])); + w147.TopAttach = ((uint)(2)); + w147.BottomAttach = ((uint)(3)); + w147.LeftAttach = ((uint)(10)); + w147.RightAttach = ((uint)(11)); + w147.XOptions = ((global::Gtk.AttachOptions)(4)); + w147.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnP9 = new global::Gtk.Button(); this.btnP9.WidthRequest = 50; @@ -1671,16 +1690,16 @@ namespace Mundus.Views.Windows this.btnP9.Name = "btnP9"; this.btnP9.UseUnderline = true; this.btnP9.Relief = ((global::Gtk.ReliefStyle)(2)); - global::Gtk.Image w147 = new global::Gtk.Image(); - this.btnP9.Image = w147; + global::Gtk.Image w148 = new global::Gtk.Image(); + this.btnP9.Image = w148; this.tbUI.Add(this.btnP9); - global::Gtk.Table.TableChild w148 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); - w148.TopAttach = ((uint)(2)); - w148.BottomAttach = ((uint)(3)); - w148.LeftAttach = ((uint)(11)); - w148.RightAttach = ((uint)(12)); - w148.XOptions = ((global::Gtk.AttachOptions)(4)); - w148.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnP9])); + w149.TopAttach = ((uint)(2)); + w149.BottomAttach = ((uint)(3)); + w149.LeftAttach = ((uint)(11)); + w149.RightAttach = ((uint)(12)); + w149.XOptions = ((global::Gtk.AttachOptions)(4)); + w149.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.btnPause = new global::Gtk.Button(); this.btnPause.WidthRequest = 50; @@ -1690,768 +1709,768 @@ namespace Mundus.Views.Windows this.btnPause.UseUnderline = true; this.btnPause.Label = "Pause"; this.tbUI.Add(this.btnPause); - global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); - w149.TopAttach = ((uint)(11)); - w149.BottomAttach = ((uint)(12)); - w149.LeftAttach = ((uint)(13)); - w149.RightAttach = ((uint)(14)); - w149.XOptions = ((global::Gtk.AttachOptions)(4)); - w149.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w150 = ((global::Gtk.Table.TableChild)(this.tbUI[this.btnPause])); + w150.TopAttach = ((uint)(11)); + w150.BottomAttach = ((uint)(12)); + w150.LeftAttach = ((uint)(13)); + w150.RightAttach = ((uint)(14)); + w150.XOptions = ((global::Gtk.AttachOptions)(4)); + w150.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 w150 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); - w150.TopAttach = ((uint)(2)); - w150.BottomAttach = ((uint)(3)); - w150.LeftAttach = ((uint)(1)); - w150.RightAttach = ((uint)(2)); - w150.XOptions = ((global::Gtk.AttachOptions)(4)); - w150.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG1])); + w151.TopAttach = ((uint)(2)); + w151.BottomAttach = ((uint)(3)); + w151.LeftAttach = ((uint)(1)); + w151.RightAttach = ((uint)(2)); + w151.XOptions = ((global::Gtk.AttachOptions)(4)); + w151.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.imgG10 = new global::Gtk.Image(); this.imgG10.Name = "imgG10"; this.tbUI.Add(this.imgG10); - global::Gtk.Table.TableChild w151 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); - w151.TopAttach = ((uint)(3)); - w151.BottomAttach = ((uint)(4)); - w151.LeftAttach = ((uint)(5)); - w151.RightAttach = ((uint)(6)); - w151.XOptions = ((global::Gtk.AttachOptions)(4)); - w151.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w152 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG10])); + w152.TopAttach = ((uint)(3)); + w152.BottomAttach = ((uint)(4)); + w152.LeftAttach = ((uint)(5)); + w152.RightAttach = ((uint)(6)); + w152.XOptions = ((global::Gtk.AttachOptions)(4)); + w152.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 w152 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); - w152.TopAttach = ((uint)(4)); - w152.BottomAttach = ((uint)(5)); - w152.LeftAttach = ((uint)(1)); - w152.RightAttach = ((uint)(2)); - w152.XOptions = ((global::Gtk.AttachOptions)(4)); - w152.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG12 = new global::Gtk.Image(); - this.imgG12.Name = "imgG12"; - this.tbUI.Add(this.imgG12); - global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); + global::Gtk.Table.TableChild w153 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG11])); w153.TopAttach = ((uint)(4)); w153.BottomAttach = ((uint)(5)); - w153.LeftAttach = ((uint)(2)); - w153.RightAttach = ((uint)(3)); + w153.LeftAttach = ((uint)(1)); + w153.RightAttach = ((uint)(2)); w153.XOptions = ((global::Gtk.AttachOptions)(4)); w153.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG13 = new global::Gtk.Image(); - this.imgG13.Name = "imgG13"; - this.tbUI.Add(this.imgG13); - global::Gtk.Table.TableChild w154 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); + this.imgG12 = new global::Gtk.Image(); + this.imgG12.Name = "imgG12"; + this.tbUI.Add(this.imgG12); + global::Gtk.Table.TableChild w154 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG12])); w154.TopAttach = ((uint)(4)); w154.BottomAttach = ((uint)(5)); - w154.LeftAttach = ((uint)(3)); - w154.RightAttach = ((uint)(4)); + w154.LeftAttach = ((uint)(2)); + w154.RightAttach = ((uint)(3)); w154.XOptions = ((global::Gtk.AttachOptions)(4)); w154.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG14 = new global::Gtk.Image(); - this.imgG14.Name = "imgG14"; - this.tbUI.Add(this.imgG14); - global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); + this.imgG13 = new global::Gtk.Image(); + this.imgG13.Name = "imgG13"; + this.tbUI.Add(this.imgG13); + global::Gtk.Table.TableChild w155 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG13])); w155.TopAttach = ((uint)(4)); w155.BottomAttach = ((uint)(5)); - w155.LeftAttach = ((uint)(4)); - w155.RightAttach = ((uint)(5)); + w155.LeftAttach = ((uint)(3)); + w155.RightAttach = ((uint)(4)); w155.XOptions = ((global::Gtk.AttachOptions)(4)); w155.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG15 = new global::Gtk.Image(); - this.imgG15.Name = "imgG15"; - this.tbUI.Add(this.imgG15); - global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + this.imgG14 = new global::Gtk.Image(); + this.imgG14.Name = "imgG14"; + this.tbUI.Add(this.imgG14); + global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG14])); w156.TopAttach = ((uint)(4)); w156.BottomAttach = ((uint)(5)); - w156.LeftAttach = ((uint)(5)); - w156.RightAttach = ((uint)(6)); + w156.LeftAttach = ((uint)(4)); + w156.RightAttach = ((uint)(5)); w156.XOptions = ((global::Gtk.AttachOptions)(4)); w156.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 w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG15])); + w157.TopAttach = ((uint)(4)); + w157.BottomAttach = ((uint)(5)); + w157.LeftAttach = ((uint)(5)); + w157.RightAttach = ((uint)(6)); + w157.XOptions = ((global::Gtk.AttachOptions)(4)); + w157.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild this.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 w157 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); - w157.TopAttach = ((uint)(5)); - w157.BottomAttach = ((uint)(6)); - w157.LeftAttach = ((uint)(1)); - w157.RightAttach = ((uint)(2)); - w157.XOptions = ((global::Gtk.AttachOptions)(4)); - w157.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG17 = new global::Gtk.Image(); - this.imgG17.HeightRequest = 50; - this.imgG17.Name = "imgG17"; - this.tbUI.Add(this.imgG17); - global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); + global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG16])); w158.TopAttach = ((uint)(5)); w158.BottomAttach = ((uint)(6)); - w158.LeftAttach = ((uint)(2)); - w158.RightAttach = ((uint)(3)); + w158.LeftAttach = ((uint)(1)); + w158.RightAttach = ((uint)(2)); w158.XOptions = ((global::Gtk.AttachOptions)(4)); w158.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG18 = new global::Gtk.Image(); - this.imgG18.HeightRequest = 50; - this.imgG18.Name = "imgG18"; - this.tbUI.Add(this.imgG18); - global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); + this.imgG17 = new global::Gtk.Image(); + this.imgG17.HeightRequest = 50; + this.imgG17.Name = "imgG17"; + this.tbUI.Add(this.imgG17); + global::Gtk.Table.TableChild w159 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG17])); w159.TopAttach = ((uint)(5)); w159.BottomAttach = ((uint)(6)); - w159.LeftAttach = ((uint)(3)); - w159.RightAttach = ((uint)(4)); + w159.LeftAttach = ((uint)(2)); + w159.RightAttach = ((uint)(3)); w159.XOptions = ((global::Gtk.AttachOptions)(4)); w159.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG19 = new global::Gtk.Image(); - this.imgG19.Name = "imgG19"; - this.tbUI.Add(this.imgG19); - global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + this.imgG18 = new global::Gtk.Image(); + this.imgG18.HeightRequest = 50; + this.imgG18.Name = "imgG18"; + this.tbUI.Add(this.imgG18); + global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG18])); w160.TopAttach = ((uint)(5)); w160.BottomAttach = ((uint)(6)); - w160.LeftAttach = ((uint)(4)); - w160.RightAttach = ((uint)(5)); + w160.LeftAttach = ((uint)(3)); + w160.RightAttach = ((uint)(4)); w160.XOptions = ((global::Gtk.AttachOptions)(4)); w160.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild + this.imgG19 = new global::Gtk.Image(); + this.imgG19.Name = "imgG19"; + this.tbUI.Add(this.imgG19); + global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG19])); + w161.TopAttach = ((uint)(5)); + w161.BottomAttach = ((uint)(6)); + w161.LeftAttach = ((uint)(4)); + w161.RightAttach = ((uint)(5)); + w161.XOptions = ((global::Gtk.AttachOptions)(4)); + w161.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild this.imgG2 = new global::Gtk.Image(); this.imgG2.Name = "imgG2"; this.tbUI.Add(this.imgG2); - global::Gtk.Table.TableChild w161 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); - w161.TopAttach = ((uint)(2)); - w161.BottomAttach = ((uint)(3)); - w161.LeftAttach = ((uint)(2)); - w161.RightAttach = ((uint)(3)); - w161.XOptions = ((global::Gtk.AttachOptions)(4)); - w161.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w162 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG2])); + w162.TopAttach = ((uint)(2)); + w162.BottomAttach = ((uint)(3)); + w162.LeftAttach = ((uint)(2)); + w162.RightAttach = ((uint)(3)); + w162.XOptions = ((global::Gtk.AttachOptions)(4)); + w162.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 w162 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); - w162.TopAttach = ((uint)(5)); - w162.BottomAttach = ((uint)(6)); - w162.LeftAttach = ((uint)(5)); - w162.RightAttach = ((uint)(6)); - w162.XOptions = ((global::Gtk.AttachOptions)(4)); - w162.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG20])); + w163.TopAttach = ((uint)(5)); + w163.BottomAttach = ((uint)(6)); + w163.LeftAttach = ((uint)(5)); + w163.RightAttach = ((uint)(6)); + w163.XOptions = ((global::Gtk.AttachOptions)(4)); + w163.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 w163 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); - w163.TopAttach = ((uint)(6)); - w163.BottomAttach = ((uint)(7)); - w163.LeftAttach = ((uint)(1)); - w163.RightAttach = ((uint)(2)); - w163.XOptions = ((global::Gtk.AttachOptions)(4)); - w163.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG22 = new global::Gtk.Image(); - this.imgG22.Name = "imgG22"; - this.tbUI.Add(this.imgG22); - global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); + global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG21])); w164.TopAttach = ((uint)(6)); w164.BottomAttach = ((uint)(7)); - w164.LeftAttach = ((uint)(2)); - w164.RightAttach = ((uint)(3)); + w164.LeftAttach = ((uint)(1)); + w164.RightAttach = ((uint)(2)); w164.XOptions = ((global::Gtk.AttachOptions)(4)); w164.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG23 = new global::Gtk.Image(); - this.imgG23.Name = "imgG23"; - this.tbUI.Add(this.imgG23); - global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); + this.imgG22 = new global::Gtk.Image(); + this.imgG22.Name = "imgG22"; + this.tbUI.Add(this.imgG22); + global::Gtk.Table.TableChild w165 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG22])); w165.TopAttach = ((uint)(6)); w165.BottomAttach = ((uint)(7)); - w165.LeftAttach = ((uint)(3)); - w165.RightAttach = ((uint)(4)); + w165.LeftAttach = ((uint)(2)); + w165.RightAttach = ((uint)(3)); w165.XOptions = ((global::Gtk.AttachOptions)(4)); w165.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG24 = new global::Gtk.Image(); - this.imgG24.Name = "imgG24"; - this.tbUI.Add(this.imgG24); - global::Gtk.Table.TableChild w166 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); + this.imgG23 = new global::Gtk.Image(); + this.imgG23.Name = "imgG23"; + this.tbUI.Add(this.imgG23); + global::Gtk.Table.TableChild w166 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG23])); w166.TopAttach = ((uint)(6)); w166.BottomAttach = ((uint)(7)); - w166.LeftAttach = ((uint)(4)); - w166.RightAttach = ((uint)(5)); + w166.LeftAttach = ((uint)(3)); + w166.RightAttach = ((uint)(4)); w166.XOptions = ((global::Gtk.AttachOptions)(4)); w166.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG25 = new global::Gtk.Image(); - this.imgG25.Name = "imgG25"; - this.tbUI.Add(this.imgG25); - global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + this.imgG24 = new global::Gtk.Image(); + this.imgG24.Name = "imgG24"; + this.tbUI.Add(this.imgG24); + global::Gtk.Table.TableChild w167 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG24])); w167.TopAttach = ((uint)(6)); w167.BottomAttach = ((uint)(7)); - w167.LeftAttach = ((uint)(5)); - w167.RightAttach = ((uint)(6)); + w167.LeftAttach = ((uint)(4)); + w167.RightAttach = ((uint)(5)); w167.XOptions = ((global::Gtk.AttachOptions)(4)); w167.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG3 = new global::Gtk.Image(); - this.imgG3.Name = "imgG3"; - this.tbUI.Add(this.imgG3); - global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); - w168.TopAttach = ((uint)(2)); - w168.BottomAttach = ((uint)(3)); - w168.LeftAttach = ((uint)(3)); - w168.RightAttach = ((uint)(4)); + this.imgG25 = new global::Gtk.Image(); + this.imgG25.Name = "imgG25"; + this.tbUI.Add(this.imgG25); + global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG25])); + w168.TopAttach = ((uint)(6)); + w168.BottomAttach = ((uint)(7)); + w168.LeftAttach = ((uint)(5)); + w168.RightAttach = ((uint)(6)); w168.XOptions = ((global::Gtk.AttachOptions)(4)); w168.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG4 = new global::Gtk.Image(); - this.imgG4.Name = "imgG4"; - this.tbUI.Add(this.imgG4); - global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); + this.imgG3 = new global::Gtk.Image(); + this.imgG3.Name = "imgG3"; + this.tbUI.Add(this.imgG3); + global::Gtk.Table.TableChild w169 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG3])); w169.TopAttach = ((uint)(2)); w169.BottomAttach = ((uint)(3)); - w169.LeftAttach = ((uint)(4)); - w169.RightAttach = ((uint)(5)); + w169.LeftAttach = ((uint)(3)); + w169.RightAttach = ((uint)(4)); w169.XOptions = ((global::Gtk.AttachOptions)(4)); w169.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG5 = new global::Gtk.Image(); - this.imgG5.Name = "imgG5"; - this.tbUI.Add(this.imgG5); - global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + this.imgG4 = new global::Gtk.Image(); + this.imgG4.Name = "imgG4"; + this.tbUI.Add(this.imgG4); + global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG4])); w170.TopAttach = ((uint)(2)); w170.BottomAttach = ((uint)(3)); - w170.LeftAttach = ((uint)(5)); - w170.RightAttach = ((uint)(6)); + w170.LeftAttach = ((uint)(4)); + w170.RightAttach = ((uint)(5)); w170.XOptions = ((global::Gtk.AttachOptions)(4)); w170.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 w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG5])); + w171.TopAttach = ((uint)(2)); + w171.BottomAttach = ((uint)(3)); + w171.LeftAttach = ((uint)(5)); + w171.RightAttach = ((uint)(6)); + w171.XOptions = ((global::Gtk.AttachOptions)(4)); + w171.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 w171 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); - w171.TopAttach = ((uint)(3)); - w171.BottomAttach = ((uint)(4)); - w171.LeftAttach = ((uint)(1)); - w171.RightAttach = ((uint)(2)); - w171.XOptions = ((global::Gtk.AttachOptions)(4)); - w171.YOptions = ((global::Gtk.AttachOptions)(4)); - // Container child tbUI.Gtk.Table+TableChild - this.imgG7 = new global::Gtk.Image(); - this.imgG7.Name = "imgG7"; - this.tbUI.Add(this.imgG7); - global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); + global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG6])); w172.TopAttach = ((uint)(3)); w172.BottomAttach = ((uint)(4)); - w172.LeftAttach = ((uint)(2)); - w172.RightAttach = ((uint)(3)); + 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.imgG8 = new global::Gtk.Image(); - this.imgG8.Name = "imgG8"; - this.tbUI.Add(this.imgG8); - global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); + this.imgG7 = new global::Gtk.Image(); + this.imgG7.Name = "imgG7"; + this.tbUI.Add(this.imgG7); + global::Gtk.Table.TableChild w173 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG7])); w173.TopAttach = ((uint)(3)); w173.BottomAttach = ((uint)(4)); - w173.LeftAttach = ((uint)(3)); - w173.RightAttach = ((uint)(4)); + w173.LeftAttach = ((uint)(2)); + w173.RightAttach = ((uint)(3)); w173.XOptions = ((global::Gtk.AttachOptions)(4)); w173.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild - this.imgG9 = new global::Gtk.Image(); - this.imgG9.Name = "imgG9"; - this.tbUI.Add(this.imgG9); - global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + this.imgG8 = new global::Gtk.Image(); + this.imgG8.Name = "imgG8"; + this.tbUI.Add(this.imgG8); + global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG8])); w174.TopAttach = ((uint)(3)); w174.BottomAttach = ((uint)(4)); - w174.LeftAttach = ((uint)(4)); - w174.RightAttach = ((uint)(5)); + w174.LeftAttach = ((uint)(3)); + w174.RightAttach = ((uint)(4)); w174.XOptions = ((global::Gtk.AttachOptions)(4)); w174.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild + this.imgG9 = new global::Gtk.Image(); + this.imgG9.Name = "imgG9"; + this.tbUI.Add(this.imgG9); + global::Gtk.Table.TableChild w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgG9])); + w175.TopAttach = ((uint)(3)); + w175.BottomAttach = ((uint)(4)); + w175.LeftAttach = ((uint)(4)); + w175.RightAttach = ((uint)(5)); + w175.XOptions = ((global::Gtk.AttachOptions)(4)); + w175.YOptions = ((global::Gtk.AttachOptions)(4)); + // Container child tbUI.Gtk.Table+TableChild this.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 w175 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); - w175.TopAttach = ((uint)(10)); - w175.BottomAttach = ((uint)(11)); - w175.LeftAttach = ((uint)(1)); - w175.RightAttach = ((uint)(2)); - w175.XOptions = ((global::Gtk.AttachOptions)(4)); - w175.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI1])); + w176.TopAttach = ((uint)(10)); + w176.BottomAttach = ((uint)(11)); + w176.LeftAttach = ((uint)(1)); + w176.RightAttach = ((uint)(2)); + w176.XOptions = ((global::Gtk.AttachOptions)(4)); + w176.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w176 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); - w176.TopAttach = ((uint)(11)); - w176.BottomAttach = ((uint)(12)); - w176.LeftAttach = ((uint)(5)); - w176.RightAttach = ((uint)(6)); - w176.XOptions = ((global::Gtk.AttachOptions)(4)); - w176.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI10])); + w177.TopAttach = ((uint)(11)); + w177.BottomAttach = ((uint)(12)); + w177.LeftAttach = ((uint)(5)); + w177.RightAttach = ((uint)(6)); + w177.XOptions = ((global::Gtk.AttachOptions)(4)); + w177.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 w177 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); - w177.TopAttach = ((uint)(12)); - w177.BottomAttach = ((uint)(13)); - w177.LeftAttach = ((uint)(1)); - w177.RightAttach = ((uint)(2)); - w177.XOptions = ((global::Gtk.AttachOptions)(4)); - w177.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI11])); + w178.TopAttach = ((uint)(12)); + w178.BottomAttach = ((uint)(13)); + w178.LeftAttach = ((uint)(1)); + w178.RightAttach = ((uint)(2)); + w178.XOptions = ((global::Gtk.AttachOptions)(4)); + w178.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 w178 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); - w178.TopAttach = ((uint)(12)); - w178.BottomAttach = ((uint)(13)); - w178.LeftAttach = ((uint)(2)); - w178.RightAttach = ((uint)(3)); - w178.XOptions = ((global::Gtk.AttachOptions)(4)); - w178.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI12])); + w179.TopAttach = ((uint)(12)); + w179.BottomAttach = ((uint)(13)); + w179.LeftAttach = ((uint)(2)); + w179.RightAttach = ((uint)(3)); + w179.XOptions = ((global::Gtk.AttachOptions)(4)); + w179.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild 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 w179 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); - w179.TopAttach = ((uint)(12)); - w179.BottomAttach = ((uint)(13)); - w179.LeftAttach = ((uint)(3)); - w179.RightAttach = ((uint)(4)); - w179.XOptions = ((global::Gtk.AttachOptions)(4)); - w179.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI13])); + w180.TopAttach = ((uint)(12)); + w180.BottomAttach = ((uint)(13)); + w180.LeftAttach = ((uint)(3)); + w180.RightAttach = ((uint)(4)); + w180.XOptions = ((global::Gtk.AttachOptions)(4)); + w180.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 w180 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); - w180.TopAttach = ((uint)(12)); - w180.BottomAttach = ((uint)(13)); - w180.LeftAttach = ((uint)(4)); - w180.RightAttach = ((uint)(5)); - w180.XOptions = ((global::Gtk.AttachOptions)(4)); - w180.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI14])); + w181.TopAttach = ((uint)(12)); + w181.BottomAttach = ((uint)(13)); + w181.LeftAttach = ((uint)(4)); + w181.RightAttach = ((uint)(5)); + w181.XOptions = ((global::Gtk.AttachOptions)(4)); + w181.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 w181 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); - w181.TopAttach = ((uint)(12)); - w181.BottomAttach = ((uint)(13)); - w181.LeftAttach = ((uint)(5)); - w181.RightAttach = ((uint)(6)); - w181.XOptions = ((global::Gtk.AttachOptions)(4)); - w181.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI15])); + w182.TopAttach = ((uint)(12)); + w182.BottomAttach = ((uint)(13)); + w182.LeftAttach = ((uint)(5)); + w182.RightAttach = ((uint)(6)); + w182.XOptions = ((global::Gtk.AttachOptions)(4)); + w182.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w182 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); - w182.TopAttach = ((uint)(13)); - w182.BottomAttach = ((uint)(14)); - w182.LeftAttach = ((uint)(1)); - w182.RightAttach = ((uint)(2)); - w182.XOptions = ((global::Gtk.AttachOptions)(4)); - w182.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI16])); + w183.TopAttach = ((uint)(13)); + w183.BottomAttach = ((uint)(14)); + w183.LeftAttach = ((uint)(1)); + w183.RightAttach = ((uint)(2)); + w183.XOptions = ((global::Gtk.AttachOptions)(4)); + w183.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w183 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); - w183.TopAttach = ((uint)(13)); - w183.BottomAttach = ((uint)(14)); - w183.LeftAttach = ((uint)(2)); - w183.RightAttach = ((uint)(3)); - w183.XOptions = ((global::Gtk.AttachOptions)(4)); - w183.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI17])); + w184.TopAttach = ((uint)(13)); + w184.BottomAttach = ((uint)(14)); + w184.LeftAttach = ((uint)(2)); + w184.RightAttach = ((uint)(3)); + w184.XOptions = ((global::Gtk.AttachOptions)(4)); + w184.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w184 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); - w184.TopAttach = ((uint)(13)); - w184.BottomAttach = ((uint)(14)); - w184.LeftAttach = ((uint)(3)); - w184.RightAttach = ((uint)(4)); - w184.XOptions = ((global::Gtk.AttachOptions)(4)); - w184.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI18])); + w185.TopAttach = ((uint)(13)); + w185.BottomAttach = ((uint)(14)); + w185.LeftAttach = ((uint)(3)); + w185.RightAttach = ((uint)(4)); + w185.XOptions = ((global::Gtk.AttachOptions)(4)); + w185.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w185 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); - w185.TopAttach = ((uint)(13)); - w185.BottomAttach = ((uint)(14)); - w185.LeftAttach = ((uint)(4)); - w185.RightAttach = ((uint)(5)); - w185.XOptions = ((global::Gtk.AttachOptions)(4)); - w185.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI19])); + w186.TopAttach = ((uint)(13)); + w186.BottomAttach = ((uint)(14)); + w186.LeftAttach = ((uint)(4)); + w186.RightAttach = ((uint)(5)); + w186.XOptions = ((global::Gtk.AttachOptions)(4)); + w186.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w186 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); - w186.TopAttach = ((uint)(10)); - w186.BottomAttach = ((uint)(11)); - w186.LeftAttach = ((uint)(2)); - w186.RightAttach = ((uint)(3)); - w186.XOptions = ((global::Gtk.AttachOptions)(4)); - w186.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI2])); + w187.TopAttach = ((uint)(10)); + w187.BottomAttach = ((uint)(11)); + w187.LeftAttach = ((uint)(2)); + w187.RightAttach = ((uint)(3)); + w187.XOptions = ((global::Gtk.AttachOptions)(4)); + w187.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 w187 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); - w187.TopAttach = ((uint)(13)); - w187.BottomAttach = ((uint)(14)); - w187.LeftAttach = ((uint)(5)); - w187.RightAttach = ((uint)(6)); - w187.XOptions = ((global::Gtk.AttachOptions)(4)); - w187.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI20])); + w188.TopAttach = ((uint)(13)); + w188.BottomAttach = ((uint)(14)); + w188.LeftAttach = ((uint)(5)); + w188.RightAttach = ((uint)(6)); + w188.XOptions = ((global::Gtk.AttachOptions)(4)); + w188.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 w188 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); - w188.TopAttach = ((uint)(14)); - w188.BottomAttach = ((uint)(15)); - w188.LeftAttach = ((uint)(1)); - w188.RightAttach = ((uint)(2)); - w188.XOptions = ((global::Gtk.AttachOptions)(4)); - w188.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI21])); + w189.TopAttach = ((uint)(14)); + w189.BottomAttach = ((uint)(15)); + w189.LeftAttach = ((uint)(1)); + w189.RightAttach = ((uint)(2)); + w189.XOptions = ((global::Gtk.AttachOptions)(4)); + w189.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 w189 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); - w189.TopAttach = ((uint)(14)); - w189.BottomAttach = ((uint)(15)); - w189.LeftAttach = ((uint)(2)); - w189.RightAttach = ((uint)(3)); - w189.XOptions = ((global::Gtk.AttachOptions)(4)); - w189.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI22])); + w190.TopAttach = ((uint)(14)); + w190.BottomAttach = ((uint)(15)); + w190.LeftAttach = ((uint)(2)); + w190.RightAttach = ((uint)(3)); + w190.XOptions = ((global::Gtk.AttachOptions)(4)); + w190.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 w190 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); - w190.TopAttach = ((uint)(14)); - w190.BottomAttach = ((uint)(15)); - w190.LeftAttach = ((uint)(3)); - w190.RightAttach = ((uint)(4)); - w190.XOptions = ((global::Gtk.AttachOptions)(4)); - w190.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI23])); + w191.TopAttach = ((uint)(14)); + w191.BottomAttach = ((uint)(15)); + w191.LeftAttach = ((uint)(3)); + w191.RightAttach = ((uint)(4)); + w191.XOptions = ((global::Gtk.AttachOptions)(4)); + w191.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 w191 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); - w191.TopAttach = ((uint)(14)); - w191.BottomAttach = ((uint)(15)); - w191.LeftAttach = ((uint)(4)); - w191.RightAttach = ((uint)(5)); - w191.XOptions = ((global::Gtk.AttachOptions)(4)); - w191.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI24])); + w192.TopAttach = ((uint)(14)); + w192.BottomAttach = ((uint)(15)); + w192.LeftAttach = ((uint)(4)); + w192.RightAttach = ((uint)(5)); + w192.XOptions = ((global::Gtk.AttachOptions)(4)); + w192.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 w192 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); - w192.TopAttach = ((uint)(14)); - w192.BottomAttach = ((uint)(15)); - w192.LeftAttach = ((uint)(5)); - w192.RightAttach = ((uint)(6)); - w192.XOptions = ((global::Gtk.AttachOptions)(4)); - w192.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI25])); + w193.TopAttach = ((uint)(14)); + w193.BottomAttach = ((uint)(15)); + w193.LeftAttach = ((uint)(5)); + w193.RightAttach = ((uint)(6)); + w193.XOptions = ((global::Gtk.AttachOptions)(4)); + w193.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w193 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); - w193.TopAttach = ((uint)(10)); - w193.BottomAttach = ((uint)(11)); - w193.LeftAttach = ((uint)(3)); - w193.RightAttach = ((uint)(4)); - w193.XOptions = ((global::Gtk.AttachOptions)(4)); - w193.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI3])); + w194.TopAttach = ((uint)(10)); + w194.BottomAttach = ((uint)(11)); + w194.LeftAttach = ((uint)(3)); + w194.RightAttach = ((uint)(4)); + w194.XOptions = ((global::Gtk.AttachOptions)(4)); + w194.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 w194 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); - w194.TopAttach = ((uint)(10)); - w194.BottomAttach = ((uint)(11)); - w194.LeftAttach = ((uint)(4)); - w194.RightAttach = ((uint)(5)); - w194.XOptions = ((global::Gtk.AttachOptions)(4)); - w194.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI4])); + w195.TopAttach = ((uint)(10)); + w195.BottomAttach = ((uint)(11)); + w195.LeftAttach = ((uint)(4)); + w195.RightAttach = ((uint)(5)); + w195.XOptions = ((global::Gtk.AttachOptions)(4)); + w195.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 w195 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); - w195.TopAttach = ((uint)(10)); - w195.BottomAttach = ((uint)(11)); - w195.LeftAttach = ((uint)(5)); - w195.RightAttach = ((uint)(6)); - w195.XOptions = ((global::Gtk.AttachOptions)(4)); - w195.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI5])); + w196.TopAttach = ((uint)(10)); + w196.BottomAttach = ((uint)(11)); + w196.LeftAttach = ((uint)(5)); + w196.RightAttach = ((uint)(6)); + w196.XOptions = ((global::Gtk.AttachOptions)(4)); + w196.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 w196 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); - w196.TopAttach = ((uint)(11)); - w196.BottomAttach = ((uint)(12)); - w196.LeftAttach = ((uint)(1)); - w196.RightAttach = ((uint)(2)); - w196.XOptions = ((global::Gtk.AttachOptions)(4)); - w196.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI6])); + w197.TopAttach = ((uint)(11)); + w197.BottomAttach = ((uint)(12)); + w197.LeftAttach = ((uint)(1)); + w197.RightAttach = ((uint)(2)); + w197.XOptions = ((global::Gtk.AttachOptions)(4)); + w197.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 w197 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); - w197.TopAttach = ((uint)(11)); - w197.BottomAttach = ((uint)(12)); - w197.LeftAttach = ((uint)(2)); - w197.RightAttach = ((uint)(3)); - w197.XOptions = ((global::Gtk.AttachOptions)(4)); - w197.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI7])); + w198.TopAttach = ((uint)(11)); + w198.BottomAttach = ((uint)(12)); + w198.LeftAttach = ((uint)(2)); + w198.RightAttach = ((uint)(3)); + w198.XOptions = ((global::Gtk.AttachOptions)(4)); + w198.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 w198 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); - w198.TopAttach = ((uint)(11)); - w198.BottomAttach = ((uint)(12)); - w198.LeftAttach = ((uint)(3)); - w198.RightAttach = ((uint)(4)); - w198.XOptions = ((global::Gtk.AttachOptions)(4)); - w198.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI8])); + w199.TopAttach = ((uint)(11)); + w199.BottomAttach = ((uint)(12)); + w199.LeftAttach = ((uint)(3)); + w199.RightAttach = ((uint)(4)); + w199.XOptions = ((global::Gtk.AttachOptions)(4)); + w199.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w199 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); - w199.TopAttach = ((uint)(11)); - w199.BottomAttach = ((uint)(12)); - w199.LeftAttach = ((uint)(4)); - w199.RightAttach = ((uint)(5)); - w199.XOptions = ((global::Gtk.AttachOptions)(4)); - w199.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgI9])); + w200.TopAttach = ((uint)(11)); + w200.BottomAttach = ((uint)(12)); + w200.LeftAttach = ((uint)(4)); + w200.RightAttach = ((uint)(5)); + w200.XOptions = ((global::Gtk.AttachOptions)(4)); + w200.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w200 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); - w200.TopAttach = ((uint)(14)); - w200.BottomAttach = ((uint)(15)); - w200.LeftAttach = ((uint)(17)); - w200.RightAttach = ((uint)(18)); - w200.XOptions = ((global::Gtk.AttachOptions)(4)); - w200.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgInfo])); + w201.TopAttach = ((uint)(14)); + w201.BottomAttach = ((uint)(15)); + w201.LeftAttach = ((uint)(17)); + w201.RightAttach = ((uint)(18)); + w201.XOptions = ((global::Gtk.AttachOptions)(4)); + w201.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 w201 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); - w201.TopAttach = ((uint)(7)); - w201.BottomAttach = ((uint)(8)); - w201.LeftAttach = ((uint)(8)); - w201.RightAttach = ((uint)(9)); - w201.XOptions = ((global::Gtk.AttachOptions)(4)); - w201.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS1])); + w202.TopAttach = ((uint)(7)); + w202.BottomAttach = ((uint)(8)); + w202.LeftAttach = ((uint)(8)); + w202.RightAttach = ((uint)(9)); + w202.XOptions = ((global::Gtk.AttachOptions)(4)); + w202.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 w202 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); - w202.TopAttach = ((uint)(8)); - w202.BottomAttach = ((uint)(9)); - w202.LeftAttach = ((uint)(12)); - w202.RightAttach = ((uint)(13)); - w202.XOptions = ((global::Gtk.AttachOptions)(4)); - w202.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS10])); + w203.TopAttach = ((uint)(8)); + w203.BottomAttach = ((uint)(9)); + 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.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 w203 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); - w203.TopAttach = ((uint)(7)); - w203.BottomAttach = ((uint)(8)); - w203.LeftAttach = ((uint)(9)); - w203.RightAttach = ((uint)(10)); - w203.XOptions = ((global::Gtk.AttachOptions)(4)); - w203.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS2])); + w204.TopAttach = ((uint)(7)); + w204.BottomAttach = ((uint)(8)); + w204.LeftAttach = ((uint)(9)); + w204.RightAttach = ((uint)(10)); + w204.XOptions = ((global::Gtk.AttachOptions)(4)); + w204.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 w204 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); - w204.TopAttach = ((uint)(7)); - w204.BottomAttach = ((uint)(8)); - w204.LeftAttach = ((uint)(10)); - w204.RightAttach = ((uint)(11)); - w204.XOptions = ((global::Gtk.AttachOptions)(4)); - w204.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS3])); + w205.TopAttach = ((uint)(7)); + w205.BottomAttach = ((uint)(8)); + w205.LeftAttach = ((uint)(10)); + w205.RightAttach = ((uint)(11)); + w205.XOptions = ((global::Gtk.AttachOptions)(4)); + w205.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 w205 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); - w205.TopAttach = ((uint)(7)); - w205.BottomAttach = ((uint)(8)); - w205.LeftAttach = ((uint)(11)); - w205.RightAttach = ((uint)(12)); - w205.XOptions = ((global::Gtk.AttachOptions)(4)); - w205.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS4])); + w206.TopAttach = ((uint)(7)); + w206.BottomAttach = ((uint)(8)); + w206.LeftAttach = ((uint)(11)); + w206.RightAttach = ((uint)(12)); + w206.XOptions = ((global::Gtk.AttachOptions)(4)); + w206.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 w206 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); - w206.TopAttach = ((uint)(7)); - w206.BottomAttach = ((uint)(8)); - w206.LeftAttach = ((uint)(12)); - w206.RightAttach = ((uint)(13)); - w206.XOptions = ((global::Gtk.AttachOptions)(4)); - w206.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS5])); + w207.TopAttach = ((uint)(7)); + w207.BottomAttach = ((uint)(8)); + w207.LeftAttach = ((uint)(12)); + w207.RightAttach = ((uint)(13)); + w207.XOptions = ((global::Gtk.AttachOptions)(4)); + w207.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w207 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); - w207.TopAttach = ((uint)(8)); - w207.BottomAttach = ((uint)(9)); - w207.LeftAttach = ((uint)(8)); - w207.RightAttach = ((uint)(9)); - w207.XOptions = ((global::Gtk.AttachOptions)(4)); - w207.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS6])); + w208.TopAttach = ((uint)(8)); + w208.BottomAttach = ((uint)(9)); + w208.LeftAttach = ((uint)(8)); + w208.RightAttach = ((uint)(9)); + w208.XOptions = ((global::Gtk.AttachOptions)(4)); + w208.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 w208 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); - w208.TopAttach = ((uint)(8)); - w208.BottomAttach = ((uint)(9)); - w208.LeftAttach = ((uint)(9)); - w208.RightAttach = ((uint)(10)); - w208.XOptions = ((global::Gtk.AttachOptions)(4)); - w208.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS7])); + w209.TopAttach = ((uint)(8)); + w209.BottomAttach = ((uint)(9)); + w209.LeftAttach = ((uint)(9)); + w209.RightAttach = ((uint)(10)); + w209.XOptions = ((global::Gtk.AttachOptions)(4)); + w209.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w209 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); - w209.TopAttach = ((uint)(8)); - w209.BottomAttach = ((uint)(9)); - w209.LeftAttach = ((uint)(10)); - w209.RightAttach = ((uint)(11)); - w209.XOptions = ((global::Gtk.AttachOptions)(4)); - w209.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS8])); + w210.TopAttach = ((uint)(8)); + w210.BottomAttach = ((uint)(9)); + 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.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 w210 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); - w210.TopAttach = ((uint)(8)); - w210.BottomAttach = ((uint)(9)); - w210.LeftAttach = ((uint)(11)); - w210.RightAttach = ((uint)(12)); - w210.XOptions = ((global::Gtk.AttachOptions)(4)); - w210.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.imgS9])); + w211.TopAttach = ((uint)(8)); + w211.BottomAttach = ((uint)(9)); + w211.LeftAttach = ((uint)(11)); + w211.RightAttach = ((uint)(12)); + w211.XOptions = ((global::Gtk.AttachOptions)(4)); + w211.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblAccessories = new global::Gtk.Label(); this.lblAccessories.HeightRequest = 50; @@ -2459,100 +2478,100 @@ namespace Mundus.Views.Windows this.lblAccessories.LabelProp = "Accessories"; this.lblAccessories.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblAccessories); - global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); - w211.TopAttach = ((uint)(8)); - w211.BottomAttach = ((uint)(9)); - w211.LeftAttach = ((uint)(15)); - w211.RightAttach = ((uint)(20)); - w211.XOptions = ((global::Gtk.AttachOptions)(4)); - w211.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblAccessories])); + w212.TopAttach = ((uint)(8)); + w212.BottomAttach = ((uint)(9)); + w212.LeftAttach = ((uint)(15)); + w212.RightAttach = ((uint)(20)); + w212.XOptions = ((global::Gtk.AttachOptions)(4)); + w212.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 w212 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); - w212.TopAttach = ((uint)(3)); - w212.BottomAttach = ((uint)(4)); - w212.LeftAttach = ((uint)(6)); - w212.RightAttach = ((uint)(7)); - w212.XOptions = ((global::Gtk.AttachOptions)(4)); - w212.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank1])); + w213.TopAttach = ((uint)(3)); + w213.BottomAttach = ((uint)(4)); + w213.LeftAttach = ((uint)(6)); + w213.RightAttach = ((uint)(7)); + w213.XOptions = ((global::Gtk.AttachOptions)(4)); + w213.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 w213 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); - w213.TopAttach = ((uint)(6)); - w213.BottomAttach = ((uint)(7)); - w213.LeftAttach = ((uint)(10)); - w213.RightAttach = ((uint)(11)); - w213.XOptions = ((global::Gtk.AttachOptions)(4)); - w213.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank2])); + w214.TopAttach = ((uint)(6)); + w214.BottomAttach = ((uint)(7)); + 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.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 w214 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); - w214.TopAttach = ((uint)(3)); - w214.BottomAttach = ((uint)(4)); - w214.LeftAttach = ((uint)(14)); - w214.RightAttach = ((uint)(15)); - w214.XOptions = ((global::Gtk.AttachOptions)(4)); - w214.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank3])); + w215.TopAttach = ((uint)(3)); + w215.BottomAttach = ((uint)(4)); + w215.LeftAttach = ((uint)(14)); + w215.RightAttach = ((uint)(15)); + w215.XOptions = ((global::Gtk.AttachOptions)(4)); + w215.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 w215 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); - w215.TopAttach = ((uint)(3)); - w215.BottomAttach = ((uint)(4)); - w215.LeftAttach = ((uint)(20)); - w215.RightAttach = ((uint)(21)); - w215.XOptions = ((global::Gtk.AttachOptions)(4)); - w215.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank4])); + w216.TopAttach = ((uint)(3)); + w216.BottomAttach = ((uint)(4)); + w216.LeftAttach = ((uint)(20)); + w216.RightAttach = ((uint)(21)); + w216.XOptions = ((global::Gtk.AttachOptions)(4)); + w216.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 w216 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); - w216.TopAttach = ((uint)(3)); - w216.BottomAttach = ((uint)(4)); - w216.XOptions = ((global::Gtk.AttachOptions)(4)); - w216.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank5])); + w217.TopAttach = ((uint)(3)); + w217.BottomAttach = ((uint)(4)); + w217.XOptions = ((global::Gtk.AttachOptions)(4)); + w217.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 w217 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); - w217.TopAttach = ((uint)(16)); - w217.BottomAttach = ((uint)(17)); - w217.LeftAttach = ((uint)(10)); - w217.RightAttach = ((uint)(11)); - w217.XOptions = ((global::Gtk.AttachOptions)(4)); - w217.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank8])); + w218.TopAttach = ((uint)(16)); + w218.BottomAttach = ((uint)(17)); + w218.LeftAttach = ((uint)(10)); + w218.RightAttach = ((uint)(11)); + w218.XOptions = ((global::Gtk.AttachOptions)(4)); + w218.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.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 w218 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank9])); - w218.LeftAttach = ((uint)(10)); - w218.RightAttach = ((uint)(11)); - w218.XOptions = ((global::Gtk.AttachOptions)(4)); - w218.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblBlank9])); + w219.LeftAttach = ((uint)(10)); + w219.RightAttach = ((uint)(11)); + w219.XOptions = ((global::Gtk.AttachOptions)(4)); + w219.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblCoord1 = new global::Gtk.Label(); this.lblCoord1.WidthRequest = 50; @@ -2560,13 +2579,13 @@ namespace Mundus.Views.Windows this.lblCoord1.Name = "lblCoord1"; this.lblCoord1.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblCoord1); - global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); - w219.TopAttach = ((uint)(7)); - w219.BottomAttach = ((uint)(8)); - w219.LeftAttach = ((uint)(4)); - w219.RightAttach = ((uint)(5)); - w219.XOptions = ((global::Gtk.AttachOptions)(4)); - w219.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord1])); + w220.TopAttach = ((uint)(7)); + w220.BottomAttach = ((uint)(8)); + w220.LeftAttach = ((uint)(4)); + w220.RightAttach = ((uint)(5)); + w220.XOptions = ((global::Gtk.AttachOptions)(4)); + w220.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblCoord2 = new global::Gtk.Label(); this.lblCoord2.WidthRequest = 50; @@ -2574,13 +2593,13 @@ namespace Mundus.Views.Windows this.lblCoord2.Name = "lblCoord2"; this.lblCoord2.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblCoord2); - global::Gtk.Table.TableChild w220 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); - w220.TopAttach = ((uint)(7)); - w220.BottomAttach = ((uint)(8)); - w220.LeftAttach = ((uint)(5)); - w220.RightAttach = ((uint)(6)); - w220.XOptions = ((global::Gtk.AttachOptions)(4)); - w220.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblCoord2])); + w221.TopAttach = ((uint)(7)); + w221.BottomAttach = ((uint)(8)); + w221.LeftAttach = ((uint)(5)); + w221.RightAttach = ((uint)(6)); + w221.XOptions = ((global::Gtk.AttachOptions)(4)); + w221.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblEventLog = new global::Gtk.Label(); this.lblEventLog.WidthRequest = 50; @@ -2588,13 +2607,13 @@ namespace Mundus.Views.Windows this.lblEventLog.Name = "lblEventLog"; this.lblEventLog.LabelProp = "Event Log"; this.tbUI.Add(this.lblEventLog); - global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); - w221.TopAttach = ((uint)(11)); - w221.BottomAttach = ((uint)(12)); - w221.LeftAttach = ((uint)(8)); - w221.RightAttach = ((uint)(13)); - w221.XOptions = ((global::Gtk.AttachOptions)(4)); - w221.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblEventLog])); + w222.TopAttach = ((uint)(11)); + w222.BottomAttach = ((uint)(12)); + w222.LeftAttach = ((uint)(8)); + w222.RightAttach = ((uint)(13)); + w222.XOptions = ((global::Gtk.AttachOptions)(4)); + w222.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblGear = new global::Gtk.Label(); this.lblGear.HeightRequest = 50; @@ -2602,25 +2621,25 @@ namespace Mundus.Views.Windows this.lblGear.LabelProp = "Gear"; this.lblGear.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblGear); - global::Gtk.Table.TableChild w222 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); - w222.TopAttach = ((uint)(11)); - w222.BottomAttach = ((uint)(12)); - w222.LeftAttach = ((uint)(15)); - w222.RightAttach = ((uint)(20)); - w222.XOptions = ((global::Gtk.AttachOptions)(4)); - w222.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGear])); + w223.TopAttach = ((uint)(11)); + w223.BottomAttach = ((uint)(12)); + w223.LeftAttach = ((uint)(15)); + w223.RightAttach = ((uint)(20)); + w223.XOptions = ((global::Gtk.AttachOptions)(4)); + w223.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblGroundLayer = new global::Gtk.Label(); this.lblGroundLayer.Name = "lblGroundLayer"; this.lblGroundLayer.LabelProp = "Ground Layer"; this.tbUI.Add(this.lblGroundLayer); - global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); - w223.TopAttach = ((uint)(1)); - w223.BottomAttach = ((uint)(2)); - w223.LeftAttach = ((uint)(1)); - w223.RightAttach = ((uint)(6)); - w223.XOptions = ((global::Gtk.AttachOptions)(4)); - w223.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblGroundLayer])); + w224.TopAttach = ((uint)(1)); + w224.BottomAttach = ((uint)(2)); + w224.LeftAttach = ((uint)(1)); + w224.RightAttach = ((uint)(6)); + w224.XOptions = ((global::Gtk.AttachOptions)(4)); + w224.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblHoleMsg = new global::Gtk.Label(); this.lblHoleMsg.WidthRequest = 200; @@ -2629,13 +2648,13 @@ namespace Mundus.Views.Windows 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 w224 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleMsg])); - w224.TopAttach = ((uint)(15)); - w224.BottomAttach = ((uint)(16)); - w224.LeftAttach = ((uint)(1)); - w224.RightAttach = ((uint)(5)); - w224.XOptions = ((global::Gtk.AttachOptions)(4)); - w224.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleMsg])); + w225.TopAttach = ((uint)(15)); + w225.BottomAttach = ((uint)(16)); + w225.LeftAttach = ((uint)(1)); + w225.RightAttach = ((uint)(5)); + w225.XOptions = ((global::Gtk.AttachOptions)(4)); + w225.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblHoleOnTop = new global::Gtk.Label(); this.lblHoleOnTop.WidthRequest = 50; @@ -2643,13 +2662,13 @@ namespace Mundus.Views.Windows this.lblHoleOnTop.Name = "lblHoleOnTop"; this.lblHoleOnTop.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblHoleOnTop); - global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleOnTop])); - w225.TopAttach = ((uint)(15)); - w225.BottomAttach = ((uint)(16)); - w225.LeftAttach = ((uint)(5)); - w225.RightAttach = ((uint)(6)); - w225.XOptions = ((global::Gtk.AttachOptions)(4)); - w225.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHoleOnTop])); + w226.TopAttach = ((uint)(15)); + w226.BottomAttach = ((uint)(16)); + w226.LeftAttach = ((uint)(5)); + w226.RightAttach = ((uint)(6)); + w226.XOptions = ((global::Gtk.AttachOptions)(4)); + w226.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblHotbar = new global::Gtk.Label(); this.lblHotbar.WidthRequest = 50; @@ -2657,13 +2676,13 @@ namespace Mundus.Views.Windows this.lblHotbar.Name = "lblHotbar"; this.lblHotbar.LabelProp = "Hotbar"; this.tbUI.Add(this.lblHotbar); - global::Gtk.Table.TableChild w226 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); - w226.TopAttach = ((uint)(9)); - w226.BottomAttach = ((uint)(10)); - w226.LeftAttach = ((uint)(8)); - w226.RightAttach = ((uint)(13)); - w226.XOptions = ((global::Gtk.AttachOptions)(4)); - w226.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblHotbar])); + w227.TopAttach = ((uint)(9)); + w227.BottomAttach = ((uint)(10)); + w227.LeftAttach = ((uint)(8)); + w227.RightAttach = ((uint)(13)); + w227.XOptions = ((global::Gtk.AttachOptions)(4)); + w227.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblInfo = new global::Gtk.Label(); this.lblInfo.WidthRequest = 250; @@ -2672,77 +2691,85 @@ namespace Mundus.Views.Windows this.lblInfo.Wrap = true; this.lblInfo.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblInfo); - global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); - w227.TopAttach = ((uint)(15)); - w227.BottomAttach = ((uint)(16)); - w227.LeftAttach = ((uint)(15)); - w227.RightAttach = ((uint)(20)); - w227.XOptions = ((global::Gtk.AttachOptions)(4)); - w227.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblInfo])); + w228.TopAttach = ((uint)(15)); + w228.BottomAttach = ((uint)(16)); + w228.LeftAttach = ((uint)(15)); + w228.RightAttach = ((uint)(20)); + w228.XOptions = ((global::Gtk.AttachOptions)(4)); + w228.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblItemLayer = new global::Gtk.Label(); this.lblItemLayer.Name = "lblItemLayer"; this.lblItemLayer.LabelProp = "Structure Layer"; this.tbUI.Add(this.lblItemLayer); - global::Gtk.Table.TableChild w228 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); - w228.TopAttach = ((uint)(9)); - w228.BottomAttach = ((uint)(10)); - w228.LeftAttach = ((uint)(1)); - w228.RightAttach = ((uint)(6)); - w228.XOptions = ((global::Gtk.AttachOptions)(4)); - w228.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblItemLayer])); + w229.TopAttach = ((uint)(9)); + w229.BottomAttach = ((uint)(10)); + w229.LeftAttach = ((uint)(1)); + w229.RightAttach = ((uint)(6)); + w229.XOptions = ((global::Gtk.AttachOptions)(4)); + w229.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog1 = new global::Gtk.Label(); + this.lblLog1.WidthRequest = 250; this.lblLog1.HeightRequest = 50; this.lblLog1.Name = "lblLog1"; - this.lblLog1.LabelProp = "label6"; + this.lblLog1.LabelProp = "ERROR"; + this.lblLog1.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblLog1); - global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); - w229.TopAttach = ((uint)(12)); - w229.BottomAttach = ((uint)(13)); - w229.LeftAttach = ((uint)(8)); - w229.RightAttach = ((uint)(13)); - w229.XOptions = ((global::Gtk.AttachOptions)(4)); - w229.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w230 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog1])); + w230.TopAttach = ((uint)(12)); + w230.BottomAttach = ((uint)(13)); + w230.LeftAttach = ((uint)(8)); + w230.RightAttach = ((uint)(13)); + w230.XOptions = ((global::Gtk.AttachOptions)(4)); + w230.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog2 = new global::Gtk.Label(); + this.lblLog2.WidthRequest = 250; this.lblLog2.HeightRequest = 50; this.lblLog2.Name = "lblLog2"; - this.lblLog2.LabelProp = "label7"; + this.lblLog2.LabelProp = "ERROR"; + this.lblLog2.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblLog2); - global::Gtk.Table.TableChild w230 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); - w230.TopAttach = ((uint)(13)); - w230.BottomAttach = ((uint)(14)); - w230.LeftAttach = ((uint)(8)); - w230.RightAttach = ((uint)(13)); - w230.XOptions = ((global::Gtk.AttachOptions)(4)); - w230.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog2])); + w231.TopAttach = ((uint)(13)); + w231.BottomAttach = ((uint)(14)); + w231.LeftAttach = ((uint)(8)); + w231.RightAttach = ((uint)(13)); + w231.XOptions = ((global::Gtk.AttachOptions)(4)); + w231.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog3 = new global::Gtk.Label(); + this.lblLog3.WidthRequest = 250; this.lblLog3.HeightRequest = 50; this.lblLog3.Name = "lblLog3"; - this.lblLog3.LabelProp = "label7"; + this.lblLog3.LabelProp = "ERROR"; + this.lblLog3.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblLog3); - global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); - w231.TopAttach = ((uint)(14)); - w231.BottomAttach = ((uint)(15)); - w231.LeftAttach = ((uint)(8)); - w231.RightAttach = ((uint)(13)); - w231.XOptions = ((global::Gtk.AttachOptions)(4)); - w231.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w232 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog3])); + w232.TopAttach = ((uint)(14)); + w232.BottomAttach = ((uint)(15)); + w232.LeftAttach = ((uint)(8)); + w232.RightAttach = ((uint)(13)); + w232.XOptions = ((global::Gtk.AttachOptions)(4)); + w232.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblLog4 = new global::Gtk.Label(); + this.lblLog4.WidthRequest = 250; this.lblLog4.HeightRequest = 50; this.lblLog4.Name = "lblLog4"; - this.lblLog4.LabelProp = "label7"; + this.lblLog4.LabelProp = "ERROR"; + this.lblLog4.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblLog4); - global::Gtk.Table.TableChild w232 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); - w232.TopAttach = ((uint)(15)); - w232.BottomAttach = ((uint)(16)); - w232.LeftAttach = ((uint)(8)); - w232.RightAttach = ((uint)(13)); - w232.XOptions = ((global::Gtk.AttachOptions)(4)); - w232.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w233 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblLog4])); + w233.TopAttach = ((uint)(15)); + w233.BottomAttach = ((uint)(16)); + w233.LeftAttach = ((uint)(8)); + w233.RightAttach = ((uint)(13)); + w233.XOptions = ((global::Gtk.AttachOptions)(4)); + w233.YOptions = ((global::Gtk.AttachOptions)(4)); // Container child tbUI.Gtk.Table+TableChild this.lblSuperLayer = new global::Gtk.Label(); this.lblSuperLayer.WidthRequest = 100; @@ -2750,13 +2777,13 @@ namespace Mundus.Views.Windows this.lblSuperLayer.Name = "lblSuperLayer"; this.lblSuperLayer.Justify = ((global::Gtk.Justification)(2)); this.tbUI.Add(this.lblSuperLayer); - global::Gtk.Table.TableChild w233 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblSuperLayer])); - w233.TopAttach = ((uint)(7)); - w233.BottomAttach = ((uint)(8)); - w233.LeftAttach = ((uint)(1)); - w233.RightAttach = ((uint)(3)); - w233.XOptions = ((global::Gtk.AttachOptions)(4)); - w233.YOptions = ((global::Gtk.AttachOptions)(4)); + global::Gtk.Table.TableChild w234 = ((global::Gtk.Table.TableChild)(this.tbUI[this.lblSuperLayer])); + w234.TopAttach = ((uint)(7)); + w234.BottomAttach = ((uint)(8)); + w234.LeftAttach = ((uint)(1)); + w234.RightAttach = ((uint)(3)); + w234.XOptions = ((global::Gtk.AttachOptions)(4)); + w234.YOptions = ((global::Gtk.AttachOptions)(4)); this.Add(this.tbUI); if ((this.Child != null)) { @@ -2794,6 +2821,7 @@ namespace Mundus.Views.Windows this.btnP1.Clicked += new global::System.EventHandler(this.OnBtnP1Clicked); this.btnMusic.Clicked += new global::System.EventHandler(this.OnBtnMusicClicked); this.btnMap.Clicked += new global::System.EventHandler(this.OnBtnMapClicked); + this.btnLog.Clicked += new global::System.EventHandler(this.OnBtnLogClicked); this.btnInv.Clicked += new global::System.EventHandler(this.OnBtnInvClicked); this.btnIG2.Clicked += new global::System.EventHandler(this.OnBtnIG2Clicked); this.btnIG1.Clicked += new global::System.EventHandler(this.OnBtnIG1Clicked); diff --git a/Mundus/gtk-gui/gui.stetic b/Mundus/gtk-gui/gui.stetic index 0b91a2b..2105dd7 100644 --- a/Mundus/gtk-gui/gui.stetic +++ b/Mundus/gtk-gui/gui.stetic @@ -2690,6 +2690,34 @@ </packing> </child> <child> + <widget class="Gtk.Button" id="btnLog"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="CanFocus">True</property> + <property name="Type">TextOnly</property> + <property name="Label">Event Log</property> + <property name="UseUnderline">True</property> + <property name="FocusOnClick">False</property> + <signal name="Clicked" handler="OnBtnLogClicked" /> + </widget> + <packing> + <property name="TopAttach">11</property> + <property name="BottomAttach">12</property> + <property name="LeftAttach">8</property> + <property name="RightAttach">13</property> + <property name="AutoSize">True</property> + <property name="XOptions">0</property> + <property name="YOptions">Fill</property> + <property name="XExpand">False</property> + <property name="XFill">False</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="btnMap"> <property name="MemberName" /> <property name="WidthRequest">50</property> @@ -5178,8 +5206,10 @@ <child> <widget class="Gtk.Label" id="lblLog1"> <property name="MemberName" /> + <property name="WidthRequest">250</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> + <property name="LabelProp">ERROR</property> + <property name="Justify">Center</property> </widget> <packing> <property name="TopAttach">12</property> @@ -5200,8 +5230,10 @@ <child> <widget class="Gtk.Label" id="lblLog2"> <property name="MemberName" /> + <property name="WidthRequest">250</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label7</property> + <property name="LabelProp">ERROR</property> + <property name="Justify">Center</property> </widget> <packing> <property name="TopAttach">13</property> @@ -5222,8 +5254,10 @@ <child> <widget class="Gtk.Label" id="lblLog3"> <property name="MemberName" /> + <property name="WidthRequest">250</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label7</property> + <property name="LabelProp">ERROR</property> + <property name="Justify">Center</property> </widget> <packing> <property name="TopAttach">14</property> @@ -5244,8 +5278,10 @@ <child> <widget class="Gtk.Label" id="lblLog4"> <property name="MemberName" /> + <property name="WidthRequest">250</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label7</property> + <property name="LabelProp">ERROR</property> + <property name="Justify">Center</property> </widget> <packing> <property name="TopAttach">15</property> @@ -8107,6 +8143,34 @@ </packing> </child> <child> + <widget class="Gtk.Button" id="btnLog"> + <property name="MemberName" /> + <property name="WidthRequest">350</property> + <property name="HeightRequest">50</property> + <property name="CanFocus">True</property> + <property name="Type">TextOnly</property> + <property name="Label">Event Log</property> + <property name="UseUnderline">True</property> + <property name="FocusOnClick">False</property> + <signal name="Clicked" handler="OnBtnLogClicked" /> + </widget> + <packing> + <property name="TopAttach">13</property> + <property name="BottomAttach">14</property> + <property name="LeftAttach">10</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="btnMap"> <property name="MemberName" /> <property name="WidthRequest">50</property> @@ -12265,29 +12329,6 @@ </packing> </child> <child> - <widget class="Gtk.Label" id="lblEventLog"> - <property name="MemberName" /> - <property name="WidthRequest">50</property> - <property name="HeightRequest">50</property> - <property name="LabelProp">Event Log</property> - </widget> - <packing> - <property name="TopAttach">13</property> - <property name="BottomAttach">14</property> - <property name="LeftAttach">10</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.Label" id="lblGear"> <property name="MemberName" /> <property name="HeightRequest">50</property> @@ -12452,8 +12493,8 @@ <child> <widget class="Gtk.Label" id="lblLog1"> <property name="MemberName" /> + <property name="WidthRequest">350</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">14</property> @@ -12474,8 +12515,8 @@ <child> <widget class="Gtk.Label" id="lblLog2"> <property name="MemberName" /> + <property name="WidthRequest">350</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">15</property> @@ -12496,8 +12537,8 @@ <child> <widget class="Gtk.Label" id="lblLog3"> <property name="MemberName" /> + <property name="WidthRequest">350</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">16</property> @@ -12518,8 +12559,8 @@ <child> <widget class="Gtk.Label" id="lblLog4"> <property name="MemberName" /> + <property name="WidthRequest">350</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">17</property> @@ -12540,8 +12581,8 @@ <child> <widget class="Gtk.Label" id="lblLog5"> <property name="MemberName" /> + <property name="WidthRequest">350</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">18</property> @@ -12562,8 +12603,8 @@ <child> <widget class="Gtk.Label" id="lblLog6"> <property name="MemberName" /> + <property name="WidthRequest">350</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">19</property> @@ -16749,6 +16790,34 @@ </packing> </child> <child> + <widget class="Gtk.Button" id="btnLog"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="CanFocus">True</property> + <property name="Type">TextOnly</property> + <property name="Label">Event Log</property> + <property name="UseUnderline">True</property> + <property name="FocusOnClick">False</property> + <signal name="Clicked" handler="OnBtnLogClicked" /> + </widget> + <packing> + <property name="TopAttach">15</property> + <property name="BottomAttach">16</property> + <property name="LeftAttach">12</property> + <property name="RightAttach">21</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="btnMap"> <property name="MemberName" /> <property name="WidthRequest">50</property> @@ -23299,29 +23368,6 @@ </packing> </child> <child> - <widget class="Gtk.Label" id="lblEventLog"> - <property name="MemberName" /> - <property name="WidthRequest">50</property> - <property name="HeightRequest">50</property> - <property name="LabelProp">Event Log</property> - </widget> - <packing> - <property name="TopAttach">15</property> - <property name="BottomAttach">16</property> - <property name="LeftAttach">12</property> - <property name="RightAttach">21</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.Label" id="lblGear"> <property name="MemberName" /> <property name="HeightRequest">50</property> @@ -23486,8 +23532,8 @@ <child> <widget class="Gtk.Label" id="lblLog1"> <property name="MemberName" /> + <property name="WidthRequest">450</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">16</property> @@ -23508,8 +23554,8 @@ <child> <widget class="Gtk.Label" id="lblLog2"> <property name="MemberName" /> + <property name="WidthRequest">450</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">17</property> @@ -23530,8 +23576,8 @@ <child> <widget class="Gtk.Label" id="lblLog3"> <property name="MemberName" /> + <property name="WidthRequest">450</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">18</property> @@ -23552,8 +23598,8 @@ <child> <widget class="Gtk.Label" id="lblLog4"> <property name="MemberName" /> + <property name="WidthRequest">450</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">19</property> @@ -23574,8 +23620,8 @@ <child> <widget class="Gtk.Label" id="lblLog5"> <property name="MemberName" /> + <property name="WidthRequest">450</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">20</property> @@ -23596,8 +23642,8 @@ <child> <widget class="Gtk.Label" id="lblLog6"> <property name="MemberName" /> + <property name="WidthRequest">450</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">21</property> @@ -23618,8 +23664,8 @@ <child> <widget class="Gtk.Label" id="lblLog7"> <property name="MemberName" /> + <property name="WidthRequest">450</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">22</property> @@ -23640,8 +23686,8 @@ <child> <widget class="Gtk.Label" id="lblLog8"> <property name="MemberName" /> + <property name="WidthRequest">450</property> <property name="HeightRequest">50</property> - <property name="LabelProp">label6</property> </widget> <packing> <property name="TopAttach">23</property> @@ -25278,4 +25324,271 @@ </widget> </child> </widget> + <widget class="Gtk.Window" id="Mundus.Views.Windows.LogWindow" design-size="310 450"> + <property name="MemberName" /> + <property name="Title">LogWindow</property> + <property name="WindowPosition">CenterOnParent</property> + <property name="Resizable">False</property> + <property name="AllowGrow">False</property> + <signal name="DeleteEvent" handler="OnDeleteEvent" /> + <child> + <widget class="Gtk.Table" id="tbUI"> + <property name="MemberName" /> + <property name="NRows">9</property> + <property name="NColumns">2</property> + <child> + <placeholder /> + </child> + <child> + <widget class="Gtk.Button" id="btnNewer"> + <property name="MemberName" /> + <property name="WidthRequest">60</property> + <property name="HeightRequest">50</property> + <property name="CanFocus">True</property> + <property name="Type">TextOnly</property> + <property name="Label">Newer</property> + <property name="UseUnderline">True</property> + <signal name="Clicked" handler="OnBtnNewerClicked" /> + </widget> + <packing> + <property name="BottomAttach">4</property> + <property name="LeftAttach">1</property> + <property name="RightAttach">2</property> + <property name="AutoSize">True</property> + <property name="XOptions">Fill</property> + <property name="YOptions">Fill</property> + <property name="XExpand">False</property> + <property name="XFill">True</property> + <property name="XShrink">False</property> + <property name="YExpand">False</property> + <property name="YFill">True</property> + <property name="YShrink">False</property> + </packing> + </child> + <child> + <widget class="Gtk.Button" id="btnOlder"> + <property name="MemberName" /> + <property name="WidthRequest">60</property> + <property name="HeightRequest">50</property> + <property name="CanFocus">True</property> + <property name="Type">TextOnly</property> + <property name="Label">Older</property> + <property name="UseUnderline">True</property> + <signal name="Clicked" handler="OnBtnOlderClicked" /> + </widget> + <packing> + <property name="TopAttach">5</property> + <property name="BottomAttach">9</property> + <property name="LeftAttach">1</property> + <property name="RightAttach">2</property> + <property name="AutoSize">True</property> + <property name="XOptions">Fill</property> + <property name="YOptions">Fill</property> + <property name="XExpand">False</property> + <property name="XFill">True</property> + <property name="XShrink">False</property> + <property name="YExpand">False</property> + <property name="YFill">True</property> + <property name="YShrink">False</property> + </packing> + </child> + <child> + <widget class="Gtk.Label" id="lblLog1"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="Wrap">True</property> + <property name="Justify">Center</property> + </widget> + <packing> + <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.Label" id="lblLog2"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="Wrap">True</property> + <property name="Justify">Center</property> + </widget> + <packing> + <property name="TopAttach">1</property> + <property name="BottomAttach">2</property> + <property name="AutoSize">True</property> + <property name="XOptions">Fill</property> + <property name="YOptions">Fill</property> + <property name="XExpand">False</property> + <property name="XFill">True</property> + <property name="XShrink">False</property> + <property name="YExpand">False</property> + <property name="YFill">True</property> + <property name="YShrink">False</property> + </packing> + </child> + <child> + <widget class="Gtk.Label" id="lblLog3"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="Wrap">True</property> + <property name="Justify">Center</property> + </widget> + <packing> + <property name="TopAttach">2</property> + <property name="BottomAttach">3</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.Label" id="lblLog4"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="Wrap">True</property> + <property name="Justify">Center</property> + </widget> + <packing> + <property name="TopAttach">3</property> + <property name="BottomAttach">4</property> + <property name="AutoSize">True</property> + <property name="XOptions">Fill</property> + <property name="YOptions">Fill</property> + <property name="XExpand">False</property> + <property name="XFill">True</property> + <property name="XShrink">False</property> + <property name="YExpand">False</property> + <property name="YFill">True</property> + <property name="YShrink">False</property> + </packing> + </child> + <child> + <widget class="Gtk.Label" id="lblLog5"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="Wrap">True</property> + <property name="Justify">Center</property> + </widget> + <packing> + <property name="TopAttach">4</property> + <property name="BottomAttach">5</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.Label" id="lblLog6"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="Wrap">True</property> + <property name="Justify">Center</property> + </widget> + <packing> + <property name="TopAttach">5</property> + <property name="BottomAttach">6</property> + <property name="AutoSize">True</property> + <property name="XOptions">Fill</property> + <property name="YOptions">Fill</property> + <property name="XExpand">False</property> + <property name="XFill">True</property> + <property name="XShrink">False</property> + <property name="YExpand">False</property> + <property name="YFill">True</property> + <property name="YShrink">False</property> + </packing> + </child> + <child> + <widget class="Gtk.Label" id="lblLog7"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="Wrap">True</property> + <property name="Justify">Center</property> + </widget> + <packing> + <property name="TopAttach">6</property> + <property name="BottomAttach">7</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.Label" id="lblLog8"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="Wrap">True</property> + <property name="Justify">Center</property> + </widget> + <packing> + <property name="TopAttach">7</property> + <property name="BottomAttach">8</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.Label" id="lblLog9"> + <property name="MemberName" /> + <property name="WidthRequest">250</property> + <property name="HeightRequest">50</property> + <property name="Wrap">True</property> + <property name="Justify">Center</property> + </widget> + <packing> + <property name="TopAttach">8</property> + <property name="BottomAttach">9</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> + </widget> + </child> + </widget> </stetic-interface>
\ No newline at end of file |
