public CustomFileChooserDialog(Gtk.Window parent, string title, Gtk.FileChooserAction action) :
            base(Gtk.WindowType.Toplevel)
        {
            this.Build();

            base.TransientFor = parent;
            base.SetPosition(Gtk.WindowPosition.CenterOnParent);
            base.Decorated = parent.Decorated;

            base.Title = title;
            this.fileChooser.Action = action;
            this.btnOk.Label        = action.ToString();

            // hack for correct expand file chooser
            Gtk.Expander expander = GetFileChooserExpander(this.fileChooser);
            if (expander != null)
            {
                base.AllowGrow      = expander.Expanded;
                expander.Activated += (sender, e) =>
                {
                    base.AllowGrow = expander.Expanded;
                    if (expander.Expanded)
                    {
                        base.Resize(base.DefaultWidth, base.DefaultHeight);
                    }
                };
            }

            this.btnOk.Clicked     += OnOk;
            this.btnCancel.Clicked += OnCancel;
            this.DeleteEvent       += (o, args) =>
                                      this.btnCancel.Click();
        }
Example #2
0
        private void BuildSaveAsFrame()
        {
            var exSaveAsExpand = new Gtk.Expander("Save as...");
            var hbSaveAs       = new Gtk.HBox(false, 5);

            exSaveAsExpand.Expanded = false;
            this.BuildFormatCombo();
            this.btSaveAs          = new Gtk.Button(Gtk.Stock.SaveAs);
            this.btSaveAs.Clicked += (sender, e) => this.OnSaveAs();

            hbSaveAs.PackStart(this.cbOutputFormat, true, true, 5);
            hbSaveAs.PackStart(this.btSaveAs, false, false, 5);

            exSaveAsExpand.Add(hbSaveAs);
            this.vbPage1.PackStart(exSaveAsExpand, true, true, 5);
        }
Example #3
0
        protected override void OnElementChanged(ElementChangedEventArgs <Expander> e)
        {
            if (Control == null)
            {
                _expander = new Gtk.Expander(string.Empty);
                Add(_expander);
                _expander.ShowAll();

                SetNativeControl(this);
            }

            if (e.NewElement != null)
            {
                UpdateTitle();
                UpdateContent();
            }

            base.OnElementChanged(e);
        }
Example #4
0
        private void BuildCategoriesFrame()
        {
            var vbBox                 = new Gtk.VBox(false, 5);
            var vbExpandedBox         = new Gtk.VBox(false, 5);
            var hbAvailableCategories = new Gtk.HBox(false, 5);
            var hbCurrentCategories   = new Gtk.HBox(false, 5);
            var exExpandCategories    = new Gtk.Expander("Categories");

            // The frame
            this.frmCategories = new Gtk.Frame("Manage categories");
            this.frmCategories.Add(vbBox);

            // The expander
            exExpandCategories.Expanded = false;
            exExpandCategories.Add(vbExpandedBox);
            this.btAddCategory             = new Gtk.Button(Gtk.Stock.Add);
            this.btAddCategory.Clicked    += (sender, e) => this.OnAddCategory();
            this.btRemoveCategory          = new Gtk.Button(Gtk.Stock.Add);
            this.btRemoveCategory.Clicked += (sender, e) => this.OnRemoveCategory();
            this.btRemoveCategory          = new Gtk.Button(Gtk.Stock.Remove);
            this.cbAvailableCategories     = new Gtk.ComboBox(new string[] { "" });
            this.cbCurrentCategories       = new Gtk.ComboBox(new string[] { "" });
            hbAvailableCategories.PackStart(new Gtk.Label("Available:"), false, false, 5);
            hbAvailableCategories.PackStart(this.cbAvailableCategories, true, true, 5);
            hbAvailableCategories.PackStart(this.btAddCategory, false, false, 5);
            hbCurrentCategories.PackStart(new Gtk.Label("Current:"), false, false, 5);
            hbCurrentCategories.PackStart(this.cbCurrentCategories, true, true, 5);
            hbCurrentCategories.PackStart(this.btRemoveCategory, false, false, 5);
            vbExpandedBox.PackStart(hbCurrentCategories, true, true, 5);
            vbExpandedBox.PackStart(hbAvailableCategories, true, true, 5);

            // Categories
            this.lblCategories = new Gtk.Label()
            {
                Markup = "<i>Current categories</i>:"
            };

            vbBox.PackStart(this.lblCategories, true, true, 5);
            vbBox.PackStart(exExpandCategories, true, true, 5);
            this.vbPage1.PackStart(this.frmCategories, true, true, 5);
        }
        private Gtk.Expander GetFileChooserExpander(Gtk.Container parent)
        {
            if (parent is Gtk.Expander)
            {
                return(parent as Gtk.Expander);
            }

            foreach (Gtk.Widget child in parent.AllChildren)
            {
                if (child is Gtk.Container)
                {
                    Gtk.Container container = child as Gtk.Container;
                    Gtk.Expander  expander  = GetFileChooserExpander(container);
                    if (expander != null)
                    {
                        return(expander);
                    }
                }
            }

            return(null);
        }
Example #6
0
        private void BuildCategoriesFrame()
        {
            var vbBox = new Gtk.VBox( false, 5 );
            var vbExpandedBox = new Gtk.VBox( false, 5 );
            var hbAvailableCategories = new Gtk.HBox( false, 5 );
            var hbCurrentCategories = new Gtk.HBox( false, 5 );
            var exExpandCategories = new Gtk.Expander( "Categories" );

            // The frame
            this.frmCategories = new Gtk.Frame( "Manage categories" );
            this.frmCategories.Add( vbBox );

            // The expander
            exExpandCategories.Expanded = false;
            exExpandCategories.Add( vbExpandedBox );
            this.btAddCategory = new Gtk.Button( Gtk.Stock.Add );
            this.btAddCategory.Clicked += (sender, e) => this.OnAddCategory();
            this.btRemoveCategory = new Gtk.Button( Gtk.Stock.Add );
            this.btRemoveCategory.Clicked += (sender, e) => this.OnRemoveCategory();
            this.btRemoveCategory = new Gtk.Button( Gtk.Stock.Remove );
            this.cbAvailableCategories = new Gtk.ComboBox( new string[] { "" } );
            this.cbCurrentCategories = new Gtk.ComboBox( new string[] { "" } );
            hbAvailableCategories.PackStart( new Gtk.Label( "Available:" ), false, false, 5 );
            hbAvailableCategories.PackStart( this.cbAvailableCategories, true, true, 5 );
            hbAvailableCategories.PackStart( this.btAddCategory, false, false, 5 );
            hbCurrentCategories.PackStart( new Gtk.Label( "Current:" ), false, false, 5 );
            hbCurrentCategories.PackStart( this.cbCurrentCategories, true, true, 5 );
            hbCurrentCategories.PackStart( this.btRemoveCategory, false, false, 5 );
            vbExpandedBox.PackStart( hbCurrentCategories, true, true, 5 );
            vbExpandedBox.PackStart( hbAvailableCategories, true, true, 5 );

            // Categories
            this.lblCategories = new Gtk.Label() {  Markup = "<i>Current categories</i>:" };

            vbBox.PackStart( this.lblCategories, true, true, 5 );
            vbBox.PackStart( exExpandCategories, true, true, 5 );
            this.vbPage1.PackStart( this.frmCategories, true, true, 5 );
        }
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget ocmgtk.ErrorDialog
     this.WidthRequest = 500;
     this.HeightRequest = 250;
     this.Name = "ocmgtk.ErrorDialog";
     this.Title = Mono.Unix.Catalog.GetString("An Error Occured");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     this.Modal = true;
     this.BorderWidth = ((uint)(6));
     // Internal child ocmgtk.ErrorDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.hbox1 = new Gtk.HBox();
     this.hbox1.Name = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.image4 = new Gtk.Image();
     this.image4.Name = "image4";
     this.image4.Pixbuf = Stetic.IconLoader.LoadIcon(this, "gtk-dialog-error", Gtk.IconSize.Dialog, 48);
     this.hbox1.Add(this.image4);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.hbox1[this.image4]));
     w2.Position = 0;
     w2.Expand = false;
     w2.Fill = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.msgLabel = new Gtk.Label();
     this.msgLabel.Name = "msgLabel";
     this.msgLabel.Xalign = 0F;
     this.msgLabel.LabelProp = "<errormsg>";
     this.msgLabel.Wrap = true;
     this.msgLabel.WidthChars = 55;
     this.hbox1.Add(this.msgLabel);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.hbox1[this.msgLabel]));
     w3.Position = 1;
     w3.Expand = false;
     w3.Fill = false;
     w1.Add(this.hbox1);
     Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w1[this.hbox1]));
     w4.Position = 0;
     w4.Expand = false;
     w4.Fill = false;
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.expander1 = new Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name = "expander1";
     this.expander1.Expanded = true;
     // Container child expander1.Gtk.Container+ContainerChild
     this.GtkScrolledWindow = new Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.errorDetails = new Gtk.TextView();
     this.errorDetails.CanFocus = true;
     this.errorDetails.Name = "errorDetails";
     this.errorDetails.Editable = false;
     this.errorDetails.CursorVisible = false;
     this.GtkScrolledWindow.Add(this.errorDetails);
     this.expander1.Add(this.GtkScrolledWindow);
     this.GtkLabel2 = new Gtk.Label();
     this.GtkLabel2.Name = "GtkLabel2";
     this.GtkLabel2.LabelProp = Mono.Unix.Catalog.GetString("<b>Error Details:</b>");
     this.GtkLabel2.UseMarkup = true;
     this.GtkLabel2.UseUnderline = true;
     this.expander1.LabelWidget = this.GtkLabel2;
     w1.Add(this.expander1);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w1[this.expander1]));
     w7.Position = 1;
     // Internal child ocmgtk.ErrorDialog.ActionArea
     Gtk.HButtonBox w8 = this.ActionArea;
     w8.Name = "dialog1_ActionArea";
     w8.Spacing = 10;
     w8.BorderWidth = ((uint)(5));
     w8.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
     // 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-close";
     this.AddActionWidget(this.buttonOk, -7);
     Gtk.ButtonBox.ButtonBoxChild w9 = ((Gtk.ButtonBox.ButtonBoxChild)(w8[this.buttonOk]));
     w9.Expand = false;
     w9.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.DefaultWidth = 502;
     this.DefaultHeight = 280;
     this.Show();
     this.buttonOk.Clicked += new System.EventHandler(this.OnCloseClick);
 }
Example #8
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()
 {
     Stetic.Gui.Initialize();
     // Widget Wikifighter.OptionsDialog
     this.Events = ((Gdk.EventMask)(256));
     this.Name = "Wikifighter.OptionsDialog";
     this.Title = Mono.Unix.Catalog.GetString("Options");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     this.AllowShrink = true;
     this.HasSeparator = false;
     // Internal child Wikifighter.OptionsDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Events = ((Gdk.EventMask)(256));
     w1.Name = "dialog_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog_VBox.Gtk.Box+BoxChild
     this.vbox3 = new Gtk.VBox();
     this.vbox3.Name = "vbox3";
     // Container child vbox3.Gtk.Box+BoxChild
     this.username_password_expander = new Gtk.Expander(null);
     this.username_password_expander.CanFocus = true;
     this.username_password_expander.Name = "username_password_expander";
     this.username_password_expander.Expanded = true;
     // Container child username_password_expander.Gtk.Container+ContainerChild
     this.table1 = new Gtk.Table(((uint)(3)), ((uint)(2)), false);
     this.table1.Name = "table1";
     // Container child table1.Gtk.Table+TableChild
     this.password_entry_1 = new Gtk.Entry();
     this.password_entry_1.CanFocus = true;
     this.password_entry_1.Name = "password_entry_1";
     this.password_entry_1.IsEditable = true;
     this.password_entry_1.Visibility = false;
     this.table1.Add(this.password_entry_1);
     Gtk.Table.TableChild w2 = ((Gtk.Table.TableChild)(this.table1[this.password_entry_1]));
     w2.TopAttach = ((uint)(1));
     w2.BottomAttach = ((uint)(2));
     w2.LeftAttach = ((uint)(1));
     w2.RightAttach = ((uint)(2));
     w2.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.password_entry_2 = new Gtk.Entry();
     this.password_entry_2.CanFocus = true;
     this.password_entry_2.Name = "password_entry_2";
     this.password_entry_2.IsEditable = true;
     this.password_entry_2.Visibility = false;
     this.table1.Add(this.password_entry_2);
     Gtk.Table.TableChild w3 = ((Gtk.Table.TableChild)(this.table1[this.password_entry_2]));
     w3.TopAttach = ((uint)(2));
     w3.BottomAttach = ((uint)(3));
     w3.LeftAttach = ((uint)(1));
     w3.RightAttach = ((uint)(2));
     w3.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.password_label = new Gtk.Label();
     this.password_label.Name = "password_label";
     this.password_label.LabelProp = Mono.Unix.Catalog.GetString("Passwort");
     this.table1.Add(this.password_label);
     Gtk.Table.TableChild w4 = ((Gtk.Table.TableChild)(this.table1[this.password_label]));
     w4.TopAttach = ((uint)(1));
     w4.BottomAttach = ((uint)(2));
     w4.XOptions = ((Gtk.AttachOptions)(4));
     w4.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.username_entry = new Gtk.Entry();
     this.username_entry.CanFocus = true;
     this.username_entry.Name = "username_entry";
     this.username_entry.IsEditable = true;
     this.table1.Add(this.username_entry);
     Gtk.Table.TableChild w5 = ((Gtk.Table.TableChild)(this.table1[this.username_entry]));
     w5.LeftAttach = ((uint)(1));
     w5.RightAttach = ((uint)(2));
     w5.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.username_label = new Gtk.Label();
     this.username_label.Name = "username_label";
     this.username_label.LabelProp = Mono.Unix.Catalog.GetString("Benutzername");
     this.table1.Add(this.username_label);
     Gtk.Table.TableChild w6 = ((Gtk.Table.TableChild)(this.table1[this.username_label]));
     w6.XOptions = ((Gtk.AttachOptions)(4));
     w6.YOptions = ((Gtk.AttachOptions)(4));
     this.username_password_expander.Add(this.table1);
     this.username_password_label = new Gtk.Label();
     this.username_password_label.Name = "username_password_label";
     this.username_password_label.LabelProp = Mono.Unix.Catalog.GetString("Benutzername / Passwort");
     this.username_password_label.UseUnderline = true;
     this.username_password_expander.LabelWidget = this.username_password_label;
     this.vbox3.Add(this.username_password_expander);
     Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(this.vbox3[this.username_password_expander]));
     w8.Position = 1;
     w8.Expand = false;
     w8.Fill = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.rcconfig_expander = new Gtk.Expander(null);
     this.rcconfig_expander.CanFocus = true;
     this.rcconfig_expander.Name = "rcconfig_expander";
     this.rcconfig_expander.Expanded = true;
     // Container child rcconfig_expander.Gtk.Container+ContainerChild
     this.table2 = new Gtk.Table(((uint)(2)), ((uint)(2)), false);
     this.table2.Name = "table2";
     this.rcconfig_expander.Add(this.table2);
     this.rcconfig_label = new Gtk.Label();
     this.rcconfig_label.Name = "rcconfig_label";
     this.rcconfig_label.LabelProp = Mono.Unix.Catalog.GetString("Letzte Änderungen");
     this.rcconfig_label.UseUnderline = true;
     this.rcconfig_expander.LabelWidget = this.rcconfig_label;
     this.vbox3.Add(this.rcconfig_expander);
     Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(this.vbox3[this.rcconfig_expander]));
     w10.Position = 2;
     w1.Add(this.vbox3);
     Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(w1[this.vbox3]));
     w11.Position = 0;
     // Internal child Wikifighter.OptionsDialog.ActionArea
     Gtk.HButtonBox w12 = this.ActionArea;
     w12.Events = ((Gdk.EventMask)(256));
     w12.Name = "Wikifighter.Options_ActionArea";
     w12.Spacing = 10;
     w12.BorderWidth = ((uint)(5));
     w12.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
     // Container child Wikifighter.Options_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.options_help_button = new Gtk.Button();
     this.options_help_button.CanDefault = true;
     this.options_help_button.CanFocus = true;
     this.options_help_button.Name = "options_help_button";
     this.options_help_button.UseStock = true;
     this.options_help_button.UseUnderline = true;
     this.options_help_button.Label = "gtk-help";
     this.AddActionWidget(this.options_help_button, -11);
     // Container child Wikifighter.Options_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.options_cancel_button = new Gtk.Button();
     this.options_cancel_button.CanDefault = true;
     this.options_cancel_button.CanFocus = true;
     this.options_cancel_button.Name = "options_cancel_button";
     this.options_cancel_button.UseStock = true;
     this.options_cancel_button.UseUnderline = true;
     this.options_cancel_button.Label = "gtk-cancel";
     this.AddActionWidget(this.options_cancel_button, -6);
     Gtk.ButtonBox.ButtonBoxChild w14 = ((Gtk.ButtonBox.ButtonBoxChild)(w12[this.options_cancel_button]));
     w14.Position = 1;
     w14.Expand = false;
     w14.Fill = false;
     // Container child Wikifighter.Options_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.options_apply_button = new Gtk.Button();
     this.options_apply_button.CanDefault = true;
     this.options_apply_button.CanFocus = true;
     this.options_apply_button.Name = "options_apply_button";
     this.options_apply_button.UseStock = true;
     this.options_apply_button.UseUnderline = true;
     this.options_apply_button.Label = "gtk-apply";
     this.AddActionWidget(this.options_apply_button, -10);
     Gtk.ButtonBox.ButtonBoxChild w15 = ((Gtk.ButtonBox.ButtonBoxChild)(w12[this.options_apply_button]));
     w15.Position = 2;
     w15.Expand = false;
     w15.Fill = false;
     // Container child Wikifighter.Options_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.options_ok_button = new Gtk.Button();
     this.options_ok_button.CanDefault = true;
     this.options_ok_button.CanFocus = true;
     this.options_ok_button.Name = "options_ok_button";
     this.options_ok_button.UseStock = true;
     this.options_ok_button.UseUnderline = true;
     this.options_ok_button.Label = "gtk-ok";
     this.AddActionWidget(this.options_ok_button, -5);
     Gtk.ButtonBox.ButtonBoxChild w16 = ((Gtk.ButtonBox.ButtonBoxChild)(w12[this.options_ok_button]));
     w16.Position = 3;
     w16.Expand = false;
     w16.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.DefaultWidth = 521;
     this.DefaultHeight = 317;
     this.Show();
     this.options_ok_button.Clicked += new System.EventHandler(this.OnOptionsOkButtonClicked);
 }
Example #10
0
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget ocmgtk.DescriptionWidget
     Stetic.BinContainer.Attach(this);
     this.Name = "ocmgtk.DescriptionWidget";
     // Container child ocmgtk.DescriptionWidget.Gtk.Container+ContainerChild
     this.vbox2             = new Gtk.VBox();
     this.vbox2.Name        = "vbox2";
     this.vbox2.Spacing     = 6;
     this.vbox2.BorderWidth = ((uint)(6));
     // Container child vbox2.Gtk.Box+BoxChild
     this.hintButton        = new Gtk.Button();
     this.hintButton.Name   = "hintButton";
     this.hintButton.Relief = ((Gtk.ReliefStyle)(2));
     // Container child hintButton.Gtk.Container+ContainerChild
     this.label1           = new Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.Xalign    = 0F;
     this.label1.LabelProp = Mono.Unix.Catalog.GetString("<span fgcolor=\"blue\">Hint</span>");
     this.label1.UseMarkup = true;
     this.hintButton.Add(this.label1);
     this.hintButton.Label = null;
     this.vbox2.Add(this.hintButton);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.vbox2[this.hintButton]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.tbugExpander          = new Gtk.Expander(null);
     this.tbugExpander.CanFocus = true;
     this.tbugExpander.Name     = "tbugExpander";
     // Container child tbugExpander.Gtk.Container+ContainerChild
     this.scrolledwindow1            = new Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus   = true;
     this.scrolledwindow1.Name       = "scrolledwindow1";
     this.scrolledwindow1.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     this.tbugView          = new Gtk.TreeView();
     this.tbugView.CanFocus = true;
     this.tbugView.Name     = "tbugView";
     this.scrolledwindow1.Add(this.tbugView);
     this.tbugExpander.Add(this.scrolledwindow1);
     this.GtkLabel2                = new Gtk.Label();
     this.GtkLabel2.Name           = "GtkLabel2";
     this.GtkLabel2.Xalign         = 0F;
     this.GtkLabel2.LabelProp      = Mono.Unix.Catalog.GetString("<b>Trackables</b>");
     this.GtkLabel2.UseMarkup      = true;
     this.GtkLabel2.UseUnderline   = true;
     this.tbugExpander.LabelWidget = this.GtkLabel2;
     this.vbox2.Add(this.tbugExpander);
     Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(this.vbox2[this.tbugExpander]));
     w5.Position = 1;
     w5.Expand   = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.descAlign      = new Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.descAlign.Name = "descAlign";
     this.vbox2.Add(this.descAlign);
     Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.vbox2[this.descAlign]));
     w6.Position = 2;
     this.Add(this.vbox2);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Hide();
     this.hintButton.Clicked += new System.EventHandler(this.onHintClick);
 }
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget Monsoon.LoadTorrentDialog
     this.Name           = "Monsoon.LoadTorrentDialog";
     this.Title          = Mono.Unix.Catalog.GetString("Load torrent");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     // Internal child Monsoon.LoadTorrentDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox4         = new Gtk.VBox();
     this.vbox4.Name    = "vbox4";
     this.vbox4.Spacing = 6;
     // Container child vbox4.Gtk.Box+BoxChild
     this.frame3            = new Gtk.Frame();
     this.frame3.Name       = "frame3";
     this.frame3.ShadowType = ((Gtk.ShadowType)(0));
     // Container child frame3.Gtk.Container+ContainerChild
     this.GtkAlignment2             = new Gtk.Alignment(0F, 0F, 1F, 1F);
     this.GtkAlignment2.Name        = "GtkAlignment2";
     this.GtkAlignment2.LeftPadding = ((uint)(12));
     // Container child GtkAlignment2.Gtk.Container+ContainerChild
     this.vbox5         = new Gtk.VBox();
     this.vbox5.Name    = "vbox5";
     this.vbox5.Spacing = 6;
     // Container child vbox5.Gtk.Box+BoxChild
     this.hbox5         = new Gtk.HBox();
     this.hbox5.Name    = "hbox5";
     this.hbox5.Spacing = 6;
     // Container child hbox5.Gtk.Box+BoxChild
     this.fileChooser            = new Gtk.FileChooserButton(Mono.Unix.Catalog.GetString("Select A Folder"), ((Gtk.FileChooserAction)(2)));
     this.fileChooser.Name       = "fileChooser";
     this.fileChooser.ShowHidden = true;
     this.hbox5.Add(this.fileChooser);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.hbox5[this.fileChooser]));
     w2.Position = 0;
     this.vbox5.Add(this.hbox5);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.vbox5[this.hbox5]));
     w3.Position = 0;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbox5.Gtk.Box+BoxChild
     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.label2           = new Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.Xalign    = 0F;
     this.label2.LabelProp = Mono.Unix.Catalog.GetString("Name:");
     this.table1.Add(this.label2);
     Gtk.Table.TableChild w4 = ((Gtk.Table.TableChild)(this.table1[this.label2]));
     w4.XOptions = ((Gtk.AttachOptions)(4));
     w4.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label3           = new Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.Xalign    = 0F;
     this.label3.LabelProp = Mono.Unix.Catalog.GetString("Size:");
     this.table1.Add(this.label3);
     Gtk.Table.TableChild w5 = ((Gtk.Table.TableChild)(this.table1[this.label3]));
     w5.TopAttach    = ((uint)(1));
     w5.BottomAttach = ((uint)(2));
     w5.XOptions     = ((Gtk.AttachOptions)(4));
     w5.YOptions     = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.lblName           = new Gtk.Label();
     this.lblName.Name      = "lblName";
     this.lblName.Xalign    = 0F;
     this.lblName.LabelProp = Mono.Unix.Catalog.GetString("Suse-11.0-i386.iso");
     this.table1.Add(this.lblName);
     Gtk.Table.TableChild w6 = ((Gtk.Table.TableChild)(this.table1[this.lblName]));
     w6.LeftAttach  = ((uint)(1));
     w6.RightAttach = ((uint)(2));
     w6.XOptions    = ((Gtk.AttachOptions)(4));
     w6.YOptions    = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.lblSize           = new Gtk.Label();
     this.lblSize.Name      = "lblSize";
     this.lblSize.Xalign    = 0F;
     this.lblSize.LabelProp = Mono.Unix.Catalog.GetString("700MB");
     this.table1.Add(this.lblSize);
     Gtk.Table.TableChild w7 = ((Gtk.Table.TableChild)(this.table1[this.lblSize]));
     w7.TopAttach    = ((uint)(1));
     w7.BottomAttach = ((uint)(2));
     w7.LeftAttach   = ((uint)(1));
     w7.RightAttach  = ((uint)(2));
     w7.XOptions     = ((Gtk.AttachOptions)(4));
     w7.YOptions     = ((Gtk.AttachOptions)(4));
     this.vbox5.Add(this.table1);
     Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(this.vbox5[this.table1]));
     w8.Position = 1;
     w8.Expand   = false;
     w8.Fill     = false;
     this.GtkAlignment2.Add(this.vbox5);
     this.frame3.Add(this.GtkAlignment2);
     this.GtkLabel2           = new Gtk.Label();
     this.GtkLabel2.Name      = "GtkLabel2";
     this.GtkLabel2.LabelProp = Mono.Unix.Catalog.GetString("<b>Save</b>");
     this.GtkLabel2.UseMarkup = true;
     this.frame3.LabelWidget  = this.GtkLabel2;
     this.vbox4.Add(this.frame3);
     Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(this.vbox4[this.frame3]));
     w11.Position = 0;
     w11.Expand   = false;
     w11.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.expander1          = new Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name     = "expander1";
     this.expander1.Expanded = true;
     // Container child expander1.Gtk.Container+ContainerChild
     this.GtkScrolledWindow            = new Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.torrentTreeView          = new Gtk.TreeView();
     this.torrentTreeView.CanFocus = true;
     this.torrentTreeView.Name     = "torrentTreeView";
     this.GtkScrolledWindow.Add(this.torrentTreeView);
     this.expander1.Add(this.GtkScrolledWindow);
     this.GtkLabel1              = new Gtk.Label();
     this.GtkLabel1.Name         = "GtkLabel1";
     this.GtkLabel1.LabelProp    = Mono.Unix.Catalog.GetString("Files");
     this.GtkLabel1.UseUnderline = true;
     this.expander1.LabelWidget  = this.GtkLabel1;
     this.vbox4.Add(this.expander1);
     Gtk.Box.BoxChild w14 = ((Gtk.Box.BoxChild)(this.vbox4[this.expander1]));
     w14.Position = 1;
     // Container child vbox4.Gtk.Box+BoxChild
     this.checkbutton2               = new Gtk.CheckButton();
     this.checkbutton2.CanFocus      = true;
     this.checkbutton2.Name          = "checkbutton2";
     this.checkbutton2.Label         = Mono.Unix.Catalog.GetString("Always show this dialog");
     this.checkbutton2.Active        = true;
     this.checkbutton2.DrawIndicator = true;
     this.checkbutton2.UseUnderline  = true;
     this.vbox4.Add(this.checkbutton2);
     Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(this.vbox4[this.checkbutton2]));
     w15.Position = 2;
     w15.Expand   = false;
     w15.Fill     = false;
     w1.Add(this.vbox4);
     Gtk.Box.BoxChild w16 = ((Gtk.Box.BoxChild)(w1[this.vbox4]));
     w16.Position = 0;
     // Internal child Monsoon.LoadTorrentDialog.ActionArea
     Gtk.HButtonBox w17 = this.ActionArea;
     w17.Name        = "dialog1_ActionArea";
     w17.Spacing     = 6;
     w17.BorderWidth = ((uint)(5));
     w17.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 w18 = ((Gtk.ButtonBox.ButtonBoxChild)(w17[this.buttonCancel]));
     w18.Expand = false;
     w18.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 w19 = ((Gtk.ButtonBox.ButtonBoxChild)(w17[this.buttonOk]));
     w19.Position = 1;
     w19.Expand   = false;
     w19.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 400;
     this.DefaultHeight = 474;
     this.Show();
 }
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget ocmgtk.DescriptionWidget
     Stetic.BinContainer.Attach(this);
     this.Name = "ocmgtk.DescriptionWidget";
     // Container child ocmgtk.DescriptionWidget.Gtk.Container+ContainerChild
     this.vbox2 = new Gtk.VBox();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     this.vbox2.BorderWidth = ((uint)(6));
     // Container child vbox2.Gtk.Box+BoxChild
     this.hintButton = new Gtk.Button();
     this.hintButton.Name = "hintButton";
     this.hintButton.Relief = ((Gtk.ReliefStyle)(2));
     // Container child hintButton.Gtk.Container+ContainerChild
     this.label1 = new Gtk.Label();
     this.label1.Name = "label1";
     this.label1.Xalign = 0F;
     this.label1.LabelProp = Mono.Unix.Catalog.GetString("<span fgcolor=\"blue\">Hint</span>");
     this.label1.UseMarkup = true;
     this.hintButton.Add(this.label1);
     this.hintButton.Label = null;
     this.vbox2.Add(this.hintButton);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.vbox2[this.hintButton]));
     w2.Position = 0;
     w2.Expand = false;
     w2.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.tbugExpander = new Gtk.Expander(null);
     this.tbugExpander.CanFocus = true;
     this.tbugExpander.Name = "tbugExpander";
     // Container child tbugExpander.Gtk.Container+ContainerChild
     this.scrolledwindow1 = new Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus = true;
     this.scrolledwindow1.Name = "scrolledwindow1";
     this.scrolledwindow1.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     this.tbugView = new Gtk.TreeView();
     this.tbugView.CanFocus = true;
     this.tbugView.Name = "tbugView";
     this.scrolledwindow1.Add(this.tbugView);
     this.tbugExpander.Add(this.scrolledwindow1);
     this.GtkLabel2 = new Gtk.Label();
     this.GtkLabel2.Name = "GtkLabel2";
     this.GtkLabel2.Xalign = 0F;
     this.GtkLabel2.LabelProp = Mono.Unix.Catalog.GetString("<b>Trackables</b>");
     this.GtkLabel2.UseMarkup = true;
     this.GtkLabel2.UseUnderline = true;
     this.tbugExpander.LabelWidget = this.GtkLabel2;
     this.vbox2.Add(this.tbugExpander);
     Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(this.vbox2[this.tbugExpander]));
     w5.Position = 1;
     w5.Expand = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.descAlign = new Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.descAlign.Name = "descAlign";
     this.vbox2.Add(this.descAlign);
     Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.vbox2[this.descAlign]));
     w6.Position = 2;
     this.Add(this.vbox2);
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.Hide();
     this.hintButton.Clicked += new System.EventHandler(this.onHintClick);
 }
Example #13
0
        private void BuildSaveAsFrame()
        {
            var exSaveAsExpand = new Gtk.Expander( "Save as..." );
            var hbSaveAs = new Gtk.HBox( false, 5 );

            exSaveAsExpand.Expanded = false;
            this.BuildFormatCombo();
            this.btSaveAs = new Gtk.Button( Gtk.Stock.SaveAs );
            this.btSaveAs.Clicked += (sender, e) => this.OnSaveAs();

            hbSaveAs.PackStart( this.cbOutputFormat, true, true, 5 );
            hbSaveAs.PackStart( this.btSaveAs, false, false, 5 );

            exSaveAsExpand.Add( hbSaveAs );
            this.vbPage1.PackStart( exSaveAsExpand, true, true, 5 );
        }
Example #14
0
 protected virtual void Build() {
     Stetic.Gui.Initialize(this);
     // Widget PanelWindow
     this.Name = "PanelWindow";
     this.Title = Mono.Unix.Catalog.GetString("Moonlight Desklets Panel");
     this.WindowPosition = ((Gtk.WindowPosition)(1));
     // Container child PanelWindow.Gtk.Container+ContainerChild
     this.vbox2 = new Gtk.VBox();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     this.vbox2.BorderWidth = ((uint)(6));
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox2 = new Gtk.HBox();
     this.hbox2.Name = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.SearchLabel = new Gtk.Label();
     this.SearchLabel.Name = "SearchLabel";
     this.SearchLabel.LabelProp = Mono.Unix.Catalog.GetString("Search:");
     this.hbox2.Add(this.SearchLabel);
     Gtk.Box.BoxChild w1 = ((Gtk.Box.BoxChild)(this.hbox2[this.SearchLabel]));
     w1.Position = 0;
     w1.Expand = false;
     w1.Fill = false;
     // Container child hbox2.Gtk.Box+BoxChild
     this.SearchEntry = new Gtk.ComboBoxEntry();
     this.SearchEntry.Name = "SearchEntry";
     this.hbox2.Add(this.SearchEntry);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.hbox2[this.SearchEntry]));
     w2.Position = 1;
     w2.Expand = false;
     w2.Fill = false;
     this.vbox2.Add(this.hbox2);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.vbox2[this.hbox2]));
     w3.Position = 0;
     w3.Expand = false;
     w3.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.DeskletsScrolledWindow = new Gtk.ScrolledWindow();
     this.DeskletsScrolledWindow.CanFocus = true;
     this.DeskletsScrolledWindow.Name = "DeskletsScrolledWindow";
     this.DeskletsScrolledWindow.ShadowType = ((Gtk.ShadowType)(1));
     // Container child DeskletsScrolledWindow.Gtk.Container+ContainerChild
     this.DeskletsView = new Gtk.TreeView();
     this.DeskletsView.CanFocus = true;
     this.DeskletsView.Name = "DeskletsView";
     this.DeskletsScrolledWindow.Add(this.DeskletsView);
     this.vbox2.Add(this.DeskletsScrolledWindow);
     Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(this.vbox2[this.DeskletsScrolledWindow]));
     w5.Position = 1;
     // Container child vbox2.Gtk.Box+BoxChild
     this.DetailsExpander = new Gtk.Expander(null);
     this.DetailsExpander.CanFocus = true;
     this.DetailsExpander.Name = "DetailsExpander";
     // Container child DetailsExpander.Gtk.Container+ContainerChild
     this.DetailsLabel = new Gtk.Label();
     this.DetailsLabel.Name = "DetailsLabel";
     this.DetailsLabel.LabelProp = "";
     this.DetailsExpander.Add(this.DetailsLabel);
     this.GtkLabel = new Gtk.Label();
     this.GtkLabel.Name = "GtkLabel";
     this.GtkLabel.LabelProp = Mono.Unix.Catalog.GetString("Show details");
     this.GtkLabel.UseUnderline = true;
     this.DetailsExpander.LabelWidget = this.GtkLabel;
     this.vbox2.Add(this.DetailsExpander);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(this.vbox2[this.DetailsExpander]));
     w7.Position = 2;
     w7.Expand = false;
     w7.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.ActionButtonBox = new Gtk.HButtonBox();
     this.ActionButtonBox.Name = "ActionButtonBox";
     this.ActionButtonBox.Spacing = 6;
     this.ActionButtonBox.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
     // Container child ActionButtonBox.Gtk.ButtonBox+ButtonBoxChild
     this.HelpButton = new Gtk.Button();
     this.HelpButton.CanFocus = true;
     this.HelpButton.Name = "HelpButton";
     this.HelpButton.UseStock = true;
     this.HelpButton.UseUnderline = true;
     this.HelpButton.Label = "gtk-help";
     this.ActionButtonBox.Add(this.HelpButton);
     Gtk.ButtonBox.ButtonBoxChild w8 = ((Gtk.ButtonBox.ButtonBoxChild)(this.ActionButtonBox[this.HelpButton]));
     w8.Secondary = true;
     w8.Expand = false;
     w8.Fill = false;
     // Container child ActionButtonBox.Gtk.ButtonBox+ButtonBoxChild
     this.DeskletsButton = new Gtk.Button();
     this.DeskletsButton.CanFocus = true;
     this.DeskletsButton.Name = "DeskletsButton";
     this.DeskletsButton.UseUnderline = true;
     // Container child DeskletsButton.Gtk.Container+ContainerChild
     Gtk.Alignment w9 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     Gtk.HBox w10 = new Gtk.HBox();
     w10.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     Gtk.Image w11 = new Gtk.Image();
     w11.Pixbuf = Stetic.IconLoader.LoadIcon(this, "gtk-find", Gtk.IconSize.Menu, 16);
     w10.Add(w11);
     // Container child GtkHBox.Gtk.Container+ContainerChild
     Gtk.Label w13 = new Gtk.Label();
     w13.LabelProp = Mono.Unix.Catalog.GetString("Get desklets");
     w13.UseUnderline = true;
     w10.Add(w13);
     w9.Add(w10);
     this.DeskletsButton.Add(w9);
     this.ActionButtonBox.Add(this.DeskletsButton);
     Gtk.ButtonBox.ButtonBoxChild w17 = ((Gtk.ButtonBox.ButtonBoxChild)(this.ActionButtonBox[this.DeskletsButton]));
     w17.Position = 1;
     w17.Expand = false;
     w17.Fill = false;
     // Container child ActionButtonBox.Gtk.ButtonBox+ButtonBoxChild
     this.CloseButton = new Gtk.Button();
     this.CloseButton.CanFocus = true;
     this.CloseButton.Name = "CloseButton";
     this.CloseButton.UseStock = true;
     this.CloseButton.UseUnderline = true;
     this.CloseButton.Label = "gtk-close";
     this.ActionButtonBox.Add(this.CloseButton);
     Gtk.ButtonBox.ButtonBoxChild w18 = ((Gtk.ButtonBox.ButtonBoxChild)(this.ActionButtonBox[this.CloseButton]));
     w18.Position = 2;
     w18.Expand = false;
     w18.Fill = false;
     this.vbox2.Add(this.ActionButtonBox);
     Gtk.Box.BoxChild w19 = ((Gtk.Box.BoxChild)(this.vbox2[this.ActionButtonBox]));
     w19.Position = 3;
     w19.Expand = false;
     w19.Fill = false;
     this.Add(this.vbox2);
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.DefaultWidth = 447;
     this.DefaultHeight = 446;
     this.Show();
     this.DeleteEvent += new Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.HelpButton.Clicked += new System.EventHandler(this.OnHelpButtonClicked);
     this.DeskletsButton.Clicked += new System.EventHandler(this.OnDeskletsButtonClicked);
     this.CloseButton.Clicked += new System.EventHandler(this.OnCloseButtonClicked);
 }
 protected virtual void Build() {
     Stetic.Gui.Initialize();
     // Widget Monoxide.MainWindow
     Gtk.UIManager w1 = new Gtk.UIManager();
     Gtk.ActionGroup w2 = new Gtk.ActionGroup("Default");
     this.refresh = new Gtk.Action("refresh", null, null, "gtk-refresh");
     w2.Add(this.refresh, null);
     this.File = new Gtk.Action("File", Mono.Unix.Catalog.GetString("_File"), null, null);
     this.File.ShortLabel = Mono.Unix.Catalog.GetString("_File");
     w2.Add(this.File, null);
     this.Quit = new Gtk.Action("Quit", Mono.Unix.Catalog.GetString("_Quit"), null, "gtk-quit");
     this.Quit.ShortLabel = Mono.Unix.Catalog.GetString("_Quit");
     w2.Add(this.Quit, null);
     this.Tools = new Gtk.Action("Tools", Mono.Unix.Catalog.GetString("_Tools"), null, null);
     this.Tools.ShortLabel = Mono.Unix.Catalog.GetString("_Tools");
     w2.Add(this.Tools, null);
     this.AddinManagerAction = new Gtk.Action("AddinManagerAction", Mono.Unix.Catalog.GetString("Addin Manager..."), null, "AddinManager");
     this.AddinManagerAction.ShortLabel = Mono.Unix.Catalog.GetString("Addin Manager...");
     w2.Add(this.AddinManagerAction, null);
     this.View = new Gtk.Action("View", Mono.Unix.Catalog.GetString("_View"), null, null);
     this.View.ShortLabel = Mono.Unix.Catalog.GetString("_View");
     w2.Add(this.View, null);
     this.Open = new Gtk.Action("Open", Mono.Unix.Catalog.GetString("_Open..."), null, "gtk-open");
     this.Open.ShortLabel = Mono.Unix.Catalog.GetString("_Open...");
     w2.Add(this.Open, null);
     this.Help = new Gtk.Action("Help", Mono.Unix.Catalog.GetString("_Help"), null, null);
     this.Help.ShortLabel = Mono.Unix.Catalog.GetString("_Help");
     w2.Add(this.Help, null);
     this.About = new Gtk.Action("About", Mono.Unix.Catalog.GetString("_About..."), null, "gtk-about");
     this.About.ShortLabel = Mono.Unix.Catalog.GetString("_About...");
     w2.Add(this.About, null);
     this.Save = new Gtk.Action("Save", Mono.Unix.Catalog.GetString("_Save..."), null, "gtk-save");
     this.Save.ShortLabel = Mono.Unix.Catalog.GetString("_Save...");
     w2.Add(this.Save, null);
     w1.InsertActionGroup(w2, 0);
     this.AddAccelGroup(w1.AccelGroup);
     this.Name = "Monoxide.MainWindow";
     this.Title = Mono.Unix.Catalog.GetString("monoXide 0.2");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     // Container child Monoxide.MainWindow.Gtk.Container+ContainerChild
     this.vbox2 = new Gtk.VBox();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     w1.AddUiFromString("<ui><menubar name='menubar1'><menu action='File'><menuitem action='Open'/><menuitem action='Save'/><separator/><menuitem action='Quit'/></menu><menu action='View'><menuitem action='refresh'/></menu><menu action='Tools'><menuitem action='AddinManagerAction'/><separator/></menu><menu action='Help'><menuitem action='About'/></menu></menubar></ui>");
     this.menubar1 = ((Gtk.MenuBar)(w1.GetWidget("/menubar1")));
     this.menubar1.Name = "menubar1";
     this.vbox2.Add(this.menubar1);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.vbox2[this.menubar1]));
     w3.Position = 0;
     w3.Expand = false;
     w3.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     w1.AddUiFromString("<ui><toolbar name='toolbar'><toolitem action='Open'/><separator/><toolitem action='refresh'/><separator/><toolitem action='AddinManagerAction'/></toolbar></ui>");
     this.toolbar = ((Gtk.Toolbar)(w1.GetWidget("/toolbar")));
     this.toolbar.Name = "toolbar";
     this.toolbar.ShowArrow = false;
     this.toolbar.ToolbarStyle = ((Gtk.ToolbarStyle)(0));
     this.toolbar.IconSize = ((Gtk.IconSize)(3));
     this.vbox2.Add(this.toolbar);
     Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(this.vbox2[this.toolbar]));
     w4.Position = 1;
     w4.Expand = false;
     w4.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hpaned1 = new Gtk.HPaned();
     this.hpaned1.CanFocus = true;
     this.hpaned1.Name = "hpaned1";
     this.hpaned1.Position = 199;
     // Container child hpaned1.Gtk.Paned+PanedChild
     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.treeview = new Gtk.TreeView();
     this.treeview.CanFocus = true;
     this.treeview.Name = "treeview";
     this.scrolledwindow1.Add(this.treeview);
     this.hpaned1.Add(this.scrolledwindow1);
     Gtk.Paned.PanedChild w6 = ((Gtk.Paned.PanedChild)(this.hpaned1[this.scrolledwindow1]));
     w6.Resize = false;
     // Container child hpaned1.Gtk.Paned+PanedChild
     this.vbox1 = new Gtk.VBox();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.objectExpander = new Gtk.Expander(null);
     this.objectExpander.CanFocus = true;
     this.objectExpander.Name = "objectExpander";
     // Container child objectExpander.Gtk.Container+ContainerChild
     this.textview = new Gtk.TextView();
     this.textview.CanFocus = true;
     this.textview.Name = "textview";
     this.textview.Editable = false;
     this.objectExpander.Add(this.textview);
     this.objectLabel = new Gtk.Label();
     this.objectLabel.Name = "objectLabel";
     this.objectLabel.LabelProp = Mono.Unix.Catalog.GetString("<empty>");
     this.objectLabel.UseUnderline = true;
     this.objectExpander.LabelWidget = this.objectLabel;
     this.vbox1.Add(this.objectExpander);
     Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(this.vbox1[this.objectExpander]));
     w8.Position = 0;
     w8.Expand = false;
     w8.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.notebook = new Gtk.Notebook();
     this.notebook.CanFocus = true;
     this.notebook.Name = "notebook";
     this.notebook.CurrentPage = 0;
     this.notebook.Scrollable = true;
     // Container child notebook.Gtk.Notebook+NotebookChild
     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));
     this.notebook.Add(this.scrolledwindow2);
     Gtk.Notebook.NotebookChild w9 = ((Gtk.Notebook.NotebookChild)(this.notebook[this.scrolledwindow2]));
     w9.TabExpand = false;
     this.vbox1.Add(this.notebook);
     Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(this.vbox1[this.notebook]));
     w10.Position = 1;
     this.hpaned1.Add(this.vbox1);
     this.vbox2.Add(this.hpaned1);
     Gtk.Box.BoxChild w12 = ((Gtk.Box.BoxChild)(this.vbox2[this.hpaned1]));
     w12.Position = 2;
     // Container child vbox2.Gtk.Box+BoxChild
     this.statusbar1 = new Gtk.Statusbar();
     this.statusbar1.Name = "statusbar1";
     this.statusbar1.Spacing = 6;
     this.vbox2.Add(this.statusbar1);
     Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(this.vbox2[this.statusbar1]));
     w13.Position = 3;
     w13.Expand = false;
     w13.Fill = false;
     this.Add(this.vbox2);
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.DefaultWidth = 698;
     this.DefaultHeight = 490;
     this.Show();
     this.refresh.Activated += new System.EventHandler(this.OnRefreshActivated);
     this.Quit.Activated += new System.EventHandler(this.OnQuitActivated);
     this.AddinManagerAction.Activated += new System.EventHandler(this.OnAddinManagerActivated);
     this.Open.Activated += new System.EventHandler(this.OnOpenActivated);
     this.About.Activated += new System.EventHandler(this.OnAboutActivated);
     this.Save.Activated += new System.EventHandler(this.OnSaveActivated);
     this.treeview.ButtonPressEvent += new Gtk.ButtonPressEventHandler(this.OnTreeviewButtonPressEvent);
 }
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget Monsoon.LoadTorrentDialog
     this.Name = "Monsoon.LoadTorrentDialog";
     this.Title = Mono.Unix.Catalog.GetString("Load torrent");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     // Internal child Monsoon.LoadTorrentDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox4 = new Gtk.VBox();
     this.vbox4.Name = "vbox4";
     this.vbox4.Spacing = 6;
     // Container child vbox4.Gtk.Box+BoxChild
     this.frame3 = new Gtk.Frame();
     this.frame3.Name = "frame3";
     this.frame3.ShadowType = ((Gtk.ShadowType)(0));
     // Container child frame3.Gtk.Container+ContainerChild
     this.GtkAlignment2 = new Gtk.Alignment(0F, 0F, 1F, 1F);
     this.GtkAlignment2.Name = "GtkAlignment2";
     this.GtkAlignment2.LeftPadding = ((uint)(12));
     // Container child GtkAlignment2.Gtk.Container+ContainerChild
     this.vbox5 = new Gtk.VBox();
     this.vbox5.Name = "vbox5";
     this.vbox5.Spacing = 6;
     // Container child vbox5.Gtk.Box+BoxChild
     this.hbox5 = new Gtk.HBox();
     this.hbox5.Name = "hbox5";
     this.hbox5.Spacing = 6;
     // Container child hbox5.Gtk.Box+BoxChild
     this.fileChooser = new Gtk.FileChooserButton(Mono.Unix.Catalog.GetString("Select A Folder"), ((Gtk.FileChooserAction)(2)));
     this.fileChooser.Name = "fileChooser";
     this.fileChooser.ShowHidden = true;
     this.hbox5.Add(this.fileChooser);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.hbox5[this.fileChooser]));
     w2.Position = 0;
     this.vbox5.Add(this.hbox5);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.vbox5[this.hbox5]));
     w3.Position = 0;
     w3.Expand = false;
     w3.Fill = false;
     // Container child vbox5.Gtk.Box+BoxChild
     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.label2 = new Gtk.Label();
     this.label2.Name = "label2";
     this.label2.Xalign = 0F;
     this.label2.LabelProp = Mono.Unix.Catalog.GetString("Name:");
     this.table1.Add(this.label2);
     Gtk.Table.TableChild w4 = ((Gtk.Table.TableChild)(this.table1[this.label2]));
     w4.XOptions = ((Gtk.AttachOptions)(4));
     w4.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label3 = new Gtk.Label();
     this.label3.Name = "label3";
     this.label3.Xalign = 0F;
     this.label3.LabelProp = Mono.Unix.Catalog.GetString("Size:");
     this.table1.Add(this.label3);
     Gtk.Table.TableChild w5 = ((Gtk.Table.TableChild)(this.table1[this.label3]));
     w5.TopAttach = ((uint)(1));
     w5.BottomAttach = ((uint)(2));
     w5.XOptions = ((Gtk.AttachOptions)(4));
     w5.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.lblName = new Gtk.Label();
     this.lblName.Name = "lblName";
     this.lblName.Xalign = 0F;
     this.lblName.LabelProp = Mono.Unix.Catalog.GetString("Suse-11.0-i386.iso");
     this.table1.Add(this.lblName);
     Gtk.Table.TableChild w6 = ((Gtk.Table.TableChild)(this.table1[this.lblName]));
     w6.LeftAttach = ((uint)(1));
     w6.RightAttach = ((uint)(2));
     w6.XOptions = ((Gtk.AttachOptions)(4));
     w6.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.lblSize = new Gtk.Label();
     this.lblSize.Name = "lblSize";
     this.lblSize.Xalign = 0F;
     this.lblSize.LabelProp = Mono.Unix.Catalog.GetString("700MB");
     this.table1.Add(this.lblSize);
     Gtk.Table.TableChild w7 = ((Gtk.Table.TableChild)(this.table1[this.lblSize]));
     w7.TopAttach = ((uint)(1));
     w7.BottomAttach = ((uint)(2));
     w7.LeftAttach = ((uint)(1));
     w7.RightAttach = ((uint)(2));
     w7.XOptions = ((Gtk.AttachOptions)(4));
     w7.YOptions = ((Gtk.AttachOptions)(4));
     this.vbox5.Add(this.table1);
     Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(this.vbox5[this.table1]));
     w8.Position = 1;
     w8.Expand = false;
     w8.Fill = false;
     this.GtkAlignment2.Add(this.vbox5);
     this.frame3.Add(this.GtkAlignment2);
     this.GtkLabel2 = new Gtk.Label();
     this.GtkLabel2.Name = "GtkLabel2";
     this.GtkLabel2.LabelProp = Mono.Unix.Catalog.GetString("<b>Save</b>");
     this.GtkLabel2.UseMarkup = true;
     this.frame3.LabelWidget = this.GtkLabel2;
     this.vbox4.Add(this.frame3);
     Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(this.vbox4[this.frame3]));
     w11.Position = 0;
     w11.Expand = false;
     w11.Fill = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.expander1 = new Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name = "expander1";
     this.expander1.Expanded = true;
     // Container child expander1.Gtk.Container+ContainerChild
     this.GtkScrolledWindow = new Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.torrentTreeView = new Gtk.TreeView();
     this.torrentTreeView.CanFocus = true;
     this.torrentTreeView.Name = "torrentTreeView";
     this.GtkScrolledWindow.Add(this.torrentTreeView);
     this.expander1.Add(this.GtkScrolledWindow);
     this.GtkLabel1 = new Gtk.Label();
     this.GtkLabel1.Name = "GtkLabel1";
     this.GtkLabel1.LabelProp = Mono.Unix.Catalog.GetString("Files");
     this.GtkLabel1.UseUnderline = true;
     this.expander1.LabelWidget = this.GtkLabel1;
     this.vbox4.Add(this.expander1);
     Gtk.Box.BoxChild w14 = ((Gtk.Box.BoxChild)(this.vbox4[this.expander1]));
     w14.Position = 1;
     // Container child vbox4.Gtk.Box+BoxChild
     this.checkbutton2 = new Gtk.CheckButton();
     this.checkbutton2.CanFocus = true;
     this.checkbutton2.Name = "checkbutton2";
     this.checkbutton2.Label = Mono.Unix.Catalog.GetString("Always show this dialog");
     this.checkbutton2.Active = true;
     this.checkbutton2.DrawIndicator = true;
     this.checkbutton2.UseUnderline = true;
     this.vbox4.Add(this.checkbutton2);
     Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(this.vbox4[this.checkbutton2]));
     w15.Position = 2;
     w15.Expand = false;
     w15.Fill = false;
     w1.Add(this.vbox4);
     Gtk.Box.BoxChild w16 = ((Gtk.Box.BoxChild)(w1[this.vbox4]));
     w16.Position = 0;
     // Internal child Monsoon.LoadTorrentDialog.ActionArea
     Gtk.HButtonBox w17 = this.ActionArea;
     w17.Name = "dialog1_ActionArea";
     w17.Spacing = 6;
     w17.BorderWidth = ((uint)(5));
     w17.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 w18 = ((Gtk.ButtonBox.ButtonBoxChild)(w17[this.buttonCancel]));
     w18.Expand = false;
     w18.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 w19 = ((Gtk.ButtonBox.ButtonBoxChild)(w17[this.buttonOk]));
     w19.Position = 1;
     w19.Expand = false;
     w19.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.DefaultWidth = 400;
     this.DefaultHeight = 474;
     this.Show();
 }
Example #17
0
        /// <summary>
        /// Builds the check framework.
        /// </summary>
        private void BuildCheckFramework()
        {
            this.actCheck.Sensitive = false;
            this.txtCorrection = new Gtk.TextView();
            this.imgCorrection = new Gtk.Image( "tsty-check" );
            this.expCorrection = new Gtk.Expander( "Check" );
            this.hbxChkContainer = new Gtk.HBox( false, 5 );
            var scrl = new Gtk.ScrolledWindow();

            // Build the view
            scrl.Add( this.txtCorrection );
            this.expCorrection.Add( scrl );
            this.hbxChkContainer.PackStart( this.imgCorrection, false, false, 5 );
            this.hbxChkContainer.PackEnd( this.expCorrection, true, true, 5 );
            this.VBox.Add( this.hbxChkContainer );

            // Prepare the txtCorrection TextView
            var font = new Pango.FontDescription();
            font.Family = "Monospace";
            txtCorrection.ModifyFont( font );
            txtCorrection.WrapMode = Gtk.WrapMode.None;
            txtCorrection.Editable = false;

            // Prepare the expander
            this.expCorrection.Activated += (o, e) => {
                bool isExpanded = this.expCorrection.Expanded;
                this.VBox.SetChildPacking( this.hbxChkContainer, isExpanded, isExpanded, 5, Gtk.PackType.End );
            };

            this.hbxChkContainer.ShowAll();
            return;
        }
 protected virtual void Build() {
     Stetic.Gui.Initialize(this);
     // Widget Mono.Addins.Gui.ErrorDialog
     this.Name = "Mono.Addins.Gui.ErrorDialog";
     this.Title = Mono.Unix.Catalog.GetString("Error");
     this.TypeHint = ((Gdk.WindowTypeHint)(1));
     this.BorderWidth = ((uint)(6));
     // Internal child Mono.Addins.Gui.ErrorDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog-vbox5";
     w1.Spacing = 6;
     // Container child dialog-vbox5.Gtk.Box+BoxChild
     this.hbox59 = new Gtk.HBox();
     this.hbox59.Name = "hbox59";
     this.hbox59.Spacing = 6;
     this.hbox59.BorderWidth = ((uint)(6));
     // Container child hbox59.Gtk.Box+BoxChild
     this.vbox72 = new Gtk.VBox();
     this.vbox72.Name = "vbox72";
     // Container child vbox72.Gtk.Box+BoxChild
     this.icon = new Gtk.Image();
     this.icon.Name = "icon";
     this.icon.Pixbuf = Stetic.IconLoader.LoadIcon(this, "gtk-dialog-error", Gtk.IconSize.Dialog, 48);
     this.vbox72.Add(this.icon);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.vbox72[this.icon]));
     w2.Position = 0;
     w2.Expand = false;
     w2.Fill = false;
     this.hbox59.Add(this.vbox72);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.hbox59[this.vbox72]));
     w3.Position = 0;
     w3.Expand = false;
     w3.Fill = false;
     // Container child hbox59.Gtk.Box+BoxChild
     this.vbox73 = new Gtk.VBox();
     this.vbox73.Name = "vbox73";
     this.vbox73.Spacing = 12;
     // Container child vbox73.Gtk.Box+BoxChild
     this.descriptionLabel = new Gtk.Label();
     this.descriptionLabel.WidthRequest = 540;
     this.descriptionLabel.CanFocus = true;
     this.descriptionLabel.Name = "descriptionLabel";
     this.descriptionLabel.Xalign = 0F;
     this.descriptionLabel.LabelProp = "An exception has been thrown 1 2 3 4 5 6 7 8 9 10 11 12 13 14";
     this.descriptionLabel.Wrap = true;
     this.descriptionLabel.Selectable = true;
     this.vbox73.Add(this.descriptionLabel);
     Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(this.vbox73[this.descriptionLabel]));
     w4.Position = 0;
     w4.Expand = false;
     w4.Fill = false;
     // Container child vbox73.Gtk.Box+BoxChild
     this.expander = new Gtk.Expander(null);
     this.expander.CanFocus = true;
     this.expander.Name = "expander";
     // Container child expander.Gtk.Container+ContainerChild
     this.scrolledwindow10 = new Gtk.ScrolledWindow();
     this.scrolledwindow10.CanFocus = true;
     this.scrolledwindow10.Name = "scrolledwindow10";
     this.scrolledwindow10.VscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow10.HscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow10.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow10.Gtk.Container+ContainerChild
     this.detailsTextView = new Gtk.TextView();
     this.detailsTextView.HeightRequest = 250;
     this.detailsTextView.CanFocus = true;
     this.detailsTextView.Name = "detailsTextView";
     this.detailsTextView.PixelsAboveLines = 2;
     this.detailsTextView.PixelsBelowLines = 2;
     this.detailsTextView.LeftMargin = 6;
     this.detailsTextView.RightMargin = 6;
     this.scrolledwindow10.Add(this.detailsTextView);
     this.expander.Add(this.scrolledwindow10);
     this.label102 = new Gtk.Label();
     this.label102.Name = "label102";
     this.label102.LabelProp = Mono.Unix.Catalog.GetString("Details");
     this.expander.LabelWidget = this.label102;
     this.vbox73.Add(this.expander);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(this.vbox73[this.expander]));
     w7.Position = 1;
     this.hbox59.Add(this.vbox73);
     Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(this.hbox59[this.vbox73]));
     w8.Position = 1;
     w1.Add(this.hbox59);
     Gtk.Box.BoxChild w9 = ((Gtk.Box.BoxChild)(w1[this.hbox59]));
     w9.Position = 0;
     // Internal child Mono.Addins.Gui.ErrorDialog.ActionArea
     Gtk.HButtonBox w10 = this.ActionArea;
     w10.Name = "dialog-action_area5";
     w10.Spacing = 10;
     w10.BorderWidth = ((uint)(5));
     w10.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
     // Container child dialog-action_area5.Gtk.ButtonBox+ButtonBoxChild
     this.okButton = new Gtk.Button();
     this.okButton.CanDefault = true;
     this.okButton.CanFocus = true;
     this.okButton.Name = "okButton";
     this.okButton.UseStock = true;
     this.okButton.UseUnderline = true;
     this.okButton.Label = "gtk-ok";
     this.AddActionWidget(this.okButton, -5);
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.DefaultWidth = 632;
     this.DefaultHeight = 155;
     this.Show();
 }
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget ocmgtk.ErrorDialog
     this.WidthRequest   = 500;
     this.HeightRequest  = 250;
     this.Name           = "ocmgtk.ErrorDialog";
     this.Title          = Mono.Unix.Catalog.GetString("An Error Occured");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     this.Modal          = true;
     this.BorderWidth    = ((uint)(6));
     // Internal child ocmgtk.ErrorDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.hbox1         = new Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.image4        = new Gtk.Image();
     this.image4.Name   = "image4";
     this.image4.Pixbuf = Stetic.IconLoader.LoadIcon(this, "gtk-dialog-error", Gtk.IconSize.Dialog, 48);
     this.hbox1.Add(this.image4);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.hbox1[this.image4]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.msgLabel            = new Gtk.Label();
     this.msgLabel.Name       = "msgLabel";
     this.msgLabel.Xalign     = 0F;
     this.msgLabel.LabelProp  = "<errormsg>";
     this.msgLabel.Wrap       = true;
     this.msgLabel.WidthChars = 55;
     this.hbox1.Add(this.msgLabel);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.hbox1[this.msgLabel]));
     w3.Position = 1;
     w3.Expand   = false;
     w3.Fill     = false;
     w1.Add(this.hbox1);
     Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w1[this.hbox1]));
     w4.Position = 0;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.expander1          = new Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name     = "expander1";
     this.expander1.Expanded = true;
     // Container child expander1.Gtk.Container+ContainerChild
     this.GtkScrolledWindow            = new Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.errorDetails               = new Gtk.TextView();
     this.errorDetails.CanFocus      = true;
     this.errorDetails.Name          = "errorDetails";
     this.errorDetails.Editable      = false;
     this.errorDetails.CursorVisible = false;
     this.GtkScrolledWindow.Add(this.errorDetails);
     this.expander1.Add(this.GtkScrolledWindow);
     this.GtkLabel2              = new Gtk.Label();
     this.GtkLabel2.Name         = "GtkLabel2";
     this.GtkLabel2.LabelProp    = Mono.Unix.Catalog.GetString("<b>Error Details:</b>");
     this.GtkLabel2.UseMarkup    = true;
     this.GtkLabel2.UseUnderline = true;
     this.expander1.LabelWidget  = this.GtkLabel2;
     w1.Add(this.expander1);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w1[this.expander1]));
     w7.Position = 1;
     // Internal child ocmgtk.ErrorDialog.ActionArea
     Gtk.HButtonBox w8 = this.ActionArea;
     w8.Name        = "dialog1_ActionArea";
     w8.Spacing     = 10;
     w8.BorderWidth = ((uint)(5));
     w8.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
     // 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-close";
     this.AddActionWidget(this.buttonOk, -7);
     Gtk.ButtonBox.ButtonBoxChild w9 = ((Gtk.ButtonBox.ButtonBoxChild)(w8[this.buttonOk]));
     w9.Expand = false;
     w9.Fill   = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 502;
     this.DefaultHeight = 280;
     this.Show();
     this.buttonOk.Clicked += new System.EventHandler(this.OnCloseClick);
 }
Example #20
0
 protected virtual void Build()
 {
     Stetic.Gui.Initialize();
     // Widget Monoxide.MainWindow
     Gtk.UIManager   w1 = new Gtk.UIManager();
     Gtk.ActionGroup w2 = new Gtk.ActionGroup("Default");
     this.refresh = new Gtk.Action("refresh", null, null, "gtk-refresh");
     w2.Add(this.refresh, null);
     this.File            = new Gtk.Action("File", Mono.Unix.Catalog.GetString("_File"), null, null);
     this.File.ShortLabel = Mono.Unix.Catalog.GetString("_File");
     w2.Add(this.File, null);
     this.Quit            = new Gtk.Action("Quit", Mono.Unix.Catalog.GetString("_Quit"), null, "gtk-quit");
     this.Quit.ShortLabel = Mono.Unix.Catalog.GetString("_Quit");
     w2.Add(this.Quit, null);
     this.Tools            = new Gtk.Action("Tools", Mono.Unix.Catalog.GetString("_Tools"), null, null);
     this.Tools.ShortLabel = Mono.Unix.Catalog.GetString("_Tools");
     w2.Add(this.Tools, null);
     this.AddinManagerAction            = new Gtk.Action("AddinManagerAction", Mono.Unix.Catalog.GetString("Addin Manager..."), null, "AddinManager");
     this.AddinManagerAction.ShortLabel = Mono.Unix.Catalog.GetString("Addin Manager...");
     w2.Add(this.AddinManagerAction, null);
     this.View            = new Gtk.Action("View", Mono.Unix.Catalog.GetString("_View"), null, null);
     this.View.ShortLabel = Mono.Unix.Catalog.GetString("_View");
     w2.Add(this.View, null);
     this.Open            = new Gtk.Action("Open", Mono.Unix.Catalog.GetString("_Open..."), null, "gtk-open");
     this.Open.ShortLabel = Mono.Unix.Catalog.GetString("_Open...");
     w2.Add(this.Open, null);
     this.Help            = new Gtk.Action("Help", Mono.Unix.Catalog.GetString("_Help"), null, null);
     this.Help.ShortLabel = Mono.Unix.Catalog.GetString("_Help");
     w2.Add(this.Help, null);
     this.About            = new Gtk.Action("About", Mono.Unix.Catalog.GetString("_About..."), null, "gtk-about");
     this.About.ShortLabel = Mono.Unix.Catalog.GetString("_About...");
     w2.Add(this.About, null);
     this.Save            = new Gtk.Action("Save", Mono.Unix.Catalog.GetString("_Save..."), null, "gtk-save");
     this.Save.ShortLabel = Mono.Unix.Catalog.GetString("_Save...");
     w2.Add(this.Save, null);
     w1.InsertActionGroup(w2, 0);
     this.AddAccelGroup(w1.AccelGroup);
     this.Name           = "Monoxide.MainWindow";
     this.Title          = Mono.Unix.Catalog.GetString("monoXide 0.2");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     // Container child Monoxide.MainWindow.Gtk.Container+ContainerChild
     this.vbox2         = new Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     w1.AddUiFromString("<ui><menubar name='menubar1'><menu action='File'><menuitem action='Open'/><menuitem action='Save'/><separator/><menuitem action='Quit'/></menu><menu action='View'><menuitem action='refresh'/></menu><menu action='Tools'><menuitem action='AddinManagerAction'/><separator/></menu><menu action='Help'><menuitem action='About'/></menu></menubar></ui>");
     this.menubar1      = ((Gtk.MenuBar)(w1.GetWidget("/menubar1")));
     this.menubar1.Name = "menubar1";
     this.vbox2.Add(this.menubar1);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.vbox2[this.menubar1]));
     w3.Position = 0;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     w1.AddUiFromString("<ui><toolbar name='toolbar'><toolitem action='Open'/><separator/><toolitem action='refresh'/><separator/><toolitem action='AddinManagerAction'/></toolbar></ui>");
     this.toolbar              = ((Gtk.Toolbar)(w1.GetWidget("/toolbar")));
     this.toolbar.Name         = "toolbar";
     this.toolbar.ShowArrow    = false;
     this.toolbar.ToolbarStyle = ((Gtk.ToolbarStyle)(0));
     this.toolbar.IconSize     = ((Gtk.IconSize)(3));
     this.vbox2.Add(this.toolbar);
     Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(this.vbox2[this.toolbar]));
     w4.Position = 1;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hpaned1          = new Gtk.HPaned();
     this.hpaned1.CanFocus = true;
     this.hpaned1.Name     = "hpaned1";
     this.hpaned1.Position = 199;
     // Container child hpaned1.Gtk.Paned+PanedChild
     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.treeview          = new Gtk.TreeView();
     this.treeview.CanFocus = true;
     this.treeview.Name     = "treeview";
     this.scrolledwindow1.Add(this.treeview);
     this.hpaned1.Add(this.scrolledwindow1);
     Gtk.Paned.PanedChild w6 = ((Gtk.Paned.PanedChild)(this.hpaned1[this.scrolledwindow1]));
     w6.Resize = false;
     // Container child hpaned1.Gtk.Paned+PanedChild
     this.vbox1         = new Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.objectExpander          = new Gtk.Expander(null);
     this.objectExpander.CanFocus = true;
     this.objectExpander.Name     = "objectExpander";
     // Container child objectExpander.Gtk.Container+ContainerChild
     this.textview          = new Gtk.TextView();
     this.textview.CanFocus = true;
     this.textview.Name     = "textview";
     this.textview.Editable = false;
     this.objectExpander.Add(this.textview);
     this.objectLabel                = new Gtk.Label();
     this.objectLabel.Name           = "objectLabel";
     this.objectLabel.LabelProp      = Mono.Unix.Catalog.GetString("<empty>");
     this.objectLabel.UseUnderline   = true;
     this.objectExpander.LabelWidget = this.objectLabel;
     this.vbox1.Add(this.objectExpander);
     Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(this.vbox1[this.objectExpander]));
     w8.Position = 0;
     w8.Expand   = false;
     w8.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.notebook             = new Gtk.Notebook();
     this.notebook.CanFocus    = true;
     this.notebook.Name        = "notebook";
     this.notebook.CurrentPage = 0;
     this.notebook.Scrollable  = true;
     // Container child notebook.Gtk.Notebook+NotebookChild
     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));
     this.notebook.Add(this.scrolledwindow2);
     Gtk.Notebook.NotebookChild w9 = ((Gtk.Notebook.NotebookChild)(this.notebook[this.scrolledwindow2]));
     w9.TabExpand = false;
     this.vbox1.Add(this.notebook);
     Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(this.vbox1[this.notebook]));
     w10.Position = 1;
     this.hpaned1.Add(this.vbox1);
     this.vbox2.Add(this.hpaned1);
     Gtk.Box.BoxChild w12 = ((Gtk.Box.BoxChild)(this.vbox2[this.hpaned1]));
     w12.Position = 2;
     // Container child vbox2.Gtk.Box+BoxChild
     this.statusbar1         = new Gtk.Statusbar();
     this.statusbar1.Name    = "statusbar1";
     this.statusbar1.Spacing = 6;
     this.vbox2.Add(this.statusbar1);
     Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(this.vbox2[this.statusbar1]));
     w13.Position = 3;
     w13.Expand   = false;
     w13.Fill     = false;
     this.Add(this.vbox2);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 698;
     this.DefaultHeight = 490;
     this.Show();
     this.refresh.Activated            += new System.EventHandler(this.OnRefreshActivated);
     this.Quit.Activated               += new System.EventHandler(this.OnQuitActivated);
     this.AddinManagerAction.Activated += new System.EventHandler(this.OnAddinManagerActivated);
     this.Open.Activated               += new System.EventHandler(this.OnOpenActivated);
     this.About.Activated              += new System.EventHandler(this.OnAboutActivated);
     this.Save.Activated               += new System.EventHandler(this.OnSaveActivated);
     this.treeview.ButtonPressEvent    += new Gtk.ButtonPressEventHandler(this.OnTreeviewButtonPressEvent);
 }
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget Monsoon.UnhandledExceptionDialog
     this.Name = "Monsoon.UnhandledExceptionDialog";
     this.Title = Mono.Unix.Catalog.GetString("Monsoon - Unhandled Exception");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     // Internal child Monsoon.UnhandledExceptionDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox2 = new Gtk.VBox();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     this.vbox2.BorderWidth = ((uint)(5));
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1 = new Gtk.HBox();
     this.hbox1.Name = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.exceptionImage = new Gtk.Image();
     this.exceptionImage.Name = "exceptionImage";
     this.hbox1.Add(this.exceptionImage);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.hbox1[this.exceptionImage]));
     w2.Position = 0;
     w2.Expand = false;
     w2.Fill = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.exceptionLabel = new Gtk.Label();
     this.exceptionLabel.Name = "exceptionLabel";
     this.exceptionLabel.Wrap = true;
     this.hbox1.Add(this.exceptionLabel);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.hbox1[this.exceptionLabel]));
     w3.Position = 1;
     w3.Expand = false;
     w3.Fill = false;
     this.vbox2.Add(this.hbox1);
     Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(this.vbox2[this.hbox1]));
     w4.Position = 0;
     w4.Expand = false;
     w4.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.expander1 = new Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name = "expander1";
     // Container child expander1.Gtk.Container+ContainerChild
     this.scrolledwindow1 = new Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus = true;
     this.scrolledwindow1.Name = "scrolledwindow1";
     this.scrolledwindow1.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     this.exceptionTextView = new Gtk.TextView();
     this.exceptionTextView.CanFocus = true;
     this.exceptionTextView.Name = "exceptionTextView";
     this.scrolledwindow1.Add(this.exceptionTextView);
     this.expander1.Add(this.scrolledwindow1);
     this.GtkLabel2 = new Gtk.Label();
     this.GtkLabel2.Name = "GtkLabel2";
     this.GtkLabel2.LabelProp = Mono.Unix.Catalog.GetString("Details");
     this.GtkLabel2.UseUnderline = true;
     this.expander1.LabelWidget = this.GtkLabel2;
     this.vbox2.Add(this.expander1);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(this.vbox2[this.expander1]));
     w7.Position = 1;
     w1.Add(this.vbox2);
     Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(w1[this.vbox2]));
     w8.Position = 0;
     w8.Padding = ((uint)(5));
     // Internal child Monsoon.UnhandledExceptionDialog.ActionArea
     Gtk.HButtonBox w9 = this.ActionArea;
     w9.Name = "dialog1_ActionArea";
     w9.Spacing = 6;
     w9.BorderWidth = ((uint)(5));
     w9.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
     // 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-quit";
     this.AddActionWidget(this.buttonOk, 0);
     Gtk.ButtonBox.ButtonBoxChild w10 = ((Gtk.ButtonBox.ButtonBoxChild)(w9[this.buttonOk]));
     w10.Expand = false;
     w10.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.DefaultWidth = 440;
     this.DefaultHeight = 172;
     this.Show();
 }
 protected virtual void Build() {
     Stetic.Gui.Initialize(this);
     // Widget Mono.CSharp.Gui.MainWindow
     this.UIManager = new Gtk.UIManager();
     Gtk.ActionGroup w1 = new Gtk.ActionGroup("Default");
     this.FileAction = new Gtk.Action("FileAction", Mono.Unix.Catalog.GetString("_File"), null, null);
     this.FileAction.ShortLabel = Mono.Unix.Catalog.GetString("File");
     w1.Add(this.FileAction, null);
     this.QuitAction = new Gtk.Action("QuitAction", Mono.Unix.Catalog.GetString("_Quit"), null, "gtk-quit");
     this.QuitAction.ShortLabel = Mono.Unix.Catalog.GetString("_Quit");
     w1.Add(this.QuitAction, null);
     this.AttachToProcessAction = new Gtk.Action("AttachToProcessAction", Mono.Unix.Catalog.GetString("Attach to Process"), null, null);
     this.AttachToProcessAction.ShortLabel = Mono.Unix.Catalog.GetString("Attach to Process");
     w1.Add(this.AttachToProcessAction, null);
     this.HelpAction = new Gtk.Action("HelpAction", Mono.Unix.Catalog.GetString("Help"), null, null);
     this.HelpAction.ShortLabel = Mono.Unix.Catalog.GetString("Help");
     w1.Add(this.HelpAction, null);
     this.AboutAction = new Gtk.Action("AboutAction", Mono.Unix.Catalog.GetString("About"), null, null);
     this.AboutAction.ShortLabel = Mono.Unix.Catalog.GetString("About");
     w1.Add(this.AboutAction, null);
     this.ViewAction = new Gtk.Action("ViewAction", Mono.Unix.Catalog.GetString("View"), null, null);
     this.ViewAction.ShortLabel = Mono.Unix.Catalog.GetString("View");
     w1.Add(this.ViewAction, null);
     this.gtkpane = new Gtk.ToggleAction("gtkpane", Mono.Unix.Catalog.GetString("Gtk Pane"), null, null);
     this.gtkpane.ShortLabel = Mono.Unix.Catalog.GetString("Gtk Pane");
     w1.Add(this.gtkpane, null);
     this.ToolsAction = new Gtk.Action("ToolsAction", Mono.Unix.Catalog.GetString("_Tools"), null, null);
     this.ToolsAction.ShortLabel = Mono.Unix.Catalog.GetString("_Tools");
     w1.Add(this.ToolsAction, null);
     this.DescribeTypeAction = new Gtk.Action("DescribeTypeAction", Mono.Unix.Catalog.GetString("Describe Type"), null, null);
     this.DescribeTypeAction.ShortLabel = Mono.Unix.Catalog.GetString("Describe Type");
     w1.Add(this.DescribeTypeAction, null);
     this.UIManager.InsertActionGroup(w1, 0);
     this.AddAccelGroup(this.UIManager.AccelGroup);
     this.Name = "Mono.CSharp.Gui.MainWindow";
     this.Title = Mono.Unix.Catalog.GetString("MainWindow");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     this.DefaultWidth = 600;
     this.DefaultHeight = 500;
     // Container child Mono.CSharp.Gui.MainWindow.Gtk.Container+ContainerChild
     this.vbox1 = new Gtk.VBox();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.UIManager.AddUiFromString("<ui><menubar name='menubar1'><menu name='FileAction' action='FileAction'><menuitem name='AttachToProcessAction' action='AttachToProcessAction'/><separator/><menuitem name='QuitAction' action='QuitAction'/></menu><menu name='ViewAction' action='ViewAction'><menuitem name='gtkpane' action='gtkpane'/></menu><menu name='ToolsAction' action='ToolsAction'><menuitem name='DescribeTypeAction' action='DescribeTypeAction'/></menu><menu name='HelpAction' action='HelpAction'><menuitem name='AboutAction' action='AboutAction'/></menu></menubar></ui>");
     this.menubar1 = ((Gtk.MenuBar)(this.UIManager.GetWidget("/menubar1")));
     this.menubar1.Name = "menubar1";
     this.vbox1.Add(this.menubar1);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.vbox1[this.menubar1]));
     w2.Position = 0;
     w2.Expand = false;
     w2.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.notebook1 = new Gtk.Notebook();
     this.notebook1.CanFocus = true;
     this.notebook1.Name = "notebook1";
     this.notebook1.CurrentPage = 0;
     this.notebook1.ShowBorder = false;
     this.notebook1.ShowTabs = false;
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.hpaned = new Gtk.HPaned();
     this.hpaned.CanFocus = true;
     this.hpaned.Name = "hpaned";
     this.hpaned.Position = 472;
     // Container child hpaned.Gtk.Paned+PanedChild
     this.paned_container = new Gtk.EventBox();
     this.paned_container.Name = "paned_container";
     this.hpaned.Add(this.paned_container);
     Gtk.Paned.PanedChild w3 = ((Gtk.Paned.PanedChild)(this.hpaned[this.paned_container]));
     w3.Resize = false;
     // Container child hpaned.Gtk.Paned+PanedChild
     this.vbox2 = new Gtk.VBox();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.expander1 = new Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name = "expander1";
     this.expander1.Expanded = true;
     // Container child expander1.Gtk.Container+ContainerChild
     this.label4 = new Gtk.Label();
     this.label4.Name = "label4";
     this.label4.Xpad = 10;
     this.label4.Xalign = 0.1F;
     this.label4.LabelProp = Mono.Unix.Catalog.GetString("Set the contents of this pane by adding Gtk.Widgets children to the <b>PaneContainer</b> property.  The PaneContainer is a Gtk.EventBox.   \n\nTry it like this:\n\nLoadPackage (\"gtk-sharp-2.0\");\nvar l = new Label (\"Hello world\");\nPaneContainer.Add (l);\nl.ShowAll ();");
     this.label4.UseMarkup = true;
     this.label4.Wrap = true;
     this.expander1.Add(this.label4);
     this.GtkLabel4 = new Gtk.Label();
     this.GtkLabel4.Name = "GtkLabel4";
     this.GtkLabel4.LabelProp = Mono.Unix.Catalog.GetString("<b>PaneContent</b>");
     this.GtkLabel4.UseMarkup = true;
     this.GtkLabel4.UseUnderline = true;
     this.expander1.LabelWidget = this.GtkLabel4;
     this.vbox2.Add(this.expander1);
     Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(this.vbox2[this.expander1]));
     w5.Position = 0;
     w5.Expand = false;
     w5.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.eventbox = new Gtk.EventBox();
     this.eventbox.Name = "eventbox";
     this.vbox2.Add(this.eventbox);
     Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.vbox2[this.eventbox]));
     w6.Position = 1;
     this.hpaned.Add(this.vbox2);
     this.notebook1.Add(this.hpaned);
     // Notebook tab
     this.label1 = new Gtk.Label();
     this.label1.Name = "label1";
     this.label1.LabelProp = Mono.Unix.Catalog.GetString("page1");
     this.notebook1.SetTabLabel(this.hpaned, this.label1);
     this.label1.ShowAll();
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.standalone_container = new Gtk.EventBox();
     this.standalone_container.Name = "standalone_container";
     // Container child standalone_container.Gtk.Container+ContainerChild
     this.shellnotebook = new Gtk.Notebook();
     this.shellnotebook.CanFocus = true;
     this.shellnotebook.Name = "shellnotebook";
     this.shellnotebook.CurrentPage = 0;
     this.shellnotebook.ShowTabs = false;
     this.shellnotebook.Scrollable = true;
     // Container child shellnotebook.Gtk.Notebook+NotebookChild
     this.sw = new Gtk.ScrolledWindow();
     this.sw.CanFocus = true;
     this.sw.Name = "sw";
     this.sw.ShadowType = ((Gtk.ShadowType)(1));
     this.shellnotebook.Add(this.sw);
     // Notebook tab
     this.label3 = new Gtk.Label();
     this.label3.Name = "label3";
     this.label3.LabelProp = Mono.Unix.Catalog.GetString("C#");
     this.shellnotebook.SetTabLabel(this.sw, this.label3);
     this.label3.ShowAll();
     this.standalone_container.Add(this.shellnotebook);
     this.notebook1.Add(this.standalone_container);
     Gtk.Notebook.NotebookChild w11 = ((Gtk.Notebook.NotebookChild)(this.notebook1[this.standalone_container]));
     w11.Position = 1;
     // Notebook tab
     this.label2 = new Gtk.Label();
     this.label2.Name = "label2";
     this.label2.LabelProp = Mono.Unix.Catalog.GetString("page2");
     this.notebook1.SetTabLabel(this.standalone_container, this.label2);
     this.label2.ShowAll();
     this.vbox1.Add(this.notebook1);
     Gtk.Box.BoxChild w12 = ((Gtk.Box.BoxChild)(this.vbox1[this.notebook1]));
     w12.Position = 1;
     this.Add(this.vbox1);
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.Show();
     this.QuitAction.Activated += new System.EventHandler(this.OnQuitActionActivated);
     this.AttachToProcessAction.Activated += new System.EventHandler(this.OnAttachToProcessActionActivated);
     this.DescribeTypeAction.Activated += new System.EventHandler(this.OnDescribeTypeActionActivated);
 }
 protected virtual void Build()
 {
     Stetic.Gui.Initialize();
     // Widget Mono.Addins.Gui.ErrorDialog
     this.Name        = "Mono.Addins.Gui.ErrorDialog";
     this.Title       = Mono.Unix.Catalog.GetString("MonoDevelop");
     this.TypeHint    = ((Gdk.WindowTypeHint)(1));
     this.BorderWidth = ((uint)(6));
     // Internal child Mono.Addins.Gui.ErrorDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog-vbox5";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog-vbox5.Gtk.Box+BoxChild
     this.hbox59             = new Gtk.HBox();
     this.hbox59.Name        = "hbox59";
     this.hbox59.Spacing     = 6;
     this.hbox59.BorderWidth = ((uint)(6));
     // Container child hbox59.Gtk.Box+BoxChild
     this.vbox72      = new Gtk.VBox();
     this.vbox72.Name = "vbox72";
     // Container child vbox72.Gtk.Box+BoxChild
     this.icon        = new Gtk.Image();
     this.icon.Name   = "icon";
     this.icon.Pixbuf = Stetic.IconLoader.LoadIcon("gtk-dialog-error", 48);
     this.vbox72.Add(this.icon);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.vbox72[this.icon]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     this.hbox59.Add(this.vbox72);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.hbox59[this.vbox72]));
     w3.Position = 0;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child hbox59.Gtk.Box+BoxChild
     this.vbox73         = new Gtk.VBox();
     this.vbox73.Name    = "vbox73";
     this.vbox73.Spacing = 12;
     // Container child vbox73.Gtk.Box+BoxChild
     this.descriptionLabel = new Gtk.Label();
     this.descriptionLabel.WidthRequest = 540;
     this.descriptionLabel.CanFocus     = true;
     this.descriptionLabel.Name         = "descriptionLabel";
     this.descriptionLabel.Xalign       = 0F;
     this.descriptionLabel.LabelProp    = "An exception has been thrown 1 2 3 4 5 6 7 8 9 10 11 12 13 14";
     this.descriptionLabel.Wrap         = true;
     this.descriptionLabel.Selectable   = true;
     this.vbox73.Add(this.descriptionLabel);
     Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(this.vbox73[this.descriptionLabel]));
     w4.Position = 0;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox73.Gtk.Box+BoxChild
     this.expander          = new Gtk.Expander(null);
     this.expander.CanFocus = true;
     this.expander.Name     = "expander";
     // Container child expander.Gtk.Container+ContainerChild
     this.scrolledwindow10                  = new Gtk.ScrolledWindow();
     this.scrolledwindow10.CanFocus         = true;
     this.scrolledwindow10.Name             = "scrolledwindow10";
     this.scrolledwindow10.VscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow10.HscrollbarPolicy = ((Gtk.PolicyType)(1));
     this.scrolledwindow10.ShadowType       = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow10.Gtk.Container+ContainerChild
     this.detailsTextView = new Gtk.TextView();
     this.detailsTextView.HeightRequest    = 250;
     this.detailsTextView.CanFocus         = true;
     this.detailsTextView.Name             = "detailsTextView";
     this.detailsTextView.PixelsAboveLines = 2;
     this.detailsTextView.PixelsBelowLines = 2;
     this.detailsTextView.LeftMargin       = 6;
     this.detailsTextView.RightMargin      = 6;
     this.scrolledwindow10.Add(this.detailsTextView);
     this.expander.Add(this.scrolledwindow10);
     this.label102             = new Gtk.Label();
     this.label102.Name        = "label102";
     this.label102.LabelProp   = Mono.Unix.Catalog.GetString("Details");
     this.expander.LabelWidget = this.label102;
     this.vbox73.Add(this.expander);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(this.vbox73[this.expander]));
     w7.Position = 1;
     this.hbox59.Add(this.vbox73);
     Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(this.hbox59[this.vbox73]));
     w8.Position = 1;
     w1.Add(this.hbox59);
     Gtk.Box.BoxChild w9 = ((Gtk.Box.BoxChild)(w1[this.hbox59]));
     w9.Position = 0;
     // Internal child Mono.Addins.Gui.ErrorDialog.ActionArea
     Gtk.HButtonBox w10 = this.ActionArea;
     w10.Name        = "dialog-action_area5";
     w10.Spacing     = 10;
     w10.BorderWidth = ((uint)(5));
     w10.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
     // Container child dialog-action_area5.Gtk.ButtonBox+ButtonBoxChild
     this.okButton              = new Gtk.Button();
     this.okButton.CanDefault   = true;
     this.okButton.CanFocus     = true;
     this.okButton.Name         = "okButton";
     this.okButton.UseStock     = true;
     this.okButton.UseUnderline = true;
     this.okButton.Label        = "gtk-ok";
     this.AddActionWidget(this.okButton, -5);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 628;
     this.DefaultHeight = 145;
     this.Show();
 }
Example #24
0
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget PanelWindow
     this.Name           = "PanelWindow";
     this.Title          = Mono.Unix.Catalog.GetString("Moonlight Desklets Panel");
     this.WindowPosition = ((Gtk.WindowPosition)(1));
     // Container child PanelWindow.Gtk.Container+ContainerChild
     this.vbox2             = new Gtk.VBox();
     this.vbox2.Name        = "vbox2";
     this.vbox2.Spacing     = 6;
     this.vbox2.BorderWidth = ((uint)(6));
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox2         = new Gtk.HBox();
     this.hbox2.Name    = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.SearchLabel           = new Gtk.Label();
     this.SearchLabel.Name      = "SearchLabel";
     this.SearchLabel.LabelProp = Mono.Unix.Catalog.GetString("Search:");
     this.hbox2.Add(this.SearchLabel);
     Gtk.Box.BoxChild w1 = ((Gtk.Box.BoxChild)(this.hbox2[this.SearchLabel]));
     w1.Position = 0;
     w1.Expand   = false;
     w1.Fill     = false;
     // Container child hbox2.Gtk.Box+BoxChild
     this.SearchEntry      = new Gtk.ComboBoxEntry();
     this.SearchEntry.Name = "SearchEntry";
     this.hbox2.Add(this.SearchEntry);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.hbox2[this.SearchEntry]));
     w2.Position = 1;
     w2.Expand   = false;
     w2.Fill     = false;
     this.vbox2.Add(this.hbox2);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.vbox2[this.hbox2]));
     w3.Position = 0;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.DeskletsScrolledWindow            = new Gtk.ScrolledWindow();
     this.DeskletsScrolledWindow.CanFocus   = true;
     this.DeskletsScrolledWindow.Name       = "DeskletsScrolledWindow";
     this.DeskletsScrolledWindow.ShadowType = ((Gtk.ShadowType)(1));
     // Container child DeskletsScrolledWindow.Gtk.Container+ContainerChild
     this.DeskletsView          = new Gtk.TreeView();
     this.DeskletsView.CanFocus = true;
     this.DeskletsView.Name     = "DeskletsView";
     this.DeskletsScrolledWindow.Add(this.DeskletsView);
     this.vbox2.Add(this.DeskletsScrolledWindow);
     Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(this.vbox2[this.DeskletsScrolledWindow]));
     w5.Position = 1;
     // Container child vbox2.Gtk.Box+BoxChild
     this.DetailsExpander          = new Gtk.Expander(null);
     this.DetailsExpander.CanFocus = true;
     this.DetailsExpander.Name     = "DetailsExpander";
     // Container child DetailsExpander.Gtk.Container+ContainerChild
     this.DetailsLabel           = new Gtk.Label();
     this.DetailsLabel.Name      = "DetailsLabel";
     this.DetailsLabel.LabelProp = "";
     this.DetailsExpander.Add(this.DetailsLabel);
     this.GtkLabel                    = new Gtk.Label();
     this.GtkLabel.Name               = "GtkLabel";
     this.GtkLabel.LabelProp          = Mono.Unix.Catalog.GetString("Show details");
     this.GtkLabel.UseUnderline       = true;
     this.DetailsExpander.LabelWidget = this.GtkLabel;
     this.vbox2.Add(this.DetailsExpander);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(this.vbox2[this.DetailsExpander]));
     w7.Position = 2;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.ActionButtonBox             = new Gtk.HButtonBox();
     this.ActionButtonBox.Name        = "ActionButtonBox";
     this.ActionButtonBox.Spacing     = 6;
     this.ActionButtonBox.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
     // Container child ActionButtonBox.Gtk.ButtonBox+ButtonBoxChild
     this.HelpButton              = new Gtk.Button();
     this.HelpButton.CanFocus     = true;
     this.HelpButton.Name         = "HelpButton";
     this.HelpButton.UseStock     = true;
     this.HelpButton.UseUnderline = true;
     this.HelpButton.Label        = "gtk-help";
     this.ActionButtonBox.Add(this.HelpButton);
     Gtk.ButtonBox.ButtonBoxChild w8 = ((Gtk.ButtonBox.ButtonBoxChild)(this.ActionButtonBox[this.HelpButton]));
     w8.Secondary = true;
     w8.Expand    = false;
     w8.Fill      = false;
     // Container child ActionButtonBox.Gtk.ButtonBox+ButtonBoxChild
     this.DeskletsButton              = new Gtk.Button();
     this.DeskletsButton.CanFocus     = true;
     this.DeskletsButton.Name         = "DeskletsButton";
     this.DeskletsButton.UseUnderline = true;
     // Container child DeskletsButton.Gtk.Container+ContainerChild
     Gtk.Alignment w9 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     Gtk.HBox w10 = new Gtk.HBox();
     w10.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     Gtk.Image w11 = new Gtk.Image();
     w11.Pixbuf = Stetic.IconLoader.LoadIcon(this, "gtk-find", Gtk.IconSize.Menu, 16);
     w10.Add(w11);
     // Container child GtkHBox.Gtk.Container+ContainerChild
     Gtk.Label w13 = new Gtk.Label();
     w13.LabelProp    = Mono.Unix.Catalog.GetString("Get desklets");
     w13.UseUnderline = true;
     w10.Add(w13);
     w9.Add(w10);
     this.DeskletsButton.Add(w9);
     this.ActionButtonBox.Add(this.DeskletsButton);
     Gtk.ButtonBox.ButtonBoxChild w17 = ((Gtk.ButtonBox.ButtonBoxChild)(this.ActionButtonBox[this.DeskletsButton]));
     w17.Position = 1;
     w17.Expand   = false;
     w17.Fill     = false;
     // Container child ActionButtonBox.Gtk.ButtonBox+ButtonBoxChild
     this.CloseButton              = new Gtk.Button();
     this.CloseButton.CanFocus     = true;
     this.CloseButton.Name         = "CloseButton";
     this.CloseButton.UseStock     = true;
     this.CloseButton.UseUnderline = true;
     this.CloseButton.Label        = "gtk-close";
     this.ActionButtonBox.Add(this.CloseButton);
     Gtk.ButtonBox.ButtonBoxChild w18 = ((Gtk.ButtonBox.ButtonBoxChild)(this.ActionButtonBox[this.CloseButton]));
     w18.Position = 2;
     w18.Expand   = false;
     w18.Fill     = false;
     this.vbox2.Add(this.ActionButtonBox);
     Gtk.Box.BoxChild w19 = ((Gtk.Box.BoxChild)(this.vbox2[this.ActionButtonBox]));
     w19.Position = 3;
     w19.Expand   = false;
     w19.Fill     = false;
     this.Add(this.vbox2);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 447;
     this.DefaultHeight = 446;
     this.Show();
     this.DeleteEvent            += new Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.HelpButton.Clicked     += new System.EventHandler(this.OnHelpButtonClicked);
     this.DeskletsButton.Clicked += new System.EventHandler(this.OnDeskletsButtonClicked);
     this.CloseButton.Clicked    += new System.EventHandler(this.OnCloseButtonClicked);
 }
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget SimpleDownloader.TestDownloadWindow
     this.UIManager = new Gtk.UIManager();
     Gtk.ActionGroup w1 = new Gtk.ActionGroup("Default");
     this.FileAction = new Gtk.Action("FileAction", Mono.Unix.Catalog.GetString("File"), null, null);
     this.FileAction.ShortLabel = Mono.Unix.Catalog.GetString("File");
     w1.Add(this.FileAction, null);
     this.quitAction = new Gtk.Action("quitAction", Mono.Unix.Catalog.GetString("Quit"), null, "gtk-quit");
     this.quitAction.ShortLabel = Mono.Unix.Catalog.GetString("Quit");
     w1.Add(this.quitAction, null);
     this.UIManager.InsertActionGroup(w1, 0);
     this.AddAccelGroup(this.UIManager.AccelGroup);
     this.Name = "SimpleDownloader.TestDownloadWindow";
     this.Title = Mono.Unix.Catalog.GetString("TestDownloadWindow");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     // Container child SimpleDownloader.TestDownloadWindow.Gtk.Container+ContainerChild
     this.vbox1 = new Gtk.VBox();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.UIManager.AddUiFromString("<ui><menubar name='menubar1'><menu name='FileAction' action='FileAction'><menuitem name='quitAction' action='quitAction'/></menu></menubar></ui>");
     this.menubar1 = ((Gtk.MenuBar)(this.UIManager.GetWidget("/menubar1")));
     this.menubar1.Name = "menubar1";
     this.vbox1.Add(this.menubar1);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.vbox1[this.menubar1]));
     w2.Position = 0;
     w2.Expand = false;
     w2.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hpaned1 = new Gtk.HPaned();
     this.hpaned1.CanFocus = true;
     this.hpaned1.Name = "hpaned1";
     this.hpaned1.Position = 141;
     this.hpaned1.BorderWidth = ((uint)(5));
     // Container child hpaned1.Gtk.Paned+PanedChild
     this.vbox2 = new Gtk.VBox();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.expander1 = new Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name = "expander1";
     this.expander1.Expanded = true;
     // Container child expander1.Gtk.Container+ContainerChild
     this.vbuttonbox2 = new Gtk.VButtonBox();
     this.vbuttonbox2.Name = "vbuttonbox2";
     this.vbuttonbox2.Homogeneous = true;
     this.vbuttonbox2.Spacing = 5;
     this.vbuttonbox2.BorderWidth = ((uint)(5));
     // Container child vbuttonbox2.Gtk.ButtonBox+ButtonBoxChild
     this.button1 = new Gtk.Button();
     this.button1.CanFocus = true;
     this.button1.Name = "button1";
     this.button1.UseStock = true;
     this.button1.UseUnderline = true;
     this.button1.Label = "gtk-add";
     this.vbuttonbox2.Add(this.button1);
     Gtk.ButtonBox.ButtonBoxChild w3 = ((Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox2[this.button1]));
     w3.Expand = false;
     w3.Fill = false;
     // Container child vbuttonbox2.Gtk.ButtonBox+ButtonBoxChild
     this.button2 = new Gtk.Button();
     this.button2.CanFocus = true;
     this.button2.Name = "button2";
     this.button2.UseStock = true;
     this.button2.UseUnderline = true;
     this.button2.Label = "gtk-delete";
     this.vbuttonbox2.Add(this.button2);
     Gtk.ButtonBox.ButtonBoxChild w4 = ((Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox2[this.button2]));
     w4.Position = 1;
     w4.Expand = false;
     w4.Fill = false;
     this.expander1.Add(this.vbuttonbox2);
     this.GtkLabel3 = new Gtk.Label();
     this.GtkLabel3.Name = "GtkLabel3";
     this.GtkLabel3.LabelProp = Mono.Unix.Catalog.GetString("Download");
     this.GtkLabel3.UseUnderline = true;
     this.expander1.LabelWidget = this.GtkLabel3;
     this.vbox2.Add(this.expander1);
     Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.vbox2[this.expander1]));
     w6.Position = 0;
     w6.Expand = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.table1 = new Gtk.Table(((uint)(3)), ((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 = 1F;
     this.label3.LabelProp = Mono.Unix.Catalog.GetString("Links:");
     this.table1.Add(this.label3);
     Gtk.Table.TableChild w7 = ((Gtk.Table.TableChild)(this.table1[this.label3]));
     w7.XOptions = ((Gtk.AttachOptions)(4));
     w7.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label4 = new Gtk.Label();
     this.label4.Name = "label4";
     this.label4.Xalign = 1F;
     this.label4.LabelProp = Mono.Unix.Catalog.GetString("In progress:");
     this.table1.Add(this.label4);
     Gtk.Table.TableChild w8 = ((Gtk.Table.TableChild)(this.table1[this.label4]));
     w8.TopAttach = ((uint)(1));
     w8.BottomAttach = ((uint)(2));
     w8.XOptions = ((Gtk.AttachOptions)(4));
     w8.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label5 = new Gtk.Label();
     this.label5.Name = "label5";
     this.label5.LabelProp = Mono.Unix.Catalog.GetString("27");
     this.table1.Add(this.label5);
     Gtk.Table.TableChild w9 = ((Gtk.Table.TableChild)(this.table1[this.label5]));
     w9.LeftAttach = ((uint)(1));
     w9.RightAttach = ((uint)(2));
     w9.XOptions = ((Gtk.AttachOptions)(4));
     w9.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label6 = new Gtk.Label();
     this.label6.Name = "label6";
     this.label6.LabelProp = Mono.Unix.Catalog.GetString("13");
     this.table1.Add(this.label6);
     Gtk.Table.TableChild w10 = ((Gtk.Table.TableChild)(this.table1[this.label6]));
     w10.TopAttach = ((uint)(1));
     w10.BottomAttach = ((uint)(2));
     w10.LeftAttach = ((uint)(1));
     w10.RightAttach = ((uint)(2));
     w10.XOptions = ((Gtk.AttachOptions)(4));
     w10.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label7 = new Gtk.Label();
     this.label7.Name = "label7";
     this.label7.Xalign = 1F;
     this.label7.LabelProp = Mono.Unix.Catalog.GetString("Done:");
     this.table1.Add(this.label7);
     Gtk.Table.TableChild w11 = ((Gtk.Table.TableChild)(this.table1[this.label7]));
     w11.TopAttach = ((uint)(2));
     w11.BottomAttach = ((uint)(3));
     w11.XOptions = ((Gtk.AttachOptions)(4));
     w11.YOptions = ((Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label8 = new Gtk.Label();
     this.label8.Name = "label8";
     this.label8.LabelProp = Mono.Unix.Catalog.GetString("14");
     this.table1.Add(this.label8);
     Gtk.Table.TableChild w12 = ((Gtk.Table.TableChild)(this.table1[this.label8]));
     w12.TopAttach = ((uint)(2));
     w12.BottomAttach = ((uint)(3));
     w12.LeftAttach = ((uint)(1));
     w12.RightAttach = ((uint)(2));
     w12.XOptions = ((Gtk.AttachOptions)(4));
     w12.YOptions = ((Gtk.AttachOptions)(4));
     this.vbox2.Add(this.table1);
     Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(this.vbox2[this.table1]));
     w13.Position = 1;
     // Container child vbox2.Gtk.Box+BoxChild
     this.vbox3 = new Gtk.VBox();
     this.vbox3.Name = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.label1 = new Gtk.Label();
     this.label1.Name = "label1";
     this.label1.Xalign = 0F;
     this.label1.LabelProp = Mono.Unix.Catalog.GetString("Current:");
     this.vbox3.Add(this.label1);
     Gtk.Box.BoxChild w14 = ((Gtk.Box.BoxChild)(this.vbox3[this.label1]));
     w14.Position = 0;
     w14.Expand = false;
     w14.Fill = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.progressCurrent = new Gtk.ProgressBar();
     this.progressCurrent.Name = "progressCurrent";
     this.progressCurrent.Text = "";
     this.vbox3.Add(this.progressCurrent);
     Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(this.vbox3[this.progressCurrent]));
     w15.Position = 1;
     w15.Expand = false;
     w15.Fill = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.label2 = new Gtk.Label();
     this.label2.Name = "label2";
     this.label2.Xalign = 0F;
     this.label2.LabelProp = Mono.Unix.Catalog.GetString("Overall:");
     this.vbox3.Add(this.label2);
     Gtk.Box.BoxChild w16 = ((Gtk.Box.BoxChild)(this.vbox3[this.label2]));
     w16.Position = 2;
     w16.Expand = false;
     w16.Fill = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.progressbar2 = new Gtk.ProgressBar();
     this.progressbar2.Name = "progressbar2";
     this.progressbar2.Text = "";
     this.vbox3.Add(this.progressbar2);
     Gtk.Box.BoxChild w17 = ((Gtk.Box.BoxChild)(this.vbox3[this.progressbar2]));
     w17.Position = 3;
     w17.Expand = false;
     w17.Fill = false;
     this.vbox2.Add(this.vbox3);
     Gtk.Box.BoxChild w18 = ((Gtk.Box.BoxChild)(this.vbox2[this.vbox3]));
     w18.Position = 2;
     w18.Expand = false;
     w18.Fill = false;
     this.hpaned1.Add(this.vbox2);
     Gtk.Paned.PanedChild w19 = ((Gtk.Paned.PanedChild)(this.hpaned1[this.vbox2]));
     w19.Resize = false;
     // Container child hpaned1.Gtk.Paned+PanedChild
     this.scrolledwindow1 = new Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus = true;
     this.scrolledwindow1.Name = "scrolledwindow1";
     this.scrolledwindow1.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     this.downloadTree = new Gtk.TreeView();
     this.downloadTree.CanFocus = true;
     this.downloadTree.Name = "downloadTree";
     this.scrolledwindow1.Add(this.downloadTree);
     this.hpaned1.Add(this.scrolledwindow1);
     this.vbox1.Add(this.hpaned1);
     Gtk.Box.BoxChild w22 = ((Gtk.Box.BoxChild)(this.vbox1[this.hpaned1]));
     w22.Position = 1;
     this.Add(this.vbox1);
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.DefaultWidth = 609;
     this.DefaultHeight = 413;
     this.Show();
     this.quitAction.Activated += new System.EventHandler(this.OnQuitActionActivated);
     this.button1.Clicked += new System.EventHandler(this.OnButton1Clicked);
     this.downloadTree.RowActivated += new Gtk.RowActivatedHandler(this.OnDownloadTreeRowActivated);
 }
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget ocmgtk.ImportDialog
     this.WidthRequest = 700;
     this.HeightRequest = 500;
     this.Name = "ocmgtk.ImportDialog";
     this.Title = Mono.Unix.Catalog.GetString("Import GPX/LOC/ZIP..");
     this.TypeHint = ((Gdk.WindowTypeHint)(1));
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     this.Modal = true;
     this.BorderWidth = ((uint)(6));
     this.Resizable = false;
     this.AllowGrow = false;
     this.SkipPagerHint = true;
     this.SkipTaskbarHint = true;
     // Internal child ocmgtk.ImportDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.fileWidget = new Gtk.FileChooserWidget(((Gtk.FileChooserAction)(0)));
     this.fileWidget.Name = "fileWidget";
     w1.Add(this.fileWidget);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(w1[this.fileWidget]));
     w2.Position = 0;
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.expander1 = new Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name = "expander1";
     this.expander1.Expanded = true;
     // Container child expander1.Gtk.Container+ContainerChild
     this.vbox2 = new Gtk.VBox();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.oldLogsCheck = new Gtk.CheckButton();
     this.oldLogsCheck.CanFocus = true;
     this.oldLogsCheck.Name = "oldLogsCheck";
     this.oldLogsCheck.Label = Mono.Unix.Catalog.GetString("Purge old cache logs");
     this.oldLogsCheck.DrawIndicator = true;
     this.oldLogsCheck.UseUnderline = true;
     this.vbox2.Add(this.oldLogsCheck);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.vbox2[this.oldLogsCheck]));
     w3.Position = 0;
     w3.Expand = false;
     w3.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.statusCheck = new Gtk.CheckButton();
     this.statusCheck.CanFocus = true;
     this.statusCheck.Name = "statusCheck";
     this.statusCheck.Label = Mono.Unix.Catalog.GetString("Do not overwrite existing found status in database");
     this.statusCheck.DrawIndicator = true;
     this.statusCheck.UseUnderline = true;
     this.vbox2.Add(this.statusCheck);
     Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(this.vbox2[this.statusCheck]));
     w4.Position = 1;
     w4.Expand = false;
     w4.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.gsakFieldsCheck = new Gtk.CheckButton();
     this.gsakFieldsCheck.CanFocus = true;
     this.gsakFieldsCheck.Name = "gsakFieldsCheck";
     this.gsakFieldsCheck.Label = Mono.Unix.Catalog.GetString("Ignore GSAK/OCM extra fields in GPX file");
     this.gsakFieldsCheck.DrawIndicator = true;
     this.gsakFieldsCheck.UseUnderline = true;
     this.vbox2.Add(this.gsakFieldsCheck);
     Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(this.vbox2[this.gsakFieldsCheck]));
     w5.Position = 2;
     w5.Expand = false;
     w5.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1 = new Gtk.HBox();
     this.hbox1.Name = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.addToListCheck = new Gtk.CheckButton();
     this.addToListCheck.CanFocus = true;
     this.addToListCheck.Name = "addToListCheck";
     this.addToListCheck.Label = Mono.Unix.Catalog.GetString("Add to bookmark list:");
     this.addToListCheck.DrawIndicator = true;
     this.addToListCheck.UseUnderline = true;
     this.hbox1.Add(this.addToListCheck);
     Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.hbox1[this.addToListCheck]));
     w6.Position = 0;
     w6.Expand = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.bmCombo = Gtk.ComboBox.NewText();
     this.bmCombo.Sensitive = false;
     this.bmCombo.Name = "bmCombo";
     this.hbox1.Add(this.bmCombo);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(this.hbox1[this.bmCombo]));
     w7.Position = 1;
     w7.Expand = false;
     w7.Fill = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.addBmrkButton = new Gtk.Button();
     this.addBmrkButton.CanFocus = true;
     this.addBmrkButton.Name = "addBmrkButton";
     // Container child addBmrkButton.Gtk.Container+ContainerChild
     this.image20 = new Gtk.Image();
     this.image20.Sensitive = false;
     this.image20.Name = "image20";
     this.image20.Pixbuf = Stetic.IconLoader.LoadIcon(this, "gtk-add", Gtk.IconSize.Menu, 16);
     this.addBmrkButton.Add(this.image20);
     this.addBmrkButton.Label = null;
     this.hbox1.Add(this.addBmrkButton);
     Gtk.Box.BoxChild w9 = ((Gtk.Box.BoxChild)(this.hbox1[this.addBmrkButton]));
     w9.Position = 2;
     w9.Expand = false;
     w9.Fill = false;
     this.vbox2.Add(this.hbox1);
     Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(this.vbox2[this.hbox1]));
     w10.Position = 3;
     w10.Expand = false;
     w10.Fill = false;
     this.expander1.Add(this.vbox2);
     this.GtkLabel17 = new Gtk.Label();
     this.GtkLabel17.Name = "GtkLabel17";
     this.GtkLabel17.LabelProp = Mono.Unix.Catalog.GetString("Options");
     this.GtkLabel17.UseUnderline = true;
     this.expander1.LabelWidget = this.GtkLabel17;
     w1.Add(this.expander1);
     Gtk.Box.BoxChild w12 = ((Gtk.Box.BoxChild)(w1[this.expander1]));
     w12.Position = 1;
     w12.Expand = false;
     w12.Fill = false;
     w12.Padding = ((uint)(6));
     // Internal child ocmgtk.ImportDialog.ActionArea
     Gtk.HButtonBox w13 = this.ActionArea;
     w13.Name = "dialog1_ActionArea";
     w13.Spacing = 10;
     w13.BorderWidth = ((uint)(5));
     w13.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 w14 = ((Gtk.ButtonBox.ButtonBoxChild)(w13[this.buttonCancel]));
     w14.Expand = false;
     w14.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-open";
     this.AddActionWidget(this.buttonOk, -3);
     Gtk.ButtonBox.ButtonBoxChild w15 = ((Gtk.ButtonBox.ButtonBoxChild)(w13[this.buttonOk]));
     w15.Position = 1;
     w15.Expand = false;
     w15.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.DefaultWidth = 721;
     this.DefaultHeight = 527;
     this.Show();
     this.fileWidget.FileActivated += new System.EventHandler(this.OnFileActivated);
     this.addToListCheck.Toggled += new System.EventHandler(this.OnAddToBmrkToggle);
     this.addBmrkButton.Clicked += new System.EventHandler(this.OnAddClicked);
     this.buttonCancel.Clicked += new System.EventHandler(this.OnCancelClicked);
     this.buttonOk.Clicked += new System.EventHandler(this.OnOkClicked);
 }
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget Monsoon.UnhandledExceptionDialog
     this.Name           = "Monsoon.UnhandledExceptionDialog";
     this.Title          = Mono.Unix.Catalog.GetString("Monsoon - Unhandled Exception");
     this.WindowPosition = ((Gtk.WindowPosition)(4));
     // Internal child Monsoon.UnhandledExceptionDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox2             = new Gtk.VBox();
     this.vbox2.Name        = "vbox2";
     this.vbox2.Spacing     = 6;
     this.vbox2.BorderWidth = ((uint)(5));
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1         = new Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.exceptionImage      = new Gtk.Image();
     this.exceptionImage.Name = "exceptionImage";
     this.hbox1.Add(this.exceptionImage);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.hbox1[this.exceptionImage]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.exceptionLabel      = new Gtk.Label();
     this.exceptionLabel.Name = "exceptionLabel";
     this.exceptionLabel.Wrap = true;
     this.hbox1.Add(this.exceptionLabel);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.hbox1[this.exceptionLabel]));
     w3.Position = 1;
     w3.Expand   = false;
     w3.Fill     = false;
     this.vbox2.Add(this.hbox1);
     Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(this.vbox2[this.hbox1]));
     w4.Position = 0;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.expander1          = new Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name     = "expander1";
     // Container child expander1.Gtk.Container+ContainerChild
     this.scrolledwindow1            = new Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus   = true;
     this.scrolledwindow1.Name       = "scrolledwindow1";
     this.scrolledwindow1.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     this.exceptionTextView          = new Gtk.TextView();
     this.exceptionTextView.CanFocus = true;
     this.exceptionTextView.Name     = "exceptionTextView";
     this.scrolledwindow1.Add(this.exceptionTextView);
     this.expander1.Add(this.scrolledwindow1);
     this.GtkLabel2              = new Gtk.Label();
     this.GtkLabel2.Name         = "GtkLabel2";
     this.GtkLabel2.LabelProp    = Mono.Unix.Catalog.GetString("Details");
     this.GtkLabel2.UseUnderline = true;
     this.expander1.LabelWidget  = this.GtkLabel2;
     this.vbox2.Add(this.expander1);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(this.vbox2[this.expander1]));
     w7.Position = 1;
     w1.Add(this.vbox2);
     Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(w1[this.vbox2]));
     w8.Position = 0;
     w8.Padding  = ((uint)(5));
     // Internal child Monsoon.UnhandledExceptionDialog.ActionArea
     Gtk.HButtonBox w9 = this.ActionArea;
     w9.Name        = "dialog1_ActionArea";
     w9.Spacing     = 6;
     w9.BorderWidth = ((uint)(5));
     w9.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
     // 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-quit";
     this.AddActionWidget(this.buttonOk, 0);
     Gtk.ButtonBox.ButtonBoxChild w10 = ((Gtk.ButtonBox.ButtonBoxChild)(w9[this.buttonOk]));
     w10.Expand = false;
     w10.Fill   = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 440;
     this.DefaultHeight = 172;
     this.Show();
 }
Example #28
0
File: test.cs Project: mono/gert
		protected virtual void Build ()
		{
			Gtk.Window cobj = (Gtk.Window) null;
			// Widget Sya.reclutamiento
			cobj.Title = "Datos del Aspirante - Reclutamiento de Personal";
			Gtk.UIManager w1 = new Gtk.UIManager ();
			Gtk.ActionGroup w2 = new Gtk.ActionGroup ("Default");
			Gtk.Action w3 = new Gtk.Action ("goBack", null, null, "gtk-go-back");
			this.goBack = w3;
			w2.Add (w3, null);
			Gtk.Action w4 = new Gtk.Action ("goForward", null, null, "gtk-go-forward");
			this.goForward = w4;
			w2.Add (w4, null);
			Gtk.Action w5 = new Gtk.Action ("gotoLast", null, null, "gtk-goto-last");
			this.gotoLast = w5;
			w2.Add (w5, null);
			Gtk.Action w6 = new Gtk.Action ("print", null, null, "gtk-print");
			this.print = w6;
			w2.Add (w6, null);
			Gtk.Action w7 = new Gtk.Action ("save", null, null, "gtk-save");
			this.save = w7;
			w2.Add (w7, null);
			Gtk.Action w8 = new Gtk.Action ("quit", null, null, "gtk-quit");
			this.quit = w8;
			w2.Add (w8, null);
			Gtk.Action w9 = new Gtk.Action ("quit1", null, null, "gtk-quit");
			this.quit1 = w9;
			w2.Add (w9, null);
			Gtk.Action w10 = new Gtk.Action ("save1", null, null, "gtk-save");
			this.save1 = w10;
			w2.Add (w10, null);
			Gtk.Action w11 = new Gtk.Action ("quit2", null, null, "gtk-quit");
			this.quit2 = w11;
			w2.Add (w11, null);
			Gtk.Action w12 = new Gtk.Action ("about", null, null, "gtk-about");
			this.about = w12;
			w2.Add (w12, null);
			Gtk.Action w13 = new Gtk.Action ("gotoFirst", null, null, "gtk-goto-first");
			this.gotoFirst = w13;
			w2.Add (w13, null);
			Gtk.Action w14 = new Gtk.Action ("goBack1", null, null, "gtk-media-rewind");
			this.goBack1 = w14;
			w2.Add (w14, null);
			Gtk.Action w15 = new Gtk.Action ("goForward1", null, null, "gtk-media-forward");
			this.goForward1 = w15;
			w2.Add (w15, null);
			Gtk.Action w16 = new Gtk.Action ("gotoLast1", null, null, "gtk-goto-last");
			this.gotoLast1 = w16;
			w2.Add (w16, null);
			Gtk.Action w17 = new Gtk.Action ("save2", null, null, "gtk-save");
			this.save2 = w17;
			w2.Add (w17, null);
			Gtk.Action w18 = new Gtk.Action ("print1", null, null, "gtk-print");
			this.print1 = w18;
			w2.Add (w18, null);
			Gtk.Action w19 = new Gtk.Action ("quit3", null, null, "gtk-quit");
			this.quit3 = w19;
			w2.Add (w19, null);
			Gtk.Action w20 = new Gtk.Action ("dialogInfo", null, null, "gtk-dialog-info");
			this.dialogInfo = w20;
			w2.Add (w20, null);
			Gtk.Action w21 = new Gtk.Action ("about1", null, null, "gtk-about");
			this.about1 = w21;
			w2.Add (w21, null);
			Gtk.Action w22 = new Gtk.Action ("goBack2", null, null, "gtk-go-back");
			this.goBack2 = w22;
			w2.Add (w22, null);
			Gtk.Action w23 = new Gtk.Action ("goForward2", null, null, "gtk-go-forward");
			this.goForward2 = w23;
			w2.Add (w23, null);
			Gtk.Action w24 = new Gtk.Action ("printPreview", null, null, "gtk-print-preview");
			this.printPreview = w24;
			w2.Add (w24, null);
			w1.InsertActionGroup (w2, 0);
			cobj.AddAccelGroup (w1.AccelGroup);
			cobj.WindowPosition = ((Gtk.WindowPosition) (4));
			cobj.Modal = true;
			cobj.Gravity = ((Gdk.Gravity) (5));
			cobj.Name = "Sya.reclutamiento";
			// Container child Sya.reclutamiento.Gtk.Container+ContainerChild
			Gtk.ScrolledWindow w25 = new Gtk.ScrolledWindow ();
			w25.VscrollbarPolicy = ((Gtk.PolicyType) (1));
			w25.HscrollbarPolicy = ((Gtk.PolicyType) (1));
			w25.CanFocus = true;
			w25.Name = "scrolledwindow2";
			// Container child scrolledwindow2.Gtk.Container+ContainerChild
			Gtk.Viewport w26 = new Gtk.Viewport ();
			w26.ShadowType = ((Gtk.ShadowType) (0));
			w26.Name = "GtkViewport";
			// Container child GtkViewport.Gtk.Container+ContainerChild
			Gtk.VBox w27 = new Gtk.VBox ();
			w27.Name = "vbox1";
			// Container child vbox1.Gtk.Box+BoxChild
			Gtk.HBox w28 = new Gtk.HBox ();
			w28.Name = "hbox2";
			// Container child hbox2.Gtk.Box+BoxChild
			w1.AddUiFromString ("<ui><toolbar name='toolbar1'><toolitem action='gotoFirst'/><toolitem action='goBack1'/><toolitem action='goForward1'/><toolitem action='gotoLast1'/><toolitem action='save2'/><toolitem action='printPreview'/><toolitem action='print1'/><toolitem action='quit3'/><toolitem action='dialogInfo'/><toolitem action='about1'/><toolitem action='goBack2'/><toolitem action='goForward2'/></toolbar></ui>");
			Gtk.Toolbar w29 = ((Gtk.Toolbar) (w1.GetWidget ("/toolbar1")));
			w29.ShowArrow = false;
			w29.Tooltips = true;
			w29.ToolbarStyle = ((Gtk.ToolbarStyle) (0));
			w29.IconSize = ((Gtk.IconSize) (2));
			w29.Name = "toolbar1";
			this.toolbar1 = w29;
			w28.Add (w29);
			Gtk.Box.BoxChild w30 = ((Gtk.Box.BoxChild) (w28 [w29]));
			w30.Position = 0;
			w30.Expand = false;
			// Container child hbox2.Gtk.Box+BoxChild
			Gtk.Label w31 = new Gtk.Label ();
			w31.LabelProp = "label 5";
			w31.Xpad = 5;
			w31.Name = "label5";
			this.label5 = w31;
			w28.Add (w31);
			Gtk.Box.BoxChild w32 = ((Gtk.Box.BoxChild) (w28 [w31]));
			w32.Position = 1;
			w32.Expand = false;
			w32.Fill = false;
			// Container child hbox2.Gtk.Box+BoxChild
			Gtk.Label w33 = new Gtk.Label ();
			w33.LabelProp = "label 6";
			w33.Xpad = 5;
			w33.Name = "label6";
			this.label6 = w33;
			w28.Add (w33);
			Gtk.Box.BoxChild w34 = ((Gtk.Box.BoxChild) (w28 [w33]));
			w34.Position = 2;
			w34.Expand = false;
			w34.Fill = false;
			this.hbox2 = w28;
			w27.Add (w28);
			Gtk.Box.BoxChild w35 = ((Gtk.Box.BoxChild) (w27 [w28]));
			w35.Position = 0;
			w35.Expand = false;
			w35.Fill = false;
			// Container child vbox1.Gtk.Box+BoxChild
			Gtk.HSeparator w36 = new Gtk.HSeparator ();
			w36.Name = "hseparator1";
			this.hseparator1 = w36;
			w27.Add (w36);
			Gtk.Box.BoxChild w37 = ((Gtk.Box.BoxChild) (w27 [w36]));
			w37.Position = 1;
			w37.Expand = false;
			w37.Fill = false;
			// Container child vbox1.Gtk.Box+BoxChild
			Gtk.HBox w38 = new Gtk.HBox ();
			w38.Name = "hbox1";
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.ComboBox w39 = Gtk.ComboBox.NewText ();
			w39.AppendText ("");
			w39.AppendText ("Adicionar");
			w39.AppendText ("Consultar");
			w39.AppendText ("Extender");
			w39.AppendText ("Modificar");
			w39.AppendText ("Eliminar");
			w39.Active = 0;
			w39.Name = "combo_OpRec";
			this.combo_OpRec = w39;
			w38.Add (w39);
			Gtk.Box.BoxChild w40 = ((Gtk.Box.BoxChild) (w38 [w39]));
			w40.Position = 0;
			w40.Expand = false;
			w40.Fill = false;
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.Label w41 = new Gtk.Label ();
			w41.LabelProp = "Busqueda:";
			w41.Xpad = 3;
			w41.Name = "label3";
			this.label3 = w41;
			w38.Add (w41);
			Gtk.Box.BoxChild w42 = ((Gtk.Box.BoxChild) (w38 [w41]));
			w42.Position = 1;
			w42.Expand = false;
			w42.Fill = false;
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.ComboBox w43 = Gtk.ComboBox.NewText ();
			w43.Active = 0;
			w43.Name = "combobox3";
			this.combobox3 = w43;
			w38.Add (w43);
			Gtk.Box.BoxChild w44 = ((Gtk.Box.BoxChild) (w38 [w43]));
			w44.Position = 2;
			w44.Expand = false;
			w44.Fill = false;
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.Label w45 = new Gtk.Label ();
			w45.LabelProp = "Operador: ";
			w45.Xpad = 5;
			w45.Name = "label4";
			this.label4 = w45;
			w38.Add (w45);
			Gtk.Box.BoxChild w46 = ((Gtk.Box.BoxChild) (w38 [w45]));
			w46.Position = 3;
			w46.Expand = false;
			w46.Fill = false;
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.ComboBox w47 = Gtk.ComboBox.NewText ();
			w47.AppendText ("Igual ");
			w47.AppendText ("Mayor o igual");
			w47.AppendText ("Menor o igual");
			w47.Active = 0;
			w47.Name = "combobox2";
			this.combobox2 = w47;
			w38.Add (w47);
			Gtk.Box.BoxChild w48 = ((Gtk.Box.BoxChild) (w38 [w47]));
			w48.Position = 4;
			w48.Expand = false;
			w48.Fill = false;
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.Label w49 = new Gtk.Label ();
			w49.LabelProp = "Buscar por: ";
			w49.Xpad = 5;
			w49.Name = "label1";
			this.label1 = w49;
			w38.Add (w49);
			Gtk.Box.BoxChild w50 = ((Gtk.Box.BoxChild) (w38 [w49]));
			w50.Position = 5;
			w50.Expand = false;
			w50.Fill = false;
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.Entry w51 = new Gtk.Entry ();
			w51.IsEditable = true;
			w51.WidthChars = 20;
			w51.MaxLength = 40;
			w51.InvisibleChar = '●';
			w51.CanFocus = true;
			w51.Name = "entry2";
			this.entry2 = w51;
			w38.Add (w51);
			Gtk.Box.BoxChild w52 = ((Gtk.Box.BoxChild) (w38 [w51]));
			w52.Position = 6;
			w52.Expand = false;
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.Label w53 = new Gtk.Label ();
			w53.LabelProp = "Por Fecha: ";
			w53.Name = "label2";
			this.label2 = w53;
			w38.Add (w53);
			Gtk.Box.BoxChild w54 = ((Gtk.Box.BoxChild) (w38 [w53]));
			w54.Position = 7;
			w54.Expand = false;
			w54.Fill = false;
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.SpinButton w55 = new Gtk.SpinButton (1, 31, 1);
			w55.Adjustment.PageIncrement = 10;
			w55.Adjustment.PageSize = 10;
			w55.ClimbRate = 1;
			w55.Numeric = true;
			w55.Value = 1;
			w55.CanFocus = true;
			w55.Name = "spinbutton3";
			this.spinbutton3 = w55;
			w38.Add (w55);
			Gtk.Box.BoxChild w56 = ((Gtk.Box.BoxChild) (w38 [w55]));
			w56.Position = 8;
			w56.Expand = false;
			w56.Fill = false;
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.ComboBox w57 = Gtk.ComboBox.NewText ();
			w57.AppendText ("Enero");
			w57.AppendText ("Febrero");
			w57.AppendText ("Marzo");
			w57.AppendText ("Abril");
			w57.AppendText ("Mayo");
			w57.AppendText ("Junio");
			w57.AppendText ("Julio");
			w57.AppendText ("Agosto");
			w57.AppendText ("Septiembre");
			w57.AppendText ("Octubre");
			w57.AppendText ("Noviembre");
			w57.AppendText ("Diciembre");
			w57.Active = 0;
			w57.Name = "combobox4";
			this.combobox4 = w57;
			w38.Add (w57);
			Gtk.Box.BoxChild w58 = ((Gtk.Box.BoxChild) (w38 [w57]));
			w58.Position = 9;
			w58.Expand = false;
			w58.Fill = false;
			// Container child hbox1.Gtk.Box+BoxChild
			Gtk.SpinButton w59 = new Gtk.SpinButton (1900, 2100, 1);
			w59.Adjustment.PageIncrement = 10;
			w59.Adjustment.PageSize = 10;
			w59.ClimbRate = 1;
			w59.Numeric = true;
			w59.Value = 2006;
			w59.CanFocus = true;
			w59.Name = "spinbutton4";
			this.spinbutton4 = w59;
			w38.Add (w59);
			Gtk.Box.BoxChild w60 = ((Gtk.Box.BoxChild) (w38 [w59]));
			w60.Position = 10;
			w60.Expand = false;
			w60.Fill = false;
			this.hbox1 = w38;
			w27.Add (w38);
			Gtk.Box.BoxChild w61 = ((Gtk.Box.BoxChild) (w27 [w38]));
			w61.Position = 2;
			w61.Expand = false;
			w61.Fill = false;
			// Container child vbox1.Gtk.Box+BoxChild
			Gtk.HSeparator w62 = new Gtk.HSeparator ();
			w62.Name = "hseparator2";
			this.hseparator2 = w62;
			w27.Add (w62);
			Gtk.Box.BoxChild w63 = ((Gtk.Box.BoxChild) (w27 [w62]));
			w63.Position = 3;
			w63.Expand = false;
			w63.Fill = false;
			// Container child vbox1.Gtk.Box+BoxChild
			Gtk.HBox w64 = new Gtk.HBox ();
			w64.Name = "hbox3";
			// Container child hbox3.Gtk.Box+BoxChild
			Gtk.VBox w65 = new Gtk.VBox ();
			w65.Name = "vbox2";
			// Container child vbox2.Gtk.Box+BoxChild
			Gtk.VBox w66 = new Gtk.VBox ();
			w66.Name = "vbox3";
			// Container child vbox3.Gtk.Box+BoxChild
			Gtk.Frame w67 = new Gtk.Frame ();
			w67.ShadowType = ((Gtk.ShadowType) (4));
			w67.LabelXalign = 0F;
			w67.BorderWidth = ((uint) (5));
			w67.WidthRequest = 0;
			w67.Name = "frame1";
			// Container child frame1.Gtk.Container+ContainerChild
			Gtk.Alignment w68 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w68.LeftPadding = ((uint) (5));
			w68.RightPadding = ((uint) (5));
			w68.Name = "GtkAlignment4";
			// Container child GtkAlignment4.Gtk.Container+ContainerChild
			Gtk.VBox w69 = new Gtk.VBox ();
			w69.Spacing = 5;
			w69.Name = "vbox4";
			// Container child vbox4.Gtk.Box+BoxChild
			Gtk.Frame w70 = new Gtk.Frame ();
			w70.ShadowType = ((Gtk.ShadowType) (4));
			w70.LabelXalign = 0F;
			w70.Name = "frame3";
			// Container child frame3.Gtk.Container+ContainerChild
			Gtk.Alignment w71 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w71.LeftPadding = ((uint) (5));
			w71.RightPadding = ((uint) (5));
			w71.Name = "GtkAlignment2";
			// Container child GtkAlignment2.Gtk.Container+ContainerChild
			Gtk.VBox w72 = new Gtk.VBox ();
			w72.Spacing = 3;
			w72.Name = "vbox6";
			// Container child vbox6.Gtk.Box+BoxChild
			Gtk.HBox w73 = new Gtk.HBox ();
			w73.Name = "hbox4";
			// Container child hbox4.Gtk.Box+BoxChild
			Gtk.Label w74 = new Gtk.Label ();
			w74.LabelProp = "Tipo:       ";
			w74.Name = "label8";
			this.label8 = w74;
			w73.Add (w74);
			Gtk.Box.BoxChild w75 = ((Gtk.Box.BoxChild) (w73 [w74]));
			w75.Position = 0;
			w75.Expand = false;
			w75.Fill = false;
			// Container child hbox4.Gtk.Box+BoxChild
			Gtk.ComboBox w76 = Gtk.ComboBox.NewText ();
			w76.Name = "comb_Tipo";
			this.comb_Tipo = w76;
			w73.Add (w76);
			Gtk.Box.BoxChild w77 = ((Gtk.Box.BoxChild) (w73 [w76]));
			w77.Position = 1;
			w77.Expand = false;
			w77.Fill = false;
			// Container child hbox4.Gtk.Box+BoxChild
			Gtk.Label w78 = new Gtk.Label ();
			w78.LabelProp = "*";
			w78.Name = "label172";
			this.label172 = w78;
			w73.Add (w78);
			Gtk.Box.BoxChild w79 = ((Gtk.Box.BoxChild) (w73 [w78]));
			w79.Position = 2;
			w79.Expand = false;
			w79.Fill = false;
			// Container child hbox4.Gtk.Box+BoxChild
			Gtk.Label w80 = new Gtk.Label ();
			w80.LabelProp = "Número: ";
			w80.Xpad = 21;
			w80.Name = "label9";
			this.label9 = w80;
			w73.Add (w80);
			Gtk.Box.BoxChild w81 = ((Gtk.Box.BoxChild) (w73 [w80]));
			w81.Position = 3;
			w81.Expand = false;
			w81.Fill = false;
			// Container child hbox4.Gtk.Box+BoxChild
			Gtk.Entry w82 = new Gtk.Entry ();
			w82.IsEditable = true;
			w82.WidthChars = 15;
			w82.MaxLength = 15;
			w82.InvisibleChar = '●';
			w82.CanFocus = true;
			w82.Name = "en_NumTipo";
			this.en_NumTipo = w82;
			w73.Add (w82);
			Gtk.Box.BoxChild w83 = ((Gtk.Box.BoxChild) (w73 [w82]));
			w83.Position = 4;
			w83.Expand = false;
			// Container child hbox4.Gtk.Box+BoxChild
			Gtk.Label w84 = new Gtk.Label ();
			w84.LabelProp = "*";
			w84.Name = "label166";
			this.label166 = w84;
			w73.Add (w84);
			Gtk.Box.BoxChild w85 = ((Gtk.Box.BoxChild) (w73 [w84]));
			w85.Position = 5;
			w85.Expand = false;
			w85.Fill = false;
			this.hbox4 = w73;
			w72.Add (w73);
			Gtk.Box.BoxChild w86 = ((Gtk.Box.BoxChild) (w72 [w73]));
			w86.Position = 0;
			w86.Expand = false;
			w86.Fill = false;
			// Container child vbox6.Gtk.Box+BoxChild
			Gtk.HBox w87 = new Gtk.HBox ();
			w87.Name = "hbox5";
			// Container child hbox5.Gtk.Box+BoxChild
			Gtk.Label w88 = new Gtk.Label ();
			w88.LabelProp = "Expedida en     : ";
			w88.Name = "label7";
			this.label7 = w88;
			w87.Add (w88);
			Gtk.Box.BoxChild w89 = ((Gtk.Box.BoxChild) (w87 [w88]));
			w89.Position = 0;
			w89.Expand = false;
			w89.Fill = false;
			// Container child hbox5.Gtk.Box+BoxChild
			Gtk.Entry w90 = new Gtk.Entry ();
			w90.IsEditable = true;
			w90.WidthChars = 40;
			w90.MaxLength = 40;
			w90.InvisibleChar = '●';
			w90.CanFocus = true;
			w90.Name = "en_NumExp";
			this.en_NumExp = w90;
			w87.Add (w90);
			Gtk.Box.BoxChild w91 = ((Gtk.Box.BoxChild) (w87 [w90]));
			w91.Position = 1;
			w91.Expand = false;
			// Container child hbox5.Gtk.Box+BoxChild
			Gtk.Label w92 = new Gtk.Label ();
			w92.LabelProp = "*";
			w92.Name = "label173";
			this.label173 = w92;
			w87.Add (w92);
			Gtk.Box.BoxChild w93 = ((Gtk.Box.BoxChild) (w87 [w92]));
			w93.Position = 2;
			w93.Expand = false;
			w93.Fill = false;
			this.hbox5 = w87;
			w72.Add (w87);
			Gtk.Box.BoxChild w94 = ((Gtk.Box.BoxChild) (w72 [w87]));
			w94.Position = 1;
			w94.Expand = false;
			w94.Fill = false;
			this.vbox6 = w72;
			w71.Add (w72);
			this.GtkAlignment2 = w71;
			w70.Add (w71);
			Gtk.Label w97 = new Gtk.Label ();
			w97.LabelProp = "";
			w97.UseMarkup = true;
			w97.Events = ((Gdk.EventMask) (256));
			w97.Name = "GtkLabel3";
			this.GtkLabel3 = w97;
			w70.LabelWidget = w97;
			this.frame3 = w70;
			w69.Add (w70);
			Gtk.Box.BoxChild w98 = ((Gtk.Box.BoxChild) (w69 [w70]));
			w98.Position = 0;
			// Container child vbox4.Gtk.Box+BoxChild
			Gtk.Frame w99 = new Gtk.Frame ();
			w99.ShadowType = ((Gtk.ShadowType) (4));
			w99.LabelXalign = 0F;
			w99.Name = "frame4";
			// Container child frame4.Gtk.Container+ContainerChild
			Gtk.Alignment w100 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w100.LeftPadding = ((uint) (5));
			w100.RightPadding = ((uint) (5));
			w100.Name = "GtkAlignment3";
			// Container child GtkAlignment3.Gtk.Container+ContainerChild
			Gtk.VBox w101 = new Gtk.VBox ();
			w101.Spacing = 3;
			w101.Name = "vbox7";
			// Container child vbox7.Gtk.Box+BoxChild
			Gtk.HBox w102 = new Gtk.HBox ();
			w102.Name = "hbox6";
			// Container child hbox6.Gtk.Box+BoxChild
			Gtk.Label w103 = new Gtk.Label ();
			w103.LabelProp = "Primer Nombre: ";
			w103.Name = "label10";
			this.label10 = w103;
			w102.Add (w103);
			Gtk.Box.BoxChild w104 = ((Gtk.Box.BoxChild) (w102 [w103]));
			w104.Position = 0;
			w104.Expand = false;
			w104.Fill = false;
			// Container child hbox6.Gtk.Box+BoxChild
			Gtk.Entry w105 = new Gtk.Entry ();
			w105.IsEditable = true;
			w105.WidthChars = 29;
			w105.MaxLength = 40;
			w105.InvisibleChar = '●';
			w105.CanFocus = true;
			w105.Name = "en_PrNombre";
			this.en_PrNombre = w105;
			w102.Add (w105);
			Gtk.Box.BoxChild w106 = ((Gtk.Box.BoxChild) (w102 [w105]));
			w106.Position = 1;
			w106.Expand = false;
			// Container child hbox6.Gtk.Box+BoxChild
			Gtk.Label w107 = new Gtk.Label ();
			w107.LabelProp = "*";
			w107.Name = "label174";
			this.label174 = w107;
			w102.Add (w107);
			Gtk.Box.BoxChild w108 = ((Gtk.Box.BoxChild) (w102 [w107]));
			w108.Position = 2;
			w108.Expand = false;
			w108.Fill = false;
			// Container child hbox6.Gtk.Box+BoxChild
			Gtk.Label w109 = new Gtk.Label ();
			w109.LabelProp = "  Segundo Nombre:  ";
			w109.Name = "label11";
			this.label11 = w109;
			w102.Add (w109);
			Gtk.Box.BoxChild w110 = ((Gtk.Box.BoxChild) (w102 [w109]));
			w110.Position = 3;
			w110.Expand = false;
			w110.Fill = false;
			// Container child hbox6.Gtk.Box+BoxChild
			Gtk.Entry w111 = new Gtk.Entry ();
			w111.IsEditable = true;
			w111.WidthChars = 29;
			w111.MaxLength = 40;
			w111.InvisibleChar = '●';
			w111.CanFocus = true;
			w111.Name = "en_SdoNombre";
			this.en_SdoNombre = w111;
			w102.Add (w111);
			Gtk.Box.BoxChild w112 = ((Gtk.Box.BoxChild) (w102 [w111]));
			w112.Position = 4;
			w112.Expand = false;
			this.hbox6 = w102;
			w101.Add (w102);
			Gtk.Box.BoxChild w113 = ((Gtk.Box.BoxChild) (w101 [w102]));
			w113.Position = 0;
			w113.Expand = false;
			w113.Fill = false;
			// Container child vbox7.Gtk.Box+BoxChild
			Gtk.HBox w114 = new Gtk.HBox ();
			w114.Name = "hbox7";
			// Container child hbox7.Gtk.Box+BoxChild
			Gtk.Label w115 = new Gtk.Label ();
			w115.LabelProp = "Primer Apellido:  ";
			w115.Name = "label12";
			this.label12 = w115;
			w114.Add (w115);
			Gtk.Box.BoxChild w116 = ((Gtk.Box.BoxChild) (w114 [w115]));
			w116.Position = 0;
			w116.Expand = false;
			w116.Fill = false;
			// Container child hbox7.Gtk.Box+BoxChild
			Gtk.Entry w117 = new Gtk.Entry ();
			w117.IsEditable = true;
			w117.WidthChars = 29;
			w117.MaxLength = 40;
			w117.InvisibleChar = '●';
			w117.CanFocus = true;
			w117.Name = "en_PrApellido";
			this.en_PrApellido = w117;
			w114.Add (w117);
			Gtk.Box.BoxChild w118 = ((Gtk.Box.BoxChild) (w114 [w117]));
			w118.Position = 1;
			w118.Expand = false;
			// Container child hbox7.Gtk.Box+BoxChild
			Gtk.Label w119 = new Gtk.Label ();
			w119.LabelProp = "*";
			w119.Name = "label175";
			this.label175 = w119;
			w114.Add (w119);
			Gtk.Box.BoxChild w120 = ((Gtk.Box.BoxChild) (w114 [w119]));
			w120.Position = 2;
			w120.Expand = false;
			w120.Fill = false;
			// Container child hbox7.Gtk.Box+BoxChild
			Gtk.Label w121 = new Gtk.Label ();
			w121.LabelProp = "  Segundo Apellido:  ";
			w121.Name = "label13";
			this.label13 = w121;
			w114.Add (w121);
			Gtk.Box.BoxChild w122 = ((Gtk.Box.BoxChild) (w114 [w121]));
			w122.Position = 3;
			w122.Expand = false;
			w122.Fill = false;
			// Container child hbox7.Gtk.Box+BoxChild
			Gtk.Entry w123 = new Gtk.Entry ();
			w123.IsEditable = true;
			w123.WidthChars = 29;
			w123.MaxLength = 40;
			w123.InvisibleChar = '●';
			w123.CanFocus = true;
			w123.Name = "en_SdoApellido";
			this.en_SdoApellido = w123;
			w114.Add (w123);
			Gtk.Box.BoxChild w124 = ((Gtk.Box.BoxChild) (w114 [w123]));
			w124.Position = 4;
			w124.Expand = false;
			this.hbox7 = w114;
			w101.Add (w114);
			Gtk.Box.BoxChild w125 = ((Gtk.Box.BoxChild) (w101 [w114]));
			w125.Position = 1;
			w125.Expand = false;
			w125.Fill = false;
			this.vbox7 = w101;
			w100.Add (w101);
			this.GtkAlignment3 = w100;
			w99.Add (w100);
			Gtk.Label w128 = new Gtk.Label ();
			w128.LabelProp = "";
			w128.UseMarkup = true;
			w128.Events = ((Gdk.EventMask) (256));
			w128.Name = "GtkLabel4";
			this.GtkLabel4 = w128;
			w99.LabelWidget = w128;
			this.frame4 = w99;
			w69.Add (w99);
			Gtk.Box.BoxChild w129 = ((Gtk.Box.BoxChild) (w69 [w99]));
			w129.Position = 1;
			w129.Expand = false;
			w129.Fill = false;
			w129.Padding = ((uint) (6));
			this.vbox4 = w69;
			w68.Add (w69);
			this.GtkAlignment4 = w68;
			w67.Add (w68);
			Gtk.Label w132 = new Gtk.Label ();
			w132.LabelProp = "<b>Identificación:</b>";
			w132.UseMarkup = true;
			w132.Xpad = 14;
			w132.Events = ((Gdk.EventMask) (256));
			w132.Name = "GtkLabel1";
			this.GtkLabel1 = w132;
			w67.LabelWidget = w132;
			this.frame1 = w67;
			w66.Add (w67);
			Gtk.Box.BoxChild w133 = ((Gtk.Box.BoxChild) (w66 [w67]));
			w133.Position = 0;
			w133.Expand = false;
			w133.Fill = false;
			// Container child vbox3.Gtk.Box+BoxChild
			Gtk.HSeparator w134 = new Gtk.HSeparator ();
			w134.Name = "hseparator3";
			this.hseparator3 = w134;
			w66.Add (w134);
			Gtk.Box.BoxChild w135 = ((Gtk.Box.BoxChild) (w66 [w134]));
			w135.Position = 1;
			w135.Expand = false;
			w135.Fill = false;
			// Container child vbox3.Gtk.Box+BoxChild
			Gtk.Notebook w136 = new Gtk.Notebook ();
			w136.HeightRequest = 450;
			w136.CanFocus = true;
			w136.Name = "notebook1";
			// Container child notebook1.Gtk.Notebook+NotebookChild
			Gtk.ScrolledWindow w137 = new Gtk.ScrolledWindow ();
			w137.VscrollbarPolicy = ((Gtk.PolicyType) (1));
			w137.HscrollbarPolicy = ((Gtk.PolicyType) (1));
			w137.CanFocus = true;
			w137.Name = "scrolledwindow3";
			// Container child scrolledwindow3.Gtk.Container+ContainerChild
			Gtk.Viewport w138 = new Gtk.Viewport ();
			w138.ShadowType = ((Gtk.ShadowType) (0));
			w138.Name = "GtkViewport2";
			// Container child GtkViewport2.Gtk.Container+ContainerChild
			Gtk.VBox w139 = new Gtk.VBox ();
			w139.Name = "vbox5";
			// Container child vbox5.Gtk.Box+BoxChild
			Gtk.Alignment w140 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w140.LeftPadding = ((uint) (12));
			w140.Name = "alignment1";
			// Container child alignment1.Gtk.Container+ContainerChild
			Gtk.HBox w141 = new Gtk.HBox ();
			w141.Name = "hbox8";
			// Container child hbox8.Gtk.Box+BoxChild
			Gtk.Frame w142 = new Gtk.Frame ();
			w142.ShadowType = ((Gtk.ShadowType) (4));
			w142.LabelXalign = 0F;
			w142.Name = "frame2";
			// Container child frame2.Gtk.Container+ContainerChild
			Gtk.Alignment w143 = new Gtk.Alignment (0F, 0F, 0F, 1F);
			w143.LeftPadding = ((uint) (10));
			w143.RightPadding = ((uint) (10));
			w143.BottomPadding = ((uint) (5));
			w143.Name = "GtkAlignment1";
			// Container child GtkAlignment1.Gtk.Container+ContainerChild
			Gtk.HBox w144 = new Gtk.HBox ();
			w144.Name = "hbox9";
			// Container child hbox9.Gtk.Box+BoxChild
			Gtk.Label w145 = new Gtk.Label ();
			w145.LabelProp = "Sexo:   ";
			w145.Name = "label16";
			this.label16 = w145;
			w144.Add (w145);
			Gtk.Box.BoxChild w146 = ((Gtk.Box.BoxChild) (w144 [w145]));
			w146.Position = 0;
			w146.Expand = false;
			w146.Fill = false;
			// Container child hbox9.Gtk.Box+BoxChild
			Gtk.ComboBox w147 = Gtk.ComboBox.NewText ();
			w147.Active = 0;
			w147.Name = "comb_Sexo";
			this.comb_Sexo = w147;
			w144.Add (w147);
			Gtk.Box.BoxChild w148 = ((Gtk.Box.BoxChild) (w144 [w147]));
			w148.Position = 1;
			w148.Expand = false;
			w148.Fill = false;
			// Container child hbox9.Gtk.Box+BoxChild
			Gtk.Label w149 = new Gtk.Label ();
			w149.LabelProp = "*";
			w149.Name = "label176";
			this.label176 = w149;
			w144.Add (w149);
			Gtk.Box.BoxChild w150 = ((Gtk.Box.BoxChild) (w144 [w149]));
			w150.Position = 2;
			w150.Expand = false;
			w150.Fill = false;
			this.hbox9 = w144;
			w143.Add (w144);
			this.GtkAlignment1 = w143;
			w142.Add (w143);
			Gtk.Label w153 = new Gtk.Label ();
			w153.LabelProp = "";
			w153.UseMarkup = true;
			w153.Events = ((Gdk.EventMask) (256));
			w153.Name = "GtkLabel2";
			this.GtkLabel2 = w153;
			w142.LabelWidget = w153;
			this.frame2 = w142;
			w141.Add (w142);
			Gtk.Box.BoxChild w154 = ((Gtk.Box.BoxChild) (w141 [w142]));
			w154.Position = 0;
			w154.Expand = false;
			w154.Fill = false;
			// Container child hbox8.Gtk.Box+BoxChild
			Gtk.Alignment w155 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w155.LeftPadding = ((uint) (63));
			w155.Name = "alignment2";
			// Container child alignment2.Gtk.Container+ContainerChild
			Gtk.Frame w156 = new Gtk.Frame ();
			w156.ShadowType = ((Gtk.ShadowType) (4));
			w156.LabelXalign = 0F;
			w156.Name = "frame5";
			// Container child frame5.Gtk.Container+ContainerChild
			Gtk.Alignment w157 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w157.LeftPadding = ((uint) (10));
			w157.RightPadding = ((uint) (10));
			w157.BottomPadding = ((uint) (5));
			w157.Name = "GtkAlignment8";
			// Container child GtkAlignment8.Gtk.Container+ContainerChild
			Gtk.HBox w158 = new Gtk.HBox ();
			w158.Name = "hbox10";
			// Container child hbox10.Gtk.Box+BoxChild
			Gtk.Label w159 = new Gtk.Label ();
			w159.LabelProp = "Estado Civil:  ";
			w159.Name = "label17";
			this.label17 = w159;
			w158.Add (w159);
			Gtk.Box.BoxChild w160 = ((Gtk.Box.BoxChild) (w158 [w159]));
			w160.Position = 0;
			w160.Expand = false;
			w160.Fill = false;
			// Container child hbox10.Gtk.Box+BoxChild
			Gtk.ComboBox w161 = Gtk.ComboBox.NewText ();
			w161.Active = 0;
			w161.Name = "comb_EstCivil";
			this.comb_EstCivil = w161;
			w158.Add (w161);
			Gtk.Box.BoxChild w162 = ((Gtk.Box.BoxChild) (w158 [w161]));
			w162.Position = 1;
			w162.Expand = false;
			w162.Fill = false;
			// Container child hbox10.Gtk.Box+BoxChild
			Gtk.Label w163 = new Gtk.Label ();
			w163.LabelProp = "*";
			w163.Name = "label177";
			this.label177 = w163;
			w158.Add (w163);
			Gtk.Box.BoxChild w164 = ((Gtk.Box.BoxChild) (w158 [w163]));
			w164.Position = 2;
			w164.Expand = false;
			w164.Fill = false;
			this.hbox10 = w158;
			w157.Add (w158);
			this.GtkAlignment8 = w157;
			w156.Add (w157);
			Gtk.Label w167 = new Gtk.Label ();
			w167.LabelProp = "";
			w167.UseMarkup = true;
			w167.Events = ((Gdk.EventMask) (256));
			w167.Name = "GtkLabel5";
			this.GtkLabel5 = w167;
			w156.LabelWidget = w167;
			this.frame5 = w156;
			w155.Add (w156);
			this.alignment2 = w155;
			w141.Add (w155);
			Gtk.Box.BoxChild w169 = ((Gtk.Box.BoxChild) (w141 [w155]));
			w169.Position = 1;
			w169.Expand = false;
			w169.Fill = false;
			this.hbox8 = w141;
			w140.Add (w141);
			this.alignment1 = w140;
			w139.Add (w140);
			Gtk.Box.BoxChild w171 = ((Gtk.Box.BoxChild) (w139 [w140]));
			w171.Position = 0;
			w171.Expand = false;
			w171.Fill = false;
			// Container child vbox5.Gtk.Box+BoxChild
			Gtk.Alignment w172 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w172.LeftPadding = ((uint) (12));
			w172.Name = "alignment3";
			// Container child alignment3.Gtk.Container+ContainerChild
			Gtk.HBox w173 = new Gtk.HBox ();
			w173.Name = "hbox11";
			// Container child hbox11.Gtk.Box+BoxChild
			Gtk.Frame w174 = new Gtk.Frame ();
			w174.ShadowType = ((Gtk.ShadowType) (4));
			w174.LabelXalign = 0F;
			w174.Name = "frame6";
			// Container child frame6.Gtk.Container+ContainerChild
			Gtk.Alignment w175 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w175.LeftPadding = ((uint) (10));
			w175.RightPadding = ((uint) (10));
			w175.BottomPadding = ((uint) (5));
			w175.Name = "GtkAlignment5";
			// Container child GtkAlignment5.Gtk.Container+ContainerChild
			Gtk.HBox w176 = new Gtk.HBox ();
			w176.Name = "hbox12";
			// Container child hbox12.Gtk.Box+BoxChild
			Gtk.Label w177 = new Gtk.Label ();
			w177.LabelProp = "Fecha de Nacimiento:  ";
			w177.Name = "label18";
			this.label18 = w177;
			w176.Add (w177);
			Gtk.Box.BoxChild w178 = ((Gtk.Box.BoxChild) (w176 [w177]));
			w178.Position = 0;
			w178.Expand = false;
			w178.Fill = false;
			// Container child hbox12.Gtk.Box+BoxChild
			Gtk.SpinButton w179 = new Gtk.SpinButton (1, 31, 1);
			w179.Adjustment.PageIncrement = 10;
			w179.ClimbRate = 1;
			w179.Numeric = true;
			w179.Value = 1;
			w179.CanFocus = true;
			w179.Name = "spin_DiaNac";
			this.spin_DiaNac = w179;
			w176.Add (w179);
			Gtk.Box.BoxChild w180 = ((Gtk.Box.BoxChild) (w176 [w179]));
			w180.Position = 1;
			w180.Expand = false;
			w180.Fill = false;
			// Container child hbox12.Gtk.Box+BoxChild
			Gtk.ComboBox w181 = Gtk.ComboBox.NewText ();
			w181.Active = 0;
			w181.Name = "co_MesNac";
			this.co_MesNac = w181;
			w176.Add (w181);
			Gtk.Box.BoxChild w182 = ((Gtk.Box.BoxChild) (w176 [w181]));
			w182.Position = 2;
			w182.Expand = false;
			w182.Fill = false;
			// Container child hbox12.Gtk.Box+BoxChild
			Gtk.SpinButton w183 = new Gtk.SpinButton (1930, 2020, 1);
			w183.Adjustment.PageIncrement = 10;
			w183.ClimbRate = 1;
			w183.Numeric = true;
			w183.Value = 1980;
			w183.CanFocus = true;
			w183.Name = "spin_AnioNac";
			this.spin_AnioNac = w183;
			w176.Add (w183);
			Gtk.Box.BoxChild w184 = ((Gtk.Box.BoxChild) (w176 [w183]));
			w184.Position = 3;
			w184.Expand = false;
			w184.Fill = false;
			// Container child hbox12.Gtk.Box+BoxChild
			Gtk.Label w185 = new Gtk.Label ();
			w185.LabelProp = "*";
			w185.Name = "label178";
			this.label178 = w185;
			w176.Add (w185);
			Gtk.Box.BoxChild w186 = ((Gtk.Box.BoxChild) (w176 [w185]));
			w186.Position = 4;
			w186.Expand = false;
			w186.Fill = false;
			this.hbox12 = w176;
			w175.Add (w176);
			this.GtkAlignment5 = w175;
			w174.Add (w175);
			Gtk.Label w189 = new Gtk.Label ();
			w189.LabelProp = "";
			w189.UseMarkup = true;
			w189.Events = ((Gdk.EventMask) (256));
			w189.Name = "GtkLabel6";
			this.GtkLabel6 = w189;
			w174.LabelWidget = w189;
			this.frame6 = w174;
			w173.Add (w174);
			Gtk.Box.BoxChild w190 = ((Gtk.Box.BoxChild) (w173 [w174]));
			w190.Position = 0;
			w190.Expand = false;
			w190.Fill = false;
			this.hbox11 = w173;
			w172.Add (w173);
			this.alignment3 = w172;
			w139.Add (w172);
			Gtk.Box.BoxChild w192 = ((Gtk.Box.BoxChild) (w139 [w172]));
			w192.Position = 1;
			w192.Expand = false;
			w192.Fill = false;
			// Container child vbox5.Gtk.Box+BoxChild
			Gtk.Alignment w193 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w193.LeftPadding = ((uint) (10));
			w193.RightPadding = ((uint) (10));
			w193.Name = "alignment4";
			// Container child alignment4.Gtk.Container+ContainerChild
			Gtk.Frame w194 = new Gtk.Frame ();
			w194.ShadowType = ((Gtk.ShadowType) (4));
			w194.LabelXalign = 0F;
			w194.Name = "frame8";
			// Container child frame8.Gtk.Container+ContainerChild
			Gtk.Alignment w195 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w195.LeftPadding = ((uint) (10));
			w195.RightPadding = ((uint) (10));
			w195.BottomPadding = ((uint) (5));
			w195.Name = "GtkAlignment6";
			// Container child GtkAlignment6.Gtk.Container+ContainerChild
			Gtk.HBox w196 = new Gtk.HBox ();
			w196.Name = "hbox14";
			// Container child hbox14.Gtk.Box+BoxChild
			Gtk.Label w197 = new Gtk.Label ();
			w197.LabelProp = "En   Pais: ";
			w197.Name = "label19";
			this.label19 = w197;
			w196.Add (w197);
			Gtk.Box.BoxChild w198 = ((Gtk.Box.BoxChild) (w196 [w197]));
			w198.Position = 0;
			w198.Expand = false;
			w198.Fill = false;
			// Container child hbox14.Gtk.Box+BoxChild
			Gtk.ComboBox w199 = Gtk.ComboBox.NewText ();
			w199.AppendText ("            ");
			w199.Active = 0;
			w199.Name = "co_PaisNac";
			this.co_PaisNac = w199;
			w196.Add (w199);
			Gtk.Box.BoxChild w200 = ((Gtk.Box.BoxChild) (w196 [w199]));
			w200.Position = 1;
			w200.Expand = false;
			w200.Fill = false;
			// Container child hbox14.Gtk.Box+BoxChild
			Gtk.Label w201 = new Gtk.Label ();
			w201.LabelProp = "Dpto: ";
			w201.Name = "label20";
			this.label20 = w201;
			w196.Add (w201);
			Gtk.Box.BoxChild w202 = ((Gtk.Box.BoxChild) (w196 [w201]));
			w202.Position = 2;
			w202.Expand = false;
			w202.Fill = false;
			w202.Padding = ((uint) (10));
			// Container child hbox14.Gtk.Box+BoxChild
			Gtk.ComboBox w203 = Gtk.ComboBox.NewText ();
			w203.AppendText ("                    ");
			w203.Name = "co_DptoNac";
			this.co_DptoNac = w203;
			w196.Add (w203);
			Gtk.Box.BoxChild w204 = ((Gtk.Box.BoxChild) (w196 [w203]));
			w204.Position = 3;
			w204.Expand = false;
			w204.Fill = false;
			// Container child hbox14.Gtk.Box+BoxChild
			Gtk.Label w205 = new Gtk.Label ();
			w205.LabelProp = "Ciudad: ";
			w205.Name = "label21";
			this.label21 = w205;
			w196.Add (w205);
			Gtk.Box.BoxChild w206 = ((Gtk.Box.BoxChild) (w196 [w205]));
			w206.Position = 4;
			w206.Expand = false;
			w206.Fill = false;
			w206.Padding = ((uint) (10));
			// Container child hbox14.Gtk.Box+BoxChild
			Gtk.ComboBox w207 = Gtk.ComboBox.NewText ();
			w207.AppendText ("                                        ");
			w207.Name = "co_CiuNac";
			this.co_CiuNac = w207;
			w196.Add (w207);
			Gtk.Box.BoxChild w208 = ((Gtk.Box.BoxChild) (w196 [w207]));
			w208.Position = 5;
			w208.Expand = false;
			w208.Fill = false;
			// Container child hbox14.Gtk.Box+BoxChild
			Gtk.Label w209 = new Gtk.Label ();
			w209.LabelProp = "*";
			w209.Name = "label179";
			this.label179 = w209;
			w196.Add (w209);
			Gtk.Box.BoxChild w210 = ((Gtk.Box.BoxChild) (w196 [w209]));
			w210.Position = 6;
			w210.Expand = false;
			w210.Fill = false;
			this.hbox14 = w196;
			w195.Add (w196);
			this.GtkAlignment6 = w195;
			w194.Add (w195);
			Gtk.Label w213 = new Gtk.Label ();
			w213.LabelProp = "";
			w213.UseMarkup = true;
			w213.Events = ((Gdk.EventMask) (256));
			w213.Name = "GtkLabel7";
			this.GtkLabel7 = w213;
			w194.LabelWidget = w213;
			this.frame8 = w194;
			w193.Add (w194);
			this.alignment4 = w193;
			w139.Add (w193);
			Gtk.Box.BoxChild w215 = ((Gtk.Box.BoxChild) (w139 [w193]));
			w215.Position = 2;
			w215.Expand = false;
			w215.Fill = false;
			// Container child vbox5.Gtk.Box+BoxChild
			Gtk.Alignment w216 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w216.LeftPadding = ((uint) (10));
			w216.RightPadding = ((uint) (10));
			w216.Name = "alignment25";
			// Container child alignment25.Gtk.Container+ContainerChild
			Gtk.Frame w217 = new Gtk.Frame ();
			w217.ShadowType = ((Gtk.ShadowType) (4));
			w217.LabelXalign = 0F;
			w217.Name = "frame24";
			// Container child frame24.Gtk.Container+ContainerChild
			Gtk.Alignment w218 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w218.LeftPadding = ((uint) (12));
			w218.BottomPadding = ((uint) (1));
			w218.Name = "GtkAlignment22";
			// Container child GtkAlignment22.Gtk.Container+ContainerChild
			Gtk.HBox w219 = new Gtk.HBox ();
			w219.Name = "hbox36";
			// Container child hbox36.Gtk.Box+BoxChild
			Gtk.Label w220 = new Gtk.Label ();
			w220.LabelProp = "Otra Ciudad Nacimiento:";
			w220.Name = "label64";
			this.label64 = w220;
			w219.Add (w220);
			Gtk.Box.BoxChild w221 = ((Gtk.Box.BoxChild) (w219 [w220]));
			w221.Position = 0;
			w221.Expand = false;
			w221.Fill = false;
			// Container child hbox36.Gtk.Box+BoxChild
			Gtk.Entry w222 = new Gtk.Entry ();
			w222.IsEditable = true;
			w222.WidthChars = 40;
			w222.MaxLength = 40;
			w222.InvisibleChar = '●';
			w222.CanFocus = true;
			w222.Name = "en_OtraCiuNac";
			this.en_OtraCiuNac = w222;
			w219.Add (w222);
			Gtk.Box.BoxChild w223 = ((Gtk.Box.BoxChild) (w219 [w222]));
			w223.Position = 1;
			w223.Expand = false;
			this.hbox36 = w219;
			w218.Add (w219);
			this.GtkAlignment22 = w218;
			w217.Add (w218);
			Gtk.Label w226 = new Gtk.Label ();
			w226.LabelProp = "";
			w226.UseMarkup = true;
			w226.Events = ((Gdk.EventMask) (256));
			w226.Name = "GtkLabel29";
			this.GtkLabel29 = w226;
			w217.LabelWidget = w226;
			this.frame24 = w217;
			w216.Add (w217);
			this.alignment25 = w216;
			w139.Add (w216);
			Gtk.Box.BoxChild w228 = ((Gtk.Box.BoxChild) (w139 [w216]));
			w228.Position = 3;
			w228.Expand = false;
			w228.Fill = false;
			// Container child vbox5.Gtk.Box+BoxChild
			Gtk.Alignment w229 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w229.LeftPadding = ((uint) (10));
			w229.RightPadding = ((uint) (10));
			w229.BottomPadding = ((uint) (5));
			w229.Name = "alignment5";
			// Container child alignment5.Gtk.Container+ContainerChild
			Gtk.Frame w230 = new Gtk.Frame ();
			w230.ShadowType = ((Gtk.ShadowType) (4));
			w230.LabelXalign = 0F;
			w230.Name = "frame9";
			// Container child frame9.Gtk.Container+ContainerChild
			Gtk.Alignment w231 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w231.LeftPadding = ((uint) (10));
			w231.RightPadding = ((uint) (10));
			w231.BottomPadding = ((uint) (5));
			w231.Name = "alignment6";
			// Container child alignment6.Gtk.Container+ContainerChild
			Gtk.VBox w232 = new Gtk.VBox ();
			w232.Name = "vbox8";
			// Container child vbox8.Gtk.Box+BoxChild
			Gtk.HBox w233 = new Gtk.HBox ();
			w233.BorderWidth = ((uint) (2));
			w233.Name = "hbox13";
			// Container child hbox13.Gtk.Box+BoxChild
			Gtk.Label w234 = new Gtk.Label ();
			w234.LabelProp = "Direccion: ";
			w234.Name = "label22";
			this.label22 = w234;
			w233.Add (w234);
			Gtk.Box.BoxChild w235 = ((Gtk.Box.BoxChild) (w233 [w234]));
			w235.Position = 0;
			w235.Expand = false;
			w235.Fill = false;
			// Container child hbox13.Gtk.Box+BoxChild
			Gtk.Entry w236 = new Gtk.Entry ();
			w236.IsEditable = true;
			w236.WidthChars = 40;
			w236.MaxLength = 45;
			w236.InvisibleChar = '●';
			w236.CanFocus = true;
			w236.Name = "en_DirecRes";
			this.en_DirecRes = w236;
			w233.Add (w236);
			Gtk.Box.BoxChild w237 = ((Gtk.Box.BoxChild) (w233 [w236]));
			w237.Position = 1;
			w237.Expand = false;
			// Container child hbox13.Gtk.Box+BoxChild
			Gtk.Label w238 = new Gtk.Label ();
			w238.LabelProp = "*";
			w238.Name = "label180";
			this.label180 = w238;
			w233.Add (w238);
			Gtk.Box.BoxChild w239 = ((Gtk.Box.BoxChild) (w233 [w238]));
			w239.Position = 2;
			w239.Expand = false;
			w239.Fill = false;
			// Container child hbox13.Gtk.Box+BoxChild
			Gtk.Entry w240 = new Gtk.Entry ();
			w240.IsEditable = true;
			w240.WidthChars = 20;
			w240.MaxLength = 30;
			w240.InvisibleChar = '●';
			w240.CanFocus = true;
			w240.Name = "en_Barrio";
			this.en_Barrio = w240;
			w233.Add (w240);
			Gtk.Box.BoxChild w241 = ((Gtk.Box.BoxChild) (w233 [w240]));
			w241.PackType = ((Gtk.PackType) (1));
			w241.Position = 3;
			// Container child hbox13.Gtk.Box+BoxChild
			Gtk.Label w242 = new Gtk.Label ();
			w242.LabelProp = "Barrio:";
			w242.Xpad = 19;
			w242.Name = "la_Barrio";
			this.la_Barrio = w242;
			w233.Add (w242);
			Gtk.Box.BoxChild w243 = ((Gtk.Box.BoxChild) (w233 [w242]));
			w243.PackType = ((Gtk.PackType) (1));
			w243.Position = 4;
			w243.Expand = false;
			w243.Fill = false;
			this.hbox13 = w233;
			w232.Add (w233);
			Gtk.Box.BoxChild w244 = ((Gtk.Box.BoxChild) (w232 [w233]));
			w244.Position = 0;
			w244.Expand = false;
			w244.Fill = false;
			// Container child vbox8.Gtk.Box+BoxChild
			Gtk.HBox w245 = new Gtk.HBox ();
			w245.BorderWidth = ((uint) (2));
			w245.Name = "hbox15";
			// Container child hbox15.Gtk.Box+BoxChild
			Gtk.Label w246 = new Gtk.Label ();
			w246.LabelProp = "Residenciado en   Pais: ";
			w246.Name = "label23";
			this.label23 = w246;
			w245.Add (w246);
			Gtk.Box.BoxChild w247 = ((Gtk.Box.BoxChild) (w245 [w246]));
			w247.Position = 0;
			w247.Expand = false;
			w247.Fill = false;
			// Container child hbox15.Gtk.Box+BoxChild
			Gtk.ComboBox w248 = Gtk.ComboBox.NewText ();
			w248.AppendText ("            ");
			w248.Name = "co_PaisRes";
			this.co_PaisRes = w248;
			w245.Add (w248);
			Gtk.Box.BoxChild w249 = ((Gtk.Box.BoxChild) (w245 [w248]));
			w249.Position = 1;
			w249.Expand = false;
			w249.Fill = false;
			// Container child hbox15.Gtk.Box+BoxChild
			Gtk.Label w250 = new Gtk.Label ();
			w250.LabelProp = "Dpto.:";
			w250.Name = "label24";
			this.label24 = w250;
			w245.Add (w250);
			Gtk.Box.BoxChild w251 = ((Gtk.Box.BoxChild) (w245 [w250]));
			w251.Position = 2;
			w251.Expand = false;
			w251.Fill = false;
			w251.Padding = ((uint) (10));
			// Container child hbox15.Gtk.Box+BoxChild
			Gtk.ComboBox w252 = Gtk.ComboBox.NewText ();
			w252.AppendText ("                    ");
			w252.Name = "co_DptoRes";
			this.co_DptoRes = w252;
			w245.Add (w252);
			Gtk.Box.BoxChild w253 = ((Gtk.Box.BoxChild) (w245 [w252]));
			w253.Position = 3;
			w253.Expand = false;
			w253.Fill = false;
			// Container child hbox15.Gtk.Box+BoxChild
			Gtk.Label w254 = new Gtk.Label ();
			w254.LabelProp = "Ciudad:";
			w254.Name = "label25";
			this.label25 = w254;
			w245.Add (w254);
			Gtk.Box.BoxChild w255 = ((Gtk.Box.BoxChild) (w245 [w254]));
			w255.Position = 4;
			w255.Expand = false;
			w255.Fill = false;
			w255.Padding = ((uint) (10));
			// Container child hbox15.Gtk.Box+BoxChild
			Gtk.ComboBox w256 = Gtk.ComboBox.NewText ();
			w256.AppendText ("                                        ");
			w256.Active = 0;
			w256.Name = "co_CiuRes";
			this.co_CiuRes = w256;
			w245.Add (w256);
			Gtk.Box.BoxChild w257 = ((Gtk.Box.BoxChild) (w245 [w256]));
			w257.Position = 5;
			w257.Expand = false;
			w257.Fill = false;
			// Container child hbox15.Gtk.Box+BoxChild
			Gtk.Label w258 = new Gtk.Label ();
			w258.LabelProp = "*";
			w258.Name = "label181";
			this.label181 = w258;
			w245.Add (w258);
			Gtk.Box.BoxChild w259 = ((Gtk.Box.BoxChild) (w245 [w258]));
			w259.Position = 6;
			w259.Expand = false;
			w259.Fill = false;
			this.hbox15 = w245;
			w232.Add (w245);
			Gtk.Box.BoxChild w260 = ((Gtk.Box.BoxChild) (w232 [w245]));
			w260.Position = 1;
			w260.Expand = false;
			w260.Fill = false;
			// Container child vbox8.Gtk.Box+BoxChild
			Gtk.HBox w261 = new Gtk.HBox ();
			w261.Name = "hbox37";
			// Container child hbox37.Gtk.Box+BoxChild
			Gtk.Label w262 = new Gtk.Label ();
			w262.LabelProp = "Otra Ciudad Residencia:";
			w262.Name = "label26";
			this.label26 = w262;
			w261.Add (w262);
			Gtk.Box.BoxChild w263 = ((Gtk.Box.BoxChild) (w261 [w262]));
			w263.Position = 0;
			w263.Expand = false;
			w263.Fill = false;
			// Container child hbox37.Gtk.Box+BoxChild
			Gtk.Entry w264 = new Gtk.Entry ();
			w264.IsEditable = true;
			w264.WidthChars = 40;
			w264.MaxLength = 40;
			w264.InvisibleChar = '●';
			w264.CanFocus = true;
			w264.Name = "en_OtraCiuRes";
			this.en_OtraCiuRes = w264;
			w261.Add (w264);
			Gtk.Box.BoxChild w265 = ((Gtk.Box.BoxChild) (w261 [w264]));
			w265.Position = 1;
			w265.Expand = false;
			w265.Padding = ((uint) (1));
			this.hbox37 = w261;
			w232.Add (w261);
			Gtk.Box.BoxChild w266 = ((Gtk.Box.BoxChild) (w232 [w261]));
			w266.Position = 2;
			w266.Expand = false;
			w266.Fill = false;
			// Container child vbox8.Gtk.Box+BoxChild
			Gtk.HBox w267 = new Gtk.HBox ();
			w267.BorderWidth = ((uint) (2));
			w267.Name = "hbox16";
			// Container child hbox16.Gtk.Box+BoxChild
			Gtk.Label w268 = new Gtk.Label ();
			w268.LabelProp = "Telefono Residencia:  ";
			w268.Name = "label27";
			this.label27 = w268;
			w267.Add (w268);
			Gtk.Box.BoxChild w269 = ((Gtk.Box.BoxChild) (w267 [w268]));
			w269.Position = 0;
			w269.Expand = false;
			w269.Fill = false;
			// Container child hbox16.Gtk.Box+BoxChild
			Gtk.Entry w270 = new Gtk.Entry ();
			w270.IsEditable = true;
			w270.WidthChars = 10;
			w270.MaxLength = 12;
			w270.InvisibleChar = '●';
			w270.CanFocus = true;
			w270.Name = "en_TelRes";
			this.en_TelRes = w270;
			w267.Add (w270);
			Gtk.Box.BoxChild w271 = ((Gtk.Box.BoxChild) (w267 [w270]));
			w271.Position = 1;
			w271.Expand = false;
			// Container child hbox16.Gtk.Box+BoxChild
			Gtk.Label w272 = new Gtk.Label ();
			w272.LabelProp = "*";
			w272.Name = "label185";
			this.label185 = w272;
			w267.Add (w272);
			Gtk.Box.BoxChild w273 = ((Gtk.Box.BoxChild) (w267 [w272]));
			w273.Position = 2;
			w273.Expand = false;
			w273.Fill = false;
			// Container child hbox16.Gtk.Box+BoxChild
			Gtk.Label w274 = new Gtk.Label ();
			w274.LabelProp = "Teléfono Oficina:";
			w274.Name = "label28";
			this.label28 = w274;
			w267.Add (w274);
			Gtk.Box.BoxChild w275 = ((Gtk.Box.BoxChild) (w267 [w274]));
			w275.Position = 3;
			w275.Expand = false;
			w275.Fill = false;
			w275.Padding = ((uint) (10));
			// Container child hbox16.Gtk.Box+BoxChild
			Gtk.Entry w276 = new Gtk.Entry ();
			w276.IsEditable = true;
			w276.WidthChars = 10;
			w276.MaxLength = 12;
			w276.InvisibleChar = '●';
			w276.CanFocus = true;
			w276.Name = "en_TelOfi";
			this.en_TelOfi = w276;
			w267.Add (w276);
			Gtk.Box.BoxChild w277 = ((Gtk.Box.BoxChild) (w267 [w276]));
			w277.Position = 4;
			w277.Expand = false;
			// Container child hbox16.Gtk.Box+BoxChild
			Gtk.Label w278 = new Gtk.Label ();
			w278.LabelProp = "Teléfono Celular:";
			w278.Name = "label29";
			this.label29 = w278;
			w267.Add (w278);
			Gtk.Box.BoxChild w279 = ((Gtk.Box.BoxChild) (w267 [w278]));
			w279.Position = 5;
			w279.Expand = false;
			w279.Fill = false;
			w279.Padding = ((uint) (10));
			// Container child hbox16.Gtk.Box+BoxChild
			Gtk.Entry w280 = new Gtk.Entry ();
			w280.IsEditable = true;
			w280.WidthChars = 12;
			w280.MaxLength = 12;
			w280.InvisibleChar = '●';
			w280.CanFocus = true;
			w280.Name = "en_TelCelu";
			this.en_TelCelu = w280;
			w267.Add (w280);
			Gtk.Box.BoxChild w281 = ((Gtk.Box.BoxChild) (w267 [w280]));
			w281.Position = 6;
			w281.Expand = false;
			this.hbox16 = w267;
			w232.Add (w267);
			Gtk.Box.BoxChild w282 = ((Gtk.Box.BoxChild) (w232 [w267]));
			w282.Position = 3;
			w282.Expand = false;
			w282.Fill = false;
			// Container child vbox8.Gtk.Box+BoxChild
			Gtk.HBox w283 = new Gtk.HBox ();
			w283.BorderWidth = ((uint) (2));
			w283.Name = "hbox17";
			// Container child hbox17.Gtk.Box+BoxChild
			Gtk.Label w284 = new Gtk.Label ();
			w284.LabelProp = "Correo Electrónico:  ";
			w284.Name = "label30";
			this.label30 = w284;
			w283.Add (w284);
			Gtk.Box.BoxChild w285 = ((Gtk.Box.BoxChild) (w283 [w284]));
			w285.Position = 0;
			w285.Expand = false;
			w285.Fill = false;
			// Container child hbox17.Gtk.Box+BoxChild
			Gtk.Entry w286 = new Gtk.Entry ();
			w286.IsEditable = true;
			w286.WidthChars = 30;
			w286.MaxLength = 30;
			w286.InvisibleChar = '●';
			w286.CanFocus = true;
			w286.Name = "en_eMail";
			this.en_eMail = w286;
			w283.Add (w286);
			Gtk.Box.BoxChild w287 = ((Gtk.Box.BoxChild) (w283 [w286]));
			w287.Position = 1;
			w287.Expand = false;
			this.hbox17 = w283;
			w232.Add (w283);
			Gtk.Box.BoxChild w288 = ((Gtk.Box.BoxChild) (w232 [w283]));
			w288.Position = 4;
			w288.Expand = false;
			w288.Fill = false;
			this.vbox8 = w232;
			w231.Add (w232);
			this.alignment6 = w231;
			w230.Add (w231);
			Gtk.Label w291 = new Gtk.Label ();
			w291.LabelProp = "<b>  Ubicación:  </b> ";
			w291.UseMarkup = true;
			w291.Events = ((Gdk.EventMask) (256));
			w291.Name = "GtkLabel8";
			this.GtkLabel8 = w291;
			w230.LabelWidget = w291;
			this.frame9 = w230;
			w229.Add (w230);
			this.alignment5 = w229;
			w139.Add (w229);
			Gtk.Box.BoxChild w293 = ((Gtk.Box.BoxChild) (w139 [w229]));
			w293.Position = 4;
			w293.Expand = false;
			w293.Fill = false;
			this.vbox5 = w139;
			w138.Add (w139);
			w137.Add (w138);
			this.scrolledwindow3 = w137;
			w136.Add (w137);
			Gtk.Notebook.NotebookChild w296 = ((Gtk.Notebook.NotebookChild) (w136 [w137]));
			w296.TabExpand = false;
			// Notebook tab
			Gtk.Label w297 = new Gtk.Label ();
			w297.LabelProp = "Datos\nPersonales";
			w297.Justify = ((Gtk.Justification) (2));
			w297.Name = "la_DaPersonales";
			this.la_DaPersonales = w297;
			w136.SetTabLabel (w137, w297);
			// Container child notebook1.Gtk.Notebook+NotebookChild
			Gtk.VBox w298 = new Gtk.VBox ();
			w298.Name = "vbox37";
			// Container child vbox37.Gtk.Box+BoxChild
			Gtk.Alignment w299 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w299.LeftPadding = ((uint) (10));
			w299.TopPadding = ((uint) (5));
			w299.RightPadding = ((uint) (10));
			w299.BottomPadding = ((uint) (7));
			w299.Name = "alignment58";
			// Container child alignment58.Gtk.Container+ContainerChild
			Gtk.Frame w300 = new Gtk.Frame ();
			w300.ShadowType = ((Gtk.ShadowType) (4));
			w300.LabelXalign = 0F;
			w300.BorderWidth = ((uint) (3));
			w300.Name = "frame40";
			// Container child frame40.Gtk.Container+ContainerChild
			Gtk.Alignment w301 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w301.LeftPadding = ((uint) (12));
			w301.BottomPadding = ((uint) (12));
			w301.Name = "GtkAlignment41";
			// Container child GtkAlignment41.Gtk.Container+ContainerChild
			Gtk.VBox w302 = new Gtk.VBox ();
			w302.Name = "vbox38";
			// Container child vbox38.Gtk.Box+BoxChild
			Gtk.HBox w303 = new Gtk.HBox ();
			w303.Name = "hbox18";
			// Container child hbox18.Gtk.Box+BoxChild
			Gtk.Alignment w304 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w304.LeftPadding = ((uint) (10));
			w304.RightPadding = ((uint) (10));
			w304.BottomPadding = ((uint) (5));
			w304.Name = "alignment8";
			// Container child alignment8.Gtk.Container+ContainerChild
			Gtk.Frame w305 = new Gtk.Frame ();
			w305.ShadowType = ((Gtk.ShadowType) (4));
			w305.LabelXalign = 0F;
			w305.Name = "frame11";
			// Container child frame11.Gtk.Container+ContainerChild
			Gtk.Alignment w306 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w306.LeftPadding = ((uint) (10));
			w306.RightPadding = ((uint) (10));
			w306.BottomPadding = ((uint) (5));
			w306.Name = "GtkAlignment29";
			// Container child GtkAlignment29.Gtk.Container+ContainerChild
			Gtk.HBox w307 = new Gtk.HBox ();
			w307.Name = "hbox19";
			// Container child hbox19.Gtk.Box+BoxChild
			Gtk.Label w308 = new Gtk.Label ();
			w308.LabelProp = "Carro propio:  ";
			w308.Name = "label31";
			this.label31 = w308;
			w307.Add (w308);
			Gtk.Box.BoxChild w309 = ((Gtk.Box.BoxChild) (w307 [w308]));
			w309.Position = 0;
			w309.Expand = false;
			w309.Fill = false;
			// Container child hbox19.Gtk.Box+BoxChild
			Gtk.RadioButton w310 = new Gtk.RadioButton ("Si");
			w310.Group = new GLib.SList (System.IntPtr.Zero);
			w310.Active = true;
			w310.DrawIndicator = true;
			w310.CanFocus = true;
			w310.Name = "rad_CarroPrSi";
			this.rad_CarroPrSi = w310;
			w307.Add (w310);
			Gtk.Box.BoxChild w311 = ((Gtk.Box.BoxChild) (w307 [w310]));
			w311.Position = 1;
			w311.Expand = false;
			w311.Padding = ((uint) (3));
			// Container child hbox19.Gtk.Box+BoxChild
			Gtk.RadioButton w312 = new Gtk.RadioButton ("No");
			w312.Group = w310.Group;
			w312.DrawIndicator = true;
			w312.CanFocus = true;
			w312.Name = "rad_CarroPrNo";
			this.rad_CarroPrNo = w312;
			w307.Add (w312);
			Gtk.Box.BoxChild w313 = ((Gtk.Box.BoxChild) (w307 [w312]));
			w313.Position = 2;
			w313.Expand = false;
			w313.Padding = ((uint) (5));
			// Container child hbox19.Gtk.Box+BoxChild
			Gtk.Label w314 = new Gtk.Label ();
			w314.LabelProp = "*";
			w314.Name = "label37";
			this.label37 = w314;
			w307.Add (w314);
			Gtk.Box.BoxChild w315 = ((Gtk.Box.BoxChild) (w307 [w314]));
			w315.PackType = ((Gtk.PackType) (1));
			w315.Position = 3;
			w315.Expand = false;
			w315.Fill = false;
			this.hbox19 = w307;
			w306.Add (w307);
			this.GtkAlignment29 = w306;
			w305.Add (w306);
			Gtk.Label w318 = new Gtk.Label ();
			w318.LabelProp = "";
			w318.UseMarkup = true;
			w318.Events = ((Gdk.EventMask) (256));
			w318.Name = "GtkLabel35";
			this.GtkLabel35 = w318;
			w305.LabelWidget = w318;
			this.frame11 = w305;
			w304.Add (w305);
			this.alignment8 = w304;
			w303.Add (w304);
			Gtk.Box.BoxChild w320 = ((Gtk.Box.BoxChild) (w303 [w304]));
			w320.Position = 0;
			w320.Expand = false;
			w320.Fill = false;
			// Container child hbox18.Gtk.Box+BoxChild
			Gtk.Alignment w321 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w321.LeftPadding = ((uint) (10));
			w321.RightPadding = ((uint) (10));
			w321.BottomPadding = ((uint) (5));
			w321.Name = "alignment56";
			// Container child alignment56.Gtk.Container+ContainerChild
			Gtk.Frame w322 = new Gtk.Frame ();
			w322.ShadowType = ((Gtk.ShadowType) (4));
			w322.LabelXalign = 0F;
			w322.Name = "frame38";
			// Container child frame38.Gtk.Container+ContainerChild
			Gtk.Alignment w323 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w323.LeftPadding = ((uint) (10));
			w323.RightPadding = ((uint) (10));
			w323.BottomPadding = ((uint) (5));
			w323.Name = "GtkAlignment39";
			// Container child GtkAlignment39.Gtk.Container+ContainerChild
			Gtk.HBox w324 = new Gtk.HBox ();
			w324.Name = "hbox74";
			// Container child hbox74.Gtk.Box+BoxChild
			Gtk.Label w325 = new Gtk.Label ();
			w325.LabelProp = "Moto propia:  ";
			w325.Name = "label167";
			this.label167 = w325;
			w324.Add (w325);
			Gtk.Box.BoxChild w326 = ((Gtk.Box.BoxChild) (w324 [w325]));
			w326.Position = 0;
			w326.Expand = false;
			w326.Fill = false;
			// Container child hbox74.Gtk.Box+BoxChild
			Gtk.RadioButton w327 = new Gtk.RadioButton ("Si");
			w327.Group = new GLib.SList (System.IntPtr.Zero);
			w327.Active = true;
			w327.DrawIndicator = true;
			w327.CanFocus = true;
			w327.Name = "rad_MotoPrSi";
			this.rad_MotoPrSi = w327;
			w324.Add (w327);
			Gtk.Box.BoxChild w328 = ((Gtk.Box.BoxChild) (w324 [w327]));
			w328.Position = 1;
			w328.Expand = false;
			w328.Padding = ((uint) (3));
			// Container child hbox74.Gtk.Box+BoxChild
			Gtk.RadioButton w329 = new Gtk.RadioButton ("No");
			w329.Group = w327.Group;
			w329.DrawIndicator = true;
			w329.CanFocus = true;
			w329.Name = "rad_MotoPrNo";
			this.rad_MotoPrNo = w329;
			w324.Add (w329);
			Gtk.Box.BoxChild w330 = ((Gtk.Box.BoxChild) (w324 [w329]));
			w330.Position = 2;
			w330.Expand = false;
			w330.Padding = ((uint) (5));
			// Container child hbox74.Gtk.Box+BoxChild
			Gtk.Label w331 = new Gtk.Label ();
			w331.LabelProp = "*";
			w331.Name = "label40";
			this.label40 = w331;
			w324.Add (w331);
			Gtk.Box.BoxChild w332 = ((Gtk.Box.BoxChild) (w324 [w331]));
			w332.PackType = ((Gtk.PackType) (1));
			w332.Position = 3;
			w332.Expand = false;
			w332.Fill = false;
			this.hbox74 = w324;
			w323.Add (w324);
			this.GtkAlignment39 = w323;
			w322.Add (w323);
			Gtk.Label w335 = new Gtk.Label ();
			w335.LabelProp = "";
			w335.UseMarkup = true;
			w335.Events = ((Gdk.EventMask) (256));
			w335.Name = "GtkLabel52";
			this.GtkLabel52 = w335;
			w322.LabelWidget = w335;
			this.frame38 = w322;
			w321.Add (w322);
			this.alignment56 = w321;
			w303.Add (w321);
			Gtk.Box.BoxChild w337 = ((Gtk.Box.BoxChild) (w303 [w321]));
			w337.Position = 1;
			w337.Expand = false;
			w337.Fill = false;
			// Container child hbox18.Gtk.Box+BoxChild
			Gtk.Alignment w338 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w338.LeftPadding = ((uint) (10));
			w338.RightPadding = ((uint) (10));
			w338.Name = "alignment9";
			// Container child alignment9.Gtk.Container+ContainerChild
			Gtk.Frame w339 = new Gtk.Frame ();
			w339.ShadowType = ((Gtk.ShadowType) (4));
			w339.LabelXalign = 0F;
			w339.Name = "frame12";
			// Container child frame12.Gtk.Container+ContainerChild
			Gtk.Alignment w340 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w340.LeftPadding = ((uint) (10));
			w340.RightPadding = ((uint) (10));
			w340.BottomPadding = ((uint) (5));
			w340.Name = "GtkAlignment30";
			// Container child GtkAlignment30.Gtk.Container+ContainerChild
			Gtk.HBox w341 = new Gtk.HBox ();
			w341.Name = "hbox20";
			// Container child hbox20.Gtk.Box+BoxChild
			Gtk.Label w342 = new Gtk.Label ();
			w342.LabelProp = "Tiene Pase? ";
			w342.Name = "label32";
			this.label32 = w342;
			w341.Add (w342);
			Gtk.Box.BoxChild w343 = ((Gtk.Box.BoxChild) (w341 [w342]));
			w343.Position = 0;
			w343.Expand = false;
			w343.Fill = false;
			// Container child hbox20.Gtk.Box+BoxChild
			Gtk.RadioButton w344 = new Gtk.RadioButton ("Si");
			w344.Group = new GLib.SList (System.IntPtr.Zero);
			w344.Active = true;
			w344.DrawIndicator = true;
			w344.CanFocus = true;
			w344.Name = "rad_PaseSi";
			this.rad_PaseSi = w344;
			w341.Add (w344);
			Gtk.Box.BoxChild w345 = ((Gtk.Box.BoxChild) (w341 [w344]));
			w345.Position = 1;
			w345.Expand = false;
			w345.Padding = ((uint) (5));
			// Container child hbox20.Gtk.Box+BoxChild
			Gtk.RadioButton w346 = new Gtk.RadioButton ("No");
			w346.Group = w344.Group;
			w346.DrawIndicator = true;
			w346.CanFocus = true;
			w346.Name = "rad_PaseNo";
			this.rad_PaseNo = w346;
			w341.Add (w346);
			Gtk.Box.BoxChild w347 = ((Gtk.Box.BoxChild) (w341 [w346]));
			w347.Position = 2;
			w347.Expand = false;
			w347.Padding = ((uint) (5));
			// Container child hbox20.Gtk.Box+BoxChild
			Gtk.Label w348 = new Gtk.Label ();
			w348.LabelProp = "*";
			w348.Name = "label182";
			this.label182 = w348;
			w341.Add (w348);
			Gtk.Box.BoxChild w349 = ((Gtk.Box.BoxChild) (w341 [w348]));
			w349.PackType = ((Gtk.PackType) (1));
			w349.Position = 3;
			w349.Expand = false;
			w349.Fill = false;
			this.hbox20 = w341;
			w340.Add (w341);
			this.GtkAlignment30 = w340;
			w339.Add (w340);
			Gtk.Label w352 = new Gtk.Label ();
			w352.LabelProp = "";
			w352.UseMarkup = true;
			w352.Events = ((Gdk.EventMask) (256));
			w352.Name = "GtkLabel18";
			this.GtkLabel18 = w352;
			w339.LabelWidget = w352;
			this.frame12 = w339;
			w338.Add (w339);
			this.alignment9 = w338;
			w303.Add (w338);
			Gtk.Box.BoxChild w354 = ((Gtk.Box.BoxChild) (w303 [w338]));
			w354.Position = 2;
			w354.Expand = false;
			w354.Fill = false;
			this.hbox18 = w303;
			w302.Add (w303);
			Gtk.Box.BoxChild w355 = ((Gtk.Box.BoxChild) (w302 [w303]));
			w355.Position = 0;
			w355.Expand = false;
			w355.Fill = false;
			// Container child vbox38.Gtk.Box+BoxChild
			Gtk.HBox w356 = new Gtk.HBox ();
			w356.Name = "hbox59";
			// Container child hbox59.Gtk.Box+BoxChild
			Gtk.Alignment w357 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w357.LeftPadding = ((uint) (10));
			w357.RightPadding = ((uint) (10));
			w357.BottomPadding = ((uint) (5));
			w357.Name = "alignment41";
			// Container child alignment41.Gtk.Container+ContainerChild
			Gtk.Frame w358 = new Gtk.Frame ();
			w358.ShadowType = ((Gtk.ShadowType) (4));
			w358.LabelXalign = 0F;
			w358.Name = "frame33";
			// Container child frame33.Gtk.Container+ContainerChild
			Gtk.Alignment w359 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w359.LeftPadding = ((uint) (10));
			w359.RightPadding = ((uint) (10));
			w359.BottomPadding = ((uint) (5));
			w359.Name = "GtkAlignment31";
			// Container child GtkAlignment31.Gtk.Container+ContainerChild
			Gtk.HBox w360 = new Gtk.HBox ();
			w360.Name = "hbox60";
			// Container child hbox60.Gtk.Box+BoxChild
			Gtk.Label w361 = new Gtk.Label ();
			w361.LabelProp = "Categoría Pase carro: ";
			w361.Name = "label14";
			this.label14 = w361;
			w360.Add (w361);
			Gtk.Box.BoxChild w362 = ((Gtk.Box.BoxChild) (w360 [w361]));
			w362.Position = 0;
			w362.Expand = false;
			w362.Fill = false;
			// Container child hbox60.Gtk.Box+BoxChild
			Gtk.Entry w363 = new Gtk.Entry ();
			w363.IsEditable = true;
			w363.WidthChars = 2;
			w363.MaxLength = 2;
			w363.InvisibleChar = '●';
			w363.Sensitive = false;
			w363.CanFocus = true;
			w363.Name = "en_CatpaCarro";
			this.en_CatpaCarro = w363;
			w360.Add (w363);
			Gtk.Box.BoxChild w364 = ((Gtk.Box.BoxChild) (w360 [w363]));
			w364.Position = 1;
			this.hbox60 = w360;
			w359.Add (w360);
			this.GtkAlignment31 = w359;
			w358.Add (w359);
			Gtk.Label w367 = new Gtk.Label ();
			w367.LabelProp = "";
			w367.UseMarkup = true;
			w367.Events = ((Gdk.EventMask) (256));
			w367.Name = "GtkLabel43";
			this.GtkLabel43 = w367;
			w358.LabelWidget = w367;
			this.frame33 = w358;
			w357.Add (w358);
			this.alignment41 = w357;
			w356.Add (w357);
			Gtk.Box.BoxChild w369 = ((Gtk.Box.BoxChild) (w356 [w357]));
			w369.Position = 0;
			w369.Expand = false;
			w369.Fill = false;
			// Container child hbox59.Gtk.Box+BoxChild
			Gtk.Alignment w370 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w370.LeftPadding = ((uint) (30));
			w370.RightPadding = ((uint) (10));
			w370.BottomPadding = ((uint) (5));
			w370.Name = "alignment46";
			// Container child alignment46.Gtk.Container+ContainerChild
			Gtk.Frame w371 = new Gtk.Frame ();
			w371.ShadowType = ((Gtk.ShadowType) (4));
			w371.LabelXalign = 0F;
			w371.Name = "frame35";
			// Container child frame35.Gtk.Container+ContainerChild
			Gtk.Alignment w372 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w372.LeftPadding = ((uint) (10));
			w372.RightPadding = ((uint) (10));
			w372.BottomPadding = ((uint) (5));
			w372.Name = "GtkAlignment36";
			// Container child GtkAlignment36.Gtk.Container+ContainerChild
			Gtk.HBox w373 = new Gtk.HBox ();
			w373.Name = "hbox61";
			// Container child hbox61.Gtk.Box+BoxChild
			Gtk.Label w374 = new Gtk.Label ();
			w374.LabelProp = "Categoría Pase Moto: ";
			w374.Name = "label15";
			this.label15 = w374;
			w373.Add (w374);
			Gtk.Box.BoxChild w375 = ((Gtk.Box.BoxChild) (w373 [w374]));
			w375.Position = 0;
			w375.Expand = false;
			w375.Fill = false;
			// Container child hbox61.Gtk.Box+BoxChild
			Gtk.Entry w376 = new Gtk.Entry ();
			w376.IsEditable = true;
			w376.WidthChars = 2;
			w376.MaxLength = 2;
			w376.InvisibleChar = '●';
			w376.Sensitive = false;
			w376.CanFocus = true;
			w376.Name = "en_CatpaMoto";
			this.en_CatpaMoto = w376;
			w373.Add (w376);
			Gtk.Box.BoxChild w377 = ((Gtk.Box.BoxChild) (w373 [w376]));
			w377.Position = 1;
			this.hbox61 = w373;
			w372.Add (w373);
			this.GtkAlignment36 = w372;
			w371.Add (w372);
			Gtk.Label w380 = new Gtk.Label ();
			w380.LabelProp = "";
			w380.UseMarkup = true;
			w380.Events = ((Gdk.EventMask) (256));
			w380.Name = "GtkLabel38";
			this.GtkLabel38 = w380;
			w371.LabelWidget = w380;
			this.frame35 = w371;
			w370.Add (w371);
			this.alignment46 = w370;
			w356.Add (w370);
			Gtk.Box.BoxChild w382 = ((Gtk.Box.BoxChild) (w356 [w370]));
			w382.Position = 1;
			w382.Expand = false;
			w382.Fill = false;
			this.hbox59 = w356;
			w302.Add (w356);
			Gtk.Box.BoxChild w383 = ((Gtk.Box.BoxChild) (w302 [w356]));
			w383.Position = 1;
			w383.Expand = false;
			w383.Fill = false;
			this.vbox38 = w302;
			w301.Add (w302);
			this.GtkAlignment41 = w301;
			w300.Add (w301);
			Gtk.Label w386 = new Gtk.Label ();
			w386.LabelProp = "";
			w386.UseMarkup = true;
			w386.Events = ((Gdk.EventMask) (256));
			w386.Name = "GtkLabel54";
			this.GtkLabel54 = w386;
			w300.LabelWidget = w386;
			this.frame40 = w300;
			w299.Add (w300);
			this.alignment58 = w299;
			w298.Add (w299);
			Gtk.Box.BoxChild w388 = ((Gtk.Box.BoxChild) (w298 [w299]));
			w388.Position = 0;
			w388.Expand = false;
			w388.Fill = false;
			// Container child vbox37.Gtk.Box+BoxChild
			Gtk.Alignment w389 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w389.LeftPadding = ((uint) (10));
			w389.TopPadding = ((uint) (5));
			w389.RightPadding = ((uint) (10));
			w389.BottomPadding = ((uint) (5));
			w389.Name = "alignment59";
			// Container child alignment59.Gtk.Container+ContainerChild
			Gtk.Frame w390 = new Gtk.Frame ();
			w390.ShadowType = ((Gtk.ShadowType) (4));
			w390.LabelXalign = 0F;
			w390.Name = "frame41";
			// Container child frame41.Gtk.Container+ContainerChild
			Gtk.Alignment w391 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w391.LeftPadding = ((uint) (2));
			w391.TopPadding = ((uint) (7));
			w391.BottomPadding = ((uint) (10));
			w391.Name = "GtkAlignment42";
			// Container child GtkAlignment42.Gtk.Container+ContainerChild
			Gtk.HBox w392 = new Gtk.HBox ();
			w392.Name = "hbox65";
			// Container child hbox65.Gtk.Box+BoxChild
			Gtk.Label w393 = new Gtk.Label ();
			w393.LabelProp = "Sueldo Deseado: ";
			w393.Name = "label114";
			this.label114 = w393;
			w392.Add (w393);
			Gtk.Box.BoxChild w394 = ((Gtk.Box.BoxChild) (w392 [w393]));
			w394.Position = 0;
			w394.Expand = false;
			w394.Fill = false;
			w394.Padding = ((uint) (39));
			// Container child hbox65.Gtk.Box+BoxChild
			Gtk.Entry w395 = new Gtk.Entry ();
			w395.IsEditable = true;
			w395.WidthChars = 16;
			w395.MaxLength = 16;
			w395.InvisibleChar = '●';
			w395.CanFocus = true;
			w395.Name = "ent_Sueldo";
			this.ent_Sueldo = w395;
			w392.Add (w395);
			Gtk.Box.BoxChild w396 = ((Gtk.Box.BoxChild) (w392 [w395]));
			w396.Position = 1;
			w396.Expand = false;
			this.hbox65 = w392;
			w391.Add (w392);
			this.GtkAlignment42 = w391;
			w390.Add (w391);
			Gtk.Label w399 = new Gtk.Label ();
			w399.LabelProp = "";
			w399.UseMarkup = true;
			w399.Events = ((Gdk.EventMask) (256));
			w399.Name = "GtkLabel55";
			this.GtkLabel55 = w399;
			w390.LabelWidget = w399;
			this.frame41 = w390;
			w389.Add (w390);
			this.alignment59 = w389;
			w298.Add (w389);
			Gtk.Box.BoxChild w401 = ((Gtk.Box.BoxChild) (w298 [w389]));
			w401.Position = 1;
			w401.Expand = false;
			w401.Fill = false;
			this.vbox37 = w298;
			w136.Add (w298);
			Gtk.Notebook.NotebookChild w402 = ((Gtk.Notebook.NotebookChild) (w136 [w298]));
			w402.Position = 1;
			w402.TabExpand = false;
			// Notebook tab
			Gtk.Label w403 = new Gtk.Label ();
			w403.LabelProp = "Cont.Datos\nPersonales";
			w403.Justify = ((Gtk.Justification) (2));
			w403.Name = "la_DaPersCont";
			this.la_DaPersCont = w403;
			w136.SetTabLabel (w298, w403);
			// Container child notebook1.Gtk.Notebook+NotebookChild
			Gtk.ScrolledWindow w404 = new Gtk.ScrolledWindow ();
			w404.VscrollbarPolicy = ((Gtk.PolicyType) (1));
			w404.HscrollbarPolicy = ((Gtk.PolicyType) (1));
			w404.CanFocus = true;
			w404.Name = "scrolledwindow4";
			// Container child scrolledwindow4.Gtk.Container+ContainerChild
			Gtk.Viewport w405 = new Gtk.Viewport ();
			w405.ShadowType = ((Gtk.ShadowType) (0));
			w405.Name = "GtkViewport3";
			// Container child GtkViewport3.Gtk.Container+ContainerChild
			Gtk.VBox w406 = new Gtk.VBox ();
			w406.Name = "vbox10";
			// Container child vbox10.Gtk.Box+BoxChild
			Gtk.Alignment w407 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w407.LeftPadding = ((uint) (10));
			w407.RightPadding = ((uint) (10));
			w407.BorderWidth = ((uint) (3));
			w407.Name = "alignment7";
			// Container child alignment7.Gtk.Container+ContainerChild
			Gtk.Frame w408 = new Gtk.Frame ();
			w408.ShadowType = ((Gtk.ShadowType) (2));
			w408.LabelXalign = 0F;
			w408.Name = "frame7";
			// Container child frame7.Gtk.Container+ContainerChild
			Gtk.Alignment w409 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w409.LeftPadding = ((uint) (10));
			w409.RightPadding = ((uint) (10));
			w409.BottomPadding = ((uint) (5));
			w409.Name = "GtkAlignment9";
			// Container child GtkAlignment9.Gtk.Container+ContainerChild
			Gtk.VBox w410 = new Gtk.VBox ();
			w410.Name = "vbox11";
			// Container child vbox11.Gtk.Box+BoxChild
			Gtk.Alignment w411 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w411.LeftPadding = ((uint) (10));
			w411.BottomPadding = ((uint) (5));
			w411.Name = "alignment10";
			// Container child alignment10.Gtk.Container+ContainerChild
			Gtk.Frame w412 = new Gtk.Frame ();
			w412.ShadowType = ((Gtk.ShadowType) (4));
			w412.LabelXalign = 0F;
			w412.Name = "frame10";
			// Container child frame10.Gtk.Container+ContainerChild
			Gtk.Alignment w413 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w413.LeftPadding = ((uint) (10));
			w413.BottomPadding = ((uint) (5));
			w413.Name = "GtkAlignment10";
			// Container child GtkAlignment10.Gtk.Container+ContainerChild
			Gtk.HBox w414 = new Gtk.HBox ();
			w414.Name = "hbox21";
			// Container child hbox21.Gtk.Box+BoxChild
			Gtk.Label w415 = new Gtk.Label ();
			w415.LabelProp = "Area de Interés: ";
			w415.Name = "label33";
			this.label33 = w415;
			w414.Add (w415);
			Gtk.Box.BoxChild w416 = ((Gtk.Box.BoxChild) (w414 [w415]));
			w416.Position = 0;
			w416.Expand = false;
			w416.Fill = false;
			// Container child hbox21.Gtk.Box+BoxChild
			Gtk.ComboBox w417 = Gtk.ComboBox.NewText ();
			w417.Active = 0;
			w417.Name = "co_AreaInt1";
			this.co_AreaInt1 = w417;
			w414.Add (w417);
			Gtk.Box.BoxChild w418 = ((Gtk.Box.BoxChild) (w414 [w417]));
			w418.Position = 1;
			w418.Expand = false;
			w418.Fill = false;
			// Container child hbox21.Gtk.Box+BoxChild
			Gtk.Label w419 = new Gtk.Label ();
			w419.LabelProp = "*";
			w419.Name = "label34";
			this.label34 = w419;
			w414.Add (w419);
			Gtk.Box.BoxChild w420 = ((Gtk.Box.BoxChild) (w414 [w419]));
			w420.Position = 2;
			w420.Expand = false;
			w420.Fill = false;
			this.hbox21 = w414;
			w413.Add (w414);
			this.GtkAlignment10 = w413;
			w412.Add (w413);
			Gtk.Label w423 = new Gtk.Label ();
			w423.LabelProp = "";
			w423.UseMarkup = true;
			w423.Events = ((Gdk.EventMask) (256));
			w423.Name = "GtkLabel36";
			this.GtkLabel36 = w423;
			w412.LabelWidget = w423;
			this.frame10 = w412;
			w411.Add (w412);
			this.alignment10 = w411;
			w410.Add (w411);
			Gtk.Box.BoxChild w425 = ((Gtk.Box.BoxChild) (w410 [w411]));
			w425.Position = 0;
			w425.Expand = false;
			w425.Fill = false;
			// Container child vbox11.Gtk.Box+BoxChild
			Gtk.Alignment w426 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w426.LeftPadding = ((uint) (10));
			w426.RightPadding = ((uint) (10));
			w426.BottomPadding = ((uint) (5));
			w426.Name = "alignment11";
			// Container child alignment11.Gtk.Container+ContainerChild
			Gtk.Frame w427 = new Gtk.Frame ();
			w427.ShadowType = ((Gtk.ShadowType) (4));
			w427.LabelXalign = 0F;
			w427.Name = "frame13";
			// Container child frame13.Gtk.Container+ContainerChild
			Gtk.Alignment w428 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w428.LeftPadding = ((uint) (10));
			w428.BottomPadding = ((uint) (5));
			w428.Name = "GtkAlignment11";
			// Container child GtkAlignment11.Gtk.Container+ContainerChild
			Gtk.HBox w429 = new Gtk.HBox ();
			w429.Name = "hbox22";
			// Container child hbox22.Gtk.Box+BoxChild
			Gtk.Label w430 = new Gtk.Label ();
			w430.LabelProp = "Puesto Deseado:  ";
			w430.Name = "label35";
			this.label35 = w430;
			w429.Add (w430);
			Gtk.Box.BoxChild w431 = ((Gtk.Box.BoxChild) (w429 [w430]));
			w431.Position = 0;
			w431.Expand = false;
			w431.Fill = false;
			// Container child hbox22.Gtk.Box+BoxChild
			Gtk.ComboBox w432 = Gtk.ComboBox.NewText ();
			w432.Active = 0;
			w432.Name = "co_PstoDes1";
			this.co_PstoDes1 = w432;
			w429.Add (w432);
			Gtk.Box.BoxChild w433 = ((Gtk.Box.BoxChild) (w429 [w432]));
			w433.Position = 1;
			w433.Expand = false;
			w433.Fill = false;
			// Container child hbox22.Gtk.Box+BoxChild
			Gtk.Label w434 = new Gtk.Label ();
			w434.LabelProp = "*";
			w434.Name = "label189";
			this.label189 = w434;
			w429.Add (w434);
			Gtk.Box.BoxChild w435 = ((Gtk.Box.BoxChild) (w429 [w434]));
			w435.Position = 2;
			w435.Expand = false;
			w435.Fill = false;
			this.hbox22 = w429;
			w428.Add (w429);
			this.GtkAlignment11 = w428;
			w427.Add (w428);
			Gtk.Label w438 = new Gtk.Label ();
			w438.LabelProp = "";
			w438.UseMarkup = true;
			w438.Events = ((Gdk.EventMask) (256));
			w438.Name = "GtkLabel51";
			this.GtkLabel51 = w438;
			w427.LabelWidget = w438;
			this.frame13 = w427;
			w426.Add (w427);
			this.alignment11 = w426;
			w410.Add (w426);
			Gtk.Box.BoxChild w440 = ((Gtk.Box.BoxChild) (w410 [w426]));
			w440.Position = 1;
			w440.Expand = false;
			w440.Fill = false;
			this.vbox11 = w410;
			w409.Add (w410);
			this.GtkAlignment9 = w409;
			w408.Add (w409);
			Gtk.Label w443 = new Gtk.Label ();
			w443.LabelProp = " <b>Primera Area de Interés:</b>";
			w443.UseMarkup = true;
			w443.Xpad = 8;
			w443.Events = ((Gdk.EventMask) (256));
			w443.Name = "GtkLabel37";
			this.GtkLabel37 = w443;
			w408.LabelWidget = w443;
			this.frame7 = w408;
			w407.Add (w408);
			this.alignment7 = w407;
			w406.Add (w407);
			Gtk.Box.BoxChild w445 = ((Gtk.Box.BoxChild) (w406 [w407]));
			w445.Position = 0;
			w445.Expand = false;
			w445.Fill = false;
			// Container child vbox10.Gtk.Box+BoxChild
			Gtk.Alignment w446 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w446.LeftPadding = ((uint) (10));
			w446.RightPadding = ((uint) (10));
			w446.BottomPadding = ((uint) (3));
			w446.Name = "alignment12";
			// Container child alignment12.Gtk.Container+ContainerChild
			Gtk.Frame w447 = new Gtk.Frame ();
			w447.ShadowType = ((Gtk.ShadowType) (4));
			w447.LabelXalign = 0F;
			w447.Name = "frame14";
			// Container child frame14.Gtk.Container+ContainerChild
			Gtk.Alignment w448 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w448.LeftPadding = ((uint) (10));
			w448.RightPadding = ((uint) (10));
			w448.BottomPadding = ((uint) (5));
			w448.Name = "GtkAlignment12";
			// Container child GtkAlignment12.Gtk.Container+ContainerChild
			Gtk.VBox w449 = new Gtk.VBox ();
			w449.Name = "vbox12";
			// Container child vbox12.Gtk.Box+BoxChild
			Gtk.Alignment w450 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w450.LeftPadding = ((uint) (10));
			w450.RightPadding = ((uint) (10));
			w450.BottomPadding = ((uint) (5));
			w450.Name = "alignment13";
			// Container child alignment13.Gtk.Container+ContainerChild
			Gtk.Frame w451 = new Gtk.Frame ();
			w451.ShadowType = ((Gtk.ShadowType) (4));
			w451.LabelXalign = 0F;
			w451.Name = "frame15";
			// Container child frame15.Gtk.Container+ContainerChild
			Gtk.Alignment w452 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w452.LeftPadding = ((uint) (10));
			w452.BottomPadding = ((uint) (5));
			w452.Name = "GtkAlignment13";
			// Container child GtkAlignment13.Gtk.Container+ContainerChild
			Gtk.HBox w453 = new Gtk.HBox ();
			w453.Name = "hbox23";
			// Container child hbox23.Gtk.Box+BoxChild
			Gtk.Label w454 = new Gtk.Label ();
			w454.LabelProp = "Area de Interés: ";
			w454.Name = "label36";
			this.label36 = w454;
			w453.Add (w454);
			Gtk.Box.BoxChild w455 = ((Gtk.Box.BoxChild) (w453 [w454]));
			w455.Position = 0;
			w455.Expand = false;
			w455.Fill = false;
			// Container child hbox23.Gtk.Box+BoxChild
			Gtk.ComboBox w456 = Gtk.ComboBox.NewText ();
			w456.Active = 0;
			w456.Name = "co_AreaInt2";
			this.co_AreaInt2 = w456;
			w453.Add (w456);
			Gtk.Box.BoxChild w457 = ((Gtk.Box.BoxChild) (w453 [w456]));
			w457.Position = 1;
			w457.Expand = false;
			w457.Fill = false;
			this.hbox23 = w453;
			w452.Add (w453);
			this.GtkAlignment13 = w452;
			w451.Add (w452);
			Gtk.Label w460 = new Gtk.Label ();
			w460.LabelProp = "";
			w460.UseMarkup = true;
			w460.Events = ((Gdk.EventMask) (256));
			w460.Name = "GtkLabel19";
			this.GtkLabel19 = w460;
			w451.LabelWidget = w460;
			this.frame15 = w451;
			w450.Add (w451);
			this.alignment13 = w450;
			w449.Add (w450);
			Gtk.Box.BoxChild w462 = ((Gtk.Box.BoxChild) (w449 [w450]));
			w462.Position = 0;
			w462.Expand = false;
			w462.Fill = false;
			// Container child vbox12.Gtk.Box+BoxChild
			Gtk.Alignment w463 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w463.LeftPadding = ((uint) (10));
			w463.RightPadding = ((uint) (10));
			w463.BottomPadding = ((uint) (5));
			w463.Name = "alignment14";
			// Container child alignment14.Gtk.Container+ContainerChild
			Gtk.Frame w464 = new Gtk.Frame ();
			w464.ShadowType = ((Gtk.ShadowType) (4));
			w464.LabelXalign = 0F;
			w464.Name = "frame16";
			// Container child frame16.Gtk.Container+ContainerChild
			Gtk.Alignment w465 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w465.LeftPadding = ((uint) (10));
			w465.BottomPadding = ((uint) (5));
			w465.Name = "GtkAlignment14";
			// Container child GtkAlignment14.Gtk.Container+ContainerChild
			Gtk.HBox w466 = new Gtk.HBox ();
			w466.Name = "hbox24";
			// Container child hbox24.Gtk.Box+BoxChild
			Gtk.Label w467 = new Gtk.Label ();
			w467.LabelProp = "Puesto Deseado:  ";
			w467.Name = "label38";
			this.label38 = w467;
			w466.Add (w467);
			Gtk.Box.BoxChild w468 = ((Gtk.Box.BoxChild) (w466 [w467]));
			w468.Position = 0;
			w468.Expand = false;
			w468.Fill = false;
			// Container child hbox24.Gtk.Box+BoxChild
			Gtk.ComboBox w469 = Gtk.ComboBox.NewText ();
			w469.Active = 0;
			w469.Name = "co_PstoDes2";
			this.co_PstoDes2 = w469;
			w466.Add (w469);
			Gtk.Box.BoxChild w470 = ((Gtk.Box.BoxChild) (w466 [w469]));
			w470.Position = 1;
			w470.Expand = false;
			w470.Fill = false;
			this.hbox24 = w466;
			w465.Add (w466);
			this.GtkAlignment14 = w465;
			w464.Add (w465);
			Gtk.Label w473 = new Gtk.Label ();
			w473.LabelProp = "";
			w473.UseMarkup = true;
			w473.Events = ((Gdk.EventMask) (256));
			w473.Name = "GtkLabel20";
			this.GtkLabel20 = w473;
			w464.LabelWidget = w473;
			this.frame16 = w464;
			w463.Add (w464);
			this.alignment14 = w463;
			w449.Add (w463);
			Gtk.Box.BoxChild w475 = ((Gtk.Box.BoxChild) (w449 [w463]));
			w475.Position = 1;
			w475.Expand = false;
			w475.Fill = false;
			this.vbox12 = w449;
			w448.Add (w449);
			this.GtkAlignment12 = w448;
			w447.Add (w448);
			Gtk.Label w478 = new Gtk.Label ();
			w478.LabelProp = " <b>Segunda Area de Interés:</b>";
			w478.UseMarkup = true;
			w478.Xpad = 8;
			w478.Events = ((Gdk.EventMask) (256));
			w478.Name = "GtkLabel21";
			this.GtkLabel21 = w478;
			w447.LabelWidget = w478;
			this.frame14 = w447;
			w446.Add (w447);
			this.alignment12 = w446;
			w406.Add (w446);
			Gtk.Box.BoxChild w480 = ((Gtk.Box.BoxChild) (w406 [w446]));
			w480.Position = 1;
			w480.Expand = false;
			w480.Fill = false;
			// Container child vbox10.Gtk.Box+BoxChild
			Gtk.Alignment w481 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w481.LeftPadding = ((uint) (10));
			w481.RightPadding = ((uint) (10));
			w481.BottomPadding = ((uint) (3));
			w481.Name = "alignment15";
			// Container child alignment15.Gtk.Container+ContainerChild
			Gtk.Frame w482 = new Gtk.Frame ();
			w482.ShadowType = ((Gtk.ShadowType) (4));
			w482.LabelXalign = 0F;
			w482.Name = "frame17";
			// Container child frame17.Gtk.Container+ContainerChild
			Gtk.Alignment w483 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w483.LeftPadding = ((uint) (10));
			w483.RightPadding = ((uint) (10));
			w483.BottomPadding = ((uint) (5));
			w483.Name = "GtkAlignment15";
			// Container child GtkAlignment15.Gtk.Container+ContainerChild
			Gtk.VBox w484 = new Gtk.VBox ();
			w484.Name = "vbox13";
			// Container child vbox13.Gtk.Box+BoxChild
			Gtk.Alignment w485 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w485.LeftPadding = ((uint) (10));
			w485.RightPadding = ((uint) (10));
			w485.BottomPadding = ((uint) (5));
			w485.Name = "alignment16";
			// Container child alignment16.Gtk.Container+ContainerChild
			Gtk.Frame w486 = new Gtk.Frame ();
			w486.ShadowType = ((Gtk.ShadowType) (4));
			w486.LabelXalign = 0F;
			w486.Name = "frame18";
			// Container child frame18.Gtk.Container+ContainerChild
			Gtk.Alignment w487 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w487.LeftPadding = ((uint) (10));
			w487.BottomPadding = ((uint) (5));
			w487.Name = "GtkAlignment16";
			// Container child GtkAlignment16.Gtk.Container+ContainerChild
			Gtk.HBox w488 = new Gtk.HBox ();
			w488.Name = "hbox25";
			// Container child hbox25.Gtk.Box+BoxChild
			Gtk.Label w489 = new Gtk.Label ();
			w489.LabelProp = "Area de Interés: ";
			w489.Name = "label39";
			this.label39 = w489;
			w488.Add (w489);
			Gtk.Box.BoxChild w490 = ((Gtk.Box.BoxChild) (w488 [w489]));
			w490.Position = 0;
			w490.Expand = false;
			w490.Fill = false;
			// Container child hbox25.Gtk.Box+BoxChild
			Gtk.ComboBox w491 = Gtk.ComboBox.NewText ();
			w491.Active = 0;
			w491.Name = "co_AreaInt3";
			this.co_AreaInt3 = w491;
			w488.Add (w491);
			Gtk.Box.BoxChild w492 = ((Gtk.Box.BoxChild) (w488 [w491]));
			w492.Position = 1;
			w492.Expand = false;
			w492.Fill = false;
			this.hbox25 = w488;
			w487.Add (w488);
			this.GtkAlignment16 = w487;
			w486.Add (w487);
			Gtk.Label w495 = new Gtk.Label ();
			w495.LabelProp = "";
			w495.UseMarkup = true;
			w495.Events = ((Gdk.EventMask) (256));
			w495.Name = "GtkLabel22";
			this.GtkLabel22 = w495;
			w486.LabelWidget = w495;
			this.frame18 = w486;
			w485.Add (w486);
			this.alignment16 = w485;
			w484.Add (w485);
			Gtk.Box.BoxChild w497 = ((Gtk.Box.BoxChild) (w484 [w485]));
			w497.Position = 0;
			w497.Expand = false;
			w497.Fill = false;
			// Container child vbox13.Gtk.Box+BoxChild
			Gtk.Alignment w498 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w498.LeftPadding = ((uint) (10));
			w498.RightPadding = ((uint) (10));
			w498.BottomPadding = ((uint) (5));
			w498.Name = "alignment17";
			// Container child alignment17.Gtk.Container+ContainerChild
			Gtk.Frame w499 = new Gtk.Frame ();
			w499.ShadowType = ((Gtk.ShadowType) (4));
			w499.LabelXalign = 0F;
			w499.Name = "frame19";
			// Container child frame19.Gtk.Container+ContainerChild
			Gtk.Alignment w500 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w500.LeftPadding = ((uint) (10));
			w500.BottomPadding = ((uint) (5));
			w500.Name = "GtkAlignment17";
			// Container child GtkAlignment17.Gtk.Container+ContainerChild
			Gtk.HBox w501 = new Gtk.HBox ();
			w501.Name = "hbox26";
			// Container child hbox26.Gtk.Box+BoxChild
			Gtk.Label w502 = new Gtk.Label ();
			w502.LabelProp = "Puesto Deseado:  ";
			w502.Name = "label41";
			this.label41 = w502;
			w501.Add (w502);
			Gtk.Box.BoxChild w503 = ((Gtk.Box.BoxChild) (w501 [w502]));
			w503.Position = 0;
			w503.Expand = false;
			w503.Fill = false;
			// Container child hbox26.Gtk.Box+BoxChild
			Gtk.ComboBox w504 = Gtk.ComboBox.NewText ();
			w504.Active = 0;
			w504.Name = "co_PstoDes3";
			this.co_PstoDes3 = w504;
			w501.Add (w504);
			Gtk.Box.BoxChild w505 = ((Gtk.Box.BoxChild) (w501 [w504]));
			w505.Position = 1;
			w505.Expand = false;
			w505.Fill = false;
			this.hbox26 = w501;
			w500.Add (w501);
			this.GtkAlignment17 = w500;
			w499.Add (w500);
			Gtk.Label w508 = new Gtk.Label ();
			w508.LabelProp = "";
			w508.UseMarkup = true;
			w508.Events = ((Gdk.EventMask) (256));
			w508.Name = "GtkLabel23";
			this.GtkLabel23 = w508;
			w499.LabelWidget = w508;
			this.frame19 = w499;
			w498.Add (w499);
			this.alignment17 = w498;
			w484.Add (w498);
			Gtk.Box.BoxChild w510 = ((Gtk.Box.BoxChild) (w484 [w498]));
			w510.Position = 1;
			w510.Expand = false;
			w510.Fill = false;
			this.vbox13 = w484;
			w483.Add (w484);
			this.GtkAlignment15 = w483;
			w482.Add (w483);
			Gtk.Label w513 = new Gtk.Label ();
			w513.LabelProp = "<b>Tercera Area de Interés:</b>";
			w513.UseMarkup = true;
			w513.Xpad = 8;
			w513.Events = ((Gdk.EventMask) (256));
			w513.Name = "GtkLabel24";
			this.GtkLabel24 = w513;
			w482.LabelWidget = w513;
			this.frame17 = w482;
			w481.Add (w482);
			this.alignment15 = w481;
			w406.Add (w481);
			Gtk.Box.BoxChild w515 = ((Gtk.Box.BoxChild) (w406 [w481]));
			w515.Position = 2;
			w515.Expand = false;
			w515.Fill = false;
			this.vbox10 = w406;
			w405.Add (w406);
			w404.Add (w405);
			this.scrolledwindow4 = w404;
			w136.Add (w404);
			Gtk.Notebook.NotebookChild w518 = ((Gtk.Notebook.NotebookChild) (w136 [w404]));
			w518.Position = 2;
			w518.TabExpand = false;
			// Notebook tab
			Gtk.Label w519 = new Gtk.Label ();
			w519.LabelProp = "Area de\nInterés";
			w519.Justify = ((Gtk.Justification) (2));
			w519.Name = "la_AreaInteres";
			this.la_AreaInteres = w519;
			w136.SetTabLabel (w404, w519);
			// Container child notebook1.Gtk.Notebook+NotebookChild
			Gtk.ScrolledWindow w520 = new Gtk.ScrolledWindow ();
			w520.VscrollbarPolicy = ((Gtk.PolicyType) (1));
			w520.HscrollbarPolicy = ((Gtk.PolicyType) (1));
			w520.CanFocus = true;
			w520.Name = "scrolledwindow5";
			// Container child scrolledwindow5.Gtk.Container+ContainerChild
			Gtk.Viewport w521 = new Gtk.Viewport ();
			w521.ShadowType = ((Gtk.ShadowType) (0));
			w521.Name = "GtkViewport4";
			// Container child GtkViewport4.Gtk.Container+ContainerChild
			Gtk.VBox w522 = new Gtk.VBox ();
			w522.Name = "vbox18";
			// Container child vbox18.Gtk.Box+BoxChild
			Gtk.Label w523 = new Gtk.Label ();
			w523.LabelProp = "Indicar desde el nivel mas alto al mas bajo";
			w523.Name = "label63";
			this.label63 = w523;
			w522.Add (w523);
			Gtk.Box.BoxChild w524 = ((Gtk.Box.BoxChild) (w522 [w523]));
			w524.Position = 0;
			w524.Expand = false;
			w524.Fill = false;
			// Container child vbox18.Gtk.Box+BoxChild
			Gtk.Alignment w525 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w525.LeftPadding = ((uint) (10));
			w525.RightPadding = ((uint) (10));
			w525.BottomPadding = ((uint) (2));
			w525.Name = "alignment24";
			// Container child alignment24.Gtk.Container+ContainerChild
			Gtk.Frame w526 = new Gtk.Frame ();
			w526.ShadowType = ((Gtk.ShadowType) (4));
			w526.LabelXalign = 0F;
			w526.Name = "frame23";
			// Container child frame23.Gtk.Container+ContainerChild
			Gtk.Alignment w527 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w527.LeftPadding = ((uint) (10));
			w527.RightPadding = ((uint) (10));
			w527.BottomPadding = ((uint) (5));
			w527.Name = "GtkAlignment21";
			// Container child GtkAlignment21.Gtk.Container+ContainerChild
			Gtk.VBox w528 = new Gtk.VBox ();
			w528.Name = "vbox19";
			// Container child vbox19.Gtk.Box+BoxChild
			Gtk.VBox w529 = new Gtk.VBox ();
			w529.Name = "vbox20";
			// Container child vbox20.Gtk.Box+BoxChild
			Gtk.HBox w530 = new Gtk.HBox ();
			w530.BorderWidth = ((uint) (2));
			w530.Name = "hbox39";
			// Container child hbox39.Gtk.Box+BoxChild
			Gtk.Label w531 = new Gtk.Label ();
			w531.LabelProp = "Nivel de Estudio: ";
			w531.Name = "label66";
			this.label66 = w531;
			w530.Add (w531);
			Gtk.Box.BoxChild w532 = ((Gtk.Box.BoxChild) (w530 [w531]));
			w532.Position = 0;
			w532.Expand = false;
			w532.Fill = false;
			// Container child hbox39.Gtk.Box+BoxChild
			Gtk.ComboBox w533 = Gtk.ComboBox.NewText ();
			w533.Active = 0;
			w533.Name = "co_NivEst";
			this.co_NivEst = w533;
			w530.Add (w533);
			Gtk.Box.BoxChild w534 = ((Gtk.Box.BoxChild) (w530 [w533]));
			w534.Position = 1;
			w534.Expand = false;
			w534.Fill = false;
			// Container child hbox39.Gtk.Box+BoxChild
			Gtk.Alignment w535 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w535.LeftPadding = ((uint) (50));
			w535.Name = "alignment26";
			// Container child alignment26.Gtk.Container+ContainerChild
			Gtk.HBox w536 = new Gtk.HBox ();
			w536.Name = "hbox40";
			// Container child hbox40.Gtk.Box+BoxChild
			Gtk.Label w537 = new Gtk.Label ();
			w537.LabelProp = "Estudio: ";
			w537.Name = "label67";
			this.label67 = w537;
			w536.Add (w537);
			Gtk.Box.BoxChild w538 = ((Gtk.Box.BoxChild) (w536 [w537]));
			w538.Position = 0;
			w538.Expand = false;
			w538.Fill = false;
			// Container child hbox40.Gtk.Box+BoxChild
			Gtk.ComboBox w539 = Gtk.ComboBox.NewText ();
			w539.Active = 0;
			w539.Name = "co_Titulo";
			this.co_Titulo = w539;
			w536.Add (w539);
			Gtk.Box.BoxChild w540 = ((Gtk.Box.BoxChild) (w536 [w539]));
			w540.Position = 1;
			w540.Expand = false;
			w540.Fill = false;
			// Container child hbox40.Gtk.Box+BoxChild
			Gtk.Label w541 = new Gtk.Label ();
			w541.LabelProp = " Graduado? ";
			w541.Name = "label191";
			this.label191 = w541;
			w536.Add (w541);
			Gtk.Box.BoxChild w542 = ((Gtk.Box.BoxChild) (w536 [w541]));
			w542.Position = 2;
			w542.Expand = false;
			w542.Fill = false;
			// Container child hbox40.Gtk.Box+BoxChild
			Gtk.RadioButton w543 = new Gtk.RadioButton ("Si");
			w543.Group = new GLib.SList (System.IntPtr.Zero);
			w543.Active = true;
			w543.DrawIndicator = true;
			w543.CanFocus = true;
			w543.Name = "ra_GradoSi";
			this.ra_GradoSi = w543;
			w536.Add (w543);
			Gtk.Box.BoxChild w544 = ((Gtk.Box.BoxChild) (w536 [w543]));
			w544.Position = 3;
			w544.Expand = false;
			// Container child hbox40.Gtk.Box+BoxChild
			Gtk.RadioButton w545 = new Gtk.RadioButton ("No");
			w545.Group = w543.Group;
			w545.DrawIndicator = true;
			w545.CanFocus = true;
			w545.Name = "ra_GradoNo";
			this.ra_GradoNo = w545;
			w536.Add (w545);
			Gtk.Box.BoxChild w546 = ((Gtk.Box.BoxChild) (w536 [w545]));
			w546.Position = 4;
			w546.Expand = false;
			this.hbox40 = w536;
			w535.Add (w536);
			this.alignment26 = w535;
			w530.Add (w535);
			Gtk.Box.BoxChild w548 = ((Gtk.Box.BoxChild) (w530 [w535]));
			w548.Position = 2;
			this.hbox39 = w530;
			w529.Add (w530);
			Gtk.Box.BoxChild w549 = ((Gtk.Box.BoxChild) (w529 [w530]));
			w549.Position = 0;
			w549.Expand = false;
			w549.Fill = false;
			// Container child vbox20.Gtk.Box+BoxChild
			Gtk.HBox w550 = new Gtk.HBox ();
			w550.BorderWidth = ((uint) (2));
			w550.Name = "hbox41";
			// Container child hbox41.Gtk.Box+BoxChild
			Gtk.Label w551 = new Gtk.Label ();
			w551.LabelProp = "Años Estudio: ";
			w551.Name = "label69";
			this.label69 = w551;
			w550.Add (w551);
			Gtk.Box.BoxChild w552 = ((Gtk.Box.BoxChild) (w550 [w551]));
			w552.Position = 0;
			w552.Expand = false;
			w552.Fill = false;
			// Container child hbox41.Gtk.Box+BoxChild
			Gtk.SpinButton w553 = new Gtk.SpinButton (0, 8, 1);
			w553.Adjustment.PageIncrement = 10;
			w553.ClimbRate = 1;
			w553.Numeric = true;
			w553.CanFocus = true;
			w553.Name = "sp_AniosEst";
			this.sp_AniosEst = w553;
			w550.Add (w553);
			Gtk.Box.BoxChild w554 = ((Gtk.Box.BoxChild) (w550 [w553]));
			w554.Position = 1;
			w554.Expand = false;
			w554.Fill = false;
			// Container child hbox41.Gtk.Box+BoxChild
			Gtk.Label w555 = new Gtk.Label ();
			w555.LabelProp = "Institución: ";
			w555.Name = "label68";
			this.label68 = w555;
			w550.Add (w555);
			Gtk.Box.BoxChild w556 = ((Gtk.Box.BoxChild) (w550 [w555]));
			w556.Position = 2;
			w556.Expand = false;
			w556.Fill = false;
			w556.Padding = ((uint) (21));
			// Container child hbox41.Gtk.Box+BoxChild
			Gtk.Entry w557 = new Gtk.Entry ();
			w557.IsEditable = true;
			w557.WidthChars = 30;
			w557.MaxLength = 40;
			w557.InvisibleChar = '●';
			w557.CanFocus = true;
			w557.Name = "en_Instituto";
			this.en_Instituto = w557;
			w550.Add (w557);
			Gtk.Box.BoxChild w558 = ((Gtk.Box.BoxChild) (w550 [w557]));
			w558.Position = 3;
			w558.Expand = false;
			this.hbox41 = w550;
			w529.Add (w550);
			Gtk.Box.BoxChild w559 = ((Gtk.Box.BoxChild) (w529 [w550]));
			w559.Position = 1;
			w559.Expand = false;
			w559.Fill = false;
			this.vbox20 = w529;
			w528.Add (w529);
			Gtk.Box.BoxChild w560 = ((Gtk.Box.BoxChild) (w528 [w529]));
			w560.Position = 0;
			w560.Expand = false;
			w560.Fill = false;
			this.vbox19 = w528;
			w527.Add (w528);
			this.GtkAlignment21 = w527;
			w526.Add (w527);
			Gtk.Label w563 = new Gtk.Label ();
			w563.LabelProp = "<b>Nivel de Estudios 1</b>";
			w563.UseMarkup = true;
			w563.Xpad = 8;
			w563.Events = ((Gdk.EventMask) (256));
			w563.Name = "GtkLabel28";
			this.GtkLabel28 = w563;
			w526.LabelWidget = w563;
			this.frame23 = w526;
			w525.Add (w526);
			this.alignment24 = w525;
			w522.Add (w525);
			Gtk.Box.BoxChild w565 = ((Gtk.Box.BoxChild) (w522 [w525]));
			w565.Position = 1;
			w565.Expand = false;
			w565.Fill = false;
			// Container child vbox18.Gtk.Box+BoxChild
			Gtk.Alignment w566 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w566.LeftPadding = ((uint) (10));
			w566.RightPadding = ((uint) (10));
			w566.BottomPadding = ((uint) (2));
			w566.Name = "alignment27";
			// Container child alignment27.Gtk.Container+ContainerChild
			Gtk.Frame w567 = new Gtk.Frame ();
			w567.ShadowType = ((Gtk.ShadowType) (4));
			w567.LabelXalign = 0F;
			w567.Name = "frame25";
			// Container child frame25.Gtk.Container+ContainerChild
			Gtk.Alignment w568 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w568.LeftPadding = ((uint) (10));
			w568.RightPadding = ((uint) (10));
			w568.BottomPadding = ((uint) (5));
			w568.Name = "GtkAlignment23";
			// Container child GtkAlignment23.Gtk.Container+ContainerChild
			Gtk.VBox w569 = new Gtk.VBox ();
			w569.Name = "vbox21";
			// Container child vbox21.Gtk.Box+BoxChild
			Gtk.VBox w570 = new Gtk.VBox ();
			w570.Name = "vbox22";
			// Container child vbox22.Gtk.Box+BoxChild
			Gtk.HBox w571 = new Gtk.HBox ();
			w571.BorderWidth = ((uint) (2));
			w571.Name = "hbox42";
			// Container child hbox42.Gtk.Box+BoxChild
			Gtk.Label w572 = new Gtk.Label ();
			w572.LabelProp = "Nivel de Estudio: ";
			w572.Name = "label70";
			this.label70 = w572;
			w571.Add (w572);
			Gtk.Box.BoxChild w573 = ((Gtk.Box.BoxChild) (w571 [w572]));
			w573.Position = 0;
			w573.Expand = false;
			w573.Fill = false;
			// Container child hbox42.Gtk.Box+BoxChild
			Gtk.ComboBox w574 = Gtk.ComboBox.NewText ();
			w574.Active = 0;
			w574.Name = "co_NivEst1";
			this.co_NivEst1 = w574;
			w571.Add (w574);
			Gtk.Box.BoxChild w575 = ((Gtk.Box.BoxChild) (w571 [w574]));
			w575.Position = 1;
			w575.Expand = false;
			w575.Fill = false;
			// Container child hbox42.Gtk.Box+BoxChild
			Gtk.Alignment w576 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w576.LeftPadding = ((uint) (50));
			w576.Name = "alignment28";
			// Container child alignment28.Gtk.Container+ContainerChild
			Gtk.HBox w577 = new Gtk.HBox ();
			w577.Name = "hbox43";
			// Container child hbox43.Gtk.Box+BoxChild
			Gtk.Label w578 = new Gtk.Label ();
			w578.LabelProp = "Estudio: ";
			w578.Name = "label71";
			this.label71 = w578;
			w577.Add (w578);
			Gtk.Box.BoxChild w579 = ((Gtk.Box.BoxChild) (w577 [w578]));
			w579.Position = 0;
			w579.Expand = false;
			w579.Fill = false;
			// Container child hbox43.Gtk.Box+BoxChild
			Gtk.ComboBox w580 = Gtk.ComboBox.NewText ();
			w580.Active = 0;
			w580.Name = "co_Titulo1";
			this.co_Titulo1 = w580;
			w577.Add (w580);
			Gtk.Box.BoxChild w581 = ((Gtk.Box.BoxChild) (w577 [w580]));
			w581.Position = 1;
			w581.Expand = false;
			w581.Fill = false;
			// Container child hbox43.Gtk.Box+BoxChild
			Gtk.Label w582 = new Gtk.Label ();
			w582.LabelProp = " Graduado? ";
			w582.Name = "label192";
			this.label192 = w582;
			w577.Add (w582);
			Gtk.Box.BoxChild w583 = ((Gtk.Box.BoxChild) (w577 [w582]));
			w583.Position = 2;
			w583.Expand = false;
			w583.Fill = false;
			// Container child hbox43.Gtk.Box+BoxChild
			Gtk.RadioButton w584 = new Gtk.RadioButton ("Si");
			w584.Group = new GLib.SList (System.IntPtr.Zero);
			w584.Active = true;
			w584.DrawIndicator = true;
			w584.CanFocus = true;
			w584.Name = "ra_GradoSi1";
			this.ra_GradoSi1 = w584;
			w577.Add (w584);
			Gtk.Box.BoxChild w585 = ((Gtk.Box.BoxChild) (w577 [w584]));
			w585.Position = 3;
			w585.Expand = false;
			// Container child hbox43.Gtk.Box+BoxChild
			Gtk.RadioButton w586 = new Gtk.RadioButton ("No");
			w586.Group = w584.Group;
			w586.DrawIndicator = true;
			w586.CanFocus = true;
			w586.Name = "ra_GradoNo1";
			this.ra_GradoNo1 = w586;
			w577.Add (w586);
			Gtk.Box.BoxChild w587 = ((Gtk.Box.BoxChild) (w577 [w586]));
			w587.Position = 4;
			w587.Expand = false;
			this.hbox43 = w577;
			w576.Add (w577);
			this.alignment28 = w576;
			w571.Add (w576);
			Gtk.Box.BoxChild w589 = ((Gtk.Box.BoxChild) (w571 [w576]));
			w589.Position = 2;
			this.hbox42 = w571;
			w570.Add (w571);
			Gtk.Box.BoxChild w590 = ((Gtk.Box.BoxChild) (w570 [w571]));
			w590.Position = 0;
			w590.Expand = false;
			w590.Fill = false;
			// Container child vbox22.Gtk.Box+BoxChild
			Gtk.HBox w591 = new Gtk.HBox ();
			w591.BorderWidth = ((uint) (2));
			w591.Name = "hbox44";
			// Container child hbox44.Gtk.Box+BoxChild
			Gtk.Label w592 = new Gtk.Label ();
			w592.LabelProp = "Años Estudio: ";
			w592.Name = "label72";
			this.label72 = w592;
			w591.Add (w592);
			Gtk.Box.BoxChild w593 = ((Gtk.Box.BoxChild) (w591 [w592]));
			w593.Position = 0;
			w593.Expand = false;
			w593.Fill = false;
			// Container child hbox44.Gtk.Box+BoxChild
			Gtk.SpinButton w594 = new Gtk.SpinButton (0, 8, 1);
			w594.Adjustment.PageIncrement = 10;
			w594.ClimbRate = 1;
			w594.Numeric = true;
			w594.CanFocus = true;
			w594.Name = "sp_AniosEst1";
			this.sp_AniosEst1 = w594;
			w591.Add (w594);
			Gtk.Box.BoxChild w595 = ((Gtk.Box.BoxChild) (w591 [w594]));
			w595.Position = 1;
			w595.Expand = false;
			w595.Fill = false;
			// Container child hbox44.Gtk.Box+BoxChild
			Gtk.Label w596 = new Gtk.Label ();
			w596.LabelProp = "Institución: ";
			w596.Name = "label73";
			this.label73 = w596;
			w591.Add (w596);
			Gtk.Box.BoxChild w597 = ((Gtk.Box.BoxChild) (w591 [w596]));
			w597.Position = 2;
			w597.Expand = false;
			w597.Fill = false;
			w597.Padding = ((uint) (21));
			// Container child hbox44.Gtk.Box+BoxChild
			Gtk.Entry w598 = new Gtk.Entry ();
			w598.IsEditable = true;
			w598.WidthChars = 30;
			w598.MaxLength = 40;
			w598.InvisibleChar = '●';
			w598.CanFocus = true;
			w598.Name = "en_Instituto1";
			this.en_Instituto1 = w598;
			w591.Add (w598);
			Gtk.Box.BoxChild w599 = ((Gtk.Box.BoxChild) (w591 [w598]));
			w599.Position = 3;
			w599.Expand = false;
			this.hbox44 = w591;
			w570.Add (w591);
			Gtk.Box.BoxChild w600 = ((Gtk.Box.BoxChild) (w570 [w591]));
			w600.Position = 1;
			w600.Expand = false;
			w600.Fill = false;
			this.vbox22 = w570;
			w569.Add (w570);
			Gtk.Box.BoxChild w601 = ((Gtk.Box.BoxChild) (w569 [w570]));
			w601.Position = 0;
			w601.Expand = false;
			w601.Fill = false;
			this.vbox21 = w569;
			w568.Add (w569);
			this.GtkAlignment23 = w568;
			w567.Add (w568);
			Gtk.Label w604 = new Gtk.Label ();
			w604.LabelProp = "<b>Nivel de Estudios 2</b>";
			w604.UseMarkup = true;
			w604.Xpad = 8;
			w604.Events = ((Gdk.EventMask) (256));
			w604.Name = "GtkLabel30";
			this.GtkLabel30 = w604;
			w567.LabelWidget = w604;
			this.frame25 = w567;
			w566.Add (w567);
			this.alignment27 = w566;
			w522.Add (w566);
			Gtk.Box.BoxChild w606 = ((Gtk.Box.BoxChild) (w522 [w566]));
			w606.Position = 2;
			w606.Expand = false;
			w606.Fill = false;
			// Container child vbox18.Gtk.Box+BoxChild
			Gtk.Alignment w607 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w607.LeftPadding = ((uint) (10));
			w607.RightPadding = ((uint) (10));
			w607.BottomPadding = ((uint) (2));
			w607.Name = "alignment29";
			// Container child alignment29.Gtk.Container+ContainerChild
			Gtk.Frame w608 = new Gtk.Frame ();
			w608.ShadowType = ((Gtk.ShadowType) (4));
			w608.LabelXalign = 0F;
			w608.Name = "frame26";
			// Container child frame26.Gtk.Container+ContainerChild
			Gtk.Alignment w609 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w609.LeftPadding = ((uint) (10));
			w609.RightPadding = ((uint) (10));
			w609.BottomPadding = ((uint) (5));
			w609.Name = "GtkAlignment24";
			// Container child GtkAlignment24.Gtk.Container+ContainerChild
			Gtk.VBox w610 = new Gtk.VBox ();
			w610.Name = "vbox23";
			// Container child vbox23.Gtk.Box+BoxChild
			Gtk.VBox w611 = new Gtk.VBox ();
			w611.Name = "vbox24";
			// Container child vbox24.Gtk.Box+BoxChild
			Gtk.HBox w612 = new Gtk.HBox ();
			w612.BorderWidth = ((uint) (2));
			w612.Name = "hbox45";
			// Container child hbox45.Gtk.Box+BoxChild
			Gtk.Label w613 = new Gtk.Label ();
			w613.LabelProp = "Nivel de Estudio: ";
			w613.Name = "label74";
			this.label74 = w613;
			w612.Add (w613);
			Gtk.Box.BoxChild w614 = ((Gtk.Box.BoxChild) (w612 [w613]));
			w614.Position = 0;
			w614.Expand = false;
			w614.Fill = false;
			// Container child hbox45.Gtk.Box+BoxChild
			Gtk.ComboBox w615 = Gtk.ComboBox.NewText ();
			w615.Active = 0;
			w615.Name = "co_NivEst2";
			this.co_NivEst2 = w615;
			w612.Add (w615);
			Gtk.Box.BoxChild w616 = ((Gtk.Box.BoxChild) (w612 [w615]));
			w616.Position = 1;
			w616.Expand = false;
			w616.Fill = false;
			// Container child hbox45.Gtk.Box+BoxChild
			Gtk.Alignment w617 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w617.LeftPadding = ((uint) (50));
			w617.Name = "alignment30";
			// Container child alignment30.Gtk.Container+ContainerChild
			Gtk.HBox w618 = new Gtk.HBox ();
			w618.Name = "hbox46";
			// Container child hbox46.Gtk.Box+BoxChild
			Gtk.Label w619 = new Gtk.Label ();
			w619.LabelProp = "Estudio: ";
			w619.Name = "label75";
			this.label75 = w619;
			w618.Add (w619);
			Gtk.Box.BoxChild w620 = ((Gtk.Box.BoxChild) (w618 [w619]));
			w620.Position = 0;
			w620.Expand = false;
			w620.Fill = false;
			// Container child hbox46.Gtk.Box+BoxChild
			Gtk.ComboBox w621 = Gtk.ComboBox.NewText ();
			w621.Active = 0;
			w621.Name = "co_Titulo2";
			this.co_Titulo2 = w621;
			w618.Add (w621);
			Gtk.Box.BoxChild w622 = ((Gtk.Box.BoxChild) (w618 [w621]));
			w622.Position = 1;
			w622.Expand = false;
			w622.Fill = false;
			// Container child hbox46.Gtk.Box+BoxChild
			Gtk.Label w623 = new Gtk.Label ();
			w623.LabelProp = " Graduado? ";
			w623.Name = "label193";
			this.label193 = w623;
			w618.Add (w623);
			Gtk.Box.BoxChild w624 = ((Gtk.Box.BoxChild) (w618 [w623]));
			w624.Position = 2;
			w624.Expand = false;
			w624.Fill = false;
			// Container child hbox46.Gtk.Box+BoxChild
			Gtk.RadioButton w625 = new Gtk.RadioButton ("Si");
			w625.Group = new GLib.SList (System.IntPtr.Zero);
			w625.Active = true;
			w625.DrawIndicator = true;
			w625.CanFocus = true;
			w625.Name = "ra_GradoSi2";
			this.ra_GradoSi2 = w625;
			w618.Add (w625);
			Gtk.Box.BoxChild w626 = ((Gtk.Box.BoxChild) (w618 [w625]));
			w626.Position = 3;
			w626.Expand = false;
			// Container child hbox46.Gtk.Box+BoxChild
			Gtk.RadioButton w627 = new Gtk.RadioButton ("No");
			w627.Group = w625.Group;
			w627.DrawIndicator = true;
			w627.CanFocus = true;
			w627.Name = "ra_GradoNo2";
			this.ra_GradoNo2 = w627;
			w618.Add (w627);
			Gtk.Box.BoxChild w628 = ((Gtk.Box.BoxChild) (w618 [w627]));
			w628.Position = 4;
			w628.Expand = false;
			this.hbox46 = w618;
			w617.Add (w618);
			this.alignment30 = w617;
			w612.Add (w617);
			Gtk.Box.BoxChild w630 = ((Gtk.Box.BoxChild) (w612 [w617]));
			w630.Position = 2;
			this.hbox45 = w612;
			w611.Add (w612);
			Gtk.Box.BoxChild w631 = ((Gtk.Box.BoxChild) (w611 [w612]));
			w631.Position = 0;
			w631.Expand = false;
			w631.Fill = false;
			// Container child vbox24.Gtk.Box+BoxChild
			Gtk.HBox w632 = new Gtk.HBox ();
			w632.BorderWidth = ((uint) (2));
			w632.Name = "hbox47";
			// Container child hbox47.Gtk.Box+BoxChild
			Gtk.Label w633 = new Gtk.Label ();
			w633.LabelProp = "Años Estudio: ";
			w633.Name = "label76";
			this.label76 = w633;
			w632.Add (w633);
			Gtk.Box.BoxChild w634 = ((Gtk.Box.BoxChild) (w632 [w633]));
			w634.Position = 0;
			w634.Expand = false;
			w634.Fill = false;
			// Container child hbox47.Gtk.Box+BoxChild
			Gtk.SpinButton w635 = new Gtk.SpinButton (0, 8, 1);
			w635.Adjustment.PageIncrement = 10;
			w635.ClimbRate = 1;
			w635.Numeric = true;
			w635.CanFocus = true;
			w635.Name = "sp_AniosEst2";
			this.sp_AniosEst2 = w635;
			w632.Add (w635);
			Gtk.Box.BoxChild w636 = ((Gtk.Box.BoxChild) (w632 [w635]));
			w636.Position = 1;
			w636.Expand = false;
			w636.Fill = false;
			// Container child hbox47.Gtk.Box+BoxChild
			Gtk.Label w637 = new Gtk.Label ();
			w637.LabelProp = "Institución: ";
			w637.Name = "label77";
			this.label77 = w637;
			w632.Add (w637);
			Gtk.Box.BoxChild w638 = ((Gtk.Box.BoxChild) (w632 [w637]));
			w638.Position = 2;
			w638.Expand = false;
			w638.Fill = false;
			w638.Padding = ((uint) (21));
			// Container child hbox47.Gtk.Box+BoxChild
			Gtk.Entry w639 = new Gtk.Entry ();
			w639.IsEditable = true;
			w639.WidthChars = 30;
			w639.MaxLength = 40;
			w639.InvisibleChar = '●';
			w639.CanFocus = true;
			w639.Name = "en_Instituto2";
			this.en_Instituto2 = w639;
			w632.Add (w639);
			Gtk.Box.BoxChild w640 = ((Gtk.Box.BoxChild) (w632 [w639]));
			w640.Position = 3;
			w640.Expand = false;
			this.hbox47 = w632;
			w611.Add (w632);
			Gtk.Box.BoxChild w641 = ((Gtk.Box.BoxChild) (w611 [w632]));
			w641.Position = 1;
			w641.Expand = false;
			w641.Fill = false;
			this.vbox24 = w611;
			w610.Add (w611);
			Gtk.Box.BoxChild w642 = ((Gtk.Box.BoxChild) (w610 [w611]));
			w642.Position = 0;
			w642.Expand = false;
			w642.Fill = false;
			this.vbox23 = w610;
			w609.Add (w610);
			this.GtkAlignment24 = w609;
			w608.Add (w609);
			Gtk.Label w645 = new Gtk.Label ();
			w645.LabelProp = "<b>Nivel de Estudios 3</b>";
			w645.UseMarkup = true;
			w645.Xpad = 8;
			w645.Events = ((Gdk.EventMask) (256));
			w645.Name = "GtkLabel56";
			this.GtkLabel56 = w645;
			w608.LabelWidget = w645;
			this.frame26 = w608;
			w607.Add (w608);
			this.alignment29 = w607;
			w522.Add (w607);
			Gtk.Box.BoxChild w647 = ((Gtk.Box.BoxChild) (w522 [w607]));
			w647.Position = 3;
			w647.Expand = false;
			w647.Fill = false;
			// Container child vbox18.Gtk.Box+BoxChild
			Gtk.Alignment w648 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w648.LeftPadding = ((uint) (10));
			w648.RightPadding = ((uint) (10));
			w648.BottomPadding = ((uint) (2));
			w648.Name = "alignment31";
			// Container child alignment31.Gtk.Container+ContainerChild
			Gtk.Frame w649 = new Gtk.Frame ();
			w649.ShadowType = ((Gtk.ShadowType) (4));
			w649.LabelXalign = 0F;
			w649.Name = "frame27";
			// Container child frame27.Gtk.Container+ContainerChild
			Gtk.Alignment w650 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w650.LeftPadding = ((uint) (10));
			w650.RightPadding = ((uint) (10));
			w650.BottomPadding = ((uint) (5));
			w650.Name = "GtkAlignment25";
			// Container child GtkAlignment25.Gtk.Container+ContainerChild
			Gtk.VBox w651 = new Gtk.VBox ();
			w651.Name = "vbox25";
			// Container child vbox25.Gtk.Box+BoxChild
			Gtk.VBox w652 = new Gtk.VBox ();
			w652.Name = "vbox26";
			// Container child vbox26.Gtk.Box+BoxChild
			Gtk.HBox w653 = new Gtk.HBox ();
			w653.BorderWidth = ((uint) (2));
			w653.Name = "hbox48";
			// Container child hbox48.Gtk.Box+BoxChild
			Gtk.Label w654 = new Gtk.Label ();
			w654.LabelProp = "Nivel de Estudio: ";
			w654.Name = "label78";
			this.label78 = w654;
			w653.Add (w654);
			Gtk.Box.BoxChild w655 = ((Gtk.Box.BoxChild) (w653 [w654]));
			w655.Position = 0;
			w655.Expand = false;
			w655.Fill = false;
			// Container child hbox48.Gtk.Box+BoxChild
			Gtk.ComboBox w656 = Gtk.ComboBox.NewText ();
			w656.Active = 0;
			w656.Name = "co_NivEst3";
			this.co_NivEst3 = w656;
			w653.Add (w656);
			Gtk.Box.BoxChild w657 = ((Gtk.Box.BoxChild) (w653 [w656]));
			w657.Position = 1;
			w657.Expand = false;
			w657.Fill = false;
			// Container child hbox48.Gtk.Box+BoxChild
			Gtk.Alignment w658 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w658.LeftPadding = ((uint) (50));
			w658.Name = "alignment32";
			// Container child alignment32.Gtk.Container+ContainerChild
			Gtk.HBox w659 = new Gtk.HBox ();
			w659.Name = "hbox49";
			// Container child hbox49.Gtk.Box+BoxChild
			Gtk.Label w660 = new Gtk.Label ();
			w660.LabelProp = "Estudio: ";
			w660.Name = "label79";
			this.label79 = w660;
			w659.Add (w660);
			Gtk.Box.BoxChild w661 = ((Gtk.Box.BoxChild) (w659 [w660]));
			w661.Position = 0;
			w661.Expand = false;
			w661.Fill = false;
			// Container child hbox49.Gtk.Box+BoxChild
			Gtk.ComboBox w662 = Gtk.ComboBox.NewText ();
			w662.Active = 0;
			w662.Name = "co_Titulo3";
			this.co_Titulo3 = w662;
			w659.Add (w662);
			Gtk.Box.BoxChild w663 = ((Gtk.Box.BoxChild) (w659 [w662]));
			w663.Position = 1;
			w663.Expand = false;
			w663.Fill = false;
			// Container child hbox49.Gtk.Box+BoxChild
			Gtk.Label w664 = new Gtk.Label ();
			w664.LabelProp = " Graduado? ";
			w664.Name = "label194";
			this.label194 = w664;
			w659.Add (w664);
			Gtk.Box.BoxChild w665 = ((Gtk.Box.BoxChild) (w659 [w664]));
			w665.Position = 2;
			w665.Expand = false;
			w665.Fill = false;
			// Container child hbox49.Gtk.Box+BoxChild
			Gtk.RadioButton w666 = new Gtk.RadioButton ("Si");
			w666.Group = new GLib.SList (System.IntPtr.Zero);
			w666.Active = true;
			w666.DrawIndicator = true;
			w666.CanFocus = true;
			w666.Name = "ra_GradoSi3";
			this.ra_GradoSi3 = w666;
			w659.Add (w666);
			Gtk.Box.BoxChild w667 = ((Gtk.Box.BoxChild) (w659 [w666]));
			w667.Position = 3;
			w667.Expand = false;
			// Container child hbox49.Gtk.Box+BoxChild
			Gtk.RadioButton w668 = new Gtk.RadioButton ("No");
			w668.Group = w666.Group;
			w668.DrawIndicator = true;
			w668.CanFocus = true;
			w668.Name = "ra_GradoNo3";
			this.ra_GradoNo3 = w668;
			w659.Add (w668);
			Gtk.Box.BoxChild w669 = ((Gtk.Box.BoxChild) (w659 [w668]));
			w669.Position = 4;
			w669.Expand = false;
			this.hbox49 = w659;
			w658.Add (w659);
			this.alignment32 = w658;
			w653.Add (w658);
			Gtk.Box.BoxChild w671 = ((Gtk.Box.BoxChild) (w653 [w658]));
			w671.Position = 2;
			this.hbox48 = w653;
			w652.Add (w653);
			Gtk.Box.BoxChild w672 = ((Gtk.Box.BoxChild) (w652 [w653]));
			w672.Position = 0;
			w672.Expand = false;
			w672.Fill = false;
			// Container child vbox26.Gtk.Box+BoxChild
			Gtk.HBox w673 = new Gtk.HBox ();
			w673.BorderWidth = ((uint) (2));
			w673.Name = "hbox50";
			// Container child hbox50.Gtk.Box+BoxChild
			Gtk.Label w674 = new Gtk.Label ();
			w674.LabelProp = "Años Estudio: ";
			w674.Name = "label80";
			this.label80 = w674;
			w673.Add (w674);
			Gtk.Box.BoxChild w675 = ((Gtk.Box.BoxChild) (w673 [w674]));
			w675.Position = 0;
			w675.Expand = false;
			w675.Fill = false;
			// Container child hbox50.Gtk.Box+BoxChild
			Gtk.SpinButton w676 = new Gtk.SpinButton (0, 8, 1);
			w676.Adjustment.PageIncrement = 10;
			w676.ClimbRate = 1;
			w676.Numeric = true;
			w676.CanFocus = true;
			w676.Name = "sp_AniosEst3";
			this.sp_AniosEst3 = w676;
			w673.Add (w676);
			Gtk.Box.BoxChild w677 = ((Gtk.Box.BoxChild) (w673 [w676]));
			w677.Position = 1;
			w677.Expand = false;
			w677.Fill = false;
			// Container child hbox50.Gtk.Box+BoxChild
			Gtk.Label w678 = new Gtk.Label ();
			w678.LabelProp = "Institución: ";
			w678.Name = "label81";
			this.label81 = w678;
			w673.Add (w678);
			Gtk.Box.BoxChild w679 = ((Gtk.Box.BoxChild) (w673 [w678]));
			w679.Position = 2;
			w679.Expand = false;
			w679.Fill = false;
			w679.Padding = ((uint) (21));
			// Container child hbox50.Gtk.Box+BoxChild
			Gtk.Entry w680 = new Gtk.Entry ();
			w680.IsEditable = true;
			w680.WidthChars = 30;
			w680.MaxLength = 40;
			w680.InvisibleChar = '●';
			w680.CanFocus = true;
			w680.Name = "en_Instituto3";
			this.en_Instituto3 = w680;
			w673.Add (w680);
			Gtk.Box.BoxChild w681 = ((Gtk.Box.BoxChild) (w673 [w680]));
			w681.Position = 3;
			w681.Expand = false;
			this.hbox50 = w673;
			w652.Add (w673);
			Gtk.Box.BoxChild w682 = ((Gtk.Box.BoxChild) (w652 [w673]));
			w682.Position = 1;
			w682.Expand = false;
			w682.Fill = false;
			this.vbox26 = w652;
			w651.Add (w652);
			Gtk.Box.BoxChild w683 = ((Gtk.Box.BoxChild) (w651 [w652]));
			w683.Position = 0;
			w683.Expand = false;
			w683.Fill = false;
			this.vbox25 = w651;
			w650.Add (w651);
			this.GtkAlignment25 = w650;
			w649.Add (w650);
			Gtk.Label w686 = new Gtk.Label ();
			w686.LabelProp = "<b>Nivel de Estudios 4</b>";
			w686.UseMarkup = true;
			w686.Xpad = 8;
			w686.Events = ((Gdk.EventMask) (256));
			w686.Name = "GtkLabel57";
			this.GtkLabel57 = w686;
			w649.LabelWidget = w686;
			this.frame27 = w649;
			w648.Add (w649);
			this.alignment31 = w648;
			w522.Add (w648);
			Gtk.Box.BoxChild w688 = ((Gtk.Box.BoxChild) (w522 [w648]));
			w688.Position = 4;
			w688.Expand = false;
			w688.Fill = false;
			this.vbox18 = w522;
			w521.Add (w522);
			w520.Add (w521);
			this.scrolledwindow5 = w520;
			w136.Add (w520);
			Gtk.Notebook.NotebookChild w691 = ((Gtk.Notebook.NotebookChild) (w136 [w520]));
			w691.Position = 3;
			w691.TabExpand = false;
			// Notebook tab
			Gtk.Label w692 = new Gtk.Label ();
			w692.LabelProp = "Nivel de\nEstudios";
			w692.Justify = ((Gtk.Justification) (2));
			w692.Name = "la_NivEstudios";
			this.la_NivEstudios = w692;
			w136.SetTabLabel (w520, w692);
			// Container child notebook1.Gtk.Notebook+NotebookChild
			Gtk.ScrolledWindow w693 = new Gtk.ScrolledWindow ();
			w693.VscrollbarPolicy = ((Gtk.PolicyType) (1));
			w693.HscrollbarPolicy = ((Gtk.PolicyType) (1));
			w693.CanFocus = true;
			w693.Name = "scrolledwindow7";
			// Container child scrolledwindow7.Gtk.Container+ContainerChild
			Gtk.Viewport w694 = new Gtk.Viewport ();
			w694.ShadowType = ((Gtk.ShadowType) (0));
			w694.Name = "GtkViewport6";
			// Container child GtkViewport6.Gtk.Container+ContainerChild
			Gtk.VBox w695 = new Gtk.VBox ();
			w695.Name = "vbox27";
			// Container child vbox27.Gtk.Box+BoxChild
			Gtk.Alignment w696 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w696.LeftPadding = ((uint) (10));
			w696.RightPadding = ((uint) (10));
			w696.BottomPadding = ((uint) (5));
			w696.Name = "alignment33";
			// Container child alignment33.Gtk.Container+ContainerChild
			Gtk.Frame w697 = new Gtk.Frame ();
			w697.ShadowType = ((Gtk.ShadowType) (4));
			w697.LabelXalign = 0F;
			w697.Name = "frame28";
			// Container child frame28.Gtk.Container+ContainerChild
			Gtk.Alignment w698 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w698.LeftPadding = ((uint) (12));
			w698.Name = "GtkAlignment26";
			// Container child GtkAlignment26.Gtk.Container+ContainerChild
			Gtk.VBox w699 = new Gtk.VBox ();
			w699.Name = "vbox28";
			// Container child vbox28.Gtk.Box+BoxChild
			Gtk.HBox w700 = new Gtk.HBox ();
			w700.BorderWidth = ((uint) (2));
			w700.Name = "hbox51";
			// Container child hbox51.Gtk.Box+BoxChild
			Gtk.Label w701 = new Gtk.Label ();
			w701.LabelProp = "Area:   ";
			w701.Name = "label83";
			this.label83 = w701;
			w700.Add (w701);
			Gtk.Box.BoxChild w702 = ((Gtk.Box.BoxChild) (w700 [w701]));
			w702.Position = 0;
			w702.Expand = false;
			w702.Fill = false;
			// Container child hbox51.Gtk.Box+BoxChild
			Gtk.ComboBox w703 = Gtk.ComboBox.NewText ();
			w703.Active = 0;
			w703.Name = "co_AreaConoc1";
			this.co_AreaConoc1 = w703;
			w700.Add (w703);
			Gtk.Box.BoxChild w704 = ((Gtk.Box.BoxChild) (w700 [w703]));
			w704.Position = 1;
			w704.Expand = false;
			w704.Fill = false;
			// Container child hbox51.Gtk.Box+BoxChild
			Gtk.Label w705 = new Gtk.Label ();
			w705.LabelProp = "Conocimiento de: ";
			w705.Name = "label84";
			this.label84 = w705;
			w700.Add (w705);
			Gtk.Box.BoxChild w706 = ((Gtk.Box.BoxChild) (w700 [w705]));
			w706.Position = 2;
			w706.Expand = false;
			w706.Fill = false;
			// Container child hbox51.Gtk.Box+BoxChild
			Gtk.ComboBox w707 = Gtk.ComboBox.NewText ();
			w707.Active = 0;
			w707.Name = "co_NivConoc1";
			this.co_NivConoc1 = w707;
			w700.Add (w707);
			Gtk.Box.BoxChild w708 = ((Gtk.Box.BoxChild) (w700 [w707]));
			w708.Position = 3;
			w708.Expand = false;
			w708.Fill = false;
			this.hbox51 = w700;
			w699.Add (w700);
			Gtk.Box.BoxChild w709 = ((Gtk.Box.BoxChild) (w699 [w700]));
			w709.Position = 0;
			w709.Expand = false;
			w709.Fill = false;
			// Container child vbox28.Gtk.Box+BoxChild
			Gtk.HBox w710 = new Gtk.HBox ();
			w710.BorderWidth = ((uint) (2));
			w710.Name = "hbox52";
			// Container child hbox52.Gtk.Box+BoxChild
			Gtk.Label w711 = new Gtk.Label ();
			w711.LabelProp = "Area:   ";
			w711.Name = "label85";
			this.label85 = w711;
			w710.Add (w711);
			Gtk.Box.BoxChild w712 = ((Gtk.Box.BoxChild) (w710 [w711]));
			w712.Position = 0;
			w712.Expand = false;
			w712.Fill = false;
			// Container child hbox52.Gtk.Box+BoxChild
			Gtk.ComboBox w713 = Gtk.ComboBox.NewText ();
			w713.Active = 0;
			w713.Name = "co_AreaConoc2";
			this.co_AreaConoc2 = w713;
			w710.Add (w713);
			Gtk.Box.BoxChild w714 = ((Gtk.Box.BoxChild) (w710 [w713]));
			w714.Position = 1;
			w714.Expand = false;
			w714.Fill = false;
			// Container child hbox52.Gtk.Box+BoxChild
			Gtk.Label w715 = new Gtk.Label ();
			w715.LabelProp = "Conocimiento de: ";
			w715.Name = "label86";
			this.label86 = w715;
			w710.Add (w715);
			Gtk.Box.BoxChild w716 = ((Gtk.Box.BoxChild) (w710 [w715]));
			w716.Position = 2;
			w716.Expand = false;
			w716.Fill = false;
			// Container child hbox52.Gtk.Box+BoxChild
			Gtk.ComboBox w717 = Gtk.ComboBox.NewText ();
			w717.Active = 0;
			w717.Name = "co_NivConoc2";
			this.co_NivConoc2 = w717;
			w710.Add (w717);
			Gtk.Box.BoxChild w718 = ((Gtk.Box.BoxChild) (w710 [w717]));
			w718.Position = 3;
			w718.Expand = false;
			w718.Fill = false;
			this.hbox52 = w710;
			w699.Add (w710);
			Gtk.Box.BoxChild w719 = ((Gtk.Box.BoxChild) (w699 [w710]));
			w719.Position = 1;
			w719.Expand = false;
			w719.Fill = false;
			// Container child vbox28.Gtk.Box+BoxChild
			Gtk.HBox w720 = new Gtk.HBox ();
			w720.BorderWidth = ((uint) (2));
			w720.Name = "hbox76";
			// Container child hbox76.Gtk.Box+BoxChild
			Gtk.Label w721 = new Gtk.Label ();
			w721.LabelProp = "Area:   ";
			w721.Name = "label170";
			this.label170 = w721;
			w720.Add (w721);
			Gtk.Box.BoxChild w722 = ((Gtk.Box.BoxChild) (w720 [w721]));
			w722.Position = 0;
			w722.Expand = false;
			w722.Fill = false;
			// Container child hbox76.Gtk.Box+BoxChild
			Gtk.ComboBox w723 = Gtk.ComboBox.NewText ();
			w723.Active = 0;
			w723.Name = "co_AreaConoc3";
			this.co_AreaConoc3 = w723;
			w720.Add (w723);
			Gtk.Box.BoxChild w724 = ((Gtk.Box.BoxChild) (w720 [w723]));
			w724.Position = 1;
			w724.Expand = false;
			w724.Fill = false;
			// Container child hbox76.Gtk.Box+BoxChild
			Gtk.Label w725 = new Gtk.Label ();
			w725.LabelProp = "Conocimiento de: ";
			w725.Name = "label171";
			this.label171 = w725;
			w720.Add (w725);
			Gtk.Box.BoxChild w726 = ((Gtk.Box.BoxChild) (w720 [w725]));
			w726.Position = 2;
			w726.Expand = false;
			w726.Fill = false;
			// Container child hbox76.Gtk.Box+BoxChild
			Gtk.ComboBox w727 = Gtk.ComboBox.NewText ();
			w727.Active = 0;
			w727.Name = "co_NivConoc3";
			this.co_NivConoc3 = w727;
			w720.Add (w727);
			Gtk.Box.BoxChild w728 = ((Gtk.Box.BoxChild) (w720 [w727]));
			w728.Position = 3;
			w728.Expand = false;
			w728.Fill = false;
			this.hbox76 = w720;
			w699.Add (w720);
			Gtk.Box.BoxChild w729 = ((Gtk.Box.BoxChild) (w699 [w720]));
			w729.Position = 2;
			w729.Expand = false;
			w729.Fill = false;
			// Container child vbox28.Gtk.Box+BoxChild
			Gtk.HBox w730 = new Gtk.HBox ();
			w730.BorderWidth = ((uint) (2));
			w730.Name = "hbox75";
			// Container child hbox75.Gtk.Box+BoxChild
			Gtk.Label w731 = new Gtk.Label ();
			w731.LabelProp = "Area:   ";
			w731.Name = "label168";
			this.label168 = w731;
			w730.Add (w731);
			Gtk.Box.BoxChild w732 = ((Gtk.Box.BoxChild) (w730 [w731]));
			w732.Position = 0;
			w732.Expand = false;
			w732.Fill = false;
			// Container child hbox75.Gtk.Box+BoxChild
			Gtk.ComboBox w733 = Gtk.ComboBox.NewText ();
			w733.Active = 0;
			w733.Name = "co_AreaConoc4";
			this.co_AreaConoc4 = w733;
			w730.Add (w733);
			Gtk.Box.BoxChild w734 = ((Gtk.Box.BoxChild) (w730 [w733]));
			w734.Position = 1;
			w734.Expand = false;
			w734.Fill = false;
			// Container child hbox75.Gtk.Box+BoxChild
			Gtk.Label w735 = new Gtk.Label ();
			w735.LabelProp = "Conocimiento de: ";
			w735.Name = "label169";
			this.label169 = w735;
			w730.Add (w735);
			Gtk.Box.BoxChild w736 = ((Gtk.Box.BoxChild) (w730 [w735]));
			w736.Position = 2;
			w736.Expand = false;
			w736.Fill = false;
			// Container child hbox75.Gtk.Box+BoxChild
			Gtk.ComboBox w737 = Gtk.ComboBox.NewText ();
			w737.Active = 0;
			w737.Name = "co_NivConoc4";
			this.co_NivConoc4 = w737;
			w730.Add (w737);
			Gtk.Box.BoxChild w738 = ((Gtk.Box.BoxChild) (w730 [w737]));
			w738.Position = 3;
			w738.Expand = false;
			w738.Fill = false;
			this.hbox75 = w730;
			w699.Add (w730);
			Gtk.Box.BoxChild w739 = ((Gtk.Box.BoxChild) (w699 [w730]));
			w739.Position = 3;
			w739.Expand = false;
			w739.Fill = false;
			this.vbox28 = w699;
			w698.Add (w699);
			this.GtkAlignment26 = w698;
			w697.Add (w698);
			Gtk.Label w742 = new Gtk.Label ();
			w742.LabelProp = "<b>Conocimientos de:</b>";
			w742.UseMarkup = true;
			w742.Xpad = 8;
			w742.Events = ((Gdk.EventMask) (256));
			w742.Name = "GtkLabel58";
			this.GtkLabel58 = w742;
			w697.LabelWidget = w742;
			this.frame28 = w697;
			w696.Add (w697);
			this.alignment33 = w696;
			w695.Add (w696);
			Gtk.Box.BoxChild w744 = ((Gtk.Box.BoxChild) (w695 [w696]));
			w744.Position = 0;
			w744.Expand = false;
			w744.Fill = false;
			// Container child vbox27.Gtk.Box+BoxChild
			Gtk.Alignment w745 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w745.LeftPadding = ((uint) (10));
			w745.RightPadding = ((uint) (10));
			w745.BottomPadding = ((uint) (5));
			w745.Name = "alignment34";
			// Container child alignment34.Gtk.Container+ContainerChild
			Gtk.Frame w746 = new Gtk.Frame ();
			w746.ShadowType = ((Gtk.ShadowType) (4));
			w746.LabelXalign = 0F;
			w746.Name = "frame29";
			// Container child frame29.Gtk.Container+ContainerChild
			Gtk.Alignment w747 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w747.LeftPadding = ((uint) (12));
			w747.Name = "GtkAlignment27";
			// Container child GtkAlignment27.Gtk.Container+ContainerChild
			Gtk.VBox w748 = new Gtk.VBox ();
			w748.Name = "vbox29";
			// Container child vbox29.Gtk.Box+BoxChild
			Gtk.HBox w749 = new Gtk.HBox ();
			w749.BorderWidth = ((uint) (5));
			w749.Name = "hbox53";
			// Container child hbox53.Gtk.Box+BoxChild
			Gtk.Label w750 = new Gtk.Label ();
			w750.LabelProp = "Idioma: ";
			w750.Name = "label87";
			this.label87 = w750;
			w749.Add (w750);
			Gtk.Box.BoxChild w751 = ((Gtk.Box.BoxChild) (w749 [w750]));
			w751.Position = 0;
			w751.Expand = false;
			w751.Fill = false;
			// Container child hbox53.Gtk.Box+BoxChild
			Gtk.ComboBox w752 = Gtk.ComboBox.NewText ();
			w752.Active = 0;
			w752.Name = "com_Idioma1";
			this.com_Idioma1 = w752;
			w749.Add (w752);
			Gtk.Box.BoxChild w753 = ((Gtk.Box.BoxChild) (w749 [w752]));
			w753.Position = 1;
			w753.Expand = false;
			w753.Fill = false;
			// Container child hbox53.Gtk.Box+BoxChild
			Gtk.Alignment w754 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w754.LeftPadding = ((uint) (5));
			w754.Name = "alignment35";
			// Container child alignment35.Gtk.Container+ContainerChild
			Gtk.Label w755 = new Gtk.Label ();
			w755.LabelProp = "Habla:  ";
			w755.Name = "label88";
			this.label88 = w755;
			w754.Add (w755);
			this.alignment35 = w754;
			w749.Add (w754);
			Gtk.Box.BoxChild w757 = ((Gtk.Box.BoxChild) (w749 [w754]));
			w757.Position = 2;
			w757.Expand = false;
			w757.Fill = false;
			// Container child hbox53.Gtk.Box+BoxChild
			Gtk.ComboBox w758 = Gtk.ComboBox.NewText ();
			w758.Active = 0;
			w758.Name = "com_Habla1";
			this.com_Habla1 = w758;
			w749.Add (w758);
			Gtk.Box.BoxChild w759 = ((Gtk.Box.BoxChild) (w749 [w758]));
			w759.Position = 3;
			w759.Expand = false;
			w759.Fill = false;
			// Container child hbox53.Gtk.Box+BoxChild
			Gtk.Label w760 = new Gtk.Label ();
			w760.LabelProp = "Lee: ";
			w760.Xpad = 7;
			w760.Name = "label89";
			this.label89 = w760;
			w749.Add (w760);
			Gtk.Box.BoxChild w761 = ((Gtk.Box.BoxChild) (w749 [w760]));
			w761.Position = 4;
			w761.Expand = false;
			w761.Fill = false;
			// Container child hbox53.Gtk.Box+BoxChild
			Gtk.ComboBox w762 = Gtk.ComboBox.NewText ();
			w762.Active = 0;
			w762.Name = "com_Lee1";
			this.com_Lee1 = w762;
			w749.Add (w762);
			Gtk.Box.BoxChild w763 = ((Gtk.Box.BoxChild) (w749 [w762]));
			w763.Position = 5;
			w763.Expand = false;
			w763.Fill = false;
			// Container child hbox53.Gtk.Box+BoxChild
			Gtk.Label w764 = new Gtk.Label ();
			w764.LabelProp = "Escribe: ";
			w764.Xpad = 7;
			w764.Name = "label90";
			this.label90 = w764;
			w749.Add (w764);
			Gtk.Box.BoxChild w765 = ((Gtk.Box.BoxChild) (w749 [w764]));
			w765.Position = 6;
			w765.Expand = false;
			w765.Fill = false;
			// Container child hbox53.Gtk.Box+BoxChild
			Gtk.ComboBox w766 = Gtk.ComboBox.NewText ();
			w766.Active = 0;
			w766.Name = "com_Escribe1";
			this.com_Escribe1 = w766;
			w749.Add (w766);
			Gtk.Box.BoxChild w767 = ((Gtk.Box.BoxChild) (w749 [w766]));
			w767.Position = 7;
			w767.Expand = false;
			w767.Fill = false;
			this.hbox53 = w749;
			w748.Add (w749);
			Gtk.Box.BoxChild w768 = ((Gtk.Box.BoxChild) (w748 [w749]));
			w768.Position = 0;
			w768.Expand = false;
			w768.Fill = false;
			// Container child vbox29.Gtk.Box+BoxChild
			Gtk.HBox w769 = new Gtk.HBox ();
			w769.BorderWidth = ((uint) (5));
			w769.Name = "hbox54";
			// Container child hbox54.Gtk.Box+BoxChild
			Gtk.Label w770 = new Gtk.Label ();
			w770.LabelProp = "Idioma: ";
			w770.Name = "label91";
			this.label91 = w770;
			w769.Add (w770);
			Gtk.Box.BoxChild w771 = ((Gtk.Box.BoxChild) (w769 [w770]));
			w771.Position = 0;
			w771.Expand = false;
			w771.Fill = false;
			// Container child hbox54.Gtk.Box+BoxChild
			Gtk.ComboBox w772 = Gtk.ComboBox.NewText ();
			w772.Active = 0;
			w772.Name = "com_Idioma2";
			this.com_Idioma2 = w772;
			w769.Add (w772);
			Gtk.Box.BoxChild w773 = ((Gtk.Box.BoxChild) (w769 [w772]));
			w773.Position = 1;
			w773.Expand = false;
			w773.Fill = false;
			// Container child hbox54.Gtk.Box+BoxChild
			Gtk.Alignment w774 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w774.LeftPadding = ((uint) (5));
			w774.Name = "alignment36";
			// Container child alignment36.Gtk.Container+ContainerChild
			Gtk.Label w775 = new Gtk.Label ();
			w775.LabelProp = "Habla:  ";
			w775.Name = "label92";
			this.label92 = w775;
			w774.Add (w775);
			this.alignment36 = w774;
			w769.Add (w774);
			Gtk.Box.BoxChild w777 = ((Gtk.Box.BoxChild) (w769 [w774]));
			w777.Position = 2;
			w777.Expand = false;
			w777.Fill = false;
			// Container child hbox54.Gtk.Box+BoxChild
			Gtk.ComboBox w778 = Gtk.ComboBox.NewText ();
			w778.Active = 0;
			w778.Name = "com_Habla2";
			this.com_Habla2 = w778;
			w769.Add (w778);
			Gtk.Box.BoxChild w779 = ((Gtk.Box.BoxChild) (w769 [w778]));
			w779.Position = 3;
			w779.Expand = false;
			w779.Fill = false;
			// Container child hbox54.Gtk.Box+BoxChild
			Gtk.Label w780 = new Gtk.Label ();
			w780.LabelProp = "Lee: ";
			w780.Xpad = 7;
			w780.Name = "label93";
			this.label93 = w780;
			w769.Add (w780);
			Gtk.Box.BoxChild w781 = ((Gtk.Box.BoxChild) (w769 [w780]));
			w781.Position = 4;
			w781.Expand = false;
			w781.Fill = false;
			// Container child hbox54.Gtk.Box+BoxChild
			Gtk.ComboBox w782 = Gtk.ComboBox.NewText ();
			w782.Active = 0;
			w782.Name = "com_Lee2";
			this.com_Lee2 = w782;
			w769.Add (w782);
			Gtk.Box.BoxChild w783 = ((Gtk.Box.BoxChild) (w769 [w782]));
			w783.Position = 5;
			w783.Expand = false;
			w783.Fill = false;
			// Container child hbox54.Gtk.Box+BoxChild
			Gtk.Label w784 = new Gtk.Label ();
			w784.LabelProp = "Escribe: ";
			w784.Xpad = 7;
			w784.Name = "label94";
			this.label94 = w784;
			w769.Add (w784);
			Gtk.Box.BoxChild w785 = ((Gtk.Box.BoxChild) (w769 [w784]));
			w785.Position = 6;
			w785.Expand = false;
			w785.Fill = false;
			// Container child hbox54.Gtk.Box+BoxChild
			Gtk.ComboBox w786 = Gtk.ComboBox.NewText ();
			w786.Active = 0;
			w786.Name = "com_Escribe2";
			this.com_Escribe2 = w786;
			w769.Add (w786);
			Gtk.Box.BoxChild w787 = ((Gtk.Box.BoxChild) (w769 [w786]));
			w787.Position = 7;
			w787.Expand = false;
			w787.Fill = false;
			this.hbox54 = w769;
			w748.Add (w769);
			Gtk.Box.BoxChild w788 = ((Gtk.Box.BoxChild) (w748 [w769]));
			w788.Position = 1;
			w788.Expand = false;
			w788.Fill = false;
			// Container child vbox29.Gtk.Box+BoxChild
			Gtk.HBox w789 = new Gtk.HBox ();
			w789.BorderWidth = ((uint) (5));
			w789.Name = "hbox55";
			// Container child hbox55.Gtk.Box+BoxChild
			Gtk.Label w790 = new Gtk.Label ();
			w790.LabelProp = "Idioma: ";
			w790.Name = "label95";
			this.label95 = w790;
			w789.Add (w790);
			Gtk.Box.BoxChild w791 = ((Gtk.Box.BoxChild) (w789 [w790]));
			w791.Position = 0;
			w791.Expand = false;
			w791.Fill = false;
			// Container child hbox55.Gtk.Box+BoxChild
			Gtk.ComboBox w792 = Gtk.ComboBox.NewText ();
			w792.Active = 0;
			w792.Name = "com_Idioma3";
			this.com_Idioma3 = w792;
			w789.Add (w792);
			Gtk.Box.BoxChild w793 = ((Gtk.Box.BoxChild) (w789 [w792]));
			w793.Position = 1;
			w793.Expand = false;
			w793.Fill = false;
			// Container child hbox55.Gtk.Box+BoxChild
			Gtk.Alignment w794 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w794.LeftPadding = ((uint) (5));
			w794.Name = "alignment37";
			// Container child alignment37.Gtk.Container+ContainerChild
			Gtk.Label w795 = new Gtk.Label ();
			w795.LabelProp = "Habla:  ";
			w795.Name = "label96";
			this.label96 = w795;
			w794.Add (w795);
			this.alignment37 = w794;
			w789.Add (w794);
			Gtk.Box.BoxChild w797 = ((Gtk.Box.BoxChild) (w789 [w794]));
			w797.Position = 2;
			w797.Expand = false;
			w797.Fill = false;
			// Container child hbox55.Gtk.Box+BoxChild
			Gtk.ComboBox w798 = Gtk.ComboBox.NewText ();
			w798.Active = 0;
			w798.Name = "com_Habla3";
			this.com_Habla3 = w798;
			w789.Add (w798);
			Gtk.Box.BoxChild w799 = ((Gtk.Box.BoxChild) (w789 [w798]));
			w799.Position = 3;
			w799.Expand = false;
			w799.Fill = false;
			// Container child hbox55.Gtk.Box+BoxChild
			Gtk.Label w800 = new Gtk.Label ();
			w800.LabelProp = "Lee: ";
			w800.Xpad = 7;
			w800.Name = "label97";
			this.label97 = w800;
			w789.Add (w800);
			Gtk.Box.BoxChild w801 = ((Gtk.Box.BoxChild) (w789 [w800]));
			w801.Position = 4;
			w801.Expand = false;
			w801.Fill = false;
			// Container child hbox55.Gtk.Box+BoxChild
			Gtk.ComboBox w802 = Gtk.ComboBox.NewText ();
			w802.Active = 0;
			w802.Name = "com_Lee3";
			this.com_Lee3 = w802;
			w789.Add (w802);
			Gtk.Box.BoxChild w803 = ((Gtk.Box.BoxChild) (w789 [w802]));
			w803.Position = 5;
			w803.Expand = false;
			w803.Fill = false;
			// Container child hbox55.Gtk.Box+BoxChild
			Gtk.Label w804 = new Gtk.Label ();
			w804.LabelProp = "Escribe: ";
			w804.Xpad = 7;
			w804.Name = "label98";
			this.label98 = w804;
			w789.Add (w804);
			Gtk.Box.BoxChild w805 = ((Gtk.Box.BoxChild) (w789 [w804]));
			w805.Position = 6;
			w805.Expand = false;
			w805.Fill = false;
			// Container child hbox55.Gtk.Box+BoxChild
			Gtk.ComboBox w806 = Gtk.ComboBox.NewText ();
			w806.Active = 0;
			w806.Name = "com_Escribe3";
			this.com_Escribe3 = w806;
			w789.Add (w806);
			Gtk.Box.BoxChild w807 = ((Gtk.Box.BoxChild) (w789 [w806]));
			w807.Position = 7;
			w807.Expand = false;
			w807.Fill = false;
			this.hbox55 = w789;
			w748.Add (w789);
			Gtk.Box.BoxChild w808 = ((Gtk.Box.BoxChild) (w748 [w789]));
			w808.Position = 2;
			w808.Expand = false;
			w808.Fill = false;
			// Container child vbox29.Gtk.Box+BoxChild
			Gtk.HBox w809 = new Gtk.HBox ();
			w809.BorderWidth = ((uint) (5));
			w809.Name = "hbox78";
			// Container child hbox78.Gtk.Box+BoxChild
			Gtk.Label w810 = new Gtk.Label ();
			w810.LabelProp = "Otro Idioma: ";
			w810.Name = "label184";
			this.label184 = w810;
			w809.Add (w810);
			Gtk.Box.BoxChild w811 = ((Gtk.Box.BoxChild) (w809 [w810]));
			w811.Position = 0;
			w811.Expand = false;
			w811.Fill = false;
			// Container child hbox78.Gtk.Box+BoxChild
			Gtk.Entry w812 = new Gtk.Entry ();
			w812.IsEditable = true;
			w812.WidthChars = 15;
			w812.MaxLength = 15;
			w812.InvisibleChar = '●';
			w812.CanFocus = true;
			w812.Name = "en_OtroIdioma";
			this.en_OtroIdioma = w812;
			w809.Add (w812);
			Gtk.Box.BoxChild w813 = ((Gtk.Box.BoxChild) (w809 [w812]));
			w813.Position = 1;
			w813.Expand = false;
			// Container child hbox78.Gtk.Box+BoxChild
			Gtk.Alignment w814 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w814.LeftPadding = ((uint) (5));
			w814.Name = "alignment60";
			// Container child alignment60.Gtk.Container+ContainerChild
			Gtk.Label w815 = new Gtk.Label ();
			w815.LabelProp = "Habla:  ";
			w815.Name = "label186";
			this.label186 = w815;
			w814.Add (w815);
			this.alignment60 = w814;
			w809.Add (w814);
			Gtk.Box.BoxChild w817 = ((Gtk.Box.BoxChild) (w809 [w814]));
			w817.Position = 2;
			w817.Expand = false;
			w817.Fill = false;
			// Container child hbox78.Gtk.Box+BoxChild
			Gtk.ComboBox w818 = Gtk.ComboBox.NewText ();
			w818.AppendText ("");
			w818.AppendText ("Bien");
			w818.AppendText ("Regular");
			w818.AppendText ("Mal");
			w818.Active = 0;
			w818.Name = "com_Habla4";
			this.com_Habla4 = w818;
			w809.Add (w818);
			Gtk.Box.BoxChild w819 = ((Gtk.Box.BoxChild) (w809 [w818]));
			w819.Position = 3;
			w819.Expand = false;
			w819.Fill = false;
			// Container child hbox78.Gtk.Box+BoxChild
			Gtk.Label w820 = new Gtk.Label ();
			w820.LabelProp = "Lee: ";
			w820.Xpad = 7;
			w820.Name = "label187";
			this.label187 = w820;
			w809.Add (w820);
			Gtk.Box.BoxChild w821 = ((Gtk.Box.BoxChild) (w809 [w820]));
			w821.Position = 4;
			w821.Expand = false;
			w821.Fill = false;
			// Container child hbox78.Gtk.Box+BoxChild
			Gtk.ComboBox w822 = Gtk.ComboBox.NewText ();
			w822.AppendText ("");
			w822.AppendText ("Bien");
			w822.AppendText ("Regular");
			w822.AppendText ("Mal");
			w822.Active = 0;
			w822.Name = "com_Lee4";
			this.com_Lee4 = w822;
			w809.Add (w822);
			Gtk.Box.BoxChild w823 = ((Gtk.Box.BoxChild) (w809 [w822]));
			w823.Position = 5;
			w823.Expand = false;
			w823.Fill = false;
			// Container child hbox78.Gtk.Box+BoxChild
			Gtk.Label w824 = new Gtk.Label ();
			w824.LabelProp = "Escribe: ";
			w824.Xpad = 7;
			w824.Name = "label188";
			this.label188 = w824;
			w809.Add (w824);
			Gtk.Box.BoxChild w825 = ((Gtk.Box.BoxChild) (w809 [w824]));
			w825.Position = 6;
			w825.Expand = false;
			w825.Fill = false;
			// Container child hbox78.Gtk.Box+BoxChild
			Gtk.ComboBox w826 = Gtk.ComboBox.NewText ();
			w826.AppendText ("");
			w826.AppendText ("Bien");
			w826.AppendText ("Regular");
			w826.AppendText ("Mal");
			w826.Active = 0;
			w826.Name = "com_Escribe4";
			this.com_Escribe4 = w826;
			w809.Add (w826);
			Gtk.Box.BoxChild w827 = ((Gtk.Box.BoxChild) (w809 [w826]));
			w827.Position = 7;
			w827.Expand = false;
			w827.Fill = false;
			this.hbox78 = w809;
			w748.Add (w809);
			Gtk.Box.BoxChild w828 = ((Gtk.Box.BoxChild) (w748 [w809]));
			w828.Position = 3;
			w828.Expand = false;
			w828.Fill = false;
			this.vbox29 = w748;
			w747.Add (w748);
			this.GtkAlignment27 = w747;
			w746.Add (w747);
			Gtk.Label w831 = new Gtk.Label ();
			w831.LabelProp = "<b>Idiomas:</b>";
			w831.UseMarkup = true;
			w831.Xpad = 8;
			w831.Events = ((Gdk.EventMask) (256));
			w831.Name = "GtkLabel59";
			this.GtkLabel59 = w831;
			w746.LabelWidget = w831;
			this.frame29 = w746;
			w745.Add (w746);
			this.alignment34 = w745;
			w695.Add (w745);
			Gtk.Box.BoxChild w833 = ((Gtk.Box.BoxChild) (w695 [w745]));
			w833.Position = 1;
			w833.Expand = false;
			w833.Fill = false;
			this.vbox27 = w695;
			w694.Add (w695);
			w693.Add (w694);
			this.scrolledwindow7 = w693;
			w136.Add (w693);
			Gtk.Notebook.NotebookChild w836 = ((Gtk.Notebook.NotebookChild) (w136 [w693]));
			w836.Position = 4;
			w836.TabExpand = false;
			// Notebook tab
			Gtk.Label w837 = new Gtk.Label ();
			w837.LabelProp = "Otros niveles de\nConocimiento";
			w837.Justify = ((Gtk.Justification) (2));
			w837.Name = "la_NivConoci";
			this.la_NivConoci = w837;
			w136.SetTabLabel (w693, w837);
			// Container child notebook1.Gtk.Notebook+NotebookChild
			Gtk.ScrolledWindow w838 = new Gtk.ScrolledWindow ();
			w838.VscrollbarPolicy = ((Gtk.PolicyType) (1));
			w838.HscrollbarPolicy = ((Gtk.PolicyType) (1));
			w838.CanFocus = true;
			w838.Name = "scrolledwindow6";
			// Container child scrolledwindow6.Gtk.Container+ContainerChild
			Gtk.Viewport w839 = new Gtk.Viewport ();
			w839.ShadowType = ((Gtk.ShadowType) (0));
			w839.Name = "GtkViewport5";
			// Container child GtkViewport5.Gtk.Container+ContainerChild
			Gtk.VBox w840 = new Gtk.VBox ();
			w840.Name = "vbox14";
			// Container child vbox14.Gtk.Box+BoxChild
			Gtk.HBox w841 = new Gtk.HBox ();
			w841.HeightRequest = 43;
			w841.Name = "hbox38";
			// Container child hbox38.Gtk.Box+BoxChild
			Gtk.Label w842 = new Gtk.Label ();
			w842.LabelProp = "Años de Experiencia Laboral:";
			w842.Xpad = 24;
			w842.Name = "label65";
			this.label65 = w842;
			w841.Add (w842);
			Gtk.Box.BoxChild w843 = ((Gtk.Box.BoxChild) (w841 [w842]));
			w843.Position = 0;
			w843.Expand = false;
			w843.Fill = false;
			// Container child hbox38.Gtk.Box+BoxChild
			Gtk.Entry w844 = new Gtk.Entry ();
			w844.IsEditable = true;
			w844.WidthChars = 2;
			w844.MaxLength = 2;
			w844.InvisibleChar = '●';
			w844.CanFocus = true;
			w844.Name = "en_AniosExpLa";
			this.en_AniosExpLa = w844;
			w841.Add (w844);
			Gtk.Box.BoxChild w845 = ((Gtk.Box.BoxChild) (w841 [w844]));
			w845.Position = 1;
			w845.Expand = false;
			this.hbox38 = w841;
			w840.Add (w841);
			Gtk.Box.BoxChild w846 = ((Gtk.Box.BoxChild) (w840 [w841]));
			w846.Position = 0;
			w846.Expand = false;
			w846.Fill = false;
			// Container child vbox14.Gtk.Box+BoxChild
			Gtk.Expander w847 = new Gtk.Expander (null);
			w847.Expanded = true;
			w847.CanFocus = true;
			w847.Name = "expander1";
			// Container child expander1.Gtk.Container+ContainerChild
			Gtk.Alignment w848 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w848.LeftPadding = ((uint) (10));
			w848.RightPadding = ((uint) (10));
			w848.BottomPadding = ((uint) (5));
			w848.Name = "alignment18";
			// Container child alignment18.Gtk.Container+ContainerChild
			Gtk.Frame w849 = new Gtk.Frame ();
			w849.ShadowType = ((Gtk.ShadowType) (4));
			w849.LabelXalign = 0F;
			w849.Name = "frame20";
			// Container child frame20.Gtk.Container+ContainerChild
			Gtk.Alignment w850 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w850.LeftPadding = ((uint) (10));
			w850.RightPadding = ((uint) (10));
			w850.Name = "GtkAlignment18";
			// Container child GtkAlignment18.Gtk.Container+ContainerChild
			Gtk.VBox w851 = new Gtk.VBox ();
			w851.Name = "vbox15";
			// Container child vbox15.Gtk.Box+BoxChild
			Gtk.HBox w852 = new Gtk.HBox ();
			w852.BorderWidth = ((uint) (1));
			w852.Name = "hbox27";
			// Container child hbox27.Gtk.Box+BoxChild
			Gtk.Label w853 = new Gtk.Label ();
			w853.LabelProp = "Empresa que Laboro : ";
			w853.Name = "label44";
			this.label44 = w853;
			w852.Add (w853);
			Gtk.Box.BoxChild w854 = ((Gtk.Box.BoxChild) (w852 [w853]));
			w854.Position = 0;
			w854.Expand = false;
			w854.Fill = false;
			// Container child hbox27.Gtk.Box+BoxChild
			Gtk.Entry w855 = new Gtk.Entry ();
			w855.IsEditable = true;
			w855.WidthChars = 40;
			w855.MaxLength = 40;
			w855.InvisibleChar = '●';
			w855.CanFocus = true;
			w855.Name = "en_EmprLa1";
			this.en_EmprLa1 = w855;
			w852.Add (w855);
			Gtk.Box.BoxChild w856 = ((Gtk.Box.BoxChild) (w852 [w855]));
			w856.Position = 1;
			w856.Expand = false;
			this.hbox27 = w852;
			w851.Add (w852);
			Gtk.Box.BoxChild w857 = ((Gtk.Box.BoxChild) (w851 [w852]));
			w857.Position = 0;
			w857.Expand = false;
			w857.Fill = false;
			// Container child vbox15.Gtk.Box+BoxChild
			Gtk.HBox w858 = new Gtk.HBox ();
			w858.BorderWidth = ((uint) (1));
			w858.Name = "hbox30";
			// Container child hbox30.Gtk.Box+BoxChild
			Gtk.Label w859 = new Gtk.Label ();
			w859.LabelProp = "Periodo desde           : ";
			w859.Name = "label50";
			this.label50 = w859;
			w858.Add (w859);
			Gtk.Box.BoxChild w860 = ((Gtk.Box.BoxChild) (w858 [w859]));
			w860.Position = 0;
			w860.Expand = false;
			w860.Fill = false;
			// Container child hbox30.Gtk.Box+BoxChild
			Gtk.SpinButton w861 = new Gtk.SpinButton (0, 100, 1);
			w861.Adjustment.PageIncrement = 10;
			w861.ClimbRate = 1;
			w861.Numeric = true;
			w861.CanFocus = true;
			w861.Name = "sp_AnioIni1";
			this.sp_AnioIni1 = w861;
			w858.Add (w861);
			Gtk.Box.BoxChild w862 = ((Gtk.Box.BoxChild) (w858 [w861]));
			w862.Position = 1;
			w862.Expand = false;
			w862.Fill = false;
			// Container child hbox30.Gtk.Box+BoxChild
			Gtk.Label w863 = new Gtk.Label ();
			w863.LabelProp = "Mes :";
			w863.Name = "label51";
			this.label51 = w863;
			w858.Add (w863);
			Gtk.Box.BoxChild w864 = ((Gtk.Box.BoxChild) (w858 [w863]));
			w864.Position = 2;
			w864.Expand = false;
			w864.Fill = false;
			w864.Padding = ((uint) (5));
			// Container child hbox30.Gtk.Box+BoxChild
			Gtk.ComboBox w865 = Gtk.ComboBox.NewText ();
			w865.Active = 0;
			w865.Name = "com_MesIni1";
			this.com_MesIni1 = w865;
			w858.Add (w865);
			Gtk.Box.BoxChild w866 = ((Gtk.Box.BoxChild) (w858 [w865]));
			w866.Position = 3;
			w866.Expand = false;
			w866.Fill = false;
			// Container child hbox30.Gtk.Box+BoxChild
			Gtk.Alignment w867 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w867.LeftPadding = ((uint) (62));
			w867.Name = "alignment19";
			// Container child alignment19.Gtk.Container+ContainerChild
			Gtk.Label w868 = new Gtk.Label ();
			w868.LabelProp = "  Hasta : ";
			w868.Name = "label53";
			this.label53 = w868;
			w867.Add (w868);
			this.alignment19 = w867;
			w858.Add (w867);
			Gtk.Box.BoxChild w870 = ((Gtk.Box.BoxChild) (w858 [w867]));
			w870.Position = 4;
			w870.Expand = false;
			w870.Fill = false;
			// Container child hbox30.Gtk.Box+BoxChild
			Gtk.SpinButton w871 = new Gtk.SpinButton (1940, 2020, 1);
			w871.Adjustment.PageIncrement = 10;
			w871.ClimbRate = 1;
			w871.Numeric = true;
			w871.Value = 1980;
			w871.CanFocus = true;
			w871.Name = "sp_AnioFin1";
			this.sp_AnioFin1 = w871;
			w858.Add (w871);
			Gtk.Box.BoxChild w872 = ((Gtk.Box.BoxChild) (w858 [w871]));
			w872.Position = 5;
			w872.Expand = false;
			w872.Fill = false;
			// Container child hbox30.Gtk.Box+BoxChild
			Gtk.Label w873 = new Gtk.Label ();
			w873.LabelProp = "Mes :";
			w873.Name = "label54";
			this.label54 = w873;
			w858.Add (w873);
			Gtk.Box.BoxChild w874 = ((Gtk.Box.BoxChild) (w858 [w873]));
			w874.Position = 6;
			w874.Expand = false;
			w874.Fill = false;
			w874.Padding = ((uint) (5));
			// Container child hbox30.Gtk.Box+BoxChild
			Gtk.ComboBox w875 = Gtk.ComboBox.NewText ();
			w875.Active = 0;
			w875.Name = "com_MesFin1";
			this.com_MesFin1 = w875;
			w858.Add (w875);
			Gtk.Box.BoxChild w876 = ((Gtk.Box.BoxChild) (w858 [w875]));
			w876.Position = 7;
			w876.Expand = false;
			w876.Fill = false;
			this.hbox30 = w858;
			w851.Add (w858);
			Gtk.Box.BoxChild w877 = ((Gtk.Box.BoxChild) (w851 [w858]));
			w877.Position = 1;
			w877.Expand = false;
			w877.Fill = false;
			// Container child vbox15.Gtk.Box+BoxChild
			Gtk.HBox w878 = new Gtk.HBox ();
			w878.BorderWidth = ((uint) (1));
			w878.Name = "hbox28";
			// Container child hbox28.Gtk.Box+BoxChild
			Gtk.Label w879 = new Gtk.Label ();
			w879.LabelProp = "Cargo Desempeñado: ";
			w879.Name = "label45";
			this.label45 = w879;
			w878.Add (w879);
			Gtk.Box.BoxChild w880 = ((Gtk.Box.BoxChild) (w878 [w879]));
			w880.Position = 0;
			w880.Expand = false;
			w880.Fill = false;
			// Container child hbox28.Gtk.Box+BoxChild
			Gtk.Entry w881 = new Gtk.Entry ();
			w881.IsEditable = true;
			w881.WidthChars = 40;
			w881.MaxLength = 40;
			w881.InvisibleChar = '●';
			w881.CanFocus = true;
			w881.Name = "en_Cargo1";
			this.en_Cargo1 = w881;
			w878.Add (w881);
			Gtk.Box.BoxChild w882 = ((Gtk.Box.BoxChild) (w878 [w881]));
			w882.Position = 1;
			w882.Expand = false;
			this.hbox28 = w878;
			w851.Add (w878);
			Gtk.Box.BoxChild w883 = ((Gtk.Box.BoxChild) (w851 [w878]));
			w883.Position = 2;
			w883.Expand = false;
			w883.Fill = false;
			// Container child vbox15.Gtk.Box+BoxChild
			Gtk.Alignment w884 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w884.LeftPadding = ((uint) (3));
			w884.BottomPadding = ((uint) (2));
			w884.Name = "alignment47";
			// Container child alignment47.Gtk.Container+ContainerChild
			Gtk.HBox w885 = new Gtk.HBox ();
			w885.Name = "hbox62";
			// Container child hbox62.Gtk.Box+BoxChild
			Gtk.Label w886 = new Gtk.Label ();
			w886.LabelProp = "Funciones\nRealizadas: ";
			w886.Name = "label42";
			this.label42 = w886;
			w885.Add (w886);
			Gtk.Box.BoxChild w887 = ((Gtk.Box.BoxChild) (w885 [w886]));
			w887.Position = 0;
			w887.Expand = false;
			w887.Fill = false;
			// Container child hbox62.Gtk.Box+BoxChild
			Gtk.Table w888 = new Gtk.Table (((uint) (2)), ((uint) (3)), false);
			w888.Name = "table1";
			// Container child table1.Gtk.Table+TableChild
			Gtk.Entry w889 = new Gtk.Entry ();
			w889.IsEditable = true;
			w889.WidthChars = 23;
			w889.MaxLength = 40;
			w889.InvisibleChar = '●';
			w889.CanFocus = true;
			w889.Name = "en_FuncRe11";
			this.en_FuncRe11 = w889;
			w888.Add (w889);
			Gtk.Table.TableChild w890 = ((Gtk.Table.TableChild) (w888 [w889]));
			w890.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table1.Gtk.Table+TableChild
			Gtk.Entry w891 = new Gtk.Entry ();
			w891.IsEditable = true;
			w891.WidthChars = 23;
			w891.MaxLength = 40;
			w891.InvisibleChar = '●';
			w891.CanFocus = true;
			w891.Name = "en_FuncRe12";
			this.en_FuncRe12 = w891;
			w888.Add (w891);
			Gtk.Table.TableChild w892 = ((Gtk.Table.TableChild) (w888 [w891]));
			w892.LeftAttach = ((uint) (2));
			w892.RightAttach = ((uint) (3));
			w892.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table1.Gtk.Table+TableChild
			Gtk.Entry w893 = new Gtk.Entry ();
			w893.IsEditable = true;
			w893.WidthChars = 23;
			w893.MaxLength = 40;
			w893.InvisibleChar = '●';
			w893.CanFocus = true;
			w893.Name = "en_FuncRe13";
			this.en_FuncRe13 = w893;
			w888.Add (w893);
			Gtk.Table.TableChild w894 = ((Gtk.Table.TableChild) (w888 [w893]));
			w894.TopAttach = ((uint) (1));
			w894.BottomAttach = ((uint) (2));
			w894.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table1.Gtk.Table+TableChild
			Gtk.Entry w895 = new Gtk.Entry ();
			w895.IsEditable = true;
			w895.WidthChars = 23;
			w895.MaxLength = 40;
			w895.InvisibleChar = '●';
			w895.CanFocus = true;
			w895.Name = "en_FuncRe14";
			this.en_FuncRe14 = w895;
			w888.Add (w895);
			Gtk.Table.TableChild w896 = ((Gtk.Table.TableChild) (w888 [w895]));
			w896.TopAttach = ((uint) (1));
			w896.BottomAttach = ((uint) (2));
			w896.LeftAttach = ((uint) (2));
			w896.RightAttach = ((uint) (3));
			w896.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table1.Gtk.Table+TableChild
			Gtk.Label w897 = new Gtk.Label ();
			w897.LabelProp = "*  ";
			w897.Name = "label43";
			this.label43 = w897;
			w888.Add (w897);
			Gtk.Table.TableChild w898 = ((Gtk.Table.TableChild) (w888 [w897]));
			w898.LeftAttach = ((uint) (1));
			w898.RightAttach = ((uint) (2));
			w898.XOptions = ((Gtk.AttachOptions) (4));
			w898.YOptions = ((Gtk.AttachOptions) (4));
			this.table1 = w888;
			w885.Add (w888);
			Gtk.Box.BoxChild w899 = ((Gtk.Box.BoxChild) (w885 [w888]));
			w899.Position = 1;
			this.hbox62 = w885;
			w884.Add (w885);
			this.alignment47 = w884;
			w851.Add (w884);
			Gtk.Box.BoxChild w901 = ((Gtk.Box.BoxChild) (w851 [w884]));
			w901.Position = 3;
			w901.Expand = false;
			w901.Fill = false;
			this.vbox15 = w851;
			w850.Add (w851);
			this.GtkAlignment18 = w850;
			w849.Add (w850);
			Gtk.Label w904 = new Gtk.Label ();
			w904.LabelProp = "";
			w904.UseMarkup = true;
			w904.Events = ((Gdk.EventMask) (256));
			w904.Name = "GtkLabel60";
			this.GtkLabel60 = w904;
			w849.LabelWidget = w904;
			this.frame20 = w849;
			w848.Add (w849);
			this.alignment18 = w848;
			w847.Add (w848);
			Gtk.Label w907 = new Gtk.Label ();
			w907.LabelProp = "1. Experiencia Laboral ";
			w907.UseUnderline = true;
			w907.Selectable = true;
			w907.Ypad = 2;
			w907.CanFocus = true;
			w907.Name = "GtkLabel44";
			this.GtkLabel44 = w907;
			w847.LabelWidget = w907;
			this.expander1 = w847;
			w840.Add (w847);
			Gtk.Box.BoxChild w908 = ((Gtk.Box.BoxChild) (w840 [w847]));
			w908.Position = 1;
			w908.Expand = false;
			w908.Fill = false;
			// Container child vbox14.Gtk.Box+BoxChild
			Gtk.Expander w909 = new Gtk.Expander (null);
			w909.CanFocus = true;
			w909.Name = "expander2";
			// Container child expander2.Gtk.Container+ContainerChild
			Gtk.Alignment w910 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w910.LeftPadding = ((uint) (10));
			w910.RightPadding = ((uint) (10));
			w910.BottomPadding = ((uint) (5));
			w910.Name = "alignment48";
			// Container child alignment48.Gtk.Container+ContainerChild
			Gtk.Frame w911 = new Gtk.Frame ();
			w911.ShadowType = ((Gtk.ShadowType) (4));
			w911.LabelXalign = 0F;
			w911.Name = "frame36";
			// Container child frame36.Gtk.Container+ContainerChild
			Gtk.Alignment w912 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w912.LeftPadding = ((uint) (10));
			w912.RightPadding = ((uint) (10));
			w912.Name = "GtkAlignment37";
			// Container child GtkAlignment37.Gtk.Container+ContainerChild
			Gtk.VBox w913 = new Gtk.VBox ();
			w913.Name = "vbox31";
			// Container child vbox31.Gtk.Box+BoxChild
			Gtk.HBox w914 = new Gtk.HBox ();
			w914.BorderWidth = ((uint) (1));
			w914.Name = "hbox63";
			// Container child hbox63.Gtk.Box+BoxChild
			Gtk.Label w915 = new Gtk.Label ();
			w915.LabelProp = "Empresa que Laboro : ";
			w915.Name = "label46";
			this.label46 = w915;
			w914.Add (w915);
			Gtk.Box.BoxChild w916 = ((Gtk.Box.BoxChild) (w914 [w915]));
			w916.Position = 0;
			w916.Expand = false;
			w916.Fill = false;
			// Container child hbox63.Gtk.Box+BoxChild
			Gtk.Entry w917 = new Gtk.Entry ();
			w917.IsEditable = true;
			w917.WidthChars = 40;
			w917.MaxLength = 40;
			w917.InvisibleChar = '●';
			w917.CanFocus = true;
			w917.Name = "en_EmprLa2";
			this.en_EmprLa2 = w917;
			w914.Add (w917);
			Gtk.Box.BoxChild w918 = ((Gtk.Box.BoxChild) (w914 [w917]));
			w918.Position = 1;
			w918.Expand = false;
			this.hbox63 = w914;
			w913.Add (w914);
			Gtk.Box.BoxChild w919 = ((Gtk.Box.BoxChild) (w913 [w914]));
			w919.Position = 0;
			w919.Expand = false;
			w919.Fill = false;
			// Container child vbox31.Gtk.Box+BoxChild
			Gtk.HBox w920 = new Gtk.HBox ();
			w920.BorderWidth = ((uint) (1));
			w920.Name = "hbox64";
			// Container child hbox64.Gtk.Box+BoxChild
			Gtk.Label w921 = new Gtk.Label ();
			w921.LabelProp = "Periodo desde           : ";
			w921.Name = "label82";
			this.label82 = w921;
			w920.Add (w921);
			Gtk.Box.BoxChild w922 = ((Gtk.Box.BoxChild) (w920 [w921]));
			w922.Position = 0;
			w922.Expand = false;
			w922.Fill = false;
			// Container child hbox64.Gtk.Box+BoxChild
			Gtk.SpinButton w923 = new Gtk.SpinButton (1940, 2020, 1);
			w923.Adjustment.PageIncrement = 10;
			w923.ClimbRate = 1;
			w923.Numeric = true;
			w923.Value = 1980;
			w923.CanFocus = true;
			w923.Name = "sp_AnioIni2";
			this.sp_AnioIni2 = w923;
			w920.Add (w923);
			Gtk.Box.BoxChild w924 = ((Gtk.Box.BoxChild) (w920 [w923]));
			w924.Position = 1;
			w924.Expand = false;
			w924.Fill = false;
			// Container child hbox64.Gtk.Box+BoxChild
			Gtk.Label w925 = new Gtk.Label ();
			w925.LabelProp = "Mes :";
			w925.Name = "label105";
			this.label105 = w925;
			w920.Add (w925);
			Gtk.Box.BoxChild w926 = ((Gtk.Box.BoxChild) (w920 [w925]));
			w926.Position = 2;
			w926.Expand = false;
			w926.Fill = false;
			w926.Padding = ((uint) (5));
			// Container child hbox64.Gtk.Box+BoxChild
			Gtk.ComboBox w927 = Gtk.ComboBox.NewText ();
			w927.Active = 0;
			w927.Name = "com_MesIni2";
			this.com_MesIni2 = w927;
			w920.Add (w927);
			Gtk.Box.BoxChild w928 = ((Gtk.Box.BoxChild) (w920 [w927]));
			w928.Position = 3;
			w928.Expand = false;
			w928.Fill = false;
			// Container child hbox64.Gtk.Box+BoxChild
			Gtk.Alignment w929 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w929.LeftPadding = ((uint) (62));
			w929.Name = "alignment49";
			// Container child alignment49.Gtk.Container+ContainerChild
			Gtk.Label w930 = new Gtk.Label ();
			w930.LabelProp = "  Hasta : ";
			w930.Name = "label115";
			this.label115 = w930;
			w929.Add (w930);
			this.alignment49 = w929;
			w920.Add (w929);
			Gtk.Box.BoxChild w932 = ((Gtk.Box.BoxChild) (w920 [w929]));
			w932.Position = 4;
			w932.Expand = false;
			w932.Fill = false;
			// Container child hbox64.Gtk.Box+BoxChild
			Gtk.SpinButton w933 = new Gtk.SpinButton (1940, 2020, 1);
			w933.Adjustment.PageIncrement = 10;
			w933.ClimbRate = 1;
			w933.Numeric = true;
			w933.Value = 1980;
			w933.CanFocus = true;
			w933.Name = "sp_AnioFin2";
			this.sp_AnioFin2 = w933;
			w920.Add (w933);
			Gtk.Box.BoxChild w934 = ((Gtk.Box.BoxChild) (w920 [w933]));
			w934.Position = 5;
			w934.Expand = false;
			w934.Fill = false;
			// Container child hbox64.Gtk.Box+BoxChild
			Gtk.Label w935 = new Gtk.Label ();
			w935.LabelProp = "Mes :";
			w935.Name = "label116";
			this.label116 = w935;
			w920.Add (w935);
			Gtk.Box.BoxChild w936 = ((Gtk.Box.BoxChild) (w920 [w935]));
			w936.Position = 6;
			w936.Expand = false;
			w936.Fill = false;
			w936.Padding = ((uint) (5));
			// Container child hbox64.Gtk.Box+BoxChild
			Gtk.ComboBox w937 = Gtk.ComboBox.NewText ();
			w937.Active = 0;
			w937.Name = "com_MesFin2";
			this.com_MesFin2 = w937;
			w920.Add (w937);
			Gtk.Box.BoxChild w938 = ((Gtk.Box.BoxChild) (w920 [w937]));
			w938.Position = 7;
			w938.Expand = false;
			w938.Fill = false;
			this.hbox64 = w920;
			w913.Add (w920);
			Gtk.Box.BoxChild w939 = ((Gtk.Box.BoxChild) (w913 [w920]));
			w939.Position = 1;
			w939.Expand = false;
			w939.Fill = false;
			// Container child vbox31.Gtk.Box+BoxChild
			Gtk.HBox w940 = new Gtk.HBox ();
			w940.BorderWidth = ((uint) (1));
			w940.Name = "hbox66";
			// Container child hbox66.Gtk.Box+BoxChild
			Gtk.Label w941 = new Gtk.Label ();
			w941.LabelProp = "Cargo Desempeñado: ";
			w941.Name = "label117";
			this.label117 = w941;
			w940.Add (w941);
			Gtk.Box.BoxChild w942 = ((Gtk.Box.BoxChild) (w940 [w941]));
			w942.Position = 0;
			w942.Expand = false;
			w942.Fill = false;
			// Container child hbox66.Gtk.Box+BoxChild
			Gtk.Entry w943 = new Gtk.Entry ();
			w943.IsEditable = true;
			w943.WidthChars = 40;
			w943.MaxLength = 40;
			w943.InvisibleChar = '●';
			w943.CanFocus = true;
			w943.Name = "en_Cargo2";
			this.en_Cargo2 = w943;
			w940.Add (w943);
			Gtk.Box.BoxChild w944 = ((Gtk.Box.BoxChild) (w940 [w943]));
			w944.Position = 1;
			w944.Expand = false;
			this.hbox66 = w940;
			w913.Add (w940);
			Gtk.Box.BoxChild w945 = ((Gtk.Box.BoxChild) (w913 [w940]));
			w945.Position = 2;
			w945.Expand = false;
			w945.Fill = false;
			// Container child vbox31.Gtk.Box+BoxChild
			Gtk.Alignment w946 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w946.LeftPadding = ((uint) (3));
			w946.BottomPadding = ((uint) (2));
			w946.Name = "alignment50";
			// Container child alignment50.Gtk.Container+ContainerChild
			Gtk.HBox w947 = new Gtk.HBox ();
			w947.Name = "hbox67";
			// Container child hbox67.Gtk.Box+BoxChild
			Gtk.Label w948 = new Gtk.Label ();
			w948.LabelProp = "Funciones\nRealizadas: ";
			w948.Name = "label122";
			this.label122 = w948;
			w947.Add (w948);
			Gtk.Box.BoxChild w949 = ((Gtk.Box.BoxChild) (w947 [w948]));
			w949.Position = 0;
			w949.Expand = false;
			w949.Fill = false;
			// Container child hbox67.Gtk.Box+BoxChild
			Gtk.Table w950 = new Gtk.Table (((uint) (2)), ((uint) (3)), false);
			w950.Name = "table8";
			// Container child table8.Gtk.Table+TableChild
			Gtk.Label w951 = new Gtk.Label ();
			w951.LabelProp = "*  ";
			w951.Name = "label153";
			this.label153 = w951;
			w950.Add (w951);
			Gtk.Table.TableChild w952 = ((Gtk.Table.TableChild) (w950 [w951]));
			w952.LeftAttach = ((uint) (1));
			w952.RightAttach = ((uint) (2));
			w952.XOptions = ((Gtk.AttachOptions) (4));
			w952.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table8.Gtk.Table+TableChild
			Gtk.Entry w953 = new Gtk.Entry ();
			w953.IsEditable = true;
			w953.WidthChars = 23;
			w953.MaxLength = 40;
			w953.InvisibleChar = '●';
			w953.CanFocus = true;
			w953.Name = "en_FuncRe24";
			this.en_FuncRe24 = w953;
			w950.Add (w953);
			Gtk.Table.TableChild w954 = ((Gtk.Table.TableChild) (w950 [w953]));
			w954.TopAttach = ((uint) (1));
			w954.BottomAttach = ((uint) (2));
			w954.LeftAttach = ((uint) (2));
			w954.RightAttach = ((uint) (3));
			w954.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table8.Gtk.Table+TableChild
			Gtk.Entry w955 = new Gtk.Entry ();
			w955.IsEditable = true;
			w955.WidthChars = 23;
			w955.MaxLength = 40;
			w955.InvisibleChar = '●';
			w955.CanFocus = true;
			w955.Name = "en_FuncRe23";
			this.en_FuncRe23 = w955;
			w950.Add (w955);
			Gtk.Table.TableChild w956 = ((Gtk.Table.TableChild) (w950 [w955]));
			w956.TopAttach = ((uint) (1));
			w956.BottomAttach = ((uint) (2));
			w956.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table8.Gtk.Table+TableChild
			Gtk.Entry w957 = new Gtk.Entry ();
			w957.IsEditable = true;
			w957.WidthChars = 23;
			w957.MaxLength = 40;
			w957.InvisibleChar = '●';
			w957.CanFocus = true;
			w957.Name = "en_FuncRe22";
			this.en_FuncRe22 = w957;
			w950.Add (w957);
			Gtk.Table.TableChild w958 = ((Gtk.Table.TableChild) (w950 [w957]));
			w958.LeftAttach = ((uint) (2));
			w958.RightAttach = ((uint) (3));
			w958.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table8.Gtk.Table+TableChild
			Gtk.Entry w959 = new Gtk.Entry ();
			w959.IsEditable = true;
			w959.WidthChars = 23;
			w959.MaxLength = 40;
			w959.InvisibleChar = '●';
			w959.CanFocus = true;
			w959.Name = "en_FuncRe21";
			this.en_FuncRe21 = w959;
			w950.Add (w959);
			Gtk.Table.TableChild w960 = ((Gtk.Table.TableChild) (w950 [w959]));
			w960.YOptions = ((Gtk.AttachOptions) (4));
			this.table8 = w950;
			w947.Add (w950);
			Gtk.Box.BoxChild w961 = ((Gtk.Box.BoxChild) (w947 [w950]));
			w961.Position = 1;
			this.hbox67 = w947;
			w946.Add (w947);
			this.alignment50 = w946;
			w913.Add (w946);
			Gtk.Box.BoxChild w963 = ((Gtk.Box.BoxChild) (w913 [w946]));
			w963.Position = 3;
			w963.Expand = false;
			w963.Fill = false;
			this.vbox31 = w913;
			w912.Add (w913);
			this.GtkAlignment37 = w912;
			w911.Add (w912);
			Gtk.Label w966 = new Gtk.Label ();
			w966.LabelProp = "";
			w966.UseMarkup = true;
			w966.Events = ((Gdk.EventMask) (256));
			w966.Name = "GtkLabel46";
			this.GtkLabel46 = w966;
			w911.LabelWidget = w966;
			this.frame36 = w911;
			w910.Add (w911);
			this.alignment48 = w910;
			w909.Add (w910);
			Gtk.Label w969 = new Gtk.Label ();
			w969.LabelProp = "2. Experiencia Laboral ";
			w969.UseUnderline = true;
			w969.Name = "GtkLabel45";
			this.GtkLabel45 = w969;
			w909.LabelWidget = w969;
			this.expander2 = w909;
			w840.Add (w909);
			Gtk.Box.BoxChild w970 = ((Gtk.Box.BoxChild) (w840 [w909]));
			w970.Position = 2;
			w970.Expand = false;
			w970.Fill = false;
			// Container child vbox14.Gtk.Box+BoxChild
			Gtk.Expander w971 = new Gtk.Expander (null);
			w971.CanFocus = true;
			w971.Name = "expander3";
			// Container child expander3.Gtk.Container+ContainerChild
			Gtk.Alignment w972 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w972.LeftPadding = ((uint) (10));
			w972.RightPadding = ((uint) (10));
			w972.BottomPadding = ((uint) (5));
			w972.Name = "alignment20";
			// Container child alignment20.Gtk.Container+ContainerChild
			Gtk.Frame w973 = new Gtk.Frame ();
			w973.ShadowType = ((Gtk.ShadowType) (4));
			w973.LabelXalign = 0F;
			w973.Name = "frame21";
			// Container child frame21.Gtk.Container+ContainerChild
			Gtk.Alignment w974 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w974.LeftPadding = ((uint) (10));
			w974.RightPadding = ((uint) (10));
			w974.Name = "GtkAlignment19";
			// Container child GtkAlignment19.Gtk.Container+ContainerChild
			Gtk.VBox w975 = new Gtk.VBox ();
			w975.Name = "vbox16";
			// Container child vbox16.Gtk.Box+BoxChild
			Gtk.HBox w976 = new Gtk.HBox ();
			w976.BorderWidth = ((uint) (1));
			w976.Name = "hbox29";
			// Container child hbox29.Gtk.Box+BoxChild
			Gtk.Label w977 = new Gtk.Label ();
			w977.LabelProp = "Empresa que Laboro : ";
			w977.Name = "label47";
			this.label47 = w977;
			w976.Add (w977);
			Gtk.Box.BoxChild w978 = ((Gtk.Box.BoxChild) (w976 [w977]));
			w978.Position = 0;
			w978.Expand = false;
			w978.Fill = false;
			// Container child hbox29.Gtk.Box+BoxChild
			Gtk.Entry w979 = new Gtk.Entry ();
			w979.IsEditable = true;
			w979.WidthChars = 40;
			w979.MaxLength = 40;
			w979.InvisibleChar = '●';
			w979.CanFocus = true;
			w979.Name = "en_EmprLa3";
			this.en_EmprLa3 = w979;
			w976.Add (w979);
			Gtk.Box.BoxChild w980 = ((Gtk.Box.BoxChild) (w976 [w979]));
			w980.Position = 1;
			w980.Expand = false;
			this.hbox29 = w976;
			w975.Add (w976);
			Gtk.Box.BoxChild w981 = ((Gtk.Box.BoxChild) (w975 [w976]));
			w981.Position = 0;
			w981.Expand = false;
			w981.Fill = false;
			// Container child vbox16.Gtk.Box+BoxChild
			Gtk.HBox w982 = new Gtk.HBox ();
			w982.BorderWidth = ((uint) (1));
			w982.Name = "hbox31";
			// Container child hbox31.Gtk.Box+BoxChild
			Gtk.Label w983 = new Gtk.Label ();
			w983.LabelProp = "Periodo desde           : ";
			w983.Name = "label52";
			this.label52 = w983;
			w982.Add (w983);
			Gtk.Box.BoxChild w984 = ((Gtk.Box.BoxChild) (w982 [w983]));
			w984.Position = 0;
			w984.Expand = false;
			w984.Fill = false;
			// Container child hbox31.Gtk.Box+BoxChild
			Gtk.SpinButton w985 = new Gtk.SpinButton (1940, 2020, 1);
			w985.Adjustment.PageIncrement = 10;
			w985.ClimbRate = 1;
			w985.Numeric = true;
			w985.Value = 1980;
			w985.CanFocus = true;
			w985.Name = "sp_AnioIni3";
			this.sp_AnioIni3 = w985;
			w982.Add (w985);
			Gtk.Box.BoxChild w986 = ((Gtk.Box.BoxChild) (w982 [w985]));
			w986.Position = 1;
			w986.Expand = false;
			w986.Fill = false;
			// Container child hbox31.Gtk.Box+BoxChild
			Gtk.Label w987 = new Gtk.Label ();
			w987.LabelProp = "Mes :";
			w987.Name = "label55";
			this.label55 = w987;
			w982.Add (w987);
			Gtk.Box.BoxChild w988 = ((Gtk.Box.BoxChild) (w982 [w987]));
			w988.Position = 2;
			w988.Expand = false;
			w988.Fill = false;
			w988.Padding = ((uint) (5));
			// Container child hbox31.Gtk.Box+BoxChild
			Gtk.ComboBox w989 = Gtk.ComboBox.NewText ();
			w989.Active = 0;
			w989.Name = "com_MesIni3";
			this.com_MesIni3 = w989;
			w982.Add (w989);
			Gtk.Box.BoxChild w990 = ((Gtk.Box.BoxChild) (w982 [w989]));
			w990.Position = 3;
			w990.Expand = false;
			w990.Fill = false;
			// Container child hbox31.Gtk.Box+BoxChild
			Gtk.Alignment w991 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w991.LeftPadding = ((uint) (62));
			w991.Name = "alignment21";
			// Container child alignment21.Gtk.Container+ContainerChild
			Gtk.Label w992 = new Gtk.Label ();
			w992.LabelProp = "  Hasta : ";
			w992.Name = "label56";
			this.label56 = w992;
			w991.Add (w992);
			this.alignment21 = w991;
			w982.Add (w991);
			Gtk.Box.BoxChild w994 = ((Gtk.Box.BoxChild) (w982 [w991]));
			w994.Position = 4;
			w994.Expand = false;
			w994.Fill = false;
			// Container child hbox31.Gtk.Box+BoxChild
			Gtk.SpinButton w995 = new Gtk.SpinButton (1940, 2020, 1);
			w995.Adjustment.PageIncrement = 10;
			w995.ClimbRate = 1;
			w995.Numeric = true;
			w995.Value = 1980;
			w995.CanFocus = true;
			w995.Name = "sp_AnioFin3";
			this.sp_AnioFin3 = w995;
			w982.Add (w995);
			Gtk.Box.BoxChild w996 = ((Gtk.Box.BoxChild) (w982 [w995]));
			w996.Position = 5;
			w996.Expand = false;
			w996.Fill = false;
			// Container child hbox31.Gtk.Box+BoxChild
			Gtk.Label w997 = new Gtk.Label ();
			w997.LabelProp = "Mes :";
			w997.Name = "label57";
			this.label57 = w997;
			w982.Add (w997);
			Gtk.Box.BoxChild w998 = ((Gtk.Box.BoxChild) (w982 [w997]));
			w998.Position = 6;
			w998.Expand = false;
			w998.Fill = false;
			w998.Padding = ((uint) (5));
			// Container child hbox31.Gtk.Box+BoxChild
			Gtk.ComboBox w999 = Gtk.ComboBox.NewText ();
			w999.Active = 0;
			w999.Name = "com_MesFin3";
			this.com_MesFin3 = w999;
			w982.Add (w999);
			Gtk.Box.BoxChild w1000 = ((Gtk.Box.BoxChild) (w982 [w999]));
			w1000.Position = 7;
			w1000.Expand = false;
			w1000.Fill = false;
			this.hbox31 = w982;
			w975.Add (w982);
			Gtk.Box.BoxChild w1001 = ((Gtk.Box.BoxChild) (w975 [w982]));
			w1001.Position = 1;
			w1001.Expand = false;
			w1001.Fill = false;
			// Container child vbox16.Gtk.Box+BoxChild
			Gtk.HBox w1002 = new Gtk.HBox ();
			w1002.BorderWidth = ((uint) (1));
			w1002.Name = "hbox32";
			// Container child hbox32.Gtk.Box+BoxChild
			Gtk.Label w1003 = new Gtk.Label ();
			w1003.LabelProp = "Cargo Desempeñado: ";
			w1003.Name = "label48";
			this.label48 = w1003;
			w1002.Add (w1003);
			Gtk.Box.BoxChild w1004 = ((Gtk.Box.BoxChild) (w1002 [w1003]));
			w1004.Position = 0;
			w1004.Expand = false;
			w1004.Fill = false;
			// Container child hbox32.Gtk.Box+BoxChild
			Gtk.Entry w1005 = new Gtk.Entry ();
			w1005.IsEditable = true;
			w1005.WidthChars = 40;
			w1005.MaxLength = 40;
			w1005.InvisibleChar = '●';
			w1005.CanFocus = true;
			w1005.Name = "en_Cargo3";
			this.en_Cargo3 = w1005;
			w1002.Add (w1005);
			Gtk.Box.BoxChild w1006 = ((Gtk.Box.BoxChild) (w1002 [w1005]));
			w1006.Position = 1;
			w1006.Expand = false;
			this.hbox32 = w1002;
			w975.Add (w1002);
			Gtk.Box.BoxChild w1007 = ((Gtk.Box.BoxChild) (w975 [w1002]));
			w1007.Position = 2;
			w1007.Expand = false;
			w1007.Fill = false;
			// Container child vbox16.Gtk.Box+BoxChild
			Gtk.Alignment w1008 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1008.LeftPadding = ((uint) (3));
			w1008.BottomPadding = ((uint) (2));
			w1008.Name = "alignment51";
			// Container child alignment51.Gtk.Container+ContainerChild
			Gtk.HBox w1009 = new Gtk.HBox ();
			w1009.Name = "hbox68";
			// Container child hbox68.Gtk.Box+BoxChild
			Gtk.Label w1010 = new Gtk.Label ();
			w1010.LabelProp = "Funciones\nRealizadas: ";
			w1010.Name = "label49";
			this.label49 = w1010;
			w1009.Add (w1010);
			Gtk.Box.BoxChild w1011 = ((Gtk.Box.BoxChild) (w1009 [w1010]));
			w1011.Position = 0;
			w1011.Expand = false;
			w1011.Fill = false;
			// Container child hbox68.Gtk.Box+BoxChild
			Gtk.Table w1012 = new Gtk.Table (((uint) (2)), ((uint) (3)), false);
			w1012.Name = "table9";
			// Container child table9.Gtk.Table+TableChild
			Gtk.Label w1013 = new Gtk.Label ();
			w1013.LabelProp = "*  ";
			w1013.Name = "label58";
			this.label58 = w1013;
			w1012.Add (w1013);
			Gtk.Table.TableChild w1014 = ((Gtk.Table.TableChild) (w1012 [w1013]));
			w1014.LeftAttach = ((uint) (1));
			w1014.RightAttach = ((uint) (2));
			w1014.XOptions = ((Gtk.AttachOptions) (4));
			w1014.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table9.Gtk.Table+TableChild
			Gtk.Entry w1015 = new Gtk.Entry ();
			w1015.IsEditable = true;
			w1015.WidthChars = 23;
			w1015.MaxLength = 40;
			w1015.InvisibleChar = '●';
			w1015.CanFocus = true;
			w1015.Name = "en_FuncRe34";
			this.en_FuncRe34 = w1015;
			w1012.Add (w1015);
			Gtk.Table.TableChild w1016 = ((Gtk.Table.TableChild) (w1012 [w1015]));
			w1016.TopAttach = ((uint) (1));
			w1016.BottomAttach = ((uint) (2));
			w1016.LeftAttach = ((uint) (2));
			w1016.RightAttach = ((uint) (3));
			w1016.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table9.Gtk.Table+TableChild
			Gtk.Entry w1017 = new Gtk.Entry ();
			w1017.IsEditable = true;
			w1017.WidthChars = 23;
			w1017.MaxLength = 40;
			w1017.InvisibleChar = '●';
			w1017.CanFocus = true;
			w1017.Name = "en_FuncRe33";
			this.en_FuncRe33 = w1017;
			w1012.Add (w1017);
			Gtk.Table.TableChild w1018 = ((Gtk.Table.TableChild) (w1012 [w1017]));
			w1018.TopAttach = ((uint) (1));
			w1018.BottomAttach = ((uint) (2));
			w1018.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table9.Gtk.Table+TableChild
			Gtk.Entry w1019 = new Gtk.Entry ();
			w1019.IsEditable = true;
			w1019.WidthChars = 23;
			w1019.MaxLength = 40;
			w1019.InvisibleChar = '●';
			w1019.CanFocus = true;
			w1019.Name = "en_FuncRe32";
			this.en_FuncRe32 = w1019;
			w1012.Add (w1019);
			Gtk.Table.TableChild w1020 = ((Gtk.Table.TableChild) (w1012 [w1019]));
			w1020.LeftAttach = ((uint) (2));
			w1020.RightAttach = ((uint) (3));
			w1020.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table9.Gtk.Table+TableChild
			Gtk.Entry w1021 = new Gtk.Entry ();
			w1021.IsEditable = true;
			w1021.WidthChars = 23;
			w1021.MaxLength = 40;
			w1021.InvisibleChar = '●';
			w1021.CanFocus = true;
			w1021.Name = "en_FuncRe31";
			this.en_FuncRe31 = w1021;
			w1012.Add (w1021);
			Gtk.Table.TableChild w1022 = ((Gtk.Table.TableChild) (w1012 [w1021]));
			w1022.YOptions = ((Gtk.AttachOptions) (4));
			this.table9 = w1012;
			w1009.Add (w1012);
			Gtk.Box.BoxChild w1023 = ((Gtk.Box.BoxChild) (w1009 [w1012]));
			w1023.Position = 1;
			this.hbox68 = w1009;
			w1008.Add (w1009);
			this.alignment51 = w1008;
			w975.Add (w1008);
			Gtk.Box.BoxChild w1025 = ((Gtk.Box.BoxChild) (w975 [w1008]));
			w1025.Position = 3;
			w1025.Expand = false;
			w1025.Fill = false;
			this.vbox16 = w975;
			w974.Add (w975);
			this.GtkAlignment19 = w974;
			w973.Add (w974);
			Gtk.Label w1028 = new Gtk.Label ();
			w1028.LabelProp = "";
			w1028.UseMarkup = true;
			w1028.Events = ((Gdk.EventMask) (256));
			w1028.Name = "GtkLabel48";
			this.GtkLabel48 = w1028;
			w973.LabelWidget = w1028;
			this.frame21 = w973;
			w972.Add (w973);
			this.alignment20 = w972;
			w971.Add (w972);
			Gtk.Label w1031 = new Gtk.Label ();
			w1031.LabelProp = "3. Experiencia Laboral";
			w1031.UseUnderline = true;
			w1031.Name = "GtkLabel61";
			this.GtkLabel61 = w1031;
			w971.LabelWidget = w1031;
			this.expander3 = w971;
			w840.Add (w971);
			Gtk.Box.BoxChild w1032 = ((Gtk.Box.BoxChild) (w840 [w971]));
			w1032.Position = 3;
			w1032.Expand = false;
			w1032.Fill = false;
			// Container child vbox14.Gtk.Box+BoxChild
			Gtk.Expander w1033 = new Gtk.Expander (null);
			w1033.CanFocus = true;
			w1033.Name = "expander4";
			// Container child expander4.Gtk.Container+ContainerChild
			Gtk.Alignment w1034 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1034.LeftPadding = ((uint) (10));
			w1034.RightPadding = ((uint) (10));
			w1034.BottomPadding = ((uint) (5));
			w1034.Name = "alignment22";
			// Container child alignment22.Gtk.Container+ContainerChild
			Gtk.Frame w1035 = new Gtk.Frame ();
			w1035.ShadowType = ((Gtk.ShadowType) (4));
			w1035.LabelXalign = 0F;
			w1035.Name = "frame22";
			// Container child frame22.Gtk.Container+ContainerChild
			Gtk.Alignment w1036 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w1036.LeftPadding = ((uint) (10));
			w1036.RightPadding = ((uint) (10));
			w1036.Name = "GtkAlignment20";
			// Container child GtkAlignment20.Gtk.Container+ContainerChild
			Gtk.VBox w1037 = new Gtk.VBox ();
			w1037.Name = "vbox17";
			// Container child vbox17.Gtk.Box+BoxChild
			Gtk.HBox w1038 = new Gtk.HBox ();
			w1038.BorderWidth = ((uint) (1));
			w1038.Name = "hbox33";
			// Container child hbox33.Gtk.Box+BoxChild
			Gtk.Label w1039 = new Gtk.Label ();
			w1039.LabelProp = "Empresa que Laboro : ";
			w1039.Name = "label59";
			this.label59 = w1039;
			w1038.Add (w1039);
			Gtk.Box.BoxChild w1040 = ((Gtk.Box.BoxChild) (w1038 [w1039]));
			w1040.Position = 0;
			w1040.Expand = false;
			w1040.Fill = false;
			// Container child hbox33.Gtk.Box+BoxChild
			Gtk.Entry w1041 = new Gtk.Entry ();
			w1041.IsEditable = true;
			w1041.WidthChars = 40;
			w1041.MaxLength = 40;
			w1041.InvisibleChar = '●';
			w1041.CanFocus = true;
			w1041.Name = "en_EmprLa4";
			this.en_EmprLa4 = w1041;
			w1038.Add (w1041);
			Gtk.Box.BoxChild w1042 = ((Gtk.Box.BoxChild) (w1038 [w1041]));
			w1042.Position = 1;
			w1042.Expand = false;
			this.hbox33 = w1038;
			w1037.Add (w1038);
			Gtk.Box.BoxChild w1043 = ((Gtk.Box.BoxChild) (w1037 [w1038]));
			w1043.Position = 0;
			w1043.Expand = false;
			w1043.Fill = false;
			// Container child vbox17.Gtk.Box+BoxChild
			Gtk.HBox w1044 = new Gtk.HBox ();
			w1044.BorderWidth = ((uint) (1));
			w1044.Name = "hbox34";
			// Container child hbox34.Gtk.Box+BoxChild
			Gtk.Label w1045 = new Gtk.Label ();
			w1045.LabelProp = "Periodo desde           : ";
			w1045.Name = "label60";
			this.label60 = w1045;
			w1044.Add (w1045);
			Gtk.Box.BoxChild w1046 = ((Gtk.Box.BoxChild) (w1044 [w1045]));
			w1046.Position = 0;
			w1046.Expand = false;
			w1046.Fill = false;
			// Container child hbox34.Gtk.Box+BoxChild
			Gtk.SpinButton w1047 = new Gtk.SpinButton (1940, 2020, 1);
			w1047.Adjustment.PageIncrement = 10;
			w1047.ClimbRate = 1;
			w1047.Numeric = true;
			w1047.Value = 1980;
			w1047.CanFocus = true;
			w1047.Name = "sp_AnioIni4";
			this.sp_AnioIni4 = w1047;
			w1044.Add (w1047);
			Gtk.Box.BoxChild w1048 = ((Gtk.Box.BoxChild) (w1044 [w1047]));
			w1048.Position = 1;
			w1048.Expand = false;
			w1048.Fill = false;
			// Container child hbox34.Gtk.Box+BoxChild
			Gtk.Label w1049 = new Gtk.Label ();
			w1049.LabelProp = "Mes :";
			w1049.Name = "label61";
			this.label61 = w1049;
			w1044.Add (w1049);
			Gtk.Box.BoxChild w1050 = ((Gtk.Box.BoxChild) (w1044 [w1049]));
			w1050.Position = 2;
			w1050.Expand = false;
			w1050.Fill = false;
			w1050.Padding = ((uint) (5));
			// Container child hbox34.Gtk.Box+BoxChild
			Gtk.ComboBox w1051 = Gtk.ComboBox.NewText ();
			w1051.Active = 0;
			w1051.Name = "com_MesIni4";
			this.com_MesIni4 = w1051;
			w1044.Add (w1051);
			Gtk.Box.BoxChild w1052 = ((Gtk.Box.BoxChild) (w1044 [w1051]));
			w1052.Position = 3;
			w1052.Expand = false;
			w1052.Fill = false;
			// Container child hbox34.Gtk.Box+BoxChild
			Gtk.Alignment w1053 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1053.LeftPadding = ((uint) (62));
			w1053.Name = "alignment23";
			// Container child alignment23.Gtk.Container+ContainerChild
			Gtk.Label w1054 = new Gtk.Label ();
			w1054.LabelProp = "  Hasta : ";
			w1054.Name = "label62";
			this.label62 = w1054;
			w1053.Add (w1054);
			this.alignment23 = w1053;
			w1044.Add (w1053);
			Gtk.Box.BoxChild w1056 = ((Gtk.Box.BoxChild) (w1044 [w1053]));
			w1056.Position = 4;
			w1056.Expand = false;
			w1056.Fill = false;
			// Container child hbox34.Gtk.Box+BoxChild
			Gtk.SpinButton w1057 = new Gtk.SpinButton (1940, 2020, 1);
			w1057.Adjustment.PageIncrement = 10;
			w1057.ClimbRate = 1;
			w1057.Numeric = true;
			w1057.Value = 1980;
			w1057.CanFocus = true;
			w1057.Name = "sp_AnioFin4";
			this.sp_AnioFin4 = w1057;
			w1044.Add (w1057);
			Gtk.Box.BoxChild w1058 = ((Gtk.Box.BoxChild) (w1044 [w1057]));
			w1058.Position = 5;
			w1058.Expand = false;
			w1058.Fill = false;
			// Container child hbox34.Gtk.Box+BoxChild
			Gtk.Label w1059 = new Gtk.Label ();
			w1059.LabelProp = "Mes :";
			w1059.Name = "label154";
			this.label154 = w1059;
			w1044.Add (w1059);
			Gtk.Box.BoxChild w1060 = ((Gtk.Box.BoxChild) (w1044 [w1059]));
			w1060.Position = 6;
			w1060.Expand = false;
			w1060.Fill = false;
			w1060.Padding = ((uint) (5));
			// Container child hbox34.Gtk.Box+BoxChild
			Gtk.ComboBox w1061 = Gtk.ComboBox.NewText ();
			w1061.Active = 0;
			w1061.Name = "com_MesFin4";
			this.com_MesFin4 = w1061;
			w1044.Add (w1061);
			Gtk.Box.BoxChild w1062 = ((Gtk.Box.BoxChild) (w1044 [w1061]));
			w1062.Position = 7;
			w1062.Expand = false;
			w1062.Fill = false;
			this.hbox34 = w1044;
			w1037.Add (w1044);
			Gtk.Box.BoxChild w1063 = ((Gtk.Box.BoxChild) (w1037 [w1044]));
			w1063.Position = 1;
			w1063.Expand = false;
			w1063.Fill = false;
			// Container child vbox17.Gtk.Box+BoxChild
			Gtk.HBox w1064 = new Gtk.HBox ();
			w1064.BorderWidth = ((uint) (1));
			w1064.Name = "hbox35";
			// Container child hbox35.Gtk.Box+BoxChild
			Gtk.Label w1065 = new Gtk.Label ();
			w1065.LabelProp = "Cargo Desempeñado: ";
			w1065.Name = "label155";
			this.label155 = w1065;
			w1064.Add (w1065);
			Gtk.Box.BoxChild w1066 = ((Gtk.Box.BoxChild) (w1064 [w1065]));
			w1066.Position = 0;
			w1066.Expand = false;
			w1066.Fill = false;
			// Container child hbox35.Gtk.Box+BoxChild
			Gtk.Entry w1067 = new Gtk.Entry ();
			w1067.IsEditable = true;
			w1067.WidthChars = 40;
			w1067.MaxLength = 40;
			w1067.InvisibleChar = '●';
			w1067.CanFocus = true;
			w1067.Name = "en_Cargo4";
			this.en_Cargo4 = w1067;
			w1064.Add (w1067);
			Gtk.Box.BoxChild w1068 = ((Gtk.Box.BoxChild) (w1064 [w1067]));
			w1068.Position = 1;
			w1068.Expand = false;
			this.hbox35 = w1064;
			w1037.Add (w1064);
			Gtk.Box.BoxChild w1069 = ((Gtk.Box.BoxChild) (w1037 [w1064]));
			w1069.Position = 2;
			w1069.Expand = false;
			w1069.Fill = false;
			// Container child vbox17.Gtk.Box+BoxChild
			Gtk.Alignment w1070 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1070.LeftPadding = ((uint) (3));
			w1070.BottomPadding = ((uint) (2));
			w1070.Name = "alignment52";
			// Container child alignment52.Gtk.Container+ContainerChild
			Gtk.HBox w1071 = new Gtk.HBox ();
			w1071.Name = "hbox69";
			// Container child hbox69.Gtk.Box+BoxChild
			Gtk.Label w1072 = new Gtk.Label ();
			w1072.LabelProp = "Funciones\nRealizadas: ";
			w1072.Name = "label156";
			this.label156 = w1072;
			w1071.Add (w1072);
			Gtk.Box.BoxChild w1073 = ((Gtk.Box.BoxChild) (w1071 [w1072]));
			w1073.Position = 0;
			w1073.Expand = false;
			w1073.Fill = false;
			// Container child hbox69.Gtk.Box+BoxChild
			Gtk.Table w1074 = new Gtk.Table (((uint) (2)), ((uint) (3)), false);
			w1074.Name = "table10";
			// Container child table10.Gtk.Table+TableChild
			Gtk.Label w1075 = new Gtk.Label ();
			w1075.LabelProp = "*  ";
			w1075.Name = "label157";
			this.label157 = w1075;
			w1074.Add (w1075);
			Gtk.Table.TableChild w1076 = ((Gtk.Table.TableChild) (w1074 [w1075]));
			w1076.LeftAttach = ((uint) (1));
			w1076.RightAttach = ((uint) (2));
			w1076.XOptions = ((Gtk.AttachOptions) (4));
			w1076.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table10.Gtk.Table+TableChild
			Gtk.Entry w1077 = new Gtk.Entry ();
			w1077.IsEditable = true;
			w1077.WidthChars = 23;
			w1077.MaxLength = 40;
			w1077.InvisibleChar = '●';
			w1077.CanFocus = true;
			w1077.Name = "en_FuncRe44";
			this.en_FuncRe44 = w1077;
			w1074.Add (w1077);
			Gtk.Table.TableChild w1078 = ((Gtk.Table.TableChild) (w1074 [w1077]));
			w1078.TopAttach = ((uint) (1));
			w1078.BottomAttach = ((uint) (2));
			w1078.LeftAttach = ((uint) (2));
			w1078.RightAttach = ((uint) (3));
			w1078.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table10.Gtk.Table+TableChild
			Gtk.Entry w1079 = new Gtk.Entry ();
			w1079.IsEditable = true;
			w1079.WidthChars = 23;
			w1079.MaxLength = 40;
			w1079.InvisibleChar = '●';
			w1079.CanFocus = true;
			w1079.Name = "en_FuncRe43";
			this.en_FuncRe43 = w1079;
			w1074.Add (w1079);
			Gtk.Table.TableChild w1080 = ((Gtk.Table.TableChild) (w1074 [w1079]));
			w1080.TopAttach = ((uint) (1));
			w1080.BottomAttach = ((uint) (2));
			w1080.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table10.Gtk.Table+TableChild
			Gtk.Entry w1081 = new Gtk.Entry ();
			w1081.IsEditable = true;
			w1081.WidthChars = 23;
			w1081.MaxLength = 40;
			w1081.InvisibleChar = '●';
			w1081.CanFocus = true;
			w1081.Name = "en_FuncRe42";
			this.en_FuncRe42 = w1081;
			w1074.Add (w1081);
			Gtk.Table.TableChild w1082 = ((Gtk.Table.TableChild) (w1074 [w1081]));
			w1082.LeftAttach = ((uint) (2));
			w1082.RightAttach = ((uint) (3));
			w1082.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table10.Gtk.Table+TableChild
			Gtk.Entry w1083 = new Gtk.Entry ();
			w1083.IsEditable = true;
			w1083.WidthChars = 23;
			w1083.MaxLength = 40;
			w1083.InvisibleChar = '●';
			w1083.CanFocus = true;
			w1083.Name = "en_FuncRe41";
			this.en_FuncRe41 = w1083;
			w1074.Add (w1083);
			Gtk.Table.TableChild w1084 = ((Gtk.Table.TableChild) (w1074 [w1083]));
			w1084.YOptions = ((Gtk.AttachOptions) (4));
			this.table10 = w1074;
			w1071.Add (w1074);
			Gtk.Box.BoxChild w1085 = ((Gtk.Box.BoxChild) (w1071 [w1074]));
			w1085.Position = 1;
			this.hbox69 = w1071;
			w1070.Add (w1071);
			this.alignment52 = w1070;
			w1037.Add (w1070);
			Gtk.Box.BoxChild w1087 = ((Gtk.Box.BoxChild) (w1037 [w1070]));
			w1087.Position = 3;
			w1087.Expand = false;
			w1087.Fill = false;
			this.vbox17 = w1037;
			w1036.Add (w1037);
			this.GtkAlignment20 = w1036;
			w1035.Add (w1036);
			Gtk.Label w1090 = new Gtk.Label ();
			w1090.LabelProp = "";
			w1090.UseMarkup = true;
			w1090.Events = ((Gdk.EventMask) (256));
			w1090.Name = "GtkLabel49";
			this.GtkLabel49 = w1090;
			w1035.LabelWidget = w1090;
			this.frame22 = w1035;
			w1034.Add (w1035);
			this.alignment22 = w1034;
			w1033.Add (w1034);
			Gtk.Label w1093 = new Gtk.Label ();
			w1093.LabelProp = "4. Experiencia Laboral";
			w1093.UseUnderline = true;
			w1093.Name = "GtkLabel62";
			this.GtkLabel62 = w1093;
			w1033.LabelWidget = w1093;
			this.expander4 = w1033;
			w840.Add (w1033);
			Gtk.Box.BoxChild w1094 = ((Gtk.Box.BoxChild) (w840 [w1033]));
			w1094.Position = 4;
			w1094.Expand = false;
			w1094.Fill = false;
			// Container child vbox14.Gtk.Box+BoxChild
			Gtk.Expander w1095 = new Gtk.Expander (null);
			w1095.CanFocus = true;
			w1095.Name = "expander5";
			// Container child expander5.Gtk.Container+ContainerChild
			Gtk.Alignment w1096 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1096.LeftPadding = ((uint) (10));
			w1096.RightPadding = ((uint) (10));
			w1096.BottomPadding = ((uint) (5));
			w1096.Name = "alignment53";
			// Container child alignment53.Gtk.Container+ContainerChild
			Gtk.Frame w1097 = new Gtk.Frame ();
			w1097.ShadowType = ((Gtk.ShadowType) (4));
			w1097.LabelXalign = 0F;
			w1097.Name = "frame37";
			// Container child frame37.Gtk.Container+ContainerChild
			Gtk.Alignment w1098 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w1098.LeftPadding = ((uint) (10));
			w1098.RightPadding = ((uint) (10));
			w1098.Name = "GtkAlignment38";
			// Container child GtkAlignment38.Gtk.Container+ContainerChild
			Gtk.VBox w1099 = new Gtk.VBox ();
			w1099.Name = "vbox35";
			// Container child vbox35.Gtk.Box+BoxChild
			Gtk.HBox w1100 = new Gtk.HBox ();
			w1100.BorderWidth = ((uint) (1));
			w1100.Name = "hbox70";
			// Container child hbox70.Gtk.Box+BoxChild
			Gtk.Label w1101 = new Gtk.Label ();
			w1101.LabelProp = "Empresa que Laboro : ";
			w1101.Name = "label158";
			this.label158 = w1101;
			w1100.Add (w1101);
			Gtk.Box.BoxChild w1102 = ((Gtk.Box.BoxChild) (w1100 [w1101]));
			w1102.Position = 0;
			w1102.Expand = false;
			w1102.Fill = false;
			// Container child hbox70.Gtk.Box+BoxChild
			Gtk.Entry w1103 = new Gtk.Entry ();
			w1103.IsEditable = true;
			w1103.WidthChars = 40;
			w1103.MaxLength = 40;
			w1103.InvisibleChar = '●';
			w1103.CanFocus = true;
			w1103.Name = "en_EmprLa5";
			this.en_EmprLa5 = w1103;
			w1100.Add (w1103);
			Gtk.Box.BoxChild w1104 = ((Gtk.Box.BoxChild) (w1100 [w1103]));
			w1104.Position = 1;
			w1104.Expand = false;
			this.hbox70 = w1100;
			w1099.Add (w1100);
			Gtk.Box.BoxChild w1105 = ((Gtk.Box.BoxChild) (w1099 [w1100]));
			w1105.Position = 0;
			w1105.Expand = false;
			w1105.Fill = false;
			// Container child vbox35.Gtk.Box+BoxChild
			Gtk.HBox w1106 = new Gtk.HBox ();
			w1106.BorderWidth = ((uint) (1));
			w1106.Name = "hbox71";
			// Container child hbox71.Gtk.Box+BoxChild
			Gtk.Label w1107 = new Gtk.Label ();
			w1107.LabelProp = "Periodo desde           : ";
			w1107.Name = "label159";
			this.label159 = w1107;
			w1106.Add (w1107);
			Gtk.Box.BoxChild w1108 = ((Gtk.Box.BoxChild) (w1106 [w1107]));
			w1108.Position = 0;
			w1108.Expand = false;
			w1108.Fill = false;
			// Container child hbox71.Gtk.Box+BoxChild
			Gtk.SpinButton w1109 = new Gtk.SpinButton (1940, 2020, 1);
			w1109.Adjustment.PageIncrement = 10;
			w1109.ClimbRate = 1;
			w1109.Numeric = true;
			w1109.Value = 1980;
			w1109.CanFocus = true;
			w1109.Name = "sp_AnioIni5";
			this.sp_AnioIni5 = w1109;
			w1106.Add (w1109);
			Gtk.Box.BoxChild w1110 = ((Gtk.Box.BoxChild) (w1106 [w1109]));
			w1110.Position = 1;
			w1110.Expand = false;
			w1110.Fill = false;
			// Container child hbox71.Gtk.Box+BoxChild
			Gtk.Label w1111 = new Gtk.Label ();
			w1111.LabelProp = "Mes :";
			w1111.Name = "label160";
			this.label160 = w1111;
			w1106.Add (w1111);
			Gtk.Box.BoxChild w1112 = ((Gtk.Box.BoxChild) (w1106 [w1111]));
			w1112.Position = 2;
			w1112.Expand = false;
			w1112.Fill = false;
			w1112.Padding = ((uint) (5));
			// Container child hbox71.Gtk.Box+BoxChild
			Gtk.ComboBox w1113 = Gtk.ComboBox.NewText ();
			w1113.Active = 0;
			w1113.Name = "com_MesIni5";
			this.com_MesIni5 = w1113;
			w1106.Add (w1113);
			Gtk.Box.BoxChild w1114 = ((Gtk.Box.BoxChild) (w1106 [w1113]));
			w1114.Position = 3;
			w1114.Expand = false;
			w1114.Fill = false;
			// Container child hbox71.Gtk.Box+BoxChild
			Gtk.Alignment w1115 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1115.LeftPadding = ((uint) (62));
			w1115.Name = "alignment54";
			// Container child alignment54.Gtk.Container+ContainerChild
			Gtk.Label w1116 = new Gtk.Label ();
			w1116.LabelProp = "  Hasta : ";
			w1116.Name = "label161";
			this.label161 = w1116;
			w1115.Add (w1116);
			this.alignment54 = w1115;
			w1106.Add (w1115);
			Gtk.Box.BoxChild w1118 = ((Gtk.Box.BoxChild) (w1106 [w1115]));
			w1118.Position = 4;
			w1118.Expand = false;
			w1118.Fill = false;
			// Container child hbox71.Gtk.Box+BoxChild
			Gtk.SpinButton w1119 = new Gtk.SpinButton (1940, 2020, 1);
			w1119.Adjustment.PageIncrement = 10;
			w1119.ClimbRate = 1;
			w1119.Numeric = true;
			w1119.Value = 1980;
			w1119.CanFocus = true;
			w1119.Name = "sp_AnioFin5";
			this.sp_AnioFin5 = w1119;
			w1106.Add (w1119);
			Gtk.Box.BoxChild w1120 = ((Gtk.Box.BoxChild) (w1106 [w1119]));
			w1120.Position = 5;
			w1120.Expand = false;
			w1120.Fill = false;
			// Container child hbox71.Gtk.Box+BoxChild
			Gtk.Label w1121 = new Gtk.Label ();
			w1121.LabelProp = "Mes :";
			w1121.Name = "label162";
			this.label162 = w1121;
			w1106.Add (w1121);
			Gtk.Box.BoxChild w1122 = ((Gtk.Box.BoxChild) (w1106 [w1121]));
			w1122.Position = 6;
			w1122.Expand = false;
			w1122.Fill = false;
			w1122.Padding = ((uint) (5));
			// Container child hbox71.Gtk.Box+BoxChild
			Gtk.ComboBox w1123 = Gtk.ComboBox.NewText ();
			w1123.Active = 0;
			w1123.Name = "com_MesFin5";
			this.com_MesFin5 = w1123;
			w1106.Add (w1123);
			Gtk.Box.BoxChild w1124 = ((Gtk.Box.BoxChild) (w1106 [w1123]));
			w1124.Position = 7;
			w1124.Expand = false;
			w1124.Fill = false;
			this.hbox71 = w1106;
			w1099.Add (w1106);
			Gtk.Box.BoxChild w1125 = ((Gtk.Box.BoxChild) (w1099 [w1106]));
			w1125.Position = 1;
			w1125.Expand = false;
			w1125.Fill = false;
			// Container child vbox35.Gtk.Box+BoxChild
			Gtk.HBox w1126 = new Gtk.HBox ();
			w1126.BorderWidth = ((uint) (1));
			w1126.Name = "hbox72";
			// Container child hbox72.Gtk.Box+BoxChild
			Gtk.Label w1127 = new Gtk.Label ();
			w1127.LabelProp = "Cargo Desempeñado: ";
			w1127.Name = "label163";
			this.label163 = w1127;
			w1126.Add (w1127);
			Gtk.Box.BoxChild w1128 = ((Gtk.Box.BoxChild) (w1126 [w1127]));
			w1128.Position = 0;
			w1128.Expand = false;
			w1128.Fill = false;
			// Container child hbox72.Gtk.Box+BoxChild
			Gtk.Entry w1129 = new Gtk.Entry ();
			w1129.IsEditable = true;
			w1129.WidthChars = 40;
			w1129.MaxLength = 40;
			w1129.InvisibleChar = '●';
			w1129.CanFocus = true;
			w1129.Name = "en_Cargo5";
			this.en_Cargo5 = w1129;
			w1126.Add (w1129);
			Gtk.Box.BoxChild w1130 = ((Gtk.Box.BoxChild) (w1126 [w1129]));
			w1130.Position = 1;
			w1130.Expand = false;
			this.hbox72 = w1126;
			w1099.Add (w1126);
			Gtk.Box.BoxChild w1131 = ((Gtk.Box.BoxChild) (w1099 [w1126]));
			w1131.Position = 2;
			w1131.Expand = false;
			w1131.Fill = false;
			// Container child vbox35.Gtk.Box+BoxChild
			Gtk.Alignment w1132 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1132.LeftPadding = ((uint) (3));
			w1132.BottomPadding = ((uint) (2));
			w1132.Name = "alignment55";
			// Container child alignment55.Gtk.Container+ContainerChild
			Gtk.HBox w1133 = new Gtk.HBox ();
			w1133.Name = "hbox73";
			// Container child hbox73.Gtk.Box+BoxChild
			Gtk.Label w1134 = new Gtk.Label ();
			w1134.LabelProp = "Funciones\nRealizadas: ";
			w1134.Name = "label164";
			this.label164 = w1134;
			w1133.Add (w1134);
			Gtk.Box.BoxChild w1135 = ((Gtk.Box.BoxChild) (w1133 [w1134]));
			w1135.Position = 0;
			w1135.Expand = false;
			w1135.Fill = false;
			// Container child hbox73.Gtk.Box+BoxChild
			Gtk.Table w1136 = new Gtk.Table (((uint) (2)), ((uint) (3)), false);
			w1136.Name = "table11";
			// Container child table11.Gtk.Table+TableChild
			Gtk.Label w1137 = new Gtk.Label ();
			w1137.LabelProp = "*  ";
			w1137.Name = "label165";
			this.label165 = w1137;
			w1136.Add (w1137);
			Gtk.Table.TableChild w1138 = ((Gtk.Table.TableChild) (w1136 [w1137]));
			w1138.LeftAttach = ((uint) (1));
			w1138.RightAttach = ((uint) (2));
			w1138.XOptions = ((Gtk.AttachOptions) (4));
			w1138.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table11.Gtk.Table+TableChild
			Gtk.Entry w1139 = new Gtk.Entry ();
			w1139.IsEditable = true;
			w1139.WidthChars = 23;
			w1139.MaxLength = 40;
			w1139.InvisibleChar = '●';
			w1139.CanFocus = true;
			w1139.Name = "en_FuncRe54";
			this.en_FuncRe54 = w1139;
			w1136.Add (w1139);
			Gtk.Table.TableChild w1140 = ((Gtk.Table.TableChild) (w1136 [w1139]));
			w1140.TopAttach = ((uint) (1));
			w1140.BottomAttach = ((uint) (2));
			w1140.LeftAttach = ((uint) (2));
			w1140.RightAttach = ((uint) (3));
			w1140.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table11.Gtk.Table+TableChild
			Gtk.Entry w1141 = new Gtk.Entry ();
			w1141.IsEditable = true;
			w1141.WidthChars = 23;
			w1141.MaxLength = 40;
			w1141.InvisibleChar = '●';
			w1141.CanFocus = true;
			w1141.Name = "en_FuncRe53";
			this.en_FuncRe53 = w1141;
			w1136.Add (w1141);
			Gtk.Table.TableChild w1142 = ((Gtk.Table.TableChild) (w1136 [w1141]));
			w1142.TopAttach = ((uint) (1));
			w1142.BottomAttach = ((uint) (2));
			w1142.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table11.Gtk.Table+TableChild
			Gtk.Entry w1143 = new Gtk.Entry ();
			w1143.IsEditable = true;
			w1143.WidthChars = 23;
			w1143.MaxLength = 40;
			w1143.InvisibleChar = '●';
			w1143.CanFocus = true;
			w1143.Name = "en_FuncRe52";
			this.en_FuncRe52 = w1143;
			w1136.Add (w1143);
			Gtk.Table.TableChild w1144 = ((Gtk.Table.TableChild) (w1136 [w1143]));
			w1144.LeftAttach = ((uint) (2));
			w1144.RightAttach = ((uint) (3));
			w1144.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table11.Gtk.Table+TableChild
			Gtk.Entry w1145 = new Gtk.Entry ();
			w1145.IsEditable = true;
			w1145.WidthChars = 23;
			w1145.MaxLength = 40;
			w1145.InvisibleChar = '●';
			w1145.CanFocus = true;
			w1145.Name = "en_FuncRe51";
			this.en_FuncRe51 = w1145;
			w1136.Add (w1145);
			Gtk.Table.TableChild w1146 = ((Gtk.Table.TableChild) (w1136 [w1145]));
			w1146.YOptions = ((Gtk.AttachOptions) (4));
			this.table11 = w1136;
			w1133.Add (w1136);
			Gtk.Box.BoxChild w1147 = ((Gtk.Box.BoxChild) (w1133 [w1136]));
			w1147.Position = 1;
			this.hbox73 = w1133;
			w1132.Add (w1133);
			this.alignment55 = w1132;
			w1099.Add (w1132);
			Gtk.Box.BoxChild w1149 = ((Gtk.Box.BoxChild) (w1099 [w1132]));
			w1149.Position = 3;
			w1149.Expand = false;
			w1149.Fill = false;
			this.vbox35 = w1099;
			w1098.Add (w1099);
			this.GtkAlignment38 = w1098;
			w1097.Add (w1098);
			Gtk.Label w1152 = new Gtk.Label ();
			w1152.LabelProp = "";
			w1152.UseMarkup = true;
			w1152.Events = ((Gdk.EventMask) (256));
			w1152.Name = "GtkLabel50";
			this.GtkLabel50 = w1152;
			w1097.LabelWidget = w1152;
			this.frame37 = w1097;
			w1096.Add (w1097);
			this.alignment53 = w1096;
			w1095.Add (w1096);
			Gtk.Label w1155 = new Gtk.Label ();
			w1155.LabelProp = "5. Experiencia Laboral ";
			w1155.UseUnderline = true;
			w1155.Name = "GtkLabel47";
			this.GtkLabel47 = w1155;
			w1095.LabelWidget = w1155;
			this.expander5 = w1095;
			w840.Add (w1095);
			Gtk.Box.BoxChild w1156 = ((Gtk.Box.BoxChild) (w840 [w1095]));
			w1156.Position = 5;
			w1156.Expand = false;
			w1156.Fill = false;
			this.vbox14 = w840;
			w839.Add (w840);
			w838.Add (w839);
			this.scrolledwindow6 = w838;
			w136.Add (w838);
			Gtk.Notebook.NotebookChild w1159 = ((Gtk.Notebook.NotebookChild) (w136 [w838]));
			w1159.Position = 5;
			w1159.TabExpand = false;
			// Notebook tab
			Gtk.Label w1160 = new Gtk.Label ();
			w1160.LabelProp = "Experiencia\nLaboral";
			w1160.Justify = ((Gtk.Justification) (2));
			w1160.Name = "la_ExpLaboral";
			this.la_ExpLaboral = w1160;
			w136.SetTabLabel (w838, w1160);
			// Container child notebook1.Gtk.Notebook+NotebookChild
			Gtk.Notebook w1161 = new Gtk.Notebook ();
			w1161.TabPos = ((Gtk.PositionType) (0));
			w1161.CanFocus = true;
			w1161.Name = "notebook2";
			// Container child notebook2.Gtk.Notebook+NotebookChild
			Gtk.ScrolledWindow w1162 = new Gtk.ScrolledWindow ();
			w1162.VscrollbarPolicy = ((Gtk.PolicyType) (1));
			w1162.HscrollbarPolicy = ((Gtk.PolicyType) (1));
			w1162.CanFocus = true;
			w1162.Name = "scrolledwindow8";
			// Container child scrolledwindow8.Gtk.Container+ContainerChild
			Gtk.Viewport w1163 = new Gtk.Viewport ();
			w1163.ShadowType = ((Gtk.ShadowType) (0));
			w1163.Name = "GtkViewport7";
			// Container child GtkViewport7.Gtk.Container+ContainerChild
			Gtk.VBox w1164 = new Gtk.VBox ();
			w1164.Name = "vbox30";
			// Container child vbox30.Gtk.Box+BoxChild
			Gtk.Alignment w1165 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1165.LeftPadding = ((uint) (10));
			w1165.RightPadding = ((uint) (10));
			w1165.BottomPadding = ((uint) (5));
			w1165.Name = "alignment38";
			// Container child alignment38.Gtk.Container+ContainerChild
			Gtk.Frame w1166 = new Gtk.Frame ();
			w1166.ShadowType = ((Gtk.ShadowType) (4));
			w1166.LabelXalign = 0F;
			w1166.Name = "frame30";
			// Container child frame30.Gtk.Container+ContainerChild
			Gtk.Alignment w1167 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w1167.LeftPadding = ((uint) (12));
			w1167.BottomPadding = ((uint) (5));
			w1167.Name = "GtkAlignment33";
			// Container child GtkAlignment33.Gtk.Container+ContainerChild
			Gtk.HBox w1168 = new Gtk.HBox ();
			w1168.Name = "hbox56";
			// Container child hbox56.Gtk.Box+BoxChild
			Gtk.Table w1169 = new Gtk.Table (((uint) (8)), ((uint) (2)), false);
			w1169.RowSpacing = ((uint) (2));
			w1169.BorderWidth = ((uint) (5));
			w1169.Name = "table2";
			// Container child table2.Gtk.Table+TableChild
			Gtk.Label w1170 = new Gtk.Label ();
			w1170.LabelProp = "Trabajo en Equipo (A):               ";
			w1170.Name = "label99";
			this.label99 = w1170;
			w1169.Add (w1170);
			Gtk.Table.TableChild w1171 = ((Gtk.Table.TableChild) (w1169 [w1170]));
			w1171.XOptions = ((Gtk.AttachOptions) (4));
			w1171.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Label w1172 = new Gtk.Label ();
			w1172.LabelProp = "Atención al Detalle:                  ";
			w1172.Name = "label101";
			this.label101 = w1172;
			w1169.Add (w1172);
			Gtk.Table.TableChild w1173 = ((Gtk.Table.TableChild) (w1169 [w1172]));
			w1173.TopAttach = ((uint) (1));
			w1173.BottomAttach = ((uint) (2));
			w1173.XOptions = ((Gtk.AttachOptions) (4));
			w1173.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Label w1174 = new Gtk.Label ();
			w1174.LabelProp = "Retroalimentación:                    ";
			w1174.Name = "label103";
			this.label103 = w1174;
			w1169.Add (w1174);
			Gtk.Table.TableChild w1175 = ((Gtk.Table.TableChild) (w1169 [w1174]));
			w1175.TopAttach = ((uint) (2));
			w1175.BottomAttach = ((uint) (3));
			w1175.XOptions = ((Gtk.AttachOptions) (4));
			w1175.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Entry w1176 = new Gtk.Entry ();
			w1176.IsEditable = true;
			w1176.WidthChars = 5;
			w1176.MaxLength = 5;
			w1176.InvisibleChar = '●';
			w1176.CanFocus = true;
			w1176.Name = "en_TrabEqui";
			this.en_TrabEqui = w1176;
			w1169.Add (w1176);
			Gtk.Table.TableChild w1177 = ((Gtk.Table.TableChild) (w1169 [w1176]));
			w1177.LeftAttach = ((uint) (1));
			w1177.RightAttach = ((uint) (2));
			w1177.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Entry w1178 = new Gtk.Entry ();
			w1178.IsEditable = true;
			w1178.WidthChars = 5;
			w1178.MaxLength = 5;
			w1178.InvisibleChar = '●';
			w1178.CanFocus = true;
			w1178.Name = "en_AtenDet";
			this.en_AtenDet = w1178;
			w1169.Add (w1178);
			Gtk.Table.TableChild w1179 = ((Gtk.Table.TableChild) (w1169 [w1178]));
			w1179.TopAttach = ((uint) (1));
			w1179.BottomAttach = ((uint) (2));
			w1179.LeftAttach = ((uint) (1));
			w1179.RightAttach = ((uint) (2));
			w1179.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Entry w1180 = new Gtk.Entry ();
			w1180.IsEditable = true;
			w1180.WidthChars = 5;
			w1180.MaxLength = 5;
			w1180.InvisibleChar = '●';
			w1180.CanFocus = true;
			w1180.Name = "en_RetroAli";
			this.en_RetroAli = w1180;
			w1169.Add (w1180);
			Gtk.Table.TableChild w1181 = ((Gtk.Table.TableChild) (w1169 [w1180]));
			w1181.TopAttach = ((uint) (2));
			w1181.BottomAttach = ((uint) (3));
			w1181.LeftAttach = ((uint) (1));
			w1181.RightAttach = ((uint) (2));
			w1181.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Label w1182 = new Gtk.Label ();
			w1182.LabelProp = "Comunicación Abierta (A):        ";
			w1182.Name = "label106";
			this.label106 = w1182;
			w1169.Add (w1182);
			Gtk.Table.TableChild w1183 = ((Gtk.Table.TableChild) (w1169 [w1182]));
			w1183.TopAttach = ((uint) (3));
			w1183.BottomAttach = ((uint) (4));
			w1183.XOptions = ((Gtk.AttachOptions) (4));
			w1183.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Entry w1184 = new Gtk.Entry ();
			w1184.IsEditable = true;
			w1184.WidthChars = 5;
			w1184.MaxLength = 5;
			w1184.InvisibleChar = '●';
			w1184.CanFocus = true;
			w1184.Name = "en_ComAbie";
			this.en_ComAbie = w1184;
			w1169.Add (w1184);
			Gtk.Table.TableChild w1185 = ((Gtk.Table.TableChild) (w1169 [w1184]));
			w1185.TopAttach = ((uint) (3));
			w1185.BottomAttach = ((uint) (4));
			w1185.LeftAttach = ((uint) (1));
			w1185.RightAttach = ((uint) (2));
			w1185.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Label w1186 = new Gtk.Label ();
			w1186.LabelProp = "Comunicación Escrita:               ";
			w1186.Name = "label107";
			this.label107 = w1186;
			w1169.Add (w1186);
			Gtk.Table.TableChild w1187 = ((Gtk.Table.TableChild) (w1169 [w1186]));
			w1187.TopAttach = ((uint) (4));
			w1187.BottomAttach = ((uint) (5));
			w1187.XOptions = ((Gtk.AttachOptions) (4));
			w1187.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Entry w1188 = new Gtk.Entry ();
			w1188.IsEditable = true;
			w1188.WidthChars = 5;
			w1188.MaxLength = 5;
			w1188.InvisibleChar = '●';
			w1188.CanFocus = true;
			w1188.Name = "en_ComEscr";
			this.en_ComEscr = w1188;
			w1169.Add (w1188);
			Gtk.Table.TableChild w1189 = ((Gtk.Table.TableChild) (w1169 [w1188]));
			w1189.TopAttach = ((uint) (4));
			w1189.BottomAttach = ((uint) (5));
			w1189.LeftAttach = ((uint) (1));
			w1189.RightAttach = ((uint) (2));
			w1189.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Label w1190 = new Gtk.Label ();
			w1190.LabelProp = "Planeación (A):                          ";
			w1190.Name = "label108";
			this.label108 = w1190;
			w1169.Add (w1190);
			Gtk.Table.TableChild w1191 = ((Gtk.Table.TableChild) (w1169 [w1190]));
			w1191.TopAttach = ((uint) (5));
			w1191.BottomAttach = ((uint) (6));
			w1191.XOptions = ((Gtk.AttachOptions) (4));
			w1191.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Entry w1192 = new Gtk.Entry ();
			w1192.IsEditable = true;
			w1192.WidthChars = 5;
			w1192.MaxLength = 5;
			w1192.InvisibleChar = '●';
			w1192.CanFocus = true;
			w1192.Name = "en_Planeacion";
			this.en_Planeacion = w1192;
			w1169.Add (w1192);
			Gtk.Table.TableChild w1193 = ((Gtk.Table.TableChild) (w1169 [w1192]));
			w1193.TopAttach = ((uint) (5));
			w1193.BottomAttach = ((uint) (6));
			w1193.LeftAttach = ((uint) (1));
			w1193.RightAttach = ((uint) (2));
			w1193.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Label w1194 = new Gtk.Label ();
			w1194.LabelProp = "Actitud nacia las Normas:         ";
			w1194.Name = "label109";
			this.label109 = w1194;
			w1169.Add (w1194);
			Gtk.Table.TableChild w1195 = ((Gtk.Table.TableChild) (w1169 [w1194]));
			w1195.TopAttach = ((uint) (6));
			w1195.BottomAttach = ((uint) (7));
			w1195.XOptions = ((Gtk.AttachOptions) (4));
			w1195.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Label w1196 = new Gtk.Label ();
			w1196.LabelProp = "Adaptabilidad(A):                      ";
			w1196.Name = "label113";
			this.label113 = w1196;
			w1169.Add (w1196);
			Gtk.Table.TableChild w1197 = ((Gtk.Table.TableChild) (w1169 [w1196]));
			w1197.TopAttach = ((uint) (7));
			w1197.BottomAttach = ((uint) (8));
			w1197.XOptions = ((Gtk.AttachOptions) (4));
			w1197.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Entry w1198 = new Gtk.Entry ();
			w1198.IsEditable = true;
			w1198.WidthChars = 5;
			w1198.MaxLength = 5;
			w1198.InvisibleChar = '●';
			w1198.CanFocus = true;
			w1198.Name = "en_ActNorma";
			this.en_ActNorma = w1198;
			w1169.Add (w1198);
			Gtk.Table.TableChild w1199 = ((Gtk.Table.TableChild) (w1169 [w1198]));
			w1199.TopAttach = ((uint) (6));
			w1199.BottomAttach = ((uint) (7));
			w1199.LeftAttach = ((uint) (1));
			w1199.RightAttach = ((uint) (2));
			w1199.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table2.Gtk.Table+TableChild
			Gtk.Entry w1200 = new Gtk.Entry ();
			w1200.IsEditable = true;
			w1200.WidthChars = 5;
			w1200.MaxLength = 5;
			w1200.InvisibleChar = '●';
			w1200.CanFocus = true;
			w1200.Name = "en_Adapta";
			this.en_Adapta = w1200;
			w1169.Add (w1200);
			Gtk.Table.TableChild w1201 = ((Gtk.Table.TableChild) (w1169 [w1200]));
			w1201.TopAttach = ((uint) (7));
			w1201.BottomAttach = ((uint) (8));
			w1201.LeftAttach = ((uint) (1));
			w1201.RightAttach = ((uint) (2));
			w1201.YOptions = ((Gtk.AttachOptions) (4));
			this.table2 = w1169;
			w1168.Add (w1169);
			Gtk.Box.BoxChild w1202 = ((Gtk.Box.BoxChild) (w1168 [w1169]));
			w1202.Position = 0;
			w1202.Expand = false;
			// Container child hbox56.Gtk.Box+BoxChild
			Gtk.VSeparator w1203 = new Gtk.VSeparator ();
			w1203.WidthRequest = 37;
			w1203.Name = "vseparator1";
			this.vseparator1 = w1203;
			w1168.Add (w1203);
			Gtk.Box.BoxChild w1204 = ((Gtk.Box.BoxChild) (w1168 [w1203]));
			w1204.Position = 1;
			w1204.Expand = false;
			w1204.Fill = false;
			// Container child hbox56.Gtk.Box+BoxChild
			Gtk.Table w1205 = new Gtk.Table (((uint) (8)), ((uint) (2)), false);
			w1205.RowSpacing = ((uint) (2));
			w1205.BorderWidth = ((uint) (5));
			w1205.Name = "table3";
			// Container child table3.Gtk.Table+TableChild
			Gtk.Label w1206 = new Gtk.Label ();
			w1206.LabelProp = "Compromiso Laboral:           ";
			w1206.Name = "label100";
			this.label100 = w1206;
			w1205.Add (w1206);
			Gtk.Table.TableChild w1207 = ((Gtk.Table.TableChild) (w1205 [w1206]));
			w1207.XOptions = ((Gtk.AttachOptions) (4));
			w1207.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Label w1208 = new Gtk.Label ();
			w1208.LabelProp = "Orientación al Resultado:     ";
			w1208.Name = "label102";
			this.label102 = w1208;
			w1205.Add (w1208);
			Gtk.Table.TableChild w1209 = ((Gtk.Table.TableChild) (w1205 [w1208]));
			w1209.TopAttach = ((uint) (1));
			w1209.BottomAttach = ((uint) (2));
			w1209.XOptions = ((Gtk.AttachOptions) (4));
			w1209.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Label w1210 = new Gtk.Label ();
			w1210.LabelProp = "Disciplina:                             ";
			w1210.Name = "label104";
			this.label104 = w1210;
			w1205.Add (w1210);
			Gtk.Table.TableChild w1211 = ((Gtk.Table.TableChild) (w1205 [w1210]));
			w1211.TopAttach = ((uint) (2));
			w1211.BottomAttach = ((uint) (3));
			w1211.XOptions = ((Gtk.AttachOptions) (4));
			w1211.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Entry w1212 = new Gtk.Entry ();
			w1212.IsEditable = true;
			w1212.WidthChars = 5;
			w1212.MaxLength = 5;
			w1212.InvisibleChar = '●';
			w1212.CanFocus = true;
			w1212.Name = "en_CompLab";
			this.en_CompLab = w1212;
			w1205.Add (w1212);
			Gtk.Table.TableChild w1213 = ((Gtk.Table.TableChild) (w1205 [w1212]));
			w1213.LeftAttach = ((uint) (1));
			w1213.RightAttach = ((uint) (2));
			w1213.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Entry w1214 = new Gtk.Entry ();
			w1214.IsEditable = true;
			w1214.WidthChars = 5;
			w1214.MaxLength = 5;
			w1214.InvisibleChar = '●';
			w1214.CanFocus = true;
			w1214.Name = "en_OrieRes";
			this.en_OrieRes = w1214;
			w1205.Add (w1214);
			Gtk.Table.TableChild w1215 = ((Gtk.Table.TableChild) (w1205 [w1214]));
			w1215.TopAttach = ((uint) (1));
			w1215.BottomAttach = ((uint) (2));
			w1215.LeftAttach = ((uint) (1));
			w1215.RightAttach = ((uint) (2));
			w1215.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Entry w1216 = new Gtk.Entry ();
			w1216.IsEditable = true;
			w1216.WidthChars = 5;
			w1216.MaxLength = 5;
			w1216.InvisibleChar = '●';
			w1216.CanFocus = true;
			w1216.Name = "en_Disciplina";
			this.en_Disciplina = w1216;
			w1205.Add (w1216);
			Gtk.Table.TableChild w1217 = ((Gtk.Table.TableChild) (w1205 [w1216]));
			w1217.TopAttach = ((uint) (2));
			w1217.BottomAttach = ((uint) (3));
			w1217.LeftAttach = ((uint) (1));
			w1217.RightAttach = ((uint) (2));
			w1217.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Label w1218 = new Gtk.Label ();
			w1218.LabelProp = "Habilidad Social (A):             ";
			w1218.Name = "label110";
			this.label110 = w1218;
			w1205.Add (w1218);
			Gtk.Table.TableChild w1219 = ((Gtk.Table.TableChild) (w1205 [w1218]));
			w1219.TopAttach = ((uint) (3));
			w1219.BottomAttach = ((uint) (4));
			w1219.XOptions = ((Gtk.AttachOptions) (4));
			w1219.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Label w1220 = new Gtk.Label ();
			w1220.LabelProp = "Sentido de Urgencia:           ";
			w1220.Name = "label111";
			this.label111 = w1220;
			w1205.Add (w1220);
			Gtk.Table.TableChild w1221 = ((Gtk.Table.TableChild) (w1205 [w1220]));
			w1221.TopAttach = ((uint) (4));
			w1221.BottomAttach = ((uint) (5));
			w1221.XOptions = ((Gtk.AttachOptions) (4));
			w1221.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Entry w1222 = new Gtk.Entry ();
			w1222.IsEditable = true;
			w1222.WidthChars = 5;
			w1222.MaxLength = 5;
			w1222.InvisibleChar = '●';
			w1222.CanFocus = true;
			w1222.Name = "en_HabSoc";
			this.en_HabSoc = w1222;
			w1205.Add (w1222);
			Gtk.Table.TableChild w1223 = ((Gtk.Table.TableChild) (w1205 [w1222]));
			w1223.TopAttach = ((uint) (3));
			w1223.BottomAttach = ((uint) (4));
			w1223.LeftAttach = ((uint) (1));
			w1223.RightAttach = ((uint) (2));
			w1223.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Entry w1224 = new Gtk.Entry ();
			w1224.IsEditable = true;
			w1224.WidthChars = 5;
			w1224.MaxLength = 5;
			w1224.InvisibleChar = '●';
			w1224.CanFocus = true;
			w1224.Name = "en_SenUrge";
			this.en_SenUrge = w1224;
			w1205.Add (w1224);
			Gtk.Table.TableChild w1225 = ((Gtk.Table.TableChild) (w1205 [w1224]));
			w1225.TopAttach = ((uint) (4));
			w1225.BottomAttach = ((uint) (5));
			w1225.LeftAttach = ((uint) (1));
			w1225.RightAttach = ((uint) (2));
			w1225.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Label w1226 = new Gtk.Label ();
			w1226.LabelProp = "Autocontrol:                         ";
			w1226.Name = "label112";
			this.label112 = w1226;
			w1205.Add (w1226);
			Gtk.Table.TableChild w1227 = ((Gtk.Table.TableChild) (w1205 [w1226]));
			w1227.TopAttach = ((uint) (5));
			w1227.BottomAttach = ((uint) (6));
			w1227.XOptions = ((Gtk.AttachOptions) (4));
			w1227.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Label w1228 = new Gtk.Label ();
			w1228.LabelProp = "Análisis Numérico:                ";
			w1228.Name = "label118";
			this.label118 = w1228;
			w1205.Add (w1228);
			Gtk.Table.TableChild w1229 = ((Gtk.Table.TableChild) (w1205 [w1228]));
			w1229.TopAttach = ((uint) (6));
			w1229.BottomAttach = ((uint) (7));
			w1229.XOptions = ((Gtk.AttachOptions) (4));
			w1229.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Entry w1230 = new Gtk.Entry ();
			w1230.IsEditable = true;
			w1230.WidthChars = 5;
			w1230.MaxLength = 5;
			w1230.InvisibleChar = '●';
			w1230.CanFocus = true;
			w1230.Name = "en_AutoCon";
			this.en_AutoCon = w1230;
			w1205.Add (w1230);
			Gtk.Table.TableChild w1231 = ((Gtk.Table.TableChild) (w1205 [w1230]));
			w1231.TopAttach = ((uint) (5));
			w1231.BottomAttach = ((uint) (6));
			w1231.LeftAttach = ((uint) (1));
			w1231.RightAttach = ((uint) (2));
			w1231.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table3.Gtk.Table+TableChild
			Gtk.Entry w1232 = new Gtk.Entry ();
			w1232.IsEditable = true;
			w1232.WidthChars = 5;
			w1232.MaxLength = 5;
			w1232.InvisibleChar = '●';
			w1232.CanFocus = true;
			w1232.Name = "en_AnaNum";
			this.en_AnaNum = w1232;
			w1205.Add (w1232);
			Gtk.Table.TableChild w1233 = ((Gtk.Table.TableChild) (w1205 [w1232]));
			w1233.TopAttach = ((uint) (6));
			w1233.BottomAttach = ((uint) (7));
			w1233.LeftAttach = ((uint) (1));
			w1233.RightAttach = ((uint) (2));
			w1233.YOptions = ((Gtk.AttachOptions) (4));
			this.table3 = w1205;
			w1168.Add (w1205);
			Gtk.Box.BoxChild w1234 = ((Gtk.Box.BoxChild) (w1168 [w1205]));
			w1234.Position = 2;
			w1234.Expand = false;
			this.hbox56 = w1168;
			w1167.Add (w1168);
			this.GtkAlignment33 = w1167;
			w1166.Add (w1167);
			Gtk.Label w1237 = new Gtk.Label ();
			w1237.LabelProp = "<b>Gestión 360:</b>";
			w1237.UseMarkup = true;
			w1237.Xpad = 8;
			w1237.Events = ((Gdk.EventMask) (256));
			w1237.Name = "GtkLabel40";
			this.GtkLabel40 = w1237;
			w1166.LabelWidget = w1237;
			this.frame30 = w1166;
			w1165.Add (w1166);
			this.alignment38 = w1165;
			w1164.Add (w1165);
			Gtk.Box.BoxChild w1239 = ((Gtk.Box.BoxChild) (w1164 [w1165]));
			w1239.Position = 0;
			w1239.Expand = false;
			w1239.Fill = false;
			this.vbox30 = w1164;
			w1163.Add (w1164);
			w1162.Add (w1163);
			this.scrolledwindow8 = w1162;
			w1161.Add (w1162);
			Gtk.Notebook.NotebookChild w1242 = ((Gtk.Notebook.NotebookChild) (w1161 [w1162]));
			w1242.TabExpand = false;
			// Notebook tab
			Gtk.Label w1243 = new Gtk.Label ();
			w1243.LabelProp = "Competencia\nLaborales";
			w1243.Justify = ((Gtk.Justification) (2));
			w1243.Name = "la_CompLabo";
			this.la_CompLabo = w1243;
			w1161.SetTabLabel (w1162, w1243);
			// Container child notebook2.Gtk.Notebook+NotebookChild
			Gtk.ScrolledWindow w1244 = new Gtk.ScrolledWindow ();
			w1244.VscrollbarPolicy = ((Gtk.PolicyType) (1));
			w1244.HscrollbarPolicy = ((Gtk.PolicyType) (1));
			w1244.CanFocus = true;
			w1244.Name = "scrolledwindow9";
			// Container child scrolledwindow9.Gtk.Container+ContainerChild
			Gtk.Viewport w1245 = new Gtk.Viewport ();
			w1245.ShadowType = ((Gtk.ShadowType) (0));
			w1245.Name = "GtkViewport8";
			// Container child GtkViewport8.Gtk.Container+ContainerChild
			Gtk.VBox w1246 = new Gtk.VBox ();
			w1246.Name = "vbox34";
			// Container child vbox34.Gtk.Box+BoxChild
			Gtk.Alignment w1247 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1247.LeftPadding = ((uint) (10));
			w1247.RightPadding = ((uint) (10));
			w1247.BottomPadding = ((uint) (5));
			w1247.Name = "alignment39";
			// Container child alignment39.Gtk.Container+ContainerChild
			Gtk.Frame w1248 = new Gtk.Frame ();
			w1248.ShadowType = ((Gtk.ShadowType) (4));
			w1248.LabelXalign = 0F;
			w1248.Name = "frame31";
			// Container child frame31.Gtk.Container+ContainerChild
			Gtk.Alignment w1249 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w1249.LeftPadding = ((uint) (12));
			w1249.BottomPadding = ((uint) (5));
			w1249.Name = "GtkAlignment34";
			// Container child GtkAlignment34.Gtk.Container+ContainerChild
			Gtk.HBox w1250 = new Gtk.HBox ();
			w1250.Name = "hbox57";
			// Container child hbox57.Gtk.Box+BoxChild
			Gtk.Table w1251 = new Gtk.Table (((uint) (6)), ((uint) (2)), false);
			w1251.RowSpacing = ((uint) (2));
			w1251.BorderWidth = ((uint) (5));
			w1251.Name = "table4";
			// Container child table4.Gtk.Table+TableChild
			Gtk.Entry w1252 = new Gtk.Entry ();
			w1252.IsEditable = true;
			w1252.WidthChars = 5;
			w1252.MaxLength = 5;
			w1252.InvisibleChar = '●';
			w1252.CanFocus = true;
			w1252.Name = "en_Obedie";
			this.en_Obedie = w1252;
			w1251.Add (w1252);
			Gtk.Table.TableChild w1253 = ((Gtk.Table.TableChild) (w1251 [w1252]));
			w1253.TopAttach = ((uint) (5));
			w1253.BottomAttach = ((uint) (6));
			w1253.LeftAttach = ((uint) (1));
			w1253.RightAttach = ((uint) (2));
			w1253.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Entry w1254 = new Gtk.Entry ();
			w1254.IsEditable = true;
			w1254.WidthChars = 5;
			w1254.MaxLength = 5;
			w1254.InvisibleChar = '●';
			w1254.CanFocus = true;
			w1254.Name = "en_Ambicion";
			this.en_Ambicion = w1254;
			w1251.Add (w1254);
			Gtk.Table.TableChild w1255 = ((Gtk.Table.TableChild) (w1251 [w1254]));
			w1255.TopAttach = ((uint) (4));
			w1255.BottomAttach = ((uint) (5));
			w1255.LeftAttach = ((uint) (1));
			w1255.RightAttach = ((uint) (2));
			w1255.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Entry w1256 = new Gtk.Entry ();
			w1256.IsEditable = true;
			w1256.WidthChars = 5;
			w1256.MaxLength = 5;
			w1256.InvisibleChar = '●';
			w1256.CanFocus = true;
			w1256.Name = "en_Libertad";
			this.en_Libertad = w1256;
			w1251.Add (w1256);
			Gtk.Table.TableChild w1257 = ((Gtk.Table.TableChild) (w1251 [w1256]));
			w1257.TopAttach = ((uint) (3));
			w1257.BottomAttach = ((uint) (4));
			w1257.LeftAttach = ((uint) (1));
			w1257.RightAttach = ((uint) (2));
			w1257.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Entry w1258 = new Gtk.Entry ();
			w1258.IsEditable = true;
			w1258.WidthChars = 5;
			w1258.MaxLength = 5;
			w1258.InvisibleChar = '●';
			w1258.CanFocus = true;
			w1258.Name = "en_RealPers";
			this.en_RealPers = w1258;
			w1251.Add (w1258);
			Gtk.Table.TableChild w1259 = ((Gtk.Table.TableChild) (w1251 [w1258]));
			w1259.TopAttach = ((uint) (2));
			w1259.BottomAttach = ((uint) (3));
			w1259.LeftAttach = ((uint) (1));
			w1259.RightAttach = ((uint) (2));
			w1259.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Label w1260 = new Gtk.Label ();
			w1260.LabelProp = "6.  Obediencia (VI):                     ";
			w1260.Name = "label128";
			this.label128 = w1260;
			w1251.Add (w1260);
			Gtk.Table.TableChild w1261 = ((Gtk.Table.TableChild) (w1251 [w1260]));
			w1261.TopAttach = ((uint) (5));
			w1261.BottomAttach = ((uint) (6));
			w1261.XOptions = ((Gtk.AttachOptions) (4));
			w1261.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Label w1262 = new Gtk.Label ();
			w1262.LabelProp = "5.  Ambición (VI):                        ";
			w1262.Name = "label126";
			this.label126 = w1262;
			w1251.Add (w1262);
			Gtk.Table.TableChild w1263 = ((Gtk.Table.TableChild) (w1251 [w1262]));
			w1263.TopAttach = ((uint) (4));
			w1263.BottomAttach = ((uint) (5));
			w1263.XOptions = ((Gtk.AttachOptions) (4));
			w1263.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Label w1264 = new Gtk.Label ();
			w1264.LabelProp = "4.  Libertad (VF):                         ";
			w1264.Name = "label124";
			this.label124 = w1264;
			w1251.Add (w1264);
			Gtk.Table.TableChild w1265 = ((Gtk.Table.TableChild) (w1251 [w1264]));
			w1265.TopAttach = ((uint) (3));
			w1265.BottomAttach = ((uint) (4));
			w1265.XOptions = ((Gtk.AttachOptions) (4));
			w1265.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Label w1266 = new Gtk.Label ();
			w1266.LabelProp = "3.  Realización Personal (VF):      ";
			w1266.Name = "label123";
			this.label123 = w1266;
			w1251.Add (w1266);
			Gtk.Table.TableChild w1267 = ((Gtk.Table.TableChild) (w1251 [w1266]));
			w1267.TopAttach = ((uint) (2));
			w1267.BottomAttach = ((uint) (3));
			w1267.XOptions = ((Gtk.AttachOptions) (4));
			w1267.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Label w1268 = new Gtk.Label ();
			w1268.LabelProp = "1.  Igualdad (VF):                         ";
			w1268.Name = "label133";
			this.label133 = w1268;
			w1251.Add (w1268);
			Gtk.Table.TableChild w1269 = ((Gtk.Table.TableChild) (w1251 [w1268]));
			w1269.XOptions = ((Gtk.AttachOptions) (4));
			w1269.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Entry w1270 = new Gtk.Entry ();
			w1270.IsEditable = true;
			w1270.WidthChars = 5;
			w1270.MaxLength = 5;
			w1270.InvisibleChar = '●';
			w1270.CanFocus = true;
			w1270.Name = "en_Igualdad";
			this.en_Igualdad = w1270;
			w1251.Add (w1270);
			Gtk.Table.TableChild w1271 = ((Gtk.Table.TableChild) (w1251 [w1270]));
			w1271.LeftAttach = ((uint) (1));
			w1271.RightAttach = ((uint) (2));
			w1271.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Label w1272 = new Gtk.Label ();
			w1272.LabelProp = "2.  Responsabilidad (VI):              ";
			w1272.Name = "label120";
			this.label120 = w1272;
			w1251.Add (w1272);
			Gtk.Table.TableChild w1273 = ((Gtk.Table.TableChild) (w1251 [w1272]));
			w1273.TopAttach = ((uint) (1));
			w1273.BottomAttach = ((uint) (2));
			w1273.XOptions = ((Gtk.AttachOptions) (4));
			w1273.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table4.Gtk.Table+TableChild
			Gtk.Entry w1274 = new Gtk.Entry ();
			w1274.IsEditable = true;
			w1274.WidthChars = 5;
			w1274.MaxLength = 5;
			w1274.InvisibleChar = '●';
			w1274.CanFocus = true;
			w1274.Name = "en_Respons";
			this.en_Respons = w1274;
			w1251.Add (w1274);
			Gtk.Table.TableChild w1275 = ((Gtk.Table.TableChild) (w1251 [w1274]));
			w1275.TopAttach = ((uint) (1));
			w1275.BottomAttach = ((uint) (2));
			w1275.LeftAttach = ((uint) (1));
			w1275.RightAttach = ((uint) (2));
			w1275.YOptions = ((Gtk.AttachOptions) (4));
			this.table4 = w1251;
			w1250.Add (w1251);
			Gtk.Box.BoxChild w1276 = ((Gtk.Box.BoxChild) (w1250 [w1251]));
			w1276.Position = 0;
			w1276.Expand = false;
			// Container child hbox57.Gtk.Box+BoxChild
			Gtk.VSeparator w1277 = new Gtk.VSeparator ();
			w1277.Name = "vseparator2";
			this.vseparator2 = w1277;
			w1250.Add (w1277);
			Gtk.Box.BoxChild w1278 = ((Gtk.Box.BoxChild) (w1250 [w1277]));
			w1278.Position = 1;
			w1278.Expand = false;
			w1278.Fill = false;
			w1278.Padding = ((uint) (20));
			// Container child hbox57.Gtk.Box+BoxChild
			Gtk.Table w1279 = new Gtk.Table (((uint) (6)), ((uint) (2)), false);
			w1279.RowSpacing = ((uint) (2));
			w1279.BorderWidth = ((uint) (5));
			w1279.Name = "table5";
			// Container child table5.Gtk.Table+TableChild
			Gtk.Entry w1280 = new Gtk.Entry ();
			w1280.IsEditable = true;
			w1280.WidthChars = 5;
			w1280.MaxLength = 5;
			w1280.InvisibleChar = '●';
			w1280.CanFocus = true;
			w1280.Name = "en_ActServ";
			this.en_ActServ = w1280;
			w1279.Add (w1280);
			Gtk.Table.TableChild w1281 = ((Gtk.Table.TableChild) (w1279 [w1280]));
			w1281.TopAttach = ((uint) (5));
			w1281.BottomAttach = ((uint) (6));
			w1281.LeftAttach = ((uint) (1));
			w1281.RightAttach = ((uint) (2));
			w1281.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Entry w1282 = new Gtk.Entry ();
			w1282.IsEditable = true;
			w1282.WidthChars = 5;
			w1282.MaxLength = 5;
			w1282.InvisibleChar = '●';
			w1282.CanFocus = true;
			w1282.Name = "en_Indep";
			this.en_Indep = w1282;
			w1279.Add (w1282);
			Gtk.Table.TableChild w1283 = ((Gtk.Table.TableChild) (w1279 [w1282]));
			w1283.TopAttach = ((uint) (4));
			w1283.BottomAttach = ((uint) (5));
			w1283.LeftAttach = ((uint) (1));
			w1283.RightAttach = ((uint) (2));
			w1283.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Entry w1284 = new Gtk.Entry ();
			w1284.IsEditable = true;
			w1284.WidthChars = 5;
			w1284.MaxLength = 5;
			w1284.InvisibleChar = '●';
			w1284.CanFocus = true;
			w1284.Name = "en_Honest";
			this.en_Honest = w1284;
			w1279.Add (w1284);
			Gtk.Table.TableChild w1285 = ((Gtk.Table.TableChild) (w1279 [w1284]));
			w1285.TopAttach = ((uint) (3));
			w1285.BottomAttach = ((uint) (4));
			w1285.LeftAttach = ((uint) (1));
			w1285.RightAttach = ((uint) (2));
			w1285.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Entry w1286 = new Gtk.Entry ();
			w1286.IsEditable = true;
			w1286.WidthChars = 5;
			w1286.MaxLength = 5;
			w1286.InvisibleChar = '●';
			w1286.CanFocus = true;
			w1286.Name = "en_RecSoc";
			this.en_RecSoc = w1286;
			w1279.Add (w1286);
			Gtk.Table.TableChild w1287 = ((Gtk.Table.TableChild) (w1279 [w1286]));
			w1287.TopAttach = ((uint) (2));
			w1287.BottomAttach = ((uint) (3));
			w1287.LeftAttach = ((uint) (1));
			w1287.RightAttach = ((uint) (2));
			w1287.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Label w1288 = new Gtk.Label ();
			w1288.LabelProp = "12. Actitud de Servicio (VI):       ";
			w1288.Name = "label129";
			this.label129 = w1288;
			w1279.Add (w1288);
			Gtk.Table.TableChild w1289 = ((Gtk.Table.TableChild) (w1279 [w1288]));
			w1289.TopAttach = ((uint) (5));
			w1289.BottomAttach = ((uint) (6));
			w1289.XOptions = ((Gtk.AttachOptions) (4));
			w1289.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Label w1290 = new Gtk.Label ();
			w1290.LabelProp = "11. Independencia (VI):             ";
			w1290.Name = "label127";
			this.label127 = w1290;
			w1279.Add (w1290);
			Gtk.Table.TableChild w1291 = ((Gtk.Table.TableChild) (w1279 [w1290]));
			w1291.TopAttach = ((uint) (4));
			w1291.BottomAttach = ((uint) (5));
			w1291.XOptions = ((Gtk.AttachOptions) (4));
			w1291.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Label w1292 = new Gtk.Label ();
			w1292.LabelProp = "10. Honestidad (VI):                  ";
			w1292.Name = "label125";
			this.label125 = w1292;
			w1279.Add (w1292);
			Gtk.Table.TableChild w1293 = ((Gtk.Table.TableChild) (w1279 [w1292]));
			w1293.TopAttach = ((uint) (3));
			w1293.BottomAttach = ((uint) (4));
			w1293.XOptions = ((Gtk.AttachOptions) (4));
			w1293.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Label w1294 = new Gtk.Label ();
			w1294.LabelProp = "9.  Reconocimiento Social (VF): ";
			w1294.Name = "label152";
			this.label152 = w1294;
			w1279.Add (w1294);
			Gtk.Table.TableChild w1295 = ((Gtk.Table.TableChild) (w1279 [w1294]));
			w1295.TopAttach = ((uint) (2));
			w1295.BottomAttach = ((uint) (3));
			w1295.XOptions = ((Gtk.AttachOptions) (4));
			w1295.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Entry w1296 = new Gtk.Entry ();
			w1296.IsEditable = true;
			w1296.WidthChars = 5;
			w1296.MaxLength = 5;
			w1296.InvisibleChar = '●';
			w1296.CanFocus = true;
			w1296.Name = "en_LogRac";
			this.en_LogRac = w1296;
			w1279.Add (w1296);
			Gtk.Table.TableChild w1297 = ((Gtk.Table.TableChild) (w1279 [w1296]));
			w1297.TopAttach = ((uint) (1));
			w1297.BottomAttach = ((uint) (2));
			w1297.LeftAttach = ((uint) (1));
			w1297.RightAttach = ((uint) (2));
			w1297.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Label w1298 = new Gtk.Label ();
			w1298.LabelProp = "8.  Lógica Racional (VI):             ";
			w1298.Name = "label121";
			this.label121 = w1298;
			w1279.Add (w1298);
			Gtk.Table.TableChild w1299 = ((Gtk.Table.TableChild) (w1279 [w1298]));
			w1299.TopAttach = ((uint) (1));
			w1299.BottomAttach = ((uint) (2));
			w1299.XOptions = ((Gtk.AttachOptions) (4));
			w1299.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Entry w1300 = new Gtk.Entry ();
			w1300.IsEditable = true;
			w1300.WidthChars = 5;
			w1300.MaxLength = 5;
			w1300.InvisibleChar = '●';
			w1300.CanFocus = true;
			w1300.Name = "en_Tolerancia";
			this.en_Tolerancia = w1300;
			w1279.Add (w1300);
			Gtk.Table.TableChild w1301 = ((Gtk.Table.TableChild) (w1279 [w1300]));
			w1301.LeftAttach = ((uint) (1));
			w1301.RightAttach = ((uint) (2));
			w1301.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table5.Gtk.Table+TableChild
			Gtk.Label w1302 = new Gtk.Label ();
			w1302.LabelProp = "7.  Tolerancia (VI):                      ";
			w1302.Name = "label119";
			this.label119 = w1302;
			w1279.Add (w1302);
			Gtk.Table.TableChild w1303 = ((Gtk.Table.TableChild) (w1279 [w1302]));
			w1303.XOptions = ((Gtk.AttachOptions) (4));
			w1303.YOptions = ((Gtk.AttachOptions) (4));
			this.table5 = w1279;
			w1250.Add (w1279);
			Gtk.Box.BoxChild w1304 = ((Gtk.Box.BoxChild) (w1250 [w1279]));
			w1304.Position = 2;
			w1304.Expand = false;
			this.hbox57 = w1250;
			w1249.Add (w1250);
			this.GtkAlignment34 = w1249;
			w1248.Add (w1249);
			Gtk.Label w1307 = new Gtk.Label ();
			w1307.LabelProp = "<b>Eva:</b>";
			w1307.UseMarkup = true;
			w1307.Xpad = 8;
			w1307.Events = ((Gdk.EventMask) (256));
			w1307.Name = "GtkLabel41";
			this.GtkLabel41 = w1307;
			w1248.LabelWidget = w1307;
			this.frame31 = w1248;
			w1247.Add (w1248);
			this.alignment39 = w1247;
			w1246.Add (w1247);
			Gtk.Box.BoxChild w1309 = ((Gtk.Box.BoxChild) (w1246 [w1247]));
			w1309.Position = 0;
			w1309.Expand = false;
			w1309.Fill = false;
			this.vbox34 = w1246;
			w1245.Add (w1246);
			w1244.Add (w1245);
			this.scrolledwindow9 = w1244;
			w1161.Add (w1244);
			Gtk.Notebook.NotebookChild w1312 = ((Gtk.Notebook.NotebookChild) (w1161 [w1244]));
			w1312.Position = 1;
			w1312.TabExpand = false;
			// Notebook tab
			Gtk.Label w1313 = new Gtk.Label ();
			w1313.LabelProp = "Valores";
			w1313.Justify = ((Gtk.Justification) (2));
			w1313.Ypad = 6;
			w1313.Name = "la_valores";
			this.la_valores = w1313;
			w1161.SetTabLabel (w1244, w1313);
			// Container child notebook2.Gtk.Notebook+NotebookChild
			Gtk.ScrolledWindow w1314 = new Gtk.ScrolledWindow ();
			w1314.VscrollbarPolicy = ((Gtk.PolicyType) (1));
			w1314.HscrollbarPolicy = ((Gtk.PolicyType) (1));
			w1314.CanFocus = true;
			w1314.Name = "scrolledwindow10";
			// Container child scrolledwindow10.Gtk.Container+ContainerChild
			Gtk.Viewport w1315 = new Gtk.Viewport ();
			w1315.ShadowType = ((Gtk.ShadowType) (0));
			w1315.Name = "GtkViewport9";
			// Container child GtkViewport9.Gtk.Container+ContainerChild
			Gtk.VBox w1316 = new Gtk.VBox ();
			w1316.Name = "vbox36";
			// Container child vbox36.Gtk.Box+BoxChild
			Gtk.Alignment w1317 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1317.LeftPadding = ((uint) (10));
			w1317.RightPadding = ((uint) (10));
			w1317.BottomPadding = ((uint) (5));
			w1317.Name = "alignment40";
			// Container child alignment40.Gtk.Container+ContainerChild
			Gtk.Frame w1318 = new Gtk.Frame ();
			w1318.ShadowType = ((Gtk.ShadowType) (4));
			w1318.LabelXalign = 0F;
			w1318.Name = "frame32";
			// Container child frame32.Gtk.Container+ContainerChild
			Gtk.Alignment w1319 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w1319.LeftPadding = ((uint) (12));
			w1319.BottomPadding = ((uint) (5));
			w1319.Name = "GtkAlignment35";
			// Container child GtkAlignment35.Gtk.Container+ContainerChild
			Gtk.HBox w1320 = new Gtk.HBox ();
			w1320.Name = "hbox58";
			// Container child hbox58.Gtk.Box+BoxChild
			Gtk.Table w1321 = new Gtk.Table (((uint) (11)), ((uint) (2)), false);
			w1321.RowSpacing = ((uint) (2));
			w1321.BorderWidth = ((uint) (5));
			w1321.Name = "table6";
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1322 = new Gtk.Label ();
			w1322.LabelProp = "A.  Reservada/Abierta:                    ";
			w1322.Name = "label134";
			this.label134 = w1322;
			w1321.Add (w1322);
			Gtk.Table.TableChild w1323 = ((Gtk.Table.TableChild) (w1321 [w1322]));
			w1323.XOptions = ((Gtk.AttachOptions) (4));
			w1323.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1324 = new Gtk.Entry ();
			w1324.IsEditable = true;
			w1324.WidthChars = 5;
			w1324.MaxLength = 5;
			w1324.InvisibleChar = '●';
			w1324.CanFocus = true;
			w1324.Name = "en_ResAbie";
			this.en_ResAbie = w1324;
			w1321.Add (w1324);
			Gtk.Table.TableChild w1325 = ((Gtk.Table.TableChild) (w1321 [w1324]));
			w1325.LeftAttach = ((uint) (1));
			w1325.RightAttach = ((uint) (2));
			w1325.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1326 = new Gtk.Label ();
			w1326.LabelProp = "B.  Razonam.Concreto/Abstracto:  ";
			w1326.Name = "label131";
			this.label131 = w1326;
			w1321.Add (w1326);
			Gtk.Table.TableChild w1327 = ((Gtk.Table.TableChild) (w1321 [w1326]));
			w1327.TopAttach = ((uint) (1));
			w1327.BottomAttach = ((uint) (2));
			w1327.XOptions = ((Gtk.AttachOptions) (4));
			w1327.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1328 = new Gtk.Label ();
			w1328.LabelProp = "C.  Inestabilidad/Estab. Emocional: ";
			w1328.Name = "label135";
			this.label135 = w1328;
			w1321.Add (w1328);
			Gtk.Table.TableChild w1329 = ((Gtk.Table.TableChild) (w1321 [w1328]));
			w1329.TopAttach = ((uint) (2));
			w1329.BottomAttach = ((uint) (3));
			w1329.XOptions = ((Gtk.AttachOptions) (4));
			w1329.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1330 = new Gtk.Label ();
			w1330.LabelProp = "E.  Sumisa/Dominante:                   ";
			w1330.Name = "label137";
			this.label137 = w1330;
			w1321.Add (w1330);
			Gtk.Table.TableChild w1331 = ((Gtk.Table.TableChild) (w1321 [w1330]));
			w1331.TopAttach = ((uint) (3));
			w1331.BottomAttach = ((uint) (4));
			w1331.XOptions = ((Gtk.AttachOptions) (4));
			w1331.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1332 = new Gtk.Label ();
			w1332.LabelProp = "F.  Prudente/Impulsiva:                    ";
			w1332.Name = "label139";
			this.label139 = w1332;
			w1321.Add (w1332);
			Gtk.Table.TableChild w1333 = ((Gtk.Table.TableChild) (w1321 [w1332]));
			w1333.TopAttach = ((uint) (4));
			w1333.BottomAttach = ((uint) (5));
			w1333.XOptions = ((Gtk.AttachOptions) (4));
			w1333.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1334 = new Gtk.Label ();
			w1334.LabelProp = "G.  Despreocupada/Escrupulosa:    ";
			w1334.Name = "label141";
			this.label141 = w1334;
			w1321.Add (w1334);
			Gtk.Table.TableChild w1335 = ((Gtk.Table.TableChild) (w1321 [w1334]));
			w1335.TopAttach = ((uint) (5));
			w1335.BottomAttach = ((uint) (6));
			w1335.XOptions = ((Gtk.AttachOptions) (4));
			w1335.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1336 = new Gtk.Label ();
			w1336.LabelProp = "H.  Tímida/Espontanea:                   ";
			w1336.Name = "label143";
			this.label143 = w1336;
			w1321.Add (w1336);
			Gtk.Table.TableChild w1337 = ((Gtk.Table.TableChild) (w1321 [w1336]));
			w1337.TopAttach = ((uint) (6));
			w1337.BottomAttach = ((uint) (7));
			w1337.XOptions = ((Gtk.AttachOptions) (4));
			w1337.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1338 = new Gtk.Label ();
			w1338.LabelProp = "M.  Práctica/Soñadora:                    ";
			w1338.Name = "label145";
			this.label145 = w1338;
			w1321.Add (w1338);
			Gtk.Table.TableChild w1339 = ((Gtk.Table.TableChild) (w1321 [w1338]));
			w1339.TopAttach = ((uint) (7));
			w1339.BottomAttach = ((uint) (8));
			w1339.XOptions = ((Gtk.AttachOptions) (4));
			w1339.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1340 = new Gtk.Label ();
			w1340.LabelProp = "N.  Sencilla/Astuta:                          ";
			w1340.Name = "label147";
			this.label147 = w1340;
			w1321.Add (w1340);
			Gtk.Table.TableChild w1341 = ((Gtk.Table.TableChild) (w1321 [w1340]));
			w1341.TopAttach = ((uint) (8));
			w1341.BottomAttach = ((uint) (9));
			w1341.XOptions = ((Gtk.AttachOptions) (4));
			w1341.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1342 = new Gtk.Label ();
			w1342.LabelProp = "O.  Segura/insegura:                        ";
			w1342.Name = "label149";
			this.label149 = w1342;
			w1321.Add (w1342);
			Gtk.Table.TableChild w1343 = ((Gtk.Table.TableChild) (w1321 [w1342]));
			w1343.TopAttach = ((uint) (9));
			w1343.BottomAttach = ((uint) (10));
			w1343.XOptions = ((Gtk.AttachOptions) (4));
			w1343.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Label w1344 = new Gtk.Label ();
			w1344.LabelProp = "Q1. Tradicionalista/Innovadora:        ";
			w1344.Name = "label151";
			this.label151 = w1344;
			w1321.Add (w1344);
			Gtk.Table.TableChild w1345 = ((Gtk.Table.TableChild) (w1321 [w1344]));
			w1345.TopAttach = ((uint) (10));
			w1345.BottomAttach = ((uint) (11));
			w1345.XOptions = ((Gtk.AttachOptions) (4));
			w1345.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1346 = new Gtk.Entry ();
			w1346.IsEditable = true;
			w1346.WidthChars = 5;
			w1346.MaxLength = 5;
			w1346.InvisibleChar = '●';
			w1346.CanFocus = true;
			w1346.Name = "en_Razona";
			this.en_Razona = w1346;
			w1321.Add (w1346);
			Gtk.Table.TableChild w1347 = ((Gtk.Table.TableChild) (w1321 [w1346]));
			w1347.TopAttach = ((uint) (1));
			w1347.BottomAttach = ((uint) (2));
			w1347.LeftAttach = ((uint) (1));
			w1347.RightAttach = ((uint) (2));
			w1347.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1348 = new Gtk.Entry ();
			w1348.IsEditable = true;
			w1348.WidthChars = 5;
			w1348.MaxLength = 5;
			w1348.InvisibleChar = '●';
			w1348.CanFocus = true;
			w1348.Name = "en_InesEst";
			this.en_InesEst = w1348;
			w1321.Add (w1348);
			Gtk.Table.TableChild w1349 = ((Gtk.Table.TableChild) (w1321 [w1348]));
			w1349.TopAttach = ((uint) (2));
			w1349.BottomAttach = ((uint) (3));
			w1349.LeftAttach = ((uint) (1));
			w1349.RightAttach = ((uint) (2));
			w1349.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1350 = new Gtk.Entry ();
			w1350.IsEditable = true;
			w1350.WidthChars = 5;
			w1350.MaxLength = 5;
			w1350.InvisibleChar = '●';
			w1350.CanFocus = true;
			w1350.Name = "en_SumDom";
			this.en_SumDom = w1350;
			w1321.Add (w1350);
			Gtk.Table.TableChild w1351 = ((Gtk.Table.TableChild) (w1321 [w1350]));
			w1351.TopAttach = ((uint) (3));
			w1351.BottomAttach = ((uint) (4));
			w1351.LeftAttach = ((uint) (1));
			w1351.RightAttach = ((uint) (2));
			w1351.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1352 = new Gtk.Entry ();
			w1352.IsEditable = true;
			w1352.WidthChars = 5;
			w1352.MaxLength = 5;
			w1352.InvisibleChar = '●';
			w1352.CanFocus = true;
			w1352.Name = "en_PrudImp";
			this.en_PrudImp = w1352;
			w1321.Add (w1352);
			Gtk.Table.TableChild w1353 = ((Gtk.Table.TableChild) (w1321 [w1352]));
			w1353.TopAttach = ((uint) (4));
			w1353.BottomAttach = ((uint) (5));
			w1353.LeftAttach = ((uint) (1));
			w1353.RightAttach = ((uint) (2));
			w1353.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1354 = new Gtk.Entry ();
			w1354.IsEditable = true;
			w1354.WidthChars = 5;
			w1354.MaxLength = 5;
			w1354.InvisibleChar = '●';
			w1354.CanFocus = true;
			w1354.Name = "en_DesEsc";
			this.en_DesEsc = w1354;
			w1321.Add (w1354);
			Gtk.Table.TableChild w1355 = ((Gtk.Table.TableChild) (w1321 [w1354]));
			w1355.TopAttach = ((uint) (5));
			w1355.BottomAttach = ((uint) (6));
			w1355.LeftAttach = ((uint) (1));
			w1355.RightAttach = ((uint) (2));
			w1355.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1356 = new Gtk.Entry ();
			w1356.IsEditable = true;
			w1356.WidthChars = 5;
			w1356.MaxLength = 5;
			w1356.InvisibleChar = '●';
			w1356.CanFocus = true;
			w1356.Name = "en_TimEsp";
			this.en_TimEsp = w1356;
			w1321.Add (w1356);
			Gtk.Table.TableChild w1357 = ((Gtk.Table.TableChild) (w1321 [w1356]));
			w1357.TopAttach = ((uint) (6));
			w1357.BottomAttach = ((uint) (7));
			w1357.LeftAttach = ((uint) (1));
			w1357.RightAttach = ((uint) (2));
			w1357.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1358 = new Gtk.Entry ();
			w1358.IsEditable = true;
			w1358.WidthChars = 5;
			w1358.MaxLength = 5;
			w1358.InvisibleChar = '●';
			w1358.CanFocus = true;
			w1358.Name = "en_PracSonia";
			this.en_PracSonia = w1358;
			w1321.Add (w1358);
			Gtk.Table.TableChild w1359 = ((Gtk.Table.TableChild) (w1321 [w1358]));
			w1359.TopAttach = ((uint) (7));
			w1359.BottomAttach = ((uint) (8));
			w1359.LeftAttach = ((uint) (1));
			w1359.RightAttach = ((uint) (2));
			w1359.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1360 = new Gtk.Entry ();
			w1360.IsEditable = true;
			w1360.WidthChars = 5;
			w1360.MaxLength = 5;
			w1360.InvisibleChar = '●';
			w1360.CanFocus = true;
			w1360.Name = "en_SencAst";
			this.en_SencAst = w1360;
			w1321.Add (w1360);
			Gtk.Table.TableChild w1361 = ((Gtk.Table.TableChild) (w1321 [w1360]));
			w1361.TopAttach = ((uint) (8));
			w1361.BottomAttach = ((uint) (9));
			w1361.LeftAttach = ((uint) (1));
			w1361.RightAttach = ((uint) (2));
			w1361.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1362 = new Gtk.Entry ();
			w1362.IsEditable = true;
			w1362.WidthChars = 5;
			w1362.MaxLength = 5;
			w1362.InvisibleChar = '●';
			w1362.CanFocus = true;
			w1362.Name = "en_SegInseg";
			this.en_SegInseg = w1362;
			w1321.Add (w1362);
			Gtk.Table.TableChild w1363 = ((Gtk.Table.TableChild) (w1321 [w1362]));
			w1363.TopAttach = ((uint) (9));
			w1363.BottomAttach = ((uint) (10));
			w1363.LeftAttach = ((uint) (1));
			w1363.RightAttach = ((uint) (2));
			w1363.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table6.Gtk.Table+TableChild
			Gtk.Entry w1364 = new Gtk.Entry ();
			w1364.IsEditable = true;
			w1364.WidthChars = 5;
			w1364.MaxLength = 5;
			w1364.InvisibleChar = '●';
			w1364.CanFocus = true;
			w1364.Name = "en_TradInno";
			this.en_TradInno = w1364;
			w1321.Add (w1364);
			Gtk.Table.TableChild w1365 = ((Gtk.Table.TableChild) (w1321 [w1364]));
			w1365.TopAttach = ((uint) (10));
			w1365.BottomAttach = ((uint) (11));
			w1365.LeftAttach = ((uint) (1));
			w1365.RightAttach = ((uint) (2));
			w1365.YOptions = ((Gtk.AttachOptions) (4));
			this.table6 = w1321;
			w1320.Add (w1321);
			Gtk.Box.BoxChild w1366 = ((Gtk.Box.BoxChild) (w1320 [w1321]));
			w1366.Position = 0;
			w1366.Expand = false;
			// Container child hbox58.Gtk.Box+BoxChild
			Gtk.VSeparator w1367 = new Gtk.VSeparator ();
			w1367.WidthRequest = 20;
			w1367.Name = "vseparator3";
			this.vseparator3 = w1367;
			w1320.Add (w1367);
			Gtk.Box.BoxChild w1368 = ((Gtk.Box.BoxChild) (w1320 [w1367]));
			w1368.Position = 1;
			w1368.Expand = false;
			w1368.Fill = false;
			// Container child hbox58.Gtk.Box+BoxChild
			Gtk.Table w1369 = new Gtk.Table (((uint) (11)), ((uint) (2)), false);
			w1369.RowSpacing = ((uint) (2));
			w1369.BorderWidth = ((uint) (5));
			w1369.Name = "table7";
			// Container child table7.Gtk.Table+TableChild
			Gtk.Label w1370 = new Gtk.Label ();
			w1370.LabelProp = "Q2. Dep. Grupal/Autosuficiente     :";
			w1370.Name = "label130";
			this.label130 = w1370;
			w1369.Add (w1370);
			Gtk.Table.TableChild w1371 = ((Gtk.Table.TableChild) (w1369 [w1370]));
			w1371.XOptions = ((Gtk.AttachOptions) (4));
			w1371.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Label w1372 = new Gtk.Label ();
			w1372.LabelProp = "Q3. Desinhibida/Controlada:           ";
			w1372.Name = "label132";
			this.label132 = w1372;
			w1369.Add (w1372);
			Gtk.Table.TableChild w1373 = ((Gtk.Table.TableChild) (w1369 [w1372]));
			w1373.TopAttach = ((uint) (1));
			w1373.BottomAttach = ((uint) (2));
			w1373.XOptions = ((Gtk.AttachOptions) (4));
			w1373.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Label w1374 = new Gtk.Label ();
			w1374.LabelProp = "Q4. Tranquila/Tensionada:               ";
			w1374.Name = "label136";
			this.label136 = w1374;
			w1369.Add (w1374);
			Gtk.Table.TableChild w1375 = ((Gtk.Table.TableChild) (w1369 [w1374]));
			w1375.TopAttach = ((uint) (2));
			w1375.BottomAttach = ((uint) (3));
			w1375.XOptions = ((Gtk.AttachOptions) (4));
			w1375.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Label w1376 = new Gtk.Label ();
			w1376.LabelProp = "Dm. Distorción Motivacional:          ";
			w1376.Name = "label138";
			this.label138 = w1376;
			w1369.Add (w1376);
			Gtk.Table.TableChild w1377 = ((Gtk.Table.TableChild) (w1369 [w1376]));
			w1377.TopAttach = ((uint) (3));
			w1377.BottomAttach = ((uint) (4));
			w1377.XOptions = ((Gtk.AttachOptions) (4));
			w1377.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Label w1378 = new Gtk.Label ();
			w1378.LabelProp = "Ng. Negación:                                 ";
			w1378.Name = "label140";
			this.label140 = w1378;
			w1369.Add (w1378);
			Gtk.Table.TableChild w1379 = ((Gtk.Table.TableChild) (w1369 [w1378]));
			w1379.TopAttach = ((uint) (4));
			w1379.BottomAttach = ((uint) (5));
			w1379.XOptions = ((Gtk.AttachOptions) (4));
			w1379.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Label w1380 = new Gtk.Label ();
			w1380.LabelProp = "F1. Ansiedad:                                  ";
			w1380.Name = "label142";
			this.label142 = w1380;
			w1369.Add (w1380);
			Gtk.Table.TableChild w1381 = ((Gtk.Table.TableChild) (w1369 [w1380]));
			w1381.TopAttach = ((uint) (5));
			w1381.BottomAttach = ((uint) (6));
			w1381.XOptions = ((Gtk.AttachOptions) (4));
			w1381.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Label w1382 = new Gtk.Label ();
			w1382.LabelProp = "F2. Extroversión:                             ";
			w1382.Name = "label144";
			this.label144 = w1382;
			w1369.Add (w1382);
			Gtk.Table.TableChild w1383 = ((Gtk.Table.TableChild) (w1369 [w1382]));
			w1383.TopAttach = ((uint) (6));
			w1383.BottomAttach = ((uint) (7));
			w1383.XOptions = ((Gtk.AttachOptions) (4));
			w1383.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Label w1384 = new Gtk.Label ();
			w1384.LabelProp = "F3. Control Social:                           ";
			w1384.Name = "label146";
			this.label146 = w1384;
			w1369.Add (w1384);
			Gtk.Table.TableChild w1385 = ((Gtk.Table.TableChild) (w1369 [w1384]));
			w1385.TopAttach = ((uint) (7));
			w1385.BottomAttach = ((uint) (8));
			w1385.XOptions = ((Gtk.AttachOptions) (4));
			w1385.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Label w1386 = new Gtk.Label ();
			w1386.LabelProp = "F4. Independencia:                          ";
			w1386.Name = "label148";
			this.label148 = w1386;
			w1369.Add (w1386);
			Gtk.Table.TableChild w1387 = ((Gtk.Table.TableChild) (w1369 [w1386]));
			w1387.TopAttach = ((uint) (8));
			w1387.BottomAttach = ((uint) (9));
			w1387.XOptions = ((Gtk.AttachOptions) (4));
			w1387.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Label w1388 = new Gtk.Label ();
			w1388.LabelProp = "F5. Subjetividad:                             ";
			w1388.Name = "label150";
			this.label150 = w1388;
			w1369.Add (w1388);
			Gtk.Table.TableChild w1389 = ((Gtk.Table.TableChild) (w1369 [w1388]));
			w1389.TopAttach = ((uint) (9));
			w1389.BottomAttach = ((uint) (10));
			w1389.XOptions = ((Gtk.AttachOptions) (4));
			w1389.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Entry w1390 = new Gtk.Entry ();
			w1390.IsEditable = true;
			w1390.WidthChars = 5;
			w1390.MaxLength = 5;
			w1390.InvisibleChar = '●';
			w1390.CanFocus = true;
			w1390.Name = "en_DepAuto";
			this.en_DepAuto = w1390;
			w1369.Add (w1390);
			Gtk.Table.TableChild w1391 = ((Gtk.Table.TableChild) (w1369 [w1390]));
			w1391.LeftAttach = ((uint) (1));
			w1391.RightAttach = ((uint) (2));
			w1391.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Entry w1392 = new Gtk.Entry ();
			w1392.IsEditable = true;
			w1392.WidthChars = 5;
			w1392.MaxLength = 5;
			w1392.InvisibleChar = '●';
			w1392.CanFocus = true;
			w1392.Name = "en_DesCont";
			this.en_DesCont = w1392;
			w1369.Add (w1392);
			Gtk.Table.TableChild w1393 = ((Gtk.Table.TableChild) (w1369 [w1392]));
			w1393.TopAttach = ((uint) (1));
			w1393.BottomAttach = ((uint) (2));
			w1393.LeftAttach = ((uint) (1));
			w1393.RightAttach = ((uint) (2));
			w1393.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Entry w1394 = new Gtk.Entry ();
			w1394.IsEditable = true;
			w1394.WidthChars = 5;
			w1394.MaxLength = 5;
			w1394.InvisibleChar = '●';
			w1394.CanFocus = true;
			w1394.Name = "en_TranTens";
			this.en_TranTens = w1394;
			w1369.Add (w1394);
			Gtk.Table.TableChild w1395 = ((Gtk.Table.TableChild) (w1369 [w1394]));
			w1395.TopAttach = ((uint) (2));
			w1395.BottomAttach = ((uint) (3));
			w1395.LeftAttach = ((uint) (1));
			w1395.RightAttach = ((uint) (2));
			w1395.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Entry w1396 = new Gtk.Entry ();
			w1396.IsEditable = true;
			w1396.WidthChars = 5;
			w1396.MaxLength = 5;
			w1396.InvisibleChar = '●';
			w1396.CanFocus = true;
			w1396.Name = "en_DistMot";
			this.en_DistMot = w1396;
			w1369.Add (w1396);
			Gtk.Table.TableChild w1397 = ((Gtk.Table.TableChild) (w1369 [w1396]));
			w1397.TopAttach = ((uint) (3));
			w1397.BottomAttach = ((uint) (4));
			w1397.LeftAttach = ((uint) (1));
			w1397.RightAttach = ((uint) (2));
			w1397.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Entry w1398 = new Gtk.Entry ();
			w1398.IsEditable = true;
			w1398.WidthChars = 5;
			w1398.MaxLength = 5;
			w1398.InvisibleChar = '●';
			w1398.CanFocus = true;
			w1398.Name = "en_Negacion";
			this.en_Negacion = w1398;
			w1369.Add (w1398);
			Gtk.Table.TableChild w1399 = ((Gtk.Table.TableChild) (w1369 [w1398]));
			w1399.TopAttach = ((uint) (4));
			w1399.BottomAttach = ((uint) (5));
			w1399.LeftAttach = ((uint) (1));
			w1399.RightAttach = ((uint) (2));
			w1399.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Entry w1400 = new Gtk.Entry ();
			w1400.IsEditable = true;
			w1400.WidthChars = 5;
			w1400.MaxLength = 5;
			w1400.InvisibleChar = '●';
			w1400.CanFocus = true;
			w1400.Name = "en_Ansiedad";
			this.en_Ansiedad = w1400;
			w1369.Add (w1400);
			Gtk.Table.TableChild w1401 = ((Gtk.Table.TableChild) (w1369 [w1400]));
			w1401.TopAttach = ((uint) (5));
			w1401.BottomAttach = ((uint) (6));
			w1401.LeftAttach = ((uint) (1));
			w1401.RightAttach = ((uint) (2));
			w1401.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Entry w1402 = new Gtk.Entry ();
			w1402.IsEditable = true;
			w1402.WidthChars = 5;
			w1402.MaxLength = 5;
			w1402.InvisibleChar = '●';
			w1402.CanFocus = true;
			w1402.Name = "en_Extro";
			this.en_Extro = w1402;
			w1369.Add (w1402);
			Gtk.Table.TableChild w1403 = ((Gtk.Table.TableChild) (w1369 [w1402]));
			w1403.TopAttach = ((uint) (6));
			w1403.BottomAttach = ((uint) (7));
			w1403.LeftAttach = ((uint) (1));
			w1403.RightAttach = ((uint) (2));
			w1403.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Entry w1404 = new Gtk.Entry ();
			w1404.IsEditable = true;
			w1404.WidthChars = 5;
			w1404.MaxLength = 5;
			w1404.InvisibleChar = '●';
			w1404.CanFocus = true;
			w1404.Name = "en_ContrSoc";
			this.en_ContrSoc = w1404;
			w1369.Add (w1404);
			Gtk.Table.TableChild w1405 = ((Gtk.Table.TableChild) (w1369 [w1404]));
			w1405.TopAttach = ((uint) (7));
			w1405.BottomAttach = ((uint) (8));
			w1405.LeftAttach = ((uint) (1));
			w1405.RightAttach = ((uint) (2));
			w1405.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Entry w1406 = new Gtk.Entry ();
			w1406.IsEditable = true;
			w1406.WidthChars = 5;
			w1406.MaxLength = 5;
			w1406.InvisibleChar = '●';
			w1406.CanFocus = true;
			w1406.Name = "en_Indepe";
			this.en_Indepe = w1406;
			w1369.Add (w1406);
			Gtk.Table.TableChild w1407 = ((Gtk.Table.TableChild) (w1369 [w1406]));
			w1407.TopAttach = ((uint) (8));
			w1407.BottomAttach = ((uint) (9));
			w1407.LeftAttach = ((uint) (1));
			w1407.RightAttach = ((uint) (2));
			w1407.YOptions = ((Gtk.AttachOptions) (4));
			// Container child table7.Gtk.Table+TableChild
			Gtk.Entry w1408 = new Gtk.Entry ();
			w1408.IsEditable = true;
			w1408.WidthChars = 5;
			w1408.MaxLength = 5;
			w1408.InvisibleChar = '●';
			w1408.CanFocus = true;
			w1408.Name = "en_Subjet";
			this.en_Subjet = w1408;
			w1369.Add (w1408);
			Gtk.Table.TableChild w1409 = ((Gtk.Table.TableChild) (w1369 [w1408]));
			w1409.TopAttach = ((uint) (9));
			w1409.BottomAttach = ((uint) (10));
			w1409.LeftAttach = ((uint) (1));
			w1409.RightAttach = ((uint) (2));
			w1409.YOptions = ((Gtk.AttachOptions) (4));
			this.table7 = w1369;
			w1320.Add (w1369);
			Gtk.Box.BoxChild w1410 = ((Gtk.Box.BoxChild) (w1320 [w1369]));
			w1410.Position = 2;
			w1410.Expand = false;
			this.hbox58 = w1320;
			w1319.Add (w1320);
			this.GtkAlignment35 = w1319;
			w1318.Add (w1319);
			Gtk.Label w1413 = new Gtk.Label ();
			w1413.LabelProp = "<b>16 PF:</b>";
			w1413.UseMarkup = true;
			w1413.Xpad = 8;
			w1413.Events = ((Gdk.EventMask) (256));
			w1413.Name = "GtkLabel42";
			this.GtkLabel42 = w1413;
			w1318.LabelWidget = w1413;
			this.frame32 = w1318;
			w1317.Add (w1318);
			this.alignment40 = w1317;
			w1316.Add (w1317);
			Gtk.Box.BoxChild w1415 = ((Gtk.Box.BoxChild) (w1316 [w1317]));
			w1415.Position = 0;
			w1415.Expand = false;
			w1415.Fill = false;
			this.vbox36 = w1316;
			w1315.Add (w1316);
			w1314.Add (w1315);
			this.scrolledwindow10 = w1314;
			w1161.Add (w1314);
			Gtk.Notebook.NotebookChild w1418 = ((Gtk.Notebook.NotebookChild) (w1161 [w1314]));
			w1418.Position = 2;
			w1418.TabExpand = false;
			// Notebook tab
			Gtk.Label w1419 = new Gtk.Label ();
			w1419.LabelProp = "Factores de\nPersonalidad\n   (16 PF)";
			w1419.Justify = ((Gtk.Justification) (2));
			w1419.Name = "la_FactPerso";
			this.la_FactPerso = w1419;
			w1161.SetTabLabel (w1314, w1419);
			// Container child notebook2.Gtk.Notebook+NotebookChild
			Gtk.VBox w1420 = new Gtk.VBox ();
			w1420.Name = "vbox32";
			// Container child vbox32.Gtk.Box+BoxChild
			Gtk.Alignment w1421 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1421.LeftPadding = ((uint) (10));
			w1421.TopPadding = ((uint) (15));
			w1421.RightPadding = ((uint) (10));
			w1421.BottomPadding = ((uint) (10));
			w1421.Name = "alignment42";
			// Container child alignment42.Gtk.Container+ContainerChild
			Gtk.Frame w1422 = new Gtk.Frame ();
			w1422.ShadowType = ((Gtk.ShadowType) (4));
			w1422.LabelXalign = 0F;
			w1422.Name = "frame34";
			// Container child frame34.Gtk.Container+ContainerChild
			Gtk.Alignment w1423 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w1423.LeftPadding = ((uint) (60));
			w1423.TopPadding = ((uint) (20));
			w1423.RightPadding = ((uint) (60));
			w1423.BottomPadding = ((uint) (20));
			w1423.Name = "GtkAlignment32";
			// Container child GtkAlignment32.Gtk.Container+ContainerChild
			Gtk.TextView w1424 = new Gtk.TextView ();
			w1424.Buffer.Text = "\n\n\n\n\n";
			w1424.WrapMode = ((Gtk.WrapMode) (2));
			w1424.LeftMargin = 10;
			w1424.RightMargin = 10;
			w1424.HeightRequest = 90;
			w1424.CanFocus = true;
			w1424.Name = "textEvaluacion";
			this.textEvaluacion = w1424;
			w1423.Add (w1424);
			this.GtkAlignment32 = w1423;
			w1422.Add (w1423);
			Gtk.Label w1427 = new Gtk.Label ();
			w1427.LabelProp = "<b>Evaluación Psicológica y Entrevista:</b>";
			w1427.UseMarkup = true;
			w1427.Xpad = 8;
			w1427.Events = ((Gdk.EventMask) (256));
			w1427.Name = "GtkLabel39";
			this.GtkLabel39 = w1427;
			w1422.LabelWidget = w1427;
			this.frame34 = w1422;
			w1421.Add (w1422);
			this.alignment42 = w1421;
			w1420.Add (w1421);
			Gtk.Box.BoxChild w1429 = ((Gtk.Box.BoxChild) (w1420 [w1421]));
			w1429.Position = 0;
			w1429.Expand = false;
			// Container child vbox32.Gtk.Box+BoxChild
			Gtk.Alignment w1430 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1430.LeftPadding = ((uint) (10));
			w1430.RightPadding = ((uint) (10));
			w1430.BottomPadding = ((uint) (168));
			w1430.Name = "alignment57";
			// Container child alignment57.Gtk.Container+ContainerChild
			Gtk.Frame w1431 = new Gtk.Frame ();
			w1431.ShadowType = ((Gtk.ShadowType) (4));
			w1431.LabelXalign = 0F;
			w1431.Name = "frame39";
			// Container child frame39.Gtk.Container+ContainerChild
			Gtk.Alignment w1432 = new Gtk.Alignment (0F, 0F, 1F, 1F);
			w1432.LeftPadding = ((uint) (12));
			w1432.BottomPadding = ((uint) (5));
			w1432.Name = "GtkAlignment40";
			// Container child GtkAlignment40.Gtk.Container+ContainerChild
			Gtk.HBox w1433 = new Gtk.HBox ();
			w1433.BorderWidth = ((uint) (3));
			w1433.Name = "hbox77";
			// Container child hbox77.Gtk.Box+BoxChild
			Gtk.Label w1434 = new Gtk.Label ();
			w1434.LabelProp = "Código Sicologo(a): ";
			w1434.Name = "label183";
			this.label183 = w1434;
			w1433.Add (w1434);
			Gtk.Box.BoxChild w1435 = ((Gtk.Box.BoxChild) (w1433 [w1434]));
			w1435.Position = 0;
			w1435.Expand = false;
			w1435.Fill = false;
			// Container child hbox77.Gtk.Box+BoxChild
			Gtk.Entry w1436 = new Gtk.Entry ();
			w1436.IsEditable = true;
			w1436.WidthChars = 8;
			w1436.MaxLength = 8;
			w1436.InvisibleChar = '●';
			w1436.CanFocus = true;
			w1436.Name = "en_CodSicologo";
			this.en_CodSicologo = w1436;
			w1433.Add (w1436);
			Gtk.Box.BoxChild w1437 = ((Gtk.Box.BoxChild) (w1433 [w1436]));
			w1437.Position = 1;
			w1437.Expand = false;
			w1437.Padding = ((uint) (10));
			// Container child hbox77.Gtk.Box+BoxChild
			Gtk.Label w1438 = new Gtk.Label ();
			w1438.LabelProp = "";
			w1438.Name = "la_NomSico";
			this.la_NomSico = w1438;
			w1433.Add (w1438);
			Gtk.Box.BoxChild w1439 = ((Gtk.Box.BoxChild) (w1433 [w1438]));
			w1439.Position = 2;
			w1439.Expand = false;
			w1439.Fill = false;
			w1439.Padding = ((uint) (5));
			this.hbox77 = w1433;
			w1432.Add (w1433);
			this.GtkAlignment40 = w1432;
			w1431.Add (w1432);
			Gtk.Label w1442 = new Gtk.Label ();
			w1442.LabelProp = "";
			w1442.UseMarkup = true;
			w1442.Events = ((Gdk.EventMask) (256));
			w1442.Name = "GtkLabel53";
			this.GtkLabel53 = w1442;
			w1431.LabelWidget = w1442;
			this.frame39 = w1431;
			w1430.Add (w1431);
			this.alignment57 = w1430;
			w1420.Add (w1430);
			Gtk.Box.BoxChild w1444 = ((Gtk.Box.BoxChild) (w1420 [w1430]));
			w1444.PackType = ((Gtk.PackType) (1));
			w1444.Position = 1;
			w1444.Expand = false;
			w1444.Fill = false;
			this.vbox32 = w1420;
			w1161.Add (w1420);
			Gtk.Notebook.NotebookChild w1445 = ((Gtk.Notebook.NotebookChild) (w1161 [w1420]));
			w1445.Position = 3;
			w1445.TabExpand = false;
			w1445.TabFill = false;
			// Notebook tab
			Gtk.Label w1446 = new Gtk.Label ();
			w1446.LabelProp = "Evaluación\nEntrevista";
			w1446.Justify = ((Gtk.Justification) (2));
			w1446.Name = "la_EvalEntrevista";
			this.la_EvalEntrevista = w1446;
			w1161.SetTabLabel (w1420, w1446);
			this.notebook2 = w1161;
			w136.Add (w1161);
			Gtk.Notebook.NotebookChild w1447 = ((Gtk.Notebook.NotebookChild) (w136 [w1161]));
			w1447.Position = 6;
			w1447.TabExpand = false;
			// Notebook tab
			Gtk.Label w1448 = new Gtk.Label ();
			w1448.LabelProp = "Evaluación\nSicológica";
			w1448.Justify = ((Gtk.Justification) (2));
			w1448.Name = "la_EvalSico";
			this.la_EvalSico = w1448;
			w136.SetTabLabel (w1161, w1448);
			this.notebook1 = w136;
			w66.Add (w136);
			Gtk.Box.BoxChild w1449 = ((Gtk.Box.BoxChild) (w66 [w136]));
			w1449.Position = 2;
			this.vbox3 = w66;
			w65.Add (w66);
			Gtk.Box.BoxChild w1450 = ((Gtk.Box.BoxChild) (w65 [w66]));
			w1450.Position = 0;
			this.vbox2 = w65;
			w64.Add (w65);
			Gtk.Box.BoxChild w1451 = ((Gtk.Box.BoxChild) (w64 [w65]));
			w1451.Position = 0;
			w1451.Expand = false;
			w1451.Fill = false;
			// Container child hbox3.Gtk.Box+BoxChild
			Gtk.VBox w1452 = new Gtk.VBox ();
			w1452.Name = "vbox9";
			// Container child vbox9.Gtk.Box+BoxChild
			Gtk.Image w1453 = new Gtk.Image ();
			w1453.Xpad = 21;
			w1453.Name = "image9";
			this.image9 = w1453;
			w1452.Add (w1453);
			Gtk.Box.BoxChild w1454 = ((Gtk.Box.BoxChild) (w1452 [w1453]));
			w1454.Position = 0;
			w1454.Expand = false;
			w1454.Padding = ((uint) (30));
			// Container child vbox9.Gtk.Box+BoxChild
			Gtk.VBox w1455 = new Gtk.VBox ();
			w1455.Name = "vbox33";
			// Container child vbox33.Gtk.Box+BoxChild
			Gtk.Alignment w1456 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1456.LeftPadding = ((uint) (22));
			w1456.RightPadding = ((uint) (15));
			w1456.BottomPadding = ((uint) (4));
			w1456.Name = "alignment44";
			// Container child alignment44.Gtk.Container+ContainerChild
			Gtk.Button w1457 = new Gtk.Button ();
			w1457.HeightRequest = 41;
			w1457.CanFocus = true;
			w1457.Name = "bu_Grabar";
			// Container child bu_Grabar.Gtk.Container+ContainerChild
			Gtk.Alignment w1458 = new Gtk.Alignment (0.5F, 0.5F, 0F, 0F);
			w1458.Name = "GtkAlignment";
			// Container child GtkAlignment.Gtk.Container+ContainerChild
			Gtk.HBox w1459 = new Gtk.HBox ();
			w1459.Spacing = 2;
			w1459.Name = "GtkHBox";
			// Container child GtkHBox.Gtk.Container+ContainerChild
			Gtk.Image w1460 = new Gtk.Image ();
			w1460.Pixbuf = Gtk.IconTheme.Default.LoadIcon ("gtk-apply", 24, 0);
			w1460.Name = "image63";
			w1459.Add (w1460);
			// Container child GtkHBox.Gtk.Container+ContainerChild
			Gtk.Label w1462 = new Gtk.Label ();
			w1462.LabelProp = "Grabar";
			w1462.Name = "GtkLabel";
			w1459.Add (w1462);
			w1458.Add (w1459);
			w1457.Add (w1458);
			this.bu_Grabar = w1457;
			w1456.Add (w1457);
			this.alignment44 = w1456;
			w1455.Add (w1456);
			Gtk.Box.BoxChild w1467 = ((Gtk.Box.BoxChild) (w1455 [w1456]));
			w1467.Position = 0;
			w1467.Expand = false;
			w1467.Fill = false;
			// Container child vbox33.Gtk.Box+BoxChild
			Gtk.Alignment w1468 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1468.LeftPadding = ((uint) (8));
			w1468.RightPadding = ((uint) (5));
			w1468.BottomPadding = ((uint) (9));
			w1468.Name = "alignment61";
			// Container child alignment61.Gtk.Container+ContainerChild
			Gtk.Label w1469 = new Gtk.Label ();
			w1469.LabelProp = "";
			w1469.Name = "label190";
			this.label190 = w1469;
			w1468.Add (w1469);
			this.alignment61 = w1468;
			w1455.Add (w1468);
			Gtk.Box.BoxChild w1471 = ((Gtk.Box.BoxChild) (w1455 [w1468]));
			w1471.Position = 1;
			w1471.Expand = false;
			w1471.Fill = false;
			// Container child vbox33.Gtk.Box+BoxChild
			Gtk.Alignment w1472 = new Gtk.Alignment (0.5F, 0.5F, 1F, 1F);
			w1472.LeftPadding = ((uint) (20));
			w1472.RightPadding = ((uint) (14));
			w1472.Name = "alignment45";
			// Container child alignment45.Gtk.Container+ContainerChild
			Gtk.Button w1473 = new Gtk.Button ();
			w1473.CanFocus = true;
			w1473.Name = "button15";
			// Container child button15.Gtk.Container+ContainerChild
			Gtk.Alignment w1474 = new Gtk.Alignment (0.5F, 0.5F, 0F, 0F);
			w1474.Name = "GtkAlignment";
			// Container child GtkAlignment.Gtk.Container+ContainerChild
			Gtk.HBox w1475 = new Gtk.HBox ();
			w1475.Spacing = 2;
			w1475.Name = "GtkHBox";
			// Container child GtkHBox.Gtk.Container+ContainerChild
			Gtk.Image w1476 = new Gtk.Image ();
			w1476.Pixbuf = Gtk.IconTheme.Default.LoadIcon ("gtk-quit", 24, 0);
			w1476.Name = "image64";
			w1475.Add (w1476);
			// Container child GtkHBox.Gtk.Container+ContainerChild
			Gtk.Label w1478 = new Gtk.Label ();
			w1478.LabelProp = "Salir sin\nGrabar";
			w1478.Name = "GtkLabel";
			w1475.Add (w1478);
			w1474.Add (w1475);
			w1473.Add (w1474);
			this.button15 = w1473;
			w1472.Add (w1473);
			this.alignment45 = w1472;
			w1455.Add (w1472);
			Gtk.Box.BoxChild w1483 = ((Gtk.Box.BoxChild) (w1455 [w1472]));
			w1483.Position = 2;
			w1483.Expand = false;
			w1483.Fill = false;
			this.vbox33 = w1455;
			w1452.Add (w1455);
			Gtk.Box.BoxChild w1484 = ((Gtk.Box.BoxChild) (w1452 [w1455]));
			w1484.Position = 1;
			w1484.Expand = false;
			w1484.Fill = false;
			this.vbox9 = w1452;
			w64.Add (w1452);
			Gtk.Box.BoxChild w1485 = ((Gtk.Box.BoxChild) (w64 [w1452]));
			w1485.Position = 1;
			w1485.Expand = false;
			w1485.Fill = false;
			this.hbox3 = w64;
			w27.Add (w64);
			Gtk.Box.BoxChild w1486 = ((Gtk.Box.BoxChild) (w27 [w64]));
			w1486.Position = 4;
			w1486.Expand = false;
			w1486.Fill = false;
			// Container child vbox1.Gtk.Box+BoxChild
			Gtk.ScrolledWindow w1487 = new Gtk.ScrolledWindow ();
			w1487.VscrollbarPolicy = ((Gtk.PolicyType) (1));
			w1487.HscrollbarPolicy = ((Gtk.PolicyType) (1));
			w1487.CanFocus = true;
			w1487.Name = "scrolledwindow1";
			// Container child scrolledwindow1.Gtk.Container+ContainerChild
			Gtk.Viewport w1488 = new Gtk.Viewport ();
			w1488.ShadowType = ((Gtk.ShadowType) (0));
			w1488.Name = "GtkViewport1";
			w1487.Add (w1488);
			this.scrolledwindow1 = w1487;
			w27.Add (w1487);
			Gtk.Box.BoxChild w1490 = ((Gtk.Box.BoxChild) (w27 [w1487]));
			w1490.Position = 5;
			this.vbox1 = w27;
			w26.Add (w27);
			w25.Add (w26);
			this.scrolledwindow2 = w25;
			cobj.Add (w25);
			cobj.DefaultWidth = 1272;
			cobj.DefaultHeight = 882;
			w29.Show ();
			w31.Show ();
			w33.Show ();
			w28.Show ();
			w36.Show ();
			w39.Show ();
			w41.Show ();
			w43.Show ();
			w45.Show ();
			w47.Show ();
			w49.Show ();
			w51.Show ();
			w53.Show ();
			w55.Show ();
			w57.Show ();
			w59.Show ();
			w38.Show ();
			w62.Show ();
			w74.Show ();
			w76.Show ();
			w78.Show ();
			w80.Show ();
			w82.Show ();
			w84.Show ();
			w73.Show ();
			w88.Show ();
			w90.Show ();
			w92.Show ();
			w87.Show ();
			w72.Show ();
			w71.Show ();
			w97.Show ();
			w70.Show ();
			w103.Show ();
			w105.Show ();
			w107.Show ();
			w109.Show ();
			w111.Show ();
			w102.Show ();
			w115.Show ();
			w117.Show ();
			w119.Show ();
			w121.Show ();
			w123.Show ();
			w114.Show ();
			w101.Show ();
			w100.Show ();
			w128.Show ();
			w99.Show ();
			w69.Show ();
			w68.Show ();
			w132.Show ();
			w67.Show ();
			w134.Show ();
			w145.Show ();
			w147.Show ();
			w149.Show ();
			w144.Show ();
			w143.Show ();
			w153.Show ();
			w142.Show ();
			w159.Show ();
			w161.Show ();
			w163.Show ();
			w158.Show ();
			w157.Show ();
			w167.Show ();
			w156.Show ();
			w155.Show ();
			w141.Show ();
			w140.Show ();
			w177.Show ();
			w179.Show ();
			w181.Show ();
			w183.Show ();
			w185.Show ();
			w176.Show ();
			w175.Show ();
			w189.Show ();
			w174.Show ();
			w173.Show ();
			w172.Show ();
			w197.Show ();
			w199.Show ();
			w201.Show ();
			w203.Show ();
			w205.Show ();
			w207.Show ();
			w209.Show ();
			w196.Show ();
			w195.Show ();
			w213.Show ();
			w194.Show ();
			w193.Show ();
			w220.Show ();
			w222.Show ();
			w219.Show ();
			w218.Show ();
			w226.Show ();
			w217.Show ();
			w216.Show ();
			w234.Show ();
			w236.Show ();
			w238.Show ();
			w240.Show ();
			w242.Show ();
			w233.Show ();
			w246.Show ();
			w248.Show ();
			w250.Show ();
			w252.Show ();
			w254.Show ();
			w256.Show ();
			w258.Show ();
			w245.Show ();
			w262.Show ();
			w264.Show ();
			w261.Show ();
			w268.Show ();
			w270.Show ();
			w272.Show ();
			w274.Show ();
			w276.Show ();
			w278.Show ();
			w280.Show ();
			w267.Show ();
			w284.Show ();
			w286.Show ();
			w283.Show ();
			w232.Show ();
			w231.Show ();
			w291.Show ();
			w230.Show ();
			w229.Show ();
			w139.Show ();
			w138.Show ();
			w137.Show ();
			w297.Show ();
			w308.Show ();
			w310.Show ();
			w312.Show ();
			w314.Show ();
			w307.Show ();
			w306.Show ();
			w318.Show ();
			w305.Show ();
			w304.Show ();
			w325.Show ();
			w327.Show ();
			w329.Show ();
			w331.Show ();
			w324.Show ();
			w323.Show ();
			w335.Show ();
			w322.Show ();
			w321.Show ();
			w342.Show ();
			w344.Show ();
			w346.Show ();
			w348.Show ();
			w341.Show ();
			w340.Show ();
			w352.Show ();
			w339.Show ();
			w338.Show ();
			w303.Show ();
			w361.Show ();
			w363.Show ();
			w360.Show ();
			w359.Show ();
			w367.Show ();
			w358.Show ();
			w357.Show ();
			w374.Show ();
			w376.Show ();
			w373.Show ();
			w372.Show ();
			w380.Show ();
			w371.Show ();
			w370.Show ();
			w356.Show ();
			w302.Show ();
			w301.Show ();
			w386.Show ();
			w300.Show ();
			w299.Show ();
			w393.Show ();
			w395.Show ();
			w392.Show ();
			w391.Show ();
			w399.Show ();
			w390.Show ();
			w389.Show ();
			w298.Show ();
			w403.Show ();
			w415.Show ();
			w417.Show ();
			w419.Show ();
			w414.Show ();
			w413.Show ();
			w423.Show ();
			w412.Show ();
			w411.Show ();
			w430.Show ();
			w432.Show ();
			w434.Show ();
			w429.Show ();
			w428.Show ();
			w438.Show ();
			w427.Show ();
			w426.Show ();
			w410.Show ();
			w409.Show ();
			w443.Show ();
			w408.Show ();
			w407.Show ();
			w454.Show ();
			w456.Show ();
			w453.Show ();
			w452.Show ();
			w460.Show ();
			w451.Show ();
			w450.Show ();
			w467.Show ();
			w469.Show ();
			w466.Show ();
			w465.Show ();
			w473.Show ();
			w464.Show ();
			w463.Show ();
			w449.Show ();
			w448.Show ();
			w478.Show ();
			w447.Show ();
			w446.Show ();
			w489.Show ();
			w491.Show ();
			w488.Show ();
			w487.Show ();
			w495.Show ();
			w486.Show ();
			w485.Show ();
			w502.Show ();
			w504.Show ();
			w501.Show ();
			w500.Show ();
			w508.Show ();
			w499.Show ();
			w498.Show ();
			w484.Show ();
			w483.Show ();
			w513.Show ();
			w482.Show ();
			w481.Show ();
			w406.Show ();
			w405.Show ();
			w404.Show ();
			w519.Show ();
			w523.Show ();
			w531.Show ();
			w533.Show ();
			w537.Show ();
			w539.Show ();
			w541.Show ();
			w543.Show ();
			w545.Show ();
			w536.Show ();
			w535.Show ();
			w530.Show ();
			w551.Show ();
			w553.Show ();
			w555.Show ();
			w557.Show ();
			w550.Show ();
			w529.Show ();
			w528.Show ();
			w527.Show ();
			w563.Show ();
			w526.Show ();
			w525.Show ();
			w572.Show ();
			w574.Show ();
			w578.Show ();
			w580.Show ();
			w582.Show ();
			w584.Show ();
			w586.Show ();
			w577.Show ();
			w576.Show ();
			w571.Show ();
			w592.Show ();
			w594.Show ();
			w596.Show ();
			w598.Show ();
			w591.Show ();
			w570.Show ();
			w569.Show ();
			w568.Show ();
			w604.Show ();
			w567.Show ();
			w566.Show ();
			w613.Show ();
			w615.Show ();
			w619.Show ();
			w621.Show ();
			w623.Show ();
			w625.Show ();
			w627.Show ();
			w618.Show ();
			w617.Show ();
			w612.Show ();
			w633.Show ();
			w635.Show ();
			w637.Show ();
			w639.Show ();
			w632.Show ();
			w611.Show ();
			w610.Show ();
			w609.Show ();
			w645.Show ();
			w608.Show ();
			w607.Show ();
			w654.Show ();
			w656.Show ();
			w660.Show ();
			w662.Show ();
			w664.Show ();
			w666.Show ();
			w668.Show ();
			w659.Show ();
			w658.Show ();
			w653.Show ();
			w674.Show ();
			w676.Show ();
			w678.Show ();
			w680.Show ();
			w673.Show ();
			w652.Show ();
			w651.Show ();
			w650.Show ();
			w686.Show ();
			w649.Show ();
			w648.Show ();
			w522.Show ();
			w521.Show ();
			w520.Show ();
			w692.Show ();
			w701.Show ();
			w703.Show ();
			w705.Show ();
			w707.Show ();
			w700.Show ();
			w711.Show ();
			w713.Show ();
			w715.Show ();
			w717.Show ();
			w710.Show ();
			w721.Show ();
			w723.Show ();
			w725.Show ();
			w727.Show ();
			w720.Show ();
			w731.Show ();
			w733.Show ();
			w735.Show ();
			w737.Show ();
			w730.Show ();
			w699.Show ();
			w698.Show ();
			w742.Show ();
			w697.Show ();
			w696.Show ();
			w750.Show ();
			w752.Show ();
			w755.Show ();
			w754.Show ();
			w758.Show ();
			w760.Show ();
			w762.Show ();
			w764.Show ();
			w766.Show ();
			w749.Show ();
			w770.Show ();
			w772.Show ();
			w775.Show ();
			w774.Show ();
			w778.Show ();
			w780.Show ();
			w782.Show ();
			w784.Show ();
			w786.Show ();
			w769.Show ();
			w790.Show ();
			w792.Show ();
			w795.Show ();
			w794.Show ();
			w798.Show ();
			w800.Show ();
			w802.Show ();
			w804.Show ();
			w806.Show ();
			w789.Show ();
			w810.Show ();
			w812.Show ();
			w815.Show ();
			w814.Show ();
			w818.Show ();
			w820.Show ();
			w822.Show ();
			w824.Show ();
			w826.Show ();
			w809.Show ();
			w748.Show ();
			w747.Show ();
			w831.Show ();
			w746.Show ();
			w745.Show ();
			w695.Show ();
			w694.Show ();
			w693.Show ();
			w837.Show ();
			w842.Show ();
			w844.Show ();
			w841.Show ();
			w853.Show ();
			w855.Show ();
			w852.Show ();
			w859.Show ();
			w861.Show ();
			w863.Show ();
			w865.Show ();
			w868.Show ();
			w867.Show ();
			w871.Show ();
			w873.Show ();
			w875.Show ();
			w858.Show ();
			w879.Show ();
			w881.Show ();
			w878.Show ();
			w886.Show ();
			w889.Show ();
			w891.Show ();
			w893.Show ();
			w895.Show ();
			w897.Show ();
			w888.Show ();
			w885.Show ();
			w884.Show ();
			w851.Show ();
			w850.Show ();
			w904.Show ();
			w849.Show ();
			w848.Show ();
			w907.Show ();
			w847.Show ();
			w915.Show ();
			w917.Show ();
			w914.Show ();
			w921.Show ();
			w923.Show ();
			w925.Show ();
			w927.Show ();
			w930.Show ();
			w929.Show ();
			w933.Show ();
			w935.Show ();
			w937.Show ();
			w920.Show ();
			w941.Show ();
			w943.Show ();
			w940.Show ();
			w948.Show ();
			w951.Show ();
			w953.Show ();
			w955.Show ();
			w957.Show ();
			w959.Show ();
			w950.Show ();
			w947.Show ();
			w946.Show ();
			w913.Show ();
			w912.Show ();
			w966.Show ();
			w911.Show ();
			w910.Show ();
			w969.Show ();
			w909.Show ();
			w977.Show ();
			w979.Show ();
			w976.Show ();
			w983.Show ();
			w985.Show ();
			w987.Show ();
			w989.Show ();
			w992.Show ();
			w991.Show ();
			w995.Show ();
			w997.Show ();
			w999.Show ();
			w982.Show ();
			w1003.Show ();
			w1005.Show ();
			w1002.Show ();
			w1010.Show ();
			w1013.Show ();
			w1015.Show ();
			w1017.Show ();
			w1019.Show ();
			w1021.Show ();
			w1012.Show ();
			w1009.Show ();
			w1008.Show ();
			w975.Show ();
			w974.Show ();
			w1028.Show ();
			w973.Show ();
			w972.Show ();
			w1031.Show ();
			w971.Show ();
			w1039.Show ();
			w1041.Show ();
			w1038.Show ();
			w1045.Show ();
			w1047.Show ();
			w1049.Show ();
			w1051.Show ();
			w1054.Show ();
			w1053.Show ();
			w1057.Show ();
			w1059.Show ();
			w1061.Show ();
			w1044.Show ();
			w1065.Show ();
			w1067.Show ();
			w1064.Show ();
			w1072.Show ();
			w1075.Show ();
			w1077.Show ();
			w1079.Show ();
			w1081.Show ();
			w1083.Show ();
			w1074.Show ();
			w1071.Show ();
			w1070.Show ();
			w1037.Show ();
			w1036.Show ();
			w1090.Show ();
			w1035.Show ();
			w1034.Show ();
			w1093.Show ();
			w1033.Show ();
			w1101.Show ();
			w1103.Show ();
			w1100.Show ();
			w1107.Show ();
			w1109.Show ();
			w1111.Show ();
			w1113.Show ();
			w1116.Show ();
			w1115.Show ();
			w1119.Show ();
			w1121.Show ();
			w1123.Show ();
			w1106.Show ();
			w1127.Show ();
			w1129.Show ();
			w1126.Show ();
			w1134.Show ();
			w1137.Show ();
			w1139.Show ();
			w1141.Show ();
			w1143.Show ();
			w1145.Show ();
			w1136.Show ();
			w1133.Show ();
			w1132.Show ();
			w1099.Show ();
			w1098.Show ();
			w1152.Show ();
			w1097.Show ();
			w1096.Show ();
			w1155.Show ();
			w1095.Show ();
			w840.Show ();
			w839.Show ();
			w838.Show ();
			w1160.Show ();
			w1170.Show ();
			w1172.Show ();
			w1174.Show ();
			w1176.Show ();
			w1178.Show ();
			w1180.Show ();
			w1182.Show ();
			w1184.Show ();
			w1186.Show ();
			w1188.Show ();
			w1190.Show ();
			w1192.Show ();
			w1194.Show ();
			w1196.Show ();
			w1198.Show ();
			w1200.Show ();
			w1169.Show ();
			w1203.Show ();
			w1206.Show ();
			w1208.Show ();
			w1210.Show ();
			w1212.Show ();
			w1214.Show ();
			w1216.Show ();
			w1218.Show ();
			w1220.Show ();
			w1222.Show ();
			w1224.Show ();
			w1226.Show ();
			w1228.Show ();
			w1230.Show ();
			w1232.Show ();
			w1205.Show ();
			w1168.Show ();
			w1167.Show ();
			w1237.Show ();
			w1166.Show ();
			w1165.Show ();
			w1164.Show ();
			w1163.Show ();
			w1162.Show ();
			w1243.Show ();
			w1252.Show ();
			w1254.Show ();
			w1256.Show ();
			w1258.Show ();
			w1260.Show ();
			w1262.Show ();
			w1264.Show ();
			w1266.Show ();
			w1268.Show ();
			w1270.Show ();
			w1272.Show ();
			w1274.Show ();
			w1251.Show ();
			w1277.Show ();
			w1280.Show ();
			w1282.Show ();
			w1284.Show ();
			w1286.Show ();
			w1288.Show ();
			w1290.Show ();
			w1292.Show ();
			w1294.Show ();
			w1296.Show ();
			w1298.Show ();
			w1300.Show ();
			w1302.Show ();
			w1279.Show ();
			w1250.Show ();
			w1249.Show ();
			w1307.Show ();
			w1248.Show ();
			w1247.Show ();
			w1246.Show ();
			w1245.Show ();
			w1244.Show ();
			w1313.Show ();
			w1322.Show ();
			w1324.Show ();
			w1326.Show ();
			w1328.Show ();
			w1330.Show ();
			w1332.Show ();
			w1334.Show ();
			w1336.Show ();
			w1338.Show ();
			w1340.Show ();
			w1342.Show ();
			w1344.Show ();
			w1346.Show ();
			w1348.Show ();
			w1350.Show ();
			w1352.Show ();
			w1354.Show ();
			w1356.Show ();
			w1358.Show ();
			w1360.Show ();
			w1362.Show ();
			w1364.Show ();
			w1321.Show ();
			w1367.Show ();
			w1370.Show ();
			w1372.Show ();
			w1374.Show ();
			w1376.Show ();
			w1378.Show ();
			w1380.Show ();
			w1382.Show ();
			w1384.Show ();
			w1386.Show ();
			w1388.Show ();
			w1390.Show ();
			w1392.Show ();
			w1394.Show ();
			w1396.Show ();
			w1398.Show ();
			w1400.Show ();
			w1402.Show ();
			w1404.Show ();
			w1406.Show ();
			w1408.Show ();
			w1369.Show ();
			w1320.Show ();
			w1319.Show ();
			w1413.Show ();
			w1318.Show ();
			w1317.Show ();
			w1316.Show ();
			w1315.Show ();
			w1314.Show ();
			w1419.Show ();
			w1424.Show ();
			w1423.Show ();
			w1427.Show ();
			w1422.Show ();
			w1421.Show ();
			w1434.Show ();
			w1436.Show ();
			w1438.Show ();
			w1433.Show ();
			w1432.Show ();
			w1442.Show ();
			w1431.Show ();
			w1430.Show ();
			w1420.Show ();
			w1446.Show ();
			w1161.Show ();
			w1448.Show ();
			w136.Show ();
			w66.Show ();
			w65.Show ();
			w1453.Show ();
			w1460.Show ();
			w1462.Show ();
			w1459.Show ();
			w1458.Show ();
			w1457.Show ();
			w1456.Show ();
			w1469.Show ();
			w1468.Show ();
			w1476.Show ();
			w1478.Show ();
			w1475.Show ();
			w1474.Show ();
			w1473.Show ();
			w1472.Show ();
			w1455.Show ();
			w1452.Show ();
			w64.Show ();
			w1488.Show ();
			w1487.Show ();
			w27.Show ();
			w26.Show ();
			w25.Show ();
			cobj.Show ();
			w39.Changed += new System.EventHandler (this.OnComboOpRecChanged);
			w76.Changed += new System.EventHandler (this.OnCombTipoChanged);
			w82.KeyPressEvent += new Gtk.KeyPressEventHandler (this.OnEnNumTipoKeyPressEvent);
			w82.Changed += new System.EventHandler (this.OnEnNumTipoChanged);
			w82.TextInserted += new Gtk.TextInsertedHandler (this.OnEnNumTipoTextInserted);
			w90.FocusInEvent += new Gtk.FocusInEventHandler (this.OnEnNumExpFocusInEvent);
			w90.TextInserted += new Gtk.TextInsertedHandler (this.OnEnNumExpTextInserted);
			w90.KeyPressEvent += new Gtk.KeyPressEventHandler (this.OnEnNumExpKeyPressEvent);
			w105.TextInserted += new Gtk.TextInsertedHandler (this.OnEnPrNombreTextInserted);
			w105.KeyPressEvent += new Gtk.KeyPressEventHandler (this.OnEnPrNombreKeyPressEvent);
			w111.TextInserted += new Gtk.TextInsertedHandler (this.OnEnSdoNombreTextInserted);
			w117.TextInserted += new Gtk.TextInsertedHandler (this.OnEnSdoNombreTextInserted);
			w117.KeyPressEvent += new Gtk.KeyPressEventHandler (this.OnEnSdoNombreTextInserted);
			w123.TextInserted += new Gtk.TextInsertedHandler (this.OnEnSdoNombreTextInserted);
			w147.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w161.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w179.FocusOutEvent += new Gtk.FocusOutEventHandler (this.OnEnSdoNombreTextInserted);
			w181.FocusOutEvent += new Gtk.FocusOutEventHandler (this.OnEnSdoNombreTextInserted);
			w181.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w183.FocusOutEvent += new Gtk.FocusOutEventHandler (this.OnEnSdoNombreTextInserted);
			w199.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w203.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w207.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w236.TextInserted += new Gtk.TextInsertedHandler (this.OnEnSdoNombreTextInserted);
			w240.TextInserted += new Gtk.TextInsertedHandler (this.OnEnSdoNombreTextInserted);
			w248.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w252.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w256.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w270.TextInserted += new Gtk.TextInsertedHandler (this.OnEnSdoNombreTextInserted);
			w276.TextInserted += new Gtk.TextInsertedHandler (this.OnEnSdoNombreTextInserted);
			w280.TextInserted += new Gtk.TextInsertedHandler (this.OnEnSdoNombreTextInserted);
			w344.Clicked += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w346.Clicked += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w363.FocusOutEvent += new Gtk.FocusOutEventHandler (this.OnEnSdoNombreTextInserted);
			w376.FocusOutEvent += new Gtk.FocusOutEventHandler (this.OnEnSdoNombreTextInserted);
			w395.TextInserted += new Gtk.TextInsertedHandler (this.OnEnSdoNombreTextInserted);
			w417.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w432.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w456.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w469.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w491.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w504.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w533.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w574.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w615.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w656.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w703.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w713.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w723.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w733.Changed += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w847.Activated += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w909.Activated += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w971.Activated += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w1033.Activated += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w1095.Activated += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w1457.Clicked += new System.EventHandler (this.OnEnSdoNombreTextInserted);
			w1473.Clicked += new System.EventHandler (this.OnEnSdoNombreTextInserted);
		}
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget Adroit.Gui.PlanningView
     Stetic.BinContainer.Attach(this);
     this.Name = "Adroit.Gui.PlanningView";
     // Container child Adroit.Gui.PlanningView.Gtk.Container+ContainerChild
     this.m_hpaned = new Gtk.HPaned();
     this.m_hpaned.CanFocus = true;
     this.m_hpaned.Name = "m_hpaned";
     this.m_hpaned.Position = 175;
     // Container child m_hpaned.Gtk.Paned+PanedChild
     this.notebook1 = new Gtk.Notebook();
     this.notebook1.CanFocus = true;
     this.notebook1.Name = "notebook1";
     this.notebook1.CurrentPage = 0;
     this.notebook1.ShowTabs = false;
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.scrolledwindow1 = new Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus = true;
     this.scrolledwindow1.Name = "scrolledwindow1";
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     Gtk.Viewport w1 = new Gtk.Viewport();
     w1.ShadowType = ((Gtk.ShadowType)(0));
     // Container child GtkViewport.Gtk.Container+ContainerChild
     this.m_projectsTreeView = new Gtk.TreeView();
     this.m_projectsTreeView.CanFocus = true;
     this.m_projectsTreeView.Name = "m_projectsTreeView";
     w1.Add(this.m_projectsTreeView);
     this.scrolledwindow1.Add(w1);
     this.notebook1.Add(this.scrolledwindow1);
     // Notebook tab
     this.label1 = new Gtk.Label();
     this.label1.Name = "label1";
     this.label1.LabelProp = Mono.Unix.Catalog.GetString("page1");
     this.notebook1.SetTabLabel(this.scrolledwindow1, this.label1);
     this.label1.ShowAll();
     this.m_hpaned.Add(this.notebook1);
     Gtk.Paned.PanedChild w5 = ((Gtk.Paned.PanedChild)(this.m_hpaned[this.notebook1]));
     w5.Resize = false;
     // Container child m_hpaned.Gtk.Paned+PanedChild
     this.vbox1 = new Gtk.VBox();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.notebook2 = new Gtk.Notebook();
     this.notebook2.CanFocus = true;
     this.notebook2.Name = "notebook2";
     this.notebook2.CurrentPage = 0;
     this.notebook2.ShowTabs = false;
     // Container child notebook2.Gtk.Notebook+NotebookChild
     this.scrolledwindow2 = new Gtk.ScrolledWindow();
     this.scrolledwindow2.CanFocus = true;
     this.scrolledwindow2.Name = "scrolledwindow2";
     // Container child scrolledwindow2.Gtk.Container+ContainerChild
     Gtk.Viewport w6 = new Gtk.Viewport();
     w6.ShadowType = ((Gtk.ShadowType)(0));
     // Container child GtkViewport1.Gtk.Container+ContainerChild
     this.m_tasksTreeView = new Gtk.TreeView();
     this.m_tasksTreeView.CanFocus = true;
     this.m_tasksTreeView.Name = "m_tasksTreeView";
     this.m_tasksTreeView.RulesHint = true;
     w6.Add(this.m_tasksTreeView);
     this.scrolledwindow2.Add(w6);
     this.notebook2.Add(this.scrolledwindow2);
     // Notebook tab
     this.label2 = new Gtk.Label();
     this.label2.Name = "label2";
     this.label2.LabelProp = Mono.Unix.Catalog.GetString("page1");
     this.notebook2.SetTabLabel(this.scrolledwindow2, this.label2);
     this.label2.ShowAll();
     this.vbox1.Add(this.notebook2);
     Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(this.vbox1[this.notebook2]));
     w10.Position = 0;
     // Container child vbox1.Gtk.Box+BoxChild
     this.m_attachmentExpander = new Gtk.Expander(null);
     this.m_attachmentExpander.CanFocus = true;
     this.m_attachmentExpander.Name = "m_attachmentExpander";
     // Container child m_attachmentExpander.Gtk.Container+ContainerChild
     this.hbox1 = new Gtk.HBox();
     this.hbox1.Name = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.scrolledwindow3 = new Gtk.ScrolledWindow();
     this.scrolledwindow3.CanFocus = true;
     this.scrolledwindow3.Name = "scrolledwindow3";
     this.scrolledwindow3.ShadowType = ((Gtk.ShadowType)(1));
     // Container child scrolledwindow3.Gtk.Container+ContainerChild
     Gtk.Viewport w11 = new Gtk.Viewport();
     w11.ShadowType = ((Gtk.ShadowType)(0));
     // Container child GtkViewport2.Gtk.Container+ContainerChild
     this.m_tasksIconView = new Gtk.IconView();
     this.m_tasksIconView.CanFocus = true;
     this.m_tasksIconView.Name = "m_tasksIconView";
     this.m_tasksIconView.Orientation = ((Gtk.Orientation)(0));
     w11.Add(this.m_tasksIconView);
     this.scrolledwindow3.Add(w11);
     this.hbox1.Add(this.scrolledwindow3);
     Gtk.Box.BoxChild w14 = ((Gtk.Box.BoxChild)(this.hbox1[this.scrolledwindow3]));
     w14.Position = 0;
     // Container child hbox1.Gtk.Box+BoxChild
     this.vbox2 = new Gtk.VBox();
     this.vbox2.Name = "vbox2";
     // Container child vbox2.Gtk.Box+BoxChild
     this.m_addAttachmentButton = new Gtk.Button();
     this.m_addAttachmentButton.TooltipMarkup = "Add an attachment";
     this.m_addAttachmentButton.CanFocus = true;
     this.m_addAttachmentButton.Name = "m_addAttachmentButton";
     this.m_addAttachmentButton.Relief = ((Gtk.ReliefStyle)(2));
     // Container child m_addAttachmentButton.Gtk.Container+ContainerChild
     this.image1 = new Gtk.Image();
     this.image1.Name = "image1";
     this.image1.Pixbuf = Stetic.IconLoader.LoadIcon(this, "gtk-add", Gtk.IconSize.Menu, 16);
     this.m_addAttachmentButton.Add(this.image1);
     this.m_addAttachmentButton.Label = null;
     this.vbox2.Add(this.m_addAttachmentButton);
     Gtk.Box.BoxChild w16 = ((Gtk.Box.BoxChild)(this.vbox2[this.m_addAttachmentButton]));
     w16.Position = 0;
     w16.Expand = false;
     w16.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.m_removeAttachmentButton = new Gtk.Button();
     this.m_removeAttachmentButton.TooltipMarkup = "Remove the selected attachment";
     this.m_removeAttachmentButton.Sensitive = false;
     this.m_removeAttachmentButton.CanFocus = true;
     this.m_removeAttachmentButton.Name = "m_removeAttachmentButton";
     this.m_removeAttachmentButton.Relief = ((Gtk.ReliefStyle)(2));
     // Container child m_removeAttachmentButton.Gtk.Container+ContainerChild
     this.image2 = new Gtk.Image();
     this.image2.Name = "image2";
     this.image2.Pixbuf = Stetic.IconLoader.LoadIcon(this, "gtk-remove", Gtk.IconSize.Menu, 16);
     this.m_removeAttachmentButton.Add(this.image2);
     this.m_removeAttachmentButton.Label = null;
     this.vbox2.Add(this.m_removeAttachmentButton);
     Gtk.Box.BoxChild w18 = ((Gtk.Box.BoxChild)(this.vbox2[this.m_removeAttachmentButton]));
     w18.Position = 1;
     w18.Expand = false;
     w18.Fill = false;
     this.hbox1.Add(this.vbox2);
     Gtk.Box.BoxChild w19 = ((Gtk.Box.BoxChild)(this.hbox1[this.vbox2]));
     w19.Position = 1;
     w19.Expand = false;
     this.m_attachmentExpander.Add(this.hbox1);
     this.GtkLabel = new Gtk.Label();
     this.GtkLabel.Name = "GtkLabel";
     this.GtkLabel.LabelProp = Mono.Unix.Catalog.GetString("Show Attachment Bar");
     this.GtkLabel.UseUnderline = true;
     this.m_attachmentExpander.LabelWidget = this.GtkLabel;
     this.vbox1.Add(this.m_attachmentExpander);
     Gtk.Box.BoxChild w21 = ((Gtk.Box.BoxChild)(this.vbox1[this.m_attachmentExpander]));
     w21.Position = 1;
     w21.Expand = false;
     this.m_hpaned.Add(this.vbox1);
     this.Add(this.m_hpaned);
     if ((this.Child != null)) {
         this.Child.ShowAll();
     }
     this.Hide();
     this.m_tasksTreeView.ButtonPressEvent += new Gtk.ButtonPressEventHandler(this.OnTasksTreeViewButtonPressEvent);
     this.m_attachmentExpander.Activated += new System.EventHandler(this.AttachmentExpander_Activated);
     this.m_addAttachmentButton.Clicked += new System.EventHandler(this.OnAddAttachmentButtonClicked);
     this.m_removeAttachmentButton.Clicked += new System.EventHandler(this.OnRemoveAttachmentButtonClicked);
 }
Example #30
0
 public ExpanderBackend()
 {
     Widget = new Gtk.Expander(string.Empty);
     Widget.Show();
 }
Example #31
0
 public ExpanderBackend()
 {
     Widget = new Gtk.Expander (string.Empty);
     Widget.Show ();
 }
Example #32
0
 protected virtual void Build()
 {
     Stetic.Gui.Initialize(this);
     // Widget ocmgtk.ImportDialog
     this.WidthRequest    = 700;
     this.HeightRequest   = 500;
     this.Name            = "ocmgtk.ImportDialog";
     this.Title           = Mono.Unix.Catalog.GetString("Import GPX/LOC/ZIP..");
     this.TypeHint        = ((Gdk.WindowTypeHint)(1));
     this.WindowPosition  = ((Gtk.WindowPosition)(4));
     this.Modal           = true;
     this.BorderWidth     = ((uint)(6));
     this.Resizable       = false;
     this.AllowGrow       = false;
     this.SkipPagerHint   = true;
     this.SkipTaskbarHint = true;
     // Internal child ocmgtk.ImportDialog.VBox
     Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.fileWidget      = new Gtk.FileChooserWidget(((Gtk.FileChooserAction)(0)));
     this.fileWidget.Name = "fileWidget";
     w1.Add(this.fileWidget);
     Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(w1[this.fileWidget]));
     w2.Position = 0;
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.expander1          = new Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name     = "expander1";
     this.expander1.Expanded = true;
     // Container child expander1.Gtk.Container+ContainerChild
     this.vbox2         = new Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.oldLogsCheck               = new Gtk.CheckButton();
     this.oldLogsCheck.CanFocus      = true;
     this.oldLogsCheck.Name          = "oldLogsCheck";
     this.oldLogsCheck.Label         = Mono.Unix.Catalog.GetString("Purge old cache logs");
     this.oldLogsCheck.DrawIndicator = true;
     this.oldLogsCheck.UseUnderline  = true;
     this.vbox2.Add(this.oldLogsCheck);
     Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.vbox2[this.oldLogsCheck]));
     w3.Position = 0;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.statusCheck               = new Gtk.CheckButton();
     this.statusCheck.CanFocus      = true;
     this.statusCheck.Name          = "statusCheck";
     this.statusCheck.Label         = Mono.Unix.Catalog.GetString("Do not overwrite existing found status in database");
     this.statusCheck.DrawIndicator = true;
     this.statusCheck.UseUnderline  = true;
     this.vbox2.Add(this.statusCheck);
     Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(this.vbox2[this.statusCheck]));
     w4.Position = 1;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.gsakFieldsCheck               = new Gtk.CheckButton();
     this.gsakFieldsCheck.CanFocus      = true;
     this.gsakFieldsCheck.Name          = "gsakFieldsCheck";
     this.gsakFieldsCheck.Label         = Mono.Unix.Catalog.GetString("Ignore GSAK/OCM extra fields in GPX file");
     this.gsakFieldsCheck.DrawIndicator = true;
     this.gsakFieldsCheck.UseUnderline  = true;
     this.vbox2.Add(this.gsakFieldsCheck);
     Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(this.vbox2[this.gsakFieldsCheck]));
     w5.Position = 2;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1         = new Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.addToListCheck               = new Gtk.CheckButton();
     this.addToListCheck.CanFocus      = true;
     this.addToListCheck.Name          = "addToListCheck";
     this.addToListCheck.Label         = Mono.Unix.Catalog.GetString("Add to bookmark list:");
     this.addToListCheck.DrawIndicator = true;
     this.addToListCheck.UseUnderline  = true;
     this.hbox1.Add(this.addToListCheck);
     Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.hbox1[this.addToListCheck]));
     w6.Position = 0;
     w6.Expand   = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.bmCombo           = Gtk.ComboBox.NewText();
     this.bmCombo.Sensitive = false;
     this.bmCombo.Name      = "bmCombo";
     this.hbox1.Add(this.bmCombo);
     Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(this.hbox1[this.bmCombo]));
     w7.Position = 1;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.addBmrkButton          = new Gtk.Button();
     this.addBmrkButton.CanFocus = true;
     this.addBmrkButton.Name     = "addBmrkButton";
     // Container child addBmrkButton.Gtk.Container+ContainerChild
     this.image20           = new Gtk.Image();
     this.image20.Sensitive = false;
     this.image20.Name      = "image20";
     this.image20.Pixbuf    = Stetic.IconLoader.LoadIcon(this, "gtk-add", Gtk.IconSize.Menu, 16);
     this.addBmrkButton.Add(this.image20);
     this.addBmrkButton.Label = null;
     this.hbox1.Add(this.addBmrkButton);
     Gtk.Box.BoxChild w9 = ((Gtk.Box.BoxChild)(this.hbox1[this.addBmrkButton]));
     w9.Position = 2;
     w9.Expand   = false;
     w9.Fill     = false;
     this.vbox2.Add(this.hbox1);
     Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(this.vbox2[this.hbox1]));
     w10.Position = 3;
     w10.Expand   = false;
     w10.Fill     = false;
     this.expander1.Add(this.vbox2);
     this.GtkLabel17              = new Gtk.Label();
     this.GtkLabel17.Name         = "GtkLabel17";
     this.GtkLabel17.LabelProp    = Mono.Unix.Catalog.GetString("Options");
     this.GtkLabel17.UseUnderline = true;
     this.expander1.LabelWidget   = this.GtkLabel17;
     w1.Add(this.expander1);
     Gtk.Box.BoxChild w12 = ((Gtk.Box.BoxChild)(w1[this.expander1]));
     w12.Position = 1;
     w12.Expand   = false;
     w12.Fill     = false;
     w12.Padding  = ((uint)(6));
     // Internal child ocmgtk.ImportDialog.ActionArea
     Gtk.HButtonBox w13 = this.ActionArea;
     w13.Name        = "dialog1_ActionArea";
     w13.Spacing     = 10;
     w13.BorderWidth = ((uint)(5));
     w13.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 w14 = ((Gtk.ButtonBox.ButtonBoxChild)(w13[this.buttonCancel]));
     w14.Expand = false;
     w14.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-open";
     this.AddActionWidget(this.buttonOk, -3);
     Gtk.ButtonBox.ButtonBoxChild w15 = ((Gtk.ButtonBox.ButtonBoxChild)(w13[this.buttonOk]));
     w15.Position = 1;
     w15.Expand   = false;
     w15.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 721;
     this.DefaultHeight = 527;
     this.Show();
     this.fileWidget.FileActivated += new System.EventHandler(this.OnFileActivated);
     this.addToListCheck.Toggled   += new System.EventHandler(this.OnAddToBmrkToggle);
     this.addBmrkButton.Clicked    += new System.EventHandler(this.OnAddClicked);
     this.buttonCancel.Clicked     += new System.EventHandler(this.OnCancelClicked);
     this.buttonOk.Clicked         += new System.EventHandler(this.OnOkClicked);
 }