private void InitializeToolButton ()
		{
			toolButton =
					new ToolMenuButton (Note.Window.Toolbar,
										new Gtk.Image (NotebookIcon),
										string.Empty, menu);
			toolButton.IsImportant = true;
			toolButton.Homogeneous = false;
			Gtk.Tooltips toolbarTips = new Gtk.Tooltips ();
			toolbarTips.SetTip (toolButton, Catalog.GetString ("Place this note into a notebook"), null);
			
			// Set the notebook submenu
			menu.Shown += OnMenuShown;
			toolButton.ShowAll ();
			AddToolItem (toolButton, -1);
			UpdateNotebookButtonLabel ();
			
			NotebookManager.NoteAddedToNotebook += OnNoteAddedToNotebook;
			NotebookManager.NoteRemovedFromNotebook += OnNoteRemovedFromNotebook;


			Note.TagAdded += delegate (Note taggedNote, Tag tag) {
				if (taggedNote == Note && tag == TemplateTag)
					UpdateButtonSensitivity (true);
			};

			// TODO: Make sure this is handled in NotebookNoteAddin, too
			Note.TagRemoved += delegate (Note taggedNote, string tag) {
				if (taggedNote == Note && tag == TemplateTag.NormalizedName)
					UpdateButtonSensitivity (false);
			};
		}
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("MainWindow");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.gtkBtn = new global::Gtk.Button();
     global::Gtk.Tooltips w1 = new Gtk.Tooltips();
     w1.SetTip(this.gtkBtn, "Native Button", "Native Button");
     this.gtkBtn.CanFocus     = true;
     this.gtkBtn.Name         = "gtkBtn";
     this.gtkBtn.UseUnderline = true;
     this.gtkBtn.Label        = global::Mono.Unix.Catalog.GetString("GtkButton");
     this.vbox1.Add(this.gtkBtn);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.gtkBtn]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     this.Add(this.vbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 800;
     this.DefaultHeight = 600;
     this.Show();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
 }
Example #3
0
        public void Initialize(PropertyDescriptor prop)
        {
            if (!prop.PropertyType.IsEnum)
            {
                throw new ApplicationException("Enumeration editor does not support editing values of type " + prop.PropertyType);
            }

            ebox = new Gtk.EventBox();
            ebox.Show();
            PackStart(ebox, true, true, 0);

            combo                     = Gtk.ComboBoxEntry.NewText();
            combo.Changed            += combo_Changed;
            combo.Entry.IsEditable    = false;
            combo.Entry.HasFrame      = false;
            combo.Entry.HeightRequest = combo.SizeRequest().Height;                     // The combo does not set the entry to the correct size when it does not have a frame
            combo.Show();
            ebox.Add(combo);

            tips = new Gtk.Tooltips();

            enm = Registry.LookupEnum(prop.PropertyType.FullName);
            foreach (Enum value in enm.Values)
            {
                combo.AppendText(enm[value].Label);
            }
        }
Example #4
0
        public TomboyPanelAppletEventBox(NoteManager manager)
            : base()
        {
            this.manager = manager;
            tray         = new TomboyTray(manager, this);

            // Load a 16x16-sized icon to ensure we don't end up with a
            // 1x1 pixel.
            panel_size = 16;
            // Load Icon to display in the panel.
            // First we try the "tomboy-panel" icon. This icon can be replaced
            // by the user's icon theme. If the theme does not have this icon
            // then we fall back to the Tomboy Menu icon named "tomboy".
            var icon = GuiUtils.GetIcon("tomboy-panel", panel_size) ??
                       GuiUtils.GetIcon("tomboy", panel_size);

            this.image = new Gtk.Image(icon);

            this.CanFocus          = true;
            this.ButtonPressEvent += ButtonPress;
            this.Add(image);
            this.ShowAll();

            string tip_text = TomboyTrayUtils.GetToolTipText();

            tips = new Gtk.Tooltips();
            tips.SetTip(this, tip_text, null);
            tips.Enable();
            tips.Sink();

            SetupDragAndDrop();
        }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget Osobni_Troškovnik.NovaKategorijaWidow
     this.WidthRequest   = 300;
     this.HeightRequest  = 100;
     this.Name           = "Osobni_Troškovnik.NovaKategorijaWidow";
     this.Title          = global::Mono.Unix.Catalog.GetString("Dodaj novu kategoriju");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Modal          = true;
     this.BorderWidth    = ((uint)(15));
     this.Resizable      = false;
     // Container child Osobni_Troškovnik.NovaKategorijaWidow.Gtk.Container+ContainerChild
     this.vbox1             = new global::Gtk.VBox();
     this.vbox1.Name        = "vbox1";
     this.vbox1.Homogeneous = true;
     this.vbox1.Spacing     = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.novaKategorija = new global::Gtk.Entry();
     global::Gtk.Tooltips w1 = new Gtk.Tooltips();
     w1.SetTip(this.novaKategorija, "Naziv nove kategorije, do 20 znakova", "Naziv nove kategorije, do 20 znakova");
     this.novaKategorija.CanFocus      = true;
     this.novaKategorija.Name          = "novaKategorija";
     this.novaKategorija.IsEditable    = true;
     this.novaKategorija.InvisibleChar = '●';
     this.vbox1.Add(this.novaKategorija);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.novaKategorija]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     w2.Padding  = ((uint)(15));
     // Container child vbox1.Gtk.Box+BoxChild
     this.spremi              = new global::Gtk.Button();
     this.spremi.CanFocus     = true;
     this.spremi.Name         = "spremi";
     this.spremi.UseUnderline = true;
     this.spremi.Label        = global::Mono.Unix.Catalog.GetString("     Spremi");
     global::Gtk.Image w3 = new global::Gtk.Image();
     w3.Pixbuf         = global::Stetic.IconLoader.LoadIcon(this, "gtk-save", global::Gtk.IconSize.Menu);
     this.spremi.Image = w3;
     this.vbox1.Add(this.spremi);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.spremi]));
     w4.Position = 1;
     w4.Expand   = false;
     w4.Fill     = false;
     this.Add(this.vbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 353;
     this.DefaultHeight = 150;
     this.Show();
     this.KeyReleaseEvent += new global::Gtk.KeyReleaseEventHandler(this.KeyPress);
     this.spremi.Clicked  += new global::System.EventHandler(this.spremiKategorijuClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget ToonBoomExportGUI.XStageListTab
     global::Stetic.BinContainer.Attach(this);
     this.Name = "ToonBoomExportGUI.XStageListTab";
     // Container child ToonBoomExportGUI.XStageListTab.Gtk.Container+ContainerChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.FileTree          = new global::Gtk.NodeView();
     this.FileTree.CanFocus = true;
     this.FileTree.Name     = "FileTree";
     this.GtkScrolledWindow.Add(this.FileTree);
     this.vbox1.Add(this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.GtkScrolledWindow]));
     w2.Position = 0;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbuttonbox7             = new global::Gtk.HButtonBox();
     this.hbuttonbox7.Name        = "hbuttonbox7";
     this.hbuttonbox7.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(3));
     // Container child hbuttonbox7.Gtk.ButtonBox+ButtonBoxChild
     this.AddButton = new global::Gtk.Button();
     global::Gtk.Tooltips w3 = new Gtk.Tooltips();
     w3.SetTip(this.AddButton, "Add this file to the currently selected export list.", "Add this file to the currently selected export list.");
     this.AddButton.CanFocus     = true;
     this.AddButton.Name         = "AddButton";
     this.AddButton.UseUnderline = true;
     global::Gtk.Image w4 = new global::Gtk.Image();
     w4.Pixbuf            = global::Stetic.IconLoader.LoadIcon(this, "gtk-add", global::Gtk.IconSize.Menu);
     this.AddButton.Image = w4;
     this.hbuttonbox7.Add(this.AddButton);
     global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.hbuttonbox7[this.AddButton]));
     w5.Expand = false;
     w5.Fill   = false;
     this.vbox1.Add(this.hbuttonbox7);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbuttonbox7]));
     w6.Position = 1;
     w6.Expand   = false;
     w6.Fill     = false;
     this.Add(this.vbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Hide();
 }
Example #7
0
        public Gtk.Label AddSnippet()
        {
            AddNewLine();

            snippet = WidgetFu.NewLabel();
            snippet.SetAlignment(0.0f, 0.0f);
            snippet.Selectable = true;
            WidgetFu.EllipsizeLabel(snippet);
            snippet.Show();
            Attach(snippet, 1, 2, current_row, ++current_row, expand, fill, 0, 0);
            maximized = false;

            snippet_tip = new Gtk.Tooltips();

            return(snippet);
        }
Example #8
0
        private void InitializeToolButton()
        {
            toolButton =
                new ToolMenuButton(Note.Window.Toolbar,
                                   new Gtk.Image(NotebookIcon),
                                   string.Empty, menu);
            toolButton.IsImportant = true;
            toolButton.Homogeneous = false;
            Gtk.Tooltips toolbarTips = new Gtk.Tooltips();
            toolbarTips.SetTip(toolButton, Catalog.GetString("Place this note into a notebook"), null);

            // Set the notebook submenu
            menu.Shown += OnMenuShown;
            toolButton.ShowAll();
            AddToolItem(toolButton, -1);
            UpdateNotebookButtonLabel();

            NotebookManager.NoteAddedToNotebook     += OnNoteAddedToNotebook;
            NotebookManager.NoteRemovedFromNotebook += OnNoteRemovedFromNotebook;
        }
Example #9
0
        private void InitializeToolButton()
        {
            toolButton =
                new ToolMenuButton(Note.Window.Toolbar,
                                   new Gtk.Image(NotebookIcon),
                                   string.Empty, menu);
            toolButton.IsImportant = true;
            toolButton.Homogeneous = false;
            Gtk.Tooltips toolbarTips = new Gtk.Tooltips();
            toolbarTips.SetTip(toolButton, Catalog.GetString("Place this note into a notebook"), null);

            // Set the notebook submenu
            menu.Shown += OnMenuShown;
            toolButton.ShowAll();
            AddToolItem(toolButton, -1);
            UpdateNotebookButtonLabel();

            NotebookManager.NoteAddedToNotebook     += OnNoteAddedToNotebook;
            NotebookManager.NoteRemovedFromNotebook += OnNoteRemovedFromNotebook;


            Note.TagAdded += delegate(Note taggedNote, Tag tag) {
                if (taggedNote == Note && tag == TemplateTag)
                {
                    UpdateButtonSensitivity(true);
                }
            };

            // TODO: Make sure this is handled in NotebookNoteAddin, too
            Note.TagRemoved += delegate(Note taggedNote, string tag) {
                if (taggedNote == Note && tag == TemplateTag.NormalizedName)
                {
                    UpdateButtonSensitivity(false);
                }
            };
        }
 public static void Build(object obj, string id)
 {
     System.Collections.Hashtable bindings = new System.Collections.Hashtable();
     if ((id == "SharpTranslator.ReversibleCombos")) {
         Gtk.Bin cobj = ((Gtk.Bin)(obj));
         // Widget SharpTranslator.ReversibleCombos
         BinContainer.Attach(cobj);
         cobj.Events = ((Gdk.EventMask)(256));
         cobj.Name = "SharpTranslator.ReversibleCombos";
         // Container child SharpTranslator.ReversibleCombos.Gtk.Container+ContainerChild
         Gtk.HBox w1 = new Gtk.HBox();
         w1.Spacing = 5;
         w1.BorderWidth = ((uint)(5));
         w1.Events = ((Gdk.EventMask)(0));
         w1.Name = "hbox1";
         // Container child hbox1.Gtk.Box+BoxChild
         Gtk.Label w2 = new Gtk.Label();
         w2.LabelProp = "Source:";
         w2.Events = ((Gdk.EventMask)(0));
         w2.Name = "labelSource";
         bindings["labelSource"] = w2;
         w1.Add(w2);
         Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(w1[w2]));
         w3.Position = 0;
         w3.Expand = false;
         w3.Fill = false;
         // Container child hbox1.Gtk.Box+BoxChild
         Gtk.ComboBox w4 = Gtk.ComboBox.NewText();
         w4.Events = ((Gdk.EventMask)(0));
         w4.Name = "comboSource";
         bindings["comboSource"] = w4;
         w1.Add(w4);
         Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(w1[w4]));
         w5.Position = 1;
         w5.Expand = false;
         w5.Fill = false;
         // Container child hbox1.Gtk.Box+BoxChild
         Gtk.VSeparator w6 = new Gtk.VSeparator();
         w6.Events = ((Gdk.EventMask)(0));
         w6.Name = "vseparator1";
         bindings["vseparator1"] = w6;
         w1.Add(w6);
         Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w1[w6]));
         w7.Position = 2;
         w7.Expand = false;
         w7.Fill = false;
         // Container child hbox1.Gtk.Box+BoxChild
         Gtk.CheckButton w8 = new Gtk.CheckButton();
         w8.Label = "reverse";
         w8.DrawIndicator = true;
         w8.BorderWidth = ((uint)(5));
         w8.CanFocus = true;
         w8.Events = ((Gdk.EventMask)(0));
         w8.Name = "checkbuttonReverse";
         bindings["checkbuttonReverse"] = w8;
         w1.Add(w8);
         Gtk.Box.BoxChild w9 = ((Gtk.Box.BoxChild)(w1[w8]));
         w9.Position = 3;
         w9.Expand = false;
         // Container child hbox1.Gtk.Box+BoxChild
         Gtk.VSeparator w10 = new Gtk.VSeparator();
         w10.Events = ((Gdk.EventMask)(0));
         w10.Name = "vseparator2";
         bindings["vseparator2"] = w10;
         w1.Add(w10);
         Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(w1[w10]));
         w11.Position = 4;
         w11.Expand = false;
         w11.Fill = false;
         // Container child hbox1.Gtk.Box+BoxChild
         Gtk.Label w12 = new Gtk.Label();
         w12.LabelProp = "Target:";
         w12.Events = ((Gdk.EventMask)(0));
         w12.Name = "labelTarget";
         bindings["labelTarget"] = w12;
         w1.Add(w12);
         Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(w1[w12]));
         w13.Position = 5;
         w13.Expand = false;
         w13.Fill = false;
         // Container child hbox1.Gtk.Box+BoxChild
         Gtk.ComboBox w14 = Gtk.ComboBox.NewText();
         w14.Events = ((Gdk.EventMask)(0));
         w14.Name = "comboTarget";
         bindings["comboTarget"] = w14;
         w1.Add(w14);
         Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(w1[w14]));
         w15.Position = 6;
         w15.Expand = false;
         w15.Fill = false;
         bindings["hbox1"] = w1;
         cobj.Add(w1);
         bindings["SharpTranslator.ReversibleCombos"] = cobj;
         w2.Show();
         w4.Show();
         w6.Show();
         w8.Show();
         w10.Show();
         w12.Show();
         w14.Show();
         w1.Show();
         cobj.Show();
     }
     else {
         if ((id == "SharpTranslator.AboutDialog")) {
             Gtk.Dialog cobj = ((Gtk.Dialog)(obj));
             // Widget SharpTranslator.AboutDialog
             cobj.Title = "AboutDialog";
             cobj.WindowPosition = ((Gtk.WindowPosition)(4));
             cobj.HasSeparator = false;
             cobj.Events = ((Gdk.EventMask)(256));
             cobj.Name = "SharpTranslator.AboutDialog";
             // Internal child SharpTranslator.AboutDialog.VBox
             Gtk.VBox w1 = cobj.VBox;
             w1.BorderWidth = ((uint)(2));
             w1.Events = ((Gdk.EventMask)(256));
             w1.Name = "dialog_VBox";
             // Container child dialog_VBox.Gtk.Box+BoxChild
             Gtk.TextView w2 = new Gtk.TextView();
             w2.Buffer.Text = "\n         SharpTranslator\n\n    Version 0.1.3  (October 2006)\n\n    License: GPL\n\n    Author: Carlos Ble <http://www.shidix.com/carlosble>\n\n    English-Spanish dictionary was taken from i2e:\n          (Alfredo Casademunt, Jose Luis Triviño)\n\n";
             w2.CanFocus = true;
             w2.Events = ((Gdk.EventMask)(0));
             w2.Name = "textview1";
             bindings["textview1"] = w2;
             w1.Add(w2);
             Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(w1[w2]));
             w3.Position = 0;
             // Container child dialog_VBox.Gtk.Box+BoxChild
             Gtk.HSeparator w4 = new Gtk.HSeparator();
             w4.Events = ((Gdk.EventMask)(0));
             w4.Name = "hseparator1";
             bindings["hseparator1"] = w4;
             w1.Add(w4);
             Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(w1[w4]));
             w5.Position = 1;
             w5.Expand = false;
             w5.Fill = false;
             bindings["dialog_VBox"] = w1;
             // Internal child SharpTranslator.AboutDialog.ActionArea
             Gtk.HButtonBox w6 = cobj.ActionArea;
             w6.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
             w6.Spacing = 10;
             w6.BorderWidth = ((uint)(5));
             w6.Events = ((Gdk.EventMask)(256));
             w6.Name = "SharpTranslator.AboutDialog_ActionArea";
             // Container child SharpTranslator.AboutDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild
             Gtk.Button w7 = new Gtk.Button();
             w7.CanFocus = true;
             w7.Events = ((Gdk.EventMask)(0));
             w7.Name = "buttonClose";
             w7.CanDefault = true;
             // Container child buttonClose.Gtk.Container+ContainerChild
             Gtk.Alignment w8 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
             w8.Events = ((Gdk.EventMask)(0));
             w8.Name = "GtkAlignment";
             // Container child GtkAlignment.Gtk.Container+ContainerChild
             Gtk.HBox w9 = new Gtk.HBox();
             w9.Spacing = 2;
             w9.Events = ((Gdk.EventMask)(0));
             w9.Name = "GtkHBox";
             // Container child GtkHBox.Gtk.Container+ContainerChild
             Gtk.Image w10 = new Gtk.Image();
             w10.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-close", 16, 0);
             w10.Events = ((Gdk.EventMask)(0));
             w10.Name = "image1";
             bindings["image1"] = w10;
             w9.Add(w10);
             // Container child GtkHBox.Gtk.Container+ContainerChild
             Gtk.Label w12 = new Gtk.Label();
             w12.LabelProp = "Close";
             w12.Events = ((Gdk.EventMask)(0));
             w12.Name = "GtkLabel";
             bindings["GtkLabel"] = w12;
             w9.Add(w12);
             bindings["GtkHBox"] = w9;
             w8.Add(w9);
             bindings["GtkAlignment"] = w8;
             w7.Add(w8);
             bindings["buttonClose"] = w7;
             cobj.AddActionWidget(w7, 0);
             Gtk.ButtonBox.ButtonBoxChild w16 = ((Gtk.ButtonBox.ButtonBoxChild)(w6[w7]));
             w16.Expand = false;
             w16.Fill = false;
             bindings["SharpTranslator.AboutDialog_ActionArea"] = w6;
             cobj.DefaultWidth = 487;
             cobj.DefaultHeight = 303;
             bindings["SharpTranslator.AboutDialog"] = cobj;
             w2.Show();
             w4.Show();
             w1.Show();
             w10.Show();
             w12.Show();
             w9.Show();
             w8.Show();
             w7.Show();
             w6.Show();
             cobj.Show();
             w7.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnClose")));
         }
         else {
             if ((id == "SharpTranslator.LearnWindow")) {
                 Gtk.Window cobj = ((Gtk.Window)(obj));
                 // Widget SharpTranslator.LearnWindow
                 cobj.Title = "LearnWindow";
                 cobj.WindowPosition = ((Gtk.WindowPosition)(1));
                 cobj.Resizable = false;
                 cobj.AllowGrow = false;
                 cobj.Events = ((Gdk.EventMask)(0));
                 cobj.Name = "SharpTranslator.LearnWindow";
                 // Container child SharpTranslator.LearnWindow.Gtk.Container+ContainerChild
                 Gtk.VBox w1 = new Gtk.VBox();
                 w1.Spacing = 5;
                 w1.BorderWidth = ((uint)(3));
                 w1.Events = ((Gdk.EventMask)(0));
                 w1.Name = "vbox1";
                 // Container child vbox1.Gtk.Box+BoxChild
                 Gtk.HBox w2 = new Gtk.HBox();
                 w2.BorderWidth = ((uint)(3));
                 w2.Events = ((Gdk.EventMask)(0));
                 w2.Name = "hbox5";
                 // Container child hbox5.Gtk.Box+BoxChild
                 Gtk.Label w3 = new Gtk.Label();
                 w3.LabelProp = "Type of item:";
                 w3.Events = ((Gdk.EventMask)(0));
                 w3.Name = "label1";
                 bindings["label1"] = w3;
                 w2.Add(w3);
                 Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w2[w3]));
                 w4.Position = 0;
                 w4.Expand = false;
                 w4.Fill = false;
                 // Container child hbox5.Gtk.Box+BoxChild
                 Gtk.HBox w5 = new Gtk.HBox();
                 w5.Events = ((Gdk.EventMask)(0));
                 w5.Name = "hbox4";
                 // Container child hbox4.Gtk.Box+BoxChild
                 Gtk.CheckButton w6 = new Gtk.CheckButton();
                 w6.Label = "Word";
                 w6.Active = true;
                 w6.DrawIndicator = true;
                 w6.CanFocus = true;
                 w6.Events = ((Gdk.EventMask)(0));
                 w6.Name = "checkbWord";
                 bindings["checkbWord"] = w6;
                 w5.Add(w6);
                 Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w5[w6]));
                 w7.Position = 0;
                 // Container child hbox4.Gtk.Box+BoxChild
                 Gtk.CheckButton w8 = new Gtk.CheckButton();
                 w8.Label = "Expression";
                 w8.DrawIndicator = true;
                 w8.CanFocus = true;
                 w8.Events = ((Gdk.EventMask)(0));
                 w8.Name = "checkbExpression";
                 bindings["checkbExpression"] = w8;
                 w5.Add(w8);
                 Gtk.Box.BoxChild w9 = ((Gtk.Box.BoxChild)(w5[w8]));
                 w9.Position = 1;
                 bindings["hbox4"] = w5;
                 w2.Add(w5);
                 Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(w2[w5]));
                 w10.Position = 1;
                 w10.Expand = false;
                 bindings["hbox5"] = w2;
                 w1.Add(w2);
                 Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(w1[w2]));
                 w11.Position = 0;
                 w11.Expand = false;
                 w11.Fill = false;
                 // Container child vbox1.Gtk.Box+BoxChild
                 SharpTranslator.ReversibleCombos w12 = new SharpTranslator.ReversibleCombos();
                 w12.Events = ((Gdk.EventMask)(256));
                 w12.Name = "rCombos";
                 bindings["rCombos"] = w12;
                 w1.Add(w12);
                 Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(w1[w12]));
                 w13.Position = 1;
                 w13.Expand = false;
                 w13.Fill = false;
                 // Container child vbox1.Gtk.Box+BoxChild
                 Gtk.HBox w14 = new Gtk.HBox();
                 w14.Spacing = 5;
                 w14.BorderWidth = ((uint)(3));
                 w14.Events = ((Gdk.EventMask)(0));
                 w14.Name = "hbox3";
                 // Container child hbox3.Gtk.Box+BoxChild
                 Gtk.Label w15 = new Gtk.Label();
                 w15.LabelProp = "Text:";
                 w15.Events = ((Gdk.EventMask)(0));
                 w15.Name = "labelText";
                 bindings["labelText"] = w15;
                 w14.Add(w15);
                 Gtk.Box.BoxChild w16 = ((Gtk.Box.BoxChild)(w14[w15]));
                 w16.Position = 0;
                 w16.Expand = false;
                 w16.Fill = false;
                 // Container child hbox3.Gtk.Box+BoxChild
                 Gtk.Entry w17 = new Gtk.Entry();
                 w17.IsEditable = true;
                 w17.InvisibleChar = '●';
                 w17.CanFocus = true;
                 w17.Events = ((Gdk.EventMask)(0));
                 w17.Name = "entryText";
                 bindings["entryText"] = w17;
                 w14.Add(w17);
                 Gtk.Box.BoxChild w18 = ((Gtk.Box.BoxChild)(w14[w17]));
                 w18.Position = 1;
                 // Container child hbox3.Gtk.Box+BoxChild
                 Gtk.Label w19 = new Gtk.Label();
                 w19.LabelProp = "Translation:";
                 w19.Events = ((Gdk.EventMask)(0));
                 w19.Name = "label3";
                 bindings["label3"] = w19;
                 w14.Add(w19);
                 Gtk.Box.BoxChild w20 = ((Gtk.Box.BoxChild)(w14[w19]));
                 w20.Position = 2;
                 w20.Expand = false;
                 w20.Fill = false;
                 // Container child hbox3.Gtk.Box+BoxChild
                 Gtk.Entry w21 = new Gtk.Entry();
                 w21.IsEditable = true;
                 w21.InvisibleChar = '●';
                 w21.CanFocus = true;
                 w21.Events = ((Gdk.EventMask)(0));
                 w21.Name = "entryTranslation";
                 bindings["entryTranslation"] = w21;
                 w14.Add(w21);
                 Gtk.Box.BoxChild w22 = ((Gtk.Box.BoxChild)(w14[w21]));
                 w22.Position = 3;
                 bindings["hbox3"] = w14;
                 w1.Add(w14);
                 Gtk.Box.BoxChild w23 = ((Gtk.Box.BoxChild)(w1[w14]));
                 w23.Position = 2;
                 w23.Expand = false;
                 w23.Fill = false;
                 // Container child vbox1.Gtk.Box+BoxChild
                 Gtk.HSeparator w24 = new Gtk.HSeparator();
                 w24.Events = ((Gdk.EventMask)(0));
                 w24.Name = "hseparator1";
                 bindings["hseparator1"] = w24;
                 w1.Add(w24);
                 Gtk.Box.BoxChild w25 = ((Gtk.Box.BoxChild)(w1[w24]));
                 w25.Position = 3;
                 w25.Expand = false;
                 w25.Fill = false;
                 // Container child vbox1.Gtk.Box+BoxChild
                 Gtk.HButtonBox w26 = new Gtk.HButtonBox();
                 w26.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
                 w26.Spacing = 3;
                 w26.BorderWidth = ((uint)(3));
                 w26.Events = ((Gdk.EventMask)(0));
                 w26.Name = "hbuttonbox1";
                 // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
                 Gtk.Button w27 = new Gtk.Button();
                 w27.CanFocus = true;
                 w27.Events = ((Gdk.EventMask)(0));
                 w27.Name = "buttonCancel";
                 // Container child buttonCancel.Gtk.Container+ContainerChild
                 Gtk.Alignment w28 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w28.Events = ((Gdk.EventMask)(0));
                 w28.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w29 = new Gtk.HBox();
                 w29.Spacing = 2;
                 w29.Events = ((Gdk.EventMask)(0));
                 w29.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w30 = new Gtk.Image();
                 w30.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-cancel", 16, 0);
                 w30.Events = ((Gdk.EventMask)(0));
                 w30.Name = "image2";
                 bindings["image2"] = w30;
                 w29.Add(w30);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w32 = new Gtk.Label();
                 w32.LabelProp = "Cancel";
                 w32.Events = ((Gdk.EventMask)(0));
                 w32.Name = "GtkLabel";
                 bindings["GtkLabel"] = w32;
                 w29.Add(w32);
                 bindings["GtkHBox"] = w29;
                 w28.Add(w29);
                 bindings["GtkAlignment"] = w28;
                 w27.Add(w28);
                 bindings["buttonCancel"] = w27;
                 w26.Add(w27);
                 Gtk.ButtonBox.ButtonBoxChild w36 = ((Gtk.ButtonBox.ButtonBoxChild)(w26[w27]));
                 w36.Expand = false;
                 w36.Fill = false;
                 // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
                 Gtk.Button w37 = new Gtk.Button();
                 w37.CanFocus = true;
                 w37.Events = ((Gdk.EventMask)(0));
                 w37.Name = "buttonAccept";
                 // Container child buttonAccept.Gtk.Container+ContainerChild
                 Gtk.Alignment w38 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w38.Events = ((Gdk.EventMask)(0));
                 w38.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w39 = new Gtk.HBox();
                 w39.Spacing = 2;
                 w39.Events = ((Gdk.EventMask)(0));
                 w39.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w40 = new Gtk.Image();
                 w40.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-ok", 16, 0);
                 w40.Events = ((Gdk.EventMask)(0));
                 w40.Name = "image3";
                 bindings["image3"] = w40;
                 w39.Add(w40);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w42 = new Gtk.Label();
                 w42.LabelProp = "Accept";
                 w42.Events = ((Gdk.EventMask)(0));
                 w42.Name = "GtkLabel";
                 bindings["GtkLabel"] = w42;
                 w39.Add(w42);
                 bindings["GtkHBox"] = w39;
                 w38.Add(w39);
                 bindings["GtkAlignment"] = w38;
                 w37.Add(w38);
                 bindings["buttonAccept"] = w37;
                 w26.Add(w37);
                 Gtk.ButtonBox.ButtonBoxChild w46 = ((Gtk.ButtonBox.ButtonBoxChild)(w26[w37]));
                 w46.Position = 1;
                 w46.Expand = false;
                 w46.Fill = false;
                 bindings["hbuttonbox1"] = w26;
                 w1.Add(w26);
                 Gtk.Box.BoxChild w47 = ((Gtk.Box.BoxChild)(w1[w26]));
                 w47.Position = 4;
                 w47.Expand = false;
                 w47.Fill = false;
                 bindings["vbox1"] = w1;
                 cobj.Add(w1);
                 cobj.DefaultWidth = 586;
                 cobj.DefaultHeight = 194;
                 bindings["SharpTranslator.LearnWindow"] = cobj;
                 w3.Show();
                 w6.Show();
                 w8.Show();
                 w5.Show();
                 w2.Show();
                 w12.Show();
                 w15.Show();
                 w17.Show();
                 w19.Show();
                 w21.Show();
                 w14.Show();
                 w24.Show();
                 w30.Show();
                 w32.Show();
                 w29.Show();
                 w28.Show();
                 w27.Show();
                 w40.Show();
                 w42.Show();
                 w39.Show();
                 w38.Show();
                 w37.Show();
                 w26.Show();
                 w1.Show();
                 cobj.Show();
                 cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnClose")));
                 w37.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnAccept")));
             }
             else {
                 if ((id == "SharpTranslator.MainWindow")) {
                     Gtk.Window cobj = ((Gtk.Window)(obj));
                     // Widget SharpTranslator.MainWindow
                     cobj.Title = "SharpTranslator";
                     Gtk.UIManager w1 = new Gtk.UIManager();
                     Gtk.ActionGroup w2 = new Gtk.ActionGroup("Default");
                     Gtk.Action w3 = new Gtk.Action("File", "File", null, null);
                     w3.ShortLabel = "Archivo";
                     bindings["File"] = w3;
                     w2.Add(w3, null);
                     Gtk.Action w4 = new Gtk.Action("Edit", "Edit", null, null);
                     w4.ShortLabel = "Editar";
                     bindings["Edit"] = w4;
                     w2.Add(w4, null);
                     Gtk.Action w5 = new Gtk.Action("Learn", "Learn", null, "gtk-new");
                     w5.ShortLabel = "Learn";
                     bindings["Learn"] = w5;
                     w2.Add(w5, null);
                     Gtk.Action w6 = new Gtk.Action("floppy", null, null, "gtk-floppy");
                     bindings["floppy"] = w6;
                     w2.Add(w6, null);
                     Gtk.Action w7 = new Gtk.Action("LearnWords", "Learn words", null, "gtk-new");
                     w7.ShortLabel = "Learn ";
                     bindings["LearnWords"] = w7;
                     w2.Add(w7, null);
                     Gtk.Action w8 = new Gtk.Action("AddLanguage", "Add Language", null, "gtk-add");
                     w8.ShortLabel = "Exit";
                     bindings["AddLanguage"] = w8;
                     w2.Add(w8, null);
                     Gtk.Action w9 = new Gtk.Action("Cut", "Cut", null, "gtk-cut");
                     w9.ShortLabel = "Cut";
                     bindings["Cut"] = w9;
                     w2.Add(w9, null);
                     Gtk.Action w10 = new Gtk.Action("Copy", "Copy", null, "gtk-copy");
                     w10.ShortLabel = "Copy";
                     bindings["Copy"] = w10;
                     w2.Add(w10, null);
                     Gtk.Action w11 = new Gtk.Action("Paste", "Paste", null, "gtk-paste");
                     w11.ShortLabel = "Paste";
                     bindings["Paste"] = w11;
                     w2.Add(w11, null);
                     Gtk.Action w12 = new Gtk.Action("Help", "Help", null, null);
                     w12.ShortLabel = "Help";
                     bindings["Help"] = w12;
                     w2.Add(w12, null);
                     Gtk.Action w13 = new Gtk.Action("About", "About", null, "gnome-stock-about");
                     w13.ShortLabel = "About";
                     bindings["About"] = w13;
                     w2.Add(w13, null);
                     Gtk.Action w14 = new Gtk.Action("ImportDictionary", "Import Dictionary", null, "gnome-stock-book-blue");
                     w14.ShortLabel = "Import Dictionary";
                     bindings["ImportDictionary"] = w14;
                     w2.Add(w14, null);
                     Gtk.Action w15 = new Gtk.Action("Preferences", "Preferences", null, "gtk-preferences");
                     w15.ShortLabel = "Preferences";
                     bindings["Preferences"] = w15;
                     w2.Add(w15, null);
                     Gtk.Action w16 = new Gtk.Action("Close", "Close", null, "gtk-close");
                     w16.ShortLabel = "Close";
                     bindings["Close"] = w16;
                     w2.Add(w16, null);
                     w1.InsertActionGroup(w2, 0);
                     cobj.AddAccelGroup(w1.AccelGroup);
                     cobj.Icon = Gtk.IconTheme.Default.LoadIcon("gtk-properties", 16, 0);
                     cobj.WindowPosition = ((Gtk.WindowPosition)(1));
                     cobj.DefaultWidth = 60;
                     cobj.Events = ((Gdk.EventMask)(0));
                     cobj.Name = "SharpTranslator.MainWindow";
                     // Container child SharpTranslator.MainWindow.Gtk.Container+ContainerChild
                     Gtk.VBox w17 = new Gtk.VBox();
                     w17.Events = ((Gdk.EventMask)(0));
                     w17.Name = "vbox1";
                     // Container child vbox1.Gtk.Box+BoxChild
                     w1.AddUiFromString("<ui><menubar name='menubar1'><menu action='File'><menuitem action='LearnWords'/><menuitem action='AddLanguage'/><menuitem action='ImportDictionary'/><menuitem action='Close'/></menu><menu action='Edit'><menuitem action='Cut'/><menuitem action='Copy'/><menuitem action='Paste'/><menuitem action='Preferences'/></menu><menu action='Help'><menuitem action='About'/></menu></menubar></ui>");
                     Gtk.MenuBar w18 = ((Gtk.MenuBar)(w1.GetWidget("/menubar1")));
                     w18.Events = ((Gdk.EventMask)(0));
                     w18.Name = "menubar1";
                     bindings["menubar1"] = w18;
                     w17.Add(w18);
                     Gtk.Box.BoxChild w19 = ((Gtk.Box.BoxChild)(w17[w18]));
                     w19.Position = 0;
                     w19.Expand = false;
                     w19.Fill = false;
                     // Container child vbox1.Gtk.Box+BoxChild
                     w1.AddUiFromString("<ui><toolbar name='toolbar1'><toolitem action='Learn'/></toolbar></ui>");
                     Gtk.Toolbar w20 = ((Gtk.Toolbar)(w1.GetWidget("/toolbar1")));
                     w20.ShowArrow = false;
                     w20.Tooltips = false;
                     w20.ToolbarStyle = ((Gtk.ToolbarStyle)(2));
                     w20.IconSize = ((Gtk.IconSize)(2));
                     w20.Events = ((Gdk.EventMask)(0));
                     w20.Name = "toolbar1";
                     bindings["toolbar1"] = w20;
                     w17.Add(w20);
                     Gtk.Box.BoxChild w21 = ((Gtk.Box.BoxChild)(w17[w20]));
                     w21.Position = 1;
                     w21.Expand = false;
                     w21.Fill = false;
                     // Container child vbox1.Gtk.Box+BoxChild
                     SharpTranslator.ReversibleCombos w22 = new SharpTranslator.ReversibleCombos();
                     w22.Events = ((Gdk.EventMask)(256));
                     w22.Name = "rCombos";
                     bindings["rCombos"] = w22;
                     w17.Add(w22);
                     Gtk.Box.BoxChild w23 = ((Gtk.Box.BoxChild)(w17[w22]));
                     w23.Position = 2;
                     w23.Expand = false;
                     w23.Fill = false;
                     // Container child vbox1.Gtk.Box+BoxChild
                     Gtk.ScrolledWindow w24 = new Gtk.ScrolledWindow();
                     w24.VscrollbarPolicy = ((Gtk.PolicyType)(1));
                     w24.HscrollbarPolicy = ((Gtk.PolicyType)(1));
                     w24.CanFocus = true;
                     w24.Events = ((Gdk.EventMask)(0));
                     w24.Name = "scrolledwindow1";
                     // Container child scrolledwindow1.Gtk.Container+ContainerChild
                     Gtk.TreeView w25 = new Gtk.TreeView();
                     w25.CanFocus = true;
                     w25.Events = ((Gdk.EventMask)(0));
                     w25.Name = "treeviewResults";
                     bindings["treeviewResults"] = w25;
                     w24.Add(w25);
                     bindings["scrolledwindow1"] = w24;
                     w17.Add(w24);
                     Gtk.Box.BoxChild w27 = ((Gtk.Box.BoxChild)(w17[w24]));
                     w27.Position = 3;
                     // Container child vbox1.Gtk.Box+BoxChild
                     Gtk.HBox w28 = new Gtk.HBox();
                     w28.Spacing = 5;
                     w28.BorderWidth = ((uint)(3));
                     w28.Events = ((Gdk.EventMask)(0));
                     w28.Name = "hbox3";
                     // Container child hbox3.Gtk.Box+BoxChild
                     Gtk.Label w29 = new Gtk.Label();
                     w29.LabelProp = "Word:";
                     w29.Events = ((Gdk.EventMask)(0));
                     w29.Name = "labelWord";
                     bindings["labelWord"] = w29;
                     w28.Add(w29);
                     Gtk.Box.BoxChild w30 = ((Gtk.Box.BoxChild)(w28[w29]));
                     w30.Position = 0;
                     w30.Expand = false;
                     w30.Fill = false;
                     // Container child hbox3.Gtk.Box+BoxChild
                     Gtk.Entry w31 = new Gtk.Entry();
                     w31.IsEditable = true;
                     w31.InvisibleChar = '●';
                     w31.CanFocus = true;
                     w31.Events = ((Gdk.EventMask)(0));
                     w31.Name = "entryKeyword";
                     w31.CanDefault = true;
                     bindings["entryKeyword"] = w31;
                     w28.Add(w31);
                     Gtk.Box.BoxChild w32 = ((Gtk.Box.BoxChild)(w28[w31]));
                     w32.Position = 1;
                     // Container child hbox3.Gtk.Box+BoxChild
                     Gtk.Button w33 = new Gtk.Button();
                     Gtk.Tooltips w34 = new Gtk.Tooltips();
                     w34.SetTip(w33, "Search keyword", "Search keyword");
                     w33.CanFocus = true;
                     w33.Events = ((Gdk.EventMask)(0));
                     w33.Name = "buttonSearch";
                     // Container child buttonSearch.Gtk.Container+ContainerChild
                     Gtk.Alignment w35 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                     w35.Events = ((Gdk.EventMask)(0));
                     w35.Name = "GtkAlignment";
                     // Container child GtkAlignment.Gtk.Container+ContainerChild
                     Gtk.HBox w36 = new Gtk.HBox();
                     w36.Spacing = 2;
                     w36.Events = ((Gdk.EventMask)(0));
                     w36.Name = "GtkHBox";
                     // Container child GtkHBox.Gtk.Container+ContainerChild
                     Gtk.Image w37 = new Gtk.Image();
                     w37.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-find", 16, 0);
                     w37.Events = ((Gdk.EventMask)(0));
                     w37.Name = "image4";
                     bindings["image4"] = w37;
                     w36.Add(w37);
                     // Container child GtkHBox.Gtk.Container+ContainerChild
                     Gtk.Label w39 = new Gtk.Label();
                     w39.LabelProp = "Search";
                     w39.Events = ((Gdk.EventMask)(0));
                     w39.Name = "GtkLabel";
                     bindings["GtkLabel"] = w39;
                     w36.Add(w39);
                     bindings["GtkHBox"] = w36;
                     w35.Add(w36);
                     bindings["GtkAlignment"] = w35;
                     w33.Add(w35);
                     bindings["buttonSearch"] = w33;
                     w28.Add(w33);
                     Gtk.Box.BoxChild w43 = ((Gtk.Box.BoxChild)(w28[w33]));
                     w43.Position = 2;
                     w43.Expand = false;
                     w43.Fill = false;
                     bindings["hbox3"] = w28;
                     w17.Add(w28);
                     Gtk.Box.BoxChild w44 = ((Gtk.Box.BoxChild)(w17[w28]));
                     w44.Position = 4;
                     w44.Expand = false;
                     w44.Fill = false;
                     // Container child vbox1.Gtk.Box+BoxChild
                     Gtk.HBox w45 = new Gtk.HBox();
                     w45.Spacing = 5;
                     w45.BorderWidth = ((uint)(3));
                     w45.Events = ((Gdk.EventMask)(0));
                     w45.Name = "hbox4";
                     // Container child hbox4.Gtk.Box+BoxChild
                     Gtk.Label w46 = new Gtk.Label();
                     w46.LabelProp = "Expression:";
                     w46.Events = ((Gdk.EventMask)(0));
                     w46.Name = "labelExpression";
                     bindings["labelExpression"] = w46;
                     w45.Add(w46);
                     Gtk.Box.BoxChild w47 = ((Gtk.Box.BoxChild)(w45[w46]));
                     w47.Position = 0;
                     w47.Expand = false;
                     w47.Fill = false;
                     // Container child hbox4.Gtk.Box+BoxChild
                     Gtk.Entry w48 = new Gtk.Entry();
                     w48.IsEditable = true;
                     w48.InvisibleChar = '●';
                     w48.CanFocus = true;
                     w48.Events = ((Gdk.EventMask)(0));
                     w48.Name = "entryExpression";
                     bindings["entryExpression"] = w48;
                     w45.Add(w48);
                     Gtk.Box.BoxChild w49 = ((Gtk.Box.BoxChild)(w45[w48]));
                     w49.Position = 1;
                     // Container child hbox4.Gtk.Box+BoxChild
                     Gtk.Button w50 = new Gtk.Button();
                     w34.SetTip(w50, "Search keyword", "Search keyword");
                     w50.CanFocus = true;
                     w50.Events = ((Gdk.EventMask)(0));
                     w50.Name = "buttonSearchExpression";
                     // Container child buttonSearchExpression.Gtk.Container+ContainerChild
                     Gtk.Alignment w51 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                     w51.Events = ((Gdk.EventMask)(0));
                     w51.Name = "GtkAlignment";
                     // Container child GtkAlignment.Gtk.Container+ContainerChild
                     Gtk.HBox w52 = new Gtk.HBox();
                     w52.Spacing = 2;
                     w52.Events = ((Gdk.EventMask)(0));
                     w52.Name = "GtkHBox";
                     // Container child GtkHBox.Gtk.Container+ContainerChild
                     Gtk.Image w53 = new Gtk.Image();
                     w53.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-find", 16, 0);
                     w53.Events = ((Gdk.EventMask)(0));
                     w53.Name = "image5";
                     bindings["image5"] = w53;
                     w52.Add(w53);
                     // Container child GtkHBox.Gtk.Container+ContainerChild
                     Gtk.Label w55 = new Gtk.Label();
                     w55.LabelProp = "Search";
                     w55.Events = ((Gdk.EventMask)(0));
                     w55.Name = "GtkLabel";
                     bindings["GtkLabel"] = w55;
                     w52.Add(w55);
                     bindings["GtkHBox"] = w52;
                     w51.Add(w52);
                     bindings["GtkAlignment"] = w51;
                     w50.Add(w51);
                     bindings["buttonSearchExpression"] = w50;
                     w45.Add(w50);
                     Gtk.Box.BoxChild w59 = ((Gtk.Box.BoxChild)(w45[w50]));
                     w59.Position = 2;
                     w59.Expand = false;
                     w59.Fill = false;
                     // Container child hbox4.Gtk.Box+BoxChild
                     Gtk.Button w60 = new Gtk.Button();
                     w34.SetTip(w60, "Search keyword", "Search keyword");
                     w60.CanFocus = true;
                     w60.Events = ((Gdk.EventMask)(0));
                     w60.Name = "buttonShowAll";
                     w60.Label = "Show All";
                     bindings["buttonShowAll"] = w60;
                     w45.Add(w60);
                     Gtk.Box.BoxChild w61 = ((Gtk.Box.BoxChild)(w45[w60]));
                     w61.Position = 3;
                     w61.Expand = false;
                     w61.Fill = false;
                     bindings["hbox4"] = w45;
                     w17.Add(w45);
                     Gtk.Box.BoxChild w62 = ((Gtk.Box.BoxChild)(w17[w45]));
                     w62.Position = 5;
                     w62.Expand = false;
                     w62.Fill = false;
                     // Container child vbox1.Gtk.Box+BoxChild
                     Gtk.HSeparator w63 = new Gtk.HSeparator();
                     w63.Events = ((Gdk.EventMask)(0));
                     w63.Name = "hseparator1";
                     bindings["hseparator1"] = w63;
                     w17.Add(w63);
                     Gtk.Box.BoxChild w64 = ((Gtk.Box.BoxChild)(w17[w63]));
                     w64.Position = 6;
                     w64.Expand = false;
                     w64.Fill = false;
                     // Container child vbox1.Gtk.Box+BoxChild
                     Gtk.HButtonBox w65 = new Gtk.HButtonBox();
                     w65.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
                     w65.BorderWidth = ((uint)(3));
                     w65.Events = ((Gdk.EventMask)(0));
                     w65.Name = "hbuttonbox1";
                     // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
                     Gtk.Button w66 = new Gtk.Button();
                     w66.CanFocus = true;
                     w66.Events = ((Gdk.EventMask)(0));
                     w66.Name = "buttonClose";
                     // Container child buttonClose.Gtk.Container+ContainerChild
                     Gtk.Alignment w67 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                     w67.Events = ((Gdk.EventMask)(0));
                     w67.Name = "GtkAlignment";
                     // Container child GtkAlignment.Gtk.Container+ContainerChild
                     Gtk.HBox w68 = new Gtk.HBox();
                     w68.Spacing = 2;
                     w68.Events = ((Gdk.EventMask)(0));
                     w68.Name = "GtkHBox";
                     // Container child GtkHBox.Gtk.Container+ContainerChild
                     Gtk.Image w69 = new Gtk.Image();
                     w69.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-close", 16, 0);
                     w69.Events = ((Gdk.EventMask)(0));
                     w69.Name = "image6";
                     bindings["image6"] = w69;
                     w68.Add(w69);
                     // Container child GtkHBox.Gtk.Container+ContainerChild
                     Gtk.Label w71 = new Gtk.Label();
                     w71.LabelProp = "Close";
                     w71.Events = ((Gdk.EventMask)(0));
                     w71.Name = "GtkLabel";
                     bindings["GtkLabel"] = w71;
                     w68.Add(w71);
                     bindings["GtkHBox"] = w68;
                     w67.Add(w68);
                     bindings["GtkAlignment"] = w67;
                     w66.Add(w67);
                     bindings["buttonClose"] = w66;
                     w65.Add(w66);
                     Gtk.ButtonBox.ButtonBoxChild w75 = ((Gtk.ButtonBox.ButtonBoxChild)(w65[w66]));
                     w75.Expand = false;
                     w75.Fill = false;
                     bindings["hbuttonbox1"] = w65;
                     w17.Add(w65);
                     Gtk.Box.BoxChild w76 = ((Gtk.Box.BoxChild)(w17[w65]));
                     w76.Position = 7;
                     w76.Expand = false;
                     w76.Fill = false;
                     bindings["vbox1"] = w17;
                     cobj.Add(w17);
                     cobj.DefaultHeight = 480;
                     bindings["SharpTranslator.MainWindow"] = cobj;
                     w18.Show();
                     w20.Show();
                     w22.Show();
                     w25.Show();
                     w24.Show();
                     w29.Show();
                     w31.Show();
                     w37.Show();
                     w39.Show();
                     w36.Show();
                     w35.Show();
                     w33.Show();
                     w28.Show();
                     w46.Show();
                     w48.Show();
                     w53.Show();
                     w55.Show();
                     w52.Show();
                     w51.Show();
                     w50.Show();
                     w60.Show();
                     w45.Show();
                     w63.Show();
                     w69.Show();
                     w71.Show();
                     w68.Show();
                     w67.Show();
                     w66.Show();
                     w65.Show();
                     w17.Show();
                     cobj.Show();
                     cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent")));
                     w5.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnLearn")));
                     w7.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnLearn")));
                     w13.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnAbout")));
                     w16.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnClose")));
                     w31.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnSearch")));
                     w33.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnSearch")));
                     w48.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnSearchExpression")));
                     w50.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnSearchExpression")));
                     w60.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnShowAll")));
                     w66.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnClose")));
                 }
             }
         }
     }
     System.Reflection.FieldInfo[] fields = obj.GetType().GetFields(((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) | System.Reflection.BindingFlags.Instance));
     for (int n = 0; (n < fields.Length); n = (n + 1)) {
         System.Reflection.FieldInfo field = fields[n];
         object widget = bindings[field.Name];
         if (((widget != null) && field.FieldType.IsInstanceOfType(widget))) {
             field.SetValue(obj, widget);
         }
     }
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MonoDevelop.D.OptionPanels.DGlobalOptions
     global::Stetic.BinContainer.Attach (this);
     this.Name = "MonoDevelop.D.OptionPanels.DGlobalOptions";
     // Container child MonoDevelop.D.OptionPanels.DGlobalOptions.Gtk.Container+ContainerChild
     this.notebook1 = new global::Gtk.Notebook ();
     this.notebook1.CanFocus = true;
     this.notebook1.Name = "notebook1";
     this.notebook1.CurrentPage = 0;
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.table1 = new global::Gtk.Table (((uint)(7)), ((uint)(1)), false);
     this.table1.Name = "table1";
     this.table1.RowSpacing = ((uint)(6));
     this.table1.ColumnSpacing = ((uint)(6));
     // Container child table1.Gtk.Table+TableChild
     this.check_EnableDiffbasedColoring = new global::Gtk.CheckButton ();
     global::Gtk.Tooltips w1 = new Gtk.Tooltips ();
     w1.SetTip (this.check_EnableDiffbasedColoring, "If enabled, deadlocks might occur if mixins are used too often", "If enabled, deadlocks might occur if mixins are used too often");
     this.check_EnableDiffbasedColoring.CanFocus = true;
     this.check_EnableDiffbasedColoring.Name = "check_EnableDiffbasedColoring";
     this.check_EnableDiffbasedColoring.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Enable diff-based syntax highlighting (shortcut: Ctrl+Alt+K)");
     this.check_EnableDiffbasedColoring.DrawIndicator = true;
     this.check_EnableDiffbasedColoring.UseUnderline = true;
     this.table1.Add (this.check_EnableDiffbasedColoring);
     global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_EnableDiffbasedColoring]));
     w2.TopAttach = ((uint)(4));
     w2.BottomAttach = ((uint)(5));
     w2.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_EnableMixinAnalysis = new global::Gtk.CheckButton ();
     w1.SetTip (this.check_EnableMixinAnalysis, "If enabled, deadlocks might occur if mixins are used too often", "If enabled, deadlocks might occur if mixins are used too often");
     this.check_EnableMixinAnalysis.CanFocus = true;
     this.check_EnableMixinAnalysis.Name = "check_EnableMixinAnalysis";
     this.check_EnableMixinAnalysis.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Enable Mixin & Template Mixin Analysis");
     this.check_EnableMixinAnalysis.DrawIndicator = true;
     this.check_EnableMixinAnalysis.UseUnderline = true;
     this.table1.Add (this.check_EnableMixinAnalysis);
     global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_EnableMixinAnalysis]));
     w3.TopAttach = ((uint)(2));
     w3.BottomAttach = ((uint)(3));
     w3.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_EnableSuggestionMode = new global::Gtk.CheckButton ();
     w1.SetTip (this.check_EnableSuggestionMode, "If true, the selected text in the completion box will not be inserted into the co" +
     "de unless the <Return> key has been pressed.", "If true, the selected text in the completion box will not be inserted into the co" +
     "de unless the <Return> key has been pressed.");
     this.check_EnableSuggestionMode.CanFocus = true;
     this.check_EnableSuggestionMode.Name = "check_EnableSuggestionMode";
     this.check_EnableSuggestionMode.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Enable suggestive completion mode");
     this.check_EnableSuggestionMode.DrawIndicator = true;
     this.check_EnableSuggestionMode.UseUnderline = true;
     this.table1.Add (this.check_EnableSuggestionMode);
     global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_EnableSuggestionMode]));
     w4.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_EnableUFCSCompletion = new global::Gtk.CheckButton ();
     this.check_EnableUFCSCompletion.CanFocus = true;
     this.check_EnableUFCSCompletion.Name = "check_EnableUFCSCompletion";
     this.check_EnableUFCSCompletion.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Enable UFCS Completion");
     this.check_EnableUFCSCompletion.DrawIndicator = true;
     this.check_EnableUFCSCompletion.UseUnderline = true;
     this.table1.Add (this.check_EnableUFCSCompletion);
     global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_EnableUFCSCompletion]));
     w5.TopAttach = ((uint)(1));
     w5.BottomAttach = ((uint)(2));
     w5.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_HideDeprecatedItems = new global::Gtk.CheckButton ();
     w1.SetTip (this.check_HideDeprecatedItems, "If enabled, deadlocks might occur if mixins are used too often", "If enabled, deadlocks might occur if mixins are used too often");
     this.check_HideDeprecatedItems.CanFocus = true;
     this.check_HideDeprecatedItems.Name = "check_HideDeprecatedItems";
     this.check_HideDeprecatedItems.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Hide deprecated items in the completion list");
     this.check_HideDeprecatedItems.Active = true;
     this.check_HideDeprecatedItems.DrawIndicator = true;
     this.check_HideDeprecatedItems.UseUnderline = true;
     this.table1.Add (this.check_HideDeprecatedItems);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_HideDeprecatedItems]));
     w6.TopAttach = ((uint)(3));
     w6.BottomAttach = ((uint)(4));
     w6.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_ShowStructMembersInStructInitOnly = new global::Gtk.CheckButton ();
     this.check_ShowStructMembersInStructInitOnly.CanFocus = true;
     this.check_ShowStructMembersInStructInitOnly.Name = "check_ShowStructMembersInStructInitOnly";
     this.check_ShowStructMembersInStructInitOnly.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Only show struct\'s items in struct initializer competion");
     this.check_ShowStructMembersInStructInitOnly.DrawIndicator = true;
     this.check_ShowStructMembersInStructInitOnly.UseUnderline = true;
     this.table1.Add (this.check_ShowStructMembersInStructInitOnly);
     global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_ShowStructMembersInStructInitOnly]));
     w7.TopAttach = ((uint)(5));
     w7.BottomAttach = ((uint)(6));
     w7.YOptions = ((global::Gtk.AttachOptions)(4));
     this.notebook1.Add (this.table1);
     // Notebook tab
     this.label1 = new global::Gtk.Label ();
     this.label1.Name = "label1";
     this.label1.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Editing & Completion");
     this.notebook1.SetTabLabel (this.table1, this.label1);
     this.label1.ShowAll ();
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.vbox1 = new global::Gtk.VBox ();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.check_ShowFunctionParams = new global::Gtk.CheckButton ();
     this.check_ShowFunctionParams.CanFocus = true;
     this.check_ShowFunctionParams.Name = "check_ShowFunctionParams";
     this.check_ShowFunctionParams.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Show function parameters");
     this.check_ShowFunctionParams.Active = true;
     this.check_ShowFunctionParams.DrawIndicator = true;
     this.check_ShowFunctionParams.UseUnderline = true;
     this.vbox1.Add (this.check_ShowFunctionParams);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.check_ShowFunctionParams]));
     w9.Position = 0;
     w9.Expand = false;
     w9.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.check_ShowFunctionVariables = new global::Gtk.CheckButton ();
     this.check_ShowFunctionVariables.CanFocus = true;
     this.check_ShowFunctionVariables.Name = "check_ShowFunctionVariables";
     this.check_ShowFunctionVariables.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Show function variables");
     this.check_ShowFunctionVariables.DrawIndicator = true;
     this.check_ShowFunctionVariables.UseUnderline = true;
     this.vbox1.Add (this.check_ShowFunctionVariables);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.check_ShowFunctionVariables]));
     w10.Position = 1;
     w10.Expand = false;
     w10.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.check_ShowTypes = new global::Gtk.CheckButton ();
     this.check_ShowTypes.CanFocus = true;
     this.check_ShowTypes.Name = "check_ShowTypes";
     this.check_ShowTypes.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Display node base types");
     this.check_ShowTypes.Active = true;
     this.check_ShowTypes.DrawIndicator = true;
     this.check_ShowTypes.UseUnderline = true;
     this.vbox1.Add (this.check_ShowTypes);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.check_ShowTypes]));
     w11.Position = 2;
     w11.Expand = false;
     w11.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.check_GrayOutNonPublic = new global::Gtk.CheckButton ();
     this.check_GrayOutNonPublic.CanFocus = true;
     this.check_GrayOutNonPublic.Name = "check_GrayOutNonPublic";
     this.check_GrayOutNonPublic.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Gray-out non public members");
     this.check_GrayOutNonPublic.Active = true;
     this.check_GrayOutNonPublic.DrawIndicator = true;
     this.check_GrayOutNonPublic.UseUnderline = true;
     this.vbox1.Add (this.check_GrayOutNonPublic);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.check_GrayOutNonPublic]));
     w12.Position = 3;
     w12.Expand = false;
     w12.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox2 = new global::Gtk.HBox ();
     this.hbox2.Name = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.label5 = new global::Gtk.Label ();
     this.label5.Name = "label5";
     this.label5.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Expansion behaviour on tree rebuild");
     this.hbox2.Add (this.label5);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.label5]));
     w13.Position = 0;
     w13.Expand = false;
     w13.Fill = false;
     // Container child hbox2.Gtk.Box+BoxChild
     this.combo_ExpansionBehaviour = global::Gtk.ComboBox.NewText ();
     this.combo_ExpansionBehaviour.AppendText (global::MonoDevelop.Core.GettextCatalog.GetString ("Collapse All"));
     this.combo_ExpansionBehaviour.AppendText (global::MonoDevelop.Core.GettextCatalog.GetString ("Leave expanded nodes expanded"));
     this.combo_ExpansionBehaviour.AppendText (global::MonoDevelop.Core.GettextCatalog.GetString ("Expand All"));
     this.combo_ExpansionBehaviour.Name = "combo_ExpansionBehaviour";
     this.combo_ExpansionBehaviour.Active = 0;
     this.hbox2.Add (this.combo_ExpansionBehaviour);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.combo_ExpansionBehaviour]));
     w14.Position = 1;
     this.vbox1.Add (this.hbox2);
     global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox2]));
     w15.Position = 4;
     w15.Expand = false;
     w15.Fill = false;
     this.notebook1.Add (this.vbox1);
     global::Gtk.Notebook.NotebookChild w16 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1 [this.vbox1]));
     w16.Position = 1;
     // Notebook tab
     this.label6 = new global::Gtk.Label ();
     this.label6.Name = "label6";
     this.label6.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Document Outline");
     this.notebook1.SetTabLabel (this.vbox1, this.label6);
     this.label6.ShowAll ();
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.vbox2 = new global::Gtk.VBox ();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.check_IndentInsteadFormatCode = new global::Gtk.CheckButton ();
     this.check_IndentInsteadFormatCode.CanFocus = true;
     this.check_IndentInsteadFormatCode.Name = "check_IndentInsteadFormatCode";
     this.check_IndentInsteadFormatCode.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Only indent code lines instead of rearrange code parts\n(because the actual format" +
     "ter isn\'t finished currently)");
     this.check_IndentInsteadFormatCode.Active = true;
     this.check_IndentInsteadFormatCode.DrawIndicator = true;
     this.check_IndentInsteadFormatCode.UseUnderline = true;
     this.vbox2.Add (this.check_IndentInsteadFormatCode);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.check_IndentInsteadFormatCode]));
     w17.Position = 0;
     w17.Expand = false;
     w17.Fill = false;
     this.notebook1.Add (this.vbox2);
     global::Gtk.Notebook.NotebookChild w18 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1 [this.vbox2]));
     w18.Position = 2;
     // Notebook tab
     this.label7 = new global::Gtk.Label ();
     this.label7.Name = "label7";
     this.label7.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Formatting");
     this.notebook1.SetTabLabel (this.vbox2, this.label7);
     this.label7.ShowAll ();
     this.Add (this.notebook1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.Show ();
 }
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget MonoDevelop.D.ProjectIncludesWidget
			global::Stetic.BinContainer.Attach (this);
			this.Name = "MonoDevelop.D.ProjectIncludesWidget";
			// Container child MonoDevelop.D.ProjectIncludesWidget.Gtk.Container+ContainerChild
			this.vbox7 = new global::Gtk.VBox ();
			this.vbox7.Name = "vbox7";
			this.vbox7.Spacing = 6;
			this.vbox7.BorderWidth = ((uint)(3));
			// Container child vbox7.Gtk.Box+BoxChild
			this.table2 = new global::Gtk.Table (((uint)(2)), ((uint)(2)), false);
			this.table2.Name = "table2";
			this.table2.RowSpacing = ((uint)(6));
			this.table2.ColumnSpacing = ((uint)(6));
			// Container child table2.Gtk.Table+TableChild
			this.GtkScrolledWindow1 = new global::Gtk.ScrolledWindow ();
			global::Gtk.Tooltips w1 = new Gtk.Tooltips ();
			w1.SetTip (this.GtkScrolledWindow1, "Line-separated list of paths where the compiler (and the code completion engine!) shall look in to resolve imports.", "Line-separated list of paths where the compiler (and the code completion engine!) shall look in to resolve imports.");
			this.GtkScrolledWindow1.Name = "GtkScrolledWindow1";
			this.GtkScrolledWindow1.ShadowType = ((global::Gtk.ShadowType)(1));
			// Container child GtkScrolledWindow1.Gtk.Container+ContainerChild
			this.text_Includes = new global::Gtk.TextView ();
			this.text_Includes.CanFocus = true;
			this.text_Includes.Name = "text_Includes";
			this.GtkScrolledWindow1.Add (this.text_Includes);
			this.table2.Add (this.GtkScrolledWindow1);
			global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table2 [this.GtkScrolledWindow1]));
			w3.TopAttach = ((uint)(1));
			w3.BottomAttach = ((uint)(2));
			w3.XOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table2.Gtk.Table+TableChild
			this.label14 = new global::Gtk.Label ();
			this.label14.Name = "label14";
			this.label14.Xalign = 0F;
			this.label14.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Note: Relative paths will be related to the project's base directory!");
			this.table2.Add (this.label14);
			global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table2 [this.label14]));
			w4.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table2.Gtk.Table+TableChild
			this.table3 = new global::Gtk.Table (((uint)(2)), ((uint)(1)), false);
			this.table3.Name = "table3";
			this.table3.RowSpacing = ((uint)(6));
			this.table3.ColumnSpacing = ((uint)(6));
			// Container child table3.Gtk.Table+TableChild
			this.button_AddInclude = new global::Gtk.Button ();
			this.button_AddInclude.CanFocus = true;
			this.button_AddInclude.Name = "button_AddInclude";
			this.button_AddInclude.UseUnderline = true;
			this.button_AddInclude.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Browse & Add");
			this.table3.Add (this.button_AddInclude);
			global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table3 [this.button_AddInclude]));
			w5.XOptions = ((global::Gtk.AttachOptions)(4));
			w5.YOptions = ((global::Gtk.AttachOptions)(4));
			this.table2.Add (this.table3);
			global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table2 [this.table3]));
			w6.TopAttach = ((uint)(1));
			w6.BottomAttach = ((uint)(2));
			w6.LeftAttach = ((uint)(1));
			w6.RightAttach = ((uint)(2));
			w6.XOptions = ((global::Gtk.AttachOptions)(4));
			this.vbox7.Add (this.table2);
			global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox7 [this.table2]));
			w7.Position = 0;
			this.Add (this.vbox7);
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.Show ();
			this.button_AddInclude.Clicked += new global::System.EventHandler (this.OnButtonAddIncludeClicked);
		}
Example #13
0
        void CreateControls()
        {
            Gtk.Widget icon  = null;
            Gtk.Widget label = null;
            dropButton = null;

            if (Child != null)
            {
                Gtk.Widget w = Child;
                Remove(w);
                w.Destroy();
            }

            if (node.Type == Gtk.UIManagerItemType.Separator)
            {
                Gtk.Widget sep;
                if (parentToolbar.Orientation == Gtk.Orientation.Horizontal)
                {
                    sep = new Gtk.VSeparator();
                }
                else
                {
                    sep = new Gtk.HSeparator();
                }
                Gtk.HBox box = new Gtk.HBox();
                box.BorderWidth = 6;
                box.PackStart(sep, true, true, 0);
                Add(box);
                return;
            }

            if (node.Action == null)
            {
                return;
            }

            Gtk.Action gaction = node.Action.GtkAction;

            bool showText = parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.Text;
            bool showIcon = parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.Icons;

            if (parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.Both)
            {
                showText = showIcon = true;
            }
            else if (parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.BothHoriz)
            {
                showText = parentToolbar.Orientation == Gtk.Orientation.Vertical || gaction.IsImportant;
                showIcon = true;
            }

            string text = node.Action.ToolLabel;

            showingText = showText;

            if (showIcon)
            {
                if (gaction.StockId != null)
                {
                    icon = node.Action.CreateIcon(parentToolbar.IconSize);
                }
                else if (!gaction.IsImportant)
                {
                    icon = CreateFakeItem();
                }
            }

            Gtk.Tooltips tooltips = null;
            if (editing)
            {
                tooltips = new Gtk.Tooltips();
            }

            if (editing)
            {
                Gtk.HBox bbox = new Gtk.HBox();
                bbox.Spacing = 3;
                if (icon != null)
                {
                    bbox.PackStart(icon, false, false, 0);
                }
                bbox.PackStart(new Gtk.Arrow(Gtk.ArrowType.Down, Gtk.ShadowType.In), false, false, 0);
                Gtk.Button b = new Gtk.Button(bbox);
                tooltips.SetTip(b, "Select action type", "");
                b.Relief            = Gtk.ReliefStyle.None;
                b.ButtonPressEvent += OnSelectIcon;
                dropButton          = b;
                icon = b;

                if (showText)
                {
                    Gtk.Entry entry = new Gtk.Entry();
                    entry.Text       = text;
                    entry.Changed   += OnLabelChanged;
                    entry.Activated += OnLabelActivated;
                    entry.HasFrame   = false;
                    label            = entry;
                    tooltips.SetTip(entry, "Action label", "");
                }
            }
            else if (showText && text != null && text.Length > 0)
            {
                label           = new Gtk.Label(text);
                label.Sensitive = editing || node.Action == null || node.Action.GtkAction.Sensitive;
            }

            if (icon != null && label != null)
            {
                if (parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.BothHoriz)
                {
                    Gtk.HBox box = new Gtk.HBox();
                    box.PackStart(icon, false, false, 0);
                    box.PackStart(label, true, true, 0);
                    icon = box;
                }
                else if (parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.Both)
                {
                    Gtk.VBox      box = new Gtk.VBox();
                    Gtk.Alignment al  = new Gtk.Alignment(0.5f, 0f, 0f, 0f);
                    al.Add(icon);
                    box.PackStart(al, false, false, 0);
                    box.PackStart(label, true, true, 0);
                    icon = box;
                }
            }
            else if (label != null)
            {
                icon = label;
            }

            if (icon == null)
            {
                icon = CreateFakeItem();
            }

            icon.Sensitive = editing || node.Action == null || node.Action.GtkAction.Sensitive;

            if (!editing)
            {
                Gtk.Button but = new Gtk.Button(icon);
                but.Relief              = Gtk.ReliefStyle.None;
                but.ButtonPressEvent   += OnToolItemPress;
                but.ButtonReleaseEvent += OnMemuItemRelease;
                but.MotionNotifyEvent  += OnMotionNotify;
                but.Events             |= Gdk.EventMask.PointerMotionMask;
                icon = but;
            }

            Add(icon);

            ShowAll();
        }
 protected virtual void Build() {
     Stetic.Gui.Initialize();
     // Widget CBinding.CodeGenerationPanel
     Stetic.BinContainer.Attach(this);
     this.Name = "CBinding.CodeGenerationPanel";
     // Container child CBinding.CodeGenerationPanel.Gtk.Container+ContainerChild
     this.notebook1 = new Gtk.Notebook();
     this.notebook1.CanFocus = true;
     this.notebook1.Name = "notebook1";
     this.notebook1.CurrentPage = 0;
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.vbox6 = new Gtk.VBox();
     this.vbox6.Name = "vbox6";
     this.vbox6.Spacing = 3;
     // Container child vbox6.Gtk.Box+BoxChild
     this.table1 = new Gtk.Table(((uint)(3)), ((uint)(2)), false);
     this.table1.Name = "table1";
     this.table1.RowSpacing = ((uint)(5));
     this.table1.ColumnSpacing = ((uint)(5));
     this.table1.BorderWidth = ((uint)(2));
     // Container child table1.Gtk.Table+TableChild
     this.label4 = new Gtk.Label();
     this.label4.Name = "label4";
     this.label4.Xpad = 10;
     this.label4.Xalign = 0F;
     this.label4.LabelProp = Mono.Unix.Catalog.GetString("Warning Level:");
     this.table1.Add(this.label4);
     Gtk.Table.TableChild w1 = ((Gtk.Table.TableChild)(this.table1[this.label4]));
     w1.XOptions = ((Gtk.AttachOptions)(4));
     w1.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label5 = new Gtk.Label();
     this.label5.Name = "label5";
     this.label5.Xpad = 10;
     this.label5.Xalign = 0F;
     this.label5.LabelProp = Mono.Unix.Catalog.GetString("Optimization Level:");
     this.table1.Add(this.label5);
     Gtk.Table.TableChild w2 = ((Gtk.Table.TableChild)(this.table1[this.label5]));
     w2.TopAttach = ((uint)(1));
     w2.BottomAttach = ((uint)(2));
     w2.XOptions = ((Gtk.AttachOptions)(4));
     w2.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label6 = new Gtk.Label();
     this.label6.Name = "label6";
     this.label6.Xpad = 10;
     this.label6.Xalign = 0F;
     this.label6.LabelProp = Mono.Unix.Catalog.GetString("Target:");
     this.table1.Add(this.label6);
     Gtk.Table.TableChild w3 = ((Gtk.Table.TableChild)(this.table1[this.label6]));
     w3.TopAttach = ((uint)(2));
     w3.BottomAttach = ((uint)(3));
     w3.XOptions = ((Gtk.AttachOptions)(4));
     w3.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.optimizationSpinButton = new Gtk.SpinButton(0, 3, 1);
     this.optimizationSpinButton.CanFocus = true;
     this.optimizationSpinButton.Name = "optimizationSpinButton";
     this.optimizationSpinButton.Adjustment.PageIncrement = 10;
     this.optimizationSpinButton.ClimbRate = 1;
     this.optimizationSpinButton.Numeric = true;
     this.table1.Add(this.optimizationSpinButton);
     Gtk.Table.TableChild w4 = ((Gtk.Table.TableChild)(this.table1[this.optimizationSpinButton]));
     w4.TopAttach = ((uint)(1));
     w4.BottomAttach = ((uint)(2));
     w4.LeftAttach = ((uint)(1));
     w4.RightAttach = ((uint)(2));
     w4.XOptions = ((Gtk.AttachOptions)(4));
     w4.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.targetComboBox = Gtk.ComboBox.NewText();
     this.targetComboBox.AppendText(Mono.Unix.Catalog.GetString("Executable"));
     this.targetComboBox.AppendText(Mono.Unix.Catalog.GetString("Static Library"));
     this.targetComboBox.AppendText(Mono.Unix.Catalog.GetString("Shared Object"));
     this.targetComboBox.Name = "targetComboBox";
     this.table1.Add(this.targetComboBox);
     Gtk.Table.TableChild w5 = ((Gtk.Table.TableChild)(this.table1[this.targetComboBox]));
     w5.TopAttach = ((uint)(2));
     w5.BottomAttach = ((uint)(3));
     w5.LeftAttach = ((uint)(1));
     w5.RightAttach = ((uint)(2));
     w5.XOptions = ((Gtk.AttachOptions)(4));
     w5.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.vbox1 = new Gtk.VBox();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 1;
     // Container child vbox1.Gtk.Box+BoxChild
     this.noWarningRadio = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("no warnings"));
     this.noWarningRadio.CanFocus = true;
     this.noWarningRadio.Name = "noWarningRadio";
     this.noWarningRadio.Active = true;
     this.noWarningRadio.DrawIndicator = true;
     this.noWarningRadio.UseUnderline = true;
     this.noWarningRadio.Group = new GLib.SList(System.IntPtr.Zero);
     this.vbox1.Add(this.noWarningRadio);
     Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.vbox1[this.noWarningRadio]));
     w6.Position = 0;
     w6.Expand = false;
     w6.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.normalWarningRadio = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("normal"));
     this.normalWarningRadio.CanFocus = true;
     this.normalWarningRadio.Name = "normalWarningRadio";
     this.normalWarningRadio.DrawIndicator = true;
     this.normalWarningRadio.UseUnderline = true;
     this.normalWarningRadio.Group = this.noWarningRadio.Group;
     this.vbox1.Add(this.normalWarningRadio);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(this.vbox1[this.normalWarningRadio]));
     w7.Position = 1;
     w7.Expand = false;
     w7.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.allWarningRadio = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("all"));
     this.allWarningRadio.CanFocus = true;
     this.allWarningRadio.Name = "allWarningRadio";
     this.allWarningRadio.DrawIndicator = true;
     this.allWarningRadio.UseUnderline = true;
     this.allWarningRadio.Group = this.noWarningRadio.Group;
     this.vbox1.Add(this.allWarningRadio);
     Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(this.vbox1[this.allWarningRadio]));
     w8.Position = 2;
     w8.Expand = false;
     w8.Fill = false;
     this.table1.Add(this.vbox1);
     Gtk.Table.TableChild w9 = ((Gtk.Table.TableChild)(this.table1[this.vbox1]));
     w9.LeftAttach = ((uint)(1));
     w9.RightAttach = ((uint)(2));
     w9.XOptions = ((Gtk.AttachOptions)(4));
     w9.YOptions = ((Gtk.AttachOptions)(4));
     this.vbox6.Add(this.table1);
     Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(this.vbox6[this.table1]));
     w10.Position = 0;
     w10.Expand = false;
     w10.Fill = false;
     // Container child vbox6.Gtk.Box+BoxChild
     this.hbox1 = new Gtk.HBox();
     this.hbox1.Name = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.label12 = new Gtk.Label();
     this.label12.Name = "label12";
     this.label12.Xpad = 13;
     this.label12.Xalign = 0F;
     this.label12.LabelProp = Mono.Unix.Catalog.GetString("Define Symbols:");
     this.hbox1.Add(this.label12);
     Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(this.hbox1[this.label12]));
     w11.Position = 0;
     w11.Expand = false;
     w11.Fill = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.defineSymbolsTextEntry = new Gtk.Entry();
     Gtk.Tooltips w12 = new Gtk.Tooltips();
     w12.SetTip(this.defineSymbolsTextEntry, "A space seperated list of symbols to define.", "A space seperated list of symbols to define.");
     this.defineSymbolsTextEntry.CanFocus = true;
     this.defineSymbolsTextEntry.Name = "defineSymbolsTextEntry";
     this.defineSymbolsTextEntry.IsEditable = true;
     this.defineSymbolsTextEntry.InvisibleChar = '●';
     this.hbox1.Add(this.defineSymbolsTextEntry);
     Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(this.hbox1[this.defineSymbolsTextEntry]));
     w13.Position = 1;
     w13.Padding = ((uint)(14));
     this.vbox6.Add(this.hbox1);
     Gtk.Box.BoxChild w14 = ((Gtk.Box.BoxChild)(this.vbox6[this.hbox1]));
     w14.Position = 1;
     w14.Expand = false;
     w14.Fill = false;
     // Container child vbox6.Gtk.Box+BoxChild
     this.frame2 = new Gtk.Frame();
     this.frame2.Name = "frame2";
     this.frame2.ShadowType = ((Gtk.ShadowType)(0));
     this.frame2.LabelXalign = 0F;
     this.frame2.LabelYalign = 0F;
     // Container child frame2.Gtk.Container+ContainerChild
     this.GtkAlignment = new Gtk.Alignment(0F, 0F, 1F, 1F);
     this.GtkAlignment.Name = "GtkAlignment";
     this.GtkAlignment.LeftPadding = ((uint)(12));
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     this.table5 = new Gtk.Table(((uint)(2)), ((uint)(2)), false);
     this.table5.Name = "table5";
     this.table5.RowSpacing = ((uint)(6));
     this.table5.ColumnSpacing = ((uint)(9));
     this.table5.BorderWidth = ((uint)(6));
     // Container child table5.Gtk.Table+TableChild
     this.label11 = new Gtk.Label();
     this.label11.Name = "label11";
     this.label11.Xalign = 0F;
     this.label11.LabelProp = Mono.Unix.Catalog.GetString("Extra Linker Options");
     this.table5.Add(this.label11);
     Gtk.Table.TableChild w15 = ((Gtk.Table.TableChild)(this.table5[this.label11]));
     w15.LeftAttach = ((uint)(1));
     w15.RightAttach = ((uint)(2));
     w15.XOptions = ((Gtk.AttachOptions)(4));
     w15.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table5.Gtk.Table+TableChild
     this.label7 = new Gtk.Label();
     this.label7.Name = "label7";
     this.label7.Xalign = 0F;
     this.label7.LabelProp = Mono.Unix.Catalog.GetString("Extra Compiler Options");
     this.table5.Add(this.label7);
     Gtk.Table.TableChild w16 = ((Gtk.Table.TableChild)(this.table5[this.label7]));
     w16.XOptions = ((Gtk.AttachOptions)(4));
     w16.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table5.Gtk.Table+TableChild
     this.scrolledwindow4 = new Gtk.ScrolledWindow();
     this.scrolledwindow4.CanFocus = true;
     this.scrolledwindow4.Name = "scrolledwindow4";
     this.scrolledwindow4.VscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow4.HscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow4.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow4.Gtk.Container+ContainerChild
     this.extraCompilerTextView = new Gtk.TextView();
     w12.SetTip(this.extraCompilerTextView, "A newline seperated list of extra options to send to the compiler.\nOne option can be in more than one line.\nExample:\n\t`pkg-config\n\t--cflags\n\tcairo`", "A newline seperated list of extra options to send to the compiler.\nOne option can be in more than one line.\nExample:\n\t`pkg-config\n\t--cflags\n\tcairo`");
     this.extraCompilerTextView.CanFocus = true;
     this.extraCompilerTextView.Name = "extraCompilerTextView";
     this.scrolledwindow4.Add(this.extraCompilerTextView);
     this.table5.Add(this.scrolledwindow4);
     Gtk.Table.TableChild w18 = ((Gtk.Table.TableChild)(this.table5[this.scrolledwindow4]));
     w18.TopAttach = ((uint)(1));
     w18.BottomAttach = ((uint)(2));
     // Container child table5.Gtk.Table+TableChild
     this.scrolledwindow5 = new Gtk.ScrolledWindow();
     this.scrolledwindow5.CanFocus = true;
     this.scrolledwindow5.Name = "scrolledwindow5";
     this.scrolledwindow5.VscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow5.HscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow5.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow5.Gtk.Container+ContainerChild
     this.extraLinkerTextView = new Gtk.TextView();
     w12.SetTip(this.extraLinkerTextView, "A newline seperated list of extra options to send to the linker.\nOne option can be in more than one line.\nExample:\n\t`pkg-config\n\t--libs\n\tcairo`", "A newline seperated list of extra options to send to the linker.\nOne option can be in more than one line.\nExample:\n\t`pkg-config\n\t--libs\n\tcairo`");
     this.extraLinkerTextView.CanFocus = true;
     this.extraLinkerTextView.Name = "extraLinkerTextView";
     this.scrolledwindow5.Add(this.extraLinkerTextView);
     this.table5.Add(this.scrolledwindow5);
     Gtk.Table.TableChild w20 = ((Gtk.Table.TableChild)(this.table5[this.scrolledwindow5]));
     w20.TopAttach = ((uint)(1));
     w20.BottomAttach = ((uint)(2));
     w20.LeftAttach = ((uint)(1));
     w20.RightAttach = ((uint)(2));
     this.GtkAlignment.Add(this.table5);
     this.frame2.Add(this.GtkAlignment);
     this.GtkLabel12 = new Gtk.Label();
     this.GtkLabel12.Name = "GtkLabel12";
     this.GtkLabel12.LabelProp = Mono.Unix.Catalog.GetString("<b>Extra Options</b>");
     this.GtkLabel12.UseMarkup = true;
     this.frame2.LabelWidget = this.GtkLabel12;
     this.vbox6.Add(this.frame2);
     Gtk.Box.BoxChild w23 = ((Gtk.Box.BoxChild)(this.vbox6[this.frame2]));
     w23.Position = 2;
     this.notebook1.Add(this.vbox6);
     Gtk.Notebook.NotebookChild w24 = ((Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox6]));
     w24.TabExpand = false;
     // Notebook tab
     this.label1 = new Gtk.Label();
     this.label1.Name = "label1";
     this.label1.LabelProp = Mono.Unix.Catalog.GetString("Code Generation");
     this.notebook1.SetTabLabel(this.vbox6, this.label1);
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.table2 = new Gtk.Table(((uint)(2)), ((uint)(3)), false);
     this.table2.Name = "table2";
     this.table2.RowSpacing = ((uint)(10));
     this.table2.ColumnSpacing = ((uint)(10));
     this.table2.BorderWidth = ((uint)(3));
     // Container child table2.Gtk.Table+TableChild
     this.addLibButton = new Gtk.Button();
     this.addLibButton.Sensitive = false;
     this.addLibButton.CanFocus = true;
     this.addLibButton.Name = "addLibButton";
     this.addLibButton.UseUnderline = true;
     this.addLibButton.Label = Mono.Unix.Catalog.GetString("Add");
     this.table2.Add(this.addLibButton);
     Gtk.Table.TableChild w25 = ((Gtk.Table.TableChild)(this.table2[this.addLibButton]));
     w25.LeftAttach = ((uint)(2));
     w25.RightAttach = ((uint)(3));
     w25.XOptions = ((Gtk.AttachOptions)(4));
     w25.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table2.Gtk.Table+TableChild
     this.label8 = new Gtk.Label();
     this.label8.Name = "label8";
     this.label8.LabelProp = Mono.Unix.Catalog.GetString("Library:");
     this.table2.Add(this.label8);
     Gtk.Table.TableChild w26 = ((Gtk.Table.TableChild)(this.table2[this.label8]));
     w26.XOptions = ((Gtk.AttachOptions)(4));
     w26.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table2.Gtk.Table+TableChild
     this.libAddEntry = new Gtk.Entry();
     this.libAddEntry.CanFocus = true;
     this.libAddEntry.Name = "libAddEntry";
     this.libAddEntry.IsEditable = true;
     this.libAddEntry.InvisibleChar = '●';
     this.table2.Add(this.libAddEntry);
     Gtk.Table.TableChild w27 = ((Gtk.Table.TableChild)(this.table2[this.libAddEntry]));
     w27.LeftAttach = ((uint)(1));
     w27.RightAttach = ((uint)(2));
     w27.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table2.Gtk.Table+TableChild
     this.scrolledwindow1 = new Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus = true;
     this.scrolledwindow1.Name = "scrolledwindow1";
     this.scrolledwindow1.VscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow1.HscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow1.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     this.libTreeView = new Gtk.TreeView();
     this.libTreeView.CanFocus = true;
     this.libTreeView.Name = "libTreeView";
     this.libTreeView.HeadersClickable = true;
     this.scrolledwindow1.Add(this.libTreeView);
     this.table2.Add(this.scrolledwindow1);
     Gtk.Table.TableChild w29 = ((Gtk.Table.TableChild)(this.table2[this.scrolledwindow1]));
     w29.TopAttach = ((uint)(1));
     w29.BottomAttach = ((uint)(2));
     w29.LeftAttach = ((uint)(1));
     w29.RightAttach = ((uint)(2));
     // Container child table2.Gtk.Table+TableChild
     this.vbox4 = new Gtk.VBox();
     this.vbox4.Name = "vbox4";
     this.vbox4.Spacing = 6;
     // Container child vbox4.Gtk.Box+BoxChild
     this.browseButton = new Gtk.Button();
     this.browseButton.CanFocus = true;
     this.browseButton.Name = "browseButton";
     this.browseButton.UseUnderline = true;
     this.browseButton.Label = Mono.Unix.Catalog.GetString("Browse...");
     this.vbox4.Add(this.browseButton);
     Gtk.Box.BoxChild w30 = ((Gtk.Box.BoxChild)(this.vbox4[this.browseButton]));
     w30.Position = 0;
     w30.Expand = false;
     w30.Fill = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.removeLibButton = new Gtk.Button();
     this.removeLibButton.Sensitive = false;
     this.removeLibButton.CanFocus = true;
     this.removeLibButton.Name = "removeLibButton";
     this.removeLibButton.UseUnderline = true;
     this.removeLibButton.Label = Mono.Unix.Catalog.GetString("Remove");
     this.vbox4.Add(this.removeLibButton);
     Gtk.Box.BoxChild w31 = ((Gtk.Box.BoxChild)(this.vbox4[this.removeLibButton]));
     w31.Position = 1;
     w31.Expand = false;
     w31.Fill = false;
     this.table2.Add(this.vbox4);
     Gtk.Table.TableChild w32 = ((Gtk.Table.TableChild)(this.table2[this.vbox4]));
     w32.TopAttach = ((uint)(1));
     w32.BottomAttach = ((uint)(2));
     w32.LeftAttach = ((uint)(2));
     w32.RightAttach = ((uint)(3));
     w32.XOptions = ((Gtk.AttachOptions)(4));
     this.notebook1.Add(this.table2);
     Gtk.Notebook.NotebookChild w33 = ((Gtk.Notebook.NotebookChild)(this.notebook1[this.table2]));
     w33.Position = 1;
     w33.TabExpand = false;
     // Notebook tab
     this.label2 = new Gtk.Label();
     this.label2.Name = "label2";
     this.label2.LabelProp = Mono.Unix.Catalog.GetString("Libraries");
     this.notebook1.SetTabLabel(this.table2, this.label2);
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.vbox7 = new Gtk.VBox();
     this.vbox7.Name = "vbox7";
     this.vbox7.Spacing = 6;
     this.vbox7.BorderWidth = ((uint)(3));
     // Container child vbox7.Gtk.Box+BoxChild
     this.table4 = new Gtk.Table(((uint)(2)), ((uint)(3)), false);
     this.table4.Name = "table4";
     this.table4.RowSpacing = ((uint)(10));
     this.table4.ColumnSpacing = ((uint)(10));
     // Container child table4.Gtk.Table+TableChild
     this.label10 = new Gtk.Label();
     this.label10.Name = "label10";
     this.label10.LabelProp = Mono.Unix.Catalog.GetString("Library:");
     this.table4.Add(this.label10);
     Gtk.Table.TableChild w34 = ((Gtk.Table.TableChild)(this.table4[this.label10]));
     w34.XOptions = ((Gtk.AttachOptions)(4));
     w34.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table4.Gtk.Table+TableChild
     this.libPathAddButton = new Gtk.Button();
     this.libPathAddButton.Sensitive = false;
     this.libPathAddButton.CanFocus = true;
     this.libPathAddButton.Name = "libPathAddButton";
     this.libPathAddButton.UseUnderline = true;
     this.libPathAddButton.Label = Mono.Unix.Catalog.GetString("Add");
     this.table4.Add(this.libPathAddButton);
     Gtk.Table.TableChild w35 = ((Gtk.Table.TableChild)(this.table4[this.libPathAddButton]));
     w35.LeftAttach = ((uint)(2));
     w35.RightAttach = ((uint)(3));
     w35.XOptions = ((Gtk.AttachOptions)(4));
     w35.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table4.Gtk.Table+TableChild
     this.libPathEntry = new Gtk.Entry();
     this.libPathEntry.CanFocus = true;
     this.libPathEntry.Name = "libPathEntry";
     this.libPathEntry.IsEditable = true;
     this.libPathEntry.InvisibleChar = '●';
     this.table4.Add(this.libPathEntry);
     Gtk.Table.TableChild w36 = ((Gtk.Table.TableChild)(this.table4[this.libPathEntry]));
     w36.LeftAttach = ((uint)(1));
     w36.RightAttach = ((uint)(2));
     w36.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table4.Gtk.Table+TableChild
     this.scrolledwindow3 = new Gtk.ScrolledWindow();
     this.scrolledwindow3.CanFocus = true;
     this.scrolledwindow3.Name = "scrolledwindow3";
     this.scrolledwindow3.VscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow3.HscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow3.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow3.Gtk.Container+ContainerChild
     this.libPathTreeView = new Gtk.TreeView();
     this.libPathTreeView.CanFocus = true;
     this.libPathTreeView.Name = "libPathTreeView";
     this.libPathTreeView.HeadersClickable = true;
     this.scrolledwindow3.Add(this.libPathTreeView);
     this.table4.Add(this.scrolledwindow3);
     Gtk.Table.TableChild w38 = ((Gtk.Table.TableChild)(this.table4[this.scrolledwindow3]));
     w38.TopAttach = ((uint)(1));
     w38.BottomAttach = ((uint)(2));
     w38.LeftAttach = ((uint)(1));
     w38.RightAttach = ((uint)(2));
     // Container child table4.Gtk.Table+TableChild
     this.vbox3 = new Gtk.VBox();
     this.vbox3.Name = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.libPathBrowseButton = new Gtk.Button();
     this.libPathBrowseButton.CanFocus = true;
     this.libPathBrowseButton.Name = "libPathBrowseButton";
     this.libPathBrowseButton.UseUnderline = true;
     this.libPathBrowseButton.Label = Mono.Unix.Catalog.GetString("Browse...");
     this.vbox3.Add(this.libPathBrowseButton);
     Gtk.Box.BoxChild w39 = ((Gtk.Box.BoxChild)(this.vbox3[this.libPathBrowseButton]));
     w39.Position = 0;
     w39.Expand = false;
     w39.Fill = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.libPathRemoveButton = new Gtk.Button();
     this.libPathRemoveButton.Sensitive = false;
     this.libPathRemoveButton.CanFocus = true;
     this.libPathRemoveButton.Name = "libPathRemoveButton";
     this.libPathRemoveButton.UseUnderline = true;
     this.libPathRemoveButton.Label = Mono.Unix.Catalog.GetString("Remove");
     this.vbox3.Add(this.libPathRemoveButton);
     Gtk.Box.BoxChild w40 = ((Gtk.Box.BoxChild)(this.vbox3[this.libPathRemoveButton]));
     w40.Position = 1;
     w40.Expand = false;
     w40.Fill = false;
     this.table4.Add(this.vbox3);
     Gtk.Table.TableChild w41 = ((Gtk.Table.TableChild)(this.table4[this.vbox3]));
     w41.TopAttach = ((uint)(1));
     w41.BottomAttach = ((uint)(2));
     w41.LeftAttach = ((uint)(2));
     w41.RightAttach = ((uint)(3));
     w41.XOptions = ((Gtk.AttachOptions)(4));
     this.vbox7.Add(this.table4);
     Gtk.Box.BoxChild w42 = ((Gtk.Box.BoxChild)(this.vbox7[this.table4]));
     w42.Position = 0;
     // Container child vbox7.Gtk.Box+BoxChild
     this.table3 = new Gtk.Table(((uint)(2)), ((uint)(3)), false);
     this.table3.Name = "table3";
     this.table3.RowSpacing = ((uint)(10));
     this.table3.ColumnSpacing = ((uint)(10));
     // Container child table3.Gtk.Table+TableChild
     this.includePathAddButton = new Gtk.Button();
     this.includePathAddButton.Sensitive = false;
     this.includePathAddButton.CanFocus = true;
     this.includePathAddButton.Name = "includePathAddButton";
     this.includePathAddButton.UseUnderline = true;
     this.includePathAddButton.Label = Mono.Unix.Catalog.GetString("Add");
     this.table3.Add(this.includePathAddButton);
     Gtk.Table.TableChild w43 = ((Gtk.Table.TableChild)(this.table3[this.includePathAddButton]));
     w43.LeftAttach = ((uint)(2));
     w43.RightAttach = ((uint)(3));
     w43.XOptions = ((Gtk.AttachOptions)(4));
     w43.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.includePathEntry = new Gtk.Entry();
     this.includePathEntry.CanFocus = true;
     this.includePathEntry.Name = "includePathEntry";
     this.includePathEntry.IsEditable = true;
     this.includePathEntry.InvisibleChar = '●';
     this.table3.Add(this.includePathEntry);
     Gtk.Table.TableChild w44 = ((Gtk.Table.TableChild)(this.table3[this.includePathEntry]));
     w44.LeftAttach = ((uint)(1));
     w44.RightAttach = ((uint)(2));
     w44.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.label9 = new Gtk.Label();
     this.label9.Name = "label9";
     this.label9.LabelProp = Mono.Unix.Catalog.GetString("Include:");
     this.table3.Add(this.label9);
     Gtk.Table.TableChild w45 = ((Gtk.Table.TableChild)(this.table3[this.label9]));
     w45.XOptions = ((Gtk.AttachOptions)(4));
     w45.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.scrolledwindow2 = new Gtk.ScrolledWindow();
     this.scrolledwindow2.CanFocus = true;
     this.scrolledwindow2.Name = "scrolledwindow2";
     this.scrolledwindow2.VscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow2.HscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow2.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow2.Gtk.Container+ContainerChild
     this.includePathTreeView = new Gtk.TreeView();
     this.includePathTreeView.CanFocus = true;
     this.includePathTreeView.Name = "includePathTreeView";
     this.includePathTreeView.HeadersClickable = true;
     this.scrolledwindow2.Add(this.includePathTreeView);
     this.table3.Add(this.scrolledwindow2);
     Gtk.Table.TableChild w47 = ((Gtk.Table.TableChild)(this.table3[this.scrolledwindow2]));
     w47.TopAttach = ((uint)(1));
     w47.BottomAttach = ((uint)(2));
     w47.LeftAttach = ((uint)(1));
     w47.RightAttach = ((uint)(2));
     // Container child table3.Gtk.Table+TableChild
     this.vbox5 = new Gtk.VBox();
     this.vbox5.Name = "vbox5";
     this.vbox5.Spacing = 6;
     // Container child vbox5.Gtk.Box+BoxChild
     this.includePathBrowseButton = new Gtk.Button();
     this.includePathBrowseButton.CanFocus = true;
     this.includePathBrowseButton.Name = "includePathBrowseButton";
     this.includePathBrowseButton.UseUnderline = true;
     this.includePathBrowseButton.Label = Mono.Unix.Catalog.GetString("Browse...");
     this.vbox5.Add(this.includePathBrowseButton);
     Gtk.Box.BoxChild w48 = ((Gtk.Box.BoxChild)(this.vbox5[this.includePathBrowseButton]));
     w48.Position = 0;
     w48.Expand = false;
     w48.Fill = false;
     // Container child vbox5.Gtk.Box+BoxChild
     this.includePathRemoveButton = new Gtk.Button();
     this.includePathRemoveButton.Sensitive = false;
     this.includePathRemoveButton.CanFocus = true;
     this.includePathRemoveButton.Name = "includePathRemoveButton";
     this.includePathRemoveButton.UseUnderline = true;
     this.includePathRemoveButton.Label = Mono.Unix.Catalog.GetString("Remove");
     this.vbox5.Add(this.includePathRemoveButton);
     Gtk.Box.BoxChild w49 = ((Gtk.Box.BoxChild)(this.vbox5[this.includePathRemoveButton]));
     w49.Position = 1;
     w49.Expand = false;
     w49.Fill = false;
     this.table3.Add(this.vbox5);
     Gtk.Table.TableChild w50 = ((Gtk.Table.TableChild)(this.table3[this.vbox5]));
     w50.TopAttach = ((uint)(1));
     w50.BottomAttach = ((uint)(2));
     w50.LeftAttach = ((uint)(2));
     w50.RightAttach = ((uint)(3));
     w50.XOptions = ((Gtk.AttachOptions)(4));
     this.vbox7.Add(this.table3);
     Gtk.Box.BoxChild w51 = ((Gtk.Box.BoxChild)(this.vbox7[this.table3]));
     w51.Position = 1;
     this.notebook1.Add(this.vbox7);
     Gtk.Notebook.NotebookChild w52 = ((Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox7]));
     w52.Position = 2;
     w52.TabExpand = false;
     // Notebook tab
     this.label3 = new Gtk.Label();
     this.label3.Name = "label3";
     this.label3.LabelProp = Mono.Unix.Catalog.GetString("Paths");
     this.notebook1.SetTabLabel(this.vbox7, this.label3);
     this.Add(this.notebook1);
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.Show();
     this.browseButton.Clicked += new System.EventHandler(this.OnBrowseButtonClick);
     this.removeLibButton.Clicked += new System.EventHandler(this.OnRemoveLibButtonClicked);
     this.removeLibButton.Clicked += new System.EventHandler(this.OnLibRemoved);
     this.libTreeView.CursorChanged += new System.EventHandler(this.OnLibTreeViewCursorChanged);
     this.libAddEntry.Changed += new System.EventHandler(this.OnLibAddEntryChanged);
     this.libAddEntry.Activated += new System.EventHandler(this.OnLibAddEntryActivated);
     this.addLibButton.Clicked += new System.EventHandler(this.OnLibAdded);
     this.libPathBrowseButton.Clicked += new System.EventHandler(this.OnLibPathBrowseButtonClick);
     this.libPathRemoveButton.Clicked += new System.EventHandler(this.OnLibPathRemoveButtonClicked);
     this.libPathRemoveButton.Clicked += new System.EventHandler(this.OnLibPathRemoved);
     this.libPathTreeView.CursorChanged += new System.EventHandler(this.OnLibPathTreeViewCursorChanged);
     this.libPathEntry.Changed += new System.EventHandler(this.OnLibPathEntryChanged);
     this.libPathEntry.Activated += new System.EventHandler(this.OnLibPathEntryActivated);
     this.libPathAddButton.Clicked += new System.EventHandler(this.OnLibPathAdded);
     this.includePathBrowseButton.Clicked += new System.EventHandler(this.OnIncludePathBrowseButtonClick);
     this.includePathRemoveButton.Clicked += new System.EventHandler(this.OnIncludePathRemoveButtonClicked);
     this.includePathRemoveButton.Clicked += new System.EventHandler(this.OnIncludePathRemoved);
     this.includePathTreeView.CursorChanged += new System.EventHandler(this.OnIncludePathTreeViewCursorChanged);
     this.includePathEntry.Changed += new System.EventHandler(this.OnIncludePathEntryChanged);
     this.includePathEntry.Activated += new System.EventHandler(this.OnIncludePathEntryActivated);
     this.includePathAddButton.Clicked += new System.EventHandler(this.OnIncludePathAdded);
 }
        protected internal virtual Gtk.ToolItem CreateToolItem(CommandManager manager)
        {
            if (cmdId == Command.Separator)
                return new Gtk.SeparatorToolItem ();

            Command cmd = manager.GetCommand (cmdId);
            if (cmd is CustomCommand) {
                Gtk.Widget child = (Gtk.Widget) Activator.CreateInstance (((CustomCommand)cmd).WidgetType);
                Gtk.ToolItem ti = new Gtk.ToolItem ();
                ti.Child = child;
                if (cmd.Text != null && cmd.Text.Length > 0) {
                    Gtk.Tooltips tips = new Gtk.Tooltips ();
                    ti.SetTooltip (tips, cmd.Text, cmd.Text);
                    tips.Enable ();
                }
                return ti;
            }

            ActionCommand acmd = cmd as ActionCommand;
            if (acmd == null)
                throw new InvalidOperationException ("Unknown cmd type.");

            if (acmd.CommandArray) {
                CommandMenu menu = new CommandMenu (manager);
                menu.Append (CreateMenuItem (manager));
                return new MenuToolButton (menu, acmd.Icon);
            }
            else if (acmd.ActionType == ActionType.Normal)
                return new CommandToolButton (cmdId, manager);
            else
                return new CommandToggleToolButton (cmdId, manager);
        }
Example #16
0
 public static void Build(object obj, string id)
 {
     System.Collections.Hashtable bindings = new System.Collections.Hashtable();
     if ((id == "LabCardCreator.EraseDialog"))
     {
         Gtk.Dialog cobj = ((Gtk.Dialog)(obj));
         // Widget LabCardCreator.EraseDialog
         cobj.Title          = "Erase card...";
         cobj.WindowPosition = ((Gtk.WindowPosition)(4));
         cobj.HasSeparator   = false;
         cobj.Events         = ((Gdk.EventMask)(256));
         cobj.Name           = "LabCardCreator.EraseDialog";
         cobj.HasDefault     = true;
         cobj.CanDefault     = true;
         // Internal child LabCardCreator.EraseDialog.VBox
         Gtk.VBox w1 = cobj.VBox;
         w1.BorderWidth = ((uint)(2));
         w1.Events      = ((Gdk.EventMask)(256));
         w1.Name        = "dialog_VBox";
         // Container child dialog_VBox.Gtk.Box+BoxChild
         Gtk.VBox w2 = new Gtk.VBox();
         w2.Events = ((Gdk.EventMask)(0));
         w2.Name   = "vbox1";
         // Container child vbox1.Gtk.Box+BoxChild
         Gtk.HBox w3 = new Gtk.HBox();
         w3.Events = ((Gdk.EventMask)(0));
         w3.Name   = "hbox1";
         // Container child hbox1.Gtk.Box+BoxChild
         Gtk.Image w4 = new Gtk.Image();
         w4.Pixbuf          = Gtk.IconTheme.Default.LoadIcon("gtk-dialog-warning", 48, 0);
         w4.Events          = ((Gdk.EventMask)(0));
         w4.Name            = "image3";
         w4.WidthRequest    = 70;
         bindings["image3"] = w4;
         w3.Add(w4);
         Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(w3[w4]));
         w5.Position = 0;
         w5.Expand   = false;
         w5.Fill     = false;
         // Container child hbox1.Gtk.Box+BoxChild
         Gtk.Label w6 = new Gtk.Label();
         w6.LabelProp         = "<b>Delete card content and format as Labor Card?</b>";
         w6.UseMarkup         = true;
         w6.Justify           = ((Gtk.Justification)(2));
         w6.Events            = ((Gdk.EventMask)(0));
         w6.Name              = "MsgLabel";
         bindings["MsgLabel"] = w6;
         w3.Add(w6);
         Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w3[w6]));
         w7.Position       = 1;
         w7.Padding        = ((uint)(10));
         bindings["hbox1"] = w3;
         w2.Add(w3);
         Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(w2[w3]));
         w8.Position = 0;
         w8.Expand   = false;
         w8.Padding  = ((uint)(10));
         // Container child vbox1.Gtk.Box+BoxChild
         Gtk.Expander w9  = new Gtk.Expander(null);
         Gtk.Tooltips w10 = new Gtk.Tooltips();
         w10.SetTip(w9, "Show hexdump of card content", "Show hexdump of card content");
         w9.CanFocus = true;
         w9.Events   = ((Gdk.EventMask)(0));
         w9.Name     = "ContentExpander";
         // Container child ContentExpander.Gtk.Container+ContainerChild
         Gtk.TextView w11 = new Gtk.TextView();
         w11.CursorVisible       = false;
         w11.Editable            = false;
         w11.AcceptsTab          = false;
         w11.CanFocus            = true;
         w11.Events              = ((Gdk.EventMask)(0));
         w11.Name                = "ContentView";
         bindings["ContentView"] = w11;
         w9.Add(w11);
         Gtk.Label w13 = new Gtk.Label();
         w13.LabelProp               = "Show detailed card content";
         w13.UseUnderline            = true;
         w13.Events                  = ((Gdk.EventMask)(0));
         w13.Name                    = "GtkLabel";
         bindings["GtkLabel"]        = w13;
         w9.LabelWidget              = w13;
         bindings["ContentExpander"] = w9;
         w2.Add(w9);
         Gtk.Box.BoxChild w14 = ((Gtk.Box.BoxChild)(w2[w9]));
         w14.Position      = 1;
         bindings["vbox1"] = w2;
         w1.Add(w2);
         Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(w1[w2]));
         w15.Position            = 0;
         bindings["dialog_VBox"] = w1;
         // Internal child LabCardCreator.EraseDialog.ActionArea
         Gtk.HButtonBox w16 = cobj.ActionArea;
         w16.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
         w16.Spacing     = 6;
         w16.BorderWidth = ((uint)(5));
         w16.Events      = ((Gdk.EventMask)(256));
         w16.Name        = "LabCardCreator.EraseDialog_ActionArea";
         // Container child LabCardCreator.EraseDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild
         Gtk.Button w17 = new Gtk.Button();
         w17.UseStock             = true;
         w17.UseUnderline         = true;
         w17.CanFocus             = true;
         w17.Events               = ((Gdk.EventMask)(0));
         w17.Name                 = "CancelButton";
         w17.HasDefault           = true;
         w17.CanDefault           = true;
         w17.Label                = "gtk-cancel";
         bindings["CancelButton"] = w17;
         cobj.AddActionWidget(w17, -2);
         Gtk.ButtonBox.ButtonBoxChild w18 = ((Gtk.ButtonBox.ButtonBoxChild)(w16[w17]));
         w18.Expand = false;
         w18.Fill   = false;
         // Container child LabCardCreator.EraseDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild
         Gtk.Button w19 = new Gtk.Button();
         w19.UseStock             = true;
         w19.UseUnderline         = true;
         w19.CanFocus             = true;
         w19.Events               = ((Gdk.EventMask)(0));
         w19.Name                 = "DeleteButton";
         w19.CanDefault           = true;
         w19.Label                = "gtk-delete";
         bindings["DeleteButton"] = w19;
         cobj.AddActionWidget(w19, -3);
         Gtk.ButtonBox.ButtonBoxChild w20 = ((Gtk.ButtonBox.ButtonBoxChild)(w16[w19]));
         w20.Position = 1;
         w20.Expand   = false;
         w20.Fill     = false;
         bindings["LabCardCreator.EraseDialog_ActionArea"] = w16;
         cobj.DefaultWidth  = 458;
         cobj.DefaultHeight = 161;
         bindings["LabCardCreator.EraseDialog"] = cobj;
         w4.Show();
         w6.Show();
         w3.Show();
         w11.Show();
         w13.Show();
         w9.Show();
         w2.Show();
         w1.Show();
         w17.Show();
         w19.Show();
         w16.Show();
         cobj.Show();
         w9.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnExpander")));
     }
     else
     {
         if ((id == "LabCardCreator.MainWindow"))
         {
             Gtk.Window cobj = ((Gtk.Window)(obj));
             // Widget LabCardCreator.MainWindow
             cobj.Title = "Labor Card Creator";
             Gtk.UIManager   w1 = new Gtk.UIManager();
             Gtk.ActionGroup w2 = new Gtk.ActionGroup("Default");
             Gtk.Action      w3 = new Gtk.Action("CardCreator", "_CardCreator", null, null);
             w3.ShortLabel           = "_CardCreator";
             bindings["CardCreator"] = w3;
             w2.Add(w3, null);
             Gtk.Action w4 = new Gtk.Action("Help", "_Help", null, null);
             w4.ShortLabel    = "_Help";
             bindings["Help"] = w4;
             w2.Add(w4, null);
             Gtk.Action w5 = new Gtk.Action("Quit", "Quit", null, "gtk-quit");
             w5.ShortLabel    = "Quit";
             bindings["Quit"] = w5;
             w2.Add(w5, null);
             Gtk.Action w6 = new Gtk.Action("About", "_About...", null, "gtk-about");
             w6.ShortLabel     = "_About";
             bindings["About"] = w6;
             w2.Add(w6, null);
             Gtk.Action w7 = new Gtk.Action("ConnectCardTerminal", "Connect Card Terminal...", null, "gtk-connect");
             w7.ShortLabel = "Connect Card Terminal";
             bindings["ConnectCardTerminal"] = w7;
             w2.Add(w7, null);
             Gtk.Action w8 = new Gtk.Action("DisconnectCardTerminal", "Disconnect Card Terminal", null, "gtk-disconnect");
             w8.ShortLabel = "Disconnect Card Terminal";
             w8.Sensitive  = false;
             bindings["DisconnectCardTerminal"] = w8;
             w2.Add(w8, null);
             Gtk.Action w9 = new Gtk.Action("ViewHexdump", "View _Hexdump...", null, "gtk-justify-fill");
             w9.ShortLabel           = "View _Hexdump";
             bindings["ViewHexdump"] = w9;
             w2.Add(w9, null);
             Gtk.Action w10 = new Gtk.Action("EraseCard", "Erase Card...", null, "gtk-clear");
             w10.ShortLabel        = "Erase Card...";
             bindings["EraseCard"] = w10;
             w2.Add(w10, null);
             Gtk.Action w11 = new Gtk.Action("", "------------------", null, null);
             w11.ShortLabel = "------------------";
             bindings[""]   = w11;
             w2.Add(w11, null);
             w1.InsertActionGroup(w2, 0);
             cobj.AddAccelGroup(w1.AccelGroup);
             cobj.Icon           = Gdk.Pixbuf.LoadFromResource("Labor.png");
             cobj.WindowPosition = ((Gtk.WindowPosition)(4));
             cobj.Events         = ((Gdk.EventMask)(0));
             cobj.Name           = "LabCardCreator.MainWindow";
             // Container child LabCardCreator.MainWindow.Gtk.Container+ContainerChild
             Gtk.VBox w12 = new Gtk.VBox();
             w12.Events = ((Gdk.EventMask)(0));
             w12.Name   = "vbox1";
             // Container child vbox1.Gtk.Box+BoxChild
             w1.AddUiFromString("<ui><menubar name='menubar1'><menu action='CardCreator'><menuitem action='ConnectCardTerminal'/><menuitem action='DisconnectCardTerminal'/><menuitem action='ViewHexdump'/><menuitem action='EraseCard'/><menuitem action='Quit'/><menuitem/></menu><menu action='Help'><menuitem action='About'/></menu></menubar></ui>");
             Gtk.MenuBar w13 = ((Gtk.MenuBar)(w1.GetWidget("/menubar1")));
             w13.Events           = ((Gdk.EventMask)(0));
             w13.Name             = "menubar1";
             bindings["menubar1"] = w13;
             w12.Add(w13);
             Gtk.Box.BoxChild w14 = ((Gtk.Box.BoxChild)(w12[w13]));
             w14.Position = 0;
             w14.Expand   = false;
             w14.Fill     = false;
             // Container child vbox1.Gtk.Box+BoxChild
             Gtk.Table w15 = new Gtk.Table(((uint)(4)), ((uint)(2)), false);
             w15.RowSpacing    = ((uint)(6));
             w15.ColumnSpacing = ((uint)(10));
             w15.BorderWidth   = ((uint)(6));
             w15.Events        = ((Gdk.EventMask)(0));
             w15.Name          = "table2";
             // Container child table2.Gtk.Table+TableChild
             Gtk.Entry    w16 = new Gtk.Entry();
             Gtk.Tooltips w17 = new Gtk.Tooltips();
             w17.SetTip(w16, "Internal Card Number", "Internal Card Number");
             w16.Text                = "2342";
             w16.IsEditable          = false;
             w16.InvisibleChar       = '●';
             w16.CanFocus            = true;
             w16.Events              = ((Gdk.EventMask)(0));
             w16.Name                = "numberEntry";
             w16.Sensitive           = false;
             bindings["numberEntry"] = w16;
             w15.Add(w16);
             Gtk.Table.TableChild w18 = ((Gtk.Table.TableChild)(w15[w16]));
             w18.BottomAttach = ((uint)(3));
             w18.LeftAttach   = ((uint)(1));
             w18.RightAttach  = ((uint)(2));
             w18.TopAttach    = ((uint)(2));
             w18.YOptions     = ((Gtk.AttachOptions)(4));
             w18.XOptions     = ((Gtk.AttachOptions)(4));
             // Container child table2.Gtk.Table+TableChild
             Gtk.Entry w19 = new Gtk.Entry();
             w19.IsEditable        = true;
             w19.InvisibleChar     = '●';
             w19.CanFocus          = true;
             w19.Events            = ((Gdk.EventMask)(0));
             w19.Name              = "nameEntry";
             w19.Sensitive         = false;
             bindings["nameEntry"] = w19;
             w15.Add(w19);
             Gtk.Table.TableChild w20 = ((Gtk.Table.TableChild)(w15[w19]));
             w20.BottomAttach = ((uint)(2));
             w20.LeftAttach   = ((uint)(1));
             w20.RightAttach  = ((uint)(2));
             w20.TopAttach    = ((uint)(1));
             w20.YOptions     = ((Gtk.AttachOptions)(4));
             w20.XOptions     = ((Gtk.AttachOptions)(4));
             // Container child table2.Gtk.Table+TableChild
             Gtk.Entry w21 = new Gtk.Entry();
             w21.IsEditable        = true;
             w21.WidthChars        = 7;
             w21.MaxLength         = 7;
             w21.InvisibleChar     = '●';
             w21.CanFocus          = true;
             w21.Events            = ((Gdk.EventMask)(0));
             w21.Name              = "nickEntry";
             w21.Sensitive         = false;
             bindings["nickEntry"] = w21;
             w15.Add(w21);
             Gtk.Table.TableChild w22 = ((Gtk.Table.TableChild)(w15[w21]));
             w22.LeftAttach  = ((uint)(1));
             w22.RightAttach = ((uint)(2));
             w22.YOptions    = ((Gtk.AttachOptions)(4));
             // Container child table2.Gtk.Table+TableChild
             Gtk.Label w23 = new Gtk.Label();
             w23.LabelProp      = "Card Number:";
             w23.UseUnderline   = true;
             w23.Xalign         = 1F;
             w23.Events         = ((Gdk.EventMask)(0));
             w23.Name           = "label3";
             bindings["label3"] = w23;
             w15.Add(w23);
             Gtk.Table.TableChild w24 = ((Gtk.Table.TableChild)(w15[w23]));
             w24.BottomAttach = ((uint)(3));
             w24.TopAttach    = ((uint)(2));
             w24.YOptions     = ((Gtk.AttachOptions)(4));
             w24.XOptions     = ((Gtk.AttachOptions)(4));
             // Container child table2.Gtk.Table+TableChild
             Gtk.Label w25 = new Gtk.Label();
             w25.LabelProp      = "Real N_ame:";
             w25.UseUnderline   = true;
             w25.Xalign         = 1F;
             w25.Events         = ((Gdk.EventMask)(0));
             w25.Name           = "label2";
             bindings["label2"] = w25;
             w15.Add(w25);
             Gtk.Table.TableChild w26 = ((Gtk.Table.TableChild)(w15[w25]));
             w26.BottomAttach = ((uint)(2));
             w26.TopAttach    = ((uint)(1));
             w26.YOptions     = ((Gtk.AttachOptions)(4));
             w26.XOptions     = ((Gtk.AttachOptions)(4));
             // Container child table2.Gtk.Table+TableChild
             Gtk.Label w27 = new Gtk.Label();
             w27.LabelProp      = "_Nick:";
             w27.UseUnderline   = true;
             w27.Xalign         = 1F;
             w27.Events         = ((Gdk.EventMask)(0));
             w27.Name           = "label4";
             bindings["label4"] = w27;
             w15.Add(w27);
             Gtk.Table.TableChild w28 = ((Gtk.Table.TableChild)(w15[w27]));
             w28.YOptions = ((Gtk.AttachOptions)(4));
             w28.XOptions = ((Gtk.AttachOptions)(4));
             // Container child table2.Gtk.Table+TableChild
             Gtk.Label w29 = new Gtk.Label();
             w29.LabelProp      = "Permissions:";
             w29.UseUnderline   = true;
             w29.Xalign         = 1F;
             w29.Events         = ((Gdk.EventMask)(0));
             w29.Name           = "label1";
             bindings["label1"] = w29;
             w15.Add(w29);
             Gtk.Table.TableChild w30 = ((Gtk.Table.TableChild)(w15[w29]));
             w30.BottomAttach = ((uint)(4));
             w30.TopAttach    = ((uint)(3));
             w30.YOptions     = ((Gtk.AttachOptions)(4));
             w30.XOptions     = ((Gtk.AttachOptions)(4));
             // Container child table2.Gtk.Table+TableChild
             Gtk.HBox w31 = new Gtk.HBox();
             w31.Events = ((Gdk.EventMask)(0));
             w31.Name   = "hbox2";
             // Container child hbox2.Gtk.Box+BoxChild
             Gtk.CheckButton w32 = new Gtk.CheckButton();
             w32.Label              = "Admin";
             w32.DrawIndicator      = true;
             w32.CanFocus           = true;
             w32.Events             = ((Gdk.EventMask)(0));
             w32.Name               = "adminCheck";
             w32.Sensitive          = false;
             bindings["adminCheck"] = w32;
             w31.Add(w32);
             Gtk.Box.BoxChild w33 = ((Gtk.Box.BoxChild)(w31[w32]));
             w33.Position = 0;
             // Container child hbox2.Gtk.Box+BoxChild
             Gtk.CheckButton w34 = new Gtk.CheckButton();
             w34.Label              = "Door 0";
             w34.Active             = true;
             w34.DrawIndicator      = true;
             w34.CanFocus           = true;
             w34.Events             = ((Gdk.EventMask)(0));
             w34.Name               = "door0Check";
             w34.Sensitive          = false;
             bindings["door0Check"] = w34;
             w31.Add(w34);
             Gtk.Box.BoxChild w35 = ((Gtk.Box.BoxChild)(w31[w34]));
             w35.Position = 1;
             // Container child hbox2.Gtk.Box+BoxChild
             Gtk.CheckButton w36 = new Gtk.CheckButton();
             w36.Label              = "Door 1";
             w36.Active             = true;
             w36.DrawIndicator      = true;
             w36.CanFocus           = true;
             w36.Events             = ((Gdk.EventMask)(0));
             w36.Name               = "door1Check";
             w36.Sensitive          = false;
             bindings["door1Check"] = w36;
             w31.Add(w36);
             Gtk.Box.BoxChild w37 = ((Gtk.Box.BoxChild)(w31[w36]));
             w37.Position      = 2;
             bindings["hbox2"] = w31;
             w15.Add(w31);
             Gtk.Table.TableChild w38 = ((Gtk.Table.TableChild)(w15[w31]));
             w38.BottomAttach   = ((uint)(4));
             w38.LeftAttach     = ((uint)(1));
             w38.RightAttach    = ((uint)(2));
             w38.TopAttach      = ((uint)(3));
             w38.YOptions       = ((Gtk.AttachOptions)(4));
             w38.XOptions       = ((Gtk.AttachOptions)(4));
             bindings["table2"] = w15;
             w12.Add(w15);
             Gtk.Box.BoxChild w39 = ((Gtk.Box.BoxChild)(w12[w15]));
             w39.Position = 1;
             w39.Expand   = false;
             w39.Fill     = false;
             // Container child vbox1.Gtk.Box+BoxChild
             Gtk.Statusbar w40 = new Gtk.Statusbar();
             w40.HasResizeGrip     = false;
             w40.Events            = ((Gdk.EventMask)(0));
             w40.Name              = "Statusbar";
             bindings["Statusbar"] = w40;
             w12.Add(w40);
             Gtk.Box.BoxChild w41 = ((Gtk.Box.BoxChild)(w12[w40]));
             w41.PackType = ((Gtk.PackType)(1));
             w41.Position = 2;
             w41.Expand   = false;
             w41.Fill     = false;
             // Container child vbox1.Gtk.Box+BoxChild
             Gtk.HBox w42 = new Gtk.HBox();
             w42.Events = ((Gdk.EventMask)(0));
             w42.Name   = "hbox3";
             // Container child hbox3.Gtk.Box+BoxChild
             Gtk.Image w43 = new Gtk.Image();
             w43.Pixbuf          = Gdk.Pixbuf.LoadFromResource("Labor.png");
             w43.Events          = ((Gdk.EventMask)(0));
             w43.Name            = "image11";
             bindings["image11"] = w43;
             w42.Add(w43);
             Gtk.Box.BoxChild w44 = ((Gtk.Box.BoxChild)(w42[w43]));
             w44.Position = 0;
             w44.Expand   = false;
             w44.Fill     = false;
             w44.Padding  = ((uint)(30));
             // Container child hbox3.Gtk.Box+BoxChild
             Gtk.HBox w45 = new Gtk.HBox();
             w45.Events = ((Gdk.EventMask)(0));
             w45.Name   = "hbox1";
             // Container child hbox1.Gtk.Box+BoxChild
             Gtk.HButtonBox w46 = new Gtk.HButtonBox();
             w46.Spacing     = 20;
             w46.BorderWidth = ((uint)(11));
             w46.Events      = ((Gdk.EventMask)(0));
             w46.Name        = "hbuttonbox1";
             // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
             Gtk.Button w47 = new Gtk.Button();
             w47.UseUnderline = true;
             w47.CanFocus     = true;
             w47.Events       = ((Gdk.EventMask)(0));
             w47.Name         = "writeButton";
             w47.Sensitive    = false;
             w47.HasDefault   = true;
             w47.CanDefault   = true;
             // Container child writeButton.Gtk.Container+ContainerChild
             Gtk.Alignment w48 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
             w48.Events = ((Gdk.EventMask)(0));
             w48.Name   = "GtkAlignment";
             // Container child GtkAlignment.Gtk.Container+ContainerChild
             Gtk.HBox w49 = new Gtk.HBox();
             w49.Spacing = 2;
             w49.Events  = ((Gdk.EventMask)(0));
             w49.Name    = "GtkHBox";
             // Container child GtkHBox.Gtk.Container+ContainerChild
             Gtk.Image w50 = new Gtk.Image();
             w50.Pixbuf         = Gtk.IconTheme.Default.LoadIcon("stock_creditcard", 16, 0);
             w50.Events         = ((Gdk.EventMask)(0));
             w50.Name           = "image1";
             bindings["image1"] = w50;
             w49.Add(w50);
             // Container child GtkHBox.Gtk.Container+ContainerChild
             Gtk.Label w52 = new Gtk.Label();
             w52.LabelProp        = "_Write to card";
             w52.UseUnderline     = true;
             w52.Events           = ((Gdk.EventMask)(0));
             w52.Name             = "GtkLabel";
             bindings["GtkLabel"] = w52;
             w49.Add(w52);
             bindings["GtkHBox"] = w49;
             w48.Add(w49);
             bindings["GtkAlignment"] = w48;
             w47.Add(w48);
             bindings["writeButton"] = w47;
             w46.Add(w47);
             Gtk.ButtonBox.ButtonBoxChild w56 = ((Gtk.ButtonBox.ButtonBoxChild)(w46[w47]));
             w56.Expand = false;
             w56.Fill   = false;
             bindings["hbuttonbox1"] = w46;
             w45.Add(w46);
             Gtk.Box.BoxChild w57 = ((Gtk.Box.BoxChild)(w45[w46]));
             w57.Position      = 0;
             bindings["hbox1"] = w45;
             w42.Add(w45);
             Gtk.Box.BoxChild w58 = ((Gtk.Box.BoxChild)(w42[w45]));
             w58.Position      = 1;
             bindings["hbox3"] = w42;
             w12.Add(w42);
             Gtk.Box.BoxChild w59 = ((Gtk.Box.BoxChild)(w12[w42]));
             w59.PackType      = ((Gtk.PackType)(1));
             w59.Position      = 3;
             w59.Expand        = false;
             w59.Fill          = false;
             bindings["vbox1"] = w12;
             cobj.Add(w12);
             cobj.DefaultWidth  = 516;
             cobj.DefaultHeight = 270;
             bindings["LabCardCreator.MainWindow"] = cobj;
             w13.Show();
             w16.Show();
             w19.Show();
             w21.Show();
             w23.Show();
             w25.Show();
             w27.Show();
             w29.Show();
             w32.Show();
             w34.Show();
             w36.Show();
             w31.Show();
             w15.Show();
             w40.Show();
             w43.Show();
             w50.Show();
             w52.Show();
             w49.Show();
             w48.Show();
             w47.Show();
             w46.Show();
             w45.Show();
             w42.Show();
             w12.Show();
             cobj.Show();
             cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent")));
             w5.Activated     += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnQuitActivated")));
             w6.Activated     += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnAboutActivated")));
             w7.Activated     += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnConnectActivated")));
             w8.Activated     += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnDisconnectActivated")));
             w9.Activated     += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnViewHexdumpActivated")));
             w10.Activated    += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnEraseActivated")));
             w47.Clicked      += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnWriteBtnClicked")));
         }
     }
     System.Reflection.FieldInfo[] fields = obj.GetType().GetFields(((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) | System.Reflection.BindingFlags.Instance));
     for (int n = 0; (n < fields.Length); n = (n + 1))
     {
         System.Reflection.FieldInfo field = fields[n];
         object widget = bindings[field.Name];
         if (((widget != null) && field.FieldType.IsInstanceOfType(widget)))
         {
             field.SetValue(obj, widget);
         }
     }
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MonoDevelop.D.OptionPanels.DCompilerOptions
     global::Stetic.BinContainer.Attach (this);
     this.Name = "MonoDevelop.D.OptionPanels.DCompilerOptions";
     // Container child MonoDevelop.D.OptionPanels.DCompilerOptions.Gtk.Container+ContainerChild
     this.vbox8 = new global::Gtk.VBox ();
     this.vbox8.Name = "vbox8";
     this.vbox8.Spacing = 6;
     // Container child vbox8.Gtk.Box+BoxChild
     this.table6 = new global::Gtk.Table (((uint)(7)), ((uint)(2)), false);
     this.table6.Name = "table6";
     this.table6.RowSpacing = ((uint)(6));
     this.table6.ColumnSpacing = ((uint)(6));
     // Container child table6.Gtk.Table+TableChild
     this.btnDefaults = new global::Gtk.Button ();
     this.btnDefaults.CanFocus = true;
     this.btnDefaults.Name = "btnDefaults";
     this.btnDefaults.UseUnderline = true;
     this.btnDefaults.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Defaults");
     this.table6.Add (this.btnDefaults);
     global::Gtk.Table.TableChild w1 = ((global::Gtk.Table.TableChild)(this.table6 [this.btnDefaults]));
     w1.TopAttach = ((uint)(6));
     w1.BottomAttach = ((uint)(7));
     w1.XOptions = ((global::Gtk.AttachOptions)(4));
     w1.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.hbox2 = new global::Gtk.HBox ();
     this.hbox2.Name = "hbox2";
     this.hbox2.Spacing = 2;
     // Container child hbox2.Gtk.Box+BoxChild
     this.txtBinPath = new global::Gtk.Entry ();
     this.txtBinPath.CanFocus = true;
     this.txtBinPath.Name = "txtBinPath";
     this.txtBinPath.IsEditable = true;
     this.txtBinPath.InvisibleChar = '●';
     this.hbox2.Add (this.txtBinPath);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.txtBinPath]));
     w2.Position = 0;
     // Container child hbox2.Gtk.Box+BoxChild
     this.button_BinPathBrowser = new global::Gtk.Button ();
     this.button_BinPathBrowser.CanFocus = true;
     this.button_BinPathBrowser.Name = "button_BinPathBrowser";
     this.button_BinPathBrowser.UseUnderline = true;
     this.button_BinPathBrowser.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Browse...");
     this.hbox2.Add (this.button_BinPathBrowser);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.button_BinPathBrowser]));
     w3.Position = 1;
     w3.Expand = false;
     w3.Fill = false;
     this.table6.Add (this.hbox2);
     global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table6 [this.hbox2]));
     w4.TopAttach = ((uint)(1));
     w4.BottomAttach = ((uint)(2));
     w4.LeftAttach = ((uint)(1));
     w4.RightAttach = ((uint)(2));
     w4.XOptions = ((global::Gtk.AttachOptions)(4));
     w4.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.hbox4 = new global::Gtk.HBox ();
     this.hbox4.Name = "hbox4";
     this.hbox4.Spacing = 2;
     // Container child hbox4.Gtk.Box+BoxChild
     this.cmbCompilers = global::Gtk.ComboBox.NewText ();
     this.cmbCompilers.Name = "cmbCompilers";
     this.hbox4.Add (this.cmbCompilers);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.cmbCompilers]));
     w5.Position = 0;
     // Container child hbox4.Gtk.Box+BoxChild
     this.btnMakeDefault = new global::Gtk.ToggleButton ();
     global::Gtk.Tooltips w6 = new Gtk.Tooltips ();
     w6.SetTip (this.btnMakeDefault, "Click to make the current configuration default", "Click to make the current configuration default");
     this.btnMakeDefault.Name = "btnMakeDefault";
     this.btnMakeDefault.UseUnderline = true;
     this.btnMakeDefault.Active = true;
     this.btnMakeDefault.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Make Default");
     this.hbox4.Add (this.btnMakeDefault);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.btnMakeDefault]));
     w7.Position = 1;
     w7.Expand = false;
     w7.Fill = false;
     this.table6.Add (this.hbox4);
     global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table6 [this.hbox4]));
     w8.LeftAttach = ((uint)(1));
     w8.RightAttach = ((uint)(2));
     w8.XOptions = ((global::Gtk.AttachOptions)(4));
     w8.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.hbox8 = new global::Gtk.HBox ();
     this.hbox8.Name = "hbox8";
     this.hbox8.Spacing = 6;
     // Container child hbox8.Gtk.Box+BoxChild
     this.btnDebugArguments = new global::Gtk.Button ();
     this.btnDebugArguments.CanFocus = true;
     this.btnDebugArguments.Name = "btnDebugArguments";
     this.btnDebugArguments.UseUnderline = true;
     this.btnDebugArguments.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Debug Arguments");
     this.hbox8.Add (this.btnDebugArguments);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox8 [this.btnDebugArguments]));
     w9.Position = 1;
     w9.Expand = false;
     w9.Fill = false;
     // Container child hbox8.Gtk.Box+BoxChild
     this.btnReleaseArguments = new global::Gtk.Button ();
     this.btnReleaseArguments.CanFocus = true;
     this.btnReleaseArguments.Name = "btnReleaseArguments";
     this.btnReleaseArguments.UseUnderline = true;
     this.btnReleaseArguments.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Release Arguments");
     this.hbox8.Add (this.btnReleaseArguments);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.hbox8 [this.btnReleaseArguments]));
     w10.Position = 2;
     w10.Expand = false;
     w10.Fill = false;
     this.table6.Add (this.hbox8);
     global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.table6 [this.hbox8]));
     w11.TopAttach = ((uint)(6));
     w11.BottomAttach = ((uint)(7));
     w11.LeftAttach = ((uint)(1));
     w11.RightAttach = ((uint)(2));
     w11.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.label2 = new global::Gtk.Label ();
     this.label2.Name = "label2";
     this.label2.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Toolchain bin path");
     this.table6.Add (this.label2);
     global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.table6 [this.label2]));
     w12.TopAttach = ((uint)(1));
     w12.BottomAttach = ((uint)(2));
     w12.XOptions = ((global::Gtk.AttachOptions)(4));
     w12.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.label28 = new global::Gtk.Label ();
     this.label28.Name = "label28";
     this.label28.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("\"Static library\" linker");
     this.table6.Add (this.label28);
     global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table6 [this.label28]));
     w13.TopAttach = ((uint)(5));
     w13.BottomAttach = ((uint)(6));
     w13.XOptions = ((global::Gtk.AttachOptions)(4));
     w13.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.label29 = new global::Gtk.Label ();
     this.label29.Name = "label29";
     this.label29.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("\"Shared library\" linker");
     this.table6.Add (this.label29);
     global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table6 [this.label29]));
     w14.TopAttach = ((uint)(4));
     w14.BottomAttach = ((uint)(5));
     w14.XOptions = ((global::Gtk.AttachOptions)(4));
     w14.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.label3 = new global::Gtk.Label ();
     this.label3.Name = "label3";
     this.label3.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Compiler");
     this.table6.Add (this.label3);
     global::Gtk.Table.TableChild w15 = ((global::Gtk.Table.TableChild)(this.table6 [this.label3]));
     w15.XOptions = ((global::Gtk.AttachOptions)(4));
     w15.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.label30 = new global::Gtk.Label ();
     this.label30.Name = "label30";
     this.label30.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("\"Executable\" linker");
     this.table6.Add (this.label30);
     global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.table6 [this.label30]));
     w16.TopAttach = ((uint)(3));
     w16.BottomAttach = ((uint)(4));
     w16.XOptions = ((global::Gtk.AttachOptions)(4));
     w16.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.label31 = new global::Gtk.Label ();
     this.label31.Name = "label31";
     this.label31.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Compiler executable");
     this.table6.Add (this.label31);
     global::Gtk.Table.TableChild w17 = ((global::Gtk.Table.TableChild)(this.table6 [this.label31]));
     w17.TopAttach = ((uint)(2));
     w17.BottomAttach = ((uint)(3));
     w17.XOptions = ((global::Gtk.AttachOptions)(4));
     w17.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.txtCompiler = new global::Gtk.Entry ();
     this.txtCompiler.CanFocus = true;
     this.txtCompiler.Name = "txtCompiler";
     this.txtCompiler.IsEditable = true;
     this.txtCompiler.InvisibleChar = '•';
     this.table6.Add (this.txtCompiler);
     global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.table6 [this.txtCompiler]));
     w18.TopAttach = ((uint)(2));
     w18.BottomAttach = ((uint)(3));
     w18.LeftAttach = ((uint)(1));
     w18.RightAttach = ((uint)(2));
     w18.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.txtConsoleAppLinker = new global::Gtk.Entry ();
     this.txtConsoleAppLinker.CanFocus = true;
     this.txtConsoleAppLinker.Name = "txtConsoleAppLinker";
     this.txtConsoleAppLinker.IsEditable = true;
     this.txtConsoleAppLinker.InvisibleChar = '•';
     this.table6.Add (this.txtConsoleAppLinker);
     global::Gtk.Table.TableChild w19 = ((global::Gtk.Table.TableChild)(this.table6 [this.txtConsoleAppLinker]));
     w19.TopAttach = ((uint)(3));
     w19.BottomAttach = ((uint)(4));
     w19.LeftAttach = ((uint)(1));
     w19.RightAttach = ((uint)(2));
     w19.XOptions = ((global::Gtk.AttachOptions)(4));
     w19.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.txtSharedLibLinker = new global::Gtk.Entry ();
     this.txtSharedLibLinker.CanFocus = true;
     this.txtSharedLibLinker.Name = "txtSharedLibLinker";
     this.txtSharedLibLinker.IsEditable = true;
     this.txtSharedLibLinker.InvisibleChar = '•';
     this.table6.Add (this.txtSharedLibLinker);
     global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.table6 [this.txtSharedLibLinker]));
     w20.TopAttach = ((uint)(4));
     w20.BottomAttach = ((uint)(5));
     w20.LeftAttach = ((uint)(1));
     w20.RightAttach = ((uint)(2));
     w20.XOptions = ((global::Gtk.AttachOptions)(4));
     w20.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table6.Gtk.Table+TableChild
     this.txtStaticLibLinker = new global::Gtk.Entry ();
     this.txtStaticLibLinker.CanFocus = true;
     this.txtStaticLibLinker.Name = "txtStaticLibLinker";
     this.txtStaticLibLinker.IsEditable = true;
     this.txtStaticLibLinker.InvisibleChar = '•';
     this.table6.Add (this.txtStaticLibLinker);
     global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.table6 [this.txtStaticLibLinker]));
     w21.TopAttach = ((uint)(5));
     w21.BottomAttach = ((uint)(6));
     w21.LeftAttach = ((uint)(1));
     w21.RightAttach = ((uint)(2));
     w21.XOptions = ((global::Gtk.AttachOptions)(4));
     w21.YOptions = ((global::Gtk.AttachOptions)(4));
     this.vbox8.Add (this.table6);
     global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.vbox8 [this.table6]));
     w22.Position = 0;
     w22.Expand = false;
     w22.Fill = false;
     // Container child vbox8.Gtk.Box+BoxChild
     this.notebook2 = new global::Gtk.Notebook ();
     this.notebook2.CanFocus = true;
     this.notebook2.Name = "notebook2";
     this.notebook2.CurrentPage = 1;
     this.notebook2.ShowBorder = false;
     // Container child notebook2.Gtk.Notebook+NotebookChild
     this.vbox2 = new global::Gtk.VBox ();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
     this.GtkScrolledWindow.Name = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.text_DefaultLibraries = new global::Gtk.TextView ();
     w6.SetTip (this.text_DefaultLibraries, "A line-separated list of library references to link in by default", "A line-separated list of library references to link in by default");
     this.text_DefaultLibraries.HeightRequest = 80;
     this.text_DefaultLibraries.CanFocus = true;
     this.text_DefaultLibraries.Name = "text_DefaultLibraries";
     this.GtkScrolledWindow.Add (this.text_DefaultLibraries);
     this.vbox2.Add (this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.GtkScrolledWindow]));
     w24.Position = 0;
     // Container child vbox2.Gtk.Box+BoxChild
     this.check_enableLibPrefixing = new global::Gtk.CheckButton ();
     w6.SetTip (this.check_enableLibPrefixing, "If checked, all referenced libraries that can not be found locally will be stripped by their file extensions and get a \"-L-l\" prefix as they are passed to the compiler during project building.\n'../myCustomLib/bin/myCustomLib.a' remains untouched.\n'libphobos2.a' becomes '-L-llibphobos2' on compilation.\nThis is mainly activated when using the gdc compiler.", "If checked, all referenced libraries that can not be found locally will be stripped by their file extensions and get a \"-L-l\" prefix as they are passed to the compiler during project building.\n'../myCustomLib/bin/myCustomLib.a' remains untouched.\n'libphobos2.a' becomes '-L-llibphobos2' on compilation.\nThis is mainly activated when using the gdc compiler.");
     this.check_enableLibPrefixing.CanFocus = true;
     this.check_enableLibPrefixing.Name = "check_enableLibPrefixing";
     this.check_enableLibPrefixing.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Enable gdc-specific import lib prefix stripping (e.g. libopengl32.a -> opengl32)");
     this.check_enableLibPrefixing.Active = true;
     this.check_enableLibPrefixing.DrawIndicator = true;
     this.check_enableLibPrefixing.UseUnderline = true;
     this.vbox2.Add (this.check_enableLibPrefixing);
     global::Gtk.Box.BoxChild w25 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.check_enableLibPrefixing]));
     w25.Position = 1;
     w25.Expand = false;
     w25.Fill = false;
     this.notebook2.Add (this.vbox2);
     // Notebook tab
     this.label12 = new global::Gtk.Label ();
     this.label12.Name = "label12";
     this.label12.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Default Libraries");
     this.notebook2.SetTabLabel (this.vbox2, this.label12);
     this.label12.ShowAll ();
     // Container child notebook2.Gtk.Notebook+NotebookChild
     this.table2 = new global::Gtk.Table (((uint)(1)), ((uint)(2)), false);
     this.table2.Name = "table2";
     this.table2.RowSpacing = ((uint)(6));
     this.table2.ColumnSpacing = ((uint)(6));
     // Container child table2.Gtk.Table+TableChild
     this.GtkScrolledWindow1 = new global::Gtk.ScrolledWindow ();
     w6.SetTip (this.GtkScrolledWindow1, "Line-separated list of paths where the compiler (and the code completion engine!) shall look in to resolve imports.", "Line-separated list of paths where the compiler (and the code completion engine!) shall look in to resolve imports.");
     this.GtkScrolledWindow1.Name = "GtkScrolledWindow1";
     this.GtkScrolledWindow1.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow1.Gtk.Container+ContainerChild
     this.text_Includes = new global::Gtk.TextView ();
     this.text_Includes.CanFocus = true;
     this.text_Includes.Name = "text_Includes";
     this.GtkScrolledWindow1.Add (this.text_Includes);
     this.table2.Add (this.GtkScrolledWindow1);
     // Container child table2.Gtk.Table+TableChild
     this.table3 = new global::Gtk.Table (((uint)(2)), ((uint)(1)), false);
     this.table3.Name = "table3";
     this.table3.RowSpacing = ((uint)(6));
     this.table3.ColumnSpacing = ((uint)(6));
     // Container child table3.Gtk.Table+TableChild
     this.button_AddInclude = new global::Gtk.Button ();
     this.button_AddInclude.CanFocus = true;
     this.button_AddInclude.Name = "button_AddInclude";
     this.button_AddInclude.UseUnderline = true;
     this.button_AddInclude.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Browse & Add");
     this.table3.Add (this.button_AddInclude);
     global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.table3 [this.button_AddInclude]));
     w29.XOptions = ((global::Gtk.AttachOptions)(4));
     w29.YOptions = ((global::Gtk.AttachOptions)(4));
     this.table2.Add (this.table3);
     global::Gtk.Table.TableChild w30 = ((global::Gtk.Table.TableChild)(this.table2 [this.table3]));
     w30.LeftAttach = ((uint)(1));
     w30.RightAttach = ((uint)(2));
     w30.XOptions = ((global::Gtk.AttachOptions)(4));
     this.notebook2.Add (this.table2);
     global::Gtk.Notebook.NotebookChild w31 = ((global::Gtk.Notebook.NotebookChild)(this.notebook2 [this.table2]));
     w31.Position = 1;
     // Notebook tab
     this.label1 = new global::Gtk.Label ();
     this.label1.Name = "label1";
     this.label1.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Includes");
     this.notebook2.SetTabLabel (this.table2, this.label1);
     this.label1.ShowAll ();
     this.vbox8.Add (this.notebook2);
     global::Gtk.Box.BoxChild w32 = ((global::Gtk.Box.BoxChild)(this.vbox8 [this.notebook2]));
     w32.Position = 1;
     this.Add (this.vbox8);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.Show ();
     this.btnDebugArguments.Clicked += new global::System.EventHandler (this.btnDebugArguments_Clicked);
     this.btnReleaseArguments.Clicked += new global::System.EventHandler (this.btnReleaseArguments_Clicked);
     this.cmbCompilers.Changed += new global::System.EventHandler (this.OnCmbCompilersChanged);
     this.btnMakeDefault.Released += new global::System.EventHandler (this.OnTogglebuttonMakeDefaultPressed);
     this.button_BinPathBrowser.Clicked += new global::System.EventHandler (this.OnButtonBinPathBrowserClicked);
     this.btnDefaults.Clicked += new global::System.EventHandler (this.OnBtnDefaultsClicked);
     this.button_AddInclude.Clicked += new global::System.EventHandler (this.OnButtonAddIncludeClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.WidthRequest   = 150;
     this.HeightRequest  = 150;
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("Janky Gjallarhorn");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.fixed1           = new global::Gtk.Fixed();
     this.fixed1.Name      = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.GtkScrolledWindow = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.WidthRequest  = 300;
     this.GtkScrolledWindow.HeightRequest = 400;
     this.GtkScrolledWindow.Name          = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType    = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.inputTB          = new global::Gtk.TextView();
     this.inputTB.CanFocus = true;
     this.inputTB.Name     = "inputTB";
     this.inputTB.WrapMode = ((global::Gtk.WrapMode)(3));
     this.GtkScrolledWindow.Add(this.inputTB);
     this.fixed1.Add(this.GtkScrolledWindow);
     global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.GtkScrolledWindow]));
     w2.X = 31;
     w2.Y = 30;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.GtkScrolledWindow1 = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow1.WidthRequest  = 300;
     this.GtkScrolledWindow1.HeightRequest = 400;
     this.GtkScrolledWindow1.Name          = "GtkScrolledWindow1";
     this.GtkScrolledWindow1.ShadowType    = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow1.Gtk.Container+ContainerChild
     this.outputTB          = new global::Gtk.TextView();
     this.outputTB.CanFocus = true;
     this.outputTB.Name     = "outputTB";
     this.outputTB.WrapMode = ((global::Gtk.WrapMode)(3));
     this.GtkScrolledWindow1.Add(this.outputTB);
     this.fixed1.Add(this.GtkScrolledWindow1);
     global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.GtkScrolledWindow1]));
     w4.X = 635;
     w4.Y = 30;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.alphabetControl = global::Gtk.ComboBox.NewText();
     this.alphabetControl.AppendText(global::Mono.Unix.Catalog.GetString("Elder Futhark"));
     this.alphabetControl.AppendText(global::Mono.Unix.Catalog.GetString("Younger Futhark"));
     this.alphabetControl.AppendText(global::Mono.Unix.Catalog.GetString("Anglo Saxon"));
     this.alphabetControl.AppendText(global::Mono.Unix.Catalog.GetString("Medieval"));
     global::Gtk.Tooltips w5 = new Gtk.Tooltips();
     w5.SetTip(this.alphabetControl, "Runic Alphabet", "Runic Alphabet");
     this.alphabetControl.WidthRequest  = 175;
     this.alphabetControl.HeightRequest = 35;
     this.alphabetControl.Name          = "alphabetControl";
     this.fixed1.Add(this.alphabetControl);
     global::Gtk.Fixed.FixedChild w6 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.alphabetControl]));
     w6.X = 399;
     w6.Y = 230;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.directionControl = global::Gtk.ComboBox.NewText();
     this.directionControl.AppendText(global::Mono.Unix.Catalog.GetString("Letters --> Runes"));
     this.directionControl.AppendText(global::Mono.Unix.Catalog.GetString("Runes --> Letters"));
     this.directionControl.WidthRequest  = 175;
     this.directionControl.HeightRequest = 35;
     this.directionControl.Name          = "directionControl";
     this.fixed1.Add(this.directionControl);
     global::Gtk.Fixed.FixedChild w7 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.directionControl]));
     w7.X = 399;
     w7.Y = 279;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.aproxBrackets               = new global::Gtk.CheckButton();
     this.aproxBrackets.CanFocus      = true;
     this.aproxBrackets.Name          = "aproxBrackets";
     this.aproxBrackets.Label         = global::Mono.Unix.Catalog.GetString("Remove aproximation brackets.");
     this.aproxBrackets.DrawIndicator = true;
     this.aproxBrackets.UseUnderline  = true;
     this.fixed1.Add(this.aproxBrackets);
     global::Gtk.Fixed.FixedChild w8 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.aproxBrackets]));
     w8.X = 364;
     w8.Y = 337;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.oddLetters               = new global::Gtk.CheckButton();
     this.oddLetters.CanFocus      = true;
     this.oddLetters.Name          = "oddLetters";
     this.oddLetters.Label         = global::Mono.Unix.Catalog.GetString("Aproximate special characters.");
     this.oddLetters.DrawIndicator = true;
     this.oddLetters.UseUnderline  = true;
     this.fixed1.Add(this.oddLetters);
     global::Gtk.Fixed.FixedChild w9 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.oddLetters]));
     w9.X = 364;
     w9.Y = 368;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.spacesColons               = new global::Gtk.CheckButton();
     this.spacesColons.CanFocus      = true;
     this.spacesColons.Name          = "spacesColons";
     this.spacesColons.Label         = global::Mono.Unix.Catalog.GetString("Replace spaces with colons.");
     this.spacesColons.DrawIndicator = true;
     this.spacesColons.UseUnderline  = true;
     this.fixed1.Add(this.spacesColons);
     global::Gtk.Fixed.FixedChild w10 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.spacesColons]));
     w10.X = 364;
     w10.Y = 399;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.button1 = new global::Gtk.Button();
     this.button1.WidthRequest  = 175;
     this.button1.HeightRequest = 25;
     this.button1.CanFocus      = true;
     this.button1.Name          = "button1";
     this.button1.UseUnderline  = true;
     this.button1.Label         = global::Mono.Unix.Catalog.GetString("Clear");
     this.fixed1.Add(this.button1);
     global::Gtk.Fixed.FixedChild w11 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.button1]));
     w11.X = 399;
     w11.Y = 188;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.convButton = new global::Gtk.Button();
     this.convButton.WidthRequest  = 175;
     this.convButton.HeightRequest = 50;
     this.convButton.CanFocus      = true;
     this.convButton.Name          = "convButton";
     this.convButton.UseUnderline  = true;
     this.convButton.Label         = global::Mono.Unix.Catalog.GetString("Convert");
     this.fixed1.Add(this.convButton);
     global::Gtk.Fixed.FixedChild w12 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.convButton]));
     w12.X = 399;
     w12.Y = 141;
     this.Add(this.fixed1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 967;
     this.DefaultHeight = 472;
     this.Show();
     this.DeleteEvent        += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.button1.Clicked    += new global::System.EventHandler(this.clearButton);
     this.convButton.Clicked += new global::System.EventHandler(this.convClicked);
 }
Example #19
0
		public TomboyPanelAppletEventBox (NoteManager manager)
: base ()
		{
			this.manager = manager;
			tray = new TomboyTray (manager, this);

			// Load a 16x16-sized icon to ensure we don't end up with a
			// 1x1 pixel.
			panel_size = 16;
			// Load Icon to display in the panel.
			// First we try the "tomboy-panel" icon. This icon can be replaced
			// by the user's icon theme. If the theme does not have this icon
			// then we fall back to the Tomboy Menu icon named "tomboy".
			var icon = GuiUtils.GetIcon ("tomboy-panel", panel_size) ??
				GuiUtils.GetIcon ("tomboy", panel_size);
			this.image = new Gtk.Image (icon);

			this.CanFocus = true;
			this.ButtonPressEvent += ButtonPress;
			this.Add (image);
			this.ShowAll ();

			string tip_text = TomboyTrayUtils.GetToolTipText ();

			tips = new Gtk.Tooltips ();
			tips.SetTip (this, tip_text, null);
			tips.Enable ();
			tips.Sink ();

			SetupDragAndDrop ();
		}
 protected virtual void Build() {
     Stetic.Gui.Initialize();
     // Widget CBinding.EditPackagesDialog
     this.Name = "CBinding.EditPackagesDialog";
     this.Title = Mono.Unix.Catalog.GetString("Edit packages");
     this.Modal = true;
     // Internal child CBinding.EditPackagesDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vpaned1 = new Gtk.VPaned();
     this.vpaned1.CanFocus = true;
     this.vpaned1.Name = "vpaned1";
     this.vpaned1.Position = 183;
     this.vpaned1.BorderWidth = ((uint)(6));
     // Container child vpaned1.Gtk.Paned+PanedChild
     this.notebook1 = new Gtk.Notebook();
     this.notebook1.CanFocus = true;
     this.notebook1.Name = "notebook1";
     this.notebook1.CurrentPage = 0;
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.scrolledwindow1 = new Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus = true;
     this.scrolledwindow1.Name = "scrolledwindow1";
     this.scrolledwindow1.VscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow1.HscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow1.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     this.normalPackageTreeView = new Gtk.TreeView();
     this.normalPackageTreeView.CanFocus = true;
     this.normalPackageTreeView.Name = "normalPackageTreeView";
     this.normalPackageTreeView.HeadersClickable = true;
     this.scrolledwindow1.Add(this.normalPackageTreeView);
     this.notebook1.Add(this.scrolledwindow1);
     Gtk.Notebook.NotebookChild w3 = ((Gtk.Notebook.NotebookChild)(this.notebook1[this.scrolledwindow1]));
     w3.TabExpand = false;
     // Notebook tab
     this.label1 = new Gtk.Label();
     this.label1.Name = "label1";
     this.label1.LabelProp = Mono.Unix.Catalog.GetString("System Packages");
     this.notebook1.SetTabLabel(this.scrolledwindow1, this.label1);
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.scrolledwindow3 = new Gtk.ScrolledWindow();
     this.scrolledwindow3.CanFocus = true;
     this.scrolledwindow3.Name = "scrolledwindow3";
     this.scrolledwindow3.VscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow3.HscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow3.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow3.Gtk.Container+ContainerChild
     this.projectPackageTreeView = new Gtk.TreeView();
     this.projectPackageTreeView.CanFocus = true;
     this.projectPackageTreeView.Name = "projectPackageTreeView";
     this.projectPackageTreeView.HeadersClickable = true;
     this.scrolledwindow3.Add(this.projectPackageTreeView);
     this.notebook1.Add(this.scrolledwindow3);
     Gtk.Notebook.NotebookChild w5 = ((Gtk.Notebook.NotebookChild)(this.notebook1[this.scrolledwindow3]));
     w5.Position = 1;
     w5.TabExpand = false;
     // Notebook tab
     this.label2 = new Gtk.Label();
     this.label2.Name = "label2";
     this.label2.LabelProp = Mono.Unix.Catalog.GetString("Project Packages");
     this.notebook1.SetTabLabel(this.scrolledwindow3, this.label2);
     this.vpaned1.Add(this.notebook1);
     Gtk.Paned.PanedChild w6 = ((Gtk.Paned.PanedChild)(this.vpaned1[this.notebook1]));
     w6.Resize = false;
     // Container child vpaned1.Gtk.Paned+PanedChild
     this.table1 = new Gtk.Table(((uint)(2)), ((uint)(2)), false);
     this.table1.Name = "table1";
     this.table1.RowSpacing = ((uint)(6));
     this.table1.ColumnSpacing = ((uint)(6));
     // Container child table1.Gtk.Table+TableChild
     this.label3 = new Gtk.Label();
     this.label3.Name = "label3";
     this.label3.Xalign = 0F;
     this.label3.Yalign = 0F;
     this.label3.LabelProp = Mono.Unix.Catalog.GetString("Selected packages:");
     this.table1.Add(this.label3);
     Gtk.Table.TableChild w7 = ((Gtk.Table.TableChild)(this.table1[this.label3]));
     w7.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.scrolledwindow2 = new Gtk.ScrolledWindow();
     this.scrolledwindow2.CanFocus = true;
     this.scrolledwindow2.Name = "scrolledwindow2";
     this.scrolledwindow2.VscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow2.HscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow2.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow2.Gtk.Container+ContainerChild
     this.selectedPackagesTreeView = new Gtk.TreeView();
     this.selectedPackagesTreeView.CanFocus = true;
     this.selectedPackagesTreeView.Name = "selectedPackagesTreeView";
     this.selectedPackagesTreeView.HeadersClickable = true;
     this.scrolledwindow2.Add(this.selectedPackagesTreeView);
     this.table1.Add(this.scrolledwindow2);
     Gtk.Table.TableChild w9 = ((Gtk.Table.TableChild)(this.table1[this.scrolledwindow2]));
     w9.TopAttach = ((uint)(1));
     w9.BottomAttach = ((uint)(2));
     w9.XOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.vbox2 = new Gtk.VBox();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.removeButton = new Gtk.Button();
     Gtk.Tooltips w10 = new Gtk.Tooltips();
     w10.SetTip(this.removeButton, "Remove selected package from the project.", "Remove selected package from the project.");
     this.removeButton.WidthRequest = 33;
     this.removeButton.HeightRequest = 33;
     this.removeButton.Sensitive = false;
     this.removeButton.CanFocus = true;
     this.removeButton.Name = "removeButton";
     this.removeButton.UseUnderline = true;
     // Container child removeButton.Gtk.Container+ContainerChild
     Gtk.Alignment w11 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     Gtk.HBox w12 = new Gtk.HBox();
     w12.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     Gtk.Image w13 = new Gtk.Image();
     w13.Pixbuf = Stetic.IconLoader.LoadIcon(this, "gtk-remove", Gtk.IconSize.Menu, 16);
     w12.Add(w13);
     // Container child GtkHBox.Gtk.Container+ContainerChild
     Gtk.Label w15 = new Gtk.Label();
     w15.LabelProp = "";
     w12.Add(w15);
     w11.Add(w12);
     this.removeButton.Add(w11);
     this.vbox2.Add(this.removeButton);
     Gtk.Box.BoxChild w19 = ((Gtk.Box.BoxChild)(this.vbox2[this.removeButton]));
     w19.Position = 0;
     w19.Expand = false;
     w19.Fill = false;
     this.table1.Add(this.vbox2);
     Gtk.Table.TableChild w20 = ((Gtk.Table.TableChild)(this.table1[this.vbox2]));
     w20.TopAttach = ((uint)(1));
     w20.BottomAttach = ((uint)(2));
     w20.LeftAttach = ((uint)(1));
     w20.RightAttach = ((uint)(2));
     w20.XOptions = ((Gtk.AttachOptions)(4));
     this.vpaned1.Add(this.table1);
     w1.Add(this.vpaned1);
     Gtk.Box.BoxChild w22 = ((Gtk.Box.BoxChild)(w1[this.vpaned1]));
     w22.Position = 0;
     w22.Padding = ((uint)(3));
     // Internal child CBinding.EditPackagesDialog.ActionArea
     Gtk.HButtonBox w23 = this.ActionArea;
     w23.Name = "dialog1_ActionArea";
     w23.Spacing = 6;
     w23.BorderWidth = ((uint)(5));
     w23.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel = new Gtk.Button();
     this.buttonCancel.CanDefault = true;
     this.buttonCancel.CanFocus = true;
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.UseStock = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label = "gtk-cancel";
     this.AddActionWidget(this.buttonCancel, -6);
     Gtk.ButtonBox.ButtonBoxChild w24 = ((Gtk.ButtonBox.ButtonBoxChild)(w23[this.buttonCancel]));
     w24.Expand = false;
     w24.Fill = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk = new Gtk.Button();
     this.buttonOk.CanDefault = true;
     this.buttonOk.CanFocus = true;
     this.buttonOk.Name = "buttonOk";
     this.buttonOk.UseStock = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label = "gtk-ok";
     this.AddActionWidget(this.buttonOk, -5);
     Gtk.ButtonBox.ButtonBoxChild w25 = ((Gtk.ButtonBox.ButtonBoxChild)(w23[this.buttonOk]));
     w25.Position = 1;
     w25.Expand = false;
     w25.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.DefaultWidth = 580;
     this.DefaultHeight = 449;
     this.Show();
     this.removeButton.Clicked += new System.EventHandler(this.OnRemoveButtonClicked);
     this.removeButton.Clicked += new System.EventHandler(this.OnRemoveButtonClick);
     this.selectedPackagesTreeView.CursorChanged += new System.EventHandler(this.OnSelectedPackagesTreeViewCursorChanged);
     this.buttonCancel.Clicked += new System.EventHandler(this.OnCancelButtonClick);
     this.buttonOk.Clicked += new System.EventHandler(this.OnOkButtonClick);
 }
Example #21
0
		public Gtk.Label AddSnippet ()
		{
			AddNewLine ();

			snippet = WidgetFu.NewLabel ();
			snippet.SetAlignment (0.0f, 0.0f);
			snippet.Selectable = true;
			WidgetFu.EllipsizeLabel (snippet);
			snippet.Show ();
			Attach (snippet, 1, 2, current_row, ++current_row, expand, fill, 0, 0);
			maximized = false;

			snippet_tip = new Gtk.Tooltips ();

			return snippet;
		}
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget TroposphirLauncher.MainWindow
			this.WidthRequest = 400;
			this.HeightRequest = 300;
			this.Name = "TroposphirLauncher.MainWindow";
			this.Title = "Troposphir Launcher";
			this.WindowPosition = ((global::Gtk.WindowPosition)(4));
			this.Resizable = false;
			this.AllowGrow = false;
			this.DefaultWidth = 400;
			this.DefaultHeight = 300;
			// Container child TroposphirLauncher.MainWindow.Gtk.Container+ContainerChild
			this.table2 = new global::Gtk.Table (((uint)(4)), ((uint)(4)), false);
			this.table2.Name = "table2";
			this.table2.RowSpacing = ((uint)(3));
			this.table2.ColumnSpacing = ((uint)(3));
			this.table2.BorderWidth = ((uint)(3));
			// Container child table2.Gtk.Table+TableChild
			this.btnPlay = new global::Gtk.Button ();
			global::Gtk.Tooltips w1 = new Gtk.Tooltips ();
			w1.SetTip (this.btnPlay, "Launch the game", "Launch the game");
			this.btnPlay.WidthRequest = 100;
			this.btnPlay.HeightRequest = 25;
			this.btnPlay.CanFocus = true;
			this.btnPlay.Name = "btnPlay";
			this.btnPlay.UseUnderline = true;
			this.btnPlay.Label = "Play";
			this.table2.Add (this.btnPlay);
			global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table2 [this.btnPlay]));
			w2.TopAttach = ((uint)(3));
			w2.BottomAttach = ((uint)(4));
			w2.XOptions = ((global::Gtk.AttachOptions)(4));
			w2.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table2.Gtk.Table+TableChild
			this.btnSettings = new global::Gtk.Button ();
			w1.SetTip (this.btnSettings, "Preferences", "Preferences");
			this.btnSettings.WidthRequest = 25;
			this.btnSettings.HeightRequest = 25;
			this.btnSettings.CanFocus = true;
			this.btnSettings.Name = "btnSettings";
			this.btnSettings.UseUnderline = true;
			// Container child btnSettings.Gtk.Container+ContainerChild
			global::Gtk.Alignment w3 = new global::Gtk.Alignment (0.5F, 0.5F, 0F, 0F);
			// Container child GtkAlignment.Gtk.Container+ContainerChild
			global::Gtk.HBox w4 = new global::Gtk.HBox ();
			w4.Spacing = 2;
			// Container child GtkHBox.Gtk.Container+ContainerChild
			global::Gtk.Image w5 = new global::Gtk.Image ();
			w5.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-preferences", global::Gtk.IconSize.Menu);
			w4.Add (w5);
			// Container child GtkHBox.Gtk.Container+ContainerChild
			global::Gtk.Label w7 = new global::Gtk.Label ();
			w4.Add (w7);
			w3.Add (w4);
			this.btnSettings.Add (w3);
			this.table2.Add (this.btnSettings);
			global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.table2 [this.btnSettings]));
			w11.TopAttach = ((uint)(3));
			w11.BottomAttach = ((uint)(4));
			w11.LeftAttach = ((uint)(3));
			w11.RightAttach = ((uint)(4));
			w11.XOptions = ((global::Gtk.AttachOptions)(4));
			w11.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table2.Gtk.Table+TableChild
			this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
			this.GtkScrolledWindow.Name = "GtkScrolledWindow";
			this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
			// Container child GtkScrolledWindow.Gtk.Container+ContainerChild
			this.updateTextView = new global::Gtk.TextView ();
			this.updateTextView.CanFocus = true;
			this.updateTextView.Name = "updateTextView";
			this.updateTextView.Editable = false;
			this.updateTextView.CursorVisible = false;
			this.updateTextView.WrapMode = ((global::Gtk.WrapMode)(2));
			this.GtkScrolledWindow.Add (this.updateTextView);
			this.table2.Add (this.GtkScrolledWindow);
			global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table2 [this.GtkScrolledWindow]));
			w13.TopAttach = ((uint)(1));
			w13.BottomAttach = ((uint)(3));
			w13.RightAttach = ((uint)(4));
			// Container child table2.Gtk.Table+TableChild
			this.label2 = new global::Gtk.Label ();
			this.label2.Name = "label2";
			this.label2.LabelProp = "Update news:";
			this.table2.Add (this.label2);
			global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table2 [this.label2]));
			w14.RightAttach = ((uint)(4));
			w14.XOptions = ((global::Gtk.AttachOptions)(4));
			w14.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table2.Gtk.Table+TableChild
			this.progressBar = new global::Gtk.ProgressBar ();
			w1.SetTip (this.progressBar, "Update progress", "Update progress");
			this.progressBar.HeightRequest = 25;
			this.progressBar.Name = "progressBar";
			this.progressBar.Text = "";
			this.progressBar.PulseStep = 1D;
			this.table2.Add (this.progressBar);
			global::Gtk.Table.TableChild w15 = ((global::Gtk.Table.TableChild)(this.table2 [this.progressBar]));
			w15.TopAttach = ((uint)(3));
			w15.BottomAttach = ((uint)(4));
			w15.LeftAttach = ((uint)(1));
			w15.RightAttach = ((uint)(3));
			w15.YOptions = ((global::Gtk.AttachOptions)(4));
			this.Add (this.table2);
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.Show ();
			this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
			this.btnSettings.Clicked += new global::System.EventHandler (this.OpenSettingsWindow);
			this.btnPlay.Clicked += new global::System.EventHandler (this.LaunchGame);
		}
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget Simoutorder.ParameterForm
     this.Name           = "Simoutorder.ParameterForm";
     this.Title          = global::Mono.Unix.Catalog.GetString("Parameters");
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     // Container child Simoutorder.ParameterForm.Gtk.Container+ContainerChild
     this.MainContainer           = new global::Gtk.Fixed();
     this.MainContainer.Name      = "MainContainer";
     this.MainContainer.HasWindow = false;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.SaveButton              = new global::Gtk.Button();
     this.SaveButton.CanFocus     = true;
     this.SaveButton.Name         = "SaveButton";
     this.SaveButton.UseUnderline = true;
     this.SaveButton.Label        = global::Mono.Unix.Catalog.GetString("Salveaza");
     global::Gtk.Image w1 = new global::Gtk.Image();
     w1.Pixbuf             = global::Stetic.IconLoader.LoadIcon(this, "gtk-apply", global::Gtk.IconSize.Menu);
     this.SaveButton.Image = w1;
     this.MainContainer.Add(this.SaveButton);
     global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.SaveButton]));
     w2.X = 731;
     w2.Y = 427;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.ResFpmultTextBox = new global::Gtk.Entry();
     global::Gtk.Tooltips w3 = new Gtk.Tooltips();
     w3.SetTip(this.ResFpmultTextBox, "specifica numarul unitatilor de\nînmultire/împartire în virgula mobila.", "specifica numarul unitatilor de\nînmultire/împartire în virgula mobila.");
     this.ResFpmultTextBox.WidthRequest  = 50;
     this.ResFpmultTextBox.CanFocus      = true;
     this.ResFpmultTextBox.Name          = "ResFpmultTextBox";
     this.ResFpmultTextBox.Text          = global::Mono.Unix.Catalog.GetString("1");
     this.ResFpmultTextBox.IsEditable    = true;
     this.ResFpmultTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.ResFpmultTextBox);
     global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.ResFpmultTextBox]));
     w4.X = 163;
     w4.Y = 427;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.ResMemportsTextBox = new global::Gtk.Entry();
     w3.SetTip(this.ResMemportsTextBox, "specifica numarul porturilor cache-ului de pe\nnivelul L1.", "specifica numarul porturilor cache-ului de pe\nnivelul L1.");
     this.ResMemportsTextBox.WidthRequest  = 50;
     this.ResMemportsTextBox.CanFocus      = true;
     this.ResMemportsTextBox.Name          = "ResMemportsTextBox";
     this.ResMemportsTextBox.Text          = global::Mono.Unix.Catalog.GetString("2");
     this.ResMemportsTextBox.IsEditable    = true;
     this.ResMemportsTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.ResMemportsTextBox);
     global::Gtk.Fixed.FixedChild w5 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.ResMemportsTextBox]));
     w5.X = 163;
     w5.Y = 368;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.ResFpaluTextBox = new global::Gtk.Entry();
     w3.SetTip(this.ResFpaluTextBox, "specifica numarul unitatilor ALU în virgula\nmobila.", "specifica numarul unitatilor ALU în virgula\nmobila.");
     this.ResFpaluTextBox.WidthRequest  = 50;
     this.ResFpaluTextBox.CanFocus      = true;
     this.ResFpaluTextBox.Name          = "ResFpaluTextBox";
     this.ResFpaluTextBox.Text          = global::Mono.Unix.Catalog.GetString("4");
     this.ResFpaluTextBox.IsEditable    = true;
     this.ResFpaluTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.ResFpaluTextBox);
     global::Gtk.Fixed.FixedChild w6 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.ResFpaluTextBox]));
     w6.X = 163;
     w6.Y = 398;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.ResImultTextBox = new global::Gtk.Entry();
     w3.SetTip(this.ResImultTextBox, "specifica numarul unitatilor de înmultire/împartire\nîntregi.", "specifica numarul unitatilor de înmultire/împartire\nîntregi.");
     this.ResImultTextBox.WidthRequest  = 50;
     this.ResImultTextBox.CanFocus      = true;
     this.ResImultTextBox.Name          = "ResImultTextBox";
     this.ResImultTextBox.Text          = global::Mono.Unix.Catalog.GetString("1");
     this.ResImultTextBox.IsEditable    = true;
     this.ResImultTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.ResImultTextBox);
     global::Gtk.Fixed.FixedChild w7 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.ResImultTextBox]));
     w7.X = 163;
     w7.Y = 338;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.ResIaluTextBox = new global::Gtk.Entry();
     w3.SetTip(this.ResIaluTextBox, "pecifica numarul unitatilor ALU de numere\nîntregi.", "pecifica numarul unitatilor ALU de numere\nîntregi.");
     this.ResIaluTextBox.WidthRequest  = 50;
     this.ResIaluTextBox.CanFocus      = true;
     this.ResIaluTextBox.Name          = "ResIaluTextBox";
     this.ResIaluTextBox.Text          = global::Mono.Unix.Catalog.GetString("4");
     this.ResIaluTextBox.IsEditable    = true;
     this.ResIaluTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.ResIaluTextBox);
     global::Gtk.Fixed.FixedChild w8 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.ResIaluTextBox]));
     w8.X = 163;
     w8.Y = 308;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.LsqSizeTextBox = new global::Gtk.Entry();
     w3.SetTip(this.LsqSizeTextBox, "capacitatea bufferului Load/Store (în instructiuni).", "capacitatea bufferului Load/Store (în instructiuni).");
     this.LsqSizeTextBox.WidthRequest  = 50;
     this.LsqSizeTextBox.CanFocus      = true;
     this.LsqSizeTextBox.Name          = "LsqSizeTextBox";
     this.LsqSizeTextBox.Text          = global::Mono.Unix.Catalog.GetString("8");
     this.LsqSizeTextBox.IsEditable    = true;
     this.LsqSizeTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.LsqSizeTextBox);
     global::Gtk.Fixed.FixedChild w9 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.LsqSizeTextBox]));
     w9.X = 163;
     w9.Y = 277;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.RuuSizeTextBox = new global::Gtk.Entry();
     w3.SetTip(this.RuuSizeTextBox, "capacitatea unitatii RUU (în instructiuni). Implicit\nia valoarea 16.", "capacitatea unitatii RUU (în instructiuni). Implicit\nia valoarea 16.");
     this.RuuSizeTextBox.WidthRequest  = 50;
     this.RuuSizeTextBox.CanFocus      = true;
     this.RuuSizeTextBox.Name          = "RuuSizeTextBox";
     this.RuuSizeTextBox.Text          = global::Mono.Unix.Catalog.GetString("16");
     this.RuuSizeTextBox.IsEditable    = true;
     this.RuuSizeTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.RuuSizeTextBox);
     global::Gtk.Fixed.FixedChild w10 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.RuuSizeTextBox]));
     w10.X = 163;
     w10.Y = 247;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label13 = new global::Gtk.Label();
     w3.SetTip(this.label13, "specifica numarul unitatilor de\nînmultire/împartire în virgula mobila.", "specifica numarul unitatilor de\nînmultire/împartire în virgula mobila.");
     this.label13.Name      = "label13";
     this.label13.LabelProp = global::Mono.Unix.Catalog.GetString("Res:fpmult <num>");
     this.MainContainer.Add(this.label13);
     global::Gtk.Fixed.FixedChild w11 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label13]));
     w11.X = 10;
     w11.Y = 430;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label12 = new global::Gtk.Label();
     w3.SetTip(this.label12, "specifica numarul unitatilor ALU în virgula\nmobila.", "specifica numarul unitatilor ALU în virgula\nmobila.");
     this.label12.Name      = "label12";
     this.label12.LabelProp = global::Mono.Unix.Catalog.GetString("Res:fpalu <num>");
     this.MainContainer.Add(this.label12);
     global::Gtk.Fixed.FixedChild w12 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label12]));
     w12.X = 10;
     w12.Y = 401;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label11 = new global::Gtk.Label();
     w3.SetTip(this.label11, "specifica numarul porturilor cache-ului de pe\nnivelul L1.", "specifica numarul porturilor cache-ului de pe\nnivelul L1.");
     this.label11.Name      = "label11";
     this.label11.LabelProp = global::Mono.Unix.Catalog.GetString("Res:memports <num>");
     this.MainContainer.Add(this.label11);
     global::Gtk.Fixed.FixedChild w13 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label11]));
     w13.X = 10;
     w13.Y = 371;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label10 = new global::Gtk.Label();
     w3.SetTip(this.label10, "specifica numarul unitatilor de înmultire/împartire\nîntregi.", "specifica numarul unitatilor de înmultire/împartire\nîntregi.");
     this.label10.Name      = "label10";
     this.label10.LabelProp = global::Mono.Unix.Catalog.GetString("Res:imult <num>");
     this.MainContainer.Add(this.label10);
     global::Gtk.Fixed.FixedChild w14 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label10]));
     w14.X = 10;
     w14.Y = 341;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label9 = new global::Gtk.Label();
     w3.SetTip(this.label9, "pecifica numarul unitatilor ALU de numere\nîntregi.", "pecifica numarul unitatilor ALU de numere\nîntregi.");
     this.label9.Name      = "label9";
     this.label9.LabelProp = global::Mono.Unix.Catalog.GetString("Res:ialu <num>");
     this.MainContainer.Add(this.label9);
     global::Gtk.Fixed.FixedChild w15 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label9]));
     w15.X = 11;
     w15.Y = 311;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label8 = new global::Gtk.Label();
     w3.SetTip(this.label8, "capacitatea bufferului Load/Store (în instructiuni).", "capacitatea bufferului Load/Store (în instructiuni).");
     this.label8.Name      = "label8";
     this.label8.LabelProp = global::Mono.Unix.Catalog.GetString("Lsq:size <insts>");
     this.MainContainer.Add(this.label8);
     global::Gtk.Fixed.FixedChild w16 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label8]));
     w16.X = 11;
     w16.Y = 280;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label3 = new global::Gtk.Label();
     w3.SetTip(this.label3, "capacitatea unitatii RUU (în instructiuni). Implicit\nia valoarea 16.", "capacitatea unitatii RUU (în instructiuni). Implicit\nia valoarea 16.");
     this.label3.Name      = "label3";
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("Ruu:size <insts>");
     this.MainContainer.Add(this.label3);
     global::Gtk.Fixed.FixedChild w17 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label3]));
     w17.X = 11;
     w17.Y = 248;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label7 = new global::Gtk.Label();
     w3.SetTip(this.label7, "permite expedierea spre executie a instructiunilor\ndupa o speculatie gresita.", "permite expedierea spre executie a instructiunilor\ndupa o speculatie gresita.");
     this.label7.Name      = "label7";
     this.label7.LabelProp = global::Mono.Unix.Catalog.GetString("Issue:wrongpath");
     this.MainContainer.Add(this.label7);
     global::Gtk.Fixed.FixedChild w18 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label7]));
     w18.X = 12;
     w18.Y = 214;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.IssueWrongpathCheckBox = new global::Gtk.CheckButton();
     w3.SetTip(this.IssueWrongpathCheckBox, "permite expedierea spre executie a instructiunilor\ndupa o speculatie gresita.", "permite expedierea spre executie a instructiunilor\ndupa o speculatie gresita.");
     this.IssueWrongpathCheckBox.CanFocus      = true;
     this.IssueWrongpathCheckBox.Name          = "IssueWrongpathCheckBox";
     this.IssueWrongpathCheckBox.Label         = global::Mono.Unix.Catalog.GetString("Issue Wrongpath");
     this.IssueWrongpathCheckBox.Active        = true;
     this.IssueWrongpathCheckBox.DrawIndicator = true;
     this.IssueWrongpathCheckBox.UseUnderline  = true;
     this.MainContainer.Add(this.IssueWrongpathCheckBox);
     global::Gtk.Fixed.FixedChild w19 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.IssueWrongpathCheckBox]));
     w19.X = 162;
     w19.Y = 209;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label6 = new global::Gtk.Label();
     w3.SetTip(this.label6, "forteaza simulatorul sa lucreze in-order.", "forteaza simulatorul sa lucreze in-order.");
     this.label6.Name      = "label6";
     this.label6.LabelProp = global::Mono.Unix.Catalog.GetString("Issue:inorder");
     this.MainContainer.Add(this.label6);
     global::Gtk.Fixed.FixedChild w20 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label6]));
     w20.X = 12;
     w20.Y = 186;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.IssueInorderCheckBox = new global::Gtk.CheckButton();
     w3.SetTip(this.IssueInorderCheckBox, "forteaza simulatorul sa lucreze in-order.", "forteaza simulatorul sa lucreze in-order.");
     this.IssueInorderCheckBox.CanFocus      = true;
     this.IssueInorderCheckBox.Name          = "IssueInorderCheckBox";
     this.IssueInorderCheckBox.Label         = global::Mono.Unix.Catalog.GetString("Issue inorder");
     this.IssueInorderCheckBox.DrawIndicator = true;
     this.IssueInorderCheckBox.UseUnderline  = true;
     this.MainContainer.Add(this.IssueInorderCheckBox);
     global::Gtk.Fixed.FixedChild w21 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.IssueInorderCheckBox]));
     w21.X = 162;
     w21.Y = 181;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.IssueWidthComboBox = global::Gtk.ComboBox.NewText();
     this.IssueWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("4"));
     this.IssueWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("8"));
     this.IssueWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("16"));
     this.IssueWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("32"));
     this.IssueWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("64"));
     this.IssueWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("128"));
     this.IssueWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("256"));
     this.IssueWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("512"));
     this.IssueWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("1024"));
     w3.SetTip(this.IssueWidthComboBox, "seteaza numarul maxim de instructiuni ce vor fi\nsimultan decodificate într-un ciclu.", "seteaza numarul maxim de instructiuni ce vor fi\nsimultan decodificate într-un ciclu.");
     this.IssueWidthComboBox.Name   = "IssueWidthComboBox";
     this.IssueWidthComboBox.Active = 0;
     this.MainContainer.Add(this.IssueWidthComboBox);
     global::Gtk.Fixed.FixedChild w22 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.IssueWidthComboBox]));
     w22.X = 162;
     w22.Y = 145;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.DecodeWidthComboBox = global::Gtk.ComboBox.NewText();
     this.DecodeWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("4"));
     this.DecodeWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("8"));
     this.DecodeWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("16"));
     this.DecodeWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("32"));
     this.DecodeWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("64"));
     this.DecodeWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("128"));
     this.DecodeWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("256"));
     this.DecodeWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("512"));
     this.DecodeWidthComboBox.AppendText(global::Mono.Unix.Catalog.GetString("1024"));
     w3.SetTip(this.DecodeWidthComboBox, "seteaza numarul de instructiuni ce vor fi\nsimultan decodificate.", "seteaza numarul de instructiuni ce vor fi\nsimultan decodificate.");
     this.DecodeWidthComboBox.Name   = "DecodeWidthComboBox";
     this.DecodeWidthComboBox.Active = 0;
     this.MainContainer.Add(this.DecodeWidthComboBox);
     global::Gtk.Fixed.FixedChild w23 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.DecodeWidthComboBox]));
     w23.X = 162;
     w23.Y = 111;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.FetchmplatTextBox = new global::Gtk.Entry();
     w3.SetTip(this.FetchmplatTextBox, "seteaza latenta unei predictii eronate a unei\ninstructiuni de salt (procesul de \"recovery\").", "seteaza latenta unei predictii eronate a unei\ninstructiuni de salt (procesul de \"recovery\").");
     this.FetchmplatTextBox.WidthRequest  = 50;
     this.FetchmplatTextBox.CanFocus      = true;
     this.FetchmplatTextBox.Name          = "FetchmplatTextBox";
     this.FetchmplatTextBox.Text          = global::Mono.Unix.Catalog.GetString("3");
     this.FetchmplatTextBox.IsEditable    = true;
     this.FetchmplatTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.FetchmplatTextBox);
     global::Gtk.Fixed.FixedChild w24 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.FetchmplatTextBox]));
     w24.X = 163;
     w24.Y = 81;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.FetchifqSizeComboBox = global::Gtk.ComboBox.NewText();
     this.FetchifqSizeComboBox.AppendText(global::Mono.Unix.Catalog.GetString("4 "));
     this.FetchifqSizeComboBox.AppendText(global::Mono.Unix.Catalog.GetString("8 "));
     this.FetchifqSizeComboBox.AppendText(global::Mono.Unix.Catalog.GetString("16"));
     this.FetchifqSizeComboBox.AppendText(global::Mono.Unix.Catalog.GetString("32"));
     this.FetchifqSizeComboBox.AppendText(global::Mono.Unix.Catalog.GetString("64"));
     this.FetchifqSizeComboBox.AppendText(global::Mono.Unix.Catalog.GetString("128"));
     this.FetchifqSizeComboBox.AppendText(global::Mono.Unix.Catalog.GetString("256"));
     this.FetchifqSizeComboBox.AppendText(global::Mono.Unix.Catalog.GetString("512"));
     this.FetchifqSizeComboBox.AppendText(global::Mono.Unix.Catalog.GetString("1024"));
     w3.SetTip(this.FetchifqSizeComboBox, "seteaza numarul de instructiuni ce vor fi extrase\nsimultan din cache / memorie principala.", "seteaza numarul de instructiuni ce vor fi extrase\nsimultan din cache / memorie principala.");
     this.FetchifqSizeComboBox.Name   = "FetchifqSizeComboBox";
     this.FetchifqSizeComboBox.Active = 0;
     this.MainContainer.Add(this.FetchifqSizeComboBox);
     global::Gtk.Fixed.FixedChild w25 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.FetchifqSizeComboBox]));
     w25.X = 163;
     w25.Y = 46;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label4 = new global::Gtk.Label();
     w3.SetTip(this.label4, "seteaza numarul maxim de instructiuni ce vor fi\nsimultan decodificate într-un ciclu.", "seteaza numarul maxim de instructiuni ce vor fi\nsimultan decodificate într-un ciclu.");
     this.label4.Name      = "label4";
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("Issue:width <insts>");
     this.MainContainer.Add(this.label4);
     global::Gtk.Fixed.FixedChild w26 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label4]));
     w26.X = 12;
     w26.Y = 150;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.mda = new global::Gtk.Label();
     w3.SetTip(this.mda, "seteaza numarul de instructiuni ce vor fi\nsimultan decodificate.", "seteaza numarul de instructiuni ce vor fi\nsimultan decodificate.");
     this.mda.Name      = "mda";
     this.mda.LabelProp = global::Mono.Unix.Catalog.GetString("Decode:width <insts>");
     this.MainContainer.Add(this.mda);
     global::Gtk.Fixed.FixedChild w27 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.mda]));
     w27.X = 12;
     w27.Y = 116;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label2 = new global::Gtk.Label();
     w3.SetTip(this.label2, "seteaza latenta unei predictii eronate a unei\ninstructiuni de salt (procesul de \"recovery\").", "seteaza latenta unei predictii eronate a unei\ninstructiuni de salt (procesul de \"recovery\").");
     this.label2.Name      = "label2";
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("Fetch:mplat <cycles>");
     this.MainContainer.Add(this.label2);
     global::Gtk.Fixed.FixedChild w28 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label2]));
     w28.X = 13;
     w28.Y = 86;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label1 = new global::Gtk.Label();
     w3.SetTip(this.label1, "seteaza numarul de instructiuni ce vor fi extrase\nsimultan din cache / memorie principala.", "seteaza numarul de instructiuni ce vor fi extrase\nsimultan din cache / memorie principala.");
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("Fetch:ifqsize <size>");
     this.MainContainer.Add(this.label1);
     global::Gtk.Fixed.FixedChild w29 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label1]));
     w29.X = 13;
     w29.Y = 52;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label5              = new global::Gtk.Label();
     this.label5.Name         = "label5";
     this.label5.LabelProp    = global::Mono.Unix.Catalog.GetString("Parametrii specifici nucleului de executie al \nprocesorului:");
     this.label5.UseUnderline = true;
     this.label5.Wrap         = true;
     this.MainContainer.Add(this.label5);
     global::Gtk.Fixed.FixedChild w30 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label5]));
     w30.X = 14;
     w30.Y = 7;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label14           = new global::Gtk.Label();
     this.label14.Name      = "label14";
     this.label14.LabelProp = global::Mono.Unix.Catalog.GetString("Parametrii suplimentari (gasiti doar la sim-outorder nu si la simcache)\nce caracterizeaza interfata procesor - sistemul ierarhizat de\nmemorie:");
     this.MainContainer.Add(this.label14);
     global::Gtk.Fixed.FixedChild w31 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label14]));
     w31.X = 355;
     w31.Y = 8;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label15           = new global::Gtk.Label();
     this.label15.Name      = "label15";
     this.label15.LabelProp = global::Mono.Unix.Catalog.GetString("Cachedl1lat <cycles>");
     this.MainContainer.Add(this.label15);
     global::Gtk.Fixed.FixedChild w32 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label15]));
     w32.X = 355;
     w32.Y = 72;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label16           = new global::Gtk.Label();
     this.label16.Name      = "label16";
     this.label16.LabelProp = global::Mono.Unix.Catalog.GetString("Mem:width <bytes>");
     this.MainContainer.Add(this.label16);
     global::Gtk.Fixed.FixedChild w33 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label16]));
     w33.X = 355;
     w33.Y = 104;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.label17           = new global::Gtk.Label();
     this.label17.Name      = "label17";
     this.label17.LabelProp = global::Mono.Unix.Catalog.GetString("Tlb:lat <cycles>");
     this.MainContainer.Add(this.label17);
     global::Gtk.Fixed.FixedChild w34 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.label17]));
     w34.X = 357;
     w34.Y = 136;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.Cachedl1latTextBox = new global::Gtk.Entry();
     this.Cachedl1latTextBox.WidthRequest  = 50;
     this.Cachedl1latTextBox.CanFocus      = true;
     this.Cachedl1latTextBox.Name          = "Cachedl1latTextBox";
     this.Cachedl1latTextBox.Text          = global::Mono.Unix.Catalog.GetString("1");
     this.Cachedl1latTextBox.IsEditable    = true;
     this.Cachedl1latTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.Cachedl1latTextBox);
     global::Gtk.Fixed.FixedChild w35 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.Cachedl1latTextBox]));
     w35.X = 505;
     w35.Y = 68;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.MemwidthTextBox = new global::Gtk.Entry();
     this.MemwidthTextBox.WidthRequest  = 50;
     this.MemwidthTextBox.CanFocus      = true;
     this.MemwidthTextBox.Name          = "MemwidthTextBox";
     this.MemwidthTextBox.Text          = global::Mono.Unix.Catalog.GetString("1024");
     this.MemwidthTextBox.IsEditable    = true;
     this.MemwidthTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.MemwidthTextBox);
     global::Gtk.Fixed.FixedChild w36 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.MemwidthTextBox]));
     w36.X = 505;
     w36.Y = 100;
     // Container child MainContainer.Gtk.Fixed+FixedChild
     this.TlblatTextBox = new global::Gtk.Entry();
     this.TlblatTextBox.WidthRequest  = 50;
     this.TlblatTextBox.CanFocus      = true;
     this.TlblatTextBox.Name          = "TlblatTextBox";
     this.TlblatTextBox.Text          = global::Mono.Unix.Catalog.GetString("256");
     this.TlblatTextBox.IsEditable    = true;
     this.TlblatTextBox.InvisibleChar = '●';
     this.MainContainer.Add(this.TlblatTextBox);
     global::Gtk.Fixed.FixedChild w37 = ((global::Gtk.Fixed.FixedChild)(this.MainContainer [this.TlblatTextBox]));
     w37.X = 505;
     w37.Y = 131;
     this.Add(this.MainContainer);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 828;
     this.DefaultHeight = 467;
     this.Show();
     this.SaveButton.Clicked += new global::System.EventHandler(this.OnSaveButtonClicked);
 }
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget MonoDevelop.D.OptionPanels.ProjectOptions
			global::Stetic.BinContainer.Attach (this);
			this.Name = "MonoDevelop.D.OptionPanels.ProjectOptions";
			// Container child MonoDevelop.D.OptionPanels.ProjectOptions.Gtk.Container+ContainerChild
			this.notebook1 = new global::Gtk.Notebook ();
			this.notebook1.CanFocus = true;
			this.notebook1.Name = "notebook1";
			this.notebook1.CurrentPage = 1;
			this.notebook1.ShowBorder = false;
			this.notebook1.Scrollable = true;
			// Container child notebook1.Gtk.Notebook+NotebookChild
			this.table_LinkingTab = new global::Gtk.Table (((uint)(7)), ((uint)(2)), false);
			this.table_LinkingTab.Name = "table_LinkingTab";
			this.table_LinkingTab.RowSpacing = ((uint)(4));
			this.table_LinkingTab.ColumnSpacing = ((uint)(4));
			this.table_LinkingTab.BorderWidth = ((uint)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.check_LinkThirdPartyLibs = new global::Gtk.CheckButton ();
			this.check_LinkThirdPartyLibs.CanFocus = true;
			this.check_LinkThirdPartyLibs.Name = "check_LinkThirdPartyLibs";
			this.check_LinkThirdPartyLibs.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Link in static/shared libraries from nested dependencies");
			this.check_LinkThirdPartyLibs.Active = true;
			this.check_LinkThirdPartyLibs.DrawIndicator = true;
			this.check_LinkThirdPartyLibs.UseUnderline = true;
			this.table_LinkingTab.Add (this.check_LinkThirdPartyLibs);
			global::Gtk.Table.TableChild w1 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.check_LinkThirdPartyLibs]));
			w1.TopAttach = ((uint)(5));
			w1.BottomAttach = ((uint)(6));
			w1.LeftAttach = ((uint)(1));
			w1.RightAttach = ((uint)(2));
			w1.XOptions = ((global::Gtk.AttachOptions)(4));
			w1.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.combo_ProjectType = global::Gtk.ComboBox.NewText ();
			this.combo_ProjectType.Name = "combo_ProjectType";
			this.table_LinkingTab.Add (this.combo_ProjectType);
			global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.combo_ProjectType]));
			w2.TopAttach = ((uint)(2));
			w2.BottomAttach = ((uint)(3));
			w2.LeftAttach = ((uint)(1));
			w2.RightAttach = ((uint)(2));
			w2.XOptions = ((global::Gtk.AttachOptions)(4));
			w2.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.label10 = new global::Gtk.Label ();
			this.label10.Name = "label10";
			this.label10.Xalign = 0F;
			this.label10.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Extra Linker Options");
			this.table_LinkingTab.Add (this.label10);
			global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label10]));
			w3.TopAttach = ((uint)(6));
			w3.BottomAttach = ((uint)(7));
			w3.XOptions = ((global::Gtk.AttachOptions)(4));
			w3.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.label13 = new global::Gtk.Label ();
			this.label13.Name = "label13";
			this.label13.Xalign = 0F;
			this.label13.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Compile target");
			this.table_LinkingTab.Add (this.label13);
			global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label13]));
			w4.TopAttach = ((uint)(2));
			w4.BottomAttach = ((uint)(3));
			w4.XOptions = ((global::Gtk.AttachOptions)(4));
			w4.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.label3 = new global::Gtk.Label ();
			this.label3.Name = "label3";
			this.label3.Xalign = 0F;
			this.label3.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Output file");
			this.table_LinkingTab.Add (this.label3);
			global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label3]));
			w5.TopAttach = ((uint)(3));
			w5.BottomAttach = ((uint)(4));
			w5.XOptions = ((global::Gtk.AttachOptions)(4));
			w5.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.label6 = new global::Gtk.Label ();
			this.label6.Name = "label6";
			this.label6.Xalign = 0F;
			this.label6.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Output directory");
			this.table_LinkingTab.Add (this.label6);
			global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label6]));
			w6.TopAttach = ((uint)(1));
			w6.BottomAttach = ((uint)(2));
			w6.XOptions = ((global::Gtk.AttachOptions)(4));
			w6.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.label8 = new global::Gtk.Label ();
			this.label8.Name = "label8";
			this.label8.Xalign = 0F;
			this.label8.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Libraries\n(one per line)");
			this.table_LinkingTab.Add (this.label8);
			global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label8]));
			w7.TopAttach = ((uint)(4));
			w7.BottomAttach = ((uint)(5));
			w7.XOptions = ((global::Gtk.AttachOptions)(4));
			w7.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.label9 = new global::Gtk.Label ();
			this.label9.Name = "label9";
			this.label9.Xalign = 0F;
			this.label9.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Note: Relative paths will be related to the project's base directory!");
			this.table_LinkingTab.Add (this.label9);
			global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label9]));
			w8.LeftAttach = ((uint)(1));
			w8.RightAttach = ((uint)(2));
			w8.XOptions = ((global::Gtk.AttachOptions)(4));
			w8.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.scrolledwindow3 = new global::Gtk.ScrolledWindow ();
			this.scrolledwindow3.HeightRequest = 100;
			this.scrolledwindow3.CanFocus = true;
			this.scrolledwindow3.Name = "scrolledwindow3";
			this.scrolledwindow3.ShadowType = ((global::Gtk.ShadowType)(1));
			// Container child scrolledwindow3.Gtk.Container+ContainerChild
			this.text_Libraries = new global::Gtk.TextView ();
			this.text_Libraries.CanFocus = true;
			this.text_Libraries.Name = "text_Libraries";
			this.scrolledwindow3.Add (this.text_Libraries);
			this.table_LinkingTab.Add (this.scrolledwindow3);
			global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.scrolledwindow3]));
			w10.TopAttach = ((uint)(4));
			w10.BottomAttach = ((uint)(5));
			w10.LeftAttach = ((uint)(1));
			w10.RightAttach = ((uint)(2));
			w10.XOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.scrolledwindow5 = new global::Gtk.ScrolledWindow ();
			this.scrolledwindow5.HeightRequest = 100;
			this.scrolledwindow5.CanFocus = true;
			this.scrolledwindow5.Name = "scrolledwindow5";
			this.scrolledwindow5.ShadowType = ((global::Gtk.ShadowType)(1));
			// Container child scrolledwindow5.Gtk.Container+ContainerChild
			this.extraLinkerTextView = new global::Gtk.TextView ();
			global::Gtk.Tooltips w11 = new Gtk.Tooltips ();
			w11.SetTip (this.extraLinkerTextView, "A newline-separated list of extra options to send to the compiler.\nOne option can be in more than one line.\nExample:\n\t`--pkg\n\tcairo`", "A newline-separated list of extra options to send to the compiler.\nOne option can be in more than one line.\nExample:\n\t`--pkg\n\tcairo`");
			this.extraLinkerTextView.CanFocus = true;
			this.extraLinkerTextView.Name = "extraLinkerTextView";
			this.scrolledwindow5.Add (this.extraLinkerTextView);
			this.table_LinkingTab.Add (this.scrolledwindow5);
			global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.scrolledwindow5]));
			w13.TopAttach = ((uint)(6));
			w13.BottomAttach = ((uint)(7));
			w13.LeftAttach = ((uint)(1));
			w13.RightAttach = ((uint)(2));
			w13.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.text_BinDirectory = new global::Gtk.Entry ();
			this.text_BinDirectory.CanFocus = true;
			this.text_BinDirectory.Name = "text_BinDirectory";
			this.text_BinDirectory.IsEditable = true;
			this.text_BinDirectory.InvisibleChar = '●';
			this.table_LinkingTab.Add (this.text_BinDirectory);
			global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.text_BinDirectory]));
			w14.TopAttach = ((uint)(1));
			w14.BottomAttach = ((uint)(2));
			w14.LeftAttach = ((uint)(1));
			w14.RightAttach = ((uint)(2));
			w14.XOptions = ((global::Gtk.AttachOptions)(4));
			w14.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_LinkingTab.Gtk.Table+TableChild
			this.text_TargetFile = new global::Gtk.Entry ();
			this.text_TargetFile.CanFocus = true;
			this.text_TargetFile.Name = "text_TargetFile";
			this.text_TargetFile.IsEditable = true;
			this.text_TargetFile.InvisibleChar = '●';
			this.table_LinkingTab.Add (this.text_TargetFile);
			global::Gtk.Table.TableChild w15 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.text_TargetFile]));
			w15.TopAttach = ((uint)(3));
			w15.BottomAttach = ((uint)(4));
			w15.LeftAttach = ((uint)(1));
			w15.RightAttach = ((uint)(2));
			w15.XOptions = ((global::Gtk.AttachOptions)(4));
			w15.YOptions = ((global::Gtk.AttachOptions)(4));
			this.notebook1.Add (this.table_LinkingTab);
			// Notebook tab
			this.label2 = new global::Gtk.Label ();
			this.label2.Name = "label2";
			this.label2.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Linking");
			this.notebook1.SetTabLabel (this.table_LinkingTab, this.label2);
			this.label2.ShowAll ();
			// Container child notebook1.Gtk.Notebook+NotebookChild
			this.table_CompilingTab = new global::Gtk.Table (((uint)(12)), ((uint)(2)), false);
			this.table_CompilingTab.Name = "table_CompilingTab";
			this.table_CompilingTab.RowSpacing = ((uint)(4));
			this.table_CompilingTab.ColumnSpacing = ((uint)(4));
			this.table_CompilingTab.BorderWidth = ((uint)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.cbIsUnittestConfig = new global::Gtk.CheckButton ();
			this.cbIsUnittestConfig.CanFocus = true;
			this.cbIsUnittestConfig.Name = "cbIsUnittestConfig";
			this.cbIsUnittestConfig.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Is Unittest Config (--unittest flag is appended + project is built/executed as executable)");
			this.cbIsUnittestConfig.DrawIndicator = true;
			this.cbIsUnittestConfig.UseUnderline = true;
			this.table_CompilingTab.Add (this.cbIsUnittestConfig);
			global::Gtk.Table.TableChild w17 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.cbIsUnittestConfig]));
			w17.TopAttach = ((uint)(3));
			w17.BottomAttach = ((uint)(4));
			w17.LeftAttach = ((uint)(1));
			w17.RightAttach = ((uint)(2));
			w17.XOptions = ((global::Gtk.AttachOptions)(4));
			w17.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.cbPreferOneStepCompilation = new global::Gtk.CheckButton ();
			this.cbPreferOneStepCompilation.CanFocus = true;
			this.cbPreferOneStepCompilation.Name = "cbPreferOneStepCompilation";
			this.cbPreferOneStepCompilation.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Perform a one-step compilation if the compiler allows it to do that");
			this.cbPreferOneStepCompilation.DrawIndicator = true;
			this.cbPreferOneStepCompilation.UseUnderline = true;
			this.table_CompilingTab.Add (this.cbPreferOneStepCompilation);
			global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.cbPreferOneStepCompilation]));
			w18.TopAttach = ((uint)(4));
			w18.BottomAttach = ((uint)(5));
			w18.LeftAttach = ((uint)(1));
			w18.RightAttach = ((uint)(2));
			w18.XOptions = ((global::Gtk.AttachOptions)(4));
			w18.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.cbUseDefaultCompiler = new global::Gtk.CheckButton ();
			this.cbUseDefaultCompiler.CanFocus = true;
			this.cbUseDefaultCompiler.Name = "cbUseDefaultCompiler";
			this.cbUseDefaultCompiler.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Use Default Compiler");
			this.cbUseDefaultCompiler.Active = true;
			this.cbUseDefaultCompiler.DrawIndicator = true;
			this.cbUseDefaultCompiler.UseUnderline = true;
			this.table_CompilingTab.Add (this.cbUseDefaultCompiler);
			global::Gtk.Table.TableChild w19 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.cbUseDefaultCompiler]));
			w19.TopAttach = ((uint)(2));
			w19.BottomAttach = ((uint)(3));
			w19.LeftAttach = ((uint)(1));
			w19.RightAttach = ((uint)(2));
			w19.XOptions = ((global::Gtk.AttachOptions)(4));
			w19.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.cmbCompiler = global::Gtk.ComboBox.NewText ();
			this.cmbCompiler.Name = "cmbCompiler";
			this.table_CompilingTab.Add (this.cmbCompiler);
			global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.cmbCompiler]));
			w20.TopAttach = ((uint)(1));
			w20.BottomAttach = ((uint)(2));
			w20.LeftAttach = ((uint)(1));
			w20.RightAttach = ((uint)(2));
			w20.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.combo_Platform = global::Gtk.ComboBox.NewText ();
			this.combo_Platform.Name = "combo_Platform";
			this.table_CompilingTab.Add (this.combo_Platform);
			global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.combo_Platform]));
			w21.TopAttach = ((uint)(5));
			w21.BottomAttach = ((uint)(6));
			w21.LeftAttach = ((uint)(1));
			w21.RightAttach = ((uint)(2));
			w21.XOptions = ((global::Gtk.AttachOptions)(4));
			w21.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.label11 = new global::Gtk.Label ();
			this.label11.Name = "label11";
			this.label11.Xalign = 0F;
			this.label11.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Note: Relative paths will be related to the project\'s base directory!");
			this.table_CompilingTab.Add (this.label11);
			global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label11]));
			w22.LeftAttach = ((uint)(1));
			w22.RightAttach = ((uint)(2));
			w22.XOptions = ((global::Gtk.AttachOptions)(4));
			w22.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.label17 = new global::Gtk.Label ();
			this.label17.Name = "label17";
			this.label17.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Debug constants");
			this.table_CompilingTab.Add (this.label17);
			global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label17]));
			w23.TopAttach = ((uint)(6));
			w23.BottomAttach = ((uint)(7));
			w23.XOptions = ((global::Gtk.AttachOptions)(4));
			w23.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.label18 = new global::Gtk.Label ();
			this.label18.Name = "label18";
			this.label18.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Version constants");
			this.table_CompilingTab.Add (this.label18);
			global::Gtk.Table.TableChild w24 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label18]));
			w24.TopAttach = ((uint)(8));
			w24.BottomAttach = ((uint)(9));
			w24.XOptions = ((global::Gtk.AttachOptions)(4));
			w24.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.label19 = new global::Gtk.Label ();
			this.label19.Name = "label19";
			this.label19.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Debug level");
			this.table_CompilingTab.Add (this.label19);
			global::Gtk.Table.TableChild w25 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label19]));
			w25.TopAttach = ((uint)(7));
			w25.BottomAttach = ((uint)(8));
			w25.XOptions = ((global::Gtk.AttachOptions)(4));
			w25.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.label20 = new global::Gtk.Label ();
			this.label20.Name = "label20";
			this.label20.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("DDoc directory");
			this.table_CompilingTab.Add (this.label20);
			global::Gtk.Table.TableChild w26 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label20]));
			w26.TopAttach = ((uint)(10));
			w26.BottomAttach = ((uint)(11));
			w26.XOptions = ((global::Gtk.AttachOptions)(4));
			w26.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.label26 = new global::Gtk.Label ();
			this.label26.Name = "label26";
			this.label26.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Target platform");
			this.table_CompilingTab.Add (this.label26);
			global::Gtk.Table.TableChild w27 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label26]));
			w27.TopAttach = ((uint)(5));
			w27.BottomAttach = ((uint)(6));
			w27.XOptions = ((global::Gtk.AttachOptions)(4));
			w27.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.label4 = new global::Gtk.Label ();
			this.label4.Name = "label4";
			this.label4.Xalign = 0F;
			this.label4.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Compiler");
			this.table_CompilingTab.Add (this.label4);
			global::Gtk.Table.TableChild w28 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label4]));
			w28.TopAttach = ((uint)(1));
			w28.BottomAttach = ((uint)(2));
			w28.XOptions = ((global::Gtk.AttachOptions)(4));
			w28.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.label5 = new global::Gtk.Label ();
			this.label5.Name = "label5";
			this.label5.Xalign = 0F;
			this.label5.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Objects directory");
			this.table_CompilingTab.Add (this.label5);
			global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label5]));
			w29.TopAttach = ((uint)(9));
			w29.BottomAttach = ((uint)(10));
			w29.XOptions = ((global::Gtk.AttachOptions)(4));
			w29.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.label7 = new global::Gtk.Label ();
			this.label7.Name = "label7";
			this.label7.Xalign = 0F;
			this.label7.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Extra Compiler Options");
			this.table_CompilingTab.Add (this.label7);
			global::Gtk.Table.TableChild w30 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label7]));
			w30.TopAttach = ((uint)(11));
			w30.BottomAttach = ((uint)(12));
			w30.XOptions = ((global::Gtk.AttachOptions)(4));
			w30.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.scrolledwindow4 = new global::Gtk.ScrolledWindow ();
			this.scrolledwindow4.HeightRequest = 150;
			this.scrolledwindow4.CanFocus = true;
			this.scrolledwindow4.Name = "scrolledwindow4";
			this.scrolledwindow4.ShadowType = ((global::Gtk.ShadowType)(1));
			// Container child scrolledwindow4.Gtk.Container+ContainerChild
			this.extraCompilerTextView = new global::Gtk.TextView ();
			w11.SetTip (this.extraCompilerTextView, "A newline-separated list of extra options to send to the compiler.\nOne option can" +
			" be in more than one line.\nExample:\n\t`--pkg\n\tcairo`", "A newline-separated list of extra options to send to the compiler.\nOne option can" +
			" be in more than one line.\nExample:\n\t`--pkg\n\tcairo`");
			this.extraCompilerTextView.CanFocus = true;
			this.extraCompilerTextView.Name = "extraCompilerTextView";
			this.scrolledwindow4.Add (this.extraCompilerTextView);
			this.table_CompilingTab.Add (this.scrolledwindow4);
			global::Gtk.Table.TableChild w32 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.scrolledwindow4]));
			w32.TopAttach = ((uint)(11));
			w32.BottomAttach = ((uint)(12));
			w32.LeftAttach = ((uint)(1));
			w32.RightAttach = ((uint)(2));
			w32.XOptions = ((global::Gtk.AttachOptions)(4));
			w32.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.spin_debugLevel = new global::Gtk.SpinButton (0D, 100D, 1D);
			w11.SetTip (this.spin_debugLevel, "The debug level the program is built in.\nA value of zero (0) will not emit a -deb" +
			"ug flag to the compilation argument string!", "The debug level the program is built in.\nA value of zero (0) will not emit a -deb" +
			"ug flag to the compilation argument string!");
			this.spin_debugLevel.CanFocus = true;
			this.spin_debugLevel.Name = "spin_debugLevel";
			this.spin_debugLevel.Adjustment.PageIncrement = 10D;
			this.spin_debugLevel.ClimbRate = 1D;
			this.spin_debugLevel.Numeric = true;
			this.table_CompilingTab.Add (this.spin_debugLevel);
			global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.spin_debugLevel]));
			w33.TopAttach = ((uint)(7));
			w33.BottomAttach = ((uint)(8));
			w33.LeftAttach = ((uint)(1));
			w33.RightAttach = ((uint)(2));
			w33.XOptions = ((global::Gtk.AttachOptions)(4));
			w33.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.text_DDocDir = new global::Gtk.Entry ();
			this.text_DDocDir.CanFocus = true;
			this.text_DDocDir.Name = "text_DDocDir";
			this.text_DDocDir.IsEditable = true;
			this.text_DDocDir.InvisibleChar = '●';
			this.table_CompilingTab.Add (this.text_DDocDir);
			global::Gtk.Table.TableChild w34 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.text_DDocDir]));
			w34.TopAttach = ((uint)(10));
			w34.BottomAttach = ((uint)(11));
			w34.LeftAttach = ((uint)(1));
			w34.RightAttach = ((uint)(2));
			w34.XOptions = ((global::Gtk.AttachOptions)(4));
			w34.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.text_debugConstants = new global::Gtk.Entry ();
			w11.SetTip (this.text_debugConstants, "Semicolon (;) separated list of debug constants to define for debug-build compila" +
			"tion.\nImportant: May affect code completion if omitted/written into extra compil" +
			"er options field!", "Semicolon (;) separated list of debug constants to define for debug-build compila" +
			"tion.\nImportant: May affect code completion if omitted/written into extra compil" +
			"er options field!");
			this.text_debugConstants.CanFocus = true;
			this.text_debugConstants.Name = "text_debugConstants";
			this.text_debugConstants.IsEditable = true;
			this.text_debugConstants.InvisibleChar = '●';
			this.table_CompilingTab.Add (this.text_debugConstants);
			global::Gtk.Table.TableChild w35 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.text_debugConstants]));
			w35.TopAttach = ((uint)(6));
			w35.BottomAttach = ((uint)(7));
			w35.LeftAttach = ((uint)(1));
			w35.RightAttach = ((uint)(2));
			w35.XOptions = ((global::Gtk.AttachOptions)(4));
			w35.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.text_ObjectsDirectory = new global::Gtk.Entry ();
			this.text_ObjectsDirectory.CanFocus = true;
			this.text_ObjectsDirectory.Name = "text_ObjectsDirectory";
			this.text_ObjectsDirectory.IsEditable = true;
			this.text_ObjectsDirectory.InvisibleChar = '●';
			this.table_CompilingTab.Add (this.text_ObjectsDirectory);
			global::Gtk.Table.TableChild w36 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.text_ObjectsDirectory]));
			w36.TopAttach = ((uint)(9));
			w36.BottomAttach = ((uint)(10));
			w36.LeftAttach = ((uint)(1));
			w36.RightAttach = ((uint)(2));
			w36.XOptions = ((global::Gtk.AttachOptions)(4));
			w36.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CompilingTab.Gtk.Table+TableChild
			this.text_versionConstants = new global::Gtk.Entry ();
			w11.SetTip (this.text_versionConstants, "Semicolon (;) separated list of version constants to define for compilation.\nImpo" +
			"rtant: May affect code completion if omitted/written into extra compiler options" +
			" field!", "Semicolon (;) separated list of version constants to define for compilation.\nImpo" +
			"rtant: May affect code completion if omitted/written into extra compiler options" +
			" field!");
			this.text_versionConstants.CanFocus = true;
			this.text_versionConstants.Name = "text_versionConstants";
			this.text_versionConstants.IsEditable = true;
			this.text_versionConstants.InvisibleChar = '●';
			this.table_CompilingTab.Add (this.text_versionConstants);
			global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.text_versionConstants]));
			w37.TopAttach = ((uint)(8));
			w37.BottomAttach = ((uint)(9));
			w37.LeftAttach = ((uint)(1));
			w37.RightAttach = ((uint)(2));
			w37.XOptions = ((global::Gtk.AttachOptions)(4));
			w37.YOptions = ((global::Gtk.AttachOptions)(4));
			this.notebook1.Add (this.table_CompilingTab);
			global::Gtk.Notebook.NotebookChild w38 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1 [this.table_CompilingTab]));
			w38.Position = 1;
			// Notebook tab
			this.label1 = new global::Gtk.Label ();
			this.label1.Name = "label1";
			this.label1.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Compiling");
			this.notebook1.SetTabLabel (this.table_CompilingTab, this.label1);
			this.label1.ShowAll ();
			// Container child notebook1.Gtk.Notebook+NotebookChild
			this.vbox1 = new global::Gtk.VBox ();
			this.vbox1.Name = "vbox1";
			this.vbox1.Spacing = 6;
			// Container child vbox1.Gtk.Box+BoxChild
			this.check_EnableBuildCmdOverride = new global::Gtk.CheckButton ();
			this.check_EnableBuildCmdOverride.CanFocus = true;
			this.check_EnableBuildCmdOverride.Name = "check_EnableBuildCmdOverride";
			this.check_EnableBuildCmdOverride.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Enable custom build tools");
			this.check_EnableBuildCmdOverride.DrawIndicator = true;
			this.check_EnableBuildCmdOverride.UseUnderline = true;
			this.vbox1.Add (this.check_EnableBuildCmdOverride);
			global::Gtk.Box.BoxChild w39 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.check_EnableBuildCmdOverride]));
			w39.Position = 0;
			w39.Expand = false;
			w39.Fill = false;
			// Container child vbox1.Gtk.Box+BoxChild
			this.table_CustomBuildTools = new global::Gtk.Table (((uint)(5)), ((uint)(2)), false);
			this.table_CustomBuildTools.Name = "table_CustomBuildTools";
			this.table_CustomBuildTools.RowSpacing = ((uint)(6));
			this.table_CustomBuildTools.ColumnSpacing = ((uint)(6));
			// Container child table_CustomBuildTools.Gtk.Table+TableChild
			this.check_BuildToolsPerConfiguration = new global::Gtk.CheckButton ();
			this.check_BuildToolsPerConfiguration.CanFocus = true;
			this.check_BuildToolsPerConfiguration.Name = "check_BuildToolsPerConfiguration";
			this.check_BuildToolsPerConfiguration.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Apply custom build settings to all configurations");
			this.check_BuildToolsPerConfiguration.DrawIndicator = true;
			this.check_BuildToolsPerConfiguration.UseUnderline = true;
			this.table_CustomBuildTools.Add (this.check_BuildToolsPerConfiguration);
			global::Gtk.Table.TableChild w40 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.check_BuildToolsPerConfiguration]));
			w40.LeftAttach = ((uint)(1));
			w40.RightAttach = ((uint)(2));
			w40.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CustomBuildTools.Gtk.Table+TableChild
			this.label22 = new global::Gtk.Label ();
			this.label22.Name = "label22";
			this.label22.Xalign = 0F;
			this.label22.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Build command");
			this.table_CustomBuildTools.Add (this.label22);
			global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.label22]));
			w41.TopAttach = ((uint)(1));
			w41.BottomAttach = ((uint)(2));
			w41.XOptions = ((global::Gtk.AttachOptions)(4));
			w41.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CustomBuildTools.Gtk.Table+TableChild
			this.label23 = new global::Gtk.Label ();
			this.label23.Name = "label23";
			this.label23.Xalign = 0F;
			this.label23.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Run command");
			this.table_CustomBuildTools.Add (this.label23);
			global::Gtk.Table.TableChild w42 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.label23]));
			w42.TopAttach = ((uint)(3));
			w42.BottomAttach = ((uint)(4));
			w42.XOptions = ((global::Gtk.AttachOptions)(4));
			w42.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CustomBuildTools.Gtk.Table+TableChild
			this.label24 = new global::Gtk.Label ();
			this.label24.Name = "label24";
			this.label24.Xalign = 0F;
			this.label24.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Macros");
			this.table_CustomBuildTools.Add (this.label24);
			global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.label24]));
			w43.TopAttach = ((uint)(4));
			w43.BottomAttach = ((uint)(5));
			w43.XOptions = ((global::Gtk.AttachOptions)(4));
			w43.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CustomBuildTools.Gtk.Table+TableChild
			this.label25 = new global::Gtk.Label ();
			this.label25.Name = "label25";
			this.label25.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Build check command");
			this.table_CustomBuildTools.Add (this.label25);
			global::Gtk.Table.TableChild w44 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.label25]));
			w44.TopAttach = ((uint)(2));
			w44.BottomAttach = ((uint)(3));
			w44.XOptions = ((global::Gtk.AttachOptions)(4));
			w44.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CustomBuildTools.Gtk.Table+TableChild
			this.macroGrid = null;
			this.table_CustomBuildTools.Add (this.macroGrid);
			global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.macroGrid]));
			w45.TopAttach = ((uint)(4));
			w45.BottomAttach = ((uint)(5));
			w45.LeftAttach = ((uint)(1));
			w45.RightAttach = ((uint)(2));
			// Container child table_CustomBuildTools.Gtk.Table+TableChild
			this.text_BuildCheckCommand = new global::Gtk.Entry ();
			w11.SetTip (this.text_BuildCheckCommand, "Command that is executed to check whether the project was built well.\nMust return" +
			" 0 (Zero) if there were no errors and if the run command can be launched.\nIf emp" +
			"ty, the project will be assumed as being built correctly.", "Command that is executed to check whether the project was built well.\nMust return" +
			" 0 (Zero) if there were no errors and if the run command can be launched.\nIf emp" +
			"ty, the project will be assumed as being built correctly.");
			this.text_BuildCheckCommand.CanFocus = true;
			this.text_BuildCheckCommand.Name = "text_BuildCheckCommand";
			this.text_BuildCheckCommand.IsEditable = true;
			this.text_BuildCheckCommand.InvisibleChar = '●';
			this.table_CustomBuildTools.Add (this.text_BuildCheckCommand);
			global::Gtk.Table.TableChild w46 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.text_BuildCheckCommand]));
			w46.TopAttach = ((uint)(2));
			w46.BottomAttach = ((uint)(3));
			w46.LeftAttach = ((uint)(1));
			w46.RightAttach = ((uint)(2));
			w46.XOptions = ((global::Gtk.AttachOptions)(4));
			w46.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CustomBuildTools.Gtk.Table+TableChild
			this.text_BuildCommand = new global::Gtk.Entry ();
			this.text_BuildCommand.CanFocus = true;
			this.text_BuildCommand.Name = "text_BuildCommand";
			this.text_BuildCommand.IsEditable = true;
			this.text_BuildCommand.InvisibleChar = '●';
			this.table_CustomBuildTools.Add (this.text_BuildCommand);
			global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.text_BuildCommand]));
			w47.TopAttach = ((uint)(1));
			w47.BottomAttach = ((uint)(2));
			w47.LeftAttach = ((uint)(1));
			w47.RightAttach = ((uint)(2));
			w47.XOptions = ((global::Gtk.AttachOptions)(4));
			w47.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table_CustomBuildTools.Gtk.Table+TableChild
			this.text_RunCommand = new global::Gtk.Entry ();
			this.text_RunCommand.CanFocus = true;
			this.text_RunCommand.Name = "text_RunCommand";
			this.text_RunCommand.IsEditable = true;
			this.text_RunCommand.InvisibleChar = '●';
			this.table_CustomBuildTools.Add (this.text_RunCommand);
			global::Gtk.Table.TableChild w48 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.text_RunCommand]));
			w48.TopAttach = ((uint)(3));
			w48.BottomAttach = ((uint)(4));
			w48.LeftAttach = ((uint)(1));
			w48.RightAttach = ((uint)(2));
			w48.XOptions = ((global::Gtk.AttachOptions)(4));
			w48.YOptions = ((global::Gtk.AttachOptions)(4));
			this.vbox1.Add (this.table_CustomBuildTools);
			global::Gtk.Box.BoxChild w49 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.table_CustomBuildTools]));
			w49.Position = 1;
			this.notebook1.Add (this.vbox1);
			global::Gtk.Notebook.NotebookChild w50 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1 [this.vbox1]));
			w50.Position = 2;
			// Notebook tab
			this.label21 = new global::Gtk.Label ();
			this.label21.Name = "label21";
			this.label21.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString ("Custom build tools");
			this.notebook1.SetTabLabel (this.vbox1, this.label21);
			this.label21.ShowAll ();
			this.Add (this.notebook1);
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.Show ();
			this.cbUseDefaultCompiler.Clicked += new global::System.EventHandler (this.cbUseDefaultCompiler_Clicked);
			this.check_EnableBuildCmdOverride.Toggled += new global::System.EventHandler (this.OnCheckEnableBuildCmdOverrideToggled);
		}
Example #25
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.WidthRequest   = 500;
     this.HeightRequest  = 500;
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("Conversor de Bases\n");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.BorderWidth    = ((uint)(15));
     this.Resizable      = false;
     this.AllowGrow      = false;
     this.DefaultWidth   = 500;
     this.DefaultHeight  = 500;
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.alignment3      = new global::Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.alignment3.Name = "alignment3";
     // Container child alignment3.Gtk.Container+ContainerChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.textview2                  = new global::Gtk.TextView();
     this.textview2.Buffer.Text      = "Digite aqui o numero que deseja converter.";
     this.textview2.Sensitive        = false;
     this.textview2.CanFocus         = true;
     this.textview2.Name             = "textview2";
     this.textview2.Editable         = false;
     this.textview2.CursorVisible    = false;
     this.textview2.AcceptsTab       = false;
     this.textview2.WrapMode         = ((global::Gtk.WrapMode)(2));
     this.textview2.PixelsAboveLines = 5;
     this.hbox1.Add(this.textview2);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.textview2]));
     w1.Position = 0;
     // Container child hbox1.Gtk.Box+BoxChild
     this.num1 = new global::Gtk.Entry();
     global::Gtk.Tooltips w2 = new Gtk.Tooltips();
     w2.SetTip(this.num1, "Digite o numero para conversao.", "Digite o numero para conversao.");
     this.num1.WidthRequest  = 145;
     this.num1.CanFocus      = true;
     this.num1.Name          = "num1";
     this.num1.IsEditable    = true;
     this.num1.MaxLength     = 200;
     this.num1.InvisibleChar = '●';
     this.hbox1.Add(this.num1);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.num1]));
     w3.Position = 1;
     this.vbox2.Add(this.hbox1);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbox1]));
     w4.Position = 0;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox2         = new global::Gtk.HBox();
     this.hbox2.Name    = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.textview3                  = new global::Gtk.TextView();
     this.textview3.Buffer.Text      = "Informe a base de origem do numero.";
     this.textview3.Sensitive        = false;
     this.textview3.CanFocus         = true;
     this.textview3.Name             = "textview3";
     this.textview3.Editable         = false;
     this.textview3.CursorVisible    = false;
     this.textview3.AcceptsTab       = false;
     this.textview3.WrapMode         = ((global::Gtk.WrapMode)(3));
     this.textview3.PixelsAboveLines = 6;
     this.hbox2.Add(this.textview3);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.textview3]));
     w5.Position = 0;
     // Container child hbox2.Gtk.Box+BoxChild
     this.combobox1 = global::Gtk.ComboBox.NewText();
     this.combobox1.AppendText(global::Mono.Unix.Catalog.GetString("Base de origem"));
     this.combobox1.AppendText(global::Mono.Unix.Catalog.GetString("Binario"));
     this.combobox1.AppendText(global::Mono.Unix.Catalog.GetString("Octal"));
     this.combobox1.AppendText(global::Mono.Unix.Catalog.GetString("Decimal"));
     this.combobox1.AppendText(global::Mono.Unix.Catalog.GetString("Hexadecimal"));
     w2.SetTip(this.combobox1, "Base de Origem", "Base de Origem");
     this.combobox1.WidthRequest = 181;
     this.combobox1.Name         = "combobox1";
     this.combobox1.Active       = 0;
     this.hbox2.Add(this.combobox1);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.combobox1]));
     w6.Position = 1;
     w6.Expand   = false;
     w6.Fill     = false;
     this.vbox2.Add(this.hbox2);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbox2]));
     w7.Position = 1;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox3         = new global::Gtk.HBox();
     this.hbox3.Name    = "hbox3";
     this.hbox3.Spacing = 6;
     // Container child hbox3.Gtk.Box+BoxChild
     this.textview1                  = new global::Gtk.TextView();
     this.textview1.Buffer.Text      = "Informe a base de destino do numero";
     this.textview1.Sensitive        = false;
     this.textview1.CanFocus         = true;
     this.textview1.Name             = "textview1";
     this.textview1.Editable         = false;
     this.textview1.CursorVisible    = false;
     this.textview1.AcceptsTab       = false;
     this.textview1.WrapMode         = ((global::Gtk.WrapMode)(3));
     this.textview1.PixelsAboveLines = 6;
     this.hbox3.Add(this.textview1);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.textview1]));
     w8.Position = 0;
     // Container child hbox3.Gtk.Box+BoxChild
     this.combobox2 = global::Gtk.ComboBox.NewText();
     this.combobox2.AppendText(global::Mono.Unix.Catalog.GetString("Base de destino"));
     this.combobox2.AppendText(global::Mono.Unix.Catalog.GetString("Binario"));
     this.combobox2.AppendText(global::Mono.Unix.Catalog.GetString("Octal"));
     this.combobox2.AppendText(global::Mono.Unix.Catalog.GetString("Decimal"));
     this.combobox2.AppendText(global::Mono.Unix.Catalog.GetString("Hexadecimal"));
     this.combobox2.WidthRequest = 181;
     this.combobox2.Name         = "combobox2";
     this.combobox2.Active       = 0;
     this.hbox3.Add(this.combobox2);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.combobox2]));
     w9.Position = 1;
     w9.Expand   = false;
     w9.Fill     = false;
     this.vbox2.Add(this.hbox3);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbox3]));
     w10.Position = 2;
     w10.Expand   = false;
     w10.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox4         = new global::Gtk.HBox();
     this.hbox4.Name    = "hbox4";
     this.hbox4.Spacing = 6;
     // Container child hbox4.Gtk.Box+BoxChild
     this.button1              = new global::Gtk.Button();
     this.button1.CanFocus     = true;
     this.button1.Name         = "button1";
     this.button1.UseUnderline = true;
     this.button1.Label        = global::Mono.Unix.Catalog.GetString("Converter");
     this.hbox4.Add(this.button1);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.button1]));
     w11.Position = 0;
     this.vbox2.Add(this.hbox4);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbox4]));
     w12.Position = 3;
     w12.Expand   = false;
     w12.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.vbox3 = new global::Gtk.VBox();
     this.vbox3.WidthRequest  = 500;
     this.vbox3.HeightRequest = 200;
     this.vbox3.Name          = "vbox3";
     this.vbox3.Spacing       = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.GtkScrolledWindow                 = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name            = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType      = ((global::Gtk.ShadowType)(1));
     this.GtkScrolledWindow.WindowPlacement = ((global::Gtk.CornerType)(3));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.textview4 = new global::Gtk.TextView();
     this.textview4.WidthRequest  = 500;
     this.textview4.HeightRequest = 200;
     this.textview4.CanFocus      = true;
     this.textview4.Name          = "textview4";
     this.textview4.WrapMode      = ((global::Gtk.WrapMode)(3));
     this.GtkScrolledWindow.Add(this.textview4);
     this.vbox3.Add(this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.GtkScrolledWindow]));
     w14.Position = 0;
     this.vbox2.Add(this.vbox3);
     global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.vbox3]));
     w15.Position = 4;
     w15.Expand   = false;
     w15.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.statusbar1         = new global::Gtk.Statusbar();
     this.statusbar1.Name    = "statusbar1";
     this.statusbar1.Spacing = 6;
     // Container child statusbar1.Gtk.Box+BoxChild
     this.button2              = new global::Gtk.Button();
     this.button2.CanFocus     = true;
     this.button2.Name         = "button2";
     this.button2.UseUnderline = true;
     this.button2.Label        = global::Mono.Unix.Catalog.GetString("Sobre");
     this.statusbar1.Add(this.button2);
     global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.statusbar1 [this.button2]));
     w16.Position = 2;
     w16.Expand   = false;
     w16.Fill     = false;
     this.vbox2.Add(this.statusbar1);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.statusbar1]));
     w17.PackType = ((global::Gtk.PackType)(1));
     w17.Position = 5;
     w17.Expand   = false;
     w17.Fill     = false;
     this.alignment3.Add(this.vbox2);
     this.Add(this.alignment3);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Show();
     this.DeleteEvent     += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.num1.Changed    += new global::System.EventHandler(this.OnNum1Changed);
     this.button1.Clicked += new global::System.EventHandler(this.OnButton1Clicked);
     this.button2.Clicked += new global::System.EventHandler(this.OnButton2Clicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget Osobni_Troškovnik.EditTrosakWindow
     this.Name           = "Osobni_Troškovnik.EditTrosakWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("Uredi trošak");
     this.Icon           = global::Gdk.Pixbuf.LoadFromResource("Osobni_Troškovnik.Pics.winico.png");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Modal          = true;
     this.Resizable      = false;
     this.Gravity        = ((global::Gdk.Gravity)(5));
     // Container child Osobni_Troškovnik.EditTrosakWindow.Gtk.Container+ContainerChild
     this.eventBox      = new global::Gtk.EventBox();
     this.eventBox.Name = "eventBox";
     // Container child eventBox.Gtk.Container+ContainerChild
     this.vbox1             = new global::Gtk.VBox();
     this.vbox1.Name        = "vbox1";
     this.vbox1.Spacing     = 6;
     this.vbox1.BorderWidth = ((uint)(15));
     // Container child vbox1.Gtk.Box+BoxChild
     this.table1               = new global::Gtk.Table(((uint)(4)), ((uint)(2)), false);
     this.table1.Name          = "table1";
     this.table1.RowSpacing    = ((uint)(6));
     this.table1.ColumnSpacing = ((uint)(6));
     // Container child table1.Gtk.Table+TableChild
     this.cijena          = new global::Gtk.SpinButton(0D, 1E+128D, 1D);
     this.cijena.CanFocus = true;
     this.cijena.Name     = "cijena";
     this.cijena.Adjustment.PageIncrement = 10D;
     this.cijena.ClimbRate = 1D;
     this.cijena.Digits    = ((uint)(2));
     this.cijena.Numeric   = true;
     this.table1.Add(this.cijena);
     global::Gtk.Table.TableChild w1 = ((global::Gtk.Table.TableChild)(this.table1[this.cijena]));
     w1.TopAttach    = ((uint)(1));
     w1.BottomAttach = ((uint)(2));
     w1.LeftAttach   = ((uint)(1));
     w1.RightAttach  = ((uint)(2));
     w1.XOptions     = ((global::Gtk.AttachOptions)(4));
     w1.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.opis          = new global::Gtk.TextView();
     this.opis.CanFocus = true;
     this.opis.Name     = "opis";
     this.GtkScrolledWindow.Add(this.opis);
     this.table1.Add(this.GtkScrolledWindow);
     global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table1[this.GtkScrolledWindow]));
     w3.TopAttach    = ((uint)(3));
     w3.BottomAttach = ((uint)(4));
     w3.LeftAttach   = ((uint)(1));
     w3.RightAttach  = ((uint)(2));
     w3.XOptions     = ((global::Gtk.AttachOptions)(4));
     w3.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.kalendar                = new global::Gtk.Calendar();
     this.kalendar.CanFocus       = true;
     this.kalendar.Name           = "kalendar";
     this.kalendar.DisplayOptions = ((global::Gtk.CalendarDisplayOptions)(35));
     this.table1.Add(this.kalendar);
     global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table1[this.kalendar]));
     w4.TopAttach    = ((uint)(2));
     w4.BottomAttach = ((uint)(3));
     w4.LeftAttach   = ((uint)(1));
     w4.RightAttach  = ((uint)(2));
     w4.XOptions     = ((global::Gtk.AttachOptions)(4));
     w4.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.kategorijaLabel        = new global::Gtk.Label();
     this.kategorijaLabel.Name   = "kategorijaLabel";
     this.kategorijaLabel.Xalign = 0.03F;
     this.table1.Add(this.kategorijaLabel);
     global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table1[this.kategorijaLabel]));
     w5.LeftAttach  = ((uint)(1));
     w5.RightAttach = ((uint)(2));
     w5.XOptions    = ((global::Gtk.AttachOptions)(4));
     w5.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("Kategorija:");
     this.table1.Add(this.label1);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table1[this.label1]));
     w6.XOptions = ((global::Gtk.AttachOptions)(4));
     w6.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("Cijena:");
     this.table1.Add(this.label2);
     global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table1[this.label2]));
     w7.TopAttach    = ((uint)(1));
     w7.BottomAttach = ((uint)(2));
     w7.XOptions     = ((global::Gtk.AttachOptions)(4));
     w7.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.Yalign    = 0.03F;
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("Datum:");
     this.table1.Add(this.label3);
     global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table1[this.label3]));
     w8.TopAttach    = ((uint)(2));
     w8.BottomAttach = ((uint)(3));
     w8.XOptions     = ((global::Gtk.AttachOptions)(4));
     w8.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.Yalign    = 0.04F;
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("Opis:");
     this.table1.Add(this.label4);
     global::Gtk.Table.TableChild w9 = ((global::Gtk.Table.TableChild)(this.table1[this.label4]));
     w9.TopAttach    = ((uint)(3));
     w9.BottomAttach = ((uint)(4));
     w9.XOptions     = ((global::Gtk.AttachOptions)(4));
     w9.YOptions     = ((global::Gtk.AttachOptions)(4));
     this.vbox1.Add(this.table1);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.table1]));
     w10.Position = 0;
     w10.Expand   = false;
     w10.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hseparator1      = new global::Gtk.HSeparator();
     this.hseparator1.Name = "hseparator1";
     this.vbox1.Add(this.hseparator1);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hseparator1]));
     w11.Position = 1;
     w11.Expand   = false;
     w11.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 70;
     // Container child hbox1.Gtk.Box+BoxChild
     this.odustani = new global::Gtk.Button();
     global::Gtk.Tooltips w12 = new Gtk.Tooltips();
     w12.SetTip(this.odustani, "Odbaci promjene", "Odbaci promjene");
     this.odustani.CanFocus     = true;
     this.odustani.Name         = "odustani";
     this.odustani.UseUnderline = true;
     this.odustani.Label        = global::Mono.Unix.Catalog.GetString("Odustani");
     this.hbox1.Add(this.odustani);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.odustani]));
     w13.Position = 0;
     w13.Expand   = false;
     w13.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.brisi = new global::Gtk.Button();
     w12.SetTip(this.brisi, "Izbriši trošak", "Izbriši trošak");
     this.brisi.CanFocus     = true;
     this.brisi.Name         = "brisi";
     this.brisi.UseUnderline = true;
     this.brisi.Label        = global::Mono.Unix.Catalog.GetString("Briši trošak");
     this.hbox1.Add(this.brisi);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.brisi]));
     w14.Position = 1;
     w14.Expand   = false;
     w14.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.spremi = new global::Gtk.Button();
     w12.SetTip(this.spremi, "Spremi promjene", "Spremi promjene");
     this.spremi.CanFocus     = true;
     this.spremi.Name         = "spremi";
     this.spremi.UseUnderline = true;
     this.spremi.Label        = global::Mono.Unix.Catalog.GetString("Spremi");
     this.hbox1.Add(this.spremi);
     global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.spremi]));
     w15.Position = 2;
     w15.Expand   = false;
     w15.Fill     = false;
     this.vbox1.Add(this.hbox1);
     global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox1]));
     w16.Position = 2;
     w16.Expand   = false;
     w16.Fill     = false;
     this.eventBox.Add(this.vbox1);
     this.Add(this.eventBox);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 377;
     this.DefaultHeight = 409;
     this.Show();
     this.DeleteEvent      += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.KeyPressEvent    += new global::Gtk.KeyPressEventHandler(this.OnKeyPress);
     this.odustani.Clicked += new global::System.EventHandler(this.odustaniClicked);
     this.brisi.Clicked    += new global::System.EventHandler(this.brisiClicked);
     this.spremi.Clicked   += new global::System.EventHandler(this.spremiClicked);
 }
Example #27
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.UIManager = new global::Gtk.UIManager();
     global::Gtk.ActionGroup w1 = new global::Gtk.ActionGroup("Default");
     this.HelpAction            = new global::Gtk.Action("HelpAction", global::Mono.Unix.Catalog.GetString("Help"), null, null);
     this.HelpAction.ShortLabel = global::Mono.Unix.Catalog.GetString("Help");
     w1.Add(this.HelpAction, null);
     this.helpAction = new global::Gtk.Action("helpAction", null, null, "gtk-help");
     w1.Add(this.helpAction, null);
     this.HelpAction1            = new global::Gtk.Action("HelpAction1", global::Mono.Unix.Catalog.GetString("Help"), null, null);
     this.HelpAction1.ShortLabel = global::Mono.Unix.Catalog.GetString("Help");
     w1.Add(this.HelpAction1, null);
     this.HelpAction2            = new global::Gtk.Action("HelpAction2", global::Mono.Unix.Catalog.GetString("_Help"), null, null);
     this.HelpAction2.ShortLabel = global::Mono.Unix.Catalog.GetString("Help");
     w1.Add(this.HelpAction2, null);
     this.ControlsAction            = new global::Gtk.Action("ControlsAction", global::Mono.Unix.Catalog.GetString("_Controls"), null, null);
     this.ControlsAction.ShortLabel = global::Mono.Unix.Catalog.GetString("Controls");
     w1.Add(this.ControlsAction, null);
     this.WiimoteAction            = new global::Gtk.Action("WiimoteAction", global::Mono.Unix.Catalog.GetString("_Wiimote"), null, null);
     this.WiimoteAction.ShortLabel = global::Mono.Unix.Catalog.GetString("Wiimote");
     w1.Add(this.WiimoteAction, null);
     this.ConnectAction            = new global::Gtk.Action("ConnectAction", global::Mono.Unix.Catalog.GetString("_Connect"), null, null);
     this.ConnectAction.ShortLabel = global::Mono.Unix.Catalog.GetString("_Connect");
     w1.Add(this.ConnectAction, null);
     this.DisconnectAction            = new global::Gtk.Action("DisconnectAction", global::Mono.Unix.Catalog.GetString("_Disconnect"), null, null);
     this.DisconnectAction.Sensitive  = false;
     this.DisconnectAction.ShortLabel = global::Mono.Unix.Catalog.GetString("Disconnect");
     w1.Add(this.DisconnectAction, null);
     this.AboutAction            = new global::Gtk.Action("AboutAction", global::Mono.Unix.Catalog.GetString("_About"), null, null);
     this.AboutAction.ShortLabel = global::Mono.Unix.Catalog.GetString("About");
     w1.Add(this.AboutAction, null);
     this.UIManager.InsertActionGroup(w1, 0);
     this.AddAccelGroup(this.UIManager.AccelGroup);
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("OsuMote");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.alignment1      = new global::Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.alignment1.Name = "alignment1";
     // Container child alignment1.Gtk.Container+ContainerChild
     this.vbox3         = new global::Gtk.VBox();
     this.vbox3.Name    = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.UIManager.AddUiFromString(@"<ui><menubar name='menubar5'><menu name='WiimoteAction' action='WiimoteAction'><menuitem name='ConnectAction' action='ConnectAction'/><menuitem name='DisconnectAction' action='DisconnectAction'/></menu><menu name='HelpAction2' action='HelpAction2'><menuitem name='ControlsAction' action='ControlsAction'/><menuitem name='AboutAction' action='AboutAction'/></menu></menubar></ui>");
     this.menubar5      = ((global::Gtk.MenuBar)(this.UIManager.GetWidget("/menubar5")));
     this.menubar5.Name = "menubar5";
     this.vbox3.Add(this.menubar5);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.menubar5]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.mainWindowSeparationBox             = new global::Gtk.HBox();
     this.mainWindowSeparationBox.Name        = "mainWindowSeparationBox";
     this.mainWindowSeparationBox.Homogeneous = true;
     this.mainWindowSeparationBox.Spacing     = 6;
     this.mainWindowSeparationBox.BorderWidth = ((uint)(3));
     // Container child mainWindowSeparationBox.Gtk.Box+BoxChild
     this.alignment2      = new global::Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.alignment2.Name = "alignment2";
     // Container child alignment2.Gtk.Container+ContainerChild
     this.wiimoteFrame             = new global::Gtk.Frame();
     this.wiimoteFrame.Name        = "wiimoteFrame";
     this.wiimoteFrame.ShadowType  = ((global::Gtk.ShadowType)(2));
     this.wiimoteFrame.BorderWidth = ((uint)(2));
     // Container child wiimoteFrame.Gtk.Container+ContainerChild
     this.GtkAlignment             = new global::Gtk.Alignment(0F, 0F, 1F, 1F);
     this.GtkAlignment.Name        = "GtkAlignment";
     this.GtkAlignment.LeftPadding = ((uint)(12));
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     this.vbox1             = new global::Gtk.VBox();
     this.vbox1.Name        = "vbox1";
     this.vbox1.Homogeneous = true;
     this.vbox1.Spacing     = 6;
     this.vbox1.BorderWidth = ((uint)(2));
     // Container child vbox1.Gtk.Box+BoxChild
     this.connectButton = new global::Gtk.Button();
     global::Gtk.Tooltips w3 = new Gtk.Tooltips();
     w3.SetTip(this.connectButton, "Attempt to connect to the wiimote via bluetooth", "Attempt to connect to the wiimote via bluetooth");
     this.connectButton.CanFocus     = true;
     this.connectButton.Name         = "connectButton";
     this.connectButton.UseUnderline = true;
     this.connectButton.Label        = "Connect";
     this.vbox1.Add(this.connectButton);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.connectButton]));
     w4.Position = 0;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.calibrateButton = new global::Gtk.Button();
     w3.SetTip(this.calibrateButton, "Calibrate movement detection", "Calibrate movement detection");
     this.calibrateButton.Sensitive    = false;
     this.calibrateButton.CanFocus     = true;
     this.calibrateButton.Name         = "calibrateButton";
     this.calibrateButton.UseUnderline = true;
     this.calibrateButton.Label        = "Calibrate";
     this.vbox1.Add(this.calibrateButton);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.calibrateButton]));
     w5.Position = 1;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.disconnectButton = new global::Gtk.Button();
     w3.SetTip(this.disconnectButton, "Disconnect currently connected wiimote", "Disconnect currently connected wiimote");
     this.disconnectButton.Sensitive    = false;
     this.disconnectButton.CanFocus     = true;
     this.disconnectButton.Name         = "disconnectButton";
     this.disconnectButton.UseUnderline = true;
     this.disconnectButton.Label        = "Disconnect";
     this.vbox1.Add(this.disconnectButton);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.disconnectButton]));
     w6.Position = 2;
     w6.Expand   = false;
     w6.Fill     = false;
     this.GtkAlignment.Add(this.vbox1);
     this.wiimoteFrame.Add(this.GtkAlignment);
     this.wiimoteFrameLabel           = new global::Gtk.Label();
     this.wiimoteFrameLabel.Name      = "wiimoteFrameLabel";
     this.wiimoteFrameLabel.LabelProp = global::Mono.Unix.Catalog.GetString("<b>Wiimote</b>");
     this.wiimoteFrameLabel.UseMarkup = true;
     this.wiimoteFrame.LabelWidget    = this.wiimoteFrameLabel;
     this.alignment2.Add(this.wiimoteFrame);
     this.mainWindowSeparationBox.Add(this.alignment2);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.mainWindowSeparationBox[this.alignment2]));
     w10.Position = 0;
     // Container child mainWindowSeparationBox.Gtk.Box+BoxChild
     this.alignment3      = new global::Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.alignment3.Name = "alignment3";
     // Container child alignment3.Gtk.Container+ContainerChild
     this.feedbackFrame             = new global::Gtk.Frame();
     this.feedbackFrame.Sensitive   = false;
     this.feedbackFrame.Name        = "feedbackFrame";
     this.feedbackFrame.ShadowType  = ((global::Gtk.ShadowType)(2));
     this.feedbackFrame.BorderWidth = ((uint)(2));
     // Container child feedbackFrame.Gtk.Container+ContainerChild
     this.GtkAlignment1             = new global::Gtk.Alignment(0F, 0F, 1F, 1F);
     this.GtkAlignment1.Name        = "GtkAlignment1";
     this.GtkAlignment1.LeftPadding = ((uint)(12));
     // Container child GtkAlignment1.Gtk.Container+ContainerChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.vbox4         = new global::Gtk.VBox();
     this.vbox4.Name    = "vbox4";
     this.vbox4.Spacing = 6;
     // Container child vbox4.Gtk.Box+BoxChild
     this.vibrationCheckbutton = new global::Gtk.CheckButton();
     w3.SetTip(this.vibrationCheckbutton, "Enables vibration when a hit is registered", "Enables vibration when a hit is registered");
     this.vibrationCheckbutton.CanFocus      = true;
     this.vibrationCheckbutton.Name          = "vibrationCheckbutton";
     this.vibrationCheckbutton.Label         = "Vibration";
     this.vibrationCheckbutton.DrawIndicator = true;
     this.vibrationCheckbutton.UseUnderline  = true;
     this.vbox4.Add(this.vibrationCheckbutton);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.vibrationCheckbutton]));
     w11.Position = 0;
     w11.Expand   = false;
     w11.Fill     = false;
     this.vbox2.Add(this.vbox4);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.vbox4]));
     w12.Position = 0;
     // Container child vbox2.Gtk.Box+BoxChild
     this.frame1            = new global::Gtk.Frame();
     this.frame1.Name       = "frame1";
     this.frame1.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child frame1.Gtk.Container+ContainerChild
     this.GtkAlignment2             = new global::Gtk.Alignment(0F, 0F, 1F, 1F);
     this.GtkAlignment2.Name        = "GtkAlignment2";
     this.GtkAlignment2.LeftPadding = ((uint)(12));
     // Container child GtkAlignment2.Gtk.Container+ContainerChild
     this.feedbackImage        = new global::Gtk.Image();
     this.feedbackImage.Name   = "feedbackImage";
     this.feedbackImage.Pixbuf = global::Gdk.Pixbuf.LoadFromResource("TRAB_IHC.res.TaikoNoInputs.png");
     this.GtkAlignment2.Add(this.feedbackImage);
     this.frame1.Add(this.GtkAlignment2);
     this.GtkLabel5           = new global::Gtk.Label();
     this.GtkLabel5.Name      = "GtkLabel5";
     this.GtkLabel5.LabelProp = global::Mono.Unix.Catalog.GetString("<b>Test your moves here!</b>");
     this.GtkLabel5.UseMarkup = true;
     this.frame1.LabelWidget  = this.GtkLabel5;
     this.vbox2.Add(this.frame1);
     global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.frame1]));
     w15.Position = 1;
     w15.Expand   = false;
     w15.Fill     = false;
     this.GtkAlignment1.Add(this.vbox2);
     this.feedbackFrame.Add(this.GtkAlignment1);
     this.feedbackFrameLabel           = new global::Gtk.Label();
     this.feedbackFrameLabel.Name      = "feedbackFrameLabel";
     this.feedbackFrameLabel.LabelProp = global::Mono.Unix.Catalog.GetString("<b>Feedback</b>");
     this.feedbackFrameLabel.UseMarkup = true;
     this.feedbackFrame.LabelWidget    = this.feedbackFrameLabel;
     this.alignment3.Add(this.feedbackFrame);
     this.mainWindowSeparationBox.Add(this.alignment3);
     global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.mainWindowSeparationBox[this.alignment3]));
     w19.Position = 1;
     this.vbox3.Add(this.mainWindowSeparationBox);
     global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.mainWindowSeparationBox]));
     w20.Position = 1;
     w20.Expand   = false;
     w20.Fill     = false;
     this.alignment1.Add(this.vbox3);
     this.Add(this.alignment1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 576;
     this.DefaultHeight = 305;
     this.Show();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.ControlsAction.Activated     += new global::System.EventHandler(this.OnControlsActionActivated);
     this.ConnectAction.Activated      += new global::System.EventHandler(this.OnConnectActionActibvated);
     this.DisconnectAction.Activated   += new global::System.EventHandler(this.OnDisconnectActionActivated);
     this.AboutAction.Activated        += new global::System.EventHandler(this.OnAboutActionActivated);
     this.connectButton.Clicked        += new global::System.EventHandler(this.ConnectHandler);
     this.calibrateButton.Clicked      += new global::System.EventHandler(this.CalibrateHandler);
     this.disconnectButton.Clicked     += new global::System.EventHandler(this.DisconnectHandler);
     this.vibrationCheckbutton.Toggled += new global::System.EventHandler(this.ToggleVibrationHandler);
 }
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget MonoDevelop.D.Formatting.FormattingPanelWidget
			global::Stetic.BinContainer.Attach (this);
			this.Name = "MonoDevelop.D.Formatting.FormattingPanelWidget";
			// Container child MonoDevelop.D.Formatting.FormattingPanelWidget.Gtk.Container+ContainerChild
			this.table1 = new global::Gtk.Table (((uint)(5)), ((uint)(2)), false);
			this.table1.Name = "table1";
			this.table1.RowSpacing = ((uint)(6));
			this.table1.ColumnSpacing = ((uint)(6));
			// Container child table1.Gtk.Table+TableChild
			this.check_IndentPastedCodeLines = new global::Gtk.CheckButton ();
			this.check_IndentPastedCodeLines.CanFocus = true;
			this.check_IndentPastedCodeLines.Name = "check_IndentPastedCodeLines";
			this.check_IndentPastedCodeLines.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Automatically indent pasted code lines");
			this.check_IndentPastedCodeLines.DrawIndicator = true;
			this.check_IndentPastedCodeLines.UseUnderline = true;
			this.table1.Add (this.check_IndentPastedCodeLines);
			global::Gtk.Table.TableChild w1 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_IndentPastedCodeLines]));
			w1.TopAttach = ((uint)(3));
			w1.BottomAttach = ((uint)(4));
			w1.LeftAttach = ((uint)(1));
			w1.RightAttach = ((uint)(2));
			w1.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table1.Gtk.Table+TableChild
			this.check_KeepAlignmentSpaces = new global::Gtk.CheckButton ();
			global::Gtk.Tooltips w2 = new Gtk.Tooltips ();
			w2.SetTip (this.check_KeepAlignmentSpaces, "If unchecked, spaces that are not used for indentation but for final code alignment will be converted to tabs, too.", "If unchecked, spaces that are not used for indentation but for final code alignment will be converted to tabs, too.");
			this.check_KeepAlignmentSpaces.CanFocus = true;
			this.check_KeepAlignmentSpaces.Name = "check_KeepAlignmentSpaces";
			this.check_KeepAlignmentSpaces.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Keep spaces for code aligment");
			this.check_KeepAlignmentSpaces.DrawIndicator = true;
			this.check_KeepAlignmentSpaces.UseUnderline = true;
			this.table1.Add (this.check_KeepAlignmentSpaces);
			global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_KeepAlignmentSpaces]));
			w3.TopAttach = ((uint)(2));
			w3.BottomAttach = ((uint)(3));
			w3.LeftAttach = ((uint)(1));
			w3.RightAttach = ((uint)(2));
			w3.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table1.Gtk.Table+TableChild
			this.chk_CommentOutStdHeaders = new global::Gtk.CheckButton ();
			this.chk_CommentOutStdHeaders.CanFocus = true;
			this.chk_CommentOutStdHeaders.Name = "chk_CommentOutStdHeaders";
			this.chk_CommentOutStdHeaders.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Comment out standard header");
			this.chk_CommentOutStdHeaders.DrawIndicator = true;
			this.chk_CommentOutStdHeaders.UseUnderline = true;
			this.table1.Add (this.chk_CommentOutStdHeaders);
			global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table1 [this.chk_CommentOutStdHeaders]));
			w4.LeftAttach = ((uint)(1));
			w4.RightAttach = ((uint)(2));
			w4.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table1.Gtk.Table+TableChild
			this.chk_InsertStarAtCommentNewLine = new global::Gtk.CheckButton ();
			this.chk_InsertStarAtCommentNewLine.CanFocus = true;
			this.chk_InsertStarAtCommentNewLine.Name = "chk_InsertStarAtCommentNewLine";
			this.chk_InsertStarAtCommentNewLine.Label = global::MonoDevelop.Core.GettextCatalog.GetString ("Insert * or + at comment new line");
			this.chk_InsertStarAtCommentNewLine.DrawIndicator = true;
			this.chk_InsertStarAtCommentNewLine.UseUnderline = true;
			this.table1.Add (this.chk_InsertStarAtCommentNewLine);
			global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table1 [this.chk_InsertStarAtCommentNewLine]));
			w5.TopAttach = ((uint)(1));
			w5.BottomAttach = ((uint)(2));
			w5.LeftAttach = ((uint)(1));
			w5.RightAttach = ((uint)(2));
			w5.YOptions = ((global::Gtk.AttachOptions)(4));
			this.Add (this.table1);
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.Hide ();
		}
Example #29
0
        public void Initialize(PropertyDescriptor prop)
        {
            if (!prop.PropertyType.IsEnum)
                throw new ApplicationException ("Enumeration editor does not support editing values of type " + prop.PropertyType);

            ebox = new Gtk.EventBox ();
            ebox.Show ();
            PackStart (ebox, true, true, 0);

            combo = Gtk.ComboBoxEntry.NewText ();
            combo.Changed += combo_Changed;
            combo.Entry.IsEditable = false;
            combo.Entry.HasFrame = false;
            combo.Entry.HeightRequest = combo.SizeRequest ().Height;	// The combo does not set the entry to the correct size when it does not have a frame
            combo.Show ();
            ebox.Add (combo);

            tips = new Gtk.Tooltips ();

            enm = Registry.LookupEnum (prop.PropertyType.FullName);
            foreach (Enum value in enm.Values)
                combo.AppendText (enm[value].Label);
        }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget DatabaseCreator.Edit
     global::Stetic.BinContainer.Attach (this);
     this.Name = "DatabaseCreator.Edit";
     // Container child DatabaseCreator.Edit.Gtk.Container+ContainerChild
     this.vbox1 = new global::Gtk.VBox ();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox3 = new global::Gtk.HBox ();
     this.hbox3.Name = "hbox3";
     this.hbox3.Spacing = 6;
     // Container child hbox3.Gtk.Box+BoxChild
     this.label1 = new global::Gtk.Label ();
     this.label1.Name = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("Script Name:");
     this.hbox3.Add (this.label1);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.label1]));
     w1.Position = 0;
     w1.Expand = false;
     w1.Fill = false;
     // Container child hbox3.Gtk.Box+BoxChild
     this.scriptNameEntry = new global::Gtk.Entry ();
     this.scriptNameEntry.CanFocus = true;
     this.scriptNameEntry.Name = "scriptNameEntry";
     this.scriptNameEntry.IsEditable = true;
     this.scriptNameEntry.InvisibleChar = '●';
     this.hbox3.Add (this.scriptNameEntry);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.scriptNameEntry]));
     w2.Position = 1;
     this.vbox1.Add (this.hbox3);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox3]));
     w3.Position = 0;
     w3.Expand = false;
     w3.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox6 = new global::Gtk.HBox ();
     this.hbox6.Name = "hbox6";
     this.hbox6.Spacing = 6;
     // Container child hbox6.Gtk.Box+BoxChild
     this.label2 = new global::Gtk.Label ();
     this.label2.Name = "label2";
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("Script URL (.lua):");
     this.hbox6.Add (this.label2);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox6 [this.label2]));
     w4.Position = 0;
     w4.Expand = false;
     w4.Fill = false;
     // Container child hbox6.Gtk.Box+BoxChild
     this.scriptURL = new global::Gtk.Entry ();
     this.scriptURL.CanFocus = true;
     this.scriptURL.Name = "scriptURL";
     this.scriptURL.IsEditable = true;
     this.scriptURL.InvisibleChar = '●';
     this.hbox6.Add (this.scriptURL);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox6 [this.scriptURL]));
     w5.Position = 1;
     this.vbox1.Add (this.hbox6);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox6]));
     w6.Position = 1;
     w6.Expand = false;
     w6.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox7 = new global::Gtk.HBox ();
     this.hbox7.Name = "hbox7";
     this.hbox7.Spacing = 6;
     // Container child hbox7.Gtk.Box+BoxChild
     this.label3 = new global::Gtk.Label ();
     global::Gtk.Tooltips w7 = new Gtk.Tooltips ();
     w7.SetTip (this.label3, "If your script has no resources, leave this blank", "If your script has no resources, leave this blank");
     this.label3.Name = "label3";
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString ("Resource URL (.zip):");
     this.hbox7.Add (this.label3);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.hbox7 [this.label3]));
     w8.Position = 0;
     w8.Expand = false;
     w8.Fill = false;
     // Container child hbox7.Gtk.Box+BoxChild
     this.resourceURL = new global::Gtk.Entry ();
     this.resourceURL.CanFocus = true;
     this.resourceURL.Name = "resourceURL";
     this.resourceURL.IsEditable = true;
     this.resourceURL.InvisibleChar = '●';
     this.hbox7.Add (this.resourceURL);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox7 [this.resourceURL]));
     w9.Position = 1;
     this.vbox1.Add (this.hbox7);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox7]));
     w10.Position = 2;
     w10.Expand = false;
     w10.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox4 = new global::Gtk.HBox ();
     this.hbox4.Name = "hbox4";
     this.hbox4.Spacing = 6;
     // Container child hbox4.Gtk.Box+BoxChild
     this.label4 = new global::Gtk.Label ();
     this.label4.Name = "label4";
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString ("Screenshot URL: ");
     this.hbox4.Add (this.label4);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.label4]));
     w11.Position = 0;
     w11.Expand = false;
     w11.Fill = false;
     // Container child hbox4.Gtk.Box+BoxChild
     this.screenshotURL = new global::Gtk.Entry ();
     this.screenshotURL.CanFocus = true;
     this.screenshotURL.Name = "screenshotURL";
     this.screenshotURL.IsEditable = true;
     this.screenshotURL.InvisibleChar = '●';
     this.hbox4.Add (this.screenshotURL);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.screenshotURL]));
     w12.Position = 1;
     this.vbox1.Add (this.hbox4);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox4]));
     w13.Position = 3;
     w13.Expand = false;
     w13.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox5 = new global::Gtk.HBox ();
     this.hbox5.Name = "hbox5";
     this.hbox5.Spacing = 6;
     // Container child hbox5.Gtk.Box+BoxChild
     this.label5 = new global::Gtk.Label ();
     this.label5.Name = "label5";
     this.label5.LabelProp = global::Mono.Unix.Catalog.GetString ("Usage Example:");
     this.hbox5.Add (this.label5);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.hbox5 [this.label5]));
     w14.Position = 0;
     w14.Expand = false;
     w14.Fill = false;
     // Container child hbox5.Gtk.Box+BoxChild
     this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
     this.GtkScrolledWindow.HeightRequest = 254;
     this.GtkScrolledWindow.Name = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.usageExample = new global::Gtk.TextView ();
     this.usageExample.CanFocus = true;
     this.usageExample.Name = "usageExample";
     this.GtkScrolledWindow.Add (this.usageExample);
     this.hbox5.Add (this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.hbox5 [this.GtkScrolledWindow]));
     w16.Position = 1;
     this.vbox1.Add (this.hbox5);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox5]));
     w17.Position = 4;
     w17.Expand = false;
     w17.Fill = false;
     this.Add (this.vbox1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.Hide ();
 }
Example #31
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget CGTK.LoginWindow
     this.Name           = "CGTK.LoginWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("Login");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Resizable      = false;
     // Container child CGTK.LoginWindow.Gtk.Container+ContainerChild
     this.loginForm             = new global::Gtk.VBox();
     this.loginForm.Name        = "loginForm";
     this.loginForm.Spacing     = 6;
     this.loginForm.BorderWidth = ((uint)(100));
     // Container child loginForm.Gtk.Box+BoxChild
     this.loginUsername = new global::Gtk.Entry();
     global::Gtk.Tooltips w1 = new Gtk.Tooltips();
     w1.SetTip(this.loginUsername, "Usuario", "Usuario");
     this.loginUsername.CanFocus      = true;
     this.loginUsername.Name          = "loginUsername";
     this.loginUsername.IsEditable    = true;
     this.loginUsername.InvisibleChar = '•';
     this.loginForm.Add(this.loginUsername);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.loginForm[this.loginUsername]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child loginForm.Gtk.Box+BoxChild
     this.loginPassword = new global::Gtk.Entry();
     w1.SetTip(this.loginPassword, "Contraseña", "Contraseña");
     this.loginPassword.CanFocus      = true;
     this.loginPassword.Name          = "loginPassword";
     this.loginPassword.IsEditable    = true;
     this.loginPassword.Visibility    = false;
     this.loginPassword.InvisibleChar = '•';
     this.loginForm.Add(this.loginPassword);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.loginForm[this.loginPassword]));
     w3.Position = 1;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child loginForm.Gtk.Box+BoxChild
     this.btnLogin              = new global::Gtk.Button();
     this.btnLogin.CanFocus     = true;
     this.btnLogin.Name         = "btnLogin";
     this.btnLogin.UseUnderline = true;
     this.btnLogin.Label        = global::Mono.Unix.Catalog.GetString("Login");
     this.loginForm.Add(this.btnLogin);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.loginForm[this.btnLogin]));
     w4.Position = 2;
     w4.Expand   = false;
     w4.Fill     = false;
     this.Add(this.loginForm);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 400;
     this.DefaultHeight = 349;
     this.Show();
     this.DeleteEvent      += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.btnLogin.Clicked += new global::System.EventHandler(this.OnBtnLoginClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget VideoAggregator.MainWindow
     this.UIManager = new global::Gtk.UIManager();
     global::Gtk.ActionGroup w1 = new global::Gtk.ActionGroup("Default");
     this.HelpAction            = new global::Gtk.Action("HelpAction", global::Mono.Unix.Catalog.GetString("Help"), null, null);
     this.HelpAction.ShortLabel = global::Mono.Unix.Catalog.GetString("Help");
     w1.Add(this.HelpAction, null);
     this.AboutAction            = new global::Gtk.Action("AboutAction", global::Mono.Unix.Catalog.GetString("About"), null, null);
     this.AboutAction.ShortLabel = global::Mono.Unix.Catalog.GetString("About");
     w1.Add(this.AboutAction, null);
     this.UIManager.InsertActionGroup(w1, 0);
     this.AddAccelGroup(this.UIManager.AccelGroup);
     this.Name           = "VideoAggregator.MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("Raspberry Video Aggregator");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child VideoAggregator.MainWindow.Gtk.Container+ContainerChild
     this.container         = new global::Gtk.VBox();
     this.container.Name    = "container";
     this.container.Spacing = 6;
     // Container child container.Gtk.Box+BoxChild
     this.UIManager.AddUiFromString("<ui><menubar name=\'menubar\'><menu name=\'HelpAction\' action=\'HelpAction\'><menuitem" +
                                    " name=\'AboutAction\' action=\'AboutAction\'/></menu></menubar></ui>");
     this.menubar      = ((global::Gtk.MenuBar)(this.UIManager.GetWidget("/menubar")));
     this.menubar.Name = "menubar";
     this.container.Add(this.menubar);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.container [this.menubar]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child container.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.backButton = new global::Gtk.Button();
     this.backButton.WidthRequest = 60;
     this.backButton.CanFocus     = true;
     this.backButton.Name         = "backButton";
     this.backButton.UseUnderline = true;
     this.backButton.Label        = global::Mono.Unix.Catalog.GetString("Back");
     this.hbox1.Add(this.backButton);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.backButton]));
     w3.Position = 0;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.hbox3         = new global::Gtk.HBox();
     this.hbox3.Name    = "hbox3";
     this.hbox3.Spacing = 6;
     // Container child hbox3.Gtk.Box+BoxChild
     this.sourceComboBox = global::Gtk.ComboBox.NewText();
     this.sourceComboBox.AppendText(global::Mono.Unix.Catalog.GetString("All"));
     this.sourceComboBox.AppendText(global::Mono.Unix.Catalog.GetString("Hulu"));
     this.sourceComboBox.AppendText(global::Mono.Unix.Catalog.GetString("Amazon"));
     this.sourceComboBox.AppendText(global::Mono.Unix.Catalog.GetString("YouTube"));
     global::Gtk.Tooltips w4 = new Gtk.Tooltips();
     w4.SetTip(this.sourceComboBox, "Sources", "Sources");
     this.sourceComboBox.WidthRequest = 200;
     this.sourceComboBox.Name         = "sourceComboBox";
     this.sourceComboBox.Active       = 0;
     this.hbox3.Add(this.sourceComboBox);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.sourceComboBox]));
     w5.Position = 0;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child hbox3.Gtk.Box+BoxChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 1;
     // Container child vbox2.Gtk.Box+BoxChild
     this.showRadioButton               = new global::Gtk.RadioButton(global::Mono.Unix.Catalog.GetString("Show"));
     this.showRadioButton.CanFocus      = true;
     this.showRadioButton.Name          = "showRadioButton";
     this.showRadioButton.DrawIndicator = true;
     this.showRadioButton.UseUnderline  = true;
     this.showRadioButton.Group         = new global::GLib.SList(global::System.IntPtr.Zero);
     this.vbox2.Add(this.showRadioButton);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.showRadioButton]));
     w6.Position = 0;
     w6.Expand   = false;
     w6.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.movieRadioButton               = new global::Gtk.RadioButton(global::Mono.Unix.Catalog.GetString("Movie"));
     this.movieRadioButton.CanFocus      = true;
     this.movieRadioButton.Name          = "movieRadioButton";
     this.movieRadioButton.DrawIndicator = true;
     this.movieRadioButton.UseUnderline  = true;
     this.movieRadioButton.Group         = this.showRadioButton.Group;
     this.vbox2.Add(this.movieRadioButton);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.movieRadioButton]));
     w7.Position = 1;
     w7.Expand   = false;
     w7.Fill     = false;
     this.hbox3.Add(this.vbox2);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.vbox2]));
     w8.Position = 1;
     this.hbox1.Add(this.hbox3);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.hbox3]));
     w9.Position = 1;
     // Container child hbox1.Gtk.Box+BoxChild
     this.popularButton = new global::Gtk.Button();
     w4.SetTip(this.popularButton, "Get most popular shows from the active source", "Get most popular shows from the active source");
     this.popularButton.CanFocus     = true;
     this.popularButton.Name         = "popularButton";
     this.popularButton.UseUnderline = true;
     this.popularButton.Label        = global::Mono.Unix.Catalog.GetString("Popular");
     this.hbox1.Add(this.popularButton);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.popularButton]));
     w10.Position = 2;
     w10.Expand   = false;
     w10.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.hbox4         = new global::Gtk.HBox();
     this.hbox4.Name    = "hbox4";
     this.hbox4.Spacing = 6;
     // Container child hbox4.Gtk.Box+BoxChild
     this.searchEntry               = new global::Gtk.Entry();
     this.searchEntry.CanFocus      = true;
     this.searchEntry.Name          = "searchEntry";
     this.searchEntry.IsEditable    = true;
     this.searchEntry.InvisibleChar = '●';
     this.hbox4.Add(this.searchEntry);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.searchEntry]));
     w11.Position = 0;
     // Container child hbox4.Gtk.Box+BoxChild
     this.searchButton              = new global::Gtk.Button();
     this.searchButton.CanFocus     = true;
     this.searchButton.Name         = "searchButton";
     this.searchButton.UseUnderline = true;
     this.searchButton.Label        = global::Mono.Unix.Catalog.GetString("Search");
     this.hbox4.Add(this.searchButton);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.searchButton]));
     w12.Position = 1;
     w12.Expand   = false;
     w12.Fill     = false;
     this.hbox1.Add(this.hbox4);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.hbox4]));
     w13.Position = 3;
     this.container.Add(this.hbox1);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.container [this.hbox1]));
     w14.Position = 1;
     w14.Expand   = false;
     w14.Fill     = false;
     this.Add(this.container);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 673;
     this.DefaultHeight = 533;
     this.Show();
     this.DeleteEvent            += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.AboutAction.Activated  += new global::System.EventHandler(this.OnAboutSelected);
     this.backButton.Clicked     += new global::System.EventHandler(this.OnBackButtonClicked);
     this.sourceComboBox.Changed += new global::System.EventHandler(this.OnSourceChanged);
     this.popularButton.Clicked  += new global::System.EventHandler(this.OnPopButtonClicked);
     this.searchEntry.Changed    += new global::System.EventHandler(this.OnSearchEntryChanged);
     this.searchEntry.Activated  += new global::System.EventHandler(this.OnSearchButtonClicked);
     this.searchButton.Clicked   += new global::System.EventHandler(this.OnSearchButtonClicked);
 }
Example #33
0
        protected virtual void Build()
        {
            global::Stetic.Gui.Initialize(this);
            // Widget MonoDevelop.D.OptionPanels.DCompilerOptions
            global::Stetic.BinContainer.Attach(this);
            this.Name = "MonoDevelop.D.OptionPanels.DCompilerOptions";
            // Container child MonoDevelop.D.OptionPanels.DCompilerOptions.Gtk.Container+ContainerChild
            this.vbox8         = new global::Gtk.VBox();
            this.vbox8.Name    = "vbox8";
            this.vbox8.Spacing = 6;
            // Container child vbox8.Gtk.Box+BoxChild
            this.table6               = new global::Gtk.Table(((uint)(7)), ((uint)(2)), false);
            this.table6.Name          = "table6";
            this.table6.RowSpacing    = ((uint)(6));
            this.table6.ColumnSpacing = ((uint)(6));
            // Container child table6.Gtk.Table+TableChild
            this.btnDefaults              = new global::Gtk.Button();
            this.btnDefaults.CanFocus     = true;
            this.btnDefaults.Name         = "btnDefaults";
            this.btnDefaults.UseUnderline = true;
            this.btnDefaults.Label        = global::MonoDevelop.Core.GettextCatalog.GetString("Defaults");
            this.table6.Add(this.btnDefaults);
            global::Gtk.Table.TableChild w1 = ((global::Gtk.Table.TableChild)(this.table6 [this.btnDefaults]));
            w1.TopAttach    = ((uint)(6));
            w1.BottomAttach = ((uint)(7));
            w1.XOptions     = ((global::Gtk.AttachOptions)(4));
            w1.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.hbox2         = new global::Gtk.HBox();
            this.hbox2.Name    = "hbox2";
            this.hbox2.Spacing = 2;
            // Container child hbox2.Gtk.Box+BoxChild
            this.txtBinPath               = new global::Gtk.Entry();
            this.txtBinPath.CanFocus      = true;
            this.txtBinPath.Name          = "txtBinPath";
            this.txtBinPath.IsEditable    = true;
            this.txtBinPath.InvisibleChar = '●';
            this.hbox2.Add(this.txtBinPath);
            global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.txtBinPath]));
            w2.Position = 0;
            // Container child hbox2.Gtk.Box+BoxChild
            this.button_BinPathBrowser              = new global::Gtk.Button();
            this.button_BinPathBrowser.CanFocus     = true;
            this.button_BinPathBrowser.Name         = "button_BinPathBrowser";
            this.button_BinPathBrowser.UseUnderline = true;
            this.button_BinPathBrowser.Label        = global::MonoDevelop.Core.GettextCatalog.GetString("Browse...");
            this.hbox2.Add(this.button_BinPathBrowser);
            global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.button_BinPathBrowser]));
            w3.Position = 1;
            w3.Expand   = false;
            w3.Fill     = false;
            this.table6.Add(this.hbox2);
            global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table6 [this.hbox2]));
            w4.TopAttach    = ((uint)(1));
            w4.BottomAttach = ((uint)(2));
            w4.LeftAttach   = ((uint)(1));
            w4.RightAttach  = ((uint)(2));
            w4.XOptions     = ((global::Gtk.AttachOptions)(4));
            w4.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.hbox4         = new global::Gtk.HBox();
            this.hbox4.Name    = "hbox4";
            this.hbox4.Spacing = 2;
            // Container child hbox4.Gtk.Box+BoxChild
            this.cmbCompilers      = global::Gtk.ComboBox.NewText();
            this.cmbCompilers.Name = "cmbCompilers";
            this.hbox4.Add(this.cmbCompilers);
            global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.cmbCompilers]));
            w5.Position = 0;
            // Container child hbox4.Gtk.Box+BoxChild
            this.btnMakeDefault = new global::Gtk.ToggleButton();
            global::Gtk.Tooltips w6 = new Gtk.Tooltips();
            w6.SetTip(this.btnMakeDefault, "Click to make the current configuration default", "Click to make the current configuration default");
            this.btnMakeDefault.Name         = "btnMakeDefault";
            this.btnMakeDefault.UseUnderline = true;
            this.btnMakeDefault.Active       = true;
            this.btnMakeDefault.Label        = global::MonoDevelop.Core.GettextCatalog.GetString("Make Default");
            this.hbox4.Add(this.btnMakeDefault);
            global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.btnMakeDefault]));
            w7.Position = 1;
            w7.Expand   = false;
            w7.Fill     = false;
            this.table6.Add(this.hbox4);
            global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table6 [this.hbox4]));
            w8.LeftAttach  = ((uint)(1));
            w8.RightAttach = ((uint)(2));
            w8.XOptions    = ((global::Gtk.AttachOptions)(4));
            w8.YOptions    = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.hbox8         = new global::Gtk.HBox();
            this.hbox8.Name    = "hbox8";
            this.hbox8.Spacing = 6;
            // Container child hbox8.Gtk.Box+BoxChild
            this.btnDebugArguments              = new global::Gtk.Button();
            this.btnDebugArguments.CanFocus     = true;
            this.btnDebugArguments.Name         = "btnDebugArguments";
            this.btnDebugArguments.UseUnderline = true;
            this.btnDebugArguments.Label        = global::MonoDevelop.Core.GettextCatalog.GetString("Debug Arguments");
            this.hbox8.Add(this.btnDebugArguments);
            global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox8 [this.btnDebugArguments]));
            w9.Position = 1;
            w9.Expand   = false;
            w9.Fill     = false;
            // Container child hbox8.Gtk.Box+BoxChild
            this.btnReleaseArguments              = new global::Gtk.Button();
            this.btnReleaseArguments.CanFocus     = true;
            this.btnReleaseArguments.Name         = "btnReleaseArguments";
            this.btnReleaseArguments.UseUnderline = true;
            this.btnReleaseArguments.Label        = global::MonoDevelop.Core.GettextCatalog.GetString("Release Arguments");
            this.hbox8.Add(this.btnReleaseArguments);
            global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.hbox8 [this.btnReleaseArguments]));
            w10.Position = 2;
            w10.Expand   = false;
            w10.Fill     = false;
            this.table6.Add(this.hbox8);
            global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.table6 [this.hbox8]));
            w11.TopAttach    = ((uint)(6));
            w11.BottomAttach = ((uint)(7));
            w11.LeftAttach   = ((uint)(1));
            w11.RightAttach  = ((uint)(2));
            w11.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.label2           = new global::Gtk.Label();
            this.label2.Name      = "label2";
            this.label2.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Toolchain bin path");
            this.table6.Add(this.label2);
            global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.table6 [this.label2]));
            w12.TopAttach    = ((uint)(1));
            w12.BottomAttach = ((uint)(2));
            w12.XOptions     = ((global::Gtk.AttachOptions)(4));
            w12.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.label28           = new global::Gtk.Label();
            this.label28.Name      = "label28";
            this.label28.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("\"Static library\" linker");
            this.table6.Add(this.label28);
            global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table6 [this.label28]));
            w13.TopAttach    = ((uint)(5));
            w13.BottomAttach = ((uint)(6));
            w13.XOptions     = ((global::Gtk.AttachOptions)(4));
            w13.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.label29           = new global::Gtk.Label();
            this.label29.Name      = "label29";
            this.label29.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("\"Shared library\" linker");
            this.table6.Add(this.label29);
            global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table6 [this.label29]));
            w14.TopAttach    = ((uint)(4));
            w14.BottomAttach = ((uint)(5));
            w14.XOptions     = ((global::Gtk.AttachOptions)(4));
            w14.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.label3           = new global::Gtk.Label();
            this.label3.Name      = "label3";
            this.label3.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Compiler");
            this.table6.Add(this.label3);
            global::Gtk.Table.TableChild w15 = ((global::Gtk.Table.TableChild)(this.table6 [this.label3]));
            w15.XOptions = ((global::Gtk.AttachOptions)(4));
            w15.YOptions = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.label30           = new global::Gtk.Label();
            this.label30.Name      = "label30";
            this.label30.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("\"Executable\" linker");
            this.table6.Add(this.label30);
            global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.table6 [this.label30]));
            w16.TopAttach    = ((uint)(3));
            w16.BottomAttach = ((uint)(4));
            w16.XOptions     = ((global::Gtk.AttachOptions)(4));
            w16.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.label31           = new global::Gtk.Label();
            this.label31.Name      = "label31";
            this.label31.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Compiler executable");
            this.table6.Add(this.label31);
            global::Gtk.Table.TableChild w17 = ((global::Gtk.Table.TableChild)(this.table6 [this.label31]));
            w17.TopAttach    = ((uint)(2));
            w17.BottomAttach = ((uint)(3));
            w17.XOptions     = ((global::Gtk.AttachOptions)(4));
            w17.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.txtCompiler               = new global::Gtk.Entry();
            this.txtCompiler.CanFocus      = true;
            this.txtCompiler.Name          = "txtCompiler";
            this.txtCompiler.IsEditable    = true;
            this.txtCompiler.InvisibleChar = '•';
            this.table6.Add(this.txtCompiler);
            global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.table6 [this.txtCompiler]));
            w18.TopAttach    = ((uint)(2));
            w18.BottomAttach = ((uint)(3));
            w18.LeftAttach   = ((uint)(1));
            w18.RightAttach  = ((uint)(2));
            w18.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.txtConsoleAppLinker               = new global::Gtk.Entry();
            this.txtConsoleAppLinker.CanFocus      = true;
            this.txtConsoleAppLinker.Name          = "txtConsoleAppLinker";
            this.txtConsoleAppLinker.IsEditable    = true;
            this.txtConsoleAppLinker.InvisibleChar = '•';
            this.table6.Add(this.txtConsoleAppLinker);
            global::Gtk.Table.TableChild w19 = ((global::Gtk.Table.TableChild)(this.table6 [this.txtConsoleAppLinker]));
            w19.TopAttach    = ((uint)(3));
            w19.BottomAttach = ((uint)(4));
            w19.LeftAttach   = ((uint)(1));
            w19.RightAttach  = ((uint)(2));
            w19.XOptions     = ((global::Gtk.AttachOptions)(4));
            w19.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.txtSharedLibLinker               = new global::Gtk.Entry();
            this.txtSharedLibLinker.CanFocus      = true;
            this.txtSharedLibLinker.Name          = "txtSharedLibLinker";
            this.txtSharedLibLinker.IsEditable    = true;
            this.txtSharedLibLinker.InvisibleChar = '•';
            this.table6.Add(this.txtSharedLibLinker);
            global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.table6 [this.txtSharedLibLinker]));
            w20.TopAttach    = ((uint)(4));
            w20.BottomAttach = ((uint)(5));
            w20.LeftAttach   = ((uint)(1));
            w20.RightAttach  = ((uint)(2));
            w20.XOptions     = ((global::Gtk.AttachOptions)(4));
            w20.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table6.Gtk.Table+TableChild
            this.txtStaticLibLinker               = new global::Gtk.Entry();
            this.txtStaticLibLinker.CanFocus      = true;
            this.txtStaticLibLinker.Name          = "txtStaticLibLinker";
            this.txtStaticLibLinker.IsEditable    = true;
            this.txtStaticLibLinker.InvisibleChar = '•';
            this.table6.Add(this.txtStaticLibLinker);
            global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.table6 [this.txtStaticLibLinker]));
            w21.TopAttach    = ((uint)(5));
            w21.BottomAttach = ((uint)(6));
            w21.LeftAttach   = ((uint)(1));
            w21.RightAttach  = ((uint)(2));
            w21.XOptions     = ((global::Gtk.AttachOptions)(4));
            w21.YOptions     = ((global::Gtk.AttachOptions)(4));
            this.vbox8.Add(this.table6);
            global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.vbox8 [this.table6]));
            w22.Position = 0;
            w22.Expand   = false;
            w22.Fill     = false;
            // Container child vbox8.Gtk.Box+BoxChild
            this.notebook2             = new global::Gtk.Notebook();
            this.notebook2.CanFocus    = true;
            this.notebook2.Name        = "notebook2";
            this.notebook2.CurrentPage = 1;
            this.notebook2.ShowBorder  = false;
            // Container child notebook2.Gtk.Notebook+NotebookChild
            this.vbox2         = new global::Gtk.VBox();
            this.vbox2.Name    = "vbox2";
            this.vbox2.Spacing = 6;
            // Container child vbox2.Gtk.Box+BoxChild
            this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
            this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
            this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
            // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
            this.text_DefaultLibraries = new global::Gtk.TextView();
            w6.SetTip(this.text_DefaultLibraries, "A line-separated list of library references to link in by default", "A line-separated list of library references to link in by default");
            this.text_DefaultLibraries.HeightRequest = 80;
            this.text_DefaultLibraries.CanFocus      = true;
            this.text_DefaultLibraries.Name          = "text_DefaultLibraries";
            this.GtkScrolledWindow.Add(this.text_DefaultLibraries);
            this.vbox2.Add(this.GtkScrolledWindow);
            global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.GtkScrolledWindow]));
            w24.Position = 0;
            // Container child vbox2.Gtk.Box+BoxChild
            this.check_enableLibPrefixing = new global::Gtk.CheckButton();
            w6.SetTip(this.check_enableLibPrefixing, @"If checked, all referenced libraries that can not be found locally will be stripped by their file extensions and get a ""-L-l"" prefix as they are passed to the compiler during project building.
'../myCustomLib/bin/myCustomLib.a' remains untouched.
'libphobos2.a' becomes '-L-llibphobos2' on compilation.
This is mainly activated when using the gdc compiler.", @"If checked, all referenced libraries that can not be found locally will be stripped by their file extensions and get a ""-L-l"" prefix as they are passed to the compiler during project building.
'../myCustomLib/bin/myCustomLib.a' remains untouched.
'libphobos2.a' becomes '-L-llibphobos2' on compilation.
This is mainly activated when using the gdc compiler.");
            this.check_enableLibPrefixing.CanFocus      = true;
            this.check_enableLibPrefixing.Name          = "check_enableLibPrefixing";
            this.check_enableLibPrefixing.Label         = global::MonoDevelop.Core.GettextCatalog.GetString("Enable gdc-specific import lib prefix stripping (e.g. libopengl32.a -> opengl32)");
            this.check_enableLibPrefixing.Active        = true;
            this.check_enableLibPrefixing.DrawIndicator = true;
            this.check_enableLibPrefixing.UseUnderline  = true;
            this.vbox2.Add(this.check_enableLibPrefixing);
            global::Gtk.Box.BoxChild w25 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.check_enableLibPrefixing]));
            w25.Position = 1;
            w25.Expand   = false;
            w25.Fill     = false;
            this.notebook2.Add(this.vbox2);
            // Notebook tab
            this.label12           = new global::Gtk.Label();
            this.label12.Name      = "label12";
            this.label12.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Default Libraries");
            this.notebook2.SetTabLabel(this.vbox2, this.label12);
            this.label12.ShowAll();
            // Container child notebook2.Gtk.Notebook+NotebookChild
            this.table2               = new global::Gtk.Table(((uint)(1)), ((uint)(2)), false);
            this.table2.Name          = "table2";
            this.table2.RowSpacing    = ((uint)(6));
            this.table2.ColumnSpacing = ((uint)(6));
            // Container child table2.Gtk.Table+TableChild
            this.GtkScrolledWindow1 = new global::Gtk.ScrolledWindow();
            w6.SetTip(this.GtkScrolledWindow1, "Line-separated list of paths where the compiler (and the code completion engine!)" +
                      " shall look in to resolve imports.", "Line-separated list of paths where the compiler (and the code completion engine!)" +
                      " shall look in to resolve imports.");
            this.GtkScrolledWindow1.Name       = "GtkScrolledWindow1";
            this.GtkScrolledWindow1.ShadowType = ((global::Gtk.ShadowType)(1));
            // Container child GtkScrolledWindow1.Gtk.Container+ContainerChild
            this.text_Includes          = new global::Gtk.TextView();
            this.text_Includes.CanFocus = true;
            this.text_Includes.Name     = "text_Includes";
            this.GtkScrolledWindow1.Add(this.text_Includes);
            this.table2.Add(this.GtkScrolledWindow1);
            // Container child table2.Gtk.Table+TableChild
            this.table3               = new global::Gtk.Table(((uint)(2)), ((uint)(1)), false);
            this.table3.Name          = "table3";
            this.table3.RowSpacing    = ((uint)(6));
            this.table3.ColumnSpacing = ((uint)(6));
            // Container child table3.Gtk.Table+TableChild
            this.button_AddInclude              = new global::Gtk.Button();
            this.button_AddInclude.CanFocus     = true;
            this.button_AddInclude.Name         = "button_AddInclude";
            this.button_AddInclude.UseUnderline = true;
            this.button_AddInclude.Label        = global::MonoDevelop.Core.GettextCatalog.GetString("Browse & Add");
            this.table3.Add(this.button_AddInclude);
            global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.table3 [this.button_AddInclude]));
            w29.XOptions = ((global::Gtk.AttachOptions)(4));
            w29.YOptions = ((global::Gtk.AttachOptions)(4));
            this.table2.Add(this.table3);
            global::Gtk.Table.TableChild w30 = ((global::Gtk.Table.TableChild)(this.table2 [this.table3]));
            w30.LeftAttach  = ((uint)(1));
            w30.RightAttach = ((uint)(2));
            w30.XOptions    = ((global::Gtk.AttachOptions)(4));
            this.notebook2.Add(this.table2);
            global::Gtk.Notebook.NotebookChild w31 = ((global::Gtk.Notebook.NotebookChild)(this.notebook2 [this.table2]));
            w31.Position = 1;
            // Notebook tab
            this.label1           = new global::Gtk.Label();
            this.label1.Name      = "label1";
            this.label1.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Includes");
            this.notebook2.SetTabLabel(this.table2, this.label1);
            this.label1.ShowAll();
            // Container child notebook2.Gtk.Notebook+NotebookChild
            this.GtkScrolledWindow2            = new global::Gtk.ScrolledWindow();
            this.GtkScrolledWindow2.Name       = "GtkScrolledWindow2";
            this.GtkScrolledWindow2.ShadowType = ((global::Gtk.ShadowType)(1));
            // Container child GtkScrolledWindow2.Gtk.Container+ContainerChild
            this.tb_ArgPatterns          = new global::Gtk.TextView();
            this.tb_ArgPatterns.CanFocus = true;
            this.tb_ArgPatterns.Name     = "tb_ArgPatterns";
            this.GtkScrolledWindow2.Add(this.tb_ArgPatterns);
            this.notebook2.Add(this.GtkScrolledWindow2);
            global::Gtk.Notebook.NotebookChild w33 = ((global::Gtk.Notebook.NotebookChild)(this.notebook2 [this.GtkScrolledWindow2]));
            w33.Position = 2;
            // Notebook tab
            this.label4           = new global::Gtk.Label();
            this.label4.Name      = "label4";
            this.label4.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("[Arg Patterns]");
            this.notebook2.SetTabLabel(this.GtkScrolledWindow2, this.label4);
            this.label4.ShowAll();
            this.vbox8.Add(this.notebook2);
            global::Gtk.Box.BoxChild w34 = ((global::Gtk.Box.BoxChild)(this.vbox8 [this.notebook2]));
            w34.Position = 1;
            this.Add(this.vbox8);
            if ((this.Child != null))
            {
                this.Child.ShowAll();
            }
            this.Show();
            this.btnDebugArguments.Clicked     += new global::System.EventHandler(this.btnDebugArguments_Clicked);
            this.btnReleaseArguments.Clicked   += new global::System.EventHandler(this.btnReleaseArguments_Clicked);
            this.cmbCompilers.Changed          += new global::System.EventHandler(this.OnCmbCompilersChanged);
            this.btnMakeDefault.Released       += new global::System.EventHandler(this.OnTogglebuttonMakeDefaultPressed);
            this.button_BinPathBrowser.Clicked += new global::System.EventHandler(this.OnButtonBinPathBrowserClicked);
            this.btnDefaults.Clicked           += new global::System.EventHandler(this.OnBtnDefaultsClicked);
            this.button_AddInclude.Clicked     += new global::System.EventHandler(this.OnButtonAddIncludeClicked);
        }
Example #34
0
        void CreateControls()
        {
            if (node.Type == Gtk.UIManagerItemType.Separator) {
                Gtk.Widget sep;
                if (parentMenu.IsTopMenu) {
                    sep = new Gtk.VSeparator ();
                    sep.WidthRequest = 6;
                } else {
                    sep = new Gtk.HSeparator ();
                    sep.HeightRequest = 6;
                }
                Add (sep);
                ShowAll ();
                return;
            } else {
                if (Child != null && Child is Gtk.Separator)
                    Remove (Child);
            }

            if (node.Action == null)
                return;

            bool isGlobal = wrapper != null && wrapper.Project.ActionGroups.IndexOf (node.Action.ActionGroup) != -1;

            Gtk.Action gaction = node.Action.GtkAction;
            bool barItem = parentMenu.IsTopMenu;

            string text = gaction.Label;
            string stock = gaction.StockId;

            if (barItem) {
                icon = null;
            } else if (node.Action.Type == Stetic.Wrapper.Action.ActionType.Radio) {
                icon = new CheckActionIcon (true, node.Action.Active);
            } else if (node.Action.Type == Stetic.Wrapper.Action.ActionType.Toggle) {
                icon = new CheckActionIcon (node.Action.DrawAsRadio, node.Action.Active);
            }

            if (stock != null) {
                Gtk.StockItem item = Gtk.Stock.Lookup (stock);
                if (text == null || text.Length == 0)
                    text = item.Label;

                if (item.Keyval != 0 && !editing && !barItem) {
                    Gtk.Label lac = new Gtk.Label ();
                    string accelName =  Gtk.Accelerator.Name (item.Keyval, item.Modifier).ToUpper ();
                    accelName = accelName.Replace ("<CONTROL>", "Ctrl+");
                    accelName = accelName.Replace ("<SHIFT>", "Shift+");
                    accelName = accelName.Replace ("<ALT>", "Alt+");
                    lac.Text = accelName;
                    accel = lac;
                }

                if (icon == null && !barItem)
                    icon = node.Action.CreateIcon (Gtk.IconSize.Menu);
            }

            Gtk.Tooltips tooltips = null;
            if (editing)
                tooltips = new Gtk.Tooltips ();

            if (editing && !isGlobal) {
                if (!barItem) {
                    Gtk.HBox bbox = new Gtk.HBox ();
                    if (icon != null) {
                        bbox.PackStart (icon, false, false, 0);
                    }
                    bbox.PackStart (new Gtk.Arrow (Gtk.ArrowType.Down, Gtk.ShadowType.In), false, false, 0);
                    Gtk.Button b = new Gtk.Button (bbox);
                    tooltips.SetTip (b, Catalog.GetString ("Select action type"), "");
                    b.Relief = Gtk.ReliefStyle.None;
                    b.ButtonPressEvent += OnSelectIcon;
                    icon = b;
                } else
                    icon = null;

                Gtk.Entry entry = new Gtk.Entry ();
                entry.Text = text;
                entry.Activated += OnLabelActivated;
                entry.KeyPressEvent += OnEntryKeyPress;
                entry.HasFrame = false;
                this.label = entry;
                tooltips.SetTip (entry, Catalog.GetString ("Action label"), "");
            } else {
                Gtk.Label label = new Gtk.Label (text);
                label.Xalign = 0;
                this.label = label;
            }

            if (editing && wrapper != null) {
                // Add a button for creating / deleting a submenu
                Gdk.Pixbuf img;
                string tip;
                if (node.Type != Gtk.UIManagerItemType.Menu) {
                    img = addMenuImage;
                    tip = Catalog.GetString ("Add submenu (Ctrl+Right)");
                } else {
                    img = removeMenuImage;
                    tip = Catalog.GetString ("Remove submenu (Ctrl+Left)");
                }

                Gtk.Button sb = new Gtk.Button (new Gtk.Image (img));
                tooltips.SetTip (sb, tip, "");
                sb.Relief = Gtk.ReliefStyle.None;
                sb.Clicked += OnCreateDeleteSubmenu;

                // Make sure the button is alligned to the right of the column
                Gtk.HBox bbox = new Gtk.HBox ();
                bbox.PackEnd (sb, false, false, 0);
                accel = bbox;
            }

            if (node.Type == Gtk.UIManagerItemType.Menu && !editing && !barItem) {
                Gtk.Arrow arrow = new Gtk.Arrow (Gtk.ArrowType.Right, Gtk.ShadowType.None);
                arrow.Xalign = 1;
                this.accel = arrow;
            }

            if (itemSpacing > 0 && icon != null) {
                // Add some padding to the left of the icon
                Gtk.Alignment a = new Gtk.Alignment (0, 0.5f, 0, 0);
                a.LeftPadding = itemSpacing;
                a.Add (icon);
                icon = a;
            }
        }
Example #35
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MonoDevelop.D.OptionPanels.DGlobalOptions
     global::Stetic.BinContainer.Attach(this);
     this.Name = "MonoDevelop.D.OptionPanels.DGlobalOptions";
     // Container child MonoDevelop.D.OptionPanels.DGlobalOptions.Gtk.Container+ContainerChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.table1               = new global::Gtk.Table(((uint)(15)), ((uint)(3)), false);
     this.table1.Name          = "table1";
     this.table1.RowSpacing    = ((uint)(6));
     this.table1.ColumnSpacing = ((uint)(6));
     // Container child table1.Gtk.Table+TableChild
     this.check_EnableMixinAnalysis = new global::Gtk.CheckButton();
     global::Gtk.Tooltips w1 = new Gtk.Tooltips();
     w1.SetTip(this.check_EnableMixinAnalysis, "If enabled, deadlocks might occur if mixins are used too often", "If enabled, deadlocks might occur if mixins are used too often");
     this.check_EnableMixinAnalysis.CanFocus      = true;
     this.check_EnableMixinAnalysis.Name          = "check_EnableMixinAnalysis";
     this.check_EnableMixinAnalysis.Label         = global::Mono.Unix.Catalog.GetString("Enable Mixin & Template Mixin Analysis");
     this.check_EnableMixinAnalysis.DrawIndicator = true;
     this.check_EnableMixinAnalysis.UseUnderline  = true;
     this.table1.Add(this.check_EnableMixinAnalysis);
     global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_EnableMixinAnalysis]));
     w2.TopAttach    = ((uint)(4));
     w2.BottomAttach = ((uint)(5));
     w2.LeftAttach   = ((uint)(1));
     w2.RightAttach  = ((uint)(2));
     w2.XOptions     = ((global::Gtk.AttachOptions)(4));
     w2.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_EnableSuggestionMode = new global::Gtk.CheckButton();
     w1.SetTip(this.check_EnableSuggestionMode, "If true, the selected text in the completion box will not be inserted into the code unless the <Return> key has been pressed.", "If true, the selected text in the completion box will not be inserted into the code unless the <Return> key has been pressed.");
     this.check_EnableSuggestionMode.CanFocus      = true;
     this.check_EnableSuggestionMode.Name          = "check_EnableSuggestionMode";
     this.check_EnableSuggestionMode.Label         = global::Mono.Unix.Catalog.GetString("Enable suggestive completion mode");
     this.check_EnableSuggestionMode.DrawIndicator = true;
     this.check_EnableSuggestionMode.UseUnderline  = true;
     this.table1.Add(this.check_EnableSuggestionMode);
     global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_EnableSuggestionMode]));
     w3.TopAttach    = ((uint)(2));
     w3.BottomAttach = ((uint)(3));
     w3.LeftAttach   = ((uint)(1));
     w3.RightAttach  = ((uint)(2));
     w3.XOptions     = ((global::Gtk.AttachOptions)(4));
     w3.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_EnableUFCSCompletion               = new global::Gtk.CheckButton();
     this.check_EnableUFCSCompletion.CanFocus      = true;
     this.check_EnableUFCSCompletion.Name          = "check_EnableUFCSCompletion";
     this.check_EnableUFCSCompletion.Label         = global::Mono.Unix.Catalog.GetString("Enable UFCS Completion");
     this.check_EnableUFCSCompletion.DrawIndicator = true;
     this.check_EnableUFCSCompletion.UseUnderline  = true;
     this.table1.Add(this.check_EnableUFCSCompletion);
     global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_EnableUFCSCompletion]));
     w4.TopAttach    = ((uint)(3));
     w4.BottomAttach = ((uint)(4));
     w4.LeftAttach   = ((uint)(1));
     w4.RightAttach  = ((uint)(2));
     w4.XOptions     = ((global::Gtk.AttachOptions)(4));
     w4.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_GrayOutNonPublic               = new global::Gtk.CheckButton();
     this.check_GrayOutNonPublic.CanFocus      = true;
     this.check_GrayOutNonPublic.Name          = "check_GrayOutNonPublic";
     this.check_GrayOutNonPublic.Label         = global::Mono.Unix.Catalog.GetString("Gray-out non public members");
     this.check_GrayOutNonPublic.Active        = true;
     this.check_GrayOutNonPublic.DrawIndicator = true;
     this.check_GrayOutNonPublic.UseUnderline  = true;
     this.table1.Add(this.check_GrayOutNonPublic);
     global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_GrayOutNonPublic]));
     w5.TopAttach    = ((uint)(10));
     w5.BottomAttach = ((uint)(11));
     w5.LeftAttach   = ((uint)(1));
     w5.RightAttach  = ((uint)(2));
     w5.XOptions     = ((global::Gtk.AttachOptions)(4));
     w5.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_HideDeprecatedItems = new global::Gtk.CheckButton();
     w1.SetTip(this.check_HideDeprecatedItems, "If enabled, deadlocks might occur if mixins are used too often", "If enabled, deadlocks might occur if mixins are used too often");
     this.check_HideDeprecatedItems.CanFocus      = true;
     this.check_HideDeprecatedItems.Name          = "check_HideDeprecatedItems";
     this.check_HideDeprecatedItems.Label         = global::Mono.Unix.Catalog.GetString("Hide deprecated items in the completion list");
     this.check_HideDeprecatedItems.Active        = true;
     this.check_HideDeprecatedItems.DrawIndicator = true;
     this.check_HideDeprecatedItems.UseUnderline  = true;
     this.table1.Add(this.check_HideDeprecatedItems);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_HideDeprecatedItems]));
     w6.TopAttach    = ((uint)(5));
     w6.BottomAttach = ((uint)(6));
     w6.LeftAttach   = ((uint)(1));
     w6.RightAttach  = ((uint)(2));
     w6.XOptions     = ((global::Gtk.AttachOptions)(4));
     w6.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_IndentInsteadFormatCode               = new global::Gtk.CheckButton();
     this.check_IndentInsteadFormatCode.CanFocus      = true;
     this.check_IndentInsteadFormatCode.Name          = "check_IndentInsteadFormatCode";
     this.check_IndentInsteadFormatCode.Label         = global::Mono.Unix.Catalog.GetString("Only indent code lines instead of rearrange code parts\n(because the actual formatter isn't finished currently)");
     this.check_IndentInsteadFormatCode.Active        = true;
     this.check_IndentInsteadFormatCode.DrawIndicator = true;
     this.check_IndentInsteadFormatCode.UseUnderline  = true;
     this.table1.Add(this.check_IndentInsteadFormatCode);
     global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_IndentInsteadFormatCode]));
     w7.TopAttach    = ((uint)(13));
     w7.BottomAttach = ((uint)(14));
     w7.LeftAttach   = ((uint)(1));
     w7.RightAttach  = ((uint)(2));
     w7.XOptions     = ((global::Gtk.AttachOptions)(4));
     w7.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_ShowFunctionParams               = new global::Gtk.CheckButton();
     this.check_ShowFunctionParams.CanFocus      = true;
     this.check_ShowFunctionParams.Name          = "check_ShowFunctionParams";
     this.check_ShowFunctionParams.Label         = global::Mono.Unix.Catalog.GetString("Show function parameters");
     this.check_ShowFunctionParams.Active        = true;
     this.check_ShowFunctionParams.DrawIndicator = true;
     this.check_ShowFunctionParams.UseUnderline  = true;
     this.table1.Add(this.check_ShowFunctionParams);
     global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_ShowFunctionParams]));
     w8.TopAttach    = ((uint)(7));
     w8.BottomAttach = ((uint)(8));
     w8.LeftAttach   = ((uint)(1));
     w8.RightAttach  = ((uint)(2));
     w8.XOptions     = ((global::Gtk.AttachOptions)(4));
     w8.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_ShowFunctionVariables               = new global::Gtk.CheckButton();
     this.check_ShowFunctionVariables.CanFocus      = true;
     this.check_ShowFunctionVariables.Name          = "check_ShowFunctionVariables";
     this.check_ShowFunctionVariables.Label         = global::Mono.Unix.Catalog.GetString("Show function variables");
     this.check_ShowFunctionVariables.DrawIndicator = true;
     this.check_ShowFunctionVariables.UseUnderline  = true;
     this.table1.Add(this.check_ShowFunctionVariables);
     global::Gtk.Table.TableChild w9 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_ShowFunctionVariables]));
     w9.TopAttach    = ((uint)(8));
     w9.BottomAttach = ((uint)(9));
     w9.LeftAttach   = ((uint)(1));
     w9.RightAttach  = ((uint)(2));
     w9.XOptions     = ((global::Gtk.AttachOptions)(4));
     w9.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.check_ShowTypes               = new global::Gtk.CheckButton();
     this.check_ShowTypes.CanFocus      = true;
     this.check_ShowTypes.Name          = "check_ShowTypes";
     this.check_ShowTypes.Label         = global::Mono.Unix.Catalog.GetString("Display node base types");
     this.check_ShowTypes.Active        = true;
     this.check_ShowTypes.DrawIndicator = true;
     this.check_ShowTypes.UseUnderline  = true;
     this.table1.Add(this.check_ShowTypes);
     global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table1 [this.check_ShowTypes]));
     w10.TopAttach    = ((uint)(9));
     w10.BottomAttach = ((uint)(10));
     w10.LeftAttach   = ((uint)(1));
     w10.RightAttach  = ((uint)(2));
     w10.XOptions     = ((global::Gtk.AttachOptions)(4));
     w10.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.hbox2         = new global::Gtk.HBox();
     this.hbox2.Name    = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.label5           = new global::Gtk.Label();
     this.label5.Name      = "label5";
     this.label5.LabelProp = global::Mono.Unix.Catalog.GetString("Expansion behaviour on tree rebuild");
     this.hbox2.Add(this.label5);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.label5]));
     w11.Position = 0;
     w11.Expand   = false;
     w11.Fill     = false;
     // Container child hbox2.Gtk.Box+BoxChild
     this.combo_ExpansionBehaviour = global::Gtk.ComboBox.NewText();
     this.combo_ExpansionBehaviour.AppendText(global::Mono.Unix.Catalog.GetString("Collapse All"));
     this.combo_ExpansionBehaviour.AppendText(global::Mono.Unix.Catalog.GetString("Leave expanded nodes expanded"));
     this.combo_ExpansionBehaviour.AppendText(global::Mono.Unix.Catalog.GetString("Expand All"));
     this.combo_ExpansionBehaviour.Name = "combo_ExpansionBehaviour";
     this.hbox2.Add(this.combo_ExpansionBehaviour);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.combo_ExpansionBehaviour]));
     w12.Position = 1;
     this.table1.Add(this.hbox2);
     global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table1 [this.hbox2]));
     w13.TopAttach    = ((uint)(11));
     w13.BottomAttach = ((uint)(12));
     w13.LeftAttach   = ((uint)(1));
     w13.RightAttach  = ((uint)(2));
     w13.XOptions     = ((global::Gtk.AttachOptions)(4));
     w13.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("Help manual base url");
     this.table1.Add(this.label1);
     global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table1 [this.label1]));
     w14.XOptions = ((global::Gtk.AttachOptions)(4));
     w14.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.Xalign    = 0F;
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("<b>Editing &amp; Completion Options</b>");
     this.label2.UseMarkup = true;
     this.table1.Add(this.label2);
     global::Gtk.Table.TableChild w15 = ((global::Gtk.Table.TableChild)(this.table1 [this.label2]));
     w15.TopAttach    = ((uint)(1));
     w15.BottomAttach = ((uint)(2));
     w15.LeftAttach   = ((uint)(1));
     w15.RightAttach  = ((uint)(2));
     w15.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.Xalign    = 0F;
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("<b>Document Outline</b>");
     this.label3.UseMarkup = true;
     this.table1.Add(this.label3);
     global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.table1 [this.label3]));
     w16.TopAttach    = ((uint)(6));
     w16.BottomAttach = ((uint)(7));
     w16.LeftAttach   = ((uint)(1));
     w16.RightAttach  = ((uint)(2));
     w16.XOptions     = ((global::Gtk.AttachOptions)(4));
     w16.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.Xalign    = 0F;
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("<b>Formatting (general)</b>");
     this.label4.UseMarkup = true;
     this.table1.Add(this.label4);
     global::Gtk.Table.TableChild w17 = ((global::Gtk.Table.TableChild)(this.table1 [this.label4]));
     w17.TopAttach    = ((uint)(12));
     w17.BottomAttach = ((uint)(13));
     w17.LeftAttach   = ((uint)(1));
     w17.RightAttach  = ((uint)(2));
     w17.XOptions     = ((global::Gtk.AttachOptions)(4));
     w17.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.text_ManualBaseUrl = new global::Gtk.Entry();
     w1.SetTip(this.text_ManualBaseUrl, "Can be either a URL or a directory on your hard disk", "Can be either a URL or a directory on your hard disk");
     this.text_ManualBaseUrl.CanFocus      = true;
     this.text_ManualBaseUrl.Name          = "text_ManualBaseUrl";
     this.text_ManualBaseUrl.IsEditable    = true;
     this.text_ManualBaseUrl.InvisibleChar = '●';
     this.table1.Add(this.text_ManualBaseUrl);
     global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.table1 [this.text_ManualBaseUrl]));
     w18.LeftAttach  = ((uint)(1));
     w18.RightAttach = ((uint)(2));
     w18.YOptions    = ((global::Gtk.AttachOptions)(4));
     this.hbox1.Add(this.table1);
     global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.table1]));
     w19.Position = 0;
     this.Add(this.hbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Show();
 }
Example #36
0
        void CreateControls()
        {
            Gtk.Widget icon = null;
            Gtk.Widget label = null;
            dropButton = null;

            if (Child != null) {
                Gtk.Widget w = Child;
                Remove (w);
                w.Destroy ();
            }

            if (node.Type == Gtk.UIManagerItemType.Separator) {
                Gtk.Widget sep;
                if (parentToolbar.Orientation == Gtk.Orientation.Horizontal) {
                    sep = new Gtk.VSeparator ();
                } else {
                    sep = new Gtk.HSeparator ();
                }
                Gtk.HBox box = new Gtk.HBox ();
                box.BorderWidth = 6;
                box.PackStart (sep, true, true, 0);
                Add (box);
                return;
            }

            if (node.Action == null)
                return;

            Gtk.Action gaction = node.Action.GtkAction;

            bool showText = parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.Text;
            bool showIcon = parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.Icons;
            if (parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.Both) {
                showText = showIcon = true;
            }
            else if (parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.BothHoriz) {
                showText = parentToolbar.Orientation == Gtk.Orientation.Vertical || gaction.IsImportant;
                showIcon = true;
            }

            string text = node.Action.ToolLabel;
            showingText = showText;

            if (showIcon)
            {
                if (gaction.StockId != null) {
                    icon = node.Action.CreateIcon (parentToolbar.IconSize);
                } else if (!gaction.IsImportant) {
                    icon = CreateFakeItem ();
                }
            }

            Gtk.Tooltips tooltips = null;
            if (editing)
                tooltips = new Gtk.Tooltips ();

            if (editing) {
                Gtk.HBox bbox = new Gtk.HBox ();
                bbox.Spacing = 3;
                if (icon != null) {
                    bbox.PackStart (icon, false, false, 0);
                }
                bbox.PackStart (new Gtk.Arrow (Gtk.ArrowType.Down, Gtk.ShadowType.In), false, false, 0);
                Gtk.Button b = new Gtk.Button (bbox);
                tooltips.SetTip (b, "Select action type", "");
                b.Relief = Gtk.ReliefStyle.None;
                b.ButtonPressEvent += OnSelectIcon;
                dropButton = b;
                icon = b;

                if (showText) {
                    Gtk.Entry entry = new Gtk.Entry ();
                    entry.Text = text;
                    entry.Changed += OnLabelChanged;
                    entry.Activated += OnLabelActivated;
                    entry.HasFrame = false;
                    label = entry;
                    tooltips.SetTip (entry, "Action label", "");
                }
            } else if (showText && text != null && text.Length > 0) {
                label = new Gtk.Label (text);
                label.Sensitive = editing || node.Action == null || node.Action.GtkAction.Sensitive;
            }

            if (icon != null && label != null) {
                if (parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.BothHoriz) {
                    Gtk.HBox box = new Gtk.HBox ();
                    box.PackStart (icon, false, false, 0);
                    box.PackStart (label, true, true, 0);
                    icon = box;
                } else if (parentToolbar.ToolbarStyle == Gtk.ToolbarStyle.Both) {
                    Gtk.VBox box = new Gtk.VBox ();
                    Gtk.Alignment al = new Gtk.Alignment (0.5f, 0f, 0f, 0f);
                    al.Add (icon);
                    box.PackStart (al, false, false, 0);
                    box.PackStart (label, true, true, 0);
                    icon = box;
                }
            } else if (label != null) {
                icon = label;
            }

            if (icon == null) {
                icon = CreateFakeItem ();
            }

            icon.Sensitive = editing || node.Action == null || node.Action.GtkAction.Sensitive;

            if (!editing) {
                Gtk.Button but = new Gtk.Button (icon);
                but.Relief = Gtk.ReliefStyle.None;
                but.ButtonPressEvent += OnToolItemPress;
                but.ButtonReleaseEvent += OnMemuItemRelease;
                but.MotionNotifyEvent += OnMotionNotify;
                but.Events |= Gdk.EventMask.PointerMotionMask;
                icon = but;
            }

            Add (icon);

            ShowAll ();
        }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MonoDevelop.D.OptionPanels.ProjectOptions
     global::Stetic.BinContainer.Attach(this);
     this.Name = "MonoDevelop.D.OptionPanels.ProjectOptions";
     // Container child MonoDevelop.D.OptionPanels.ProjectOptions.Gtk.Container+ContainerChild
     this.notebook1             = new global::Gtk.Notebook();
     this.notebook1.CanFocus    = true;
     this.notebook1.Name        = "notebook1";
     this.notebook1.CurrentPage = 1;
     this.notebook1.ShowBorder  = false;
     this.notebook1.Scrollable  = true;
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.table_LinkingTab               = new global::Gtk.Table(((uint)(7)), ((uint)(2)), false);
     this.table_LinkingTab.Name          = "table_LinkingTab";
     this.table_LinkingTab.RowSpacing    = ((uint)(4));
     this.table_LinkingTab.ColumnSpacing = ((uint)(4));
     this.table_LinkingTab.BorderWidth   = ((uint)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.check_LinkThirdPartyLibs               = new global::Gtk.CheckButton();
     this.check_LinkThirdPartyLibs.CanFocus      = true;
     this.check_LinkThirdPartyLibs.Name          = "check_LinkThirdPartyLibs";
     this.check_LinkThirdPartyLibs.Label         = global::MonoDevelop.Core.GettextCatalog.GetString("Link in static/shared libraries from nested dependencies");
     this.check_LinkThirdPartyLibs.Active        = true;
     this.check_LinkThirdPartyLibs.DrawIndicator = true;
     this.check_LinkThirdPartyLibs.UseUnderline  = true;
     this.table_LinkingTab.Add(this.check_LinkThirdPartyLibs);
     global::Gtk.Table.TableChild w1 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.check_LinkThirdPartyLibs]));
     w1.TopAttach    = ((uint)(5));
     w1.BottomAttach = ((uint)(6));
     w1.LeftAttach   = ((uint)(1));
     w1.RightAttach  = ((uint)(2));
     w1.XOptions     = ((global::Gtk.AttachOptions)(4));
     w1.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.combo_ProjectType      = global::Gtk.ComboBox.NewText();
     this.combo_ProjectType.Name = "combo_ProjectType";
     this.table_LinkingTab.Add(this.combo_ProjectType);
     global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.combo_ProjectType]));
     w2.TopAttach    = ((uint)(2));
     w2.BottomAttach = ((uint)(3));
     w2.LeftAttach   = ((uint)(1));
     w2.RightAttach  = ((uint)(2));
     w2.XOptions     = ((global::Gtk.AttachOptions)(4));
     w2.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.label10           = new global::Gtk.Label();
     this.label10.Name      = "label10";
     this.label10.Xalign    = 0F;
     this.label10.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Extra Linker Options");
     this.table_LinkingTab.Add(this.label10);
     global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label10]));
     w3.TopAttach    = ((uint)(6));
     w3.BottomAttach = ((uint)(7));
     w3.XOptions     = ((global::Gtk.AttachOptions)(4));
     w3.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.label13           = new global::Gtk.Label();
     this.label13.Name      = "label13";
     this.label13.Xalign    = 0F;
     this.label13.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Compile target");
     this.table_LinkingTab.Add(this.label13);
     global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label13]));
     w4.TopAttach    = ((uint)(2));
     w4.BottomAttach = ((uint)(3));
     w4.XOptions     = ((global::Gtk.AttachOptions)(4));
     w4.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.Xalign    = 0F;
     this.label3.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Output file");
     this.table_LinkingTab.Add(this.label3);
     global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label3]));
     w5.TopAttach    = ((uint)(3));
     w5.BottomAttach = ((uint)(4));
     w5.XOptions     = ((global::Gtk.AttachOptions)(4));
     w5.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.label6           = new global::Gtk.Label();
     this.label6.Name      = "label6";
     this.label6.Xalign    = 0F;
     this.label6.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Output directory");
     this.table_LinkingTab.Add(this.label6);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label6]));
     w6.TopAttach    = ((uint)(1));
     w6.BottomAttach = ((uint)(2));
     w6.XOptions     = ((global::Gtk.AttachOptions)(4));
     w6.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.label8           = new global::Gtk.Label();
     this.label8.Name      = "label8";
     this.label8.Xalign    = 0F;
     this.label8.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Libraries\n(one per line)");
     this.table_LinkingTab.Add(this.label8);
     global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label8]));
     w7.TopAttach    = ((uint)(4));
     w7.BottomAttach = ((uint)(5));
     w7.XOptions     = ((global::Gtk.AttachOptions)(4));
     w7.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.label9           = new global::Gtk.Label();
     this.label9.Name      = "label9";
     this.label9.Xalign    = 0F;
     this.label9.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Note: Relative paths will be related to the project's base directory!");
     this.table_LinkingTab.Add(this.label9);
     global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.label9]));
     w8.LeftAttach  = ((uint)(1));
     w8.RightAttach = ((uint)(2));
     w8.XOptions    = ((global::Gtk.AttachOptions)(4));
     w8.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.scrolledwindow3 = new global::Gtk.ScrolledWindow();
     this.scrolledwindow3.HeightRequest = 100;
     this.scrolledwindow3.CanFocus      = true;
     this.scrolledwindow3.Name          = "scrolledwindow3";
     this.scrolledwindow3.ShadowType    = ((global::Gtk.ShadowType)(1));
     // Container child scrolledwindow3.Gtk.Container+ContainerChild
     this.text_Libraries          = new global::Gtk.TextView();
     this.text_Libraries.CanFocus = true;
     this.text_Libraries.Name     = "text_Libraries";
     this.scrolledwindow3.Add(this.text_Libraries);
     this.table_LinkingTab.Add(this.scrolledwindow3);
     global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.scrolledwindow3]));
     w10.TopAttach    = ((uint)(4));
     w10.BottomAttach = ((uint)(5));
     w10.LeftAttach   = ((uint)(1));
     w10.RightAttach  = ((uint)(2));
     w10.XOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.scrolledwindow5 = new global::Gtk.ScrolledWindow();
     this.scrolledwindow5.HeightRequest = 100;
     this.scrolledwindow5.CanFocus      = true;
     this.scrolledwindow5.Name          = "scrolledwindow5";
     this.scrolledwindow5.ShadowType    = ((global::Gtk.ShadowType)(1));
     // Container child scrolledwindow5.Gtk.Container+ContainerChild
     this.extraLinkerTextView = new global::Gtk.TextView();
     global::Gtk.Tooltips w11 = new Gtk.Tooltips();
     w11.SetTip(this.extraLinkerTextView, "A newline-separated list of extra options to send to the compiler.\nOne option can be in more than one line.\nExample:\n\t`--pkg\n\tcairo`", "A newline-separated list of extra options to send to the compiler.\nOne option can be in more than one line.\nExample:\n\t`--pkg\n\tcairo`");
     this.extraLinkerTextView.CanFocus = true;
     this.extraLinkerTextView.Name     = "extraLinkerTextView";
     this.scrolledwindow5.Add(this.extraLinkerTextView);
     this.table_LinkingTab.Add(this.scrolledwindow5);
     global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.scrolledwindow5]));
     w13.TopAttach    = ((uint)(6));
     w13.BottomAttach = ((uint)(7));
     w13.LeftAttach   = ((uint)(1));
     w13.RightAttach  = ((uint)(2));
     w13.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.text_BinDirectory               = new global::Gtk.Entry();
     this.text_BinDirectory.CanFocus      = true;
     this.text_BinDirectory.Name          = "text_BinDirectory";
     this.text_BinDirectory.IsEditable    = true;
     this.text_BinDirectory.InvisibleChar = '●';
     this.table_LinkingTab.Add(this.text_BinDirectory);
     global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.text_BinDirectory]));
     w14.TopAttach    = ((uint)(1));
     w14.BottomAttach = ((uint)(2));
     w14.LeftAttach   = ((uint)(1));
     w14.RightAttach  = ((uint)(2));
     w14.XOptions     = ((global::Gtk.AttachOptions)(4));
     w14.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_LinkingTab.Gtk.Table+TableChild
     this.text_TargetFile               = new global::Gtk.Entry();
     this.text_TargetFile.CanFocus      = true;
     this.text_TargetFile.Name          = "text_TargetFile";
     this.text_TargetFile.IsEditable    = true;
     this.text_TargetFile.InvisibleChar = '●';
     this.table_LinkingTab.Add(this.text_TargetFile);
     global::Gtk.Table.TableChild w15 = ((global::Gtk.Table.TableChild)(this.table_LinkingTab [this.text_TargetFile]));
     w15.TopAttach    = ((uint)(3));
     w15.BottomAttach = ((uint)(4));
     w15.LeftAttach   = ((uint)(1));
     w15.RightAttach  = ((uint)(2));
     w15.XOptions     = ((global::Gtk.AttachOptions)(4));
     w15.YOptions     = ((global::Gtk.AttachOptions)(4));
     this.notebook1.Add(this.table_LinkingTab);
     // Notebook tab
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Linking");
     this.notebook1.SetTabLabel(this.table_LinkingTab, this.label2);
     this.label2.ShowAll();
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.table_CompilingTab               = new global::Gtk.Table(((uint)(12)), ((uint)(2)), false);
     this.table_CompilingTab.Name          = "table_CompilingTab";
     this.table_CompilingTab.RowSpacing    = ((uint)(4));
     this.table_CompilingTab.ColumnSpacing = ((uint)(4));
     this.table_CompilingTab.BorderWidth   = ((uint)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.cbIsUnittestConfig               = new global::Gtk.CheckButton();
     this.cbIsUnittestConfig.CanFocus      = true;
     this.cbIsUnittestConfig.Name          = "cbIsUnittestConfig";
     this.cbIsUnittestConfig.Label         = global::MonoDevelop.Core.GettextCatalog.GetString("Is Unittest Config (--unittest flag is appended + project is built/executed as executable)");
     this.cbIsUnittestConfig.DrawIndicator = true;
     this.cbIsUnittestConfig.UseUnderline  = true;
     this.table_CompilingTab.Add(this.cbIsUnittestConfig);
     global::Gtk.Table.TableChild w17 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.cbIsUnittestConfig]));
     w17.TopAttach    = ((uint)(3));
     w17.BottomAttach = ((uint)(4));
     w17.LeftAttach   = ((uint)(1));
     w17.RightAttach  = ((uint)(2));
     w17.XOptions     = ((global::Gtk.AttachOptions)(4));
     w17.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.cbPreferOneStepCompilation               = new global::Gtk.CheckButton();
     this.cbPreferOneStepCompilation.CanFocus      = true;
     this.cbPreferOneStepCompilation.Name          = "cbPreferOneStepCompilation";
     this.cbPreferOneStepCompilation.Label         = global::MonoDevelop.Core.GettextCatalog.GetString("Perform a one-step compilation if the compiler allows it to do that");
     this.cbPreferOneStepCompilation.DrawIndicator = true;
     this.cbPreferOneStepCompilation.UseUnderline  = true;
     this.table_CompilingTab.Add(this.cbPreferOneStepCompilation);
     global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.cbPreferOneStepCompilation]));
     w18.TopAttach    = ((uint)(4));
     w18.BottomAttach = ((uint)(5));
     w18.LeftAttach   = ((uint)(1));
     w18.RightAttach  = ((uint)(2));
     w18.XOptions     = ((global::Gtk.AttachOptions)(4));
     w18.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.cbUseDefaultCompiler               = new global::Gtk.CheckButton();
     this.cbUseDefaultCompiler.CanFocus      = true;
     this.cbUseDefaultCompiler.Name          = "cbUseDefaultCompiler";
     this.cbUseDefaultCompiler.Label         = global::MonoDevelop.Core.GettextCatalog.GetString("Use Default Compiler");
     this.cbUseDefaultCompiler.Active        = true;
     this.cbUseDefaultCompiler.DrawIndicator = true;
     this.cbUseDefaultCompiler.UseUnderline  = true;
     this.table_CompilingTab.Add(this.cbUseDefaultCompiler);
     global::Gtk.Table.TableChild w19 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.cbUseDefaultCompiler]));
     w19.TopAttach    = ((uint)(2));
     w19.BottomAttach = ((uint)(3));
     w19.LeftAttach   = ((uint)(1));
     w19.RightAttach  = ((uint)(2));
     w19.XOptions     = ((global::Gtk.AttachOptions)(4));
     w19.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.cmbCompiler      = global::Gtk.ComboBox.NewText();
     this.cmbCompiler.Name = "cmbCompiler";
     this.table_CompilingTab.Add(this.cmbCompiler);
     global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.cmbCompiler]));
     w20.TopAttach    = ((uint)(1));
     w20.BottomAttach = ((uint)(2));
     w20.LeftAttach   = ((uint)(1));
     w20.RightAttach  = ((uint)(2));
     w20.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.combo_Platform      = global::Gtk.ComboBox.NewText();
     this.combo_Platform.Name = "combo_Platform";
     this.table_CompilingTab.Add(this.combo_Platform);
     global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.combo_Platform]));
     w21.TopAttach    = ((uint)(5));
     w21.BottomAttach = ((uint)(6));
     w21.LeftAttach   = ((uint)(1));
     w21.RightAttach  = ((uint)(2));
     w21.XOptions     = ((global::Gtk.AttachOptions)(4));
     w21.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.label11           = new global::Gtk.Label();
     this.label11.Name      = "label11";
     this.label11.Xalign    = 0F;
     this.label11.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Note: Relative paths will be related to the project\'s base directory!");
     this.table_CompilingTab.Add(this.label11);
     global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label11]));
     w22.LeftAttach  = ((uint)(1));
     w22.RightAttach = ((uint)(2));
     w22.XOptions    = ((global::Gtk.AttachOptions)(4));
     w22.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.label17           = new global::Gtk.Label();
     this.label17.Name      = "label17";
     this.label17.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Debug constants");
     this.table_CompilingTab.Add(this.label17);
     global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label17]));
     w23.TopAttach    = ((uint)(6));
     w23.BottomAttach = ((uint)(7));
     w23.XOptions     = ((global::Gtk.AttachOptions)(4));
     w23.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.label18           = new global::Gtk.Label();
     this.label18.Name      = "label18";
     this.label18.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Version constants");
     this.table_CompilingTab.Add(this.label18);
     global::Gtk.Table.TableChild w24 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label18]));
     w24.TopAttach    = ((uint)(8));
     w24.BottomAttach = ((uint)(9));
     w24.XOptions     = ((global::Gtk.AttachOptions)(4));
     w24.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.label19           = new global::Gtk.Label();
     this.label19.Name      = "label19";
     this.label19.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Debug level");
     this.table_CompilingTab.Add(this.label19);
     global::Gtk.Table.TableChild w25 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label19]));
     w25.TopAttach    = ((uint)(7));
     w25.BottomAttach = ((uint)(8));
     w25.XOptions     = ((global::Gtk.AttachOptions)(4));
     w25.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.label20           = new global::Gtk.Label();
     this.label20.Name      = "label20";
     this.label20.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("DDoc directory");
     this.table_CompilingTab.Add(this.label20);
     global::Gtk.Table.TableChild w26 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label20]));
     w26.TopAttach    = ((uint)(10));
     w26.BottomAttach = ((uint)(11));
     w26.XOptions     = ((global::Gtk.AttachOptions)(4));
     w26.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.label26           = new global::Gtk.Label();
     this.label26.Name      = "label26";
     this.label26.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Target platform");
     this.table_CompilingTab.Add(this.label26);
     global::Gtk.Table.TableChild w27 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label26]));
     w27.TopAttach    = ((uint)(5));
     w27.BottomAttach = ((uint)(6));
     w27.XOptions     = ((global::Gtk.AttachOptions)(4));
     w27.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.Xalign    = 0F;
     this.label4.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Compiler");
     this.table_CompilingTab.Add(this.label4);
     global::Gtk.Table.TableChild w28 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label4]));
     w28.TopAttach    = ((uint)(1));
     w28.BottomAttach = ((uint)(2));
     w28.XOptions     = ((global::Gtk.AttachOptions)(4));
     w28.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.label5           = new global::Gtk.Label();
     this.label5.Name      = "label5";
     this.label5.Xalign    = 0F;
     this.label5.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Objects directory");
     this.table_CompilingTab.Add(this.label5);
     global::Gtk.Table.TableChild w29 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label5]));
     w29.TopAttach    = ((uint)(9));
     w29.BottomAttach = ((uint)(10));
     w29.XOptions     = ((global::Gtk.AttachOptions)(4));
     w29.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.label7           = new global::Gtk.Label();
     this.label7.Name      = "label7";
     this.label7.Xalign    = 0F;
     this.label7.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Extra Compiler Options");
     this.table_CompilingTab.Add(this.label7);
     global::Gtk.Table.TableChild w30 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.label7]));
     w30.TopAttach    = ((uint)(11));
     w30.BottomAttach = ((uint)(12));
     w30.XOptions     = ((global::Gtk.AttachOptions)(4));
     w30.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.scrolledwindow4 = new global::Gtk.ScrolledWindow();
     this.scrolledwindow4.HeightRequest = 150;
     this.scrolledwindow4.CanFocus      = true;
     this.scrolledwindow4.Name          = "scrolledwindow4";
     this.scrolledwindow4.ShadowType    = ((global::Gtk.ShadowType)(1));
     // Container child scrolledwindow4.Gtk.Container+ContainerChild
     this.extraCompilerTextView = new global::Gtk.TextView();
     w11.SetTip(this.extraCompilerTextView, "A newline-separated list of extra options to send to the compiler.\nOne option can" +
                " be in more than one line.\nExample:\n\t`--pkg\n\tcairo`", "A newline-separated list of extra options to send to the compiler.\nOne option can" +
                " be in more than one line.\nExample:\n\t`--pkg\n\tcairo`");
     this.extraCompilerTextView.CanFocus = true;
     this.extraCompilerTextView.Name     = "extraCompilerTextView";
     this.scrolledwindow4.Add(this.extraCompilerTextView);
     this.table_CompilingTab.Add(this.scrolledwindow4);
     global::Gtk.Table.TableChild w32 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.scrolledwindow4]));
     w32.TopAttach    = ((uint)(11));
     w32.BottomAttach = ((uint)(12));
     w32.LeftAttach   = ((uint)(1));
     w32.RightAttach  = ((uint)(2));
     w32.XOptions     = ((global::Gtk.AttachOptions)(4));
     w32.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.spin_debugLevel = new global::Gtk.SpinButton(0D, 100D, 1D);
     w11.SetTip(this.spin_debugLevel, "The debug level the program is built in.\nA value of zero (0) will not emit a -deb" +
                "ug flag to the compilation argument string!", "The debug level the program is built in.\nA value of zero (0) will not emit a -deb" +
                "ug flag to the compilation argument string!");
     this.spin_debugLevel.CanFocus = true;
     this.spin_debugLevel.Name     = "spin_debugLevel";
     this.spin_debugLevel.Adjustment.PageIncrement = 10D;
     this.spin_debugLevel.ClimbRate = 1D;
     this.spin_debugLevel.Numeric   = true;
     this.table_CompilingTab.Add(this.spin_debugLevel);
     global::Gtk.Table.TableChild w33 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.spin_debugLevel]));
     w33.TopAttach    = ((uint)(7));
     w33.BottomAttach = ((uint)(8));
     w33.LeftAttach   = ((uint)(1));
     w33.RightAttach  = ((uint)(2));
     w33.XOptions     = ((global::Gtk.AttachOptions)(4));
     w33.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.text_DDocDir               = new global::Gtk.Entry();
     this.text_DDocDir.CanFocus      = true;
     this.text_DDocDir.Name          = "text_DDocDir";
     this.text_DDocDir.IsEditable    = true;
     this.text_DDocDir.InvisibleChar = '●';
     this.table_CompilingTab.Add(this.text_DDocDir);
     global::Gtk.Table.TableChild w34 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.text_DDocDir]));
     w34.TopAttach    = ((uint)(10));
     w34.BottomAttach = ((uint)(11));
     w34.LeftAttach   = ((uint)(1));
     w34.RightAttach  = ((uint)(2));
     w34.XOptions     = ((global::Gtk.AttachOptions)(4));
     w34.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.text_debugConstants = new global::Gtk.Entry();
     w11.SetTip(this.text_debugConstants, "Semicolon (;) separated list of debug constants to define for debug-build compila" +
                "tion.\nImportant: May affect code completion if omitted/written into extra compil" +
                "er options field!", "Semicolon (;) separated list of debug constants to define for debug-build compila" +
                "tion.\nImportant: May affect code completion if omitted/written into extra compil" +
                "er options field!");
     this.text_debugConstants.CanFocus      = true;
     this.text_debugConstants.Name          = "text_debugConstants";
     this.text_debugConstants.IsEditable    = true;
     this.text_debugConstants.InvisibleChar = '●';
     this.table_CompilingTab.Add(this.text_debugConstants);
     global::Gtk.Table.TableChild w35 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.text_debugConstants]));
     w35.TopAttach    = ((uint)(6));
     w35.BottomAttach = ((uint)(7));
     w35.LeftAttach   = ((uint)(1));
     w35.RightAttach  = ((uint)(2));
     w35.XOptions     = ((global::Gtk.AttachOptions)(4));
     w35.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.text_ObjectsDirectory               = new global::Gtk.Entry();
     this.text_ObjectsDirectory.CanFocus      = true;
     this.text_ObjectsDirectory.Name          = "text_ObjectsDirectory";
     this.text_ObjectsDirectory.IsEditable    = true;
     this.text_ObjectsDirectory.InvisibleChar = '●';
     this.table_CompilingTab.Add(this.text_ObjectsDirectory);
     global::Gtk.Table.TableChild w36 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.text_ObjectsDirectory]));
     w36.TopAttach    = ((uint)(9));
     w36.BottomAttach = ((uint)(10));
     w36.LeftAttach   = ((uint)(1));
     w36.RightAttach  = ((uint)(2));
     w36.XOptions     = ((global::Gtk.AttachOptions)(4));
     w36.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CompilingTab.Gtk.Table+TableChild
     this.text_versionConstants = new global::Gtk.Entry();
     w11.SetTip(this.text_versionConstants, "Semicolon (;) separated list of version constants to define for compilation.\nImpo" +
                "rtant: May affect code completion if omitted/written into extra compiler options" +
                " field!", "Semicolon (;) separated list of version constants to define for compilation.\nImpo" +
                "rtant: May affect code completion if omitted/written into extra compiler options" +
                " field!");
     this.text_versionConstants.CanFocus      = true;
     this.text_versionConstants.Name          = "text_versionConstants";
     this.text_versionConstants.IsEditable    = true;
     this.text_versionConstants.InvisibleChar = '●';
     this.table_CompilingTab.Add(this.text_versionConstants);
     global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.table_CompilingTab [this.text_versionConstants]));
     w37.TopAttach    = ((uint)(8));
     w37.BottomAttach = ((uint)(9));
     w37.LeftAttach   = ((uint)(1));
     w37.RightAttach  = ((uint)(2));
     w37.XOptions     = ((global::Gtk.AttachOptions)(4));
     w37.YOptions     = ((global::Gtk.AttachOptions)(4));
     this.notebook1.Add(this.table_CompilingTab);
     global::Gtk.Notebook.NotebookChild w38 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1 [this.table_CompilingTab]));
     w38.Position = 1;
     // Notebook tab
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Compiling");
     this.notebook1.SetTabLabel(this.table_CompilingTab, this.label1);
     this.label1.ShowAll();
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.check_EnableBuildCmdOverride               = new global::Gtk.CheckButton();
     this.check_EnableBuildCmdOverride.CanFocus      = true;
     this.check_EnableBuildCmdOverride.Name          = "check_EnableBuildCmdOverride";
     this.check_EnableBuildCmdOverride.Label         = global::MonoDevelop.Core.GettextCatalog.GetString("Enable custom build tools");
     this.check_EnableBuildCmdOverride.DrawIndicator = true;
     this.check_EnableBuildCmdOverride.UseUnderline  = true;
     this.vbox1.Add(this.check_EnableBuildCmdOverride);
     global::Gtk.Box.BoxChild w39 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.check_EnableBuildCmdOverride]));
     w39.Position = 0;
     w39.Expand   = false;
     w39.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.table_CustomBuildTools               = new global::Gtk.Table(((uint)(5)), ((uint)(2)), false);
     this.table_CustomBuildTools.Name          = "table_CustomBuildTools";
     this.table_CustomBuildTools.RowSpacing    = ((uint)(6));
     this.table_CustomBuildTools.ColumnSpacing = ((uint)(6));
     // Container child table_CustomBuildTools.Gtk.Table+TableChild
     this.check_BuildToolsPerConfiguration               = new global::Gtk.CheckButton();
     this.check_BuildToolsPerConfiguration.CanFocus      = true;
     this.check_BuildToolsPerConfiguration.Name          = "check_BuildToolsPerConfiguration";
     this.check_BuildToolsPerConfiguration.Label         = global::MonoDevelop.Core.GettextCatalog.GetString("Apply custom build settings to all configurations");
     this.check_BuildToolsPerConfiguration.DrawIndicator = true;
     this.check_BuildToolsPerConfiguration.UseUnderline  = true;
     this.table_CustomBuildTools.Add(this.check_BuildToolsPerConfiguration);
     global::Gtk.Table.TableChild w40 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.check_BuildToolsPerConfiguration]));
     w40.LeftAttach  = ((uint)(1));
     w40.RightAttach = ((uint)(2));
     w40.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table_CustomBuildTools.Gtk.Table+TableChild
     this.label22           = new global::Gtk.Label();
     this.label22.Name      = "label22";
     this.label22.Xalign    = 0F;
     this.label22.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Build command");
     this.table_CustomBuildTools.Add(this.label22);
     global::Gtk.Table.TableChild w41 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.label22]));
     w41.TopAttach    = ((uint)(1));
     w41.BottomAttach = ((uint)(2));
     w41.XOptions     = ((global::Gtk.AttachOptions)(4));
     w41.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CustomBuildTools.Gtk.Table+TableChild
     this.label23           = new global::Gtk.Label();
     this.label23.Name      = "label23";
     this.label23.Xalign    = 0F;
     this.label23.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Run command");
     this.table_CustomBuildTools.Add(this.label23);
     global::Gtk.Table.TableChild w42 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.label23]));
     w42.TopAttach    = ((uint)(3));
     w42.BottomAttach = ((uint)(4));
     w42.XOptions     = ((global::Gtk.AttachOptions)(4));
     w42.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CustomBuildTools.Gtk.Table+TableChild
     this.label24           = new global::Gtk.Label();
     this.label24.Name      = "label24";
     this.label24.Xalign    = 0F;
     this.label24.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Macros");
     this.table_CustomBuildTools.Add(this.label24);
     global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.label24]));
     w43.TopAttach    = ((uint)(4));
     w43.BottomAttach = ((uint)(5));
     w43.XOptions     = ((global::Gtk.AttachOptions)(4));
     w43.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CustomBuildTools.Gtk.Table+TableChild
     this.label25           = new global::Gtk.Label();
     this.label25.Name      = "label25";
     this.label25.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Build check command");
     this.table_CustomBuildTools.Add(this.label25);
     global::Gtk.Table.TableChild w44 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.label25]));
     w44.TopAttach    = ((uint)(2));
     w44.BottomAttach = ((uint)(3));
     w44.XOptions     = ((global::Gtk.AttachOptions)(4));
     w44.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CustomBuildTools.Gtk.Table+TableChild
     this.macroGrid = null;
     this.table_CustomBuildTools.Add(this.macroGrid);
     global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.macroGrid]));
     w45.TopAttach    = ((uint)(4));
     w45.BottomAttach = ((uint)(5));
     w45.LeftAttach   = ((uint)(1));
     w45.RightAttach  = ((uint)(2));
     // Container child table_CustomBuildTools.Gtk.Table+TableChild
     this.text_BuildCheckCommand = new global::Gtk.Entry();
     w11.SetTip(this.text_BuildCheckCommand, "Command that is executed to check whether the project was built well.\nMust return" +
                " 0 (Zero) if there were no errors and if the run command can be launched.\nIf emp" +
                "ty, the project will be assumed as being built correctly.", "Command that is executed to check whether the project was built well.\nMust return" +
                " 0 (Zero) if there were no errors and if the run command can be launched.\nIf emp" +
                "ty, the project will be assumed as being built correctly.");
     this.text_BuildCheckCommand.CanFocus      = true;
     this.text_BuildCheckCommand.Name          = "text_BuildCheckCommand";
     this.text_BuildCheckCommand.IsEditable    = true;
     this.text_BuildCheckCommand.InvisibleChar = '●';
     this.table_CustomBuildTools.Add(this.text_BuildCheckCommand);
     global::Gtk.Table.TableChild w46 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.text_BuildCheckCommand]));
     w46.TopAttach    = ((uint)(2));
     w46.BottomAttach = ((uint)(3));
     w46.LeftAttach   = ((uint)(1));
     w46.RightAttach  = ((uint)(2));
     w46.XOptions     = ((global::Gtk.AttachOptions)(4));
     w46.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CustomBuildTools.Gtk.Table+TableChild
     this.text_BuildCommand               = new global::Gtk.Entry();
     this.text_BuildCommand.CanFocus      = true;
     this.text_BuildCommand.Name          = "text_BuildCommand";
     this.text_BuildCommand.IsEditable    = true;
     this.text_BuildCommand.InvisibleChar = '●';
     this.table_CustomBuildTools.Add(this.text_BuildCommand);
     global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.text_BuildCommand]));
     w47.TopAttach    = ((uint)(1));
     w47.BottomAttach = ((uint)(2));
     w47.LeftAttach   = ((uint)(1));
     w47.RightAttach  = ((uint)(2));
     w47.XOptions     = ((global::Gtk.AttachOptions)(4));
     w47.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table_CustomBuildTools.Gtk.Table+TableChild
     this.text_RunCommand               = new global::Gtk.Entry();
     this.text_RunCommand.CanFocus      = true;
     this.text_RunCommand.Name          = "text_RunCommand";
     this.text_RunCommand.IsEditable    = true;
     this.text_RunCommand.InvisibleChar = '●';
     this.table_CustomBuildTools.Add(this.text_RunCommand);
     global::Gtk.Table.TableChild w48 = ((global::Gtk.Table.TableChild)(this.table_CustomBuildTools [this.text_RunCommand]));
     w48.TopAttach    = ((uint)(3));
     w48.BottomAttach = ((uint)(4));
     w48.LeftAttach   = ((uint)(1));
     w48.RightAttach  = ((uint)(2));
     w48.XOptions     = ((global::Gtk.AttachOptions)(4));
     w48.YOptions     = ((global::Gtk.AttachOptions)(4));
     this.vbox1.Add(this.table_CustomBuildTools);
     global::Gtk.Box.BoxChild w49 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.table_CustomBuildTools]));
     w49.Position = 1;
     this.notebook1.Add(this.vbox1);
     global::Gtk.Notebook.NotebookChild w50 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1 [this.vbox1]));
     w50.Position = 2;
     // Notebook tab
     this.label21           = new global::Gtk.Label();
     this.label21.Name      = "label21";
     this.label21.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Custom build tools");
     this.notebook1.SetTabLabel(this.vbox1, this.label21);
     this.label21.ShowAll();
     this.Add(this.notebook1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Show();
     this.cbUseDefaultCompiler.Clicked         += new global::System.EventHandler(this.cbUseDefaultCompiler_Clicked);
     this.check_EnableBuildCmdOverride.Toggled += new global::System.EventHandler(this.OnCheckEnableBuildCmdOverrideToggled);
 }
Example #38
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget YAWIPForm
     this.Name = "YAWIPForm";
     this.Title = global::Mono.Unix.Catalog.GetString ("Yet Another What Is Playing");
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     // Container child YAWIPForm.Gtk.Container+ContainerChild
     this.vboxMain = new global::Gtk.VBox ();
     this.vboxMain.Name = "vboxMain";
     this.vboxMain.Spacing = 6;
     // Container child vboxMain.Gtk.Box+BoxChild
     this.frmGeneral = new global::Gtk.Frame ();
     this.frmGeneral.Name = "frmGeneral";
     this.frmGeneral.ShadowType = ((global::Gtk.ShadowType)(1));
     this.frmGeneral.BorderWidth = ((uint)(12));
     // Container child frmGeneral.Gtk.Container+ContainerChild
     this.tblGeneral = new global::Gtk.Table (((uint)(2)), ((uint)(2)), false);
     this.tblGeneral.Name = "tblGeneral";
     this.tblGeneral.RowSpacing = ((uint)(6));
     this.tblGeneral.ColumnSpacing = ((uint)(6));
     this.tblGeneral.BorderWidth = ((uint)(3));
     // Container child tblGeneral.Gtk.Table+TableChild
     this.lblFile = new global::Gtk.Label ();
     this.lblFile.Name = "lblFile";
     this.lblFile.Xalign = 0F;
     this.lblFile.LabelProp = global::Mono.Unix.Catalog.GetString ("File path:");
     this.tblGeneral.Add (this.lblFile);
     global::Gtk.Table.TableChild w1 = ((global::Gtk.Table.TableChild)(this.tblGeneral [this.lblFile]));
     w1.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblGeneral.Gtk.Table+TableChild
     this.lblRefreshRate = new global::Gtk.Label ();
     this.lblRefreshRate.Name = "lblRefreshRate";
     this.lblRefreshRate.Xalign = 0F;
     this.lblRefreshRate.LabelProp = global::Mono.Unix.Catalog.GetString ("Refresh rate (ms):");
     this.tblGeneral.Add (this.lblRefreshRate);
     global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.tblGeneral [this.lblRefreshRate]));
     w2.TopAttach = ((uint)(1));
     w2.BottomAttach = ((uint)(2));
     w2.XOptions = ((global::Gtk.AttachOptions)(4));
     w2.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblGeneral.Gtk.Table+TableChild
     this.spinRefreshRate = new global::Gtk.SpinButton (1D, 4294967296D, 1D);
     this.spinRefreshRate.CanFocus = true;
     this.spinRefreshRate.Name = "spinRefreshRate";
     this.spinRefreshRate.Adjustment.PageIncrement = 10D;
     this.spinRefreshRate.ClimbRate = 1D;
     this.spinRefreshRate.Numeric = true;
     this.spinRefreshRate.Value = 1D;
     this.tblGeneral.Add (this.spinRefreshRate);
     global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.tblGeneral [this.spinRefreshRate]));
     w3.TopAttach = ((uint)(1));
     w3.BottomAttach = ((uint)(2));
     w3.LeftAttach = ((uint)(1));
     w3.RightAttach = ((uint)(2));
     w3.XOptions = ((global::Gtk.AttachOptions)(4));
     w3.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblGeneral.Gtk.Table+TableChild
     this.txtFilePath = new global::Gtk.Entry ();
     this.txtFilePath.CanFocus = true;
     this.txtFilePath.Name = "txtFilePath";
     this.txtFilePath.IsEditable = true;
     this.txtFilePath.InvisibleChar = '●';
     this.tblGeneral.Add (this.txtFilePath);
     global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.tblGeneral [this.txtFilePath]));
     w4.LeftAttach = ((uint)(1));
     w4.RightAttach = ((uint)(2));
     w4.XOptions = ((global::Gtk.AttachOptions)(4));
     w4.YOptions = ((global::Gtk.AttachOptions)(4));
     this.frmGeneral.Add (this.tblGeneral);
     this.lblGeneral = new global::Gtk.Label ();
     this.lblGeneral.Name = "lblGeneral";
     this.lblGeneral.LabelProp = global::Mono.Unix.Catalog.GetString ("<i>General Settings</i>");
     this.lblGeneral.UseMarkup = true;
     this.frmGeneral.LabelWidget = this.lblGeneral;
     this.vboxMain.Add (this.frmGeneral);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vboxMain [this.frmGeneral]));
     w6.Position = 0;
     w6.Expand = false;
     w6.Fill = false;
     // Container child vboxMain.Gtk.Box+BoxChild
     this.notebook = new global::Gtk.Notebook ();
     this.notebook.CanFocus = true;
     this.notebook.Name = "notebook";
     this.notebook.CurrentPage = 0;
     this.notebook.BorderWidth = ((uint)(9));
     // Container child notebook.Gtk.Notebook+NotebookChild
     this.vboxVlc = new global::Gtk.VBox ();
     this.vboxVlc.Name = "vboxVlc";
     this.vboxVlc.Spacing = 6;
     this.vboxVlc.BorderWidth = ((uint)(6));
     // Container child vboxVlc.Gtk.Box+BoxChild
     this.lblVlcExpl = new global::Gtk.Label ();
     this.lblVlcExpl.Name = "lblVlcExpl";
     this.lblVlcExpl.LabelProp = global::Mono.Unix.Catalog.GetString ("<i>Setup the connection to the Telnet Server.</i>");
     this.lblVlcExpl.UseMarkup = true;
     this.lblVlcExpl.Wrap = true;
     this.vboxVlc.Add (this.lblVlcExpl);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vboxVlc [this.lblVlcExpl]));
     w7.Position = 0;
     w7.Expand = false;
     w7.Fill = false;
     // Container child vboxVlc.Gtk.Box+BoxChild
     this.tblVlc = new global::Gtk.Table (((uint)(3)), ((uint)(2)), false);
     this.tblVlc.Name = "tblVlc";
     this.tblVlc.RowSpacing = ((uint)(6));
     this.tblVlc.ColumnSpacing = ((uint)(6));
     this.tblVlc.BorderWidth = ((uint)(6));
     // Container child tblVlc.Gtk.Table+TableChild
     this.lblVlcHostname = new global::Gtk.Label ();
     this.lblVlcHostname.Name = "lblVlcHostname";
     this.lblVlcHostname.Xalign = 0F;
     this.lblVlcHostname.LabelProp = global::Mono.Unix.Catalog.GetString ("Hostname:");
     this.tblVlc.Add (this.lblVlcHostname);
     global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.tblVlc [this.lblVlcHostname]));
     w8.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblVlc.Gtk.Table+TableChild
     this.lblVlcPassword = new global::Gtk.Label ();
     this.lblVlcPassword.Name = "lblVlcPassword";
     this.lblVlcPassword.Xalign = 0F;
     this.lblVlcPassword.LabelProp = global::Mono.Unix.Catalog.GetString ("Password:"******"lblVlcPort";
     this.lblVlcPort.Xalign = 0F;
     this.lblVlcPort.LabelProp = global::Mono.Unix.Catalog.GetString ("Port:");
     this.tblVlc.Add (this.lblVlcPort);
     global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.tblVlc [this.lblVlcPort]));
     w10.TopAttach = ((uint)(1));
     w10.BottomAttach = ((uint)(2));
     w10.XOptions = ((global::Gtk.AttachOptions)(4));
     w10.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblVlc.Gtk.Table+TableChild
     this.spinVlcPort = new global::Gtk.SpinButton (0D, 65565D, 1D);
     this.spinVlcPort.CanFocus = true;
     this.spinVlcPort.Name = "spinVlcPort";
     this.spinVlcPort.Adjustment.PageIncrement = 10D;
     this.spinVlcPort.ClimbRate = 1D;
     this.spinVlcPort.Numeric = true;
     this.tblVlc.Add (this.spinVlcPort);
     global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.tblVlc [this.spinVlcPort]));
     w11.TopAttach = ((uint)(1));
     w11.BottomAttach = ((uint)(2));
     w11.LeftAttach = ((uint)(1));
     w11.RightAttach = ((uint)(2));
     w11.XOptions = ((global::Gtk.AttachOptions)(4));
     w11.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblVlc.Gtk.Table+TableChild
     this.txtVlcHostname = new global::Gtk.Entry ();
     this.txtVlcHostname.CanFocus = true;
     this.txtVlcHostname.Name = "txtVlcHostname";
     this.txtVlcHostname.IsEditable = true;
     this.txtVlcHostname.InvisibleChar = '●';
     this.tblVlc.Add (this.txtVlcHostname);
     global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.tblVlc [this.txtVlcHostname]));
     w12.LeftAttach = ((uint)(1));
     w12.RightAttach = ((uint)(2));
     w12.XOptions = ((global::Gtk.AttachOptions)(4));
     w12.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblVlc.Gtk.Table+TableChild
     this.txtVlcPassword = new global::Gtk.Entry ();
     this.txtVlcPassword.CanFocus = true;
     this.txtVlcPassword.Name = "txtVlcPassword";
     this.txtVlcPassword.IsEditable = true;
     this.txtVlcPassword.Visibility = false;
     this.txtVlcPassword.InvisibleChar = '●';
     this.tblVlc.Add (this.txtVlcPassword);
     global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.tblVlc [this.txtVlcPassword]));
     w13.TopAttach = ((uint)(2));
     w13.BottomAttach = ((uint)(3));
     w13.LeftAttach = ((uint)(1));
     w13.RightAttach = ((uint)(2));
     w13.XOptions = ((global::Gtk.AttachOptions)(4));
     w13.YOptions = ((global::Gtk.AttachOptions)(4));
     this.vboxVlc.Add (this.tblVlc);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vboxVlc [this.tblVlc]));
     w14.Position = 1;
     w14.Expand = false;
     w14.Fill = false;
     this.notebook.Add (this.vboxVlc);
     // Notebook tab
     this.lblVLC = new global::Gtk.Label ();
     this.lblVLC.Name = "lblVLC";
     this.lblVLC.LabelProp = global::Mono.Unix.Catalog.GetString ("VLC");
     this.notebook.SetTabLabel (this.vboxVlc, this.lblVLC);
     this.lblVLC.ShowAll ();
     // Container child notebook.Gtk.Notebook+NotebookChild
     this.tblSpotify = new global::Gtk.Table (((uint)(3)), ((uint)(3)), false);
     this.tblSpotify.Name = "tblSpotify";
     this.tblSpotify.RowSpacing = ((uint)(6));
     this.tblSpotify.ColumnSpacing = ((uint)(6));
     this.notebook.Add (this.tblSpotify);
     global::Gtk.Notebook.NotebookChild w16 = ((global::Gtk.Notebook.NotebookChild)(this.notebook [this.tblSpotify]));
     w16.Position = 1;
     // Notebook tab
     this.lblSpotify = new global::Gtk.Label ();
     this.lblSpotify.Name = "lblSpotify";
     this.lblSpotify.LabelProp = global::Mono.Unix.Catalog.GetString ("Spotify");
     this.notebook.SetTabLabel (this.tblSpotify, this.lblSpotify);
     this.lblSpotify.ShowAll ();
     this.vboxMain.Add (this.notebook);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vboxMain [this.notebook]));
     w17.Position = 1;
     // Container child vboxMain.Gtk.Box+BoxChild
     this.hboxCommands = new global::Gtk.HBox ();
     this.hboxCommands.Name = "hboxCommands";
     this.hboxCommands.Spacing = 6;
     // Container child hboxCommands.Gtk.Box+BoxChild
     this.btnCommand = new global::Gtk.Button ();
     this.btnCommand.CanFocus = true;
     this.btnCommand.Name = "btnCommand";
     this.btnCommand.UseUnderline = true;
     this.btnCommand.BorderWidth = ((uint)(9));
     this.btnCommand.Label = global::Mono.Unix.Catalog.GetString ("Start");
     this.hboxCommands.Add (this.btnCommand);
     global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.hboxCommands [this.btnCommand]));
     w18.Position = 0;
     w18.Expand = false;
     w18.Fill = false;
     // Container child hboxCommands.Gtk.Box+BoxChild
     this.btnReset = new global::Gtk.Button ();
     this.btnReset.CanFocus = true;
     this.btnReset.Name = "btnReset";
     this.btnReset.UseUnderline = true;
     this.btnReset.BorderWidth = ((uint)(9));
     this.btnReset.Label = global::Mono.Unix.Catalog.GetString ("_Reset");
     global::Gtk.Image w19 = new global::Gtk.Image ();
     w19.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-clear", global::Gtk.IconSize.Menu);
     this.btnReset.Image = w19;
     this.hboxCommands.Add (this.btnReset);
     global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.hboxCommands [this.btnReset]));
     w20.PackType = ((global::Gtk.PackType)(1));
     w20.Position = 2;
     w20.Expand = false;
     w20.Fill = false;
     this.vboxMain.Add (this.hboxCommands);
     global::Gtk.Box.BoxChild w21 = ((global::Gtk.Box.BoxChild)(this.vboxMain [this.hboxCommands]));
     w21.Position = 2;
     w21.Expand = false;
     w21.Fill = false;
     // Container child vboxMain.Gtk.Box+BoxChild
     this.statusbar = new global::Gtk.Statusbar ();
     global::Gtk.Tooltips w22 = new Gtk.Tooltips ();
     w22.SetTip (this.statusbar, "The status of YAWIP", "The status of YAWIP");
     this.statusbar.Name = "statusbar";
     this.statusbar.Spacing = 6;
     this.statusbar.HasResizeGrip = false;
     this.vboxMain.Add (this.statusbar);
     global::Gtk.Box.BoxChild w23 = ((global::Gtk.Box.BoxChild)(this.vboxMain [this.statusbar]));
     w23.Position = 3;
     w23.Expand = false;
     w23.Fill = false;
     this.Add (this.vboxMain);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 317;
     this.DefaultHeight = 423;
     this.Show ();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
     this.btnCommand.Clicked += new global::System.EventHandler (this.OnCommandClick);
     this.btnReset.Clicked += new global::System.EventHandler (this.ResetConfigs);
 }
        protected virtual void Build()
        {
            // Memory Loading the pixmaps got layer use
            System.Reflection.Assembly myAssembly = System.Reflection.Assembly.GetExecutingAssembly();
            System.IO.Stream           myStream   = myAssembly.GetManifestResourceStream("CombatSportsScore.img.knockdown.xpm");
            global::Gtk.Image          w4         = new global::Gtk.Image(myStream);

            System.Reflection.Assembly myAssembly2 = System.Reflection.Assembly.GetExecutingAssembly();
            System.IO.Stream           myStream2   = myAssembly2.GetManifestResourceStream("CombatSportsScore.img.foul.xpm");
            global::Gtk.Image          w6          = new global::Gtk.Image(myStream2);

            System.Reflection.Assembly myAssembly3 = System.Reflection.Assembly.GetExecutingAssembly();
            System.IO.Stream           myStream3   = myAssembly3.GetManifestResourceStream("CombatSportsScore.img.swing.xpm");
            global::Gtk.Image          w8          = new global::Gtk.Image(myStream3);


            global::Stetic.Gui.Initialize(this);
            // Widget CombatSportsScore.RDWidget
            global::Stetic.BinContainer.Attach(this);
            this.Name = "CombatSportsScore.RDWidget";
            // Container child CombatSportsScore.RDWidget.Gtk.Container+ContainerChild
            this.table            = new global::Gtk.Table(((uint)(2)), ((uint)(3)), false);
            this.table.Name       = "table";
            this.table.RowSpacing = ((uint)(2));
            // Container child table.Gtk.Table+TableChild
            this.colourbutton1        = new global::CombatSportsScore.ColourButton();
            this.colourbutton1.Events = ((global::Gdk.EventMask)(256));
            this.colourbutton1.Name   = "colourbutton1";
            this.table.Add(this.colourbutton1);
            global::Gtk.Table.TableChild w1 = ((global::Gtk.Table.TableChild)(this.table[this.colourbutton1]));
            w1.TopAttach    = ((uint)(1));
            w1.BottomAttach = ((uint)(2));
            w1.XOptions     = ((global::Gtk.AttachOptions)(4));
            w1.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table.Gtk.Table+TableChild
            this.colourbutton2        = new global::CombatSportsScore.ColourButton(2);
            this.colourbutton2.Events = ((global::Gdk.EventMask)(256));
            this.colourbutton2.Name   = "colourbutton2";
            this.table.Add(this.colourbutton2);
            global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table[this.colourbutton2]));
            w2.TopAttach    = ((uint)(1));
            w2.BottomAttach = ((uint)(2));
            w2.LeftAttach   = ((uint)(2));
            w2.RightAttach  = ((uint)(3));
            w2.XOptions     = ((global::Gtk.AttachOptions)(4));
            w2.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table.Gtk.Table+TableChild
            this.hboxtoggle             = new global::Gtk.HBox();
            this.hboxtoggle.Name        = "hboxtoggle";
            this.hboxtoggle.Homogeneous = true;
            // Container child hboxtoggle.Gtk.Box+BoxChild
            this.toggleKD = new global::Gtk.ToggleButton();
            global::Gtk.Tooltips w3 = new Gtk.Tooltips();
            w3.SetTip(this.toggleKD, "KnockDown in Round", "KnockDown in Round");
            this.toggleKD.CanFocus = true;
            this.toggleKD.Name     = "toggleKD";
            this.toggleKD.Image    = w4;
            this.hboxtoggle.Add(this.toggleKD);
            global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hboxtoggle[this.toggleKD]));
            w5.Position = 0;
            // Container child hboxtoggle.Gtk.Box+BoxChild
            this.toggleFoul = new global::Gtk.ToggleButton();
            w3.SetTip(this.toggleFoul, "Ref Deducted Foul Points", "Ref Deducted Foul Points");
            this.toggleFoul.CanFocus = true;
            this.toggleFoul.Name     = "toggleFoul";
            this.toggleFoul.Image    = w6;
            this.hboxtoggle.Add(this.toggleFoul);
            global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hboxtoggle[this.toggleFoul]));
            w7.Position = 1;
            // Container child hboxtoggle.Gtk.Box+BoxChild
            this.toggleSwing = new global::Gtk.ToggleButton();
            w3.SetTip(this.toggleSwing, "You Consider Round Swingable To Either Fighter", "You Consider Round Swingable To Either Fighter");
            this.toggleSwing.CanFocus = true;
            this.toggleSwing.Name     = "toggleSwing";
            this.toggleSwing.Image    = w8;
            this.hboxtoggle.Add(this.toggleSwing);

            global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hboxtoggle[this.toggleSwing]));
            w9.Position = 2;
            this.table.Add(this.hboxtoggle);
            global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table[this.hboxtoggle]));
            w10.TopAttach    = ((uint)(1));
            w10.BottomAttach = ((uint)(2));
            w10.LeftAttach   = ((uint)(1));
            w10.RightAttach  = ((uint)(2));
            w10.XOptions     = ((global::Gtk.AttachOptions)(6));
            w10.YOptions     = ((global::Gtk.AttachOptions)(4));
            // Container child table.Gtk.Table+TableChild
            this.labelRound = new global::Gtk.Label();
            this.labelRound.WidthRequest = 462;
            this.labelRound.Name         = "labelRound";
            this.labelRound.LabelProp    = "<b>Round </b>";
            this.labelRound.UseMarkup    = true;
            this.labelRound.Justify      = ((global::Gtk.Justification)(2));
            this.table.Add(this.labelRound);
            global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.table[this.labelRound]));
            w11.RightAttach = ((uint)(3));
            w11.XOptions    = ((global::Gtk.AttachOptions)(2));
            w11.YOptions    = ((global::Gtk.AttachOptions)(4));
            this.Add(this.table);
            if ((this.Child != null))
            {
                this.Child.ShowAll();
            }
            this.Hide();
        }
Example #40
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("Rosenblatt");
     this.Icon           = global::Stetic.IconLoader.LoadIcon(this, "gtk-connect", global::Gtk.IconSize.Menu);
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.AllowShrink    = true;
     this.Decorated      = false;
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.hbox1             = new global::Gtk.HBox();
     this.hbox1.Name        = "hbox1";
     this.hbox1.Spacing     = 12;
     this.hbox1.BorderWidth = ((uint)(12));
     // Container child hbox1.Gtk.Box+BoxChild
     this.root      = new global::Gtk.DrawingArea();
     this.root.Name = "root";
     this.hbox1.Add(this.root);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.root]));
     w1.Position = 0;
     // Container child hbox1.Gtk.Box+BoxChild
     this.vbox1             = new global::Gtk.VBox();
     this.vbox1.Name        = "vbox1";
     this.vbox1.Spacing     = 12;
     this.vbox1.BorderWidth = ((uint)(12));
     // Container child vbox1.Gtk.Box+BoxChild
     this.frame1             = new global::Gtk.Frame();
     this.frame1.Name        = "frame1";
     this.frame1.ShadowType  = ((global::Gtk.ShadowType)(0));
     this.frame1.BorderWidth = ((uint)(12));
     // Container child frame1.Gtk.Container+ContainerChild
     this.GtkAlignment             = new global::Gtk.Alignment(0F, 0F, 1F, 1F);
     this.GtkAlignment.Name        = "GtkAlignment";
     this.GtkAlignment.LeftPadding = ((uint)(12));
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     this.vbuttonbox1             = new global::Gtk.VButtonBox();
     this.vbuttonbox1.Name        = "vbuttonbox1";
     this.vbuttonbox1.Spacing     = 12;
     this.vbuttonbox1.BorderWidth = ((uint)(12));
     this.vbuttonbox1.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(3));
     // Container child vbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.button3              = new global::Gtk.Button();
     this.button3.CanFocus     = true;
     this.button3.Name         = "button3";
     this.button3.UseUnderline = true;
     this.button3.Label        = global::Mono.Unix.Catalog.GetString("Save");
     this.vbuttonbox1.Add(this.button3);
     global::Gtk.ButtonBox.ButtonBoxChild w2 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox1[this.button3]));
     w2.Expand = false;
     w2.Fill   = false;
     // Container child vbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.button1              = new global::Gtk.Button();
     this.button1.CanFocus     = true;
     this.button1.Name         = "button1";
     this.button1.UseUnderline = true;
     this.button1.Label        = global::Mono.Unix.Catalog.GetString("Choose");
     this.vbuttonbox1.Add(this.button1);
     global::Gtk.ButtonBox.ButtonBoxChild w3 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox1[this.button1]));
     w3.Position = 1;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.button2              = new global::Gtk.Button();
     this.button2.CanFocus     = true;
     this.button2.Name         = "button2";
     this.button2.UseUnderline = true;
     this.button2.Label        = global::Mono.Unix.Catalog.GetString("Learn");
     this.vbuttonbox1.Add(this.button2);
     global::Gtk.ButtonBox.ButtonBoxChild w4 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox1[this.button2]));
     w4.Position = 2;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.button4              = new global::Gtk.Button();
     this.button4.CanFocus     = true;
     this.button4.Name         = "button4";
     this.button4.UseUnderline = true;
     this.button4.Label        = global::Mono.Unix.Catalog.GetString("Random");
     this.vbuttonbox1.Add(this.button4);
     global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox1[this.button4]));
     w5.Position = 3;
     w5.Expand   = false;
     w5.Fill     = false;
     this.GtkAlignment.Add(this.vbuttonbox1);
     this.frame1.Add(this.GtkAlignment);
     this.GtkLabel4           = new global::Gtk.Label();
     this.GtkLabel4.Name      = "GtkLabel4";
     this.GtkLabel4.LabelProp = global::Mono.Unix.Catalog.GetString("<b>Data</b>");
     this.GtkLabel4.UseMarkup = true;
     this.frame1.LabelWidget  = this.GtkLabel4;
     this.vbox1.Add(this.frame1);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.frame1]));
     w8.Position = 0;
     w8.Expand   = false;
     w8.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.frame2             = new global::Gtk.Frame();
     this.frame2.Name        = "frame2";
     this.frame2.ShadowType  = ((global::Gtk.ShadowType)(0));
     this.frame2.BorderWidth = ((uint)(12));
     // Container child frame2.Gtk.Container+ContainerChild
     this.GtkAlignment1             = new global::Gtk.Alignment(0F, 0F, 1F, 1F);
     this.GtkAlignment1.Name        = "GtkAlignment1";
     this.GtkAlignment1.LeftPadding = ((uint)(12));
     // Container child GtkAlignment1.Gtk.Container+ContainerChild
     this.vbox2             = new global::Gtk.VBox();
     this.vbox2.Name        = "vbox2";
     this.vbox2.Spacing     = 12;
     this.vbox2.BorderWidth = ((uint)(12));
     // Container child vbox2.Gtk.Box+BoxChild
     this.lblQuality           = new global::Gtk.Label();
     this.lblQuality.Name      = "lblQuality";
     this.lblQuality.LabelProp = global::Mono.Unix.Catalog.GetString("Quality: 0.0%");
     this.vbox2.Add(this.lblQuality);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.lblQuality]));
     w9.Position = 0;
     w9.Expand   = false;
     w9.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.button5              = new global::Gtk.Button();
     this.button5.CanFocus     = true;
     this.button5.Name         = "button5";
     this.button5.UseUnderline = true;
     this.button5.Label        = global::Mono.Unix.Catalog.GetString("Redraw");
     this.vbox2.Add(this.button5);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.button5]));
     w10.Position = 1;
     w10.Expand   = false;
     w10.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.comboAxis1 = global::Gtk.ComboBox.NewText();
     global::Gtk.Tooltips w11 = new Gtk.Tooltips();
     w11.SetTip(this.comboAxis1, "Axis OX", "Axis OX");
     this.comboAxis1.Name = "comboAxis1";
     this.vbox2.Add(this.comboAxis1);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.comboAxis1]));
     w12.Position = 2;
     w12.Expand   = false;
     w12.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.comboAxis2 = global::Gtk.ComboBox.NewText();
     w11.SetTip(this.comboAxis2, "Axis OY", "Axis OY");
     this.comboAxis2.Name = "comboAxis2";
     this.vbox2.Add(this.comboAxis2);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.comboAxis2]));
     w13.Position = 3;
     w13.Expand   = false;
     w13.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.comboAxis3 = global::Gtk.ComboBox.NewText();
     w11.SetTip(this.comboAxis3, "Axis OZ", "Axis OZ");
     this.comboAxis3.Name = "comboAxis3";
     this.vbox2.Add(this.comboAxis3);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.comboAxis3]));
     w14.Position = 4;
     w14.Expand   = false;
     w14.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.frame3             = new global::Gtk.Frame();
     this.frame3.Name        = "frame3";
     this.frame3.ShadowType  = ((global::Gtk.ShadowType)(0));
     this.frame3.BorderWidth = ((uint)(12));
     // Container child frame3.Gtk.Container+ContainerChild
     this.axisBox             = new global::Gtk.VBox();
     this.axisBox.Name        = "axisBox";
     this.axisBox.Spacing     = 12;
     this.axisBox.BorderWidth = ((uint)(12));
     this.frame3.Add(this.axisBox);
     this.GtkLabel6           = new global::Gtk.Label();
     this.GtkLabel6.Name      = "GtkLabel6";
     this.GtkLabel6.LabelProp = global::Mono.Unix.Catalog.GetString("<b>Axis:</b>");
     this.GtkLabel6.UseMarkup = true;
     this.frame3.LabelWidget  = this.GtkLabel6;
     this.vbox2.Add(this.frame3);
     global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.frame3]));
     w16.Position = 5;
     // Container child vbox2.Gtk.Box+BoxChild
     this.frame4             = new global::Gtk.Frame();
     this.frame4.Name        = "frame4";
     this.frame4.ShadowType  = ((global::Gtk.ShadowType)(0));
     this.frame4.BorderWidth = ((uint)(12));
     // Container child frame4.Gtk.Container+ContainerChild
     this.GtkAlignment2             = new global::Gtk.Alignment(0F, 0F, 1F, 1F);
     this.GtkAlignment2.Name        = "GtkAlignment2";
     this.GtkAlignment2.LeftPadding = ((uint)(12));
     // Container child GtkAlignment2.Gtk.Container+ContainerChild
     this.vbox3         = new global::Gtk.VBox();
     this.vbox3.Name    = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.toggle3D              = new global::Gtk.ToggleButton();
     this.toggle3D.CanFocus     = true;
     this.toggle3D.Name         = "toggle3D";
     this.toggle3D.UseUnderline = true;
     this.toggle3D.Active       = true;
     this.toggle3D.Label        = global::Mono.Unix.Catalog.GetString("3D Mode");
     this.vbox3.Add(this.toggle3D);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.toggle3D]));
     w17.Position = 0;
     w17.Expand   = false;
     w17.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.hscaleDist = new global::Gtk.HScale(null);
     w11.SetTip(this.hscaleDist, "Distance from Zero", "Distance from Zero");
     this.hscaleDist.CanFocus                 = true;
     this.hscaleDist.Name                     = "hscaleDist";
     this.hscaleDist.Adjustment.Lower         = 2D;
     this.hscaleDist.Adjustment.Upper         = 12D;
     this.hscaleDist.Adjustment.PageIncrement = 2D;
     this.hscaleDist.Adjustment.StepIncrement = 0.2D;
     this.hscaleDist.Adjustment.Value         = 3D;
     this.hscaleDist.DrawValue                = true;
     this.hscaleDist.Digits                   = 2;
     this.hscaleDist.ValuePos                 = ((global::Gtk.PositionType)(2));
     this.vbox3.Add(this.hscaleDist);
     global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.hscaleDist]));
     w18.Position = 1;
     w18.Expand   = false;
     w18.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.hscaleRot = new global::Gtk.HScale(null);
     w11.SetTip(this.hscaleRot, "Rotation", "Rotation");
     this.hscaleRot.CanFocus                 = true;
     this.hscaleRot.Name                     = "hscaleRot";
     this.hscaleRot.Adjustment.Lower         = -1D;
     this.hscaleRot.Adjustment.Upper         = 1D;
     this.hscaleRot.Adjustment.PageIncrement = 10D;
     this.hscaleRot.Adjustment.StepIncrement = 0.02D;
     this.hscaleRot.DrawValue                = true;
     this.hscaleRot.Digits                   = 2;
     this.hscaleRot.ValuePos                 = ((global::Gtk.PositionType)(2));
     this.vbox3.Add(this.hscaleRot);
     global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.hscaleRot]));
     w19.Position = 2;
     w19.Expand   = false;
     w19.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.hscaleCamera = new global::Gtk.HScale(null);
     w11.SetTip(this.hscaleCamera, "Camera distance", "Camera distance");
     this.hscaleCamera.CanFocus                 = true;
     this.hscaleCamera.Name                     = "hscaleCamera";
     this.hscaleCamera.Adjustment.Lower         = 1D;
     this.hscaleCamera.Adjustment.Upper         = 24D;
     this.hscaleCamera.Adjustment.PageIncrement = 10D;
     this.hscaleCamera.Adjustment.StepIncrement = 0.2D;
     this.hscaleCamera.Adjustment.Value         = 6D;
     this.hscaleCamera.DrawValue                = true;
     this.hscaleCamera.Digits                   = 2;
     this.hscaleCamera.ValuePos                 = ((global::Gtk.PositionType)(2));
     this.vbox3.Add(this.hscaleCamera);
     global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.hscaleCamera]));
     w20.PackType = ((global::Gtk.PackType)(1));
     w20.Position = 3;
     w20.Expand   = false;
     w20.Fill     = false;
     this.GtkAlignment2.Add(this.vbox3);
     this.frame4.Add(this.GtkAlignment2);
     this.GtkLabel8           = new global::Gtk.Label();
     this.GtkLabel8.Name      = "GtkLabel8";
     this.GtkLabel8.LabelProp = global::Mono.Unix.Catalog.GetString("<b>3D View</b>");
     this.GtkLabel8.UseMarkup = true;
     this.frame4.LabelWidget  = this.GtkLabel8;
     this.vbox2.Add(this.frame4);
     global::Gtk.Box.BoxChild w23 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.frame4]));
     w23.PackType = ((global::Gtk.PackType)(1));
     w23.Position = 6;
     w23.Expand   = false;
     w23.Fill     = false;
     this.GtkAlignment1.Add(this.vbox2);
     this.frame2.Add(this.GtkAlignment1);
     this.GtkLabel9           = new global::Gtk.Label();
     this.GtkLabel9.Name      = "GtkLabel9";
     this.GtkLabel9.LabelProp = global::Mono.Unix.Catalog.GetString("<b>Visual</b>");
     this.GtkLabel9.UseMarkup = true;
     this.frame2.LabelWidget  = this.GtkLabel9;
     this.vbox1.Add(this.frame2);
     global::Gtk.Box.BoxChild w26 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.frame2]));
     w26.Position = 1;
     w26.Expand   = false;
     w26.Fill     = false;
     this.hbox1.Add(this.vbox1);
     global::Gtk.Box.BoxChild w27 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.vbox1]));
     w27.Position = 1;
     w27.Expand   = false;
     w27.Fill     = false;
     this.Add(this.hbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 2741;
     this.DefaultHeight = 1713;
     this.Show();
     this.DeleteEvent               += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.root.ButtonPressEvent     += new global::Gtk.ButtonPressEventHandler(this.RootButtonPressed);
     this.button3.Clicked           += new global::System.EventHandler(this.BtnDataSave);
     this.button1.Clicked           += new global::System.EventHandler(this.BtnDataChoose);
     this.button2.Clicked           += new global::System.EventHandler(this.BtnDataLearn);
     this.button4.Clicked           += new global::System.EventHandler(this.ButtonRandom);
     this.button5.Clicked           += new global::System.EventHandler(this.BtnVisualRedraw);
     this.comboAxis1.Changed        += new global::System.EventHandler(this.ComboFirstAxis);
     this.comboAxis2.Changed        += new global::System.EventHandler(this.ComboSecondAxis);
     this.comboAxis3.Changed        += new global::System.EventHandler(this.ComboThirdAxis);
     this.toggle3D.Toggled          += new global::System.EventHandler(this.Toggle3DMode);
     this.hscaleDist.ValueChanged   += new global::System.EventHandler(this.HScaleDistance);
     this.hscaleRot.ValueChanged    += new global::System.EventHandler(this.HScaleRotate);
     this.hscaleCamera.ValueChanged += new global::System.EventHandler(this.HScaleCamera);
 }
Example #41
0
        void CreateControls()
        {
            if (node.Type == Gtk.UIManagerItemType.Separator)
            {
                Gtk.Widget sep;
                if (parentMenu.IsTopMenu)
                {
                    sep = new Gtk.VSeparator();
                    sep.WidthRequest = 6;
                }
                else
                {
                    sep = new Gtk.HSeparator();
                    sep.HeightRequest = 6;
                }
                Add(sep);
                ShowAll();
                return;
            }
            else
            {
                if (Child != null && Child is Gtk.Separator)
                {
                    Remove(Child);
                }
            }

            if (node.Action == null)
            {
                return;
            }

            bool isGlobal = wrapper != null && wrapper.Project.ActionGroups.IndexOf(node.Action.ActionGroup) != -1;

            Gtk.Action gaction = node.Action.GtkAction;
            bool       barItem = parentMenu.IsTopMenu;

            string text  = gaction.Label;
            string stock = gaction.StockId;

            if (barItem)
            {
                icon = null;
            }
            else if (node.Action.Type == Stetic.Wrapper.Action.ActionType.Radio)
            {
                icon = new CheckActionIcon(true, node.Action.Active);
            }
            else if (node.Action.Type == Stetic.Wrapper.Action.ActionType.Toggle)
            {
                icon = new CheckActionIcon(node.Action.DrawAsRadio, node.Action.Active);
            }

            if (stock != null)
            {
                Gtk.StockItem item = Gtk.Stock.Lookup(stock);
                if (text == null || text.Length == 0)
                {
                    text = item.Label;
                }

                if (item.Keyval != 0 && !editing && !barItem)
                {
                    Gtk.Label lac       = new Gtk.Label();
                    string    accelName = Gtk.Accelerator.Name(item.Keyval, item.Modifier).ToUpper();
                    accelName = accelName.Replace("<CONTROL>", "Ctrl+");
                    accelName = accelName.Replace("<SHIFT>", "Shift+");
                    accelName = accelName.Replace("<ALT>", "Alt+");
                    lac.Text  = accelName;
                    accel     = lac;
                }

                if (icon == null && !barItem)
                {
                    icon = node.Action.CreateIcon(Gtk.IconSize.Menu);
                }
            }

            Gtk.Tooltips tooltips = null;
            if (editing)
            {
                tooltips = new Gtk.Tooltips();
            }

            if (editing && !isGlobal)
            {
                if (!barItem)
                {
                    Gtk.HBox bbox = new Gtk.HBox();
                    if (icon != null)
                    {
                        bbox.PackStart(icon, false, false, 0);
                    }
                    bbox.PackStart(new Gtk.Arrow(Gtk.ArrowType.Down, Gtk.ShadowType.In), false, false, 0);
                    Gtk.Button b = new Gtk.Button(bbox);
                    tooltips.SetTip(b, Catalog.GetString("Select action type"), "");
                    b.Relief            = Gtk.ReliefStyle.None;
                    b.ButtonPressEvent += OnSelectIcon;
                    icon = b;
                }
                else
                {
                    icon = null;
                }

                Gtk.Entry entry = new Gtk.Entry();
                entry.Text           = text;
                entry.Activated     += OnLabelActivated;
                entry.KeyPressEvent += OnEntryKeyPress;
                entry.HasFrame       = false;
                this.label           = entry;
                tooltips.SetTip(entry, Catalog.GetString("Action label"), "");
            }
            else
            {
                Gtk.Label label = new Gtk.Label(text);
                label.Xalign = 0;
                this.label   = label;
            }

            if (editing && wrapper != null)
            {
                // Add a button for creating / deleting a submenu
                Gdk.Pixbuf img;
                string     tip;
                if (node.Type != Gtk.UIManagerItemType.Menu)
                {
                    img = addMenuImage;
                    tip = Catalog.GetString("Add submenu (Ctrl+Right)");
                }
                else
                {
                    img = removeMenuImage;
                    tip = Catalog.GetString("Remove submenu (Ctrl+Left)");
                }

                Gtk.Button sb = new Gtk.Button(new Gtk.Image(img));
                tooltips.SetTip(sb, tip, "");
                sb.Relief   = Gtk.ReliefStyle.None;
                sb.Clicked += OnCreateDeleteSubmenu;

                // Make sure the button is alligned to the right of the column
                Gtk.HBox bbox = new Gtk.HBox();
                bbox.PackEnd(sb, false, false, 0);
                accel = bbox;
            }


            if (node.Type == Gtk.UIManagerItemType.Menu && !editing && !barItem)
            {
                Gtk.Arrow arrow = new Gtk.Arrow(Gtk.ArrowType.Right, Gtk.ShadowType.None);
                arrow.Xalign = 1;
                this.accel   = arrow;
            }

            if (itemSpacing > 0 && icon != null)
            {
                // Add some padding to the left of the icon
                Gtk.Alignment a = new Gtk.Alignment(0, 0.5f, 0, 0);
                a.LeftPadding = itemSpacing;
                a.Add(icon);
                icon = a;
            }
        }
Example #42
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MainWindow
     this.Name = "MainWindow";
     this.Title = global::Mono.Unix.Catalog.GetString ("¿De los siguientes paises cuales son de america?");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.fixed1 = new global::Gtk.Fixed ();
     this.fixed1.Name = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label1 = new global::Gtk.Label ();
     this.label1.Name = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("Nombre");
     this.fixed1.Add (this.label1);
     global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label1]));
     w1.X = 11;
     w1.Y = 12;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label2 = new global::Gtk.Label ();
     this.label2.Name = "label2";
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("Codigo");
     this.fixed1.Add (this.label2);
     global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label2]));
     w2.X = 10;
     w2.Y = 55;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.entry1 = new global::Gtk.Entry ();
     this.entry1.WidthRequest = 304;
     this.entry1.HeightRequest = 24;
     this.entry1.CanFocus = true;
     this.entry1.IsEditable = true;
     this.fixed1.Add (this.entry1);
     global::Gtk.Fixed.FixedChild w3 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.entry1]));
     w3.X = 58;
     w3.Y = 11;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.entry2 = new global::Gtk.Entry ();
     this.entry2.CanFocus = true;
     this.entry2.Name = "entry2";
     this.entry2.IsEditable = true;
     this.fixed1.Add (this.entry2);
     global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.entry2]));
     w4.X = 61;
     w4.Y = 53;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label5 = new global::Gtk.Label ();
     this.label5.Name = "label5";
     this.label5.LabelProp = global::Mono.Unix.Catalog.GetString ("a)");
     this.fixed1.Add (this.label5);
     global::Gtk.Fixed.FixedChild w5 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label5]));
     w5.X = 21;
     w5.Y = 179;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.Conejo = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Conejo"));
     this.Conejo.CanFocus = true;
     this.Conejo.Name = "Conejo";
     this.Conejo.DrawIndicator = true;
     this.Conejo.UseUnderline = true;
     this.Conejo.Group = new global::GLib.SList (global::System.IntPtr.Zero);
     this.fixed1.Add (this.Conejo);
     global::Gtk.Fixed.FixedChild w6 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.Conejo]));
     w6.X = 41;
     w6.Y = 175;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label6 = new global::Gtk.Label ();
     this.label6.Name = "label6";
     this.label6.LabelProp = global::Mono.Unix.Catalog.GetString ("b)");
     this.fixed1.Add (this.label6);
     global::Gtk.Fixed.FixedChild w7 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label6]));
     w7.X = 211;
     w7.Y = 176;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.Leon = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Leon"));
     this.Leon.WidthRequest = 53;
     this.Leon.CanFocus = true;
     this.Leon.Name = "Leon";
     this.Leon.DrawIndicator = true;
     this.Leon.UseUnderline = true;
     this.Leon.Group = this.Conejo.Group;
     this.fixed1.Add (this.Leon);
     global::Gtk.Fixed.FixedChild w8 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.Leon]));
     w8.X = 232;
     w8.Y = 175;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label7 = new global::Gtk.Label ();
     this.label7.Name = "label7";
     this.label7.LabelProp = global::Mono.Unix.Catalog.GetString ("c)");
     this.fixed1.Add (this.label7);
     global::Gtk.Fixed.FixedChild w9 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label7]));
     w9.X = 383;
     w9.Y = 174;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.Pero = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Perro"));
     this.Pero.CanFocus = true;
     this.Pero.Name = "Pero";
     this.Pero.DrawIndicator = true;
     this.Pero.UseUnderline = true;
     this.Pero.Group = this.Conejo.Group;
     this.fixed1.Add (this.Pero);
     global::Gtk.Fixed.FixedChild w10 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.Pero]));
     w10.X = 402;
     w10.Y = 174;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label8 = new global::Gtk.Label ();
     this.label8.Name = "label8";
     this.label8.LabelProp = global::Mono.Unix.Catalog.GetString ("d)");
     this.fixed1.Add (this.label8);
     global::Gtk.Fixed.FixedChild w11 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label8]));
     w11.X = 564;
     w11.Y = 174;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.Pato = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Pato"));
     this.Pato.CanFocus = true;
     this.Pato.Name = "Pato";
     this.Pato.DrawIndicator = true;
     this.Pato.UseUnderline = true;
     this.Pato.Group = this.Conejo.Group;
     this.fixed1.Add (this.Pato);
     global::Gtk.Fixed.FixedChild w12 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.Pato]));
     w12.X = 589;
     w12.Y = 173;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label3 = new global::Gtk.Label ();
     this.label3.Name = "label3";
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString ("Grupo");
     this.fixed1.Add (this.label3);
     global::Gtk.Fixed.FixedChild w13 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label3]));
     w13.X = 397;
     w13.Y = 15;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.combobox1 = global::Gtk.ComboBox.NewText ();
     this.combobox1.AppendText (global::Mono.Unix.Catalog.GetString ("A"));
     this.combobox1.AppendText (global::Mono.Unix.Catalog.GetString ("B"));
     this.combobox1.AppendText (global::Mono.Unix.Catalog.GetString ("C"));
     this.combobox1.AppendText (global::Mono.Unix.Catalog.GetString ("D"));
     this.combobox1.AppendText (global::Mono.Unix.Catalog.GetString ("E"));
     global::Gtk.Tooltips w14 = new Gtk.Tooltips ();
     w14.SetTip (this.combobox1, "A\nB\nC\nD\nE", "A\nB\nC\nD\nE");
     this.combobox1.HeightRequest = 26;
     this.combobox1.Name = "combobox1";
     this.fixed1.Add (this.combobox1);
     global::Gtk.Fixed.FixedChild w15 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.combobox1]));
     w15.X = 439;
     w15.Y = 12;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label9 = new global::Gtk.Label ();
     this.label9.Name = "label9";
     this.label9.LabelProp = global::Mono.Unix.Catalog.GetString ("2-¿cuanto es 2+2?");
     this.fixed1.Add (this.label9);
     global::Gtk.Fixed.FixedChild w16 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label9]));
     w16.X = 14;
     w16.Y = 234;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.Suma = new global::Gtk.SpinButton (0D, 100D, 1D);
     this.Suma.CanFocus = true;
     this.Suma.Name = "Suma";
     this.Suma.Adjustment.PageIncrement = 10D;
     this.Suma.ClimbRate = 1D;
     this.Suma.Numeric = true;
     this.fixed1.Add (this.Suma);
     global::Gtk.Fixed.FixedChild w17 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.Suma]));
     w17.X = 12;
     w17.Y = 266;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label11 = new global::Gtk.Label ();
     this.label11.Name = "label11";
     this.label11.LabelProp = global::Mono.Unix.Catalog.GetString ("a)");
     this.fixed1.Add (this.label11);
     global::Gtk.Fixed.FixedChild w18 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label11]));
     w18.X = 19;
     w18.Y = 361;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.Mexico = new global::Gtk.CheckButton ();
     this.Mexico.CanFocus = true;
     this.Mexico.Name = "Mexico";
     this.Mexico.Label = global::Mono.Unix.Catalog.GetString ("Mexico");
     this.Mexico.Active = true;
     this.Mexico.DrawIndicator = true;
     this.Mexico.UseUnderline = true;
     this.fixed1.Add (this.Mexico);
     global::Gtk.Fixed.FixedChild w19 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.Mexico]));
     w19.X = 40;
     w19.Y = 358;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label12 = new global::Gtk.Label ();
     this.label12.Name = "label12";
     this.label12.LabelProp = global::Mono.Unix.Catalog.GetString ("b)");
     this.fixed1.Add (this.label12);
     global::Gtk.Fixed.FixedChild w20 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label12]));
     w20.X = 143;
     w20.Y = 359;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.España = new global::Gtk.CheckButton ();
     this.España.CanFocus = true;
     this.España.Name = "España";
     this.España.Label = global::Mono.Unix.Catalog.GetString ("España");
     this.España.DrawIndicator = true;
     this.España.UseUnderline = true;
     this.fixed1.Add (this.España);
     global::Gtk.Fixed.FixedChild w21 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.España]));
     w21.X = 165;
     w21.Y = 357;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label13 = new global::Gtk.Label ();
     this.label13.Name = "label13";
     this.label13.LabelProp = global::Mono.Unix.Catalog.GetString ("c)");
     this.fixed1.Add (this.label13);
     global::Gtk.Fixed.FixedChild w22 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label13]));
     w22.X = 260;
     w22.Y = 357;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.Japon = new global::Gtk.CheckButton ();
     this.Japon.CanFocus = true;
     this.Japon.Name = "Japon";
     this.Japon.Label = global::Mono.Unix.Catalog.GetString ("Japon");
     this.Japon.DrawIndicator = true;
     this.Japon.UseUnderline = true;
     this.fixed1.Add (this.Japon);
     global::Gtk.Fixed.FixedChild w23 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.Japon]));
     w23.X = 279;
     w23.Y = 356;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.Argentina = new global::Gtk.CheckButton ();
     this.Argentina.CanFocus = true;
     this.Argentina.Name = "Argentina";
     this.Argentina.Label = global::Mono.Unix.Catalog.GetString ("Argentina");
     this.Argentina.DrawIndicator = true;
     this.Argentina.UseUnderline = true;
     this.fixed1.Add (this.Argentina);
     global::Gtk.Fixed.FixedChild w24 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.Argentina]));
     w24.X = 388;
     w24.Y = 356;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label14 = new global::Gtk.Label ();
     this.label14.Name = "label14";
     this.label14.LabelProp = global::Mono.Unix.Catalog.GetString ("d)");
     this.fixed1.Add (this.label14);
     global::Gtk.Fixed.FixedChild w25 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label14]));
     w25.X = 358;
     w25.Y = 358;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label10 = new global::Gtk.Label ();
     this.label10.Name = "label10";
     this.label10.LabelProp = global::Mono.Unix.Catalog.GetString ("3-¿De los sguientes paises cuales son de america?");
     this.fixed1.Add (this.label10);
     global::Gtk.Fixed.FixedChild w26 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label10]));
     w26.X = 19;
     w26.Y = 313;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label4 = new global::Gtk.Label ();
     this.label4.Name = "label4";
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString ("1-¿ De los siguientes animales cual es felino?");
     this.fixed1.Add (this.label4);
     global::Gtk.Fixed.FixedChild w27 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label4]));
     w27.X = 22;
     w27.Y = 127;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label15 = new global::Gtk.Label ();
     this.label15.Name = "label15";
     this.label15.LabelProp = global::Mono.Unix.Catalog.GetString ("4-.¿Indique la fecha de la independencia de Mexico?");
     this.fixed1.Add (this.label15);
     global::Gtk.Fixed.FixedChild w28 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label15]));
     w28.X = 14;
     w28.Y = 415;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.calendario = new global::Gtk.Calendar ();
     this.calendario.CanFocus = true;
     this.calendario.Name = "calendario";
     this.calendario.DisplayOptions = ((global::Gtk.CalendarDisplayOptions)(35));
     this.fixed1.Add (this.calendario);
     global::Gtk.Fixed.FixedChild w29 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.calendario]));
     w29.X = 73;
     w29.Y = 444;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.entrycalificacion = new global::Gtk.Entry ();
     this.entrycalificacion.WidthRequest = 63;
     this.entrycalificacion.HeightRequest = 26;
     this.entrycalificacion.CanFocus = true;
     this.entrycalificacion.Name = "entrycalificacion";
     this.entrycalificacion.IsEditable = true;
     this.fixed1.Add (this.entrycalificacion);
     global::Gtk.Fixed.FixedChild w30 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.entrycalificacion]));
     w30.X = 600;
     w30.Y = 581;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.TERMINAR = new global::Gtk.Button ();
     this.TERMINAR.WidthRequest = 106;
     this.TERMINAR.HeightRequest = 23;
     this.TERMINAR.CanFocus = true;
     this.TERMINAR.Name = "TERMINAR";
     this.TERMINAR.UseUnderline = true;
     this.TERMINAR.Label = global::Mono.Unix.Catalog.GetString ("TERMINAR");
     this.fixed1.Add (this.TERMINAR);
     global::Gtk.Fixed.FixedChild w31 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.TERMINAR]));
     w31.X = 479;
     w31.Y = 583;
     this.Add (this.fixed1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 830;
     this.DefaultHeight = 665;
     this.Show ();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
     this.TERMINAR.Clicked += new global::System.EventHandler (this.OnButton1Clicked);
 }
Example #43
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MonoDevelop.D.ProjectIncludesWidget
     global::Stetic.BinContainer.Attach(this);
     this.Name = "MonoDevelop.D.ProjectIncludesWidget";
     // Container child MonoDevelop.D.ProjectIncludesWidget.Gtk.Container+ContainerChild
     this.vbox7             = new global::Gtk.VBox();
     this.vbox7.Name        = "vbox7";
     this.vbox7.Spacing     = 6;
     this.vbox7.BorderWidth = ((uint)(3));
     // Container child vbox7.Gtk.Box+BoxChild
     this.table2               = new global::Gtk.Table(((uint)(2)), ((uint)(2)), false);
     this.table2.Name          = "table2";
     this.table2.RowSpacing    = ((uint)(6));
     this.table2.ColumnSpacing = ((uint)(6));
     // Container child table2.Gtk.Table+TableChild
     this.GtkScrolledWindow1 = new global::Gtk.ScrolledWindow();
     global::Gtk.Tooltips w1 = new Gtk.Tooltips();
     w1.SetTip(this.GtkScrolledWindow1, "Line-separated list of paths where the compiler (and the code completion engine!) shall look in to resolve imports.", "Line-separated list of paths where the compiler (and the code completion engine!) shall look in to resolve imports.");
     this.GtkScrolledWindow1.Name       = "GtkScrolledWindow1";
     this.GtkScrolledWindow1.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow1.Gtk.Container+ContainerChild
     this.text_Includes          = new global::Gtk.TextView();
     this.text_Includes.CanFocus = true;
     this.text_Includes.Name     = "text_Includes";
     this.GtkScrolledWindow1.Add(this.text_Includes);
     this.table2.Add(this.GtkScrolledWindow1);
     global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table2 [this.GtkScrolledWindow1]));
     w3.TopAttach    = ((uint)(1));
     w3.BottomAttach = ((uint)(2));
     w3.XOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table2.Gtk.Table+TableChild
     this.label14           = new global::Gtk.Label();
     this.label14.Name      = "label14";
     this.label14.Xalign    = 0F;
     this.label14.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Note: Relative paths will be related to the project's base directory!");
     this.table2.Add(this.label14);
     global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table2 [this.label14]));
     w4.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table2.Gtk.Table+TableChild
     this.table3               = new global::Gtk.Table(((uint)(2)), ((uint)(1)), false);
     this.table3.Name          = "table3";
     this.table3.RowSpacing    = ((uint)(6));
     this.table3.ColumnSpacing = ((uint)(6));
     // Container child table3.Gtk.Table+TableChild
     this.button_AddInclude              = new global::Gtk.Button();
     this.button_AddInclude.CanFocus     = true;
     this.button_AddInclude.Name         = "button_AddInclude";
     this.button_AddInclude.UseUnderline = true;
     this.button_AddInclude.Label        = global::MonoDevelop.Core.GettextCatalog.GetString("Browse & Add");
     this.table3.Add(this.button_AddInclude);
     global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table3 [this.button_AddInclude]));
     w5.XOptions = ((global::Gtk.AttachOptions)(4));
     w5.YOptions = ((global::Gtk.AttachOptions)(4));
     this.table2.Add(this.table3);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table2 [this.table3]));
     w6.TopAttach    = ((uint)(1));
     w6.BottomAttach = ((uint)(2));
     w6.LeftAttach   = ((uint)(1));
     w6.RightAttach  = ((uint)(2));
     w6.XOptions     = ((global::Gtk.AttachOptions)(4));
     this.vbox7.Add(this.table2);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox7 [this.table2]));
     w7.Position = 0;
     this.Add(this.vbox7);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Show();
     this.button_AddInclude.Clicked += new global::System.EventHandler(this.OnButtonAddIncludeClicked);
 }
Example #44
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget Osobni_Troškovnik.UnesiTrosakWindow
     this.Name           = "Osobni_Troškovnik.UnesiTrosakWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("UnesiTrosakWindow");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Modal          = true;
     this.Resizable      = false;
     // Container child Osobni_Troškovnik.UnesiTrosakWindow.Gtk.Container+ContainerChild
     this.eventboxHome      = new global::Gtk.EventBox();
     this.eventboxHome.Name = "eventboxHome";
     // Container child eventboxHome.Gtk.Container+ContainerChild
     this.vbox14             = new global::Gtk.VBox();
     this.vbox14.Name        = "vbox14";
     this.vbox14.Spacing     = 6;
     this.vbox14.BorderWidth = ((uint)(12));
     // Container child vbox14.Gtk.Box+BoxChild
     this.table5               = new global::Gtk.Table(((uint)(4)), ((uint)(3)), false);
     this.table5.Name          = "table5";
     this.table5.RowSpacing    = ((uint)(6));
     this.table5.ColumnSpacing = ((uint)(6));
     // Container child table5.Gtk.Table+TableChild
     this.cijena = new global::Gtk.SpinButton(0D, 1E+31D, 1D);
     global::Gtk.Tooltips w1 = new Gtk.Tooltips();
     w1.SetTip(this.cijena, "Unesite cijenu troška\n", "Unesite cijenu troška\n");
     this.cijena.CanFocus = true;
     this.cijena.Name     = "cijena";
     this.cijena.Adjustment.PageIncrement = 10D;
     this.cijena.ClimbRate = 1D;
     this.cijena.Digits    = ((uint)(2));
     this.cijena.Numeric   = true;
     this.table5.Add(this.cijena);
     global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table5[this.cijena]));
     w2.TopAttach    = ((uint)(1));
     w2.BottomAttach = ((uint)(2));
     w2.LeftAttach   = ((uint)(1));
     w2.RightAttach  = ((uint)(2));
     w2.YPadding     = ((uint)(6));
     w2.XOptions     = ((global::Gtk.AttachOptions)(4));
     w2.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table5.Gtk.Table+TableChild
     this.dodajKategorijuButton = new global::Gtk.Button();
     w1.SetTip(this.dodajKategorijuButton, "Dodavanje nove kategorije", "Dodavanje nove kategorije");
     this.dodajKategorijuButton.CanFocus     = true;
     this.dodajKategorijuButton.Name         = "dodajKategorijuButton";
     this.dodajKategorijuButton.UseUnderline = true;
     global::Gtk.Image w3 = new global::Gtk.Image();
     w3.Pixbuf = global::Gdk.Pixbuf.LoadFromResource("Osobni_Troškovnik.Pics.plus.png");
     this.dodajKategorijuButton.Image = w3;
     this.table5.Add(this.dodajKategorijuButton);
     global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table5[this.dodajKategorijuButton]));
     w4.LeftAttach  = ((uint)(2));
     w4.RightAttach = ((uint)(3));
     w4.XOptions    = ((global::Gtk.AttachOptions)(4));
     w4.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table5.Gtk.Table+TableChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.opis = new global::Gtk.TextView();
     w1.SetTip(this.opis, "Kratak opis troška(pr. Kupnja mobitela IPhone 7)", "Kratak opis troška(pr. Kupnja mobitela IPhone 7)");
     this.opis.CanFocus = true;
     this.opis.Name     = "opis";
     this.GtkScrolledWindow.Add(this.opis);
     this.table5.Add(this.GtkScrolledWindow);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table5[this.GtkScrolledWindow]));
     w6.TopAttach    = ((uint)(3));
     w6.BottomAttach = ((uint)(4));
     w6.LeftAttach   = ((uint)(1));
     w6.RightAttach  = ((uint)(2));
     w6.XOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table5.Gtk.Table+TableChild
     this.kalendar = new global::Gtk.Calendar();
     w1.SetTip(this.kalendar, "Odaberite datum nastanka troška", "Odaberite datum nastanka troška");
     this.kalendar.CanFocus       = true;
     this.kalendar.Name           = "kalendar";
     this.kalendar.DisplayOptions = ((global::Gtk.CalendarDisplayOptions)(35));
     this.table5.Add(this.kalendar);
     global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table5[this.kalendar]));
     w7.TopAttach    = ((uint)(2));
     w7.BottomAttach = ((uint)(3));
     w7.LeftAttach   = ((uint)(1));
     w7.RightAttach  = ((uint)(2));
     w7.YPadding     = ((uint)(5));
     w7.XOptions     = ((global::Gtk.AttachOptions)(4));
     w7.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table5.Gtk.Table+TableChild
     this.label18           = new global::Gtk.Label();
     this.label18.Name      = "label18";
     this.label18.Xpad      = 10;
     this.label18.LabelProp = global::Mono.Unix.Catalog.GetString("Kategorija:");
     this.table5.Add(this.label18);
     global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table5[this.label18]));
     w8.XOptions = ((global::Gtk.AttachOptions)(4));
     w8.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table5.Gtk.Table+TableChild
     this.label19           = new global::Gtk.Label();
     this.label19.Name      = "label19";
     this.label19.LabelProp = global::Mono.Unix.Catalog.GetString("Cijena:      ");
     this.table5.Add(this.label19);
     global::Gtk.Table.TableChild w9 = ((global::Gtk.Table.TableChild)(this.table5[this.label19]));
     w9.TopAttach    = ((uint)(1));
     w9.BottomAttach = ((uint)(2));
     w9.XOptions     = ((global::Gtk.AttachOptions)(4));
     w9.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table5.Gtk.Table+TableChild
     this.listaKategorija      = global::Gtk.ComboBox.NewText();
     this.listaKategorija.Name = "listaKategorija";
     this.table5.Add(this.listaKategorija);
     global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table5[this.listaKategorija]));
     w10.LeftAttach  = ((uint)(1));
     w10.RightAttach = ((uint)(2));
     w10.YPadding    = ((uint)(5));
     w10.XOptions    = ((global::Gtk.AttachOptions)(4));
     w10.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table5.Gtk.Table+TableChild
     this.vbox15         = new global::Gtk.VBox();
     this.vbox15.Name    = "vbox15";
     this.vbox15.Spacing = 6;
     // Container child vbox15.Gtk.Box+BoxChild
     this.label20           = new global::Gtk.Label();
     this.label20.Name      = "label20";
     this.label20.LabelProp = global::Mono.Unix.Catalog.GetString("Datum:     ");
     this.vbox15.Add(this.label20);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox15[this.label20]));
     w11.Position = 0;
     w11.Expand   = false;
     w11.Fill     = false;
     w11.Padding  = ((uint)(8));
     this.table5.Add(this.vbox15);
     global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.table5[this.vbox15]));
     w12.TopAttach    = ((uint)(2));
     w12.BottomAttach = ((uint)(3));
     w12.XOptions     = ((global::Gtk.AttachOptions)(4));
     w12.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table5.Gtk.Table+TableChild
     this.vbox16         = new global::Gtk.VBox();
     this.vbox16.Name    = "vbox16";
     this.vbox16.Spacing = 6;
     // Container child vbox16.Gtk.Box+BoxChild
     this.label21           = new global::Gtk.Label();
     this.label21.Name      = "label21";
     this.label21.LabelProp = global::Mono.Unix.Catalog.GetString("Opis:          ");
     this.vbox16.Add(this.label21);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox16[this.label21]));
     w13.Position = 0;
     w13.Expand   = false;
     w13.Fill     = false;
     this.table5.Add(this.vbox16);
     global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table5[this.vbox16]));
     w14.TopAttach    = ((uint)(3));
     w14.BottomAttach = ((uint)(4));
     w14.XOptions     = ((global::Gtk.AttachOptions)(4));
     this.vbox14.Add(this.table5);
     global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox14[this.table5]));
     w15.Position = 0;
     // Container child vbox14.Gtk.Box+BoxChild
     this.hseparator2      = new global::Gtk.HSeparator();
     this.hseparator2.Name = "hseparator2";
     this.vbox14.Add(this.hseparator2);
     global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox14[this.hseparator2]));
     w16.Position = 1;
     w16.Expand   = false;
     w16.Fill     = false;
     // Container child vbox14.Gtk.Box+BoxChild
     this.hbox6             = new global::Gtk.HBox();
     this.hbox6.Name        = "hbox6";
     this.hbox6.Homogeneous = true;
     this.hbox6.Spacing     = 6;
     // Container child hbox6.Gtk.Box+BoxChild
     this.odustaniButton = new global::Gtk.Button();
     w1.SetTip(this.odustaniButton, "Odustani od upisivanja troška", "Odustani od upisivanja troška");
     this.odustaniButton.CanFocus     = true;
     this.odustaniButton.Name         = "odustaniButton";
     this.odustaniButton.UseUnderline = true;
     this.odustaniButton.Label        = global::Mono.Unix.Catalog.GetString("Odustani");
     this.hbox6.Add(this.odustaniButton);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.odustaniButton]));
     w17.Position = 0;
     w17.Expand   = false;
     w17.Fill     = false;
     // Container child hbox6.Gtk.Box+BoxChild
     this.spremiAndNovi = new global::Gtk.Button();
     w1.SetTip(this.spremiAndNovi, "Spremi trošak i unesi novi", "Spremi trošak i unesi novi");
     this.spremiAndNovi.CanFocus     = true;
     this.spremiAndNovi.Name         = "spremiAndNovi";
     this.spremiAndNovi.UseUnderline = true;
     this.spremiAndNovi.Label        = global::Mono.Unix.Catalog.GetString("Spremi & Novi");
     this.hbox6.Add(this.spremiAndNovi);
     global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.spremiAndNovi]));
     w18.Position = 1;
     w18.Expand   = false;
     w18.Fill     = false;
     // Container child hbox6.Gtk.Box+BoxChild
     this.spremiButton = new global::Gtk.Button();
     w1.SetTip(this.spremiButton, "Spremi trošak", "Spremi trošak");
     this.spremiButton.CanFocus     = true;
     this.spremiButton.Name         = "spremiButton";
     this.spremiButton.UseUnderline = true;
     this.spremiButton.Label        = global::Mono.Unix.Catalog.GetString("Spremi");
     this.hbox6.Add(this.spremiButton);
     global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.spremiButton]));
     w19.Position = 2;
     w19.Expand   = false;
     w19.Fill     = false;
     this.vbox14.Add(this.hbox6);
     global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.vbox14[this.hbox6]));
     w20.Position = 2;
     w20.Expand   = false;
     w20.Fill     = false;
     this.eventboxHome.Add(this.vbox14);
     this.Add(this.eventboxHome);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 380;
     this.DefaultHeight = 441;
     this.Show();
     this.DeleteEvent     += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.KeyReleaseEvent += new global::Gtk.KeyReleaseEventHandler(this.KeyPress);
     this.dodajKategorijuButton.Clicked += new global::System.EventHandler(this.novaKategorijaClicked);
     this.odustaniButton.Clicked        += new global::System.EventHandler(this.odustaniClicked);
     this.spremiAndNovi.Clicked         += new global::System.EventHandler(this.spremiAndNoviClicked);
     this.spremiButton.Clicked          += new global::System.EventHandler(this.spremiClicked);
 }
Example #45
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("XOR Generator");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.vbox2             = new global::Gtk.VBox();
     this.vbox2.Name        = "vbox2";
     this.vbox2.Spacing     = 6;
     this.vbox2.BorderWidth = ((uint)(9));
     // Container child vbox2.Gtk.Box+BoxChild
     this.vbox3         = new global::Gtk.VBox();
     this.vbox3.Name    = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("String to Confused");
     this.hbox1.Add(this.label1);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.label1]));
     w1.Position = 0;
     w1.Expand   = false;
     w1.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.txt_enc = new global::Gtk.Entry();
     global::Gtk.Tooltips w2 = new Gtk.Tooltips();
     w2.SetTip(this.txt_enc, "Input text need to XOR.", "Input text need to XOR.");
     this.txt_enc.CanFocus      = true;
     this.txt_enc.Name          = "txt_enc";
     this.txt_enc.IsEditable    = true;
     this.txt_enc.InvisibleChar = '●';
     this.hbox1.Add(this.txt_enc);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.txt_enc]));
     w3.Position = 1;
     this.vbox3.Add(this.hbox1);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.hbox1]));
     w4.Position = 0;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.hbox2         = new global::Gtk.HBox();
     this.hbox2.Name    = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("Random ASCII");
     this.hbox2.Add(this.label2);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.label2]));
     w5.Position = 0;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child hbox2.Gtk.Box+BoxChild
     this.random_ascii = new global::Gtk.SpinButton(2D, 100D, 1D);
     w2.SetTip(this.random_ascii, "Range 1-100 only. To generate ASCII(DEC) in Random.", "Range 1-100 only. To generate ASCII(DEC) in Random.");
     this.random_ascii.CanFocus = true;
     this.random_ascii.Name     = "random_ascii";
     this.random_ascii.Adjustment.PageIncrement = 10D;
     this.random_ascii.ClimbRate = 1D;
     this.random_ascii.Numeric   = true;
     this.random_ascii.Value     = 2D;
     this.hbox2.Add(this.random_ascii);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.random_ascii]));
     w6.Position = 1;
     w6.Padding  = ((uint)(29));
     // Container child hbox2.Gtk.Box+BoxChild
     this.btn_ran = new global::Gtk.Button();
     this.btn_ran.WidthRequest = 100;
     this.btn_ran.CanFocus     = true;
     this.btn_ran.Name         = "btn_ran";
     this.btn_ran.UseUnderline = true;
     this.btn_ran.Label        = global::Mono.Unix.Catalog.GetString("Random");
     this.hbox2.Add(this.btn_ran);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.btn_ran]));
     w7.Position = 2;
     w7.Expand   = false;
     w7.Fill     = false;
     this.vbox3.Add(this.hbox2);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.hbox2]));
     w8.Position = 1;
     w8.Expand   = false;
     w8.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.hbox4         = new global::Gtk.HBox();
     this.hbox4.Name    = "hbox4";
     this.hbox4.Spacing = 6;
     // Container child hbox4.Gtk.Box+BoxChild
     this.GtkScrolledWindow1            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow1.Name       = "GtkScrolledWindow1";
     this.GtkScrolledWindow1.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow1.Gtk.Container+ContainerChild
     this.treeview1          = new global::Gtk.TreeView();
     this.treeview1.CanFocus = true;
     this.treeview1.Name     = "treeview1";
     this.GtkScrolledWindow1.Add(this.treeview1);
     this.hbox4.Add(this.GtkScrolledWindow1);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.GtkScrolledWindow1]));
     w10.Position = 0;
     // Container child hbox4.Gtk.Box+BoxChild
     this.vbox4         = new global::Gtk.VBox();
     this.vbox4.Name    = "vbox4";
     this.vbox4.Spacing = 6;
     // Container child vbox4.Gtk.Box+BoxChild
     this.del_lst_btn              = new global::Gtk.Button();
     this.del_lst_btn.CanFocus     = true;
     this.del_lst_btn.Name         = "del_lst_btn";
     this.del_lst_btn.UseUnderline = true;
     this.del_lst_btn.Label        = global::Mono.Unix.Catalog.GetString("Delete");
     this.vbox4.Add(this.del_lst_btn);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.del_lst_btn]));
     w11.Position = 1;
     w11.Expand   = false;
     w11.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.clear_btn = new global::Gtk.Button();
     this.clear_btn.WidthRequest = 100;
     this.clear_btn.CanFocus     = true;
     this.clear_btn.Name         = "clear_btn";
     this.clear_btn.UseUnderline = true;
     this.clear_btn.Label        = global::Mono.Unix.Catalog.GetString("Clear All");
     this.vbox4.Add(this.clear_btn);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.clear_btn]));
     w12.Position = 2;
     w12.Expand   = false;
     w12.Fill     = false;
     this.hbox4.Add(this.vbox4);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.vbox4]));
     w13.Position = 1;
     w13.Expand   = false;
     w13.Fill     = false;
     this.vbox3.Add(this.hbox4);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.hbox4]));
     w14.Position = 2;
     this.vbox2.Add(this.vbox3);
     global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.vbox3]));
     w15.Position = 0;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox3         = new global::Gtk.HBox();
     this.hbox3.Name    = "hbox3";
     this.hbox3.Spacing = 6;
     // Container child hbox3.Gtk.Box+BoxChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("XOR Confuseded (ASCII DEC)");
     this.hbox3.Add(this.label3);
     global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.label3]));
     w16.Position = 0;
     w16.Expand   = false;
     w16.Fill     = false;
     // Container child hbox3.Gtk.Box+BoxChild
     this.txt_xor_string               = new global::Gtk.Entry();
     this.txt_xor_string.CanFocus      = true;
     this.txt_xor_string.Name          = "txt_xor_string";
     this.txt_xor_string.IsEditable    = true;
     this.txt_xor_string.InvisibleChar = '●';
     this.hbox3.Add(this.txt_xor_string);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.txt_xor_string]));
     w17.Position = 1;
     // Container child hbox3.Gtk.Box+BoxChild
     this.btn_gen = new global::Gtk.Button();
     this.btn_gen.WidthRequest = 100;
     this.btn_gen.CanFocus     = true;
     this.btn_gen.Name         = "btn_gen";
     this.btn_gen.UseUnderline = true;
     this.btn_gen.Label        = global::Mono.Unix.Catalog.GetString("Generate");
     this.hbox3.Add(this.btn_gen);
     global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.btn_gen]));
     w18.Position = 2;
     w18.Expand   = false;
     w18.Fill     = false;
     this.vbox2.Add(this.hbox3);
     global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hbox3]));
     w19.Position = 1;
     w19.Expand   = false;
     w19.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.Xalign    = 0F;
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("Code for decode:");
     this.vbox1.Add(this.label4);
     global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.label4]));
     w20.Position = 0;
     w20.Expand   = false;
     w20.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.code_dec          = new global::Gtk.TextView();
     this.code_dec.CanFocus = true;
     this.code_dec.Name     = "code_dec";
     this.code_dec.Editable = false;
     this.GtkScrolledWindow.Add(this.code_dec);
     this.vbox1.Add(this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.GtkScrolledWindow]));
     w22.Position = 1;
     this.vbox2.Add(this.vbox1);
     global::Gtk.Box.BoxChild w23 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.vbox1]));
     w23.PackType = ((global::Gtk.PackType)(1));
     w23.Position = 2;
     this.Add(this.vbox2);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 637;
     this.DefaultHeight = 467;
     this.Show();
     this.DeleteEvent            += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.random_ascii.Activated += new global::System.EventHandler(this.press_enter_to_input);
     this.btn_ran.Clicked        += new global::System.EventHandler(this.onClickRandom);
     this.del_lst_btn.Clicked    += new global::System.EventHandler(this.Delete_Select);
     this.clear_btn.Clicked      += new global::System.EventHandler(this.clear_all_list);
     this.btn_gen.Clicked        += new global::System.EventHandler(this.generate_xor);
 }
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget PinDominator.frmAddAccounts
			this.WidthRequest = 425;
			this.Name = "PinDominator.frmAddAccounts";
			this.Title = global::Mono.Unix.Catalog.GetString ("Add Accounts");
			this.WindowPosition = ((global::Gtk.WindowPosition)(1));
			this.Resizable = false;
			// Container child PinDominator.frmAddAccounts.Gtk.Container+ContainerChild
			this.fixed1 = new global::Gtk.Fixed ();
			this.fixed1.WidthRequest = 420;
			this.fixed1.HeightRequest = 250;
			this.fixed1.Name = "fixed1";
			this.fixed1.HasWindow = false;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.label5 = new global::Gtk.Label ();
			this.label5.Name = "label5";
			this.label5.LabelProp = global::Mono.Unix.Catalog.GetString (" ");
			this.fixed1.Add (this.label5);
			global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label5]));
			w1.X = 67;
			w1.Y = 169;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.hbuttonbox1 = new global::Gtk.HButtonBox ();
			this.hbuttonbox1.Name = "hbuttonbox1";
			this.fixed1.Add (this.hbuttonbox1);
			global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.hbuttonbox1]));
			w2.X = 64;
			w2.Y = 240;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.label2 = new global::Gtk.Label ();
			this.label2.Name = "label2";
			this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("Email  : ");
			this.fixed1.Add (this.label2);
			global::Gtk.Fixed.FixedChild w3 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label2]));
			w3.X = 49;
			w3.Y = 45;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.txtInputUserName = new global::Gtk.Entry ();
			this.txtInputUserName.WidthRequest = 200;
			this.txtInputUserName.CanFocus = true;
			this.txtInputUserName.Name = "txtInputUserName";
			this.txtInputUserName.IsEditable = true;
			this.txtInputUserName.InvisibleChar = '●';
			this.fixed1.Add (this.txtInputUserName);
			global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.txtInputUserName]));
			w4.X = 139;
			w4.Y = 39;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.label3 = new global::Gtk.Label ();
			this.label3.Name = "label3";
			this.label3.LabelProp = global::Mono.Unix.Catalog.GetString ("Password  : "******"txtInputPassword";
			this.txtInputPassword.IsEditable = true;
			this.txtInputPassword.InvisibleChar = '●';
			this.fixed1.Add (this.txtInputPassword);
			global::Gtk.Fixed.FixedChild w6 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.txtInputPassword]));
			w6.X = 139;
			w6.Y = 81;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.btnClearAccounts = new global::Gtk.Button ();
			this.btnClearAccounts.CanFocus = true;
			this.btnClearAccounts.Name = "btnClearAccounts";
			this.btnClearAccounts.UseUnderline = true;
			this.btnClearAccounts.Label = global::Mono.Unix.Catalog.GetString ("Clear Account ");
			this.fixed1.Add (this.btnClearAccounts);
			global::Gtk.Fixed.FixedChild w7 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.btnClearAccounts]));
			w7.X = 251;
			w7.Y = 204;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.btnAddAccounts = new global::Gtk.Button ();
			this.btnAddAccounts.CanFocus = true;
			this.btnAddAccounts.Name = "btnAddAccounts";
			this.btnAddAccounts.UseUnderline = true;
			this.btnAddAccounts.Label = global::Mono.Unix.Catalog.GetString ("Add Account ");
			this.fixed1.Add (this.btnAddAccounts);
			global::Gtk.Fixed.FixedChild w8 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.btnAddAccounts]));
			w8.X = 140;
			w8.Y = 204;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.txtInputProxy = new global::Gtk.Entry ();
			global::Gtk.Tooltips w9 = new Gtk.Tooltips ();
			w9.SetTip (this.txtInputProxy, "Formate -> ProxyIp   : ProxyPort   : ProxyUserName  :  ProxyPassword", "Formate -> ProxyIp   : ProxyPort   : ProxyUserName  :  ProxyPassword");
			this.txtInputProxy.WidthRequest = 200;
			this.txtInputProxy.CanFocus = true;
			this.txtInputProxy.Name = "txtInputProxy";
			this.txtInputProxy.IsEditable = true;
			this.txtInputProxy.InvisibleChar = '●';
			this.fixed1.Add (this.txtInputProxy);
			global::Gtk.Fixed.FixedChild w10 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.txtInputProxy]));
			w10.X = 140;
			w10.Y = 159;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.label4 = new global::Gtk.Label ();
			this.label4.Name = "label4";
			this.label4.LabelProp = global::Mono.Unix.Catalog.GetString ("Proxy  : ");
			this.fixed1.Add (this.label4);
			global::Gtk.Fixed.FixedChild w11 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label4]));
			w11.X = 49;
			w11.Y = 163;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.label1 = new global::Gtk.Label ();
			this.label1.Name = "label1";
			this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("Niche :");
			this.fixed1.Add (this.label1);
			global::Gtk.Fixed.FixedChild w12 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label1]));
			w12.X = 50;
			w12.Y = 126;
			// Container child fixed1.Gtk.Fixed+FixedChild
			this.txtInputNiche = new global::Gtk.Entry ();
			this.txtInputNiche.WidthRequest = 200;
			this.txtInputNiche.CanFocus = true;
			this.txtInputNiche.Name = "txtInputNiche";
			this.txtInputNiche.IsEditable = true;
			this.txtInputNiche.InvisibleChar = '●';
			this.fixed1.Add (this.txtInputNiche);
			global::Gtk.Fixed.FixedChild w13 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.txtInputNiche]));
			w13.X = 139;
			w13.Y = 119;
			this.Add (this.fixed1);
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.DefaultWidth = 425;
			this.DefaultHeight = 321;
			this.Show ();
			this.btnClearAccounts.Clicked += new global::System.EventHandler (this.OnBtnClearAccountsClicked);
			this.btnAddAccounts.Clicked += new global::System.EventHandler (this.OnBtnAddAccountsClicked);
		}
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.WidthRequest   = 242;
     this.HeightRequest  = 147;
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("Landnite");
     this.WindowPosition = ((global::Gtk.WindowPosition)(3));
     this.Resizable      = false;
     this.DefaultWidth   = 237;
     this.DefaultHeight  = 138;
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.fixed1           = new global::Gtk.Fixed();
     this.fixed1.Name      = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.playButton = new global::Gtk.Button();
     global::Gtk.Tooltips w1 = new Gtk.Tooltips();
     w1.SetTip(this.playButton, "Play Landnite.", "Play Landnite.");
     this.playButton.WidthRequest  = 185;
     this.playButton.HeightRequest = 60;
     this.playButton.CanFocus      = true;
     this.playButton.Name          = "playButton";
     this.playButton.UseUnderline  = true;
     this.playButton.Label         = global::Mono.Unix.Catalog.GetString("PLAY");
     this.fixed1.Add(this.playButton);
     global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.playButton]));
     w2.X = 29;
     w2.Y = 29;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.aboutButton = new global::Gtk.Button();
     w1.SetTip(this.aboutButton, "About Landnite Launcher.", "About Landnite Launcher.");
     this.aboutButton.WidthRequest = 50;
     this.aboutButton.CanFocus     = true;
     this.aboutButton.Name         = "aboutButton";
     this.aboutButton.UseUnderline = true;
     this.aboutButton.Label        = global::Mono.Unix.Catalog.GetString("About");
     this.fixed1.Add(this.aboutButton);
     global::Gtk.Fixed.FixedChild w3 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.aboutButton]));
     w3.X = 165;
     w3.Y = 103;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.changeDirectoryButton = new global::Gtk.Button();
     w1.SetTip(this.changeDirectoryButton, "Change where the program searches for your game incase you have it installed else" +
               "where.", "Change where the program searches for your game incase you have it installed else" +
               "where.");
     this.changeDirectoryButton.WidthRequest  = 120;
     this.changeDirectoryButton.HeightRequest = 0;
     this.changeDirectoryButton.CanFocus      = true;
     this.changeDirectoryButton.Name          = "changeDirectoryButton";
     this.changeDirectoryButton.UseUnderline  = true;
     this.changeDirectoryButton.Label         = global::Mono.Unix.Catalog.GetString("Change Directory");
     this.fixed1.Add(this.changeDirectoryButton);
     global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.changeDirectoryButton]));
     w4.X = 29;
     w4.Y = 103;
     this.Add(this.fixed1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Show();
     this.DeleteEvent                   += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.playButton.Clicked            += new global::System.EventHandler(this.playButtonClicked);
     this.aboutButton.Clicked           += new global::System.EventHandler(this.aboutButtonClicked);
     this.changeDirectoryButton.Clicked += new global::System.EventHandler(this.changeDirectoryClicked);
 }
Example #48
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget Simoutorder.CacheForm
     this.Name           = "Simoutorder.CacheForm";
     this.Title          = global::Mono.Unix.Catalog.GetString("Cache Parameters");
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     // Container child Simoutorder.CacheForm.Gtk.Container+ContainerChild
     this.fixed1           = new global::Gtk.Fixed();
     this.fixed1.Name      = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("Parametrii simulatorului de cache-uri:");
     this.fixed1.Add(this.label1);
     global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label1]));
     w1.X = 8;
     w1.Y = 6;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("Cache:Dl1");
     this.fixed1.Add(this.label2);
     global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label2]));
     w2.X = 13;
     w2.Y = 32;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.SaveButton              = new global::Gtk.Button();
     this.SaveButton.CanFocus     = true;
     this.SaveButton.Name         = "SaveButton";
     this.SaveButton.UseUnderline = true;
     this.SaveButton.Label        = global::Mono.Unix.Catalog.GetString("Salveaza");
     this.fixed1.Add(this.SaveButton);
     global::Gtk.Fixed.FixedChild w3 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.SaveButton]));
     w3.X = 733;
     w3.Y = 452;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label10 = new global::Gtk.Label();
     global::Gtk.Tooltips w4 = new Gtk.Tooltips();
     w4.SetTip(this.label10, "numele cache-ului, trebuie sa fie unic", "numele cache-ului, trebuie sa fie unic");
     this.label10.Name      = "label10";
     this.label10.LabelProp = global::Mono.Unix.Catalog.GetString("<name>");
     this.fixed1.Add(this.label10);
     global::Gtk.Fixed.FixedChild w5 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label10]));
     w5.X = 25;
     w5.Y = 60;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label11 = new global::Gtk.Label();
     w4.SetTip(this.label11, "numarul de seturi din cache", "numarul de seturi din cache");
     this.label11.Name      = "label11";
     this.label11.LabelProp = global::Mono.Unix.Catalog.GetString("<nsets>");
     this.fixed1.Add(this.label11);
     global::Gtk.Fixed.FixedChild w6 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label11]));
     w6.X = 25;
     w6.Y = 89;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label12 = new global::Gtk.Label();
     w4.SetTip(this.label12, "dimensiunea blocului", "dimensiunea blocului");
     this.label12.Name      = "label12";
     this.label12.LabelProp = global::Mono.Unix.Catalog.GetString("<bsize>");
     this.fixed1.Add(this.label12);
     global::Gtk.Fixed.FixedChild w7 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label12]));
     w7.X = 25;
     w7.Y = 119;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheDl1TextBox            = new global::Gtk.Entry();
     this.CacheDl1TextBox.CanFocus   = true;
     this.CacheDl1TextBox.Name       = "CacheDl1TextBox";
     this.CacheDl1TextBox.Text       = global::Mono.Unix.Catalog.GetString("dl1");
     this.CacheDl1TextBox.IsEditable = true;
     this.fixed1.Add(this.CacheDl1TextBox);
     global::Gtk.Fixed.FixedChild w8 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheDl1TextBox]));
     w8.X = 90;
     w8.Y = 55;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheDl1NsetsTextBox            = new global::Gtk.Entry();
     this.CacheDl1NsetsTextBox.CanFocus   = true;
     this.CacheDl1NsetsTextBox.Name       = "CacheDl1NsetsTextBox";
     this.CacheDl1NsetsTextBox.Text       = global::Mono.Unix.Catalog.GetString("256");
     this.CacheDl1NsetsTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheDl1NsetsTextBox);
     global::Gtk.Fixed.FixedChild w9 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheDl1NsetsTextBox]));
     w9.X = 90;
     w9.Y = 86;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheDl1BsizeTextBox            = new global::Gtk.Entry();
     this.CacheDl1BsizeTextBox.CanFocus   = true;
     this.CacheDl1BsizeTextBox.Name       = "CacheDl1BsizeTextBox";
     this.CacheDl1BsizeTextBox.Text       = global::Mono.Unix.Catalog.GetString("32");
     this.CacheDl1BsizeTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheDl1BsizeTextBox);
     global::Gtk.Fixed.FixedChild w10 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheDl1BsizeTextBox]));
     w10.X = 90;
     w10.Y = 116;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheDl1AssocTextBox            = new global::Gtk.Entry();
     this.CacheDl1AssocTextBox.CanFocus   = true;
     this.CacheDl1AssocTextBox.Name       = "CacheDl1AssocTextBox";
     this.CacheDl1AssocTextBox.Text       = global::Mono.Unix.Catalog.GetString("1");
     this.CacheDl1AssocTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheDl1AssocTextBox);
     global::Gtk.Fixed.FixedChild w11 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheDl1AssocTextBox]));
     w11.X = 90;
     w11.Y = 149;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label13 = new global::Gtk.Label();
     w4.SetTip(this.label13, "asociativitatea cache-ului (putere a lui 2)", "asociativitatea cache-ului (putere a lui 2)");
     this.label13.Name      = "label13";
     this.label13.LabelProp = global::Mono.Unix.Catalog.GetString("<assoc>");
     this.fixed1.Add(this.label13);
     global::Gtk.Fixed.FixedChild w12 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label13]));
     w12.X = 25;
     w12.Y = 150;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheDl1ReplTextBox            = new global::Gtk.Entry();
     this.CacheDl1ReplTextBox.CanFocus   = true;
     this.CacheDl1ReplTextBox.Name       = "CacheDl1ReplTextBox";
     this.CacheDl1ReplTextBox.Text       = global::Mono.Unix.Catalog.GetString("l");
     this.CacheDl1ReplTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheDl1ReplTextBox);
     global::Gtk.Fixed.FixedChild w13 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheDl1ReplTextBox]));
     w13.X = 90;
     w13.Y = 181;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label14 = new global::Gtk.Label();
     w4.SetTip(this.label14, "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random", "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random");
     this.label14.Name      = "label14";
     this.label14.LabelProp = global::Mono.Unix.Catalog.GetString("<repl>");
     this.fixed1.Add(this.label14);
     global::Gtk.Fixed.FixedChild w14 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label14]));
     w14.X = 26;
     w14.Y = 183;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("Cache:Il1");
     this.fixed1.Add(this.label4);
     global::Gtk.Fixed.FixedChild w15 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label4]));
     w15.X = 282;
     w15.Y = 31;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label15 = new global::Gtk.Label();
     w4.SetTip(this.label15, "numele cache-ului, trebuie sa fie unic", "numele cache-ului, trebuie sa fie unic");
     this.label15.Name      = "label15";
     this.label15.LabelProp = global::Mono.Unix.Catalog.GetString("<name>");
     this.fixed1.Add(this.label15);
     global::Gtk.Fixed.FixedChild w16 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label15]));
     w16.X = 299;
     w16.Y = 58;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label16 = new global::Gtk.Label();
     w4.SetTip(this.label16, "numarul de seturi din cache", "numarul de seturi din cache");
     this.label16.Name      = "label16";
     this.label16.LabelProp = global::Mono.Unix.Catalog.GetString("<nsets>");
     this.fixed1.Add(this.label16);
     global::Gtk.Fixed.FixedChild w17 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label16]));
     w17.X = 299;
     w17.Y = 87;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label17 = new global::Gtk.Label();
     w4.SetTip(this.label17, "dimensiunea blocului", "dimensiunea blocului");
     this.label17.Name      = "label17";
     this.label17.LabelProp = global::Mono.Unix.Catalog.GetString("<bsize>");
     this.fixed1.Add(this.label17);
     global::Gtk.Fixed.FixedChild w18 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label17]));
     w18.X = 299;
     w18.Y = 117;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label18 = new global::Gtk.Label();
     w4.SetTip(this.label18, "asociativitatea cache-ului (putere a lui 2)", "asociativitatea cache-ului (putere a lui 2)");
     this.label18.Name      = "label18";
     this.label18.LabelProp = global::Mono.Unix.Catalog.GetString("<assoc>");
     this.fixed1.Add(this.label18);
     global::Gtk.Fixed.FixedChild w19 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label18]));
     w19.X = 299;
     w19.Y = 150;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label19 = new global::Gtk.Label();
     w4.SetTip(this.label19, "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random", "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random");
     this.label19.Name      = "label19";
     this.label19.LabelProp = global::Mono.Unix.Catalog.GetString("<repl>");
     this.fixed1.Add(this.label19);
     global::Gtk.Fixed.FixedChild w20 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label19]));
     w20.X = 300;
     w20.Y = 181;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIl1TextBox            = new global::Gtk.Entry();
     this.CacheIl1TextBox.CanFocus   = true;
     this.CacheIl1TextBox.Name       = "CacheIl1TextBox";
     this.CacheIl1TextBox.Text       = global::Mono.Unix.Catalog.GetString("il1");
     this.CacheIl1TextBox.IsEditable = true;
     this.fixed1.Add(this.CacheIl1TextBox);
     global::Gtk.Fixed.FixedChild w21 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIl1TextBox]));
     w21.X = 365;
     w21.Y = 54;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIl1NsetsTextBox            = new global::Gtk.Entry();
     this.CacheIl1NsetsTextBox.CanFocus   = true;
     this.CacheIl1NsetsTextBox.Name       = "CacheIl1NsetsTextBox";
     this.CacheIl1NsetsTextBox.Text       = global::Mono.Unix.Catalog.GetString("256");
     this.CacheIl1NsetsTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheIl1NsetsTextBox);
     global::Gtk.Fixed.FixedChild w22 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIl1NsetsTextBox]));
     w22.X = 365;
     w22.Y = 84;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIl1ReplTextBox            = new global::Gtk.Entry();
     this.CacheIl1ReplTextBox.CanFocus   = true;
     this.CacheIl1ReplTextBox.Name       = "CacheIl1ReplTextBox";
     this.CacheIl1ReplTextBox.Text       = global::Mono.Unix.Catalog.GetString("l");
     this.CacheIl1ReplTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheIl1ReplTextBox);
     global::Gtk.Fixed.FixedChild w23 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIl1ReplTextBox]));
     w23.X = 364;
     w23.Y = 180;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIl1AssocTextBox            = new global::Gtk.Entry();
     this.CacheIl1AssocTextBox.CanFocus   = true;
     this.CacheIl1AssocTextBox.Name       = "CacheIl1AssocTextBox";
     this.CacheIl1AssocTextBox.Text       = global::Mono.Unix.Catalog.GetString("1");
     this.CacheIl1AssocTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheIl1AssocTextBox);
     global::Gtk.Fixed.FixedChild w24 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIl1AssocTextBox]));
     w24.X = 364;
     w24.Y = 150;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIl1BsizeTextBox            = new global::Gtk.Entry();
     this.CacheIl1BsizeTextBox.CanFocus   = true;
     this.CacheIl1BsizeTextBox.Name       = "CacheIl1BsizeTextBox";
     this.CacheIl1BsizeTextBox.Text       = global::Mono.Unix.Catalog.GetString("32");
     this.CacheIl1BsizeTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheIl1BsizeTextBox);
     global::Gtk.Fixed.FixedChild w25 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIl1BsizeTextBox]));
     w25.X = 364;
     w25.Y = 118;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheTlbDataTextBox            = new global::Gtk.Entry();
     this.CacheTlbDataTextBox.CanFocus   = true;
     this.CacheTlbDataTextBox.Name       = "CacheTlbDataTextBox";
     this.CacheTlbDataTextBox.Text       = global::Mono.Unix.Catalog.GetString("dtlb");
     this.CacheTlbDataTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheTlbDataTextBox);
     global::Gtk.Fixed.FixedChild w26 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheTlbDataTextBox]));
     w26.X = 639;
     w26.Y = 54;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheTlbDataNsetsTextBox            = new global::Gtk.Entry();
     this.CacheTlbDataNsetsTextBox.CanFocus   = true;
     this.CacheTlbDataNsetsTextBox.Name       = "CacheTlbDataNsetsTextBox";
     this.CacheTlbDataNsetsTextBox.Text       = global::Mono.Unix.Catalog.GetString("32");
     this.CacheTlbDataNsetsTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheTlbDataNsetsTextBox);
     global::Gtk.Fixed.FixedChild w27 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheTlbDataNsetsTextBox]));
     w27.X = 639;
     w27.Y = 86;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheTlbDataBsizeTextBox            = new global::Gtk.Entry();
     this.CacheTlbDataBsizeTextBox.CanFocus   = true;
     this.CacheTlbDataBsizeTextBox.Name       = "CacheTlbDataBsizeTextBox";
     this.CacheTlbDataBsizeTextBox.Text       = global::Mono.Unix.Catalog.GetString("4096");
     this.CacheTlbDataBsizeTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheTlbDataBsizeTextBox);
     global::Gtk.Fixed.FixedChild w28 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheTlbDataBsizeTextBox]));
     w28.X = 639;
     w28.Y = 118;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheTlbDataAssocTextBox            = new global::Gtk.Entry();
     this.CacheTlbDataAssocTextBox.CanFocus   = true;
     this.CacheTlbDataAssocTextBox.Name       = "CacheTlbDataAssocTextBox";
     this.CacheTlbDataAssocTextBox.Text       = global::Mono.Unix.Catalog.GetString("4");
     this.CacheTlbDataAssocTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheTlbDataAssocTextBox);
     global::Gtk.Fixed.FixedChild w29 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheTlbDataAssocTextBox]));
     w29.X = 639;
     w29.Y = 149;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheTlbDataReplTextBox            = new global::Gtk.Entry();
     this.CacheTlbDataReplTextBox.CanFocus   = true;
     this.CacheTlbDataReplTextBox.Name       = "CacheTlbDataReplTextBox";
     this.CacheTlbDataReplTextBox.Text       = global::Mono.Unix.Catalog.GetString("l");
     this.CacheTlbDataReplTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheTlbDataReplTextBox);
     global::Gtk.Fixed.FixedChild w30 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheTlbDataReplTextBox]));
     w30.X = 639;
     w30.Y = 180;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label24 = new global::Gtk.Label();
     w4.SetTip(this.label24, "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random", "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random");
     this.label24.Name      = "label24";
     this.label24.LabelProp = global::Mono.Unix.Catalog.GetString("<repl>");
     this.fixed1.Add(this.label24);
     global::Gtk.Fixed.FixedChild w31 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label24]));
     w31.X = 570;
     w31.Y = 181;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label23 = new global::Gtk.Label();
     w4.SetTip(this.label23, "asociativitatea cache-ului (putere a lui 2)", "asociativitatea cache-ului (putere a lui 2)");
     this.label23.Name      = "label23";
     this.label23.LabelProp = global::Mono.Unix.Catalog.GetString("<assoc>");
     this.fixed1.Add(this.label23);
     global::Gtk.Fixed.FixedChild w32 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label23]));
     w32.X = 570;
     w32.Y = 152;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label22 = new global::Gtk.Label();
     w4.SetTip(this.label22, "dimensiunea blocului", "dimensiunea blocului");
     this.label22.Name      = "label22";
     this.label22.LabelProp = global::Mono.Unix.Catalog.GetString("<bsize>");
     this.fixed1.Add(this.label22);
     global::Gtk.Fixed.FixedChild w33 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label22]));
     w33.X = 570;
     w33.Y = 121;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label21 = new global::Gtk.Label();
     w4.SetTip(this.label21, "numarul de seturi din cache", "numarul de seturi din cache");
     this.label21.Name      = "label21";
     this.label21.LabelProp = global::Mono.Unix.Catalog.GetString("<nsets>");
     this.fixed1.Add(this.label21);
     global::Gtk.Fixed.FixedChild w34 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label21]));
     w34.X = 570;
     w34.Y = 89;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label6           = new global::Gtk.Label();
     this.label6.Name      = "label6";
     this.label6.LabelProp = global::Mono.Unix.Catalog.GetString("Tlb:Dtlb");
     this.fixed1.Add(this.label6);
     global::Gtk.Fixed.FixedChild w35 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label6]));
     w35.X = 555;
     w35.Y = 29;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label20 = new global::Gtk.Label();
     w4.SetTip(this.label20, "numele cache-ului, trebuie sa fie unic", "numele cache-ului, trebuie sa fie unic");
     this.label20.Name      = "label20";
     this.label20.LabelProp = global::Mono.Unix.Catalog.GetString("<name>");
     this.fixed1.Add(this.label20);
     global::Gtk.Fixed.FixedChild w36 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label20]));
     w36.X = 571;
     w36.Y = 58;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("Cache:Dl2");
     this.fixed1.Add(this.label3);
     global::Gtk.Fixed.FixedChild w37 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label3]));
     w37.X = 14;
     w37.Y = 223;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label5           = new global::Gtk.Label();
     this.label5.Name      = "label5";
     this.label5.LabelProp = global::Mono.Unix.Catalog.GetString("Cache:Il2");
     this.fixed1.Add(this.label5);
     global::Gtk.Fixed.FixedChild w38 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label5]));
     w38.X = 283;
     w38.Y = 219;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label7           = new global::Gtk.Label();
     this.label7.Name      = "label7";
     this.label7.LabelProp = global::Mono.Unix.Catalog.GetString("Tlb:Itlb");
     this.fixed1.Add(this.label7);
     global::Gtk.Fixed.FixedChild w39 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label7]));
     w39.X = 557;
     w39.Y = 218;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheDl2TextBox            = new global::Gtk.Entry();
     this.CacheDl2TextBox.CanFocus   = true;
     this.CacheDl2TextBox.Name       = "CacheDl2TextBox";
     this.CacheDl2TextBox.Text       = global::Mono.Unix.Catalog.GetString("dl2");
     this.CacheDl2TextBox.IsEditable = true;
     this.fixed1.Add(this.CacheDl2TextBox);
     global::Gtk.Fixed.FixedChild w40 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheDl2TextBox]));
     w40.X = 90;
     w40.Y = 244;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIl2TextBox            = new global::Gtk.Entry();
     this.CacheIl2TextBox.CanFocus   = true;
     this.CacheIl2TextBox.Name       = "CacheIl2TextBox";
     this.CacheIl2TextBox.Text       = global::Mono.Unix.Catalog.GetString("il2");
     this.CacheIl2TextBox.IsEditable = true;
     this.fixed1.Add(this.CacheIl2TextBox);
     global::Gtk.Fixed.FixedChild w41 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIl2TextBox]));
     w41.X = 364;
     w41.Y = 244;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheTlbInstructionTextBox            = new global::Gtk.Entry();
     this.CacheTlbInstructionTextBox.CanFocus   = true;
     this.CacheTlbInstructionTextBox.Name       = "CacheTlbInstructionTextBox";
     this.CacheTlbInstructionTextBox.Text       = global::Mono.Unix.Catalog.GetString("itlb");
     this.CacheTlbInstructionTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheTlbInstructionTextBox);
     global::Gtk.Fixed.FixedChild w42 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheTlbInstructionTextBox]));
     w42.X = 639;
     w42.Y = 244;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label9           = new global::Gtk.Label();
     this.label9.Name      = "label9";
     this.label9.LabelProp = global::Mono.Unix.Catalog.GetString("Icompress");
     this.fixed1.Add(this.label9);
     global::Gtk.Fixed.FixedChild w43 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label9]));
     w43.X = 22;
     w43.Y = 454;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIcompressCheckBox               = new global::Gtk.CheckButton();
     this.CacheIcompressCheckBox.CanFocus      = true;
     this.CacheIcompressCheckBox.Name          = "CacheIcompressCheckBox";
     this.CacheIcompressCheckBox.Label         = global::Mono.Unix.Catalog.GetString("Activate");
     this.CacheIcompressCheckBox.DrawIndicator = true;
     this.CacheIcompressCheckBox.UseUnderline  = true;
     this.fixed1.Add(this.CacheIcompressCheckBox);
     global::Gtk.Fixed.FixedChild w44 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIcompressCheckBox]));
     w44.X = 121;
     w44.Y = 451;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label8           = new global::Gtk.Label();
     this.label8.Name      = "label8";
     this.label8.LabelProp = global::Mono.Unix.Catalog.GetString("Flush");
     this.fixed1.Add(this.label8);
     global::Gtk.Fixed.FixedChild w45 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label8]));
     w45.X = 22;
     w45.Y = 423;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheFlushCheckBox               = new global::Gtk.CheckButton();
     this.CacheFlushCheckBox.CanFocus      = true;
     this.CacheFlushCheckBox.Name          = "CacheFlushCheckBox";
     this.CacheFlushCheckBox.Label         = global::Mono.Unix.Catalog.GetString("Activate");
     this.CacheFlushCheckBox.DrawIndicator = true;
     this.CacheFlushCheckBox.UseUnderline  = true;
     this.fixed1.Add(this.CacheFlushCheckBox);
     global::Gtk.Fixed.FixedChild w46 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheFlushCheckBox]));
     w46.X = 121;
     w46.Y = 418;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label25 = new global::Gtk.Label();
     w4.SetTip(this.label25, "numele cache-ului, trebuie sa fie unic", "numele cache-ului, trebuie sa fie unic");
     this.label25.Name      = "label25";
     this.label25.LabelProp = global::Mono.Unix.Catalog.GetString("<name>");
     this.fixed1.Add(this.label25);
     global::Gtk.Fixed.FixedChild w47 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label25]));
     w47.X = 27;
     w47.Y = 246;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheDl2NsetsTextBox            = new global::Gtk.Entry();
     this.CacheDl2NsetsTextBox.CanFocus   = true;
     this.CacheDl2NsetsTextBox.Name       = "CacheDl2NsetsTextBox";
     this.CacheDl2NsetsTextBox.Text       = global::Mono.Unix.Catalog.GetString("256");
     this.CacheDl2NsetsTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheDl2NsetsTextBox);
     global::Gtk.Fixed.FixedChild w48 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheDl2NsetsTextBox]));
     w48.X = 90;
     w48.Y = 274;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheDl2BsizeTextBox            = new global::Gtk.Entry();
     this.CacheDl2BsizeTextBox.CanFocus   = true;
     this.CacheDl2BsizeTextBox.Name       = "CacheDl2BsizeTextBox";
     this.CacheDl2BsizeTextBox.Text       = global::Mono.Unix.Catalog.GetString("32");
     this.CacheDl2BsizeTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheDl2BsizeTextBox);
     global::Gtk.Fixed.FixedChild w49 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheDl2BsizeTextBox]));
     w49.X = 90;
     w49.Y = 304;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheDl2AssocTextBox            = new global::Gtk.Entry();
     this.CacheDl2AssocTextBox.CanFocus   = true;
     this.CacheDl2AssocTextBox.Name       = "CacheDl2AssocTextBox";
     this.CacheDl2AssocTextBox.Text       = global::Mono.Unix.Catalog.GetString("1");
     this.CacheDl2AssocTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheDl2AssocTextBox);
     global::Gtk.Fixed.FixedChild w50 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheDl2AssocTextBox]));
     w50.X = 90;
     w50.Y = 335;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheDl2ReplTextBox            = new global::Gtk.Entry();
     this.CacheDl2ReplTextBox.CanFocus   = true;
     this.CacheDl2ReplTextBox.Name       = "CacheDl2ReplTextBox";
     this.CacheDl2ReplTextBox.Text       = global::Mono.Unix.Catalog.GetString("l");
     this.CacheDl2ReplTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheDl2ReplTextBox);
     global::Gtk.Fixed.FixedChild w51 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheDl2ReplTextBox]));
     w51.X = 90;
     w51.Y = 367;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIl2NsetsTextBox            = new global::Gtk.Entry();
     this.CacheIl2NsetsTextBox.CanFocus   = true;
     this.CacheIl2NsetsTextBox.Name       = "CacheIl2NsetsTextBox";
     this.CacheIl2NsetsTextBox.Text       = global::Mono.Unix.Catalog.GetString("256");
     this.CacheIl2NsetsTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheIl2NsetsTextBox);
     global::Gtk.Fixed.FixedChild w52 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIl2NsetsTextBox]));
     w52.X = 364;
     w52.Y = 274;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIl2BsizeTextBox            = new global::Gtk.Entry();
     this.CacheIl2BsizeTextBox.CanFocus   = true;
     this.CacheIl2BsizeTextBox.Name       = "CacheIl2BsizeTextBox";
     this.CacheIl2BsizeTextBox.Text       = global::Mono.Unix.Catalog.GetString("32");
     this.CacheIl2BsizeTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheIl2BsizeTextBox);
     global::Gtk.Fixed.FixedChild w53 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIl2BsizeTextBox]));
     w53.X = 364;
     w53.Y = 304;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIl2AssocTextBox            = new global::Gtk.Entry();
     this.CacheIl2AssocTextBox.CanFocus   = true;
     this.CacheIl2AssocTextBox.Name       = "CacheIl2AssocTextBox";
     this.CacheIl2AssocTextBox.Text       = global::Mono.Unix.Catalog.GetString("1");
     this.CacheIl2AssocTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheIl2AssocTextBox);
     global::Gtk.Fixed.FixedChild w54 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIl2AssocTextBox]));
     w54.X = 364;
     w54.Y = 334;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheIl2ReplTextBox            = new global::Gtk.Entry();
     this.CacheIl2ReplTextBox.CanFocus   = true;
     this.CacheIl2ReplTextBox.Name       = "CacheIl2ReplTextBox";
     this.CacheIl2ReplTextBox.Text       = global::Mono.Unix.Catalog.GetString("l");
     this.CacheIl2ReplTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheIl2ReplTextBox);
     global::Gtk.Fixed.FixedChild w55 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheIl2ReplTextBox]));
     w55.X = 364;
     w55.Y = 367;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheTlbInstructionNsetsTextBox            = new global::Gtk.Entry();
     this.CacheTlbInstructionNsetsTextBox.CanFocus   = true;
     this.CacheTlbInstructionNsetsTextBox.Name       = "CacheTlbInstructionNsetsTextBox";
     this.CacheTlbInstructionNsetsTextBox.Text       = global::Mono.Unix.Catalog.GetString("16");
     this.CacheTlbInstructionNsetsTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheTlbInstructionNsetsTextBox);
     global::Gtk.Fixed.FixedChild w56 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheTlbInstructionNsetsTextBox]));
     w56.X = 639;
     w56.Y = 275;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheTlbInstructionBsizeTextBox            = new global::Gtk.Entry();
     this.CacheTlbInstructionBsizeTextBox.CanFocus   = true;
     this.CacheTlbInstructionBsizeTextBox.Name       = "CacheTlbInstructionBsizeTextBox";
     this.CacheTlbInstructionBsizeTextBox.Text       = global::Mono.Unix.Catalog.GetString("4096");
     this.CacheTlbInstructionBsizeTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheTlbInstructionBsizeTextBox);
     global::Gtk.Fixed.FixedChild w57 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheTlbInstructionBsizeTextBox]));
     w57.X = 639;
     w57.Y = 305;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheTlbInstructionAssocTextBox            = new global::Gtk.Entry();
     this.CacheTlbInstructionAssocTextBox.CanFocus   = true;
     this.CacheTlbInstructionAssocTextBox.Name       = "CacheTlbInstructionAssocTextBox";
     this.CacheTlbInstructionAssocTextBox.Text       = global::Mono.Unix.Catalog.GetString("4");
     this.CacheTlbInstructionAssocTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheTlbInstructionAssocTextBox);
     global::Gtk.Fixed.FixedChild w58 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheTlbInstructionAssocTextBox]));
     w58.X = 639;
     w58.Y = 335;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.CacheTlbInstructionReplTextBox            = new global::Gtk.Entry();
     this.CacheTlbInstructionReplTextBox.CanFocus   = true;
     this.CacheTlbInstructionReplTextBox.Name       = "CacheTlbInstructionReplTextBox";
     this.CacheTlbInstructionReplTextBox.Text       = global::Mono.Unix.Catalog.GetString("l");
     this.CacheTlbInstructionReplTextBox.IsEditable = true;
     this.fixed1.Add(this.CacheTlbInstructionReplTextBox);
     global::Gtk.Fixed.FixedChild w59 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.CacheTlbInstructionReplTextBox]));
     w59.X = 639;
     w59.Y = 366;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label26 = new global::Gtk.Label();
     w4.SetTip(this.label26, "numarul de seturi din cache", "numarul de seturi din cache");
     this.label26.Name      = "label26";
     this.label26.LabelProp = global::Mono.Unix.Catalog.GetString("<nsets>");
     this.fixed1.Add(this.label26);
     global::Gtk.Fixed.FixedChild w60 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label26]));
     w60.X = 28;
     w60.Y = 277;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label27 = new global::Gtk.Label();
     w4.SetTip(this.label27, "dimensiunea blocului", "dimensiunea blocului");
     this.label27.Name      = "label27";
     this.label27.LabelProp = global::Mono.Unix.Catalog.GetString("<bsize>");
     this.fixed1.Add(this.label27);
     global::Gtk.Fixed.FixedChild w61 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label27]));
     w61.X = 28;
     w61.Y = 308;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label28 = new global::Gtk.Label();
     w4.SetTip(this.label28, "asociativitatea cache-ului (putere a lui 2)", "asociativitatea cache-ului (putere a lui 2)");
     this.label28.Name      = "label28";
     this.label28.LabelProp = global::Mono.Unix.Catalog.GetString("<assoc>");
     this.fixed1.Add(this.label28);
     global::Gtk.Fixed.FixedChild w62 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label28]));
     w62.X = 28;
     w62.Y = 338;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label29 = new global::Gtk.Label();
     w4.SetTip(this.label29, "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random", "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random");
     this.label29.Name      = "label29";
     this.label29.LabelProp = global::Mono.Unix.Catalog.GetString("<repl>");
     this.fixed1.Add(this.label29);
     global::Gtk.Fixed.FixedChild w63 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label29]));
     w63.X = 30;
     w63.Y = 370;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label34 = new global::Gtk.Label();
     w4.SetTip(this.label34, "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random", "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random");
     this.label34.Name      = "label34";
     this.label34.LabelProp = global::Mono.Unix.Catalog.GetString("<repl>");
     this.fixed1.Add(this.label34);
     global::Gtk.Fixed.FixedChild w64 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label34]));
     w64.X = 304;
     w64.Y = 371;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label33 = new global::Gtk.Label();
     w4.SetTip(this.label33, "asociativitatea cache-ului (putere a lui 2)", "asociativitatea cache-ului (putere a lui 2)");
     this.label33.Name      = "label33";
     this.label33.LabelProp = global::Mono.Unix.Catalog.GetString("<assoc>");
     this.fixed1.Add(this.label33);
     global::Gtk.Fixed.FixedChild w65 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label33]));
     w65.X = 304;
     w65.Y = 338;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label32 = new global::Gtk.Label();
     w4.SetTip(this.label32, "dimensiunea blocului", "dimensiunea blocului");
     this.label32.Name      = "label32";
     this.label32.LabelProp = global::Mono.Unix.Catalog.GetString("<bsize>");
     this.fixed1.Add(this.label32);
     global::Gtk.Fixed.FixedChild w66 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label32]));
     w66.X = 304;
     w66.Y = 306;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label31 = new global::Gtk.Label();
     w4.SetTip(this.label31, "numarul de seturi din cache", "numarul de seturi din cache");
     this.label31.Name      = "label31";
     this.label31.LabelProp = global::Mono.Unix.Catalog.GetString("<nsets>");
     this.fixed1.Add(this.label31);
     global::Gtk.Fixed.FixedChild w67 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label31]));
     w67.X = 304;
     w67.Y = 277;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label30 = new global::Gtk.Label();
     w4.SetTip(this.label30, "numele cache-ului, trebuie sa fie unic", "numele cache-ului, trebuie sa fie unic");
     this.label30.Name      = "label30";
     this.label30.LabelProp = global::Mono.Unix.Catalog.GetString("<name>");
     this.fixed1.Add(this.label30);
     global::Gtk.Fixed.FixedChild w68 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label30]));
     w68.X = 304;
     w68.Y = 247;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label39 = new global::Gtk.Label();
     w4.SetTip(this.label39, "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random", "politica de inlocuire a blocurilor din cache ( l | f | r ), l = LRU, f = FIFO, r = random");
     this.label39.Name      = "label39";
     this.label39.LabelProp = global::Mono.Unix.Catalog.GetString("<repl>");
     this.fixed1.Add(this.label39);
     global::Gtk.Fixed.FixedChild w69 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label39]));
     w69.X = 575;
     w69.Y = 369;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label38 = new global::Gtk.Label();
     w4.SetTip(this.label38, "asociativitatea cache-ului (putere a lui 2)", "asociativitatea cache-ului (putere a lui 2)");
     this.label38.Name      = "label38";
     this.label38.LabelProp = global::Mono.Unix.Catalog.GetString("<assoc>");
     this.fixed1.Add(this.label38);
     global::Gtk.Fixed.FixedChild w70 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label38]));
     w70.X = 575;
     w70.Y = 339;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label37 = new global::Gtk.Label();
     w4.SetTip(this.label37, "dimensiunea blocului", "dimensiunea blocului");
     this.label37.Name      = "label37";
     this.label37.LabelProp = global::Mono.Unix.Catalog.GetString("<bsize>");
     this.fixed1.Add(this.label37);
     global::Gtk.Fixed.FixedChild w71 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label37]));
     w71.X = 575;
     w71.Y = 309;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label36 = new global::Gtk.Label();
     w4.SetTip(this.label36, "numarul de seturi din cache", "numarul de seturi din cache");
     this.label36.Name      = "label36";
     this.label36.LabelProp = global::Mono.Unix.Catalog.GetString("<nsets>");
     this.fixed1.Add(this.label36);
     global::Gtk.Fixed.FixedChild w72 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label36]));
     w72.X = 575;
     w72.Y = 279;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label35 = new global::Gtk.Label();
     w4.SetTip(this.label35, "numele cache-ului, trebuie sa fie unic", "numele cache-ului, trebuie sa fie unic");
     this.label35.Name      = "label35";
     this.label35.LabelProp = global::Mono.Unix.Catalog.GetString("<name>");
     this.fixed1.Add(this.label35);
     global::Gtk.Fixed.FixedChild w73 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label35]));
     w73.X = 575;
     w73.Y = 248;
     this.Add(this.fixed1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 814;
     this.DefaultHeight = 493;
     this.Show();
     this.SaveButton.Clicked += new global::System.EventHandler(this.OnSaveButtonClicked);
 }
Example #49
0
 public static void Build(object obj, string id)
 {
     System.Collections.Hashtable bindings = new System.Collections.Hashtable();
     if ((id == "administrator.EditCreateUser")) {
         Gtk.Window cobj = ((Gtk.Window)(obj));
         // Widget administrator.EditCreateUser
         cobj.Title = "EditCreateUser";
         cobj.WindowPosition = ((Gtk.WindowPosition)(4));
         cobj.Events = ((Gdk.EventMask)(0));
         cobj.Name = "administrator.EditCreateUser";
         cobj.DefaultWidth = 400;
         cobj.DefaultHeight = 300;
         bindings["administrator.EditCreateUser"] = cobj;
         cobj.Show();
     }
     else {
         if ((id == "administrator.LoginWindow")) {
             Gtk.Window cobj = ((Gtk.Window)(obj));
             // Widget administrator.LoginWindow
             cobj.Title = "Boxerp Server Administrator";
             cobj.WindowPosition = ((Gtk.WindowPosition)(1));
             cobj.Modal = true;
             cobj.Resizable = false;
             cobj.AllowGrow = false;
             cobj.Events = ((Gdk.EventMask)(0));
             cobj.Name = "administrator.LoginWindow";
             // Container child administrator.LoginWindow.Gtk.Container+ContainerChild
             Gtk.VBox w1 = new Gtk.VBox();
             w1.BorderWidth = ((uint)(5));
             w1.Events = ((Gdk.EventMask)(0));
             w1.Name = "vbox1";
             // Container child vbox1.Gtk.Box+BoxChild
             Gtk.HBox w2 = new Gtk.HBox();
             w2.Events = ((Gdk.EventMask)(0));
             w2.Name = "hbox1";
             // Container child hbox1.Gtk.Box+BoxChild
             Gtk.Label w3 = new Gtk.Label();
             w3.LabelProp = "Login:"******"label1";
             w3.WidthRequest = 150;
             bindings["label1"] = w3;
             w2.Add(w3);
             Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w2[w3]));
             w4.Position = 0;
             // Container child hbox1.Gtk.Box+BoxChild
             Gtk.Entry w5 = new Gtk.Entry();
             w5.Text = "demo";
             w5.IsEditable = true;
             w5.MaxLength = 100;
             w5.InvisibleChar = '●';
             w5.CanFocus = true;
             w5.Events = ((Gdk.EventMask)(0));
             w5.Name = "entryLogin";
             w5.WidthRequest = 200;
             bindings["entryLogin"] = w5;
             w2.Add(w5);
             Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(w2[w5]));
             w6.Position = 1;
             w6.Expand = false;
             w6.Fill = false;
             bindings["hbox1"] = w2;
             w1.Add(w2);
             Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w1[w2]));
             w7.Position = 0;
             w7.Expand = false;
             w7.Fill = false;
             // Container child vbox1.Gtk.Box+BoxChild
             Gtk.HBox w8 = new Gtk.HBox();
             w8.Events = ((Gdk.EventMask)(0));
             w8.Name = "hbox2";
             w8.WidthRequest = 150;
             // Container child hbox2.Gtk.Box+BoxChild
             Gtk.Label w9 = new Gtk.Label();
             w9.LabelProp = "Password:"******"label2";
             bindings["label2"] = w9;
             w8.Add(w9);
             Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(w8[w9]));
             w10.Position = 0;
             w10.Fill = false;
             // Container child hbox2.Gtk.Box+BoxChild
             Gtk.Entry w11 = new Gtk.Entry();
             w11.Text = "pass";
             w11.IsEditable = true;
             w11.Visibility = false;
             w11.InvisibleChar = '●';
             w11.CanFocus = true;
             w11.Events = ((Gdk.EventMask)(0));
             w11.Name = "entryPassword";
             w11.WidthRequest = 200;
             bindings["entryPassword"] = w11;
             w8.Add(w11);
             Gtk.Box.BoxChild w12 = ((Gtk.Box.BoxChild)(w8[w11]));
             w12.Position = 1;
             w12.Expand = false;
             w12.Fill = false;
             bindings["hbox2"] = w8;
             w1.Add(w8);
             Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(w1[w8]));
             w13.Position = 1;
             // Container child vbox1.Gtk.Box+BoxChild
             Gtk.HSeparator w14 = new Gtk.HSeparator();
             w14.Events = ((Gdk.EventMask)(0));
             w14.Name = "hseparator1";
             bindings["hseparator1"] = w14;
             w1.Add(w14);
             Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(w1[w14]));
             w15.Position = 2;
             w15.Expand = false;
             w15.Fill = false;
             // Container child vbox1.Gtk.Box+BoxChild
             Gtk.HBox w16 = new Gtk.HBox();
             w16.Events = ((Gdk.EventMask)(0));
             w16.Name = "hbox3";
             // Container child hbox3.Gtk.Box+BoxChild
             Gtk.Button w17 = new Gtk.Button();
             w17.CanFocus = true;
             w17.Events = ((Gdk.EventMask)(0));
             w17.Name = "buttonConnect";
             // Container child buttonConnect.Gtk.Container+ContainerChild
             Gtk.Alignment w18 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
             w18.Events = ((Gdk.EventMask)(0));
             w18.Name = "GtkAlignment";
             // Container child GtkAlignment.Gtk.Container+ContainerChild
             Gtk.HBox w19 = new Gtk.HBox();
             w19.Spacing = 2;
             w19.Events = ((Gdk.EventMask)(0));
             w19.Name = "GtkHBox";
             // Container child GtkHBox.Gtk.Container+ContainerChild
             Gtk.Image w20 = new Gtk.Image();
             w20.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-connect", 16, 0);
             w20.Events = ((Gdk.EventMask)(0));
             w20.Name = "image15";
             bindings["image15"] = w20;
             w19.Add(w20);
             // Container child GtkHBox.Gtk.Container+ContainerChild
             Gtk.Label w22 = new Gtk.Label();
             w22.LabelProp = "Connect";
             w22.Events = ((Gdk.EventMask)(0));
             w22.Name = "GtkLabel";
             bindings["GtkLabel"] = w22;
             w19.Add(w22);
             bindings["GtkHBox"] = w19;
             w18.Add(w19);
             bindings["GtkAlignment"] = w18;
             w17.Add(w18);
             bindings["buttonConnect"] = w17;
             w16.Add(w17);
             Gtk.Box.BoxChild w26 = ((Gtk.Box.BoxChild)(w16[w17]));
             w26.PackType = ((Gtk.PackType)(1));
             w26.Position = 0;
             w26.Expand = false;
             w26.Fill = false;
             bindings["hbox3"] = w16;
             w1.Add(w16);
             Gtk.Box.BoxChild w27 = ((Gtk.Box.BoxChild)(w1[w16]));
             w27.Position = 3;
             w27.Expand = false;
             w27.Fill = false;
             bindings["vbox1"] = w1;
             cobj.Add(w1);
             cobj.DefaultWidth = 370;
             cobj.DefaultHeight = 129;
             bindings["administrator.LoginWindow"] = cobj;
             w3.Show();
             w5.Show();
             w2.Show();
             w9.Show();
             w11.Show();
             w8.Show();
             w14.Show();
             w20.Show();
             w22.Show();
             w19.Show();
             w18.Show();
             w17.Show();
             w16.Show();
             w1.Show();
             cobj.Show();
             cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent")));
             w5.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnConnect")));
             w11.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnConnect")));
             w17.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnConnect")));
         }
         else {
             if ((id == "administrator.MainWindow")) {
                 Gtk.Window cobj = ((Gtk.Window)(obj));
                 // Widget administrator.MainWindow
                 cobj.Title = "Boxerp Administrator";
                 Gtk.UIManager w1 = new Gtk.UIManager();
                 Gtk.ActionGroup w2 = new Gtk.ActionGroup("Default");
                 Gtk.Action w3 = new Gtk.Action("File", "File", null, null);
                 w3.ShortLabel = "File";
                 bindings["File"] = w3;
                 w2.Add(w3, null);
                 Gtk.Action w4 = new Gtk.Action("Exit", "Exit", null, null);
                 w4.ShortLabel = "Exit";
                 bindings["Exit"] = w4;
                 w2.Add(w4, null);
                 Gtk.Action w5 = new Gtk.Action("Edit", "Edit", null, null);
                 w5.ShortLabel = "Edit";
                 bindings["Edit"] = w5;
                 w2.Add(w5, null);
                 Gtk.Action w6 = new Gtk.Action("Cut", "Cut", null, null);
                 w6.ShortLabel = "Cut";
                 bindings["Cut"] = w6;
                 w2.Add(w6, null);
                 Gtk.Action w7 = new Gtk.Action("Copy", "Copy", null, null);
                 w7.ShortLabel = "Copy";
                 bindings["Copy"] = w7;
                 w2.Add(w7, null);
                 Gtk.Action w8 = new Gtk.Action("Paste", "Paste", null, null);
                 w8.ShortLabel = "Paste";
                 bindings["Paste"] = w8;
                 w2.Add(w8, null);
                 Gtk.Action w9 = new Gtk.Action("Help", "Help", null, null);
                 w9.ShortLabel = "Help";
                 bindings["Help"] = w9;
                 w2.Add(w9, null);
                 Gtk.Action w10 = new Gtk.Action("About", "About", null, null);
                 w10.ShortLabel = "About";
                 bindings["About"] = w10;
                 w2.Add(w10, null);
                 w1.InsertActionGroup(w2, 0);
                 cobj.AddAccelGroup(w1.AccelGroup);
                 cobj.WindowPosition = ((Gtk.WindowPosition)(4));
                 cobj.DefaultWidth = 800;
                 cobj.DefaultHeight = 600;
                 cobj.Events = ((Gdk.EventMask)(0));
                 cobj.Name = "administrator.MainWindow";
                 // Container child administrator.MainWindow.Gtk.Container+ContainerChild
                 Gtk.VBox w11 = new Gtk.VBox();
                 w11.Events = ((Gdk.EventMask)(0));
                 w11.Name = "vbox1";
                 // Container child vbox1.Gtk.Box+BoxChild
                 w1.AddUiFromString("<ui><menubar name='menubar1'><menu action='File'><menuitem action='Exit'/></menu><menu action='Edit'><menuitem action='Cut'/><menuitem action='Copy'/><menuitem action='Paste'/></menu><menu action='Help'><menuitem action='About'/></menu></menubar></ui>");
                 Gtk.MenuBar w12 = ((Gtk.MenuBar)(w1.GetWidget("/menubar1")));
                 w12.Events = ((Gdk.EventMask)(0));
                 w12.Name = "menubar1";
                 bindings["menubar1"] = w12;
                 w11.Add(w12);
                 Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(w11[w12]));
                 w13.Position = 0;
                 w13.Expand = false;
                 w13.Fill = false;
                 // Container child vbox1.Gtk.Box+BoxChild
                 w1.AddUiFromString("<ui><toolbar name='toolbar1'/></ui>");
                 Gtk.Toolbar w14 = ((Gtk.Toolbar)(w1.GetWidget("/toolbar1")));
                 w14.ShowArrow = false;
                 w14.ToolbarStyle = ((Gtk.ToolbarStyle)(0));
                 w14.IconSize = ((Gtk.IconSize)(3));
                 w14.Events = ((Gdk.EventMask)(0));
                 w14.Name = "toolbar1";
                 bindings["toolbar1"] = w14;
                 w11.Add(w14);
                 Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(w11[w14]));
                 w15.Position = 1;
                 w15.Expand = false;
                 w15.Fill = false;
                 // Container child vbox1.Gtk.Box+BoxChild
                 Gtk.VBox w16 = new Gtk.VBox();
                 w16.BorderWidth = ((uint)(5));
                 w16.Events = ((Gdk.EventMask)(0));
                 w16.Name = "vbox2";
                 // Container child vbox2.Gtk.Box+BoxChild
                 Gtk.HBox w17 = new Gtk.HBox();
                 w17.Events = ((Gdk.EventMask)(0));
                 w17.Name = "hbox1";
                 // Container child hbox1.Gtk.Box+BoxChild
                 Gtk.Label w18 = new Gtk.Label();
                 w18.LabelProp = "<b>Enterprise:</b>";
                 w18.UseMarkup = true;
                 w18.Ypad = 6;
                 w18.Events = ((Gdk.EventMask)(256));
                 w18.Name = "labelEnterprise";
                 bindings["labelEnterprise"] = w18;
                 w17.Add(w18);
                 Gtk.Box.BoxChild w19 = ((Gtk.Box.BoxChild)(w17[w18]));
                 w19.Position = 0;
                 w19.Expand = false;
                 w19.Fill = false;
                 // Container child hbox1.Gtk.Box+BoxChild
                 Gtk.Entry w20 = new Gtk.Entry();
                 w20.IsEditable = true;
                 w20.InvisibleChar = '●';
                 w20.CanFocus = true;
                 w20.Events = ((Gdk.EventMask)(0));
                 w20.Name = "entryEnterprise";
                 bindings["entryEnterprise"] = w20;
                 w17.Add(w20);
                 Gtk.Box.BoxChild w21 = ((Gtk.Box.BoxChild)(w17[w20]));
                 w21.Position = 1;
                 w21.Expand = false;
                 w21.Fill = false;
                 // Container child hbox1.Gtk.Box+BoxChild
                 Gtk.Button w22 = new Gtk.Button();
                 Gtk.Tooltips w23 = new Gtk.Tooltips();
                 w23.SetTip(w22, "Añadir un Hecho", "Añadir un Hecho");
                 w22.CanFocus = true;
                 w22.Events = ((Gdk.EventMask)(0));
                 w22.Name = "buttonFindEnterprise";
                 w22.HasDefault = true;
                 // Container child buttonFindEnterprise.Gtk.Container+ContainerChild
                 Gtk.Alignment w24 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w24.Events = ((Gdk.EventMask)(0));
                 w24.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w25 = new Gtk.HBox();
                 w25.Spacing = 2;
                 w25.Events = ((Gdk.EventMask)(0));
                 w25.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w26 = new Gtk.Image();
                 w26.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-find", 16, 0);
                 w26.Events = ((Gdk.EventMask)(0));
                 w26.Name = "image1";
                 bindings["image1"] = w26;
                 w25.Add(w26);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w28 = new Gtk.Label();
                 w28.LabelProp = "";
                 w28.Events = ((Gdk.EventMask)(0));
                 w28.Name = "GtkLabel";
                 bindings["GtkLabel"] = w28;
                 w25.Add(w28);
                 bindings["GtkHBox"] = w25;
                 w24.Add(w25);
                 bindings["GtkAlignment"] = w24;
                 w22.Add(w24);
                 bindings["buttonFindEnterprise"] = w22;
                 w17.Add(w22);
                 Gtk.Box.BoxChild w32 = ((Gtk.Box.BoxChild)(w17[w22]));
                 w32.Position = 2;
                 w32.Expand = false;
                 w32.Fill = false;
                 bindings["hbox1"] = w17;
                 w16.Add(w17);
                 Gtk.Box.BoxChild w33 = ((Gtk.Box.BoxChild)(w16[w17]));
                 w33.Position = 0;
                 w33.Expand = false;
                 w33.Fill = false;
                 // Container child vbox2.Gtk.Box+BoxChild
                 Gtk.ScrolledWindow w34 = new Gtk.ScrolledWindow();
                 w34.VscrollbarPolicy = ((Gtk.PolicyType)(1));
                 w34.HscrollbarPolicy = ((Gtk.PolicyType)(1));
                 w34.CanFocus = true;
                 w34.Events = ((Gdk.EventMask)(0));
                 w34.Name = "scrolledwindow1";
                 // Container child scrolledwindow1.Gtk.Container+ContainerChild
                 Gtk.Viewport w35 = new Gtk.Viewport();
                 w35.ShadowType = ((Gtk.ShadowType)(0));
                 w35.Events = ((Gdk.EventMask)(0));
                 w35.Name = "GtkViewport";
                 // Container child GtkViewport.Gtk.Container+ContainerChild
                 Boxerp.Client.GtkSharp.Lib.FilteredListView w36 = new Boxerp.Client.GtkSharp.Lib.FilteredListView();
                 w36.Events = ((Gdk.EventMask)(256));
                 w36.Name = "ftreeviewEnterprises";
                 bindings["ftreeviewEnterprises"] = w36;
                 w35.Add(w36);
                 bindings["GtkViewport"] = w35;
                 w34.Add(w35);
                 bindings["scrolledwindow1"] = w34;
                 w16.Add(w34);
                 Gtk.Box.BoxChild w39 = ((Gtk.Box.BoxChild)(w16[w34]));
                 w39.Position = 1;
                 // Container child vbox2.Gtk.Box+BoxChild
                 Gtk.HBox w40 = new Gtk.HBox();
                 w40.Events = ((Gdk.EventMask)(0));
                 w40.Name = "hbox14";
                 // Container child hbox14.Gtk.Box+BoxChild
                 Gtk.Button w41 = new Gtk.Button();
                 w23.SetTip(w41, "Añadir un Hecho", "Añadir un Hecho");
                 w41.CanFocus = true;
                 w41.Events = ((Gdk.EventMask)(0));
                 w41.Name = "buttonNewEnterprise";
                 w41.HasDefault = true;
                 // Container child buttonNewEnterprise.Gtk.Container+ContainerChild
                 Gtk.Alignment w42 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w42.Events = ((Gdk.EventMask)(0));
                 w42.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w43 = new Gtk.HBox();
                 w43.Spacing = 2;
                 w43.Events = ((Gdk.EventMask)(0));
                 w43.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w44 = new Gtk.Image();
                 w44.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-new", 16, 0);
                 w44.Events = ((Gdk.EventMask)(0));
                 w44.Name = "image2";
                 bindings["image2"] = w44;
                 w43.Add(w44);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w46 = new Gtk.Label();
                 w46.LabelProp = "";
                 w46.Events = ((Gdk.EventMask)(0));
                 w46.Name = "GtkLabel";
                 bindings["GtkLabel"] = w46;
                 w43.Add(w46);
                 bindings["GtkHBox"] = w43;
                 w42.Add(w43);
                 bindings["GtkAlignment"] = w42;
                 w41.Add(w42);
                 bindings["buttonNewEnterprise"] = w41;
                 w40.Add(w41);
                 Gtk.Box.BoxChild w50 = ((Gtk.Box.BoxChild)(w40[w41]));
                 w50.PackType = ((Gtk.PackType)(1));
                 w50.Position = 0;
                 w50.Expand = false;
                 w50.Fill = false;
                 // Container child hbox14.Gtk.Box+BoxChild
                 Gtk.Button w51 = new Gtk.Button();
                 w23.SetTip(w51, "Editar el Hecho", "Editar el Hecho");
                 w51.CanFocus = true;
                 w51.Events = ((Gdk.EventMask)(0));
                 w51.Name = "buttonEditEnterprise";
                 // Container child buttonEditEnterprise.Gtk.Container+ContainerChild
                 Gtk.Alignment w52 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w52.Events = ((Gdk.EventMask)(0));
                 w52.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w53 = new Gtk.HBox();
                 w53.Spacing = 2;
                 w53.Events = ((Gdk.EventMask)(0));
                 w53.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w54 = new Gtk.Image();
                 w54.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-edit", 16, 0);
                 w54.Events = ((Gdk.EventMask)(0));
                 w54.Name = "image3";
                 bindings["image3"] = w54;
                 w53.Add(w54);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w56 = new Gtk.Label();
                 w56.LabelProp = "";
                 w56.Events = ((Gdk.EventMask)(0));
                 w56.Name = "GtkLabel";
                 bindings["GtkLabel"] = w56;
                 w53.Add(w56);
                 bindings["GtkHBox"] = w53;
                 w52.Add(w53);
                 bindings["GtkAlignment"] = w52;
                 w51.Add(w52);
                 bindings["buttonEditEnterprise"] = w51;
                 w40.Add(w51);
                 Gtk.Box.BoxChild w60 = ((Gtk.Box.BoxChild)(w40[w51]));
                 w60.PackType = ((Gtk.PackType)(1));
                 w60.Position = 1;
                 w60.Expand = false;
                 w60.Fill = false;
                 // Container child hbox14.Gtk.Box+BoxChild
                 Gtk.Button w61 = new Gtk.Button();
                 w23.SetTip(w61, "Quitar el Hecho", "Quitar el Hecho");
                 w61.CanFocus = true;
                 w61.Events = ((Gdk.EventMask)(0));
                 w61.Name = "buttonDelEnterprise";
                 // Container child buttonDelEnterprise.Gtk.Container+ContainerChild
                 Gtk.Alignment w62 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w62.Events = ((Gdk.EventMask)(0));
                 w62.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w63 = new Gtk.HBox();
                 w63.Spacing = 2;
                 w63.Events = ((Gdk.EventMask)(0));
                 w63.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w64 = new Gtk.Image();
                 w64.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-delete", 16, 0);
                 w64.Events = ((Gdk.EventMask)(0));
                 w64.Name = "image4";
                 bindings["image4"] = w64;
                 w63.Add(w64);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w66 = new Gtk.Label();
                 w66.LabelProp = "";
                 w66.Events = ((Gdk.EventMask)(0));
                 w66.Name = "GtkLabel";
                 bindings["GtkLabel"] = w66;
                 w63.Add(w66);
                 bindings["GtkHBox"] = w63;
                 w62.Add(w63);
                 bindings["GtkAlignment"] = w62;
                 w61.Add(w62);
                 bindings["buttonDelEnterprise"] = w61;
                 w40.Add(w61);
                 Gtk.Box.BoxChild w70 = ((Gtk.Box.BoxChild)(w40[w61]));
                 w70.PackType = ((Gtk.PackType)(1));
                 w70.Position = 2;
                 w70.Expand = false;
                 w70.Fill = false;
                 bindings["hbox14"] = w40;
                 w16.Add(w40);
                 Gtk.Box.BoxChild w71 = ((Gtk.Box.BoxChild)(w16[w40]));
                 w71.Position = 2;
                 w71.Expand = false;
                 w71.Fill = false;
                 bindings["vbox2"] = w16;
                 w11.Add(w16);
                 Gtk.Box.BoxChild w72 = ((Gtk.Box.BoxChild)(w11[w16]));
                 w72.Position = 2;
                 w72.Expand = false;
                 w72.Fill = false;
                 // Container child vbox1.Gtk.Box+BoxChild
                 Gtk.HSeparator w73 = new Gtk.HSeparator();
                 w73.Events = ((Gdk.EventMask)(0));
                 w73.Name = "hseparator2";
                 bindings["hseparator2"] = w73;
                 w11.Add(w73);
                 Gtk.Box.BoxChild w74 = ((Gtk.Box.BoxChild)(w11[w73]));
                 w74.Position = 3;
                 w74.Expand = false;
                 w74.Fill = false;
                 // Container child vbox1.Gtk.Box+BoxChild
                 Gtk.HBox w75 = new Gtk.HBox();
                 w75.Homogeneous = true;
                 w75.Events = ((Gdk.EventMask)(0));
                 w75.Name = "hbox2";
                 // Container child hbox2.Gtk.Box+BoxChild
                 Gtk.VBox w76 = new Gtk.VBox();
                 w76.BorderWidth = ((uint)(5));
                 w76.Events = ((Gdk.EventMask)(0));
                 w76.Name = "vbox3";
                 // Container child vbox3.Gtk.Box+BoxChild
                 Gtk.HBox w77 = new Gtk.HBox();
                 w77.Events = ((Gdk.EventMask)(0));
                 w77.Name = "hbox3";
                 // Container child hbox3.Gtk.Box+BoxChild
                 Gtk.Label w78 = new Gtk.Label();
                 w78.LabelProp = "<b>User:</b>";
                 w78.UseMarkup = true;
                 w78.Ypad = 6;
                 w78.Events = ((Gdk.EventMask)(256));
                 w78.Name = "labelUser";
                 bindings["labelUser"] = w78;
                 w77.Add(w78);
                 Gtk.Box.BoxChild w79 = ((Gtk.Box.BoxChild)(w77[w78]));
                 w79.Position = 0;
                 w79.Expand = false;
                 w79.Fill = false;
                 // Container child hbox3.Gtk.Box+BoxChild
                 Gtk.Entry w80 = new Gtk.Entry();
                 w80.IsEditable = true;
                 w80.InvisibleChar = '●';
                 w80.CanFocus = true;
                 w80.Events = ((Gdk.EventMask)(0));
                 w80.Name = "entryUser";
                 bindings["entryUser"] = w80;
                 w77.Add(w80);
                 Gtk.Box.BoxChild w81 = ((Gtk.Box.BoxChild)(w77[w80]));
                 w81.Position = 1;
                 w81.Expand = false;
                 w81.Fill = false;
                 // Container child hbox3.Gtk.Box+BoxChild
                 Gtk.Button w82 = new Gtk.Button();
                 w23.SetTip(w82, "Añadir un Hecho", "Añadir un Hecho");
                 w82.CanFocus = true;
                 w82.Events = ((Gdk.EventMask)(0));
                 w82.Name = "buttonFindUser";
                 w82.HasDefault = true;
                 // Container child buttonFindUser.Gtk.Container+ContainerChild
                 Gtk.Alignment w83 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w83.Events = ((Gdk.EventMask)(0));
                 w83.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w84 = new Gtk.HBox();
                 w84.Spacing = 2;
                 w84.Events = ((Gdk.EventMask)(0));
                 w84.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w85 = new Gtk.Image();
                 w85.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-find", 16, 0);
                 w85.Events = ((Gdk.EventMask)(0));
                 w85.Name = "image5";
                 bindings["image5"] = w85;
                 w84.Add(w85);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w87 = new Gtk.Label();
                 w87.LabelProp = "";
                 w87.Events = ((Gdk.EventMask)(0));
                 w87.Name = "GtkLabel";
                 bindings["GtkLabel"] = w87;
                 w84.Add(w87);
                 bindings["GtkHBox"] = w84;
                 w83.Add(w84);
                 bindings["GtkAlignment"] = w83;
                 w82.Add(w83);
                 bindings["buttonFindUser"] = w82;
                 w77.Add(w82);
                 Gtk.Box.BoxChild w91 = ((Gtk.Box.BoxChild)(w77[w82]));
                 w91.Position = 2;
                 w91.Expand = false;
                 w91.Fill = false;
                 bindings["hbox3"] = w77;
                 w76.Add(w77);
                 Gtk.Box.BoxChild w92 = ((Gtk.Box.BoxChild)(w76[w77]));
                 w92.Position = 0;
                 w92.Expand = false;
                 w92.Fill = false;
                 // Container child vbox3.Gtk.Box+BoxChild
                 Gtk.ScrolledWindow w93 = new Gtk.ScrolledWindow();
                 w93.VscrollbarPolicy = ((Gtk.PolicyType)(1));
                 w93.HscrollbarPolicy = ((Gtk.PolicyType)(1));
                 w93.CanFocus = true;
                 w93.Events = ((Gdk.EventMask)(0));
                 w93.Name = "scrolledwindow2";
                 // Container child scrolledwindow2.Gtk.Container+ContainerChild
                 Gtk.Viewport w94 = new Gtk.Viewport();
                 w94.ShadowType = ((Gtk.ShadowType)(0));
                 w94.Events = ((Gdk.EventMask)(0));
                 w94.Name = "GtkViewport1";
                 // Container child GtkViewport1.Gtk.Container+ContainerChild
                 Boxerp.Client.GtkSharp.Lib.FilteredListView w95 = new Boxerp.Client.GtkSharp.Lib.FilteredListView();
                 w95.Events = ((Gdk.EventMask)(256));
                 w95.Name = "ftreeviewUsers";
                 bindings["ftreeviewUsers"] = w95;
                 w94.Add(w95);
                 bindings["GtkViewport1"] = w94;
                 w93.Add(w94);
                 bindings["scrolledwindow2"] = w93;
                 w76.Add(w93);
                 Gtk.Box.BoxChild w98 = ((Gtk.Box.BoxChild)(w76[w93]));
                 w98.Position = 1;
                 // Container child vbox3.Gtk.Box+BoxChild
                 Gtk.HBox w99 = new Gtk.HBox();
                 w99.Events = ((Gdk.EventMask)(0));
                 w99.Name = "hbox15";
                 // Container child hbox15.Gtk.Box+BoxChild
                 Gtk.Button w100 = new Gtk.Button();
                 w23.SetTip(w100, "Añadir un Hecho", "Añadir un Hecho");
                 w100.CanFocus = true;
                 w100.Events = ((Gdk.EventMask)(0));
                 w100.Name = "buttonNewUser";
                 w100.HasDefault = true;
                 // Container child buttonNewUser.Gtk.Container+ContainerChild
                 Gtk.Alignment w101 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w101.Events = ((Gdk.EventMask)(0));
                 w101.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w102 = new Gtk.HBox();
                 w102.Spacing = 2;
                 w102.Events = ((Gdk.EventMask)(0));
                 w102.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w103 = new Gtk.Image();
                 w103.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-new", 16, 0);
                 w103.Events = ((Gdk.EventMask)(0));
                 w103.Name = "image6";
                 bindings["image6"] = w103;
                 w102.Add(w103);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w105 = new Gtk.Label();
                 w105.LabelProp = "";
                 w105.Events = ((Gdk.EventMask)(0));
                 w105.Name = "GtkLabel";
                 bindings["GtkLabel"] = w105;
                 w102.Add(w105);
                 bindings["GtkHBox"] = w102;
                 w101.Add(w102);
                 bindings["GtkAlignment"] = w101;
                 w100.Add(w101);
                 bindings["buttonNewUser"] = w100;
                 w99.Add(w100);
                 Gtk.Box.BoxChild w109 = ((Gtk.Box.BoxChild)(w99[w100]));
                 w109.PackType = ((Gtk.PackType)(1));
                 w109.Position = 0;
                 w109.Expand = false;
                 w109.Fill = false;
                 // Container child hbox15.Gtk.Box+BoxChild
                 Gtk.Button w110 = new Gtk.Button();
                 w23.SetTip(w110, "Editar el Hecho", "Editar el Hecho");
                 w110.CanFocus = true;
                 w110.Events = ((Gdk.EventMask)(0));
                 w110.Name = "buttonEditUser";
                 // Container child buttonEditUser.Gtk.Container+ContainerChild
                 Gtk.Alignment w111 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w111.Events = ((Gdk.EventMask)(0));
                 w111.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w112 = new Gtk.HBox();
                 w112.Spacing = 2;
                 w112.Events = ((Gdk.EventMask)(0));
                 w112.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w113 = new Gtk.Image();
                 w113.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-edit", 16, 0);
                 w113.Events = ((Gdk.EventMask)(0));
                 w113.Name = "image7";
                 bindings["image7"] = w113;
                 w112.Add(w113);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w115 = new Gtk.Label();
                 w115.LabelProp = "";
                 w115.Events = ((Gdk.EventMask)(0));
                 w115.Name = "GtkLabel";
                 bindings["GtkLabel"] = w115;
                 w112.Add(w115);
                 bindings["GtkHBox"] = w112;
                 w111.Add(w112);
                 bindings["GtkAlignment"] = w111;
                 w110.Add(w111);
                 bindings["buttonEditUser"] = w110;
                 w99.Add(w110);
                 Gtk.Box.BoxChild w119 = ((Gtk.Box.BoxChild)(w99[w110]));
                 w119.PackType = ((Gtk.PackType)(1));
                 w119.Position = 1;
                 w119.Expand = false;
                 w119.Fill = false;
                 // Container child hbox15.Gtk.Box+BoxChild
                 Gtk.Button w120 = new Gtk.Button();
                 w23.SetTip(w120, "Quitar el Hecho", "Quitar el Hecho");
                 w120.CanFocus = true;
                 w120.Events = ((Gdk.EventMask)(0));
                 w120.Name = "buttonDelUser";
                 // Container child buttonDelUser.Gtk.Container+ContainerChild
                 Gtk.Alignment w121 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w121.Events = ((Gdk.EventMask)(0));
                 w121.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w122 = new Gtk.HBox();
                 w122.Spacing = 2;
                 w122.Events = ((Gdk.EventMask)(0));
                 w122.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w123 = new Gtk.Image();
                 w123.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-delete", 16, 0);
                 w123.Events = ((Gdk.EventMask)(0));
                 w123.Name = "image8";
                 bindings["image8"] = w123;
                 w122.Add(w123);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w125 = new Gtk.Label();
                 w125.LabelProp = "";
                 w125.Events = ((Gdk.EventMask)(0));
                 w125.Name = "GtkLabel";
                 bindings["GtkLabel"] = w125;
                 w122.Add(w125);
                 bindings["GtkHBox"] = w122;
                 w121.Add(w122);
                 bindings["GtkAlignment"] = w121;
                 w120.Add(w121);
                 bindings["buttonDelUser"] = w120;
                 w99.Add(w120);
                 Gtk.Box.BoxChild w129 = ((Gtk.Box.BoxChild)(w99[w120]));
                 w129.PackType = ((Gtk.PackType)(1));
                 w129.Position = 2;
                 w129.Expand = false;
                 w129.Fill = false;
                 bindings["hbox15"] = w99;
                 w76.Add(w99);
                 Gtk.Box.BoxChild w130 = ((Gtk.Box.BoxChild)(w76[w99]));
                 w130.Position = 2;
                 w130.Expand = false;
                 w130.Fill = false;
                 bindings["vbox3"] = w76;
                 w75.Add(w76);
                 Gtk.Box.BoxChild w131 = ((Gtk.Box.BoxChild)(w75[w76]));
                 w131.Position = 0;
                 // Container child hbox2.Gtk.Box+BoxChild
                 Gtk.VBox w132 = new Gtk.VBox();
                 w132.BorderWidth = ((uint)(5));
                 w132.Events = ((Gdk.EventMask)(0));
                 w132.Name = "vbox4";
                 // Container child vbox4.Gtk.Box+BoxChild
                 Gtk.HBox w133 = new Gtk.HBox();
                 w133.Events = ((Gdk.EventMask)(0));
                 w133.Name = "hbox4";
                 // Container child hbox4.Gtk.Box+BoxChild
                 Gtk.Label w134 = new Gtk.Label();
                 w134.LabelProp = "<b>Group:</b>";
                 w134.UseMarkup = true;
                 w134.Ypad = 6;
                 w134.Events = ((Gdk.EventMask)(256));
                 w134.Name = "labelGroup";
                 bindings["labelGroup"] = w134;
                 w133.Add(w134);
                 Gtk.Box.BoxChild w135 = ((Gtk.Box.BoxChild)(w133[w134]));
                 w135.Position = 0;
                 w135.Expand = false;
                 w135.Fill = false;
                 // Container child hbox4.Gtk.Box+BoxChild
                 Gtk.Entry w136 = new Gtk.Entry();
                 w136.IsEditable = true;
                 w136.InvisibleChar = '●';
                 w136.CanFocus = true;
                 w136.Events = ((Gdk.EventMask)(0));
                 w136.Name = "entryGroup";
                 bindings["entryGroup"] = w136;
                 w133.Add(w136);
                 Gtk.Box.BoxChild w137 = ((Gtk.Box.BoxChild)(w133[w136]));
                 w137.Position = 1;
                 w137.Expand = false;
                 w137.Fill = false;
                 // Container child hbox4.Gtk.Box+BoxChild
                 Gtk.Button w138 = new Gtk.Button();
                 w23.SetTip(w138, "Añadir un Hecho", "Añadir un Hecho");
                 w138.CanFocus = true;
                 w138.Events = ((Gdk.EventMask)(0));
                 w138.Name = "buttonFindGroup";
                 w138.HasDefault = true;
                 // Container child buttonFindGroup.Gtk.Container+ContainerChild
                 Gtk.Alignment w139 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w139.Events = ((Gdk.EventMask)(0));
                 w139.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w140 = new Gtk.HBox();
                 w140.Spacing = 2;
                 w140.Events = ((Gdk.EventMask)(0));
                 w140.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w141 = new Gtk.Image();
                 w141.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-find", 16, 0);
                 w141.Events = ((Gdk.EventMask)(0));
                 w141.Name = "image9";
                 bindings["image9"] = w141;
                 w140.Add(w141);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w143 = new Gtk.Label();
                 w143.LabelProp = "";
                 w143.Events = ((Gdk.EventMask)(0));
                 w143.Name = "GtkLabel";
                 bindings["GtkLabel"] = w143;
                 w140.Add(w143);
                 bindings["GtkHBox"] = w140;
                 w139.Add(w140);
                 bindings["GtkAlignment"] = w139;
                 w138.Add(w139);
                 bindings["buttonFindGroup"] = w138;
                 w133.Add(w138);
                 Gtk.Box.BoxChild w147 = ((Gtk.Box.BoxChild)(w133[w138]));
                 w147.Position = 2;
                 w147.Expand = false;
                 w147.Fill = false;
                 bindings["hbox4"] = w133;
                 w132.Add(w133);
                 Gtk.Box.BoxChild w148 = ((Gtk.Box.BoxChild)(w132[w133]));
                 w148.Position = 0;
                 w148.Expand = false;
                 w148.Fill = false;
                 // Container child vbox4.Gtk.Box+BoxChild
                 Gtk.ScrolledWindow w149 = new Gtk.ScrolledWindow();
                 w149.VscrollbarPolicy = ((Gtk.PolicyType)(1));
                 w149.HscrollbarPolicy = ((Gtk.PolicyType)(1));
                 w149.CanFocus = true;
                 w149.Events = ((Gdk.EventMask)(0));
                 w149.Name = "scrolledwindow3";
                 // Container child scrolledwindow3.Gtk.Container+ContainerChild
                 Gtk.Viewport w150 = new Gtk.Viewport();
                 w150.ShadowType = ((Gtk.ShadowType)(0));
                 w150.Events = ((Gdk.EventMask)(0));
                 w150.Name = "GtkViewport2";
                 // Container child GtkViewport2.Gtk.Container+ContainerChild
                 Boxerp.Client.GtkSharp.Lib.FilteredListView w151 = new Boxerp.Client.GtkSharp.Lib.FilteredListView();
                 w151.Events = ((Gdk.EventMask)(256));
                 w151.Name = "ftreeviewGroups";
                 bindings["ftreeviewGroups"] = w151;
                 w150.Add(w151);
                 bindings["GtkViewport2"] = w150;
                 w149.Add(w150);
                 bindings["scrolledwindow3"] = w149;
                 w132.Add(w149);
                 Gtk.Box.BoxChild w154 = ((Gtk.Box.BoxChild)(w132[w149]));
                 w154.Position = 1;
                 // Container child vbox4.Gtk.Box+BoxChild
                 Gtk.HBox w155 = new Gtk.HBox();
                 w155.Events = ((Gdk.EventMask)(0));
                 w155.Name = "hbox16";
                 // Container child hbox16.Gtk.Box+BoxChild
                 Gtk.Button w156 = new Gtk.Button();
                 w23.SetTip(w156, "Añadir un Hecho", "Añadir un Hecho");
                 w156.CanFocus = true;
                 w156.Events = ((Gdk.EventMask)(0));
                 w156.Name = "buttonNewGroup";
                 w156.HasDefault = true;
                 // Container child buttonNewGroup.Gtk.Container+ContainerChild
                 Gtk.Alignment w157 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w157.Events = ((Gdk.EventMask)(0));
                 w157.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w158 = new Gtk.HBox();
                 w158.Spacing = 2;
                 w158.Events = ((Gdk.EventMask)(0));
                 w158.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w159 = new Gtk.Image();
                 w159.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-new", 16, 0);
                 w159.Events = ((Gdk.EventMask)(0));
                 w159.Name = "image10";
                 bindings["image10"] = w159;
                 w158.Add(w159);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w161 = new Gtk.Label();
                 w161.LabelProp = "";
                 w161.Events = ((Gdk.EventMask)(0));
                 w161.Name = "GtkLabel";
                 bindings["GtkLabel"] = w161;
                 w158.Add(w161);
                 bindings["GtkHBox"] = w158;
                 w157.Add(w158);
                 bindings["GtkAlignment"] = w157;
                 w156.Add(w157);
                 bindings["buttonNewGroup"] = w156;
                 w155.Add(w156);
                 Gtk.Box.BoxChild w165 = ((Gtk.Box.BoxChild)(w155[w156]));
                 w165.PackType = ((Gtk.PackType)(1));
                 w165.Position = 0;
                 w165.Expand = false;
                 w165.Fill = false;
                 // Container child hbox16.Gtk.Box+BoxChild
                 Gtk.Button w166 = new Gtk.Button();
                 w23.SetTip(w166, "Editar el Hecho", "Editar el Hecho");
                 w166.CanFocus = true;
                 w166.Events = ((Gdk.EventMask)(0));
                 w166.Name = "buttonEditGroup";
                 // Container child buttonEditGroup.Gtk.Container+ContainerChild
                 Gtk.Alignment w167 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w167.Events = ((Gdk.EventMask)(0));
                 w167.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w168 = new Gtk.HBox();
                 w168.Spacing = 2;
                 w168.Events = ((Gdk.EventMask)(0));
                 w168.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w169 = new Gtk.Image();
                 w169.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-edit", 16, 0);
                 w169.Events = ((Gdk.EventMask)(0));
                 w169.Name = "image11";
                 bindings["image11"] = w169;
                 w168.Add(w169);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w171 = new Gtk.Label();
                 w171.LabelProp = "";
                 w171.Events = ((Gdk.EventMask)(0));
                 w171.Name = "GtkLabel";
                 bindings["GtkLabel"] = w171;
                 w168.Add(w171);
                 bindings["GtkHBox"] = w168;
                 w167.Add(w168);
                 bindings["GtkAlignment"] = w167;
                 w166.Add(w167);
                 bindings["buttonEditGroup"] = w166;
                 w155.Add(w166);
                 Gtk.Box.BoxChild w175 = ((Gtk.Box.BoxChild)(w155[w166]));
                 w175.PackType = ((Gtk.PackType)(1));
                 w175.Position = 1;
                 w175.Expand = false;
                 w175.Fill = false;
                 // Container child hbox16.Gtk.Box+BoxChild
                 Gtk.Button w176 = new Gtk.Button();
                 w23.SetTip(w176, "Quitar el Hecho", "Quitar el Hecho");
                 w176.CanFocus = true;
                 w176.Events = ((Gdk.EventMask)(0));
                 w176.Name = "buttonDelGroup";
                 // Container child buttonDelGroup.Gtk.Container+ContainerChild
                 Gtk.Alignment w177 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                 w177.Events = ((Gdk.EventMask)(0));
                 w177.Name = "GtkAlignment";
                 // Container child GtkAlignment.Gtk.Container+ContainerChild
                 Gtk.HBox w178 = new Gtk.HBox();
                 w178.Spacing = 2;
                 w178.Events = ((Gdk.EventMask)(0));
                 w178.Name = "GtkHBox";
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Image w179 = new Gtk.Image();
                 w179.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-delete", 16, 0);
                 w179.Events = ((Gdk.EventMask)(0));
                 w179.Name = "image12";
                 bindings["image12"] = w179;
                 w178.Add(w179);
                 // Container child GtkHBox.Gtk.Container+ContainerChild
                 Gtk.Label w181 = new Gtk.Label();
                 w181.LabelProp = "";
                 w181.Events = ((Gdk.EventMask)(0));
                 w181.Name = "GtkLabel";
                 bindings["GtkLabel"] = w181;
                 w178.Add(w181);
                 bindings["GtkHBox"] = w178;
                 w177.Add(w178);
                 bindings["GtkAlignment"] = w177;
                 w176.Add(w177);
                 bindings["buttonDelGroup"] = w176;
                 w155.Add(w176);
                 Gtk.Box.BoxChild w185 = ((Gtk.Box.BoxChild)(w155[w176]));
                 w185.PackType = ((Gtk.PackType)(1));
                 w185.Position = 2;
                 w185.Expand = false;
                 w185.Fill = false;
                 bindings["hbox16"] = w155;
                 w132.Add(w155);
                 Gtk.Box.BoxChild w186 = ((Gtk.Box.BoxChild)(w132[w155]));
                 w186.Position = 2;
                 w186.Expand = false;
                 w186.Fill = false;
                 bindings["vbox4"] = w132;
                 w75.Add(w132);
                 Gtk.Box.BoxChild w187 = ((Gtk.Box.BoxChild)(w75[w132]));
                 w187.Position = 1;
                 bindings["hbox2"] = w75;
                 w11.Add(w75);
                 Gtk.Box.BoxChild w188 = ((Gtk.Box.BoxChild)(w11[w75]));
                 w188.Position = 4;
                 // Container child vbox1.Gtk.Box+BoxChild
                 Gtk.HSeparator w189 = new Gtk.HSeparator();
                 w189.Events = ((Gdk.EventMask)(0));
                 w189.Name = "hseparator1";
                 bindings["hseparator1"] = w189;
                 w11.Add(w189);
                 Gtk.Box.BoxChild w190 = ((Gtk.Box.BoxChild)(w11[w189]));
                 w190.Position = 6;
                 w190.Expand = false;
                 w190.Fill = false;
                 // Container child vbox1.Gtk.Box+BoxChild
                 Gtk.Statusbar w191 = new Gtk.Statusbar();
                 w191.Events = ((Gdk.EventMask)(0));
                 w191.Name = "statusbar1";
                 bindings["statusbar1"] = w191;
                 w11.Add(w191);
                 Gtk.Box.BoxChild w192 = ((Gtk.Box.BoxChild)(w11[w191]));
                 w192.Position = 7;
                 w192.Expand = false;
                 w192.Fill = false;
                 bindings["vbox1"] = w11;
                 cobj.Add(w11);
                 bindings["administrator.MainWindow"] = cobj;
                 w12.Show();
                 w14.Show();
                 w18.Show();
                 w20.Show();
                 w26.Show();
                 w28.Show();
                 w25.Show();
                 w24.Show();
                 w22.Show();
                 w17.Show();
                 w36.Show();
                 w35.Show();
                 w34.Show();
                 w44.Show();
                 w46.Show();
                 w43.Show();
                 w42.Show();
                 w41.Show();
                 w54.Show();
                 w56.Show();
                 w53.Show();
                 w52.Show();
                 w51.Show();
                 w64.Show();
                 w66.Show();
                 w63.Show();
                 w62.Show();
                 w61.Show();
                 w40.Show();
                 w16.Show();
                 w73.Show();
                 w78.Show();
                 w80.Show();
                 w85.Show();
                 w87.Show();
                 w84.Show();
                 w83.Show();
                 w82.Show();
                 w77.Show();
                 w95.Show();
                 w94.Show();
                 w93.Show();
                 w103.Show();
                 w105.Show();
                 w102.Show();
                 w101.Show();
                 w100.Show();
                 w113.Show();
                 w115.Show();
                 w112.Show();
                 w111.Show();
                 w110.Show();
                 w123.Show();
                 w125.Show();
                 w122.Show();
                 w121.Show();
                 w120.Show();
                 w99.Show();
                 w76.Show();
                 w134.Show();
                 w136.Show();
                 w141.Show();
                 w143.Show();
                 w140.Show();
                 w139.Show();
                 w138.Show();
                 w133.Show();
                 w151.Show();
                 w150.Show();
                 w149.Show();
                 w159.Show();
                 w161.Show();
                 w158.Show();
                 w157.Show();
                 w156.Show();
                 w169.Show();
                 w171.Show();
                 w168.Show();
                 w167.Show();
                 w166.Show();
                 w179.Show();
                 w181.Show();
                 w178.Show();
                 w177.Show();
                 w176.Show();
                 w155.Show();
                 w132.Show();
                 w75.Show();
                 w189.Show();
                 w191.Show();
                 w11.Show();
                 cobj.Show();
                 cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent")));
                 w20.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindEnterprise")));
                 w22.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindEnterprise")));
                 w61.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnDelEnterpriseClicked")));
                 w51.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnEditEnterpriseClicked")));
                 w41.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnNewEnterpriseClicked")));
                 w80.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindUser")));
                 w82.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindUser")));
                 w120.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnDelUserClicked")));
                 w110.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnEditUserClicked")));
                 w100.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnNewUserClicked")));
                 w136.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindGroup")));
                 w138.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindGroup")));
                 w176.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnDelGroupClicked")));
                 w166.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnEditGroupClicked")));
                 w156.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnNewGroupClicked")));
             }
             else {
                 if ((id == "administrator.EditUserWindow")) {
                     Gtk.Window cobj = ((Gtk.Window)(obj));
                     // Widget administrator.EditUserWindow
                     cobj.Title = "User";
                     cobj.WindowPosition = ((Gtk.WindowPosition)(4));
                     cobj.Events = ((Gdk.EventMask)(0));
                     cobj.Name = "administrator.EditUserWindow";
                     // Container child administrator.EditUserWindow.Gtk.Container+ContainerChild
                     Gtk.VBox w1 = new Gtk.VBox();
                     w1.Events = ((Gdk.EventMask)(0));
                     w1.Name = "vbox1";
                     // Container child vbox1.Gtk.Box+BoxChild
                     Gtk.Notebook w2 = new Gtk.Notebook();
                     w2.CanFocus = true;
                     w2.Events = ((Gdk.EventMask)(0));
                     w2.Name = "notebook1";
                     // Container child notebook1.Gtk.Notebook+NotebookChild
                     Gtk.VBox w3 = new Gtk.VBox();
                     w3.Events = ((Gdk.EventMask)(0));
                     w3.Name = "vbox2";
                     // Container child vbox2.Gtk.Box+BoxChild
                     Gtk.Table w4 = new Gtk.Table(((uint)(5)), ((uint)(2)), false);
                     w4.RowSpacing = ((uint)(1));
                     w4.ColumnSpacing = ((uint)(5));
                     w4.BorderWidth = ((uint)(5));
                     w4.Events = ((Gdk.EventMask)(0));
                     w4.Name = "table1";
                     // Container child table1.Gtk.Table+TableChild
                     Gtk.CheckButton w5 = new Gtk.CheckButton();
                     w5.Label = "";
                     w5.DrawIndicator = true;
                     w5.CanFocus = true;
                     w5.Events = ((Gdk.EventMask)(0));
                     w5.Name = "checkActive";
                     bindings["checkActive"] = w5;
                     w4.Add(w5);
                     Gtk.Table.TableChild w6 = ((Gtk.Table.TableChild)(w4[w5]));
                     w6.BottomAttach = ((uint)(5));
                     w6.LeftAttach = ((uint)(1));
                     w6.RightAttach = ((uint)(2));
                     w6.TopAttach = ((uint)(4));
                     w6.YOptions = ((Gtk.AttachOptions)(4));
                     // Container child table1.Gtk.Table+TableChild
                     Gtk.Label w7 = new Gtk.Label();
                     w7.LabelProp = "Active:";
                     w7.Events = ((Gdk.EventMask)(0));
                     w7.Name = "label4";
                     bindings["label4"] = w7;
                     w4.Add(w7);
                     Gtk.Table.TableChild w8 = ((Gtk.Table.TableChild)(w4[w7]));
                     w8.BottomAttach = ((uint)(5));
                     w8.TopAttach = ((uint)(4));
                     w8.YOptions = ((Gtk.AttachOptions)(4));
                     w8.XOptions = ((Gtk.AttachOptions)(4));
                     // Container child table1.Gtk.Table+TableChild
                     Gtk.Entry w9 = new Gtk.Entry();
                     w9.IsEditable = true;
                     w9.Visibility = false;
                     w9.InvisibleChar = '●';
                     w9.CanFocus = true;
                     w9.Events = ((Gdk.EventMask)(0));
                     w9.Name = "entryPassword";
                     bindings["entryPassword"] = w9;
                     w4.Add(w9);
                     Gtk.Table.TableChild w10 = ((Gtk.Table.TableChild)(w4[w9]));
                     w10.BottomAttach = ((uint)(4));
                     w10.LeftAttach = ((uint)(1));
                     w10.RightAttach = ((uint)(2));
                     w10.TopAttach = ((uint)(3));
                     w10.YOptions = ((Gtk.AttachOptions)(4));
                     // Container child table1.Gtk.Table+TableChild
                     Gtk.Entry w11 = new Gtk.Entry();
                     w11.IsEditable = true;
                     w11.InvisibleChar = '●';
                     w11.CanFocus = true;
                     w11.Events = ((Gdk.EventMask)(0));
                     w11.Name = "entryEmail";
                     bindings["entryEmail"] = w11;
                     w4.Add(w11);
                     Gtk.Table.TableChild w12 = ((Gtk.Table.TableChild)(w4[w11]));
                     w12.BottomAttach = ((uint)(3));
                     w12.LeftAttach = ((uint)(1));
                     w12.RightAttach = ((uint)(2));
                     w12.TopAttach = ((uint)(2));
                     w12.YOptions = ((Gtk.AttachOptions)(4));
                     // Container child table1.Gtk.Table+TableChild
                     Gtk.Entry w13 = new Gtk.Entry();
                     w13.IsEditable = true;
                     w13.InvisibleChar = '●';
                     w13.CanFocus = true;
                     w13.Events = ((Gdk.EventMask)(0));
                     w13.Name = "entryRealName";
                     bindings["entryRealName"] = w13;
                     w4.Add(w13);
                     Gtk.Table.TableChild w14 = ((Gtk.Table.TableChild)(w4[w13]));
                     w14.BottomAttach = ((uint)(2));
                     w14.LeftAttach = ((uint)(1));
                     w14.RightAttach = ((uint)(2));
                     w14.TopAttach = ((uint)(1));
                     w14.YOptions = ((Gtk.AttachOptions)(4));
                     // Container child table1.Gtk.Table+TableChild
                     Gtk.Label w15 = new Gtk.Label();
                     w15.LabelProp = "Password:"******"label14";
                     bindings["label14"] = w15;
                     w4.Add(w15);
                     Gtk.Table.TableChild w16 = ((Gtk.Table.TableChild)(w4[w15]));
                     w16.BottomAttach = ((uint)(4));
                     w16.TopAttach = ((uint)(3));
                     w16.YOptions = ((Gtk.AttachOptions)(4));
                     w16.XOptions = ((Gtk.AttachOptions)(4));
                     // Container child table1.Gtk.Table+TableChild
                     Gtk.Label w17 = new Gtk.Label();
                     w17.LabelProp = "Email:";
                     w17.Events = ((Gdk.EventMask)(0));
                     w17.Name = "label13";
                     bindings["label13"] = w17;
                     w4.Add(w17);
                     Gtk.Table.TableChild w18 = ((Gtk.Table.TableChild)(w4[w17]));
                     w18.BottomAttach = ((uint)(3));
                     w18.TopAttach = ((uint)(2));
                     w18.YOptions = ((Gtk.AttachOptions)(4));
                     w18.XOptions = ((Gtk.AttachOptions)(4));
                     // Container child table1.Gtk.Table+TableChild
                     Gtk.Label w19 = new Gtk.Label();
                     w19.LabelProp = "Real Name:";
                     w19.Events = ((Gdk.EventMask)(0));
                     w19.Name = "label12";
                     bindings["label12"] = w19;
                     w4.Add(w19);
                     Gtk.Table.TableChild w20 = ((Gtk.Table.TableChild)(w4[w19]));
                     w20.BottomAttach = ((uint)(2));
                     w20.TopAttach = ((uint)(1));
                     w20.YOptions = ((Gtk.AttachOptions)(4));
                     w20.XOptions = ((Gtk.AttachOptions)(4));
                     // Container child table1.Gtk.Table+TableChild
                     Gtk.Label w21 = new Gtk.Label();
                     w21.LabelProp = "User Name:";
                     w21.Events = ((Gdk.EventMask)(0));
                     w21.Name = "label10";
                     bindings["label10"] = w21;
                     w4.Add(w21);
                     Gtk.Table.TableChild w22 = ((Gtk.Table.TableChild)(w4[w21]));
                     w22.YOptions = ((Gtk.AttachOptions)(4));
                     w22.XOptions = ((Gtk.AttachOptions)(4));
                     // Container child table1.Gtk.Table+TableChild
                     Gtk.Entry w23 = new Gtk.Entry();
                     w23.IsEditable = true;
                     w23.InvisibleChar = '●';
                     w23.CanFocus = true;
                     w23.Events = ((Gdk.EventMask)(0));
                     w23.Name = "entryUserName";
                     bindings["entryUserName"] = w23;
                     w4.Add(w23);
                     Gtk.Table.TableChild w24 = ((Gtk.Table.TableChild)(w4[w23]));
                     w24.LeftAttach = ((uint)(1));
                     w24.RightAttach = ((uint)(2));
                     w24.YOptions = ((Gtk.AttachOptions)(4));
                     bindings["table1"] = w4;
                     w3.Add(w4);
                     Gtk.Box.BoxChild w25 = ((Gtk.Box.BoxChild)(w3[w4]));
                     w25.Position = 0;
                     w25.Expand = false;
                     w25.Fill = false;
                     // Container child vbox2.Gtk.Box+BoxChild
                     Boxerp.Client.GtkSharp.Lib.DoubleListView w26 = new Boxerp.Client.GtkSharp.Lib.DoubleListView();
                     w26.Events = ((Gdk.EventMask)(256));
                     w26.Name = "dtreeview";
                     bindings["dtreeview"] = w26;
                     w3.Add(w26);
                     Gtk.Box.BoxChild w27 = ((Gtk.Box.BoxChild)(w3[w26]));
                     w27.Position = 1;
                     bindings["vbox2"] = w3;
                     w2.Add(w3);
                     Gtk.Notebook.NotebookChild w28 = ((Gtk.Notebook.NotebookChild)(w2[w3]));
                     w28.TabExpand = false;
                     // Notebook tab
                     Gtk.Label w29 = new Gtk.Label();
                     w29.LabelProp = "Properties";
                     w29.Events = ((Gdk.EventMask)(0));
                     w29.Name = "label1";
                     bindings["label1"] = w29;
                     w2.SetTabLabel(w3, w29);
                     // Container child notebook1.Gtk.Notebook+NotebookChild
                     Gtk.VBox w30 = new Gtk.VBox();
                     w30.Events = ((Gdk.EventMask)(0));
                     w30.Name = "vbox3";
                     bindings["vbox3"] = w30;
                     w2.Add(w30);
                     Gtk.Notebook.NotebookChild w31 = ((Gtk.Notebook.NotebookChild)(w2[w30]));
                     w31.Position = 1;
                     w31.TabExpand = false;
                     // Notebook tab
                     Gtk.Label w32 = new Gtk.Label();
                     w32.LabelProp = "Permissions";
                     w32.Events = ((Gdk.EventMask)(0));
                     w32.Name = "label1";
                     bindings["label1"] = w32;
                     w2.SetTabLabel(w30, w32);
                     bindings["notebook1"] = w2;
                     w1.Add(w2);
                     Gtk.Box.BoxChild w33 = ((Gtk.Box.BoxChild)(w1[w2]));
                     w33.Position = 0;
                     w33.Padding = ((uint)(5));
                     // Container child vbox1.Gtk.Box+BoxChild
                     Gtk.HButtonBox w34 = new Gtk.HButtonBox();
                     w34.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
                     w34.Spacing = 2;
                     w34.BorderWidth = ((uint)(5));
                     w34.Events = ((Gdk.EventMask)(0));
                     w34.Name = "hbuttonbox1";
                     // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
                     Gtk.Button w35 = new Gtk.Button();
                     w35.CanFocus = true;
                     w35.Events = ((Gdk.EventMask)(0));
                     w35.Name = "buttonCancel";
                     // Container child buttonCancel.Gtk.Container+ContainerChild
                     Gtk.Alignment w36 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                     w36.Events = ((Gdk.EventMask)(0));
                     w36.Name = "GtkAlignment";
                     // Container child GtkAlignment.Gtk.Container+ContainerChild
                     Gtk.HBox w37 = new Gtk.HBox();
                     w37.Spacing = 2;
                     w37.Events = ((Gdk.EventMask)(0));
                     w37.Name = "GtkHBox";
                     // Container child GtkHBox.Gtk.Container+ContainerChild
                     Gtk.Image w38 = new Gtk.Image();
                     w38.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-cancel", 16, 0);
                     w38.Events = ((Gdk.EventMask)(0));
                     w38.Name = "image13";
                     bindings["image13"] = w38;
                     w37.Add(w38);
                     // Container child GtkHBox.Gtk.Container+ContainerChild
                     Gtk.Label w40 = new Gtk.Label();
                     w40.LabelProp = "Cancel";
                     w40.Events = ((Gdk.EventMask)(0));
                     w40.Name = "GtkLabel";
                     bindings["GtkLabel"] = w40;
                     w37.Add(w40);
                     bindings["GtkHBox"] = w37;
                     w36.Add(w37);
                     bindings["GtkAlignment"] = w36;
                     w35.Add(w36);
                     bindings["buttonCancel"] = w35;
                     w34.Add(w35);
                     Gtk.ButtonBox.ButtonBoxChild w44 = ((Gtk.ButtonBox.ButtonBoxChild)(w34[w35]));
                     w44.Expand = false;
                     w44.Fill = false;
                     // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
                     Gtk.Button w45 = new Gtk.Button();
                     w45.CanFocus = true;
                     w45.Events = ((Gdk.EventMask)(0));
                     w45.Name = "buttonOk";
                     // Container child buttonOk.Gtk.Container+ContainerChild
                     Gtk.Alignment w46 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
                     w46.Events = ((Gdk.EventMask)(0));
                     w46.Name = "GtkAlignment";
                     // Container child GtkAlignment.Gtk.Container+ContainerChild
                     Gtk.HBox w47 = new Gtk.HBox();
                     w47.Spacing = 2;
                     w47.Events = ((Gdk.EventMask)(0));
                     w47.Name = "GtkHBox";
                     // Container child GtkHBox.Gtk.Container+ContainerChild
                     Gtk.Image w48 = new Gtk.Image();
                     w48.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-ok", 16, 0);
                     w48.Events = ((Gdk.EventMask)(0));
                     w48.Name = "image14";
                     bindings["image14"] = w48;
                     w47.Add(w48);
                     // Container child GtkHBox.Gtk.Container+ContainerChild
                     Gtk.Label w50 = new Gtk.Label();
                     w50.LabelProp = "Ok";
                     w50.Events = ((Gdk.EventMask)(0));
                     w50.Name = "GtkLabel";
                     bindings["GtkLabel"] = w50;
                     w47.Add(w50);
                     bindings["GtkHBox"] = w47;
                     w46.Add(w47);
                     bindings["GtkAlignment"] = w46;
                     w45.Add(w46);
                     bindings["buttonOk"] = w45;
                     w34.Add(w45);
                     Gtk.ButtonBox.ButtonBoxChild w54 = ((Gtk.ButtonBox.ButtonBoxChild)(w34[w45]));
                     w54.Position = 1;
                     w54.Expand = false;
                     w54.Fill = false;
                     bindings["hbuttonbox1"] = w34;
                     w1.Add(w34);
                     Gtk.Box.BoxChild w55 = ((Gtk.Box.BoxChild)(w1[w34]));
                     w55.PackType = ((Gtk.PackType)(1));
                     w55.Position = 1;
                     w55.Expand = false;
                     w55.Fill = false;
                     bindings["vbox1"] = w1;
                     cobj.Add(w1);
                     cobj.DefaultWidth = 400;
                     cobj.DefaultHeight = 273;
                     bindings["administrator.EditUserWindow"] = cobj;
                     w5.Show();
                     w7.Show();
                     w9.Show();
                     w11.Show();
                     w13.Show();
                     w15.Show();
                     w17.Show();
                     w19.Show();
                     w21.Show();
                     w23.Show();
                     w4.Show();
                     w26.Show();
                     w3.Show();
                     w29.Show();
                     w30.Show();
                     w32.Show();
                     w2.Show();
                     w38.Show();
                     w40.Show();
                     w37.Show();
                     w36.Show();
                     w35.Show();
                     w48.Show();
                     w50.Show();
                     w47.Show();
                     w46.Show();
                     w45.Show();
                     w34.Show();
                     w1.Show();
                     cobj.Show();
                     cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnClose")));
                     w35.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnCancelClicked")));
                     w45.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnOkClicked")));
                 }
             }
         }
     }
     System.Reflection.FieldInfo[] fields = obj.GetType().GetFields(((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) | System.Reflection.BindingFlags.Instance));
     for (int n = 0; (n < fields.Length); n = (n + 1)) {
         System.Reflection.FieldInfo field = fields[n];
         object widget = bindings[field.Name];
         if (((widget != null) && field.FieldType.IsInstanceOfType(widget))) {
             field.SetValue(obj, widget);
         }
     }
 }
Example #50
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("VLCia");
     this.Icon           = global::Stetic.IconLoader.LoadIcon(this, "gtk-media-play", global::Gtk.IconSize.Menu);
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.cbox           = global::Gtk.ComboBox.NewText();
     this.cbox.Sensitive = false;
     this.cbox.Name      = "cbox";
     this.hbox1.Add(this.cbox);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.cbox]));
     w1.Position = 0;
     // Container child hbox1.Gtk.Box+BoxChild
     this.refresh              = new global::Gtk.Button();
     this.refresh.CanFocus     = true;
     this.refresh.Name         = "refresh";
     this.refresh.UseUnderline = true;
     this.refresh.Label        = global::Mono.Unix.Catalog.GetString("Refresh");
     this.hbox1.Add(this.refresh);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.refresh]));
     w2.Position = 1;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.url = new global::Gtk.Button();
     global::Gtk.Tooltips w3 = new Gtk.Tooltips();
     w3.SetTip(this.url, "Copies to clipboard", "Copies to clipboard");
     this.url.CanFocus     = true;
     this.url.Name         = "url";
     this.url.UseUnderline = true;
     this.url.Label        = global::Mono.Unix.Catalog.GetString("URL");
     this.hbox1.Add(this.url);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.url]));
     w4.Position = 2;
     w4.Expand   = false;
     w4.Fill     = false;
     this.vbox1.Add(this.hbox1);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox1]));
     w5.Position = 0;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox2         = new global::Gtk.HBox();
     this.hbox2.Name    = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.play              = new global::Gtk.Button();
     this.play.CanFocus     = true;
     this.play.Name         = "play";
     this.play.UseUnderline = true;
     this.play.Label        = global::Mono.Unix.Catalog.GetString("Play");
     this.hbox2.Add(this.play);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.play]));
     w6.Position = 0;
     // Container child hbox2.Gtk.Box+BoxChild
     this.pause              = new global::Gtk.Button();
     this.pause.CanFocus     = true;
     this.pause.Name         = "pause";
     this.pause.UseUnderline = true;
     this.pause.Label        = global::Mono.Unix.Catalog.GetString("Pause");
     this.hbox2.Add(this.pause);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.pause]));
     w7.Position = 1;
     // Container child hbox2.Gtk.Box+BoxChild
     this.stop              = new global::Gtk.Button();
     this.stop.CanFocus     = true;
     this.stop.Name         = "stop";
     this.stop.UseUnderline = true;
     this.stop.Label        = global::Mono.Unix.Catalog.GetString("Stop");
     this.hbox2.Add(this.stop);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.stop]));
     w8.Position = 2;
     this.vbox1.Add(this.hbox2);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox2]));
     w9.Position = 1;
     w9.Expand   = false;
     w9.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.scale = new global::Gtk.HScale(null);
     this.scale.HeightRequest            = 55;
     this.scale.Sensitive                = false;
     this.scale.CanFocus                 = true;
     this.scale.Name                     = "scale";
     this.scale.Adjustment.Upper         = 0.01D;
     this.scale.Adjustment.PageIncrement = 5D;
     this.scale.Adjustment.StepIncrement = 0.5D;
     this.scale.DrawValue                = true;
     this.scale.Digits                   = 0;
     this.scale.ValuePos                 = ((global::Gtk.PositionType)(2));
     this.vbox1.Add(this.scale);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.scale]));
     w10.Position = 2;
     w10.Expand   = false;
     w10.Fill     = false;
     w10.Padding  = ((uint)(5));
     // Container child vbox1.Gtk.Box+BoxChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.txt            = new global::Gtk.Label();
     this.txt.Name       = "txt";
     this.txt.LabelProp  = global::Mono.Unix.Catalog.GetString("Welcome");
     this.txt.Selectable = true;
     this.vbox2.Add(this.txt);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.txt]));
     w11.Position = 0;
     w11.Expand   = false;
     w11.Fill     = false;
     this.vbox1.Add(this.vbox2);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.vbox2]));
     w12.Position = 3;
     w12.Expand   = false;
     w12.Fill     = false;
     this.Add(this.vbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 400;
     this.DefaultHeight = 172;
     this.Show();
     this.DeleteEvent        += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.cbox.Changed       += new global::System.EventHandler(this.Combochanged);
     this.refresh.Clicked    += new global::System.EventHandler(this.Refresh);
     this.url.Clicked        += new global::System.EventHandler(this.Url);
     this.play.Clicked       += new global::System.EventHandler(this.Play);
     this.pause.Clicked      += new global::System.EventHandler(this.Pause);
     this.stop.Clicked       += new global::System.EventHandler(this.Stop);
     this.scale.ValueChanged += new global::System.EventHandler(this.OnScaleValueChanged);
     this.scale.FocusGrabbed += new global::System.EventHandler(this.OnScaleFocusGrabbed);
 }
Example #51
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.WidthRequest   = 500;
     this.HeightRequest  = 325;
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("Rescue   ( •̀ᴗ•́)و ̑̑");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Resizable      = false;
     this.AllowGrow      = false;
     this.Gravity        = ((global::Gdk.Gravity)(10));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.fixed1           = new global::Gtk.Fixed();
     this.fixed1.Name      = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.rescue = new global::Gtk.Button();
     this.rescue.WidthRequest    = 80;
     this.rescue.HeightRequest   = 37;
     this.rescue.CanFocus        = true;
     this.rescue.ExtensionEvents = ((global::Gdk.ExtensionMode)(1));
     this.rescue.Name            = "rescue";
     this.rescue.UseUnderline    = true;
     this.rescue.Label           = global::Mono.Unix.Catalog.GetString("Rescue");
     this.fixed1.Add(this.rescue);
     global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.rescue]));
     w1.X = 410;
     w1.Y = 281;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.entry2 = new global::Gtk.Entry();
     global::Gtk.Tooltips w2 = new Gtk.Tooltips();
     w2.SetTip(this.entry2, "Paste the password in base64 format", "Paste the password in base64 format");
     this.entry2.WidthRequest  = 400;
     this.entry2.HeightRequest = 37;
     this.entry2.CanFocus      = true;
     this.entry2.Name          = "entry2";
     this.entry2.IsEditable    = true;
     this.entry2.InvisibleChar = '●';
     this.fixed1.Add(this.entry2);
     global::Gtk.Fixed.FixedChild w3 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.entry2]));
     w3.X = 10;
     w3.Y = 281;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("Paste the password in base64 format");
     this.fixed1.Add(this.label2);
     global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.label2]));
     w4.X = 12;
     w4.Y = 257;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.progressbar1 = new global::Gtk.ProgressBar();
     this.progressbar1.WidthRequest  = 480;
     this.progressbar1.HeightRequest = 15;
     this.progressbar1.Name          = "progressbar1";
     this.fixed1.Add(this.progressbar1);
     global::Gtk.Fixed.FixedChild w5 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.progressbar1]));
     w5.X = 10;
     w5.Y = 238;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.wrong           = new global::Gtk.Label();
     this.wrong.Name      = "wrong";
     this.wrong.LabelProp = global::Mono.Unix.Catalog.GetString("(Base64 wrong format!)");
     this.fixed1.Add(this.wrong);
     global::Gtk.Fixed.FixedChild w6 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.wrong]));
     w6.X = 255;
     w6.Y = 257;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.image2        = new global::Gtk.Image();
     this.image2.Name   = "image2";
     this.image2.Pixbuf = global::Gdk.Pixbuf.LoadFromResource("LifeBuoy.top.png");
     this.fixed1.Add(this.image2);
     this.Add(this.fixed1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 500;
     this.DefaultHeight = 325;
     this.Show();
     this.DeleteEvent    += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.rescue.Clicked += new global::System.EventHandler(this.OnRescueBtnClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget YahtzeeSharp.frmMain
     this.UIManager = new global::Gtk.UIManager ();
     global::Gtk.ActionGroup w1 = new global::Gtk.ActionGroup ("Default");
     this.NewGame = new global::Gtk.Action ("NewGame", global::Mono.Unix.Catalog.GetString ("New Game"), global::Mono.Unix.Catalog.GetString ("Start a New Game"), "gtk-new");
     this.NewGame.ShortLabel = "New Game";
     w1.Add (this.NewGame, null);
     this.open = new global::Gtk.Action ("open", null, null, "gtk-open");
     w1.Add (this.open, null);
     this.save = new global::Gtk.Action ("save", null, null, "gtk-save");
     w1.Add (this.save, null);
     this.About = new global::Gtk.Action ("About", global::Mono.Unix.Catalog.GetString ("About"), null, "gtk-dialog-question");
     this.About.ShortLabel = "About";
     w1.Add (this.About, null);
     this.quit = new global::Gtk.Action ("quit", null, null, "gtk-quit");
     w1.Add (this.quit, null);
     this.@add = new global::Gtk.Action ("add", null, null, "gtk-add");
     w1.Add (this.@add, null);
     this.help = new global::Gtk.Action ("help", null, null, "gtk-help");
     w1.Add (this.help, null);
     this.help1 = new global::Gtk.Action ("help1", null, null, "gtk-help");
     w1.Add (this.help1, null);
     this.UIManager.InsertActionGroup (w1, 0);
     this.AddAccelGroup (this.UIManager.AccelGroup);
     this.WidthRequest = 985;
     this.HeightRequest = 785;
     this.Name = "YahtzeeSharp.frmMain";
     this.Title = global::Mono.Unix.Catalog.GetString ("Yahtzee Sharp");
     this.Icon = global::Gdk.Pixbuf.LoadFromResource ("YSlogo.png");
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     this.AllowShrink = true;
     this.DefaultWidth = 985;
     this.DefaultHeight = 785;
     // Container child YahtzeeSharp.frmMain.Gtk.Container+ContainerChild
     this.hbox3 = new global::Gtk.HBox ();
     this.hbox3.Name = "hbox3";
     // Container child hbox3.Gtk.Box+BoxChild
     this.scrolledwindow1 = new global::Gtk.ScrolledWindow ();
     this.scrolledwindow1.CanFocus = true;
     this.scrolledwindow1.Name = "scrolledwindow1";
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     global::Gtk.Viewport w2 = new global::Gtk.Viewport ();
     w2.ShadowType = ((global::Gtk.ShadowType)(0));
     // Container child GtkViewport.Gtk.Container+ContainerChild
     this.vbox2 = new global::Gtk.VBox ();
     this.vbox2.Name = "vbox2";
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1 = new global::Gtk.HBox ();
     this.hbox1.Name = "hbox1";
     this.hbox1.Spacing = 4;
     this.hbox1.BorderWidth = ((uint)(5));
     // Container child hbox1.Gtk.Box+BoxChild
     this.frame2 = new global::Gtk.Frame ();
     this.frame2.Name = "frame2";
     this.frame2.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child frame2.Gtk.Container+ContainerChild
     this.GtkAlignment = new global::Gtk.Alignment (0.5f, 0.5f, 1f, 1f);
     this.GtkAlignment.Name = "GtkAlignment";
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     this.UIManager.AddUiFromString ("<ui><toolbar name='toolbar2'><toolitem name='NewGame' action='NewGame'/><toolitem name='open' action='open'/><toolitem name='save' action='save'/><toolitem name='About' action='About'/><toolitem name='quit' action='quit'/></toolbar></ui>");
     this.toolbar2 = ((global::Gtk.Toolbar)(this.UIManager.GetWidget ("/toolbar2")));
     this.toolbar2.Name = "toolbar2";
     this.toolbar2.Orientation = ((global::Gtk.Orientation)(1));
     this.toolbar2.ShowArrow = false;
     this.toolbar2.ToolbarStyle = ((global::Gtk.ToolbarStyle)(2));
     this.toolbar2.IconSize = ((global::Gtk.IconSize)(3));
     this.GtkAlignment.Add (this.toolbar2);
     this.frame2.Add (this.GtkAlignment);
     this.GtkLabel6 = new global::Gtk.Label ();
     this.GtkLabel6.Name = "GtkLabel6";
     this.GtkLabel6.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Menu</b>");
     this.GtkLabel6.UseMarkup = true;
     this.GtkLabel6.Justify = ((global::Gtk.Justification)(2));
     this.GtkLabel6.SingleLineMode = true;
     this.frame2.LabelWidget = this.GtkLabel6;
     this.hbox1.Add (this.frame2);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.frame2]));
     w5.Position = 0;
     w5.Expand = false;
     w5.Fill = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.vpaned2 = new global::Gtk.VPaned ();
     this.vpaned2.WidthRequest = 205;
     this.vpaned2.CanFocus = true;
     this.vpaned2.Name = "vpaned2";
     this.vpaned2.Position = 366;
     // Container child vpaned2.Gtk.Paned+PanedChild
     this.frame3 = new global::Gtk.Frame ();
     this.frame3.Name = "frame3";
     this.frame3.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child frame3.Gtk.Container+ContainerChild
     this.gvHighScore = new global::Gtk.TreeView ();
     this.gvHighScore.CanFocus = true;
     this.gvHighScore.Name = "gvHighScore";
     this.gvHighScore.EnableSearch = false;
     this.gvHighScore.RulesHint = true;
     this.gvHighScore.SearchColumn = 2;
     this.frame3.Add (this.gvHighScore);
     this.vpaned2.Add (this.frame3);
     this.hbox1.Add (this.vpaned2);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.vpaned2]));
     w8.Position = 1;
     w8.Padding = ((uint)(3));
     // Container child hbox1.Gtk.Box+BoxChild
     this.frame5 = new global::Gtk.Frame ();
     this.frame5.Name = "frame5";
     // Container child frame5.Gtk.Container+ContainerChild
     this.vbox4 = new global::Gtk.VBox ();
     this.vbox4.Name = "vbox4";
     // Container child vbox4.Gtk.Box+BoxChild
     this.pnloop = new global::Gtk.Frame ();
     this.pnloop.Name = "pnloop";
     // Container child pnloop.Gtk.Container+ContainerChild
     this.pnlUpperScore = new global::Gtk.Table (((uint)(10)), ((uint)(7)), false);
     this.pnlUpperScore.Name = "pnlUpperScore";
     this.pnlUpperScore.RowSpacing = ((uint)(6));
     this.pnlUpperScore.ColumnSpacing = ((uint)(6));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame10 = new global::Gtk.Frame ();
     this.frame10.Name = "frame10";
     // Container child frame10.Gtk.Container+ContainerChild
     this.image16 = new global::Gtk.Image ();
     this.image16.Name = "image16";
     this.image16.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("h5.png");
     this.frame10.Add (this.image16);
     this.pnlUpperScore.Add (this.frame10);
     global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame10]));
     w10.LeftAttach = ((uint)(4));
     w10.RightAttach = ((uint)(5));
     w10.XOptions = ((global::Gtk.AttachOptions)(4));
     w10.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame11 = new global::Gtk.Frame ();
     this.frame11.Name = "frame11";
     // Container child frame11.Gtk.Container+ContainerChild
     this.image17 = new global::Gtk.Image ();
     this.image17.Name = "image17";
     this.image17.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("h6.png");
     this.frame11.Add (this.image17);
     this.pnlUpperScore.Add (this.frame11);
     global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame11]));
     w12.LeftAttach = ((uint)(5));
     w12.RightAttach = ((uint)(6));
     w12.XOptions = ((global::Gtk.AttachOptions)(4));
     w12.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame12 = new global::Gtk.Frame ();
     this.frame12.Name = "frame12";
     // Container child frame12.Gtk.Container+ContainerChild
     this.image4 = new global::Gtk.Image ();
     this.image4.Name = "image4";
     this.image4.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dd2.png");
     this.frame12.Add (this.image4);
     this.pnlUpperScore.Add (this.frame12);
     global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame12]));
     w14.TopAttach = ((uint)(2));
     w14.BottomAttach = ((uint)(3));
     w14.XOptions = ((global::Gtk.AttachOptions)(4));
     w14.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame13 = new global::Gtk.Frame ();
     this.frame13.Name = "frame13";
     // Container child frame13.Gtk.Container+ContainerChild
     this.image5 = new global::Gtk.Image ();
     this.image5.Name = "image5";
     this.image5.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dd3.png");
     this.frame13.Add (this.image5);
     this.pnlUpperScore.Add (this.frame13);
     global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame13]));
     w16.TopAttach = ((uint)(3));
     w16.BottomAttach = ((uint)(4));
     w16.XOptions = ((global::Gtk.AttachOptions)(4));
     w16.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame14 = new global::Gtk.Frame ();
     this.frame14.Name = "frame14";
     // Container child frame14.Gtk.Container+ContainerChild
     this.image6 = new global::Gtk.Image ();
     this.image6.Name = "image6";
     this.image6.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dd4.png");
     this.frame14.Add (this.image6);
     this.pnlUpperScore.Add (this.frame14);
     global::Gtk.Table.TableChild w18 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame14]));
     w18.TopAttach = ((uint)(4));
     w18.BottomAttach = ((uint)(5));
     w18.XOptions = ((global::Gtk.AttachOptions)(4));
     w18.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame15 = new global::Gtk.Frame ();
     this.frame15.Name = "frame15";
     // Container child frame15.Gtk.Container+ContainerChild
     this.image7 = new global::Gtk.Image ();
     this.image7.Name = "image7";
     this.image7.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dd5.png");
     this.frame15.Add (this.image7);
     this.pnlUpperScore.Add (this.frame15);
     global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame15]));
     w20.TopAttach = ((uint)(5));
     w20.BottomAttach = ((uint)(6));
     w20.XOptions = ((global::Gtk.AttachOptions)(4));
     w20.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame16 = new global::Gtk.Frame ();
     this.frame16.Name = "frame16";
     // Container child frame16.Gtk.Container+ContainerChild
     this.image8 = new global::Gtk.Image ();
     this.image8.Name = "image8";
     this.image8.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dd6.png");
     this.frame16.Add (this.image8);
     this.pnlUpperScore.Add (this.frame16);
     global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame16]));
     w22.TopAttach = ((uint)(6));
     w22.BottomAttach = ((uint)(7));
     w22.XOptions = ((global::Gtk.AttachOptions)(4));
     w22.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame17 = new global::Gtk.Frame ();
     this.frame17.Name = "frame17";
     // Container child frame17.Gtk.Container+ContainerChild
     this.image9 = new global::Gtk.Image ();
     this.image9.Name = "image9";
     this.image9.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("c8.png");
     this.frame17.Add (this.image9);
     this.pnlUpperScore.Add (this.frame17);
     global::Gtk.Table.TableChild w24 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame17]));
     w24.TopAttach = ((uint)(7));
     w24.BottomAttach = ((uint)(8));
     w24.XOptions = ((global::Gtk.AttachOptions)(4));
     w24.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame18 = new global::Gtk.Frame ();
     this.frame18.Name = "frame18";
     // Container child frame18.Gtk.Container+ContainerChild
     this.image10 = new global::Gtk.Image ();
     this.image10.Name = "image10";
     this.image10.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("c9.png");
     this.frame18.Add (this.image10);
     this.pnlUpperScore.Add (this.frame18);
     global::Gtk.Table.TableChild w26 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame18]));
     w26.TopAttach = ((uint)(8));
     w26.BottomAttach = ((uint)(9));
     w26.XOptions = ((global::Gtk.AttachOptions)(4));
     w26.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame19 = new global::Gtk.Frame ();
     this.frame19.Name = "frame19";
     // Container child frame19.Gtk.Container+ContainerChild
     this.image11 = new global::Gtk.Image ();
     this.image11.Name = "image11";
     this.image11.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("totalUpper.png");
     this.frame19.Add (this.image11);
     this.pnlUpperScore.Add (this.frame19);
     global::Gtk.Table.TableChild w28 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame19]));
     w28.TopAttach = ((uint)(9));
     w28.BottomAttach = ((uint)(10));
     w28.XOptions = ((global::Gtk.AttachOptions)(4));
     w28.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame20 = new global::Gtk.Frame ();
     this.frame20.Name = "frame20";
     // Container child frame20.Gtk.Container+ContainerChild
     this.image12 = new global::Gtk.Image ();
     this.image12.Name = "image12";
     this.image12.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("Aces.png");
     this.frame20.Add (this.image12);
     this.pnlUpperScore.Add (this.frame20);
     global::Gtk.Table.TableChild w30 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame20]));
     w30.TopAttach = ((uint)(1));
     w30.BottomAttach = ((uint)(2));
     w30.LeftAttach = ((uint)(1));
     w30.RightAttach = ((uint)(2));
     w30.XOptions = ((global::Gtk.AttachOptions)(4));
     w30.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame21 = new global::Gtk.Frame ();
     this.frame21.Name = "frame21";
     // Container child frame21.Gtk.Container+ContainerChild
     this.image19 = new global::Gtk.Image ();
     this.image19.Name = "image19";
     this.image19.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("Twos.png");
     this.frame21.Add (this.image19);
     this.pnlUpperScore.Add (this.frame21);
     global::Gtk.Table.TableChild w32 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame21]));
     w32.TopAttach = ((uint)(2));
     w32.BottomAttach = ((uint)(3));
     w32.LeftAttach = ((uint)(1));
     w32.RightAttach = ((uint)(2));
     w32.XOptions = ((global::Gtk.AttachOptions)(4));
     w32.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame22 = new global::Gtk.Frame ();
     this.frame22.Name = "frame22";
     // Container child frame22.Gtk.Container+ContainerChild
     this.image20 = new global::Gtk.Image ();
     this.image20.Name = "image20";
     this.image20.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("Threes.png");
     this.frame22.Add (this.image20);
     this.pnlUpperScore.Add (this.frame22);
     global::Gtk.Table.TableChild w34 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame22]));
     w34.TopAttach = ((uint)(3));
     w34.BottomAttach = ((uint)(4));
     w34.LeftAttach = ((uint)(1));
     w34.RightAttach = ((uint)(2));
     w34.XOptions = ((global::Gtk.AttachOptions)(4));
     w34.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame23 = new global::Gtk.Frame ();
     this.frame23.Name = "frame23";
     // Container child frame23.Gtk.Container+ContainerChild
     this.image21 = new global::Gtk.Image ();
     this.image21.Name = "image21";
     this.image21.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("Fours.png");
     this.frame23.Add (this.image21);
     this.pnlUpperScore.Add (this.frame23);
     global::Gtk.Table.TableChild w36 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame23]));
     w36.TopAttach = ((uint)(4));
     w36.BottomAttach = ((uint)(5));
     w36.LeftAttach = ((uint)(1));
     w36.RightAttach = ((uint)(2));
     w36.XOptions = ((global::Gtk.AttachOptions)(4));
     w36.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame24 = new global::Gtk.Frame ();
     this.frame24.Name = "frame24";
     // Container child frame24.Gtk.Container+ContainerChild
     this.image22 = new global::Gtk.Image ();
     this.image22.Name = "image22";
     this.image22.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("Fives.png");
     this.frame24.Add (this.image22);
     this.pnlUpperScore.Add (this.frame24);
     global::Gtk.Table.TableChild w38 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame24]));
     w38.TopAttach = ((uint)(5));
     w38.BottomAttach = ((uint)(6));
     w38.LeftAttach = ((uint)(1));
     w38.RightAttach = ((uint)(2));
     w38.XOptions = ((global::Gtk.AttachOptions)(4));
     w38.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame25 = new global::Gtk.Frame ();
     this.frame25.Name = "frame25";
     // Container child frame25.Gtk.Container+ContainerChild
     this.image23 = new global::Gtk.Image ();
     this.image23.Name = "image23";
     this.image23.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("Sixes.png");
     this.frame25.Add (this.image23);
     this.pnlUpperScore.Add (this.frame25);
     global::Gtk.Table.TableChild w40 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame25]));
     w40.TopAttach = ((uint)(6));
     w40.BottomAttach = ((uint)(7));
     w40.LeftAttach = ((uint)(1));
     w40.RightAttach = ((uint)(2));
     w40.XOptions = ((global::Gtk.AttachOptions)(4));
     w40.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame26 = new global::Gtk.Frame ();
     this.frame26.Name = "frame26";
     // Container child frame26.Gtk.Container+ContainerChild
     this.image24 = new global::Gtk.Image ();
     this.image24.Name = "image24";
     this.image24.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("arrow_temp.png");
     this.frame26.Add (this.image24);
     this.pnlUpperScore.Add (this.frame26);
     global::Gtk.Table.TableChild w42 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame26]));
     w42.TopAttach = ((uint)(7));
     w42.BottomAttach = ((uint)(8));
     w42.LeftAttach = ((uint)(1));
     w42.RightAttach = ((uint)(2));
     w42.XOptions = ((global::Gtk.AttachOptions)(4));
     w42.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame27 = new global::Gtk.Frame ();
     this.frame27.Name = "frame27";
     // Container child frame27.Gtk.Container+ContainerChild
     this.image25 = new global::Gtk.Image ();
     this.image25.Name = "image25";
     this.image25.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("SCORE2.png");
     this.frame27.Add (this.image25);
     this.pnlUpperScore.Add (this.frame27);
     global::Gtk.Table.TableChild w44 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame27]));
     w44.TopAttach = ((uint)(8));
     w44.BottomAttach = ((uint)(9));
     w44.LeftAttach = ((uint)(1));
     w44.RightAttach = ((uint)(2));
     w44.XOptions = ((global::Gtk.AttachOptions)(4));
     w44.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame28 = new global::Gtk.Frame ();
     this.frame28.Name = "frame28";
     // Container child frame28.Gtk.Container+ContainerChild
     this.image26 = new global::Gtk.Image ();
     this.image26.Name = "image26";
     this.image26.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("arrow_temp.png");
     this.frame28.Add (this.image26);
     this.pnlUpperScore.Add (this.frame28);
     global::Gtk.Table.TableChild w46 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame28]));
     w46.TopAttach = ((uint)(9));
     w46.BottomAttach = ((uint)(10));
     w46.LeftAttach = ((uint)(1));
     w46.RightAttach = ((uint)(2));
     w46.XOptions = ((global::Gtk.AttachOptions)(4));
     w46.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame4 = new global::Gtk.Frame ();
     this.frame4.Name = "frame4";
     // Container child frame4.Gtk.Container+ContainerChild
     this.image1 = new global::Gtk.Image ();
     this.image1.Name = "image1";
     this.image1.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("h1.png");
     this.frame4.Add (this.image1);
     this.pnlUpperScore.Add (this.frame4);
     global::Gtk.Table.TableChild w48 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame4]));
     w48.XOptions = ((global::Gtk.AttachOptions)(4));
     w48.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame54 = new global::Gtk.Frame ();
     this.frame54.Name = "frame54";
     // Container child frame54.Gtk.Container+ContainerChild
     this.image54 = new global::Gtk.Image ();
     this.image54.Name = "image54";
     this.image54.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("h3.png");
     this.frame54.Add (this.image54);
     this.pnlUpperScore.Add (this.frame54);
     global::Gtk.Table.TableChild w50 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame54]));
     w50.LeftAttach = ((uint)(2));
     w50.RightAttach = ((uint)(3));
     w50.XOptions = ((global::Gtk.AttachOptions)(4));
     w50.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame6 = new global::Gtk.Frame ();
     this.frame6.Name = "frame6";
     // Container child frame6.Gtk.Container+ContainerChild
     this.image18 = new global::Gtk.Image ();
     this.image18.Name = "image18";
     this.image18.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("h7.png");
     this.frame6.Add (this.image18);
     this.pnlUpperScore.Add (this.frame6);
     global::Gtk.Table.TableChild w52 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame6]));
     w52.LeftAttach = ((uint)(6));
     w52.RightAttach = ((uint)(7));
     w52.XOptions = ((global::Gtk.AttachOptions)(4));
     w52.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame7 = new global::Gtk.Frame ();
     this.frame7.Name = "frame7";
     // Container child frame7.Gtk.Container+ContainerChild
     this.image13 = new global::Gtk.Image ();
     this.image13.Name = "image13";
     this.image13.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("h2.png");
     this.frame7.Add (this.image13);
     this.pnlUpperScore.Add (this.frame7);
     global::Gtk.Table.TableChild w54 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame7]));
     w54.LeftAttach = ((uint)(1));
     w54.RightAttach = ((uint)(2));
     w54.XOptions = ((global::Gtk.AttachOptions)(4));
     w54.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame8 = new global::Gtk.Frame ();
     this.frame8.Name = "frame8";
     // Container child frame8.Gtk.Container+ContainerChild
     this.image3 = new global::Gtk.Image ();
     this.image3.Name = "image3";
     this.image3.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dd1.png");
     this.frame8.Add (this.image3);
     this.pnlUpperScore.Add (this.frame8);
     global::Gtk.Table.TableChild w56 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame8]));
     w56.TopAttach = ((uint)(1));
     w56.BottomAttach = ((uint)(2));
     w56.XOptions = ((global::Gtk.AttachOptions)(4));
     w56.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.frame9 = new global::Gtk.Frame ();
     this.frame9.Name = "frame9";
     // Container child frame9.Gtk.Container+ContainerChild
     this.image15 = new global::Gtk.Image ();
     this.image15.Name = "image15";
     this.image15.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("h4.png");
     this.frame9.Add (this.image15);
     this.pnlUpperScore.Add (this.frame9);
     global::Gtk.Table.TableChild w58 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.frame9]));
     w58.LeftAttach = ((uint)(3));
     w58.RightAttach = ((uint)(4));
     w58.XOptions = ((global::Gtk.AttachOptions)(4));
     w58.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r0c1 = new global::Gtk.Frame ();
     this.r0c1.Name = "r0c1";
     // Container child r0c1.Gtk.Container+ContainerChild
     this.btnr0c1 = new global::Gtk.Button ();
     global::Gtk.Tooltips w59 = new Gtk.Tooltips ();
     w59.SetTip (this.btnr0c1, "Ones", "Ones");
     this.btnr0c1.WidthRequest = 30;
     this.btnr0c1.HeightRequest = 27;
     this.btnr0c1.CanFocus = true;
     this.btnr0c1.Name = "btnr0c1";
     this.btnr0c1.UseUnderline = true;
     this.btnr0c1.FocusOnClick = false;
     this.btnr0c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr0c1.Label = "";
     this.r0c1.Add (this.btnr0c1);
     this.pnlUpperScore.Add (this.r0c1);
     global::Gtk.Table.TableChild w61 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r0c1]));
     w61.TopAttach = ((uint)(1));
     w61.BottomAttach = ((uint)(2));
     w61.LeftAttach = ((uint)(2));
     w61.RightAttach = ((uint)(3));
     w61.XOptions = ((global::Gtk.AttachOptions)(4));
     w61.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r0c2 = new global::Gtk.Frame ();
     this.r0c2.Name = "r0c2";
     // Container child r0c2.Gtk.Container+ContainerChild
     this.btnr0c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr0c2, "Ones", "Ones");
     this.btnr0c2.WidthRequest = 30;
     this.btnr0c2.HeightRequest = 27;
     this.btnr0c2.CanFocus = true;
     this.btnr0c2.Name = "btnr0c2";
     this.btnr0c2.UseUnderline = true;
     this.btnr0c2.FocusOnClick = false;
     this.btnr0c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr0c2.Label = "";
     this.r0c2.Add (this.btnr0c2);
     this.pnlUpperScore.Add (this.r0c2);
     global::Gtk.Table.TableChild w63 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r0c2]));
     w63.TopAttach = ((uint)(1));
     w63.BottomAttach = ((uint)(2));
     w63.LeftAttach = ((uint)(3));
     w63.RightAttach = ((uint)(4));
     w63.XOptions = ((global::Gtk.AttachOptions)(4));
     w63.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r0c3 = new global::Gtk.Frame ();
     this.r0c3.Name = "r0c3";
     // Container child r0c3.Gtk.Container+ContainerChild
     this.btnr0c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr0c3, "Ones", "Ones");
     this.btnr0c3.WidthRequest = 30;
     this.btnr0c3.HeightRequest = 27;
     this.btnr0c3.CanFocus = true;
     this.btnr0c3.Name = "btnr0c3";
     this.btnr0c3.UseUnderline = true;
     this.btnr0c3.FocusOnClick = false;
     this.btnr0c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr0c3.Label = "";
     this.r0c3.Add (this.btnr0c3);
     this.pnlUpperScore.Add (this.r0c3);
     global::Gtk.Table.TableChild w65 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r0c3]));
     w65.TopAttach = ((uint)(1));
     w65.BottomAttach = ((uint)(2));
     w65.LeftAttach = ((uint)(4));
     w65.RightAttach = ((uint)(5));
     w65.XOptions = ((global::Gtk.AttachOptions)(4));
     w65.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r0c4 = new global::Gtk.Frame ();
     this.r0c4.Name = "r0c4";
     // Container child r0c4.Gtk.Container+ContainerChild
     this.btnr0c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr0c4, "Ones", "Ones");
     this.btnr0c4.WidthRequest = 30;
     this.btnr0c4.HeightRequest = 27;
     this.btnr0c4.CanFocus = true;
     this.btnr0c4.Name = "btnr0c4";
     this.btnr0c4.UseUnderline = true;
     this.btnr0c4.FocusOnClick = false;
     this.btnr0c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr0c4.Label = "";
     this.r0c4.Add (this.btnr0c4);
     this.pnlUpperScore.Add (this.r0c4);
     global::Gtk.Table.TableChild w67 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r0c4]));
     w67.TopAttach = ((uint)(1));
     w67.BottomAttach = ((uint)(2));
     w67.LeftAttach = ((uint)(5));
     w67.RightAttach = ((uint)(6));
     w67.XOptions = ((global::Gtk.AttachOptions)(4));
     w67.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r0c5 = new global::Gtk.Frame ();
     this.r0c5.Name = "r0c5";
     // Container child r0c5.Gtk.Container+ContainerChild
     this.btnr0c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr0c5, "Ones", "Ones");
     this.btnr0c5.WidthRequest = 30;
     this.btnr0c5.HeightRequest = 27;
     this.btnr0c5.CanFocus = true;
     this.btnr0c5.Name = "btnr0c5";
     this.btnr0c5.UseUnderline = true;
     this.btnr0c5.FocusOnClick = false;
     this.btnr0c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr0c5.Label = "";
     this.r0c5.Add (this.btnr0c5);
     this.pnlUpperScore.Add (this.r0c5);
     global::Gtk.Table.TableChild w69 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r0c5]));
     w69.TopAttach = ((uint)(1));
     w69.BottomAttach = ((uint)(2));
     w69.LeftAttach = ((uint)(6));
     w69.RightAttach = ((uint)(7));
     w69.XOptions = ((global::Gtk.AttachOptions)(4));
     w69.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r1c1 = new global::Gtk.Frame ();
     this.r1c1.Name = "r1c1";
     // Container child r1c1.Gtk.Container+ContainerChild
     this.btnr1c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr1c1, "Twos", "Twos");
     this.btnr1c1.WidthRequest = 30;
     this.btnr1c1.HeightRequest = 27;
     this.btnr1c1.CanFocus = true;
     this.btnr1c1.Name = "btnr1c1";
     this.btnr1c1.UseUnderline = true;
     this.btnr1c1.FocusOnClick = false;
     this.btnr1c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr1c1.Label = "";
     this.r1c1.Add (this.btnr1c1);
     this.pnlUpperScore.Add (this.r1c1);
     global::Gtk.Table.TableChild w71 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r1c1]));
     w71.TopAttach = ((uint)(2));
     w71.BottomAttach = ((uint)(3));
     w71.LeftAttach = ((uint)(2));
     w71.RightAttach = ((uint)(3));
     w71.XOptions = ((global::Gtk.AttachOptions)(4));
     w71.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r1c2 = new global::Gtk.Frame ();
     this.r1c2.Name = "r1c2";
     // Container child r1c2.Gtk.Container+ContainerChild
     this.btnr1c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr1c2, "Twos", "Twos");
     this.btnr1c2.WidthRequest = 30;
     this.btnr1c2.HeightRequest = 27;
     this.btnr1c2.CanFocus = true;
     this.btnr1c2.Name = "btnr1c2";
     this.btnr1c2.UseUnderline = true;
     this.btnr1c2.FocusOnClick = false;
     this.btnr1c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr1c2.Label = "";
     this.r1c2.Add (this.btnr1c2);
     this.pnlUpperScore.Add (this.r1c2);
     global::Gtk.Table.TableChild w73 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r1c2]));
     w73.TopAttach = ((uint)(2));
     w73.BottomAttach = ((uint)(3));
     w73.LeftAttach = ((uint)(3));
     w73.RightAttach = ((uint)(4));
     w73.XOptions = ((global::Gtk.AttachOptions)(4));
     w73.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r1c3 = new global::Gtk.Frame ();
     this.r1c3.Name = "r1c3";
     // Container child r1c3.Gtk.Container+ContainerChild
     this.btnr1c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr1c3, "Twos", "Twos");
     this.btnr1c3.WidthRequest = 30;
     this.btnr1c3.HeightRequest = 27;
     this.btnr1c3.CanFocus = true;
     this.btnr1c3.Name = "btnr1c3";
     this.btnr1c3.UseUnderline = true;
     this.btnr1c3.FocusOnClick = false;
     this.btnr1c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr1c3.Label = "";
     this.r1c3.Add (this.btnr1c3);
     this.pnlUpperScore.Add (this.r1c3);
     global::Gtk.Table.TableChild w75 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r1c3]));
     w75.TopAttach = ((uint)(2));
     w75.BottomAttach = ((uint)(3));
     w75.LeftAttach = ((uint)(4));
     w75.RightAttach = ((uint)(5));
     w75.XOptions = ((global::Gtk.AttachOptions)(4));
     w75.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r1c4 = new global::Gtk.Frame ();
     this.r1c4.Name = "r1c4";
     // Container child r1c4.Gtk.Container+ContainerChild
     this.btnr1c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr1c4, "Twos", "Twos");
     this.btnr1c4.WidthRequest = 30;
     this.btnr1c4.HeightRequest = 27;
     this.btnr1c4.CanFocus = true;
     this.btnr1c4.Name = "btnr1c4";
     this.btnr1c4.UseUnderline = true;
     this.btnr1c4.FocusOnClick = false;
     this.btnr1c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr1c4.Label = "";
     this.r1c4.Add (this.btnr1c4);
     this.pnlUpperScore.Add (this.r1c4);
     global::Gtk.Table.TableChild w77 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r1c4]));
     w77.TopAttach = ((uint)(2));
     w77.BottomAttach = ((uint)(3));
     w77.LeftAttach = ((uint)(5));
     w77.RightAttach = ((uint)(6));
     w77.XOptions = ((global::Gtk.AttachOptions)(4));
     w77.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r1c5 = new global::Gtk.Frame ();
     this.r1c5.Name = "r1c5";
     // Container child r1c5.Gtk.Container+ContainerChild
     this.btnr1c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr1c5, "Twos", "Twos");
     this.btnr1c5.WidthRequest = 30;
     this.btnr1c5.HeightRequest = 27;
     this.btnr1c5.CanFocus = true;
     this.btnr1c5.Name = "btnr1c5";
     this.btnr1c5.UseUnderline = true;
     this.btnr1c5.FocusOnClick = false;
     this.btnr1c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr1c5.Label = "";
     this.r1c5.Add (this.btnr1c5);
     this.pnlUpperScore.Add (this.r1c5);
     global::Gtk.Table.TableChild w79 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r1c5]));
     w79.TopAttach = ((uint)(2));
     w79.BottomAttach = ((uint)(3));
     w79.LeftAttach = ((uint)(6));
     w79.RightAttach = ((uint)(7));
     w79.XOptions = ((global::Gtk.AttachOptions)(4));
     w79.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r2c1 = new global::Gtk.Frame ();
     this.r2c1.Name = "r2c1";
     // Container child r2c1.Gtk.Container+ContainerChild
     this.btnr2c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr2c1, "Threes", "Threes");
     this.btnr2c1.WidthRequest = 30;
     this.btnr2c1.HeightRequest = 27;
     this.btnr2c1.CanFocus = true;
     this.btnr2c1.Name = "btnr2c1";
     this.btnr2c1.UseUnderline = true;
     this.btnr2c1.FocusOnClick = false;
     this.btnr2c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr2c1.Label = "";
     this.r2c1.Add (this.btnr2c1);
     this.pnlUpperScore.Add (this.r2c1);
     global::Gtk.Table.TableChild w81 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r2c1]));
     w81.TopAttach = ((uint)(3));
     w81.BottomAttach = ((uint)(4));
     w81.LeftAttach = ((uint)(2));
     w81.RightAttach = ((uint)(3));
     w81.XOptions = ((global::Gtk.AttachOptions)(4));
     w81.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r2c2 = new global::Gtk.Frame ();
     this.r2c2.Name = "r2c2";
     // Container child r2c2.Gtk.Container+ContainerChild
     this.btnr2c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr2c2, "Threes", "Threes");
     this.btnr2c2.WidthRequest = 30;
     this.btnr2c2.HeightRequest = 27;
     this.btnr2c2.CanFocus = true;
     this.btnr2c2.Name = "btnr2c2";
     this.btnr2c2.UseUnderline = true;
     this.btnr2c2.FocusOnClick = false;
     this.btnr2c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr2c2.Label = "";
     this.r2c2.Add (this.btnr2c2);
     this.pnlUpperScore.Add (this.r2c2);
     global::Gtk.Table.TableChild w83 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r2c2]));
     w83.TopAttach = ((uint)(3));
     w83.BottomAttach = ((uint)(4));
     w83.LeftAttach = ((uint)(3));
     w83.RightAttach = ((uint)(4));
     w83.XOptions = ((global::Gtk.AttachOptions)(4));
     w83.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r2c3 = new global::Gtk.Frame ();
     this.r2c3.Name = "r2c3";
     // Container child r2c3.Gtk.Container+ContainerChild
     this.btnr2c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr2c3, "Threes", "Threes");
     this.btnr2c3.WidthRequest = 30;
     this.btnr2c3.HeightRequest = 27;
     this.btnr2c3.CanFocus = true;
     this.btnr2c3.Name = "btnr2c3";
     this.btnr2c3.UseUnderline = true;
     this.btnr2c3.FocusOnClick = false;
     this.btnr2c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr2c3.Label = "";
     this.r2c3.Add (this.btnr2c3);
     this.pnlUpperScore.Add (this.r2c3);
     global::Gtk.Table.TableChild w85 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r2c3]));
     w85.TopAttach = ((uint)(3));
     w85.BottomAttach = ((uint)(4));
     w85.LeftAttach = ((uint)(4));
     w85.RightAttach = ((uint)(5));
     w85.XOptions = ((global::Gtk.AttachOptions)(4));
     w85.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r2c4 = new global::Gtk.Frame ();
     this.r2c4.Name = "r2c4";
     // Container child r2c4.Gtk.Container+ContainerChild
     this.btnr2c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr2c4, "Threes", "Threes");
     this.btnr2c4.WidthRequest = 30;
     this.btnr2c4.HeightRequest = 27;
     this.btnr2c4.CanFocus = true;
     this.btnr2c4.Name = "btnr2c4";
     this.btnr2c4.UseUnderline = true;
     this.btnr2c4.FocusOnClick = false;
     this.btnr2c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr2c4.Label = "";
     this.r2c4.Add (this.btnr2c4);
     this.pnlUpperScore.Add (this.r2c4);
     global::Gtk.Table.TableChild w87 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r2c4]));
     w87.TopAttach = ((uint)(3));
     w87.BottomAttach = ((uint)(4));
     w87.LeftAttach = ((uint)(5));
     w87.RightAttach = ((uint)(6));
     w87.XOptions = ((global::Gtk.AttachOptions)(4));
     w87.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r2c5 = new global::Gtk.Frame ();
     this.r2c5.Name = "r2c5";
     // Container child r2c5.Gtk.Container+ContainerChild
     this.btnr2c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr2c5, "Threes", "Threes");
     this.btnr2c5.WidthRequest = 30;
     this.btnr2c5.HeightRequest = 27;
     this.btnr2c5.CanFocus = true;
     this.btnr2c5.Name = "btnr2c5";
     this.btnr2c5.UseUnderline = true;
     this.btnr2c5.FocusOnClick = false;
     this.btnr2c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr2c5.Label = "";
     this.r2c5.Add (this.btnr2c5);
     this.pnlUpperScore.Add (this.r2c5);
     global::Gtk.Table.TableChild w89 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r2c5]));
     w89.TopAttach = ((uint)(3));
     w89.BottomAttach = ((uint)(4));
     w89.LeftAttach = ((uint)(6));
     w89.RightAttach = ((uint)(7));
     w89.XOptions = ((global::Gtk.AttachOptions)(4));
     w89.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r3c1 = new global::Gtk.Frame ();
     this.r3c1.Name = "r3c1";
     // Container child r3c1.Gtk.Container+ContainerChild
     this.btnr3c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr3c1, "Fours", "Fours");
     this.btnr3c1.WidthRequest = 30;
     this.btnr3c1.HeightRequest = 27;
     this.btnr3c1.CanFocus = true;
     this.btnr3c1.Name = "btnr3c1";
     this.btnr3c1.UseUnderline = true;
     this.btnr3c1.FocusOnClick = false;
     this.btnr3c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr3c1.Label = "";
     this.r3c1.Add (this.btnr3c1);
     this.pnlUpperScore.Add (this.r3c1);
     global::Gtk.Table.TableChild w91 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r3c1]));
     w91.TopAttach = ((uint)(4));
     w91.BottomAttach = ((uint)(5));
     w91.LeftAttach = ((uint)(2));
     w91.RightAttach = ((uint)(3));
     w91.XOptions = ((global::Gtk.AttachOptions)(4));
     w91.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r3c2 = new global::Gtk.Frame ();
     this.r3c2.Name = "r3c2";
     // Container child r3c2.Gtk.Container+ContainerChild
     this.btnr3c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr3c2, "Fours", "Fours");
     this.btnr3c2.WidthRequest = 30;
     this.btnr3c2.HeightRequest = 27;
     this.btnr3c2.CanFocus = true;
     this.btnr3c2.Name = "btnr3c2";
     this.btnr3c2.UseUnderline = true;
     this.btnr3c2.FocusOnClick = false;
     this.btnr3c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr3c2.Label = "";
     this.r3c2.Add (this.btnr3c2);
     this.pnlUpperScore.Add (this.r3c2);
     global::Gtk.Table.TableChild w93 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r3c2]));
     w93.TopAttach = ((uint)(4));
     w93.BottomAttach = ((uint)(5));
     w93.LeftAttach = ((uint)(3));
     w93.RightAttach = ((uint)(4));
     w93.XOptions = ((global::Gtk.AttachOptions)(4));
     w93.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r3c3 = new global::Gtk.Frame ();
     this.r3c3.Name = "r3c3";
     // Container child r3c3.Gtk.Container+ContainerChild
     this.btnr3c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr3c3, "Fours", "Fours");
     this.btnr3c3.WidthRequest = 30;
     this.btnr3c3.HeightRequest = 27;
     this.btnr3c3.CanFocus = true;
     this.btnr3c3.Name = "btnr3c3";
     this.btnr3c3.UseUnderline = true;
     this.btnr3c3.FocusOnClick = false;
     this.btnr3c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr3c3.Label = "";
     this.r3c3.Add (this.btnr3c3);
     this.pnlUpperScore.Add (this.r3c3);
     global::Gtk.Table.TableChild w95 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r3c3]));
     w95.TopAttach = ((uint)(4));
     w95.BottomAttach = ((uint)(5));
     w95.LeftAttach = ((uint)(4));
     w95.RightAttach = ((uint)(5));
     w95.XOptions = ((global::Gtk.AttachOptions)(4));
     w95.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r3c4 = new global::Gtk.Frame ();
     this.r3c4.Name = "r3c4";
     // Container child r3c4.Gtk.Container+ContainerChild
     this.btnr3c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr3c4, "Fours", "Fours");
     this.btnr3c4.WidthRequest = 30;
     this.btnr3c4.HeightRequest = 27;
     this.btnr3c4.CanFocus = true;
     this.btnr3c4.Name = "btnr3c4";
     this.btnr3c4.UseUnderline = true;
     this.btnr3c4.FocusOnClick = false;
     this.btnr3c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr3c4.Label = "";
     this.r3c4.Add (this.btnr3c4);
     this.pnlUpperScore.Add (this.r3c4);
     global::Gtk.Table.TableChild w97 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r3c4]));
     w97.TopAttach = ((uint)(4));
     w97.BottomAttach = ((uint)(5));
     w97.LeftAttach = ((uint)(5));
     w97.RightAttach = ((uint)(6));
     w97.XOptions = ((global::Gtk.AttachOptions)(4));
     w97.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r3c5 = new global::Gtk.Frame ();
     this.r3c5.Name = "r3c5";
     // Container child r3c5.Gtk.Container+ContainerChild
     this.btnr3c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr3c5, "Fours", "Fours");
     this.btnr3c5.WidthRequest = 30;
     this.btnr3c5.HeightRequest = 27;
     this.btnr3c5.CanFocus = true;
     this.btnr3c5.Name = "btnr3c5";
     this.btnr3c5.UseUnderline = true;
     this.btnr3c5.FocusOnClick = false;
     this.btnr3c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr3c5.Label = "";
     this.r3c5.Add (this.btnr3c5);
     this.pnlUpperScore.Add (this.r3c5);
     global::Gtk.Table.TableChild w99 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r3c5]));
     w99.TopAttach = ((uint)(4));
     w99.BottomAttach = ((uint)(5));
     w99.LeftAttach = ((uint)(6));
     w99.RightAttach = ((uint)(7));
     w99.XOptions = ((global::Gtk.AttachOptions)(4));
     w99.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r4c1 = new global::Gtk.Frame ();
     this.r4c1.Name = "r4c1";
     // Container child r4c1.Gtk.Container+ContainerChild
     this.btnr4c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr4c1, "Fives", "Fives");
     this.btnr4c1.WidthRequest = 30;
     this.btnr4c1.HeightRequest = 27;
     this.btnr4c1.CanFocus = true;
     this.btnr4c1.Name = "btnr4c1";
     this.btnr4c1.UseUnderline = true;
     this.btnr4c1.FocusOnClick = false;
     this.btnr4c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr4c1.Label = "";
     this.r4c1.Add (this.btnr4c1);
     this.pnlUpperScore.Add (this.r4c1);
     global::Gtk.Table.TableChild w101 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r4c1]));
     w101.TopAttach = ((uint)(5));
     w101.BottomAttach = ((uint)(6));
     w101.LeftAttach = ((uint)(2));
     w101.RightAttach = ((uint)(3));
     w101.XOptions = ((global::Gtk.AttachOptions)(4));
     w101.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r4c2 = new global::Gtk.Frame ();
     this.r4c2.Name = "r4c2";
     // Container child r4c2.Gtk.Container+ContainerChild
     this.btnr4c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr4c2, "Fives", "Fives");
     this.btnr4c2.WidthRequest = 30;
     this.btnr4c2.HeightRequest = 27;
     this.btnr4c2.CanFocus = true;
     this.btnr4c2.Name = "btnr4c2";
     this.btnr4c2.UseUnderline = true;
     this.btnr4c2.FocusOnClick = false;
     this.btnr4c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr4c2.Label = "";
     this.r4c2.Add (this.btnr4c2);
     this.pnlUpperScore.Add (this.r4c2);
     global::Gtk.Table.TableChild w103 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r4c2]));
     w103.TopAttach = ((uint)(5));
     w103.BottomAttach = ((uint)(6));
     w103.LeftAttach = ((uint)(3));
     w103.RightAttach = ((uint)(4));
     w103.XOptions = ((global::Gtk.AttachOptions)(4));
     w103.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r4c3 = new global::Gtk.Frame ();
     this.r4c3.Name = "r4c3";
     // Container child r4c3.Gtk.Container+ContainerChild
     this.btnr4c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr4c3, "Fives", "Fives");
     this.btnr4c3.WidthRequest = 30;
     this.btnr4c3.HeightRequest = 27;
     this.btnr4c3.CanFocus = true;
     this.btnr4c3.Name = "btnr4c3";
     this.btnr4c3.UseUnderline = true;
     this.btnr4c3.FocusOnClick = false;
     this.btnr4c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr4c3.Label = "";
     this.r4c3.Add (this.btnr4c3);
     this.pnlUpperScore.Add (this.r4c3);
     global::Gtk.Table.TableChild w105 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r4c3]));
     w105.TopAttach = ((uint)(5));
     w105.BottomAttach = ((uint)(6));
     w105.LeftAttach = ((uint)(4));
     w105.RightAttach = ((uint)(5));
     w105.XOptions = ((global::Gtk.AttachOptions)(4));
     w105.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r4c4 = new global::Gtk.Frame ();
     this.r4c4.Name = "r4c4";
     // Container child r4c4.Gtk.Container+ContainerChild
     this.btnr4c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr4c4, "Fives", "Fives");
     this.btnr4c4.WidthRequest = 30;
     this.btnr4c4.HeightRequest = 27;
     this.btnr4c4.CanFocus = true;
     this.btnr4c4.Name = "btnr4c4";
     this.btnr4c4.UseUnderline = true;
     this.btnr4c4.FocusOnClick = false;
     this.btnr4c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr4c4.Label = "";
     this.r4c4.Add (this.btnr4c4);
     this.pnlUpperScore.Add (this.r4c4);
     global::Gtk.Table.TableChild w107 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r4c4]));
     w107.TopAttach = ((uint)(5));
     w107.BottomAttach = ((uint)(6));
     w107.LeftAttach = ((uint)(5));
     w107.RightAttach = ((uint)(6));
     w107.XOptions = ((global::Gtk.AttachOptions)(4));
     w107.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r4c5 = new global::Gtk.Frame ();
     this.r4c5.Name = "r4c5";
     // Container child r4c5.Gtk.Container+ContainerChild
     this.btnr4c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr4c5, "Fives", "Fives");
     this.btnr4c5.WidthRequest = 30;
     this.btnr4c5.HeightRequest = 27;
     this.btnr4c5.CanFocus = true;
     this.btnr4c5.Name = "btnr4c5";
     this.btnr4c5.UseUnderline = true;
     this.btnr4c5.FocusOnClick = false;
     this.btnr4c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr4c5.Label = "";
     this.r4c5.Add (this.btnr4c5);
     this.pnlUpperScore.Add (this.r4c5);
     global::Gtk.Table.TableChild w109 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r4c5]));
     w109.TopAttach = ((uint)(5));
     w109.BottomAttach = ((uint)(6));
     w109.LeftAttach = ((uint)(6));
     w109.RightAttach = ((uint)(7));
     w109.XOptions = ((global::Gtk.AttachOptions)(4));
     w109.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r5c1 = new global::Gtk.Frame ();
     this.r5c1.Name = "r5c1";
     // Container child r5c1.Gtk.Container+ContainerChild
     this.btnr5c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr5c1, "Sixes", "Sixes");
     this.btnr5c1.WidthRequest = 30;
     this.btnr5c1.HeightRequest = 27;
     this.btnr5c1.CanFocus = true;
     this.btnr5c1.Name = "btnr5c1";
     this.btnr5c1.UseUnderline = true;
     this.btnr5c1.FocusOnClick = false;
     this.btnr5c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr5c1.Label = "";
     this.r5c1.Add (this.btnr5c1);
     this.pnlUpperScore.Add (this.r5c1);
     global::Gtk.Table.TableChild w111 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r5c1]));
     w111.TopAttach = ((uint)(6));
     w111.BottomAttach = ((uint)(7));
     w111.LeftAttach = ((uint)(2));
     w111.RightAttach = ((uint)(3));
     w111.XOptions = ((global::Gtk.AttachOptions)(4));
     w111.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r5c2 = new global::Gtk.Frame ();
     this.r5c2.Name = "r5c2";
     // Container child r5c2.Gtk.Container+ContainerChild
     this.btnr5c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr5c2, "Sixes", "Sixes");
     this.btnr5c2.WidthRequest = 30;
     this.btnr5c2.HeightRequest = 27;
     this.btnr5c2.CanFocus = true;
     this.btnr5c2.Name = "btnr5c2";
     this.btnr5c2.UseUnderline = true;
     this.btnr5c2.FocusOnClick = false;
     this.btnr5c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr5c2.Label = "";
     this.r5c2.Add (this.btnr5c2);
     this.pnlUpperScore.Add (this.r5c2);
     global::Gtk.Table.TableChild w113 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r5c2]));
     w113.TopAttach = ((uint)(6));
     w113.BottomAttach = ((uint)(7));
     w113.LeftAttach = ((uint)(3));
     w113.RightAttach = ((uint)(4));
     w113.XOptions = ((global::Gtk.AttachOptions)(4));
     w113.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r5c3 = new global::Gtk.Frame ();
     this.r5c3.Name = "r5c3";
     // Container child r5c3.Gtk.Container+ContainerChild
     this.btnr5c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr5c3, "Sixes", "Sixes");
     this.btnr5c3.WidthRequest = 30;
     this.btnr5c3.HeightRequest = 27;
     this.btnr5c3.CanFocus = true;
     this.btnr5c3.Name = "btnr5c3";
     this.btnr5c3.UseUnderline = true;
     this.btnr5c3.FocusOnClick = false;
     this.btnr5c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr5c3.Label = "";
     this.r5c3.Add (this.btnr5c3);
     this.pnlUpperScore.Add (this.r5c3);
     global::Gtk.Table.TableChild w115 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r5c3]));
     w115.TopAttach = ((uint)(6));
     w115.BottomAttach = ((uint)(7));
     w115.LeftAttach = ((uint)(4));
     w115.RightAttach = ((uint)(5));
     w115.XOptions = ((global::Gtk.AttachOptions)(4));
     w115.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r5c4 = new global::Gtk.Frame ();
     this.r5c4.Name = "r5c4";
     // Container child r5c4.Gtk.Container+ContainerChild
     this.btnr5c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr5c4, "Sixes", "Sixes");
     this.btnr5c4.WidthRequest = 30;
     this.btnr5c4.HeightRequest = 27;
     this.btnr5c4.CanFocus = true;
     this.btnr5c4.Name = "btnr5c4";
     this.btnr5c4.UseUnderline = true;
     this.btnr5c4.FocusOnClick = false;
     this.btnr5c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr5c4.Label = "";
     this.r5c4.Add (this.btnr5c4);
     this.pnlUpperScore.Add (this.r5c4);
     global::Gtk.Table.TableChild w117 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r5c4]));
     w117.TopAttach = ((uint)(6));
     w117.BottomAttach = ((uint)(7));
     w117.LeftAttach = ((uint)(5));
     w117.RightAttach = ((uint)(6));
     w117.XOptions = ((global::Gtk.AttachOptions)(4));
     w117.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r5c5 = new global::Gtk.Frame ();
     this.r5c5.Name = "r5c5";
     // Container child r5c5.Gtk.Container+ContainerChild
     this.btnr5c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr5c5, "Sixes", "Sixes");
     this.btnr5c5.WidthRequest = 30;
     this.btnr5c5.HeightRequest = 27;
     this.btnr5c5.CanFocus = true;
     this.btnr5c5.Name = "btnr5c5";
     this.btnr5c5.UseUnderline = true;
     this.btnr5c5.FocusOnClick = false;
     this.btnr5c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr5c5.Label = "";
     this.r5c5.Add (this.btnr5c5);
     this.pnlUpperScore.Add (this.r5c5);
     global::Gtk.Table.TableChild w119 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r5c5]));
     w119.TopAttach = ((uint)(6));
     w119.BottomAttach = ((uint)(7));
     w119.LeftAttach = ((uint)(6));
     w119.RightAttach = ((uint)(7));
     w119.XOptions = ((global::Gtk.AttachOptions)(4));
     w119.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r6c1 = new global::Gtk.Frame ();
     this.r6c1.Name = "r6c1";
     // Container child r6c1.Gtk.Container+ContainerChild
     this.btnr6c1 = new global::Gtk.Label ();
     this.btnr6c1.Name = "btnr6c1";
     this.btnr6c1.Justify = ((global::Gtk.Justification)(2));
     this.r6c1.Add (this.btnr6c1);
     this.pnlUpperScore.Add (this.r6c1);
     global::Gtk.Table.TableChild w121 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r6c1]));
     w121.TopAttach = ((uint)(7));
     w121.BottomAttach = ((uint)(8));
     w121.LeftAttach = ((uint)(2));
     w121.RightAttach = ((uint)(3));
     w121.XOptions = ((global::Gtk.AttachOptions)(4));
     w121.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r6c2 = new global::Gtk.Frame ();
     this.r6c2.Name = "r6c2";
     // Container child r6c2.Gtk.Container+ContainerChild
     this.btnr6c2 = new global::Gtk.Label ();
     this.btnr6c2.Name = "btnr6c2";
     this.btnr6c2.Justify = ((global::Gtk.Justification)(2));
     this.r6c2.Add (this.btnr6c2);
     this.pnlUpperScore.Add (this.r6c2);
     global::Gtk.Table.TableChild w123 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r6c2]));
     w123.TopAttach = ((uint)(7));
     w123.BottomAttach = ((uint)(8));
     w123.LeftAttach = ((uint)(3));
     w123.RightAttach = ((uint)(4));
     w123.XOptions = ((global::Gtk.AttachOptions)(4));
     w123.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r6c3 = new global::Gtk.Frame ();
     this.r6c3.Name = "r6c3";
     // Container child r6c3.Gtk.Container+ContainerChild
     this.btnr6c3 = new global::Gtk.Label ();
     this.btnr6c3.Name = "btnr6c3";
     this.btnr6c3.Justify = ((global::Gtk.Justification)(2));
     this.r6c3.Add (this.btnr6c3);
     this.pnlUpperScore.Add (this.r6c3);
     global::Gtk.Table.TableChild w125 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r6c3]));
     w125.TopAttach = ((uint)(7));
     w125.BottomAttach = ((uint)(8));
     w125.LeftAttach = ((uint)(4));
     w125.RightAttach = ((uint)(5));
     w125.XOptions = ((global::Gtk.AttachOptions)(4));
     w125.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r6c4 = new global::Gtk.Frame ();
     this.r6c4.Name = "r6c4";
     // Container child r6c4.Gtk.Container+ContainerChild
     this.btnr6c4 = new global::Gtk.Label ();
     this.btnr6c4.Name = "btnr6c4";
     this.btnr6c4.Justify = ((global::Gtk.Justification)(2));
     this.r6c4.Add (this.btnr6c4);
     this.pnlUpperScore.Add (this.r6c4);
     global::Gtk.Table.TableChild w127 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r6c4]));
     w127.TopAttach = ((uint)(7));
     w127.BottomAttach = ((uint)(8));
     w127.LeftAttach = ((uint)(5));
     w127.RightAttach = ((uint)(6));
     w127.XOptions = ((global::Gtk.AttachOptions)(4));
     w127.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r6c5 = new global::Gtk.Frame ();
     this.r6c5.Name = "r6c5";
     // Container child r6c5.Gtk.Container+ContainerChild
     this.btnr6c5 = new global::Gtk.Label ();
     this.btnr6c5.Name = "btnr6c5";
     this.btnr6c5.Justify = ((global::Gtk.Justification)(2));
     this.r6c5.Add (this.btnr6c5);
     this.pnlUpperScore.Add (this.r6c5);
     global::Gtk.Table.TableChild w129 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r6c5]));
     w129.TopAttach = ((uint)(7));
     w129.BottomAttach = ((uint)(8));
     w129.LeftAttach = ((uint)(6));
     w129.RightAttach = ((uint)(7));
     w129.XOptions = ((global::Gtk.AttachOptions)(4));
     w129.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r7c1 = new global::Gtk.Frame ();
     this.r7c1.Name = "r7c1";
     // Container child r7c1.Gtk.Container+ContainerChild
     this.btnr7c1 = new global::Gtk.Label ();
     this.btnr7c1.Name = "btnr7c1";
     this.btnr7c1.Justify = ((global::Gtk.Justification)(2));
     this.r7c1.Add (this.btnr7c1);
     this.pnlUpperScore.Add (this.r7c1);
     global::Gtk.Table.TableChild w131 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r7c1]));
     w131.TopAttach = ((uint)(8));
     w131.BottomAttach = ((uint)(9));
     w131.LeftAttach = ((uint)(2));
     w131.RightAttach = ((uint)(3));
     w131.XOptions = ((global::Gtk.AttachOptions)(4));
     w131.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r7c2 = new global::Gtk.Frame ();
     this.r7c2.Name = "r7c2";
     // Container child r7c2.Gtk.Container+ContainerChild
     this.btnr7c2 = new global::Gtk.Label ();
     this.btnr7c2.Name = "btnr7c2";
     this.btnr7c2.Justify = ((global::Gtk.Justification)(2));
     this.r7c2.Add (this.btnr7c2);
     this.pnlUpperScore.Add (this.r7c2);
     global::Gtk.Table.TableChild w133 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r7c2]));
     w133.TopAttach = ((uint)(8));
     w133.BottomAttach = ((uint)(9));
     w133.LeftAttach = ((uint)(3));
     w133.RightAttach = ((uint)(4));
     w133.XOptions = ((global::Gtk.AttachOptions)(4));
     w133.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r7c3 = new global::Gtk.Frame ();
     this.r7c3.Name = "r7c3";
     // Container child r7c3.Gtk.Container+ContainerChild
     this.btnr7c3 = new global::Gtk.Label ();
     this.btnr7c3.Name = "btnr7c3";
     this.btnr7c3.Justify = ((global::Gtk.Justification)(2));
     this.r7c3.Add (this.btnr7c3);
     this.pnlUpperScore.Add (this.r7c3);
     global::Gtk.Table.TableChild w135 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r7c3]));
     w135.TopAttach = ((uint)(8));
     w135.BottomAttach = ((uint)(9));
     w135.LeftAttach = ((uint)(4));
     w135.RightAttach = ((uint)(5));
     w135.XOptions = ((global::Gtk.AttachOptions)(4));
     w135.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r7c4 = new global::Gtk.Frame ();
     this.r7c4.Name = "r7c4";
     // Container child r7c4.Gtk.Container+ContainerChild
     this.btnr7c4 = new global::Gtk.Label ();
     this.btnr7c4.Name = "btnr7c4";
     this.btnr7c4.Justify = ((global::Gtk.Justification)(2));
     this.r7c4.Add (this.btnr7c4);
     this.pnlUpperScore.Add (this.r7c4);
     global::Gtk.Table.TableChild w137 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r7c4]));
     w137.TopAttach = ((uint)(8));
     w137.BottomAttach = ((uint)(9));
     w137.LeftAttach = ((uint)(5));
     w137.RightAttach = ((uint)(6));
     w137.XOptions = ((global::Gtk.AttachOptions)(4));
     w137.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r7c5 = new global::Gtk.Frame ();
     this.r7c5.Name = "r7c5";
     // Container child r7c5.Gtk.Container+ContainerChild
     this.btnr7c5 = new global::Gtk.Label ();
     this.btnr7c5.Name = "btnr7c5";
     this.btnr7c5.Justify = ((global::Gtk.Justification)(2));
     this.r7c5.Add (this.btnr7c5);
     this.pnlUpperScore.Add (this.r7c5);
     global::Gtk.Table.TableChild w139 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r7c5]));
     w139.TopAttach = ((uint)(8));
     w139.BottomAttach = ((uint)(9));
     w139.LeftAttach = ((uint)(6));
     w139.RightAttach = ((uint)(7));
     w139.XOptions = ((global::Gtk.AttachOptions)(4));
     w139.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r8c1 = new global::Gtk.Frame ();
     this.r8c1.Name = "r8c1";
     // Container child r8c1.Gtk.Container+ContainerChild
     this.btnr8c1 = new global::Gtk.Label ();
     this.btnr8c1.Name = "btnr8c1";
     this.btnr8c1.Justify = ((global::Gtk.Justification)(2));
     this.r8c1.Add (this.btnr8c1);
     this.pnlUpperScore.Add (this.r8c1);
     global::Gtk.Table.TableChild w141 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r8c1]));
     w141.TopAttach = ((uint)(9));
     w141.BottomAttach = ((uint)(10));
     w141.LeftAttach = ((uint)(2));
     w141.RightAttach = ((uint)(3));
     w141.XOptions = ((global::Gtk.AttachOptions)(4));
     w141.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r8c2 = new global::Gtk.Frame ();
     this.r8c2.Name = "r8c2";
     // Container child r8c2.Gtk.Container+ContainerChild
     this.btnr8c2 = new global::Gtk.Label ();
     this.btnr8c2.Name = "btnr8c2";
     this.btnr8c2.Justify = ((global::Gtk.Justification)(2));
     this.r8c2.Add (this.btnr8c2);
     this.pnlUpperScore.Add (this.r8c2);
     global::Gtk.Table.TableChild w143 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r8c2]));
     w143.TopAttach = ((uint)(9));
     w143.BottomAttach = ((uint)(10));
     w143.LeftAttach = ((uint)(3));
     w143.RightAttach = ((uint)(4));
     w143.XOptions = ((global::Gtk.AttachOptions)(4));
     w143.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r8c3 = new global::Gtk.Frame ();
     this.r8c3.Name = "r8c3";
     // Container child r8c3.Gtk.Container+ContainerChild
     this.btnr8c3 = new global::Gtk.Label ();
     this.btnr8c3.Name = "btnr8c3";
     this.btnr8c3.Justify = ((global::Gtk.Justification)(2));
     this.r8c3.Add (this.btnr8c3);
     this.pnlUpperScore.Add (this.r8c3);
     global::Gtk.Table.TableChild w145 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r8c3]));
     w145.TopAttach = ((uint)(9));
     w145.BottomAttach = ((uint)(10));
     w145.LeftAttach = ((uint)(4));
     w145.RightAttach = ((uint)(5));
     w145.XOptions = ((global::Gtk.AttachOptions)(4));
     w145.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r8c4 = new global::Gtk.Frame ();
     this.r8c4.Name = "r8c4";
     // Container child r8c4.Gtk.Container+ContainerChild
     this.btnr8c4 = new global::Gtk.Label ();
     this.btnr8c4.Name = "btnr8c4";
     this.btnr8c4.Justify = ((global::Gtk.Justification)(2));
     this.r8c4.Add (this.btnr8c4);
     this.pnlUpperScore.Add (this.r8c4);
     global::Gtk.Table.TableChild w147 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r8c4]));
     w147.TopAttach = ((uint)(9));
     w147.BottomAttach = ((uint)(10));
     w147.LeftAttach = ((uint)(5));
     w147.RightAttach = ((uint)(6));
     w147.XOptions = ((global::Gtk.AttachOptions)(4));
     w147.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlUpperScore.Gtk.Table+TableChild
     this.r8c5 = new global::Gtk.Frame ();
     this.r8c5.Name = "r8c5";
     // Container child r8c5.Gtk.Container+ContainerChild
     this.btnr8c5 = new global::Gtk.Label ();
     this.btnr8c5.Name = "btnr8c5";
     this.btnr8c5.Justify = ((global::Gtk.Justification)(2));
     this.r8c5.Add (this.btnr8c5);
     this.pnlUpperScore.Add (this.r8c5);
     global::Gtk.Table.TableChild w149 = ((global::Gtk.Table.TableChild)(this.pnlUpperScore[this.r8c5]));
     w149.TopAttach = ((uint)(9));
     w149.BottomAttach = ((uint)(10));
     w149.LeftAttach = ((uint)(6));
     w149.RightAttach = ((uint)(7));
     w149.XOptions = ((global::Gtk.AttachOptions)(4));
     w149.YOptions = ((global::Gtk.AttachOptions)(4));
     this.pnloop.Add (this.pnlUpperScore);
     this.vbox4.Add (this.pnloop);
     global::Gtk.Box.BoxChild w151 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.pnloop]));
     w151.Position = 0;
     w151.Expand = false;
     w151.Fill = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.image27 = new global::Gtk.Image ();
     this.image27.Name = "image27";
     this.image27.Xalign = 1f;
     this.image27.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("h1.png");
     this.vbox4.Add (this.image27);
     global::Gtk.Box.BoxChild w152 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.image27]));
     w152.Position = 1;
     w152.Expand = false;
     w152.Fill = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.pnlopps2 = new global::Gtk.Frame ();
     this.pnlopps2.Name = "pnlopps2";
     // Container child pnlopps2.Gtk.Container+ContainerChild
     this.pnlLowerScore = new global::Gtk.Table (((uint)(12)), ((uint)(7)), false);
     this.pnlLowerScore.Name = "pnlLowerScore";
     this.pnlLowerScore.RowSpacing = ((uint)(6));
     this.pnlLowerScore.ColumnSpacing = ((uint)(6));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame148 = new global::Gtk.Frame ();
     this.frame148.Name = "frame148";
     // Container child frame148.Gtk.Container+ContainerChild
     this.image52 = new global::Gtk.Image ();
     this.image52.Name = "image52";
     this.image52.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("3oak.png");
     this.frame148.Add (this.image52);
     this.pnlLowerScore.Add (this.frame148);
     global::Gtk.Table.TableChild w154 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame148]));
     w154.TopAttach = ((uint)(1));
     w154.BottomAttach = ((uint)(2));
     w154.XOptions = ((global::Gtk.AttachOptions)(4));
     w154.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame153 = new global::Gtk.Frame ();
     this.frame153.Name = "frame153";
     // Container child frame153.Gtk.Container+ContainerChild
     this.image30 = new global::Gtk.Image ();
     this.image30.Name = "image30";
     this.image30.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("c11.png");
     this.frame153.Add (this.image30);
     this.pnlLowerScore.Add (this.frame153);
     global::Gtk.Table.TableChild w156 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame153]));
     w156.TopAttach = ((uint)(1));
     w156.BottomAttach = ((uint)(2));
     w156.LeftAttach = ((uint)(1));
     w156.RightAttach = ((uint)(2));
     w156.XOptions = ((global::Gtk.AttachOptions)(4));
     w156.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame29 = new global::Gtk.Frame ();
     this.frame29.Name = "frame29";
     // Container child frame29.Gtk.Container+ContainerChild
     this.image45 = new global::Gtk.Image ();
     this.image45.Name = "image45";
     this.image45.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("ph.png");
     this.frame29.Add (this.image45);
     this.pnlLowerScore.Add (this.frame29);
     global::Gtk.Table.TableChild w158 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame29]));
     w158.TopAttach = ((uint)(3));
     w158.BottomAttach = ((uint)(4));
     w158.XOptions = ((global::Gtk.AttachOptions)(4));
     w158.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame30 = new global::Gtk.Frame ();
     this.frame30.Name = "frame30";
     // Container child frame30.Gtk.Container+ContainerChild
     this.image29 = new global::Gtk.Image ();
     this.image29.Name = "image29";
     this.image29.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("arrow_temp.png");
     this.frame30.Add (this.image29);
     this.pnlLowerScore.Add (this.frame30);
     global::Gtk.Table.TableChild w160 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame30]));
     w160.TopAttach = ((uint)(11));
     w160.BottomAttach = ((uint)(12));
     w160.LeftAttach = ((uint)(1));
     w160.RightAttach = ((uint)(2));
     w160.XOptions = ((global::Gtk.AttachOptions)(4));
     w160.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame31 = new global::Gtk.Frame ();
     this.frame31.Name = "frame31";
     // Container child frame31.Gtk.Container+ContainerChild
     this.image53 = new global::Gtk.Image ();
     this.image53.Name = "image53";
     this.image53.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("arrow_temp.png");
     this.frame31.Add (this.image53);
     this.pnlLowerScore.Add (this.frame31);
     global::Gtk.Table.TableChild w162 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame31]));
     w162.TopAttach = ((uint)(10));
     w162.BottomAttach = ((uint)(11));
     w162.LeftAttach = ((uint)(1));
     w162.RightAttach = ((uint)(2));
     w162.XOptions = ((global::Gtk.AttachOptions)(4));
     w162.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame32 = new global::Gtk.Frame ();
     this.frame32.Name = "frame32";
     // Container child frame32.Gtk.Container+ContainerChild
     this.image31 = new global::Gtk.Image ();
     this.image31.Name = "image31";
     this.image31.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("arrow_temp.png");
     this.frame32.Add (this.image31);
     this.pnlLowerScore.Add (this.frame32);
     global::Gtk.Table.TableChild w164 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame32]));
     w164.TopAttach = ((uint)(9));
     w164.BottomAttach = ((uint)(10));
     w164.LeftAttach = ((uint)(1));
     w164.RightAttach = ((uint)(2));
     w164.XOptions = ((global::Gtk.AttachOptions)(4));
     w164.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame33 = new global::Gtk.Frame ();
     this.frame33.Name = "frame33";
     // Container child frame33.Gtk.Container+ContainerChild
     this.image32 = new global::Gtk.Image ();
     this.image32.Name = "image32";
     this.image32.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("ytzBONUStext.png");
     this.frame33.Add (this.image32);
     this.pnlLowerScore.Add (this.frame33);
     global::Gtk.Table.TableChild w166 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame33]));
     w166.TopAttach = ((uint)(8));
     w166.BottomAttach = ((uint)(9));
     w166.LeftAttach = ((uint)(1));
     w166.RightAttach = ((uint)(2));
     w166.XOptions = ((global::Gtk.AttachOptions)(4));
     w166.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame34 = new global::Gtk.Frame ();
     this.frame34.Name = "frame34";
     // Container child frame34.Gtk.Container+ContainerChild
     this.image33 = new global::Gtk.Image ();
     this.image33.Name = "image33";
     this.image33.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("c11.png");
     this.frame34.Add (this.image33);
     this.pnlLowerScore.Add (this.frame34);
     global::Gtk.Table.TableChild w168 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame34]));
     w168.TopAttach = ((uint)(7));
     w168.BottomAttach = ((uint)(8));
     w168.LeftAttach = ((uint)(1));
     w168.RightAttach = ((uint)(2));
     w168.XOptions = ((global::Gtk.AttachOptions)(4));
     w168.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame35 = new global::Gtk.Frame ();
     this.frame35.Name = "frame35";
     // Container child frame35.Gtk.Container+ContainerChild
     this.image34 = new global::Gtk.Image ();
     this.image34.Name = "image34";
     this.image34.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("c5r2.png");
     this.frame35.Add (this.image34);
     this.pnlLowerScore.Add (this.frame35);
     global::Gtk.Table.TableChild w170 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame35]));
     w170.TopAttach = ((uint)(6));
     w170.BottomAttach = ((uint)(7));
     w170.LeftAttach = ((uint)(1));
     w170.RightAttach = ((uint)(2));
     w170.XOptions = ((global::Gtk.AttachOptions)(4));
     w170.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame36 = new global::Gtk.Frame ();
     this.frame36.Name = "frame36";
     // Container child frame36.Gtk.Container+ContainerChild
     this.image35 = new global::Gtk.Image ();
     this.image35.Name = "image35";
     this.image35.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("c4r2.png");
     this.frame36.Add (this.image35);
     this.pnlLowerScore.Add (this.frame36);
     global::Gtk.Table.TableChild w172 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame36]));
     w172.TopAttach = ((uint)(5));
     w172.BottomAttach = ((uint)(6));
     w172.LeftAttach = ((uint)(1));
     w172.RightAttach = ((uint)(2));
     w172.XOptions = ((global::Gtk.AttachOptions)(4));
     w172.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame37 = new global::Gtk.Frame ();
     this.frame37.Name = "frame37";
     // Container child frame37.Gtk.Container+ContainerChild
     this.image36 = new global::Gtk.Image ();
     this.image36.Name = "image36";
     this.image36.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("c3r2.png");
     this.frame37.Add (this.image36);
     this.pnlLowerScore.Add (this.frame37);
     global::Gtk.Table.TableChild w174 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame37]));
     w174.TopAttach = ((uint)(4));
     w174.BottomAttach = ((uint)(5));
     w174.LeftAttach = ((uint)(1));
     w174.RightAttach = ((uint)(2));
     w174.XOptions = ((global::Gtk.AttachOptions)(4));
     w174.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame38 = new global::Gtk.Frame ();
     this.frame38.Name = "frame38";
     // Container child frame38.Gtk.Container+ContainerChild
     this.image37 = new global::Gtk.Image ();
     this.image37.Name = "image37";
     this.image37.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("c2r2.png");
     this.frame38.Add (this.image37);
     this.pnlLowerScore.Add (this.frame38);
     global::Gtk.Table.TableChild w176 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame38]));
     w176.TopAttach = ((uint)(3));
     w176.BottomAttach = ((uint)(4));
     w176.LeftAttach = ((uint)(1));
     w176.RightAttach = ((uint)(2));
     w176.XOptions = ((global::Gtk.AttachOptions)(4));
     w176.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame39 = new global::Gtk.Frame ();
     this.frame39.Name = "frame39";
     // Container child frame39.Gtk.Container+ContainerChild
     this.image14 = new global::Gtk.Image ();
     this.image14.Name = "image14";
     this.image14.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("GT.png");
     this.frame39.Add (this.image14);
     this.pnlLowerScore.Add (this.frame39);
     global::Gtk.Table.TableChild w178 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame39]));
     w178.TopAttach = ((uint)(11));
     w178.BottomAttach = ((uint)(12));
     w178.XOptions = ((global::Gtk.AttachOptions)(4));
     w178.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame40 = new global::Gtk.Frame ();
     this.frame40.Name = "frame40";
     // Container child frame40.Gtk.Container+ContainerChild
     this.image38 = new global::Gtk.Image ();
     this.image38.Name = "image38";
     this.image38.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("totalLower.png");
     this.frame40.Add (this.image38);
     this.pnlLowerScore.Add (this.frame40);
     global::Gtk.Table.TableChild w180 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame40]));
     w180.TopAttach = ((uint)(10));
     w180.BottomAttach = ((uint)(11));
     w180.XOptions = ((global::Gtk.AttachOptions)(4));
     w180.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame41 = new global::Gtk.Frame ();
     this.frame41.Name = "frame41";
     // Container child frame41.Gtk.Container+ContainerChild
     this.image55 = new global::Gtk.Image ();
     this.image55.Name = "image55";
     this.image55.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("totalUpper.png");
     this.frame41.Add (this.image55);
     this.pnlLowerScore.Add (this.frame41);
     global::Gtk.Table.TableChild w182 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame41]));
     w182.TopAttach = ((uint)(9));
     w182.BottomAttach = ((uint)(10));
     w182.XOptions = ((global::Gtk.AttachOptions)(4));
     w182.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame42 = new global::Gtk.Frame ();
     this.frame42.Name = "frame42";
     // Container child frame42.Gtk.Container+ContainerChild
     this.image40 = new global::Gtk.Image ();
     this.image40.Name = "image40";
     this.image40.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("ytzBONUS.png");
     this.frame42.Add (this.image40);
     this.pnlLowerScore.Add (this.frame42);
     global::Gtk.Table.TableChild w184 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame42]));
     w184.TopAttach = ((uint)(8));
     w184.BottomAttach = ((uint)(9));
     w184.XOptions = ((global::Gtk.AttachOptions)(4));
     w184.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame43 = new global::Gtk.Frame ();
     this.frame43.Name = "frame43";
     // Container child frame43.Gtk.Container+ContainerChild
     this.image41 = new global::Gtk.Image ();
     this.image41.Name = "image41";
     this.image41.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("chance.png");
     this.frame43.Add (this.image41);
     this.pnlLowerScore.Add (this.frame43);
     global::Gtk.Table.TableChild w186 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame43]));
     w186.TopAttach = ((uint)(7));
     w186.BottomAttach = ((uint)(8));
     w186.XOptions = ((global::Gtk.AttachOptions)(4));
     w186.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame44 = new global::Gtk.Frame ();
     this.frame44.Name = "frame44";
     // Container child frame44.Gtk.Container+ContainerChild
     this.image42 = new global::Gtk.Image ();
     this.image42.Name = "image42";
     this.image42.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("ytz.png");
     this.frame44.Add (this.image42);
     this.pnlLowerScore.Add (this.frame44);
     global::Gtk.Table.TableChild w188 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame44]));
     w188.TopAttach = ((uint)(6));
     w188.BottomAttach = ((uint)(7));
     w188.XOptions = ((global::Gtk.AttachOptions)(4));
     w188.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame45 = new global::Gtk.Frame ();
     this.frame45.Name = "frame45";
     // Container child frame45.Gtk.Container+ContainerChild
     this.image43 = new global::Gtk.Image ();
     this.image43.Name = "image43";
     this.image43.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("ls.png");
     this.frame45.Add (this.image43);
     this.pnlLowerScore.Add (this.frame45);
     global::Gtk.Table.TableChild w190 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame45]));
     w190.TopAttach = ((uint)(5));
     w190.BottomAttach = ((uint)(6));
     w190.XOptions = ((global::Gtk.AttachOptions)(4));
     w190.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame46 = new global::Gtk.Frame ();
     this.frame46.Name = "frame46";
     // Container child frame46.Gtk.Container+ContainerChild
     this.image44 = new global::Gtk.Image ();
     this.image44.Name = "image44";
     this.image44.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("ss.png");
     this.frame46.Add (this.image44);
     this.pnlLowerScore.Add (this.frame46);
     global::Gtk.Table.TableChild w192 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame46]));
     w192.TopAttach = ((uint)(4));
     w192.BottomAttach = ((uint)(5));
     w192.XOptions = ((global::Gtk.AttachOptions)(4));
     w192.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame52 = new global::Gtk.Frame ();
     this.frame52.Name = "frame52";
     // Container child frame52.Gtk.Container+ContainerChild
     this.image39 = new global::Gtk.Image ();
     this.image39.Name = "image39";
     this.image39.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("c11.png");
     this.frame52.Add (this.image39);
     this.pnlLowerScore.Add (this.frame52);
     global::Gtk.Table.TableChild w194 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame52]));
     w194.TopAttach = ((uint)(2));
     w194.BottomAttach = ((uint)(3));
     w194.LeftAttach = ((uint)(1));
     w194.RightAttach = ((uint)(2));
     w194.XOptions = ((global::Gtk.AttachOptions)(4));
     w194.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.frame53 = new global::Gtk.Frame ();
     this.frame53.Name = "frame53";
     // Container child frame53.Gtk.Container+ContainerChild
     this.image28 = new global::Gtk.Image ();
     this.image28.Name = "image28";
     this.image28.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("4oak.png");
     this.frame53.Add (this.image28);
     this.pnlLowerScore.Add (this.frame53);
     global::Gtk.Table.TableChild w196 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.frame53]));
     w196.TopAttach = ((uint)(2));
     w196.BottomAttach = ((uint)(3));
     w196.XOptions = ((global::Gtk.AttachOptions)(4));
     w196.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.hseparator1 = new global::Gtk.HSeparator ();
     this.hseparator1.WidthRequest = 47;
     this.hseparator1.Name = "hseparator1";
     this.pnlLowerScore.Add (this.hseparator1);
     global::Gtk.Table.TableChild w197 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.hseparator1]));
     w197.LeftAttach = ((uint)(6));
     w197.RightAttach = ((uint)(7));
     w197.XOptions = ((global::Gtk.AttachOptions)(4));
     w197.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.hseparator4 = new global::Gtk.HSeparator ();
     this.hseparator4.WidthRequest = 47;
     this.hseparator4.Name = "hseparator4";
     this.pnlLowerScore.Add (this.hseparator4);
     global::Gtk.Table.TableChild w198 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.hseparator4]));
     w198.LeftAttach = ((uint)(2));
     w198.RightAttach = ((uint)(3));
     w198.XOptions = ((global::Gtk.AttachOptions)(4));
     w198.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.hseparator5 = new global::Gtk.HSeparator ();
     this.hseparator5.WidthRequest = 47;
     this.hseparator5.Name = "hseparator5";
     this.pnlLowerScore.Add (this.hseparator5);
     global::Gtk.Table.TableChild w199 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.hseparator5]));
     w199.LeftAttach = ((uint)(3));
     w199.RightAttach = ((uint)(4));
     w199.XOptions = ((global::Gtk.AttachOptions)(4));
     w199.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.hseparator6 = new global::Gtk.HSeparator ();
     this.hseparator6.WidthRequest = 47;
     this.hseparator6.Name = "hseparator6";
     this.pnlLowerScore.Add (this.hseparator6);
     global::Gtk.Table.TableChild w200 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.hseparator6]));
     w200.LeftAttach = ((uint)(4));
     w200.RightAttach = ((uint)(5));
     w200.XOptions = ((global::Gtk.AttachOptions)(4));
     w200.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.hseparator7 = new global::Gtk.HSeparator ();
     this.hseparator7.WidthRequest = 47;
     this.hseparator7.Name = "hseparator7";
     this.pnlLowerScore.Add (this.hseparator7);
     global::Gtk.Table.TableChild w201 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.hseparator7]));
     w201.LeftAttach = ((uint)(5));
     w201.RightAttach = ((uint)(6));
     w201.XOptions = ((global::Gtk.AttachOptions)(4));
     w201.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.hseparator8 = new global::Gtk.HSeparator ();
     this.hseparator8.Name = "hseparator8";
     this.pnlLowerScore.Add (this.hseparator8);
     global::Gtk.Table.TableChild w202 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.hseparator8]));
     w202.LeftAttach = ((uint)(1));
     w202.RightAttach = ((uint)(2));
     w202.XOptions = ((global::Gtk.AttachOptions)(4));
     w202.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.hseparator9 = new global::Gtk.HSeparator ();
     this.hseparator9.Name = "hseparator9";
     this.pnlLowerScore.Add (this.hseparator9);
     global::Gtk.Table.TableChild w203 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.hseparator9]));
     w203.XOptions = ((global::Gtk.AttachOptions)(4));
     w203.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r10c1 = new global::Gtk.Frame ();
     this.r10c1.Name = "r10c1";
     // Container child r10c1.Gtk.Container+ContainerChild
     this.btnr10c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr10c1, "Sixes", "Sixes");
     this.btnr10c1.WidthRequest = 30;
     this.btnr10c1.HeightRequest = 27;
     this.btnr10c1.CanFocus = true;
     this.btnr10c1.Name = "btnr10c1";
     this.btnr10c1.UseUnderline = true;
     this.btnr10c1.FocusOnClick = false;
     this.btnr10c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr10c1.Label = "";
     this.r10c1.Add (this.btnr10c1);
     this.pnlLowerScore.Add (this.r10c1);
     global::Gtk.Table.TableChild w205 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r10c1]));
     w205.TopAttach = ((uint)(2));
     w205.BottomAttach = ((uint)(3));
     w205.LeftAttach = ((uint)(2));
     w205.RightAttach = ((uint)(3));
     w205.XOptions = ((global::Gtk.AttachOptions)(4));
     w205.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r10c2 = new global::Gtk.Frame ();
     this.r10c2.Name = "r10c2";
     // Container child r10c2.Gtk.Container+ContainerChild
     this.btnr10c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr10c2, "Sixes", "Sixes");
     this.btnr10c2.WidthRequest = 30;
     this.btnr10c2.HeightRequest = 27;
     this.btnr10c2.CanFocus = true;
     this.btnr10c2.Name = "btnr10c2";
     this.btnr10c2.UseUnderline = true;
     this.btnr10c2.FocusOnClick = false;
     this.btnr10c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr10c2.Label = "";
     this.r10c2.Add (this.btnr10c2);
     this.pnlLowerScore.Add (this.r10c2);
     global::Gtk.Table.TableChild w207 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r10c2]));
     w207.TopAttach = ((uint)(2));
     w207.BottomAttach = ((uint)(3));
     w207.LeftAttach = ((uint)(3));
     w207.RightAttach = ((uint)(4));
     w207.XOptions = ((global::Gtk.AttachOptions)(4));
     w207.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r10c3 = new global::Gtk.Frame ();
     this.r10c3.Name = "r10c3";
     // Container child r10c3.Gtk.Container+ContainerChild
     this.btnr10c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr10c3, "Sixes", "Sixes");
     this.btnr10c3.WidthRequest = 30;
     this.btnr10c3.HeightRequest = 27;
     this.btnr10c3.CanFocus = true;
     this.btnr10c3.Name = "btnr10c3";
     this.btnr10c3.UseUnderline = true;
     this.btnr10c3.FocusOnClick = false;
     this.btnr10c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr10c3.Label = "";
     this.r10c3.Add (this.btnr10c3);
     this.pnlLowerScore.Add (this.r10c3);
     global::Gtk.Table.TableChild w209 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r10c3]));
     w209.TopAttach = ((uint)(2));
     w209.BottomAttach = ((uint)(3));
     w209.LeftAttach = ((uint)(4));
     w209.RightAttach = ((uint)(5));
     w209.XOptions = ((global::Gtk.AttachOptions)(4));
     w209.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r10c4 = new global::Gtk.Frame ();
     this.r10c4.Name = "r10c4";
     // Container child r10c4.Gtk.Container+ContainerChild
     this.btnr10c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr10c4, "Sixes", "Sixes");
     this.btnr10c4.WidthRequest = 30;
     this.btnr10c4.HeightRequest = 27;
     this.btnr10c4.CanFocus = true;
     this.btnr10c4.Name = "btnr10c4";
     this.btnr10c4.UseUnderline = true;
     this.btnr10c4.FocusOnClick = false;
     this.btnr10c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr10c4.Label = "";
     this.r10c4.Add (this.btnr10c4);
     this.pnlLowerScore.Add (this.r10c4);
     global::Gtk.Table.TableChild w211 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r10c4]));
     w211.TopAttach = ((uint)(2));
     w211.BottomAttach = ((uint)(3));
     w211.LeftAttach = ((uint)(5));
     w211.RightAttach = ((uint)(6));
     w211.XOptions = ((global::Gtk.AttachOptions)(4));
     w211.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r10c5 = new global::Gtk.Frame ();
     this.r10c5.Name = "r10c5";
     // Container child r10c5.Gtk.Container+ContainerChild
     this.btnr10c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr10c5, "Sixes", "Sixes");
     this.btnr10c5.WidthRequest = 30;
     this.btnr10c5.HeightRequest = 27;
     this.btnr10c5.CanFocus = true;
     this.btnr10c5.Name = "btnr10c5";
     this.btnr10c5.UseUnderline = true;
     this.btnr10c5.FocusOnClick = false;
     this.btnr10c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr10c5.Label = "";
     this.r10c5.Add (this.btnr10c5);
     this.pnlLowerScore.Add (this.r10c5);
     global::Gtk.Table.TableChild w213 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r10c5]));
     w213.TopAttach = ((uint)(2));
     w213.BottomAttach = ((uint)(3));
     w213.LeftAttach = ((uint)(6));
     w213.RightAttach = ((uint)(7));
     w213.XOptions = ((global::Gtk.AttachOptions)(4));
     w213.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r11c1 = new global::Gtk.Frame ();
     this.r11c1.Name = "r11c1";
     // Container child r11c1.Gtk.Container+ContainerChild
     this.btnr11c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr11c1, "Sixes", "Sixes");
     this.btnr11c1.WidthRequest = 30;
     this.btnr11c1.HeightRequest = 27;
     this.btnr11c1.CanFocus = true;
     this.btnr11c1.Name = "btnr11c1";
     this.btnr11c1.UseUnderline = true;
     this.btnr11c1.FocusOnClick = false;
     this.btnr11c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr11c1.Label = "";
     this.r11c1.Add (this.btnr11c1);
     this.pnlLowerScore.Add (this.r11c1);
     global::Gtk.Table.TableChild w215 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r11c1]));
     w215.TopAttach = ((uint)(3));
     w215.BottomAttach = ((uint)(4));
     w215.LeftAttach = ((uint)(2));
     w215.RightAttach = ((uint)(3));
     w215.XOptions = ((global::Gtk.AttachOptions)(4));
     w215.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r11c2 = new global::Gtk.Frame ();
     this.r11c2.Name = "r11c2";
     // Container child r11c2.Gtk.Container+ContainerChild
     this.btnr11c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr11c2, "Sixes", "Sixes");
     this.btnr11c2.WidthRequest = 30;
     this.btnr11c2.HeightRequest = 27;
     this.btnr11c2.CanFocus = true;
     this.btnr11c2.Name = "btnr11c2";
     this.btnr11c2.UseUnderline = true;
     this.btnr11c2.FocusOnClick = false;
     this.btnr11c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr11c2.Label = "";
     this.r11c2.Add (this.btnr11c2);
     this.pnlLowerScore.Add (this.r11c2);
     global::Gtk.Table.TableChild w217 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r11c2]));
     w217.TopAttach = ((uint)(3));
     w217.BottomAttach = ((uint)(4));
     w217.LeftAttach = ((uint)(3));
     w217.RightAttach = ((uint)(4));
     w217.XOptions = ((global::Gtk.AttachOptions)(4));
     w217.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r11c3 = new global::Gtk.Frame ();
     this.r11c3.Name = "r11c3";
     // Container child r11c3.Gtk.Container+ContainerChild
     this.btnr11c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr11c3, "Sixes", "Sixes");
     this.btnr11c3.WidthRequest = 30;
     this.btnr11c3.HeightRequest = 27;
     this.btnr11c3.CanFocus = true;
     this.btnr11c3.Name = "btnr11c3";
     this.btnr11c3.UseUnderline = true;
     this.btnr11c3.FocusOnClick = false;
     this.btnr11c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr11c3.Label = "";
     this.r11c3.Add (this.btnr11c3);
     this.pnlLowerScore.Add (this.r11c3);
     global::Gtk.Table.TableChild w219 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r11c3]));
     w219.TopAttach = ((uint)(3));
     w219.BottomAttach = ((uint)(4));
     w219.LeftAttach = ((uint)(4));
     w219.RightAttach = ((uint)(5));
     w219.XOptions = ((global::Gtk.AttachOptions)(4));
     w219.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r11c4 = new global::Gtk.Frame ();
     this.r11c4.Name = "r11c4";
     // Container child r11c4.Gtk.Container+ContainerChild
     this.btnr11c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr11c4, "Sixes", "Sixes");
     this.btnr11c4.WidthRequest = 30;
     this.btnr11c4.HeightRequest = 27;
     this.btnr11c4.CanFocus = true;
     this.btnr11c4.Name = "btnr11c4";
     this.btnr11c4.UseUnderline = true;
     this.btnr11c4.FocusOnClick = false;
     this.btnr11c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr11c4.Label = "";
     this.r11c4.Add (this.btnr11c4);
     this.pnlLowerScore.Add (this.r11c4);
     global::Gtk.Table.TableChild w221 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r11c4]));
     w221.TopAttach = ((uint)(3));
     w221.BottomAttach = ((uint)(4));
     w221.LeftAttach = ((uint)(5));
     w221.RightAttach = ((uint)(6));
     w221.XOptions = ((global::Gtk.AttachOptions)(4));
     w221.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r11c5 = new global::Gtk.Frame ();
     this.r11c5.Name = "r11c5";
     // Container child r11c5.Gtk.Container+ContainerChild
     this.btnr11c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr11c5, "Sixes", "Sixes");
     this.btnr11c5.WidthRequest = 30;
     this.btnr11c5.HeightRequest = 27;
     this.btnr11c5.CanFocus = true;
     this.btnr11c5.Name = "btnr11c5";
     this.btnr11c5.UseUnderline = true;
     this.btnr11c5.FocusOnClick = false;
     this.btnr11c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr11c5.Label = "";
     this.r11c5.Add (this.btnr11c5);
     this.pnlLowerScore.Add (this.r11c5);
     global::Gtk.Table.TableChild w223 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r11c5]));
     w223.TopAttach = ((uint)(3));
     w223.BottomAttach = ((uint)(4));
     w223.LeftAttach = ((uint)(6));
     w223.RightAttach = ((uint)(7));
     w223.XOptions = ((global::Gtk.AttachOptions)(4));
     w223.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r12c1 = new global::Gtk.Frame ();
     this.r12c1.Name = "r12c1";
     // Container child r12c1.Gtk.Container+ContainerChild
     this.btnr12c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr12c1, "Sixes", "Sixes");
     this.btnr12c1.WidthRequest = 30;
     this.btnr12c1.HeightRequest = 27;
     this.btnr12c1.CanFocus = true;
     this.btnr12c1.Name = "btnr12c1";
     this.btnr12c1.UseUnderline = true;
     this.btnr12c1.FocusOnClick = false;
     this.btnr12c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr12c1.Label = "";
     this.r12c1.Add (this.btnr12c1);
     this.pnlLowerScore.Add (this.r12c1);
     global::Gtk.Table.TableChild w225 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r12c1]));
     w225.TopAttach = ((uint)(4));
     w225.BottomAttach = ((uint)(5));
     w225.LeftAttach = ((uint)(2));
     w225.RightAttach = ((uint)(3));
     w225.XOptions = ((global::Gtk.AttachOptions)(4));
     w225.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r12c2 = new global::Gtk.Frame ();
     this.r12c2.Name = "r12c2";
     // Container child r12c2.Gtk.Container+ContainerChild
     this.btnr12c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr12c2, "Sixes", "Sixes");
     this.btnr12c2.WidthRequest = 30;
     this.btnr12c2.HeightRequest = 27;
     this.btnr12c2.CanFocus = true;
     this.btnr12c2.Name = "btnr12c2";
     this.btnr12c2.UseUnderline = true;
     this.btnr12c2.FocusOnClick = false;
     this.btnr12c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr12c2.Label = "";
     this.r12c2.Add (this.btnr12c2);
     this.pnlLowerScore.Add (this.r12c2);
     global::Gtk.Table.TableChild w227 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r12c2]));
     w227.TopAttach = ((uint)(4));
     w227.BottomAttach = ((uint)(5));
     w227.LeftAttach = ((uint)(3));
     w227.RightAttach = ((uint)(4));
     w227.XOptions = ((global::Gtk.AttachOptions)(4));
     w227.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r12c3 = new global::Gtk.Frame ();
     this.r12c3.Name = "r12c3";
     // Container child r12c3.Gtk.Container+ContainerChild
     this.btnr12c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr12c3, "Sixes", "Sixes");
     this.btnr12c3.WidthRequest = 30;
     this.btnr12c3.HeightRequest = 27;
     this.btnr12c3.CanFocus = true;
     this.btnr12c3.Name = "btnr12c3";
     this.btnr12c3.UseUnderline = true;
     this.btnr12c3.FocusOnClick = false;
     this.btnr12c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr12c3.Label = "";
     this.r12c3.Add (this.btnr12c3);
     this.pnlLowerScore.Add (this.r12c3);
     global::Gtk.Table.TableChild w229 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r12c3]));
     w229.TopAttach = ((uint)(4));
     w229.BottomAttach = ((uint)(5));
     w229.LeftAttach = ((uint)(4));
     w229.RightAttach = ((uint)(5));
     w229.XOptions = ((global::Gtk.AttachOptions)(4));
     w229.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r12c4 = new global::Gtk.Frame ();
     this.r12c4.Name = "r12c4";
     // Container child r12c4.Gtk.Container+ContainerChild
     this.btnr12c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr12c4, "Sixes", "Sixes");
     this.btnr12c4.WidthRequest = 30;
     this.btnr12c4.HeightRequest = 27;
     this.btnr12c4.CanFocus = true;
     this.btnr12c4.Name = "btnr12c4";
     this.btnr12c4.UseUnderline = true;
     this.btnr12c4.FocusOnClick = false;
     this.btnr12c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr12c4.Label = "";
     this.r12c4.Add (this.btnr12c4);
     this.pnlLowerScore.Add (this.r12c4);
     global::Gtk.Table.TableChild w231 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r12c4]));
     w231.TopAttach = ((uint)(4));
     w231.BottomAttach = ((uint)(5));
     w231.LeftAttach = ((uint)(5));
     w231.RightAttach = ((uint)(6));
     w231.XOptions = ((global::Gtk.AttachOptions)(4));
     w231.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r12c5 = new global::Gtk.Frame ();
     this.r12c5.Name = "r12c5";
     // Container child r12c5.Gtk.Container+ContainerChild
     this.btnr12c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr12c5, "Sixes", "Sixes");
     this.btnr12c5.WidthRequest = 30;
     this.btnr12c5.HeightRequest = 27;
     this.btnr12c5.CanFocus = true;
     this.btnr12c5.Name = "btnr12c5";
     this.btnr12c5.UseUnderline = true;
     this.btnr12c5.FocusOnClick = false;
     this.btnr12c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr12c5.Label = "";
     this.r12c5.Add (this.btnr12c5);
     this.pnlLowerScore.Add (this.r12c5);
     global::Gtk.Table.TableChild w233 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r12c5]));
     w233.TopAttach = ((uint)(4));
     w233.BottomAttach = ((uint)(5));
     w233.LeftAttach = ((uint)(6));
     w233.RightAttach = ((uint)(7));
     w233.XOptions = ((global::Gtk.AttachOptions)(4));
     w233.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r13c1 = new global::Gtk.Frame ();
     this.r13c1.Name = "r13c1";
     // Container child r13c1.Gtk.Container+ContainerChild
     this.btnr13c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr13c1, "Sixes", "Sixes");
     this.btnr13c1.WidthRequest = 30;
     this.btnr13c1.HeightRequest = 27;
     this.btnr13c1.CanFocus = true;
     this.btnr13c1.Name = "btnr13c1";
     this.btnr13c1.UseUnderline = true;
     this.btnr13c1.FocusOnClick = false;
     this.btnr13c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr13c1.Label = "";
     this.r13c1.Add (this.btnr13c1);
     this.pnlLowerScore.Add (this.r13c1);
     global::Gtk.Table.TableChild w235 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r13c1]));
     w235.TopAttach = ((uint)(5));
     w235.BottomAttach = ((uint)(6));
     w235.LeftAttach = ((uint)(2));
     w235.RightAttach = ((uint)(3));
     w235.XOptions = ((global::Gtk.AttachOptions)(4));
     w235.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r13c2 = new global::Gtk.Frame ();
     this.r13c2.Name = "r13c2";
     // Container child r13c2.Gtk.Container+ContainerChild
     this.btnr13c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr13c2, "Sixes", "Sixes");
     this.btnr13c2.WidthRequest = 30;
     this.btnr13c2.HeightRequest = 27;
     this.btnr13c2.CanFocus = true;
     this.btnr13c2.Name = "btnr13c2";
     this.btnr13c2.UseUnderline = true;
     this.btnr13c2.FocusOnClick = false;
     this.btnr13c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr13c2.Label = "";
     this.r13c2.Add (this.btnr13c2);
     this.pnlLowerScore.Add (this.r13c2);
     global::Gtk.Table.TableChild w237 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r13c2]));
     w237.TopAttach = ((uint)(5));
     w237.BottomAttach = ((uint)(6));
     w237.LeftAttach = ((uint)(3));
     w237.RightAttach = ((uint)(4));
     w237.XOptions = ((global::Gtk.AttachOptions)(4));
     w237.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r13c3 = new global::Gtk.Frame ();
     this.r13c3.Name = "r13c3";
     // Container child r13c3.Gtk.Container+ContainerChild
     this.btnr13c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr13c3, "Sixes", "Sixes");
     this.btnr13c3.WidthRequest = 30;
     this.btnr13c3.HeightRequest = 27;
     this.btnr13c3.CanFocus = true;
     this.btnr13c3.Name = "btnr13c3";
     this.btnr13c3.UseUnderline = true;
     this.btnr13c3.FocusOnClick = false;
     this.btnr13c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr13c3.Label = "";
     this.r13c3.Add (this.btnr13c3);
     this.pnlLowerScore.Add (this.r13c3);
     global::Gtk.Table.TableChild w239 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r13c3]));
     w239.TopAttach = ((uint)(5));
     w239.BottomAttach = ((uint)(6));
     w239.LeftAttach = ((uint)(4));
     w239.RightAttach = ((uint)(5));
     w239.XOptions = ((global::Gtk.AttachOptions)(4));
     w239.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r13c4 = new global::Gtk.Frame ();
     this.r13c4.Name = "r13c4";
     // Container child r13c4.Gtk.Container+ContainerChild
     this.btnr13c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr13c4, "Sixes", "Sixes");
     this.btnr13c4.WidthRequest = 30;
     this.btnr13c4.HeightRequest = 27;
     this.btnr13c4.CanFocus = true;
     this.btnr13c4.Name = "btnr13c4";
     this.btnr13c4.UseUnderline = true;
     this.btnr13c4.FocusOnClick = false;
     this.btnr13c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr13c4.Label = "";
     this.r13c4.Add (this.btnr13c4);
     this.pnlLowerScore.Add (this.r13c4);
     global::Gtk.Table.TableChild w241 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r13c4]));
     w241.TopAttach = ((uint)(5));
     w241.BottomAttach = ((uint)(6));
     w241.LeftAttach = ((uint)(5));
     w241.RightAttach = ((uint)(6));
     w241.XOptions = ((global::Gtk.AttachOptions)(4));
     w241.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r13c5 = new global::Gtk.Frame ();
     this.r13c5.Name = "r13c5";
     // Container child r13c5.Gtk.Container+ContainerChild
     this.btnr13c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr13c5, "Sixes", "Sixes");
     this.btnr13c5.WidthRequest = 30;
     this.btnr13c5.HeightRequest = 27;
     this.btnr13c5.CanFocus = true;
     this.btnr13c5.Name = "btnr13c5";
     this.btnr13c5.UseUnderline = true;
     this.btnr13c5.FocusOnClick = false;
     this.btnr13c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr13c5.Label = "";
     this.r13c5.Add (this.btnr13c5);
     this.pnlLowerScore.Add (this.r13c5);
     global::Gtk.Table.TableChild w243 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r13c5]));
     w243.TopAttach = ((uint)(5));
     w243.BottomAttach = ((uint)(6));
     w243.LeftAttach = ((uint)(6));
     w243.RightAttach = ((uint)(7));
     w243.XOptions = ((global::Gtk.AttachOptions)(4));
     w243.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r14c1 = new global::Gtk.Frame ();
     this.r14c1.Name = "r14c1";
     // Container child r14c1.Gtk.Container+ContainerChild
     this.btnr14c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr14c1, "Sixes", "Sixes");
     this.btnr14c1.WidthRequest = 30;
     this.btnr14c1.HeightRequest = 27;
     this.btnr14c1.CanFocus = true;
     this.btnr14c1.Name = "btnr14c1";
     this.btnr14c1.UseUnderline = true;
     this.btnr14c1.FocusOnClick = false;
     this.btnr14c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr14c1.Label = "";
     this.r14c1.Add (this.btnr14c1);
     this.pnlLowerScore.Add (this.r14c1);
     global::Gtk.Table.TableChild w245 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r14c1]));
     w245.TopAttach = ((uint)(6));
     w245.BottomAttach = ((uint)(7));
     w245.LeftAttach = ((uint)(2));
     w245.RightAttach = ((uint)(3));
     w245.XOptions = ((global::Gtk.AttachOptions)(4));
     w245.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r14c2 = new global::Gtk.Frame ();
     this.r14c2.Name = "r14c2";
     // Container child r14c2.Gtk.Container+ContainerChild
     this.btnr14c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr14c2, "Sixes", "Sixes");
     this.btnr14c2.WidthRequest = 30;
     this.btnr14c2.HeightRequest = 27;
     this.btnr14c2.CanFocus = true;
     this.btnr14c2.Name = "btnr14c2";
     this.btnr14c2.UseUnderline = true;
     this.btnr14c2.FocusOnClick = false;
     this.btnr14c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr14c2.Label = "";
     this.r14c2.Add (this.btnr14c2);
     this.pnlLowerScore.Add (this.r14c2);
     global::Gtk.Table.TableChild w247 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r14c2]));
     w247.TopAttach = ((uint)(6));
     w247.BottomAttach = ((uint)(7));
     w247.LeftAttach = ((uint)(3));
     w247.RightAttach = ((uint)(4));
     w247.XOptions = ((global::Gtk.AttachOptions)(4));
     w247.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r14c3 = new global::Gtk.Frame ();
     this.r14c3.Name = "r14c3";
     // Container child r14c3.Gtk.Container+ContainerChild
     this.btnr14c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr14c3, "Sixes", "Sixes");
     this.btnr14c3.WidthRequest = 30;
     this.btnr14c3.HeightRequest = 27;
     this.btnr14c3.CanFocus = true;
     this.btnr14c3.Name = "btnr14c3";
     this.btnr14c3.UseUnderline = true;
     this.btnr14c3.FocusOnClick = false;
     this.btnr14c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr14c3.Label = "";
     this.r14c3.Add (this.btnr14c3);
     this.pnlLowerScore.Add (this.r14c3);
     global::Gtk.Table.TableChild w249 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r14c3]));
     w249.TopAttach = ((uint)(6));
     w249.BottomAttach = ((uint)(7));
     w249.LeftAttach = ((uint)(4));
     w249.RightAttach = ((uint)(5));
     w249.XOptions = ((global::Gtk.AttachOptions)(4));
     w249.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r14c4 = new global::Gtk.Frame ();
     this.r14c4.Name = "r14c4";
     // Container child r14c4.Gtk.Container+ContainerChild
     this.btnr14c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr14c4, "Sixes", "Sixes");
     this.btnr14c4.WidthRequest = 30;
     this.btnr14c4.HeightRequest = 27;
     this.btnr14c4.CanFocus = true;
     this.btnr14c4.Name = "btnr14c4";
     this.btnr14c4.UseUnderline = true;
     this.btnr14c4.FocusOnClick = false;
     this.btnr14c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr14c4.Label = "";
     this.r14c4.Add (this.btnr14c4);
     this.pnlLowerScore.Add (this.r14c4);
     global::Gtk.Table.TableChild w251 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r14c4]));
     w251.TopAttach = ((uint)(6));
     w251.BottomAttach = ((uint)(7));
     w251.LeftAttach = ((uint)(5));
     w251.RightAttach = ((uint)(6));
     w251.XOptions = ((global::Gtk.AttachOptions)(4));
     w251.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r14c5 = new global::Gtk.Frame ();
     this.r14c5.Name = "r14c5";
     // Container child r14c5.Gtk.Container+ContainerChild
     this.btnr14c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr14c5, "Sixes", "Sixes");
     this.btnr14c5.WidthRequest = 30;
     this.btnr14c5.HeightRequest = 27;
     this.btnr14c5.CanFocus = true;
     this.btnr14c5.Name = "btnr14c5";
     this.btnr14c5.UseUnderline = true;
     this.btnr14c5.FocusOnClick = false;
     this.btnr14c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr14c5.Label = "";
     this.r14c5.Add (this.btnr14c5);
     this.pnlLowerScore.Add (this.r14c5);
     global::Gtk.Table.TableChild w253 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r14c5]));
     w253.TopAttach = ((uint)(6));
     w253.BottomAttach = ((uint)(7));
     w253.LeftAttach = ((uint)(6));
     w253.RightAttach = ((uint)(7));
     w253.XOptions = ((global::Gtk.AttachOptions)(4));
     w253.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r15c1 = new global::Gtk.Frame ();
     this.r15c1.Name = "r15c1";
     // Container child r15c1.Gtk.Container+ContainerChild
     this.btnr15c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr15c1, "Sixes", "Sixes");
     this.btnr15c1.WidthRequest = 30;
     this.btnr15c1.HeightRequest = 27;
     this.btnr15c1.CanFocus = true;
     this.btnr15c1.Name = "btnr15c1";
     this.btnr15c1.UseUnderline = true;
     this.btnr15c1.FocusOnClick = false;
     this.btnr15c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr15c1.Label = "";
     this.r15c1.Add (this.btnr15c1);
     this.pnlLowerScore.Add (this.r15c1);
     global::Gtk.Table.TableChild w255 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r15c1]));
     w255.TopAttach = ((uint)(7));
     w255.BottomAttach = ((uint)(8));
     w255.LeftAttach = ((uint)(2));
     w255.RightAttach = ((uint)(3));
     w255.XOptions = ((global::Gtk.AttachOptions)(4));
     w255.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r15c2 = new global::Gtk.Frame ();
     this.r15c2.Name = "r15c2";
     // Container child r15c2.Gtk.Container+ContainerChild
     this.btnr15c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr15c2, "Sixes", "Sixes");
     this.btnr15c2.WidthRequest = 30;
     this.btnr15c2.HeightRequest = 27;
     this.btnr15c2.CanFocus = true;
     this.btnr15c2.Name = "btnr15c2";
     this.btnr15c2.UseUnderline = true;
     this.btnr15c2.FocusOnClick = false;
     this.btnr15c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr15c2.Label = "";
     this.r15c2.Add (this.btnr15c2);
     this.pnlLowerScore.Add (this.r15c2);
     global::Gtk.Table.TableChild w257 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r15c2]));
     w257.TopAttach = ((uint)(7));
     w257.BottomAttach = ((uint)(8));
     w257.LeftAttach = ((uint)(3));
     w257.RightAttach = ((uint)(4));
     w257.XOptions = ((global::Gtk.AttachOptions)(4));
     w257.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r15c3 = new global::Gtk.Frame ();
     this.r15c3.Name = "r15c3";
     // Container child r15c3.Gtk.Container+ContainerChild
     this.btnr15c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr15c3, "Sixes", "Sixes");
     this.btnr15c3.WidthRequest = 30;
     this.btnr15c3.HeightRequest = 27;
     this.btnr15c3.CanFocus = true;
     this.btnr15c3.Name = "btnr15c3";
     this.btnr15c3.UseUnderline = true;
     this.btnr15c3.FocusOnClick = false;
     this.btnr15c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr15c3.Label = "";
     this.r15c3.Add (this.btnr15c3);
     this.pnlLowerScore.Add (this.r15c3);
     global::Gtk.Table.TableChild w259 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r15c3]));
     w259.TopAttach = ((uint)(7));
     w259.BottomAttach = ((uint)(8));
     w259.LeftAttach = ((uint)(4));
     w259.RightAttach = ((uint)(5));
     w259.XOptions = ((global::Gtk.AttachOptions)(4));
     w259.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r15c4 = new global::Gtk.Frame ();
     this.r15c4.Name = "r15c4";
     // Container child r15c4.Gtk.Container+ContainerChild
     this.btnr15c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr15c4, "Sixes", "Sixes");
     this.btnr15c4.WidthRequest = 30;
     this.btnr15c4.HeightRequest = 27;
     this.btnr15c4.CanFocus = true;
     this.btnr15c4.Name = "btnr15c4";
     this.btnr15c4.UseUnderline = true;
     this.btnr15c4.FocusOnClick = false;
     this.btnr15c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr15c4.Label = "";
     this.r15c4.Add (this.btnr15c4);
     this.pnlLowerScore.Add (this.r15c4);
     global::Gtk.Table.TableChild w261 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r15c4]));
     w261.TopAttach = ((uint)(7));
     w261.BottomAttach = ((uint)(8));
     w261.LeftAttach = ((uint)(5));
     w261.RightAttach = ((uint)(6));
     w261.XOptions = ((global::Gtk.AttachOptions)(4));
     w261.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r15c5 = new global::Gtk.Frame ();
     this.r15c5.Name = "r15c5";
     // Container child r15c5.Gtk.Container+ContainerChild
     this.btnr15c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr15c5, "Sixes", "Sixes");
     this.btnr15c5.WidthRequest = 30;
     this.btnr15c5.HeightRequest = 27;
     this.btnr15c5.CanFocus = true;
     this.btnr15c5.Name = "btnr15c5";
     this.btnr15c5.UseUnderline = true;
     this.btnr15c5.FocusOnClick = false;
     this.btnr15c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr15c5.Label = "";
     this.r15c5.Add (this.btnr15c5);
     this.pnlLowerScore.Add (this.r15c5);
     global::Gtk.Table.TableChild w263 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r15c5]));
     w263.TopAttach = ((uint)(7));
     w263.BottomAttach = ((uint)(8));
     w263.LeftAttach = ((uint)(6));
     w263.RightAttach = ((uint)(7));
     w263.XOptions = ((global::Gtk.AttachOptions)(4));
     w263.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r16c1 = new global::Gtk.Frame ();
     this.r16c1.Name = "r16c1";
     // Container child r16c1.Gtk.Container+ContainerChild
     this.btnr16c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr16c1, "Sixes", "Sixes");
     this.btnr16c1.WidthRequest = 30;
     this.btnr16c1.HeightRequest = 27;
     this.btnr16c1.CanFocus = true;
     this.btnr16c1.Name = "btnr16c1";
     this.btnr16c1.UseUnderline = true;
     this.btnr16c1.FocusOnClick = false;
     this.btnr16c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr16c1.Label = "";
     this.r16c1.Add (this.btnr16c1);
     this.pnlLowerScore.Add (this.r16c1);
     global::Gtk.Table.TableChild w265 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r16c1]));
     w265.TopAttach = ((uint)(8));
     w265.BottomAttach = ((uint)(9));
     w265.LeftAttach = ((uint)(2));
     w265.RightAttach = ((uint)(3));
     w265.XOptions = ((global::Gtk.AttachOptions)(4));
     w265.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r16c2 = new global::Gtk.Frame ();
     this.r16c2.Name = "r16c2";
     // Container child r16c2.Gtk.Container+ContainerChild
     this.btnr16c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr16c2, "Sixes", "Sixes");
     this.btnr16c2.WidthRequest = 30;
     this.btnr16c2.HeightRequest = 27;
     this.btnr16c2.CanFocus = true;
     this.btnr16c2.Name = "btnr16c2";
     this.btnr16c2.UseUnderline = true;
     this.btnr16c2.FocusOnClick = false;
     this.btnr16c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr16c2.Label = "";
     this.r16c2.Add (this.btnr16c2);
     this.pnlLowerScore.Add (this.r16c2);
     global::Gtk.Table.TableChild w267 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r16c2]));
     w267.TopAttach = ((uint)(8));
     w267.BottomAttach = ((uint)(9));
     w267.LeftAttach = ((uint)(3));
     w267.RightAttach = ((uint)(4));
     w267.XOptions = ((global::Gtk.AttachOptions)(4));
     w267.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r16c3 = new global::Gtk.Frame ();
     this.r16c3.Name = "r16c3";
     // Container child r16c3.Gtk.Container+ContainerChild
     this.btnr16c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr16c3, "Sixes", "Sixes");
     this.btnr16c3.WidthRequest = 30;
     this.btnr16c3.HeightRequest = 27;
     this.btnr16c3.CanFocus = true;
     this.btnr16c3.Name = "btnr16c3";
     this.btnr16c3.UseUnderline = true;
     this.btnr16c3.FocusOnClick = false;
     this.btnr16c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr16c3.Label = "";
     this.r16c3.Add (this.btnr16c3);
     this.pnlLowerScore.Add (this.r16c3);
     global::Gtk.Table.TableChild w269 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r16c3]));
     w269.TopAttach = ((uint)(8));
     w269.BottomAttach = ((uint)(9));
     w269.LeftAttach = ((uint)(4));
     w269.RightAttach = ((uint)(5));
     w269.XOptions = ((global::Gtk.AttachOptions)(4));
     w269.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r16c4 = new global::Gtk.Frame ();
     this.r16c4.Name = "r16c4";
     // Container child r16c4.Gtk.Container+ContainerChild
     this.btnr16c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr16c4, "Sixes", "Sixes");
     this.btnr16c4.WidthRequest = 30;
     this.btnr16c4.HeightRequest = 27;
     this.btnr16c4.CanFocus = true;
     this.btnr16c4.Name = "btnr16c4";
     this.btnr16c4.UseUnderline = true;
     this.btnr16c4.FocusOnClick = false;
     this.btnr16c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr16c4.Label = "";
     this.r16c4.Add (this.btnr16c4);
     this.pnlLowerScore.Add (this.r16c4);
     global::Gtk.Table.TableChild w271 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r16c4]));
     w271.TopAttach = ((uint)(8));
     w271.BottomAttach = ((uint)(9));
     w271.LeftAttach = ((uint)(5));
     w271.RightAttach = ((uint)(6));
     w271.XOptions = ((global::Gtk.AttachOptions)(4));
     w271.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r16c5 = new global::Gtk.Frame ();
     this.r16c5.Name = "r16c5";
     // Container child r16c5.Gtk.Container+ContainerChild
     this.btnr16c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr16c5, "Sixes", "Sixes");
     this.btnr16c5.WidthRequest = 30;
     this.btnr16c5.HeightRequest = 27;
     this.btnr16c5.CanFocus = true;
     this.btnr16c5.Name = "btnr16c5";
     this.btnr16c5.UseUnderline = true;
     this.btnr16c5.FocusOnClick = false;
     this.btnr16c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr16c5.Label = "";
     this.r16c5.Add (this.btnr16c5);
     this.pnlLowerScore.Add (this.r16c5);
     global::Gtk.Table.TableChild w273 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r16c5]));
     w273.TopAttach = ((uint)(8));
     w273.BottomAttach = ((uint)(9));
     w273.LeftAttach = ((uint)(6));
     w273.RightAttach = ((uint)(7));
     w273.XOptions = ((global::Gtk.AttachOptions)(4));
     w273.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r17c1 = new global::Gtk.Frame ();
     this.r17c1.Name = "r17c1";
     // Container child r17c1.Gtk.Container+ContainerChild
     this.btnr17c1 = new global::Gtk.Label ();
     this.btnr17c1.Name = "btnr17c1";
     this.btnr17c1.Justify = ((global::Gtk.Justification)(2));
     this.r17c1.Add (this.btnr17c1);
     this.pnlLowerScore.Add (this.r17c1);
     global::Gtk.Table.TableChild w275 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r17c1]));
     w275.TopAttach = ((uint)(9));
     w275.BottomAttach = ((uint)(10));
     w275.LeftAttach = ((uint)(2));
     w275.RightAttach = ((uint)(3));
     w275.XOptions = ((global::Gtk.AttachOptions)(4));
     w275.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r17c2 = new global::Gtk.Frame ();
     this.r17c2.Name = "r17c2";
     // Container child r17c2.Gtk.Container+ContainerChild
     this.btnr17c2 = new global::Gtk.Label ();
     this.btnr17c2.Name = "btnr17c2";
     this.btnr17c2.Justify = ((global::Gtk.Justification)(2));
     this.r17c2.Add (this.btnr17c2);
     this.pnlLowerScore.Add (this.r17c2);
     global::Gtk.Table.TableChild w277 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r17c2]));
     w277.TopAttach = ((uint)(9));
     w277.BottomAttach = ((uint)(10));
     w277.LeftAttach = ((uint)(3));
     w277.RightAttach = ((uint)(4));
     w277.XOptions = ((global::Gtk.AttachOptions)(4));
     w277.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r17c3 = new global::Gtk.Frame ();
     this.r17c3.Name = "r17c3";
     // Container child r17c3.Gtk.Container+ContainerChild
     this.btnr17c3 = new global::Gtk.Label ();
     this.btnr17c3.Name = "btnr17c3";
     this.btnr17c3.Justify = ((global::Gtk.Justification)(2));
     this.r17c3.Add (this.btnr17c3);
     this.pnlLowerScore.Add (this.r17c3);
     global::Gtk.Table.TableChild w279 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r17c3]));
     w279.TopAttach = ((uint)(9));
     w279.BottomAttach = ((uint)(10));
     w279.LeftAttach = ((uint)(4));
     w279.RightAttach = ((uint)(5));
     w279.XOptions = ((global::Gtk.AttachOptions)(4));
     w279.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r17c4 = new global::Gtk.Frame ();
     this.r17c4.Name = "r17c4";
     // Container child r17c4.Gtk.Container+ContainerChild
     this.btnr17c4 = new global::Gtk.Label ();
     this.btnr17c4.Name = "btnr17c4";
     this.btnr17c4.Justify = ((global::Gtk.Justification)(2));
     this.r17c4.Add (this.btnr17c4);
     this.pnlLowerScore.Add (this.r17c4);
     global::Gtk.Table.TableChild w281 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r17c4]));
     w281.TopAttach = ((uint)(9));
     w281.BottomAttach = ((uint)(10));
     w281.LeftAttach = ((uint)(5));
     w281.RightAttach = ((uint)(6));
     w281.XOptions = ((global::Gtk.AttachOptions)(4));
     w281.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r17c5 = new global::Gtk.Frame ();
     this.r17c5.Name = "r17c5";
     // Container child r17c5.Gtk.Container+ContainerChild
     this.btnr17c5 = new global::Gtk.Label ();
     this.btnr17c5.Name = "btnr17c5";
     this.btnr17c5.Justify = ((global::Gtk.Justification)(2));
     this.r17c5.Add (this.btnr17c5);
     this.pnlLowerScore.Add (this.r17c5);
     global::Gtk.Table.TableChild w283 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r17c5]));
     w283.TopAttach = ((uint)(9));
     w283.BottomAttach = ((uint)(10));
     w283.LeftAttach = ((uint)(6));
     w283.RightAttach = ((uint)(7));
     w283.XOptions = ((global::Gtk.AttachOptions)(4));
     w283.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r18c1 = new global::Gtk.Frame ();
     this.r18c1.Name = "r18c1";
     // Container child r18c1.Gtk.Container+ContainerChild
     this.rbtn18c1 = new global::Gtk.Label ();
     this.rbtn18c1.Name = "rbtn18c1";
     this.rbtn18c1.Justify = ((global::Gtk.Justification)(2));
     this.r18c1.Add (this.rbtn18c1);
     this.pnlLowerScore.Add (this.r18c1);
     global::Gtk.Table.TableChild w285 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r18c1]));
     w285.TopAttach = ((uint)(10));
     w285.BottomAttach = ((uint)(11));
     w285.LeftAttach = ((uint)(2));
     w285.RightAttach = ((uint)(3));
     w285.XOptions = ((global::Gtk.AttachOptions)(4));
     w285.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r18c2 = new global::Gtk.Frame ();
     this.r18c2.Name = "r18c2";
     // Container child r18c2.Gtk.Container+ContainerChild
     this.btnr18c2 = new global::Gtk.Label ();
     this.btnr18c2.Name = "btnr18c2";
     this.btnr18c2.Justify = ((global::Gtk.Justification)(2));
     this.r18c2.Add (this.btnr18c2);
     this.pnlLowerScore.Add (this.r18c2);
     global::Gtk.Table.TableChild w287 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r18c2]));
     w287.TopAttach = ((uint)(10));
     w287.BottomAttach = ((uint)(11));
     w287.LeftAttach = ((uint)(3));
     w287.RightAttach = ((uint)(4));
     w287.XOptions = ((global::Gtk.AttachOptions)(4));
     w287.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r18c3 = new global::Gtk.Frame ();
     this.r18c3.Name = "r18c3";
     // Container child r18c3.Gtk.Container+ContainerChild
     this.btnr18c3 = new global::Gtk.Label ();
     this.btnr18c3.Name = "btnr18c3";
     this.btnr18c3.Justify = ((global::Gtk.Justification)(2));
     this.r18c3.Add (this.btnr18c3);
     this.pnlLowerScore.Add (this.r18c3);
     global::Gtk.Table.TableChild w289 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r18c3]));
     w289.TopAttach = ((uint)(10));
     w289.BottomAttach = ((uint)(11));
     w289.LeftAttach = ((uint)(4));
     w289.RightAttach = ((uint)(5));
     w289.XOptions = ((global::Gtk.AttachOptions)(4));
     w289.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r18c4 = new global::Gtk.Frame ();
     this.r18c4.Name = "r18c4";
     // Container child r18c4.Gtk.Container+ContainerChild
     this.btnr18c4 = new global::Gtk.Label ();
     this.btnr18c4.Name = "btnr18c4";
     this.btnr18c4.Justify = ((global::Gtk.Justification)(2));
     this.r18c4.Add (this.btnr18c4);
     this.pnlLowerScore.Add (this.r18c4);
     global::Gtk.Table.TableChild w291 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r18c4]));
     w291.TopAttach = ((uint)(10));
     w291.BottomAttach = ((uint)(11));
     w291.LeftAttach = ((uint)(5));
     w291.RightAttach = ((uint)(6));
     w291.XOptions = ((global::Gtk.AttachOptions)(4));
     w291.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r18c5 = new global::Gtk.Frame ();
     this.r18c5.Name = "r18c5";
     // Container child r18c5.Gtk.Container+ContainerChild
     this.btnr18c5 = new global::Gtk.Label ();
     this.btnr18c5.Name = "btnr18c5";
     this.btnr18c5.Justify = ((global::Gtk.Justification)(2));
     this.r18c5.Add (this.btnr18c5);
     this.pnlLowerScore.Add (this.r18c5);
     global::Gtk.Table.TableChild w293 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r18c5]));
     w293.TopAttach = ((uint)(10));
     w293.BottomAttach = ((uint)(11));
     w293.LeftAttach = ((uint)(6));
     w293.RightAttach = ((uint)(7));
     w293.XOptions = ((global::Gtk.AttachOptions)(4));
     w293.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r19c1 = new global::Gtk.Frame ();
     this.r19c1.Name = "r19c1";
     // Container child r19c1.Gtk.Container+ContainerChild
     this.btnr19c1 = new global::Gtk.Label ();
     this.btnr19c1.Name = "btnr19c1";
     this.btnr19c1.Justify = ((global::Gtk.Justification)(2));
     this.r19c1.Add (this.btnr19c1);
     this.pnlLowerScore.Add (this.r19c1);
     global::Gtk.Table.TableChild w295 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r19c1]));
     w295.TopAttach = ((uint)(11));
     w295.BottomAttach = ((uint)(12));
     w295.LeftAttach = ((uint)(2));
     w295.RightAttach = ((uint)(3));
     w295.XOptions = ((global::Gtk.AttachOptions)(4));
     w295.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r19c2 = new global::Gtk.Frame ();
     this.r19c2.Name = "r19c2";
     // Container child r19c2.Gtk.Container+ContainerChild
     this.btnr19c2 = new global::Gtk.Label ();
     this.btnr19c2.Name = "btnr19c2";
     this.btnr19c2.Justify = ((global::Gtk.Justification)(2));
     this.r19c2.Add (this.btnr19c2);
     this.pnlLowerScore.Add (this.r19c2);
     global::Gtk.Table.TableChild w297 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r19c2]));
     w297.TopAttach = ((uint)(11));
     w297.BottomAttach = ((uint)(12));
     w297.LeftAttach = ((uint)(3));
     w297.RightAttach = ((uint)(4));
     w297.XOptions = ((global::Gtk.AttachOptions)(4));
     w297.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r19c3 = new global::Gtk.Frame ();
     this.r19c3.Name = "r19c3";
     // Container child r19c3.Gtk.Container+ContainerChild
     this.btnr19c3 = new global::Gtk.Label ();
     this.btnr19c3.Name = "btnr19c3";
     this.btnr19c3.Justify = ((global::Gtk.Justification)(2));
     this.r19c3.Add (this.btnr19c3);
     this.pnlLowerScore.Add (this.r19c3);
     global::Gtk.Table.TableChild w299 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r19c3]));
     w299.TopAttach = ((uint)(11));
     w299.BottomAttach = ((uint)(12));
     w299.LeftAttach = ((uint)(4));
     w299.RightAttach = ((uint)(5));
     w299.XOptions = ((global::Gtk.AttachOptions)(4));
     w299.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r19c4 = new global::Gtk.Frame ();
     this.r19c4.Name = "r19c4";
     // Container child r19c4.Gtk.Container+ContainerChild
     this.btnr19c4 = new global::Gtk.Label ();
     this.btnr19c4.Name = "btnr19c4";
     this.btnr19c4.Justify = ((global::Gtk.Justification)(2));
     this.r19c4.Add (this.btnr19c4);
     this.pnlLowerScore.Add (this.r19c4);
     global::Gtk.Table.TableChild w301 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r19c4]));
     w301.TopAttach = ((uint)(11));
     w301.BottomAttach = ((uint)(12));
     w301.LeftAttach = ((uint)(5));
     w301.RightAttach = ((uint)(6));
     w301.XOptions = ((global::Gtk.AttachOptions)(4));
     w301.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r19c5 = new global::Gtk.Frame ();
     this.r19c5.Name = "r19c5";
     // Container child r19c5.Gtk.Container+ContainerChild
     this.btnr19c5 = new global::Gtk.Label ();
     this.btnr19c5.Name = "btnr19c5";
     this.btnr19c5.Justify = ((global::Gtk.Justification)(2));
     this.r19c5.Add (this.btnr19c5);
     this.pnlLowerScore.Add (this.r19c5);
     global::Gtk.Table.TableChild w303 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r19c5]));
     w303.TopAttach = ((uint)(11));
     w303.BottomAttach = ((uint)(12));
     w303.LeftAttach = ((uint)(6));
     w303.RightAttach = ((uint)(7));
     w303.XOptions = ((global::Gtk.AttachOptions)(4));
     w303.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r9c1 = new global::Gtk.Frame ();
     this.r9c1.Name = "r9c1";
     // Container child r9c1.Gtk.Container+ContainerChild
     this.btnr9c1 = new global::Gtk.Button ();
     w59.SetTip (this.btnr9c1, "Sixes", "Sixes");
     this.btnr9c1.WidthRequest = 30;
     this.btnr9c1.HeightRequest = 27;
     this.btnr9c1.CanFocus = true;
     this.btnr9c1.Name = "btnr9c1";
     this.btnr9c1.UseUnderline = true;
     this.btnr9c1.FocusOnClick = false;
     this.btnr9c1.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr9c1.Label = "";
     this.r9c1.Add (this.btnr9c1);
     this.pnlLowerScore.Add (this.r9c1);
     global::Gtk.Table.TableChild w305 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r9c1]));
     w305.TopAttach = ((uint)(1));
     w305.BottomAttach = ((uint)(2));
     w305.LeftAttach = ((uint)(2));
     w305.RightAttach = ((uint)(3));
     w305.XOptions = ((global::Gtk.AttachOptions)(4));
     w305.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r9c2 = new global::Gtk.Frame ();
     this.r9c2.Name = "r9c2";
     // Container child r9c2.Gtk.Container+ContainerChild
     this.btnr9c2 = new global::Gtk.Button ();
     w59.SetTip (this.btnr9c2, "Sixes", "Sixes");
     this.btnr9c2.WidthRequest = 30;
     this.btnr9c2.HeightRequest = 27;
     this.btnr9c2.CanFocus = true;
     this.btnr9c2.Name = "btnr9c2";
     this.btnr9c2.UseUnderline = true;
     this.btnr9c2.FocusOnClick = false;
     this.btnr9c2.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr9c2.Label = "";
     this.r9c2.Add (this.btnr9c2);
     this.pnlLowerScore.Add (this.r9c2);
     global::Gtk.Table.TableChild w307 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r9c2]));
     w307.TopAttach = ((uint)(1));
     w307.BottomAttach = ((uint)(2));
     w307.LeftAttach = ((uint)(3));
     w307.RightAttach = ((uint)(4));
     w307.XOptions = ((global::Gtk.AttachOptions)(4));
     w307.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r9c3 = new global::Gtk.Frame ();
     this.r9c3.Name = "r9c3";
     // Container child r9c3.Gtk.Container+ContainerChild
     this.btnr9c3 = new global::Gtk.Button ();
     w59.SetTip (this.btnr9c3, "Sixes", "Sixes");
     this.btnr9c3.WidthRequest = 30;
     this.btnr9c3.HeightRequest = 27;
     this.btnr9c3.CanFocus = true;
     this.btnr9c3.Name = "btnr9c3";
     this.btnr9c3.UseUnderline = true;
     this.btnr9c3.FocusOnClick = false;
     this.btnr9c3.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr9c3.Label = "";
     this.r9c3.Add (this.btnr9c3);
     this.pnlLowerScore.Add (this.r9c3);
     global::Gtk.Table.TableChild w309 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r9c3]));
     w309.TopAttach = ((uint)(1));
     w309.BottomAttach = ((uint)(2));
     w309.LeftAttach = ((uint)(4));
     w309.RightAttach = ((uint)(5));
     w309.XOptions = ((global::Gtk.AttachOptions)(4));
     w309.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r9c4 = new global::Gtk.Frame ();
     this.r9c4.Name = "r9c4";
     // Container child r9c4.Gtk.Container+ContainerChild
     this.btnr9c4 = new global::Gtk.Button ();
     w59.SetTip (this.btnr9c4, "Sixes", "Sixes");
     this.btnr9c4.WidthRequest = 30;
     this.btnr9c4.HeightRequest = 27;
     this.btnr9c4.CanFocus = true;
     this.btnr9c4.Name = "btnr9c4";
     this.btnr9c4.UseUnderline = true;
     this.btnr9c4.FocusOnClick = false;
     this.btnr9c4.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr9c4.Label = "";
     this.r9c4.Add (this.btnr9c4);
     this.pnlLowerScore.Add (this.r9c4);
     global::Gtk.Table.TableChild w311 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r9c4]));
     w311.TopAttach = ((uint)(1));
     w311.BottomAttach = ((uint)(2));
     w311.LeftAttach = ((uint)(5));
     w311.RightAttach = ((uint)(6));
     w311.XOptions = ((global::Gtk.AttachOptions)(4));
     w311.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child pnlLowerScore.Gtk.Table+TableChild
     this.r9c5 = new global::Gtk.Frame ();
     this.r9c5.Name = "r9c5";
     // Container child r9c5.Gtk.Container+ContainerChild
     this.btnr9c5 = new global::Gtk.Button ();
     w59.SetTip (this.btnr9c5, "Sixes", "Sixes");
     this.btnr9c5.WidthRequest = 30;
     this.btnr9c5.HeightRequest = 27;
     this.btnr9c5.CanFocus = true;
     this.btnr9c5.Name = "btnr9c5";
     this.btnr9c5.UseUnderline = true;
     this.btnr9c5.FocusOnClick = false;
     this.btnr9c5.Relief = ((global::Gtk.ReliefStyle)(2));
     this.btnr9c5.Label = "";
     this.r9c5.Add (this.btnr9c5);
     this.pnlLowerScore.Add (this.r9c5);
     global::Gtk.Table.TableChild w313 = ((global::Gtk.Table.TableChild)(this.pnlLowerScore[this.r9c5]));
     w313.TopAttach = ((uint)(1));
     w313.BottomAttach = ((uint)(2));
     w313.LeftAttach = ((uint)(6));
     w313.RightAttach = ((uint)(7));
     w313.XOptions = ((global::Gtk.AttachOptions)(4));
     w313.YOptions = ((global::Gtk.AttachOptions)(4));
     this.pnlopps2.Add (this.pnlLowerScore);
     this.vbox4.Add (this.pnlopps2);
     global::Gtk.Box.BoxChild w315 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.pnlopps2]));
     w315.Position = 2;
     w315.Expand = false;
     w315.Fill = false;
     this.frame5.Add (this.vbox4);
     this.hbox1.Add (this.frame5);
     global::Gtk.Box.BoxChild w317 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.frame5]));
     w317.Position = 2;
     w317.Expand = false;
     w317.Fill = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.vpaned1 = new global::Gtk.VPaned ();
     this.vpaned1.CanFocus = true;
     this.vpaned1.Name = "vpaned1";
     this.vpaned1.Position = 435;
     // Container child vpaned1.Gtk.Paned+PanedChild
     this.frame145 = new global::Gtk.Frame ();
     this.frame145.Name = "frame145";
     // Container child frame145.Gtk.Container+ContainerChild
     this.vbox1 = new global::Gtk.VBox ();
     this.vbox1.WidthRequest = 205;
     this.vbox1.Name = "vbox1";
     this.vbox1.BorderWidth = ((uint)(10));
     // Container child vbox1.Gtk.Box+BoxChild
     this.label1 = new global::Gtk.Label ();
     this.label1.Name = "label1";
     this.label1.LabelProp = "<b>Players Name</b>";
     this.label1.UseMarkup = true;
     this.vbox1.Add (this.label1);
     global::Gtk.Box.BoxChild w318 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.label1]));
     w318.Position = 0;
     w318.Expand = false;
     w318.Fill = false;
     w318.Padding = ((uint)(4));
     // Container child vbox1.Gtk.Box+BoxChild
     this.txtPlayerName = new global::Gtk.Entry ();
     this.txtPlayerName.CanFocus = true;
     this.txtPlayerName.Name = "txtPlayerName";
     this.txtPlayerName.Text = global::Mono.Unix.Catalog.GetString ("New Player");
     this.txtPlayerName.IsEditable = true;
     this.txtPlayerName.InvisibleChar = '●';
     this.vbox1.Add (this.txtPlayerName);
     global::Gtk.Box.BoxChild w319 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.txtPlayerName]));
     w319.Position = 1;
     w319.Expand = false;
     w319.Fill = false;
     w319.Padding = ((uint)(2));
     // Container child vbox1.Gtk.Box+BoxChild
     this.tblDice = new global::Gtk.Table (((uint)(5)), ((uint)(2)), false);
     this.tblDice.Name = "tblDice";
     this.tblDice.RowSpacing = ((uint)(2));
     this.tblDice.ColumnSpacing = ((uint)(2));
     // Container child tblDice.Gtk.Table+TableChild
     this.cmdDice1 = new global::Gtk.Button ();
     this.cmdDice1.CanFocus = true;
     this.cmdDice1.Name = "cmdDice1";
     this.cmdDice1.Relief = ((global::Gtk.ReliefStyle)(2));
     // Container child cmdDice1.Gtk.Container+ContainerChild
     this.Dice1 = new global::Gtk.Image ();
     this.Dice1.Name = "Dice1";
     this.Dice1.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dice1.png");
     this.cmdDice1.Add (this.Dice1);
     this.cmdDice1.Label = null;
     this.tblDice.Add (this.cmdDice1);
     global::Gtk.Table.TableChild w321 = ((global::Gtk.Table.TableChild)(this.tblDice[this.cmdDice1]));
     w321.XPadding = ((uint)(10));
     w321.YPadding = ((uint)(3));
     w321.XOptions = ((global::Gtk.AttachOptions)(4));
     w321.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblDice.Gtk.Table+TableChild
     this.cmdDice2 = new global::Gtk.Button ();
     this.cmdDice2.CanFocus = true;
     this.cmdDice2.Name = "cmdDice2";
     this.cmdDice2.Relief = ((global::Gtk.ReliefStyle)(2));
     // Container child cmdDice2.Gtk.Container+ContainerChild
     this.Dice2 = new global::Gtk.Image ();
     this.Dice2.Name = "Dice2";
     this.Dice2.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dice2.png");
     this.cmdDice2.Add (this.Dice2);
     this.cmdDice2.Label = null;
     this.tblDice.Add (this.cmdDice2);
     global::Gtk.Table.TableChild w323 = ((global::Gtk.Table.TableChild)(this.tblDice[this.cmdDice2]));
     w323.TopAttach = ((uint)(1));
     w323.BottomAttach = ((uint)(2));
     w323.XPadding = ((uint)(10));
     w323.YPadding = ((uint)(3));
     w323.XOptions = ((global::Gtk.AttachOptions)(4));
     w323.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblDice.Gtk.Table+TableChild
     this.cmdDice3 = new global::Gtk.Button ();
     this.cmdDice3.CanFocus = true;
     this.cmdDice3.Name = "cmdDice3";
     this.cmdDice3.Relief = ((global::Gtk.ReliefStyle)(2));
     // Container child cmdDice3.Gtk.Container+ContainerChild
     this.Dice3 = new global::Gtk.Image ();
     this.Dice3.Name = "Dice3";
     this.Dice3.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dice3.png");
     this.cmdDice3.Add (this.Dice3);
     this.cmdDice3.Label = null;
     this.tblDice.Add (this.cmdDice3);
     global::Gtk.Table.TableChild w325 = ((global::Gtk.Table.TableChild)(this.tblDice[this.cmdDice3]));
     w325.TopAttach = ((uint)(2));
     w325.BottomAttach = ((uint)(3));
     w325.XPadding = ((uint)(10));
     w325.YPadding = ((uint)(3));
     w325.XOptions = ((global::Gtk.AttachOptions)(4));
     w325.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblDice.Gtk.Table+TableChild
     this.cmdDice4 = new global::Gtk.Button ();
     this.cmdDice4.CanFocus = true;
     this.cmdDice4.Name = "cmdDice4";
     this.cmdDice4.Relief = ((global::Gtk.ReliefStyle)(2));
     // Container child cmdDice4.Gtk.Container+ContainerChild
     this.Dice4 = new global::Gtk.Image ();
     this.Dice4.Name = "Dice4";
     this.Dice4.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dice4.png");
     this.cmdDice4.Add (this.Dice4);
     this.cmdDice4.Label = null;
     this.tblDice.Add (this.cmdDice4);
     global::Gtk.Table.TableChild w327 = ((global::Gtk.Table.TableChild)(this.tblDice[this.cmdDice4]));
     w327.TopAttach = ((uint)(3));
     w327.BottomAttach = ((uint)(4));
     w327.XPadding = ((uint)(10));
     w327.YPadding = ((uint)(3));
     w327.XOptions = ((global::Gtk.AttachOptions)(4));
     w327.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblDice.Gtk.Table+TableChild
     this.cmdDice5 = new global::Gtk.Button ();
     this.cmdDice5.CanFocus = true;
     this.cmdDice5.Name = "cmdDice5";
     this.cmdDice5.Relief = ((global::Gtk.ReliefStyle)(2));
     // Container child cmdDice5.Gtk.Container+ContainerChild
     this.Dice5 = new global::Gtk.Image ();
     this.Dice5.Name = "Dice5";
     this.Dice5.Pixbuf = global::Gdk.Pixbuf.LoadFromResource ("dice5.png");
     this.cmdDice5.Add (this.Dice5);
     this.cmdDice5.Label = null;
     this.tblDice.Add (this.cmdDice5);
     global::Gtk.Table.TableChild w329 = ((global::Gtk.Table.TableChild)(this.tblDice[this.cmdDice5]));
     w329.TopAttach = ((uint)(4));
     w329.BottomAttach = ((uint)(5));
     w329.XPadding = ((uint)(10));
     w329.YPadding = ((uint)(3));
     w329.XOptions = ((global::Gtk.AttachOptions)(4));
     w329.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblDice.Gtk.Table+TableChild
     this.lblHold1 = new global::Gtk.Label ();
     this.lblHold1.WidthRequest = 55;
     this.lblHold1.Name = "lblHold1";
     this.lblHold1.UseMarkup = true;
     this.tblDice.Add (this.lblHold1);
     global::Gtk.Table.TableChild w330 = ((global::Gtk.Table.TableChild)(this.tblDice[this.lblHold1]));
     w330.LeftAttach = ((uint)(1));
     w330.RightAttach = ((uint)(2));
     w330.XOptions = ((global::Gtk.AttachOptions)(4));
     w330.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblDice.Gtk.Table+TableChild
     this.lblHold2 = new global::Gtk.Label ();
     this.lblHold2.WidthRequest = 55;
     this.lblHold2.Name = "lblHold2";
     this.lblHold2.UseMarkup = true;
     this.tblDice.Add (this.lblHold2);
     global::Gtk.Table.TableChild w331 = ((global::Gtk.Table.TableChild)(this.tblDice[this.lblHold2]));
     w331.TopAttach = ((uint)(1));
     w331.BottomAttach = ((uint)(2));
     w331.LeftAttach = ((uint)(1));
     w331.RightAttach = ((uint)(2));
     w331.XOptions = ((global::Gtk.AttachOptions)(4));
     w331.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblDice.Gtk.Table+TableChild
     this.lblHold3 = new global::Gtk.Label ();
     this.lblHold3.WidthRequest = 55;
     this.lblHold3.Name = "lblHold3";
     this.lblHold3.UseMarkup = true;
     this.tblDice.Add (this.lblHold3);
     global::Gtk.Table.TableChild w332 = ((global::Gtk.Table.TableChild)(this.tblDice[this.lblHold3]));
     w332.TopAttach = ((uint)(2));
     w332.BottomAttach = ((uint)(3));
     w332.LeftAttach = ((uint)(1));
     w332.RightAttach = ((uint)(2));
     w332.XOptions = ((global::Gtk.AttachOptions)(4));
     w332.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblDice.Gtk.Table+TableChild
     this.lblHold4 = new global::Gtk.Label ();
     this.lblHold4.WidthRequest = 55;
     this.lblHold4.Name = "lblHold4";
     this.lblHold4.UseMarkup = true;
     this.tblDice.Add (this.lblHold4);
     global::Gtk.Table.TableChild w333 = ((global::Gtk.Table.TableChild)(this.tblDice[this.lblHold4]));
     w333.TopAttach = ((uint)(3));
     w333.BottomAttach = ((uint)(4));
     w333.LeftAttach = ((uint)(1));
     w333.RightAttach = ((uint)(2));
     w333.XOptions = ((global::Gtk.AttachOptions)(4));
     w333.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tblDice.Gtk.Table+TableChild
     this.lblHold5 = new global::Gtk.Label ();
     this.lblHold5.WidthRequest = 55;
     this.lblHold5.Name = "lblHold5";
     this.lblHold5.UseMarkup = true;
     this.tblDice.Add (this.lblHold5);
     global::Gtk.Table.TableChild w334 = ((global::Gtk.Table.TableChild)(this.tblDice[this.lblHold5]));
     w334.TopAttach = ((uint)(4));
     w334.BottomAttach = ((uint)(5));
     w334.LeftAttach = ((uint)(1));
     w334.RightAttach = ((uint)(2));
     w334.XOptions = ((global::Gtk.AttachOptions)(4));
     w334.YOptions = ((global::Gtk.AttachOptions)(4));
     this.vbox1.Add (this.tblDice);
     global::Gtk.Box.BoxChild w335 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.tblDice]));
     w335.Position = 2;
     w335.Expand = false;
     w335.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox4 = new global::Gtk.HBox ();
     this.hbox4.Name = "hbox4";
     // Container child hbox4.Gtk.Box+BoxChild
     this.hseparator2 = new global::Gtk.HSeparator ();
     this.hseparator2.Name = "hseparator2";
     this.hbox4.Add (this.hseparator2);
     global::Gtk.Box.BoxChild w336 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.hseparator2]));
     w336.Position = 0;
     // Container child hbox4.Gtk.Box+BoxChild
     this.btnRoll = new global::Gtk.Button ();
     this.btnRoll.WidthRequest = 90;
     this.btnRoll.HeightRequest = 28;
     this.btnRoll.CanFocus = true;
     this.btnRoll.Name = "btnRoll";
     this.btnRoll.Label = "Roll";
     this.hbox4.Add (this.btnRoll);
     global::Gtk.Box.BoxChild w337 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.btnRoll]));
     w337.Position = 1;
     w337.Expand = false;
     w337.Fill = false;
     // Container child hbox4.Gtk.Box+BoxChild
     this.hseparator3 = new global::Gtk.HSeparator ();
     this.hseparator3.Name = "hseparator3";
     this.hbox4.Add (this.hseparator3);
     global::Gtk.Box.BoxChild w338 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.hseparator3]));
     w338.Position = 2;
     this.vbox1.Add (this.hbox4);
     global::Gtk.Box.BoxChild w339 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox4]));
     w339.Position = 3;
     w339.Expand = false;
     w339.Fill = false;
     w339.Padding = ((uint)(14));
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox2 = new global::Gtk.HBox ();
     this.hbox2.Name = "hbox2";
     this.hbox2.Homogeneous = true;
     // Container child hbox2.Gtk.Box+BoxChild
     this.label2 = new global::Gtk.Label ();
     this.label2.WidthRequest = 90;
     this.label2.Name = "label2";
     this.label2.Xalign = 1f;
     this.label2.LabelProp = "Roll #";
     this.hbox2.Add (this.label2);
     global::Gtk.Box.BoxChild w340 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.label2]));
     w340.Position = 0;
     w340.Expand = false;
     w340.Fill = false;
     // Container child hbox2.Gtk.Box+BoxChild
     this.lblRollNumber = new global::Gtk.Label ();
     this.lblRollNumber.WidthRequest = 71;
     this.lblRollNumber.Name = "lblRollNumber";
     this.lblRollNumber.Xalign = 1f;
     this.lblRollNumber.LabelProp = "0";
     this.hbox2.Add (this.lblRollNumber);
     global::Gtk.Box.BoxChild w341 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.lblRollNumber]));
     w341.Position = 1;
     w341.Expand = false;
     w341.Fill = false;
     this.vbox1.Add (this.hbox2);
     global::Gtk.Box.BoxChild w342 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox2]));
     w342.Position = 4;
     w342.Expand = false;
     w342.Fill = false;
     this.frame145.Add (this.vbox1);
     this.vpaned1.Add (this.frame145);
     global::Gtk.Paned.PanedChild w344 = ((global::Gtk.Paned.PanedChild)(this.vpaned1[this.frame145]));
     w344.Resize = false;
     // Container child vpaned1.Gtk.Paned+PanedChild
     this.frame1 = new global::Gtk.Frame ();
     this.frame1.WidthRequest = 200;
     this.frame1.Name = "frame1";
     this.frame1.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child frame1.Gtk.Container+ContainerChild
     this.gvResults = new global::Gtk.TreeView ();
     this.gvResults.WidthRequest = 200;
     this.gvResults.CanFocus = true;
     this.gvResults.Name = "gvResults";
     this.gvResults.RulesHint = true;
     this.frame1.Add (this.gvResults);
     this.vpaned1.Add (this.frame1);
     this.hbox1.Add (this.vpaned1);
     global::Gtk.Box.BoxChild w347 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.vpaned1]));
     w347.Position = 3;
     w347.Expand = false;
     w347.Fill = false;
     this.vbox2.Add (this.hbox1);
     global::Gtk.Box.BoxChild w348 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hbox1]));
     w348.Position = 0;
     w348.Expand = false;
     w348.Fill = false;
     w2.Add (this.vbox2);
     this.scrolledwindow1.Add (w2);
     this.hbox3.Add (this.scrolledwindow1);
     global::Gtk.Box.BoxChild w351 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.scrolledwindow1]));
     w351.Position = 0;
     this.Add (this.hbox3);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.Show ();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
     this.NewGame.Activated += new global::System.EventHandler (this.OnNewActivated);
     this.open.Activated += new global::System.EventHandler (this.OnOpenActivated);
     this.save.Activated += new global::System.EventHandler (this.OnSaveActivated);
     this.About.Activated += new global::System.EventHandler (this.OnAboutActivated);
     this.quit.Activated += new global::System.EventHandler (this.OnQuitActivated);
     this.btnr5c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr5c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr5c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr5c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr5c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr5c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr5c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr5c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr5c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr5c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr5c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr5c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr5c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr5c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr5c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr4c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr4c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr4c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr4c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr4c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr4c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr4c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr4c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr4c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr4c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr4c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr4c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr4c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr4c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr4c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr3c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr3c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr3c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr3c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr3c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr3c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr3c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr3c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr3c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr3c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr3c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr3c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr3c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr3c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr3c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr2c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr2c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr2c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr2c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr2c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr2c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr2c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr2c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr2c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr2c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr2c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr2c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr2c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr2c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr2c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr1c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr1c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr1c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr1c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr1c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr1c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr1c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr1c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr1c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr1c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr1c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr1c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr1c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr1c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr1c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr0c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr0c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr0c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr0c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr0c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr0c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr0c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr0c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr0c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr0c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr0c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr0c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr0c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr0c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr0c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr9c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr9c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr9c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr9c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr9c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr9c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr9c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr9c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr9c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr9c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr9c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr9c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr9c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr9c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr9c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr16c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr16c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr16c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr16c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr16c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr16c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr16c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr16c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr16c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr16c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr16c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr16c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr16c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr16c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr16c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr15c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr15c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr15c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr15c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr15c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr15c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr15c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr15c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr15c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr15c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr15c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr15c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr15c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr15c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr15c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr14c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr14c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr14c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr14c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr14c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr14c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr14c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr14c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr14c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr14c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr14c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr14c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr14c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr14c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr14c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr13c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr13c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr13c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr13c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr13c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr13c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr13c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr13c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr13c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr13c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr13c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr13c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr13c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr13c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr13c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr12c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr12c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr12c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr12c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr12c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr12c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr12c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr12c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr12c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr12c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr12c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr12c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr12c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr12c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr12c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr11c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr11c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr11c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr11c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr11c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr11c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr11c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr11c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr11c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr11c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr11c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr11c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr11c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr11c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr11c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr10c5.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr10c5.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr10c5.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr10c4.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr10c4.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr10c4.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr10c3.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr10c3.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr10c3.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr10c2.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr10c2.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr10c2.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.btnr10c1.Entered += new global::System.EventHandler (this.ScoreCard_MouseHover);
     this.btnr10c1.Left += new global::System.EventHandler (this.ScoreCard_MouseLeave);
     this.btnr10c1.Clicked += new global::System.EventHandler (this.ScoreCard_Click);
     this.cmdDice5.Entered += new global::System.EventHandler (this.OnCmdDice1Entered);
     this.cmdDice5.Clicked += new global::System.EventHandler (this.OnCmdDice5Clicked);
     this.cmdDice4.Entered += new global::System.EventHandler (this.OnCmdDice1Entered);
     this.cmdDice4.Clicked += new global::System.EventHandler (this.OnCmdDice4Clicked);
     this.cmdDice3.Entered += new global::System.EventHandler (this.OnCmdDice1Entered);
     this.cmdDice3.Clicked += new global::System.EventHandler (this.OnCmdDice3Clicked);
     this.cmdDice2.Clicked += new global::System.EventHandler (this.OnCmdDice2Clicked);
     this.cmdDice2.Entered += new global::System.EventHandler (this.OnCmdDice1Entered);
     this.cmdDice1.Entered += new global::System.EventHandler (this.OnCmdDice1Entered);
     this.cmdDice1.Clicked += new global::System.EventHandler (this.OnCmdDice1Clicked);
     this.btnRoll.Clicked += new global::System.EventHandler (this.OnBtnRollClicked);
 }