public void AddButton(string stock_id, Gtk.ResponseType response, bool isDefault) { Gtk.Button button = new Gtk.Button(stock_id); button.CanDefault = true; button.Show(); AddButton(button, response, isDefault); }
public void SetButtons(IEnumerable <DialogButton> newButtons) { if (buttons != null) { foreach (var b in buttons) { ((Gtk.Container)b.Parent).Remove(b); b.Destroy(); } } dialogButtons = newButtons.ToArray(); buttons = new Gtk.Button [dialogButtons.Length]; for (int n = 0; n < dialogButtons.Length; n++) { var db = dialogButtons[n]; Gtk.Button b = new Gtk.Button(); b.Show(); b.Label = db.Label; Window.ActionArea.Add(b); UpdateButton(db, b); buttons[n] = b; buttons[n].Clicked += HandleButtonClicked; } UpdateActionAreaVisibility(); }
private void OnRefresh(HitRenderer signaller) { string str; str = "<b>" + name + "</b>"; if (renderer.TotalCount > 0) { str += " -- " + renderer.TotalCount + " match"; if (renderer.TotalCount > 1) { str += "es"; } } nameLabel.Markup = str; str = ""; if (renderer.DisplayedCount > 1) { str = String.Format("{0} - {1} displayed", renderer.FirstDisplayed + 1, renderer.LastDisplayed + 1); if (renderer.LastDisplayed + 1 < renderer.TotalCount) { prevButton.Show(); nextButton.Show(); } } displayedLabel.Text = str; prevButton.Sensitive = (renderer.FirstDisplayed > 0); nextButton.Sensitive = (renderer.LastDisplayed + 1 < renderer.TotalCount && renderer.TotalCount > 0); }
//Gtk.Image image; public GtkSharpButton(Widget shellobject, string caption) : base(shellobject) { button = new Gtk.Button(); GtkSharpDriver.InitWidget(button, shellobject); button.Show(); label = new Gtk.Label(caption); label.Show(); CreateContent(null); button.Show(); button.Clicked += delegate { ((Button)ShellObject).OnClicked(); }; }
public NoteDialog(Gtk.Window parentWindow, ITask task) : base() { this.ParentWindow = parentWindow.GdkWindow; this.task = task; this.Title = String.Format(Catalog.GetString("Notes for: {0:s}"), task.Text); this.HasSeparator = false; this.SetSizeRequest(500,320); this.Icon = Utilities.GetIcon ("tasque", 16); //this.Flags = Gtk.DialogFlags.DestroyWithParent; sw.VscrollbarPolicy = Gtk.PolicyType.Automatic; sw.HscrollbarPolicy = Gtk.PolicyType.Never; sw.BorderWidth = 0; sw.CanFocus = true; sw.Show (); Gtk.EventBox innerEb = new Gtk.EventBox(); innerEb.BorderWidth = 0; targetVBox = new Gtk.VBox(); targetVBox.BorderWidth = 5; targetVBox.Show (); innerEb.Add(targetVBox); innerEb.Show (); if(task.Notes != null) { foreach (var note in task.Notes) { NoteWidget noteWidget = new NoteWidget (note); noteWidget.TextChanged += OnNoteTextChanged; noteWidget.DeleteButtonClicked += OnDeleteButtonClicked; noteWidget.EditCanceled += OnEditCanceled; noteWidget.Show (); targetVBox.PackStart (noteWidget, false, false, 0); } } sw.AddWithViewport(innerEb); sw.Show (); VBox.PackStart (sw, true, true, 0); if(task.NoteSupport == NoteSupport.Multiple) { addButton = new Gtk.Button(Gtk.Stock.Add); addButton.Show(); this.ActionArea.PackStart(addButton); addButton.Clicked += OnAddButtonClicked; } AddButton (Gtk.Stock.Close, Gtk.ResponseType.Close); Response += delegate (object sender, Gtk.ResponseArgs args) { // Hide the window. The TaskWindow watches for when the // dialog is hidden and will take care of the rest. Hide (); }; }
public Gtk.Button AddCustomButton(string message, Gtk.ResponseType response, bool isDefault) { Gtk.Button button = new Gtk.Button(); button.Label = message; button.CanDefault = true; button.Show(); AddButton(button, response, isDefault); return(button); }
private void AddButton(Gtk.Button button, Gtk.ResponseType response, bool is_default) { button.Show(); AddActionWidget(button, response); if (is_default) { DefaultResponse = response; } }
void RemoveClicked(object sender, EventArgs args) { // Remove the icon file and call UpdateIconStore (). Gtk.TreeIter iter; if (!icon_tree.Selection.GetSelected(out iter)) { return; } string icon_path = icon_store.GetValue(iter, 2) as string; HIGMessageDialog dialog = new HIGMessageDialog( null, Gtk.DialogFlags.DestroyWithParent, Gtk.MessageType.Question, Gtk.ButtonsType.None, Catalog.GetString("Really remove this icon?"), Catalog.GetString("If you remove an icon it is " + "permanently lost.")); Gtk.Button button; button = new Gtk.Button(Gtk.Stock.Cancel); button.CanDefault = true; button.Show(); dialog.AddActionWidget(button, Gtk.ResponseType.Cancel); dialog.DefaultResponse = Gtk.ResponseType.Cancel; button = new Gtk.Button(Gtk.Stock.Delete); button.CanDefault = true; button.Show(); dialog.AddActionWidget(button, 666); int result = dialog.Run(); if (result == 666) { try { File.Delete(icon_path); UpdateIconStore(); } catch (Exception e) { Logger.Error("Error removing icon {0}: {1}", icon_path, e.Message); } } dialog.Destroy(); }
private void AddButton(Gtk.Button button, Gtk.ResponseType response, bool is_default) { button.Show(); AddActionWidget(button, response); if (is_default) { DefaultResponse = response; button.AddAccelerator("activate", accel_group, (uint)Gdk.Key.Escape, 0, Gtk.AccelFlags.Visible); } }
void AddButton(string stock_id, Gtk.ResponseType response, bool is_default) { Gtk.Button button = new Gtk.Button(stock_id); button.CanDefault = true; button.Show(); AddActionWidget(button, response); if (is_default) { DefaultResponse = response; button.AddAccelerator("activate", accel_group, (uint)Gdk.Key.Escape, 0, Gtk.AccelFlags.Visible); } }
public NoteOfTheDayPreferences() : base(false, 12) { Gtk.Label label = new Gtk.Label( Catalog.GetString( "Change the <span weight=\"bold\">Today: Template</span> " + "note to customize the text that new Today notes have.")); label.UseMarkup = true; label.Wrap = true; label.Show(); PackStart(label, true, true, 0); open_template_button = new Gtk.Button( Catalog.GetString("_Open Today: Template")); open_template_button.UseUnderline = true; open_template_button.Clicked += OpenTemplateButtonClicked; open_template_button.Show(); PackStart(open_template_button, false, false, 0); ShowAll(); }
public NoteOfTheDayPreferences () : base (false, 12) { Gtk.Label label = new Gtk.Label ( Catalog.GetString ( "Change the <b>Today: Template</b> note to customize " + "the text that new Today notes have.")); label.UseMarkup = true; label.Wrap = true; label.Show (); PackStart (label, true, true, 0); open_template_button = new Gtk.Button ( Catalog.GetString ("_Open Today: Template")); open_template_button.UseUnderline = true; open_template_button.Clicked += OpenTemplateButtonClicked; open_template_button.Show (); PackStart (open_template_button, false, false, 0); ShowAll (); }
public NoteOfTheDayPreferences() : base(false, 12) { Gtk.Label label = new Gtk.Label ( Catalog.GetString ( "Change the <b>Today: Template</b> note to customize " + "the text that new Today notes have.")); label.UseMarkup = true; label.Wrap = true; label.Show (); PackStart (label, true, true, 0); use_yesterday_check = new Gtk.CheckButton( Catalog.GetString("_Use yesterday note as template.")); use_yesterday_check.UseUnderline = true; use_yesterdat_check.Show(); PackStart (use_yesterday_check, false, false, 0); // Check if preference has been set before if (Preferences.Get(NoteOfTheDay.NOTD_YESTERDAY) == null){ // Default value use_yesterday_check.Active = true; }else if ((bool) Preferences.Get(NoteOfTheDay.NOTD_YESTERDAY)){ use_yesterday_check.Active = true; }else{ use_yesterday_check.Active = false; } use_yesterday_check.Toggled += OnYesterdayCheckToggled; open_template_button = new Gtk.Button ( Catalog.GetString ("_Open Today: Template")); open_template_button.UseUnderline = true; open_template_button.Clicked += OpenTemplateButtonClicked; open_template_button.Show (); PackStart (open_template_button, false, false, 0); ShowAll (); }
public void SetButtons (IEnumerable<DialogButton> newButtons) { if (buttons != null) { foreach (var b in buttons) { ((Gtk.Container)b.Parent).Remove (b); b.Destroy (); } } dialogButtons = newButtons.ToArray (); buttons = new Gtk.Button [dialogButtons.Length]; for (int n=0; n<dialogButtons.Length; n++) { var db = dialogButtons[n]; Gtk.Button b = new Gtk.Button (); b.Show (); b.Label = db.Label; Window.ActionArea.Add (b); UpdateButton (db, b); buttons[n] = b; buttons[n].Clicked += HandleButtonClicked; } UpdateActionAreaVisibility (); }
public NoteDialog(Gtk.Window parentWindow, ITask task) : base() { this.ParentWindow = parentWindow.GdkWindow; this.task = task; this.Title = String.Format(Catalog.GetString("Notes for: {0:s}"), task.Text); this.HasSeparator = false; this.SetSizeRequest(500, 320); this.Icon = Utilities.GetIcon("tasque", 16); //this.Flags = Gtk.DialogFlags.DestroyWithParent; sw.VscrollbarPolicy = Gtk.PolicyType.Automatic; sw.HscrollbarPolicy = Gtk.PolicyType.Never; sw.BorderWidth = 0; sw.CanFocus = true; sw.Show(); Gtk.EventBox innerEb = new Gtk.EventBox(); innerEb.BorderWidth = 0; targetVBox = new Gtk.VBox(); targetVBox.BorderWidth = 5; targetVBox.Show(); innerEb.Add(targetVBox); innerEb.Show(); if (task.Notes != null) { foreach (var note in task.Notes) { NoteWidget noteWidget = new NoteWidget(note); noteWidget.TextChanged += OnNoteTextChanged; noteWidget.DeleteButtonClicked += OnDeleteButtonClicked; noteWidget.EditCanceled += OnEditCanceled; noteWidget.Show(); targetVBox.PackStart(noteWidget, false, false, 0); } } sw.AddWithViewport(innerEb); sw.Show(); VBox.PackStart(sw, true, true, 0); if (task.NoteSupport == NoteSupport.Multiple) { addButton = new Gtk.Button(Gtk.Stock.Add); addButton.Show(); this.ActionArea.PackStart(addButton); addButton.Clicked += OnAddButtonClicked; } AddButton(Gtk.Stock.Close, Gtk.ResponseType.Close); Response += delegate(object sender, Gtk.ResponseArgs args) { // Hide the window. The TaskWindow watches for when the // dialog is hidden and will take care of the rest. Hide(); }; }
private void CreateGui() { Gtk.FileChooserButton fc = new Gtk.FileChooserButton("Choose directory to put your splitted files", Gtk.FileChooserAction.SelectFolder); string fn = Banshee.Configuration.ConfigurationClient.Get <string>("cuesheets_todevice", ""); if (fn != "") { fc.SelectFilename(fn); } fc.FileSet += new EventHandler(delegate(Object sender, EventArgs args) { fn = fc.Filename; Banshee.Configuration.ConfigurationClient.Set <string>("cuesheets_todevice", fn); }); Gtk.Button btn = new Gtk.Button("Split CueSheet Audio File"); Gtk.Button csplit = new Gtk.Button("Cancel"); csplit.Clicked += delegate(object sender, EventArgs args) { _splt.CancelSplit(); }; Gtk.ProgressBar bar = new Gtk.ProgressBar(); Gtk.ProgressBar nr = new Gtk.ProgressBar(); Gtk.Button ok = (Gtk.Button)base.AddButton("OK", 1); Gtk.Label result = new Gtk.Label("-"); btn.Clicked += delegate(object sender, EventArgs args) { btn.Hide(); csplit.Show(); result.Markup = ""; ok.Sensitive = false; fc.Sensitive = false; btn.Sensitive = false; _splt.SplitWithPaths(); bool convert_to_latin1 = true; _splt.SplitToDir(fn, convert_to_latin1); GLib.Timeout.Add(50, delegate() { bar.Fraction = _splt.ProgressOfCurrentTrack; int n = _splt.ProgressNTracks; int i = _splt.ProgressCurrentTrack; double d = ((double)i) / ((double)n); nr.Fraction = d; if (_splt.SplitFinished) { ok.Sensitive = true; btn.Sensitive = true; fc.Sensitive = true; csplit.Hide(); btn.Show(); if (_splt.Cancelled) { result.Markup = "<b>Split Cancelled</b>"; } else { result.Markup = "<b>Finished</b>"; } } return(!_splt.SplitFinished); }); }; fc.Show(); nr.Show(); bar.Show(); btn.Show(); result.Show(); base.VBox.Add(fc); base.VBox.Add(hsep()); base.VBox.Add(nr); base.VBox.Add(bar); base.VBox.Add(hsep()); base.VBox.Add(result); base.VBox.Add(hsep()); base.VBox.Add(btn); base.VBox.Add(csplit); base.VBox.Show(); }
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); } } }
// Page 3 // Extension Preferences public Gtk.Widget MakeAddinsPane () { Gtk.VBox vbox = new Gtk.VBox (false, 6); vbox.BorderWidth = 6; Gtk.Label l = new Gtk.Label (Catalog.GetString ( "The following add-ins are installed")); l.Xalign = 0; l.Show (); vbox.PackStart (l, false, false, 0); Gtk.HBox hbox = new Gtk.HBox (false, 6); // TreeView of Add-ins Gtk.TreeView tree = new Gtk.TreeView (); addin_tree = new Mono.Addins.Gui.AddinTreeWidget (tree); tree.Show (); Gtk.ScrolledWindow sw = new Gtk.ScrolledWindow (); sw.HscrollbarPolicy = Gtk.PolicyType.Automatic; sw.VscrollbarPolicy = Gtk.PolicyType.Automatic; sw.ShadowType = Gtk.ShadowType.In; sw.Add (tree); sw.Show (); Gtk.LinkButton get_more_link = new Gtk.LinkButton ("http://live.gnome.org/Tomboy/PluginList", Catalog.GetString ("Get More Add-Ins...")); get_more_link.Show (); Gtk.VBox tree_box = new Gtk.VBox (false, 0); tree_box.Add (sw); tree_box.PackEnd (get_more_link, false, false, 5); tree_box.Show (); hbox.PackStart (tree_box, true, true, 0); // Action Buttons (right of TreeView) Gtk.VButtonBox button_box = new Gtk.VButtonBox (); button_box.Spacing = 4; button_box.Layout = Gtk.ButtonBoxStyle.Start; // TODO: In a future version, add in an "Install Add-ins..." button // TODO: In a future version, add in a "Repositories..." button enable_addin_button = new Gtk.Button (Catalog.GetString ("_Enable")); enable_addin_button.Sensitive = false; enable_addin_button.Clicked += OnEnableAddinButton; enable_addin_button.Show (); disable_addin_button = new Gtk.Button (Catalog.GetString ("_Disable")); disable_addin_button.Sensitive = false; disable_addin_button.Clicked += OnDisableAddinButton; disable_addin_button.Show (); addin_prefs_button = new Gtk.Button (Gtk.Stock.Preferences); addin_prefs_button.Sensitive = false; addin_prefs_button.Clicked += OnAddinPrefsButton; addin_prefs_button.Show (); addin_info_button = new Gtk.Button (Gtk.Stock.Info); addin_info_button.Sensitive = false; addin_info_button.Clicked += OnAddinInfoButton; addin_info_button.Show (); button_box.PackStart (enable_addin_button); button_box.PackStart (disable_addin_button); button_box.PackStart (addin_prefs_button); button_box.PackStart (addin_info_button); button_box.Show (); hbox.PackStart (button_box, false, false, 0); hbox.Show (); vbox.PackStart (hbox, true, true, 0); vbox.Show (); tree.Selection.Changed += OnAddinTreeSelectionChanged; LoadAddins (); return vbox; }
void RemoveClicked (object sender, EventArgs args) { // Remove the icon file and call UpdateIconStore (). Gtk.TreeIter iter; if (!icon_tree.Selection.GetSelected (out iter)) return; string icon_path = icon_store.GetValue (iter, 2) as string; HIGMessageDialog dialog = new HIGMessageDialog ( null, Gtk.DialogFlags.DestroyWithParent, Gtk.MessageType.Question, Gtk.ButtonsType.None, Catalog.GetString ("Really remove this icon?"), Catalog.GetString ("If you remove an icon it is " + "permanently lost.")); Gtk.Button button; button = new Gtk.Button (Gtk.Stock.Cancel); button.CanDefault = true; button.Show (); dialog.AddActionWidget (button, Gtk.ResponseType.Cancel); dialog.DefaultResponse = Gtk.ResponseType.Cancel; button = new Gtk.Button (Gtk.Stock.Delete); button.CanDefault = true; button.Show (); dialog.AddActionWidget (button, 666); int result = dialog.Run (); if (result == 666) { try { File.Delete (icon_path); UpdateIconStore (); } catch (Exception e) { Logger.Error ("Error removing icon {0}: {1}", icon_path, e.Message); } } dialog.Destroy(); }
public static void Build(object obj, string id) { System.Collections.Hashtable bindings = new System.Collections.Hashtable(); if ((id == "sink.help")) { Gtk.Dialog cobj = ((Gtk.Dialog)(obj)); // Widget sink.help cobj.Title = "help"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.HasSeparator = false; cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "sink.help"; // Internal child sink.help.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.Alignment w3 = new Gtk.Alignment(0.5F, 0.5F, 0F, 1F); w3.TopPadding = ((uint)(15)); w3.BottomPadding = ((uint)(15)); w3.Events = ((Gdk.EventMask)(0)); w3.Name = "alignment1"; // Container child alignment1.Gtk.Container+ContainerChild Gtk.HBox w4 = new Gtk.HBox(); w4.Spacing = 15; w4.Events = ((Gdk.EventMask)(0)); w4.Name = "hbox3"; // Container child hbox3.Gtk.Box+BoxChild Gtk.Image w5 = new Gtk.Image(); w5.Pixbuf = new Gdk.Pixbuf("sink.bmp"); w5.Events = ((Gdk.EventMask)(0)); w5.Name = "image5"; bindings["image5"] = w5; w4.Add(w5); Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(w4[w5])); w6.Position = 0; w6.Expand = false; w6.Fill = false; // Container child hbox3.Gtk.Box+BoxChild Gtk.Label w7 = new Gtk.Label(); w7.LabelProp = "SINK"; w7.UseUnderline = true; w7.Events = ((Gdk.EventMask)(0)); w7.Name = "label4"; bindings["label4"] = w7; w4.Add(w7); Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(w4[w7])); w8.Position = 1; w8.Expand = false; w8.Fill = false; bindings["hbox3"] = w4; w3.Add(w4); bindings["alignment1"] = w3; w2.Add(w3); Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(w2[w3])); w10.Position = 0; w10.Expand = false; w10.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.ScrolledWindow w11 = new Gtk.ScrolledWindow(); w11.VscrollbarPolicy = ((Gtk.PolicyType)(1)); w11.HscrollbarPolicy = ((Gtk.PolicyType)(2)); w11.CanFocus = true; w11.Events = ((Gdk.EventMask)(0)); w11.Name = "scrolledwindow1"; // Container child scrolledwindow1.Gtk.Container+ContainerChild Gtk.Viewport w12 = new Gtk.Viewport(); w12.ShadowType = ((Gtk.ShadowType)(0)); w12.Events = ((Gdk.EventMask)(0)); w12.Name = "GtkViewport"; // Container child GtkViewport.Gtk.Container+ContainerChild Gtk.ScrolledWindow w13 = new Gtk.ScrolledWindow(); w13.VscrollbarPolicy = ((Gtk.PolicyType)(1)); w13.HscrollbarPolicy = ((Gtk.PolicyType)(1)); w13.CanFocus = true; w13.Events = ((Gdk.EventMask)(0)); w13.Name = "scrolledwindow2"; // Container child scrolledwindow2.Gtk.Container+ContainerChild Gtk.TextView w14 = new Gtk.TextView(); w14.Buffer.Text = "Introduction\r\n\r\nCellular automaton consist of an infinite number of cells, which have a finite number of states. These states change depending on the state of their neighbours. Each cell has the same rule for updating.\r\n\r\nSink\r\n\r\nIn this program, the cells can have two states: 0 or 1. This state depends on the state of their neighbours and the place where the cell is. \r\n\r\nThese are the default update rules:\r\n\r\n. If both the cell and path are 1, and the cell has eight neighbours, the cell becomes 0. \r\n. If the cell is 1, path is 0 and the cell has more than three neighbours, the cell changes to 0.\r\n. If both the cell and path are 0, and the cell has more than three neighbours, the cell changes to 1.\r\n. If the cell is 0, path is 1 and the cell has more than two neighbours, the cell becomes 1.\r\n\r\nThe user can change all the parameters of the program in the configuration menu.\r\n"; w14.WrapMode = ((Gtk.WrapMode)(2)); w14.Editable = false; w14.CanFocus = true; w14.Events = ((Gdk.EventMask)(0)); w14.Name = "textview1"; bindings["textview1"] = w14; w13.Add(w14); bindings["scrolledwindow2"] = w13; w12.Add(w13); bindings["GtkViewport"] = w12; w11.Add(w12); bindings["scrolledwindow1"] = w11; w2.Add(w11); Gtk.Box.BoxChild w18 = ((Gtk.Box.BoxChild)(w2[w11])); w18.Position = 1; bindings["vbox1"] = w2; w1.Add(w2); Gtk.Box.BoxChild w19 = ((Gtk.Box.BoxChild)(w1[w2])); w19.Position = 0; bindings["dialog_VBox"] = w1; // Internal child sink.help.ActionArea Gtk.HButtonBox w20 = cobj.ActionArea; w20.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w20.Spacing = 6; w20.BorderWidth = ((uint)(5)); w20.Events = ((Gdk.EventMask)(256)); w20.Name = "sink.help_ActionArea"; // Container child sink.help_ActionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w21 = new Gtk.Button(); w21.CanFocus = true; w21.Events = ((Gdk.EventMask)(0)); w21.Name = "button3"; w21.CanDefault = true; w21.Label = "OK"; bindings["button3"] = w21; cobj.AddActionWidget(w21, 0); Gtk.ButtonBox.ButtonBoxChild w22 = ((Gtk.ButtonBox.ButtonBoxChild)(w20[w21])); w22.Expand = false; w22.Fill = false; bindings["sink.help_ActionArea"] = w20; cobj.DefaultWidth = 400; cobj.DefaultHeight = 449; bindings["sink.help"] = cobj; w5.Show(); w7.Show(); w4.Show(); w3.Show(); w14.Show(); w13.Show(); w12.Show(); w11.Show(); w2.Show(); w1.Show(); w21.Show(); w20.Show(); cobj.Show(); w21.Released += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnButton3Released"))); } else { if ((id == "sink.sinkgtk")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget sink.sinkgtk cobj.Title = "sinkgtk"; Gtk.UIManager w1 = new Gtk.UIManager(); Gtk.ActionGroup w2 = new Gtk.ActionGroup("Default"); Gtk.Action w3 = new Gtk.Action("Simulation", "Simulation", null, null); w3.ShortLabel = "Start"; bindings["Simulation"] = w3; w2.Add(w3, null); Gtk.Action w4 = new Gtk.Action("NewSimulation", "New simulation", null, "gtk-media-play"); w4.ShortLabel = "New simulation"; bindings["NewSimulation"] = w4; w2.Add(w4, null); Gtk.ToggleAction w5 = new Gtk.ToggleAction("PauseSimulation", "Pause simulation", null, "gtk-media-pause"); w5.ShortLabel = "Pause simulation"; bindings["PauseSimulation"] = w5; w2.Add(w5, null); Gtk.Action w6 = new Gtk.Action("StopSimulation", "Stop simulation", null, "gtk-media-stop"); w6.ShortLabel = "Stop simulation"; bindings["StopSimulation"] = w6; w2.Add(w6, null); Gtk.Action w7 = new Gtk.Action("Exit", "Exit", null, "gtk-close"); w7.ShortLabel = "Exit"; bindings["Exit"] = w7; w2.Add(w7, null); Gtk.Action w8 = new Gtk.Action("Configuration", "Configuration", null, null); w8.ShortLabel = "Configuration"; bindings["Configuration"] = w8; w2.Add(w8, null); Gtk.Action w9 = new Gtk.Action("IntroVariables", "Intro variables", null, "gtk-properties"); w9.ShortLabel = "Intro variables"; bindings["IntroVariables"] = w9; w2.Add(w9, null); Gtk.Action w10 = new Gtk.Action("Help", "Help", null, null); w10.ShortLabel = "Help"; bindings["Help"] = w10; w2.Add(w10, null); Gtk.Action w11 = new Gtk.Action("Help1", "Help", null, "gtk-help"); w11.ShortLabel = "Help"; bindings["Help1"] = w11; w2.Add(w11, null); Gtk.Action w12 = new Gtk.Action("AboutAuthors", "About Authors", null, "gtk-info"); w12.ShortLabel = "About Authors"; bindings["AboutAuthors"] = w12; w2.Add(w12, null); w1.InsertActionGroup(w2, 0); cobj.AddAccelGroup(w1.AccelGroup); cobj.Icon = Gtk.IconTheme.Default.LoadIcon("stock_internet", 16, 0); cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "sink.sinkgtk"; // Container child sink.sinkgtk.Gtk.Container+ContainerChild Gtk.VBox w13 = new Gtk.VBox(); w13.Events = ((Gdk.EventMask)(0)); w13.Name = "vbox1"; // Container child vbox1.Gtk.Box+BoxChild w1.AddUiFromString("<ui><menubar name='menubar1'><menu action='Simulation'><menuitem action='NewSimulation'/><menuitem action='PauseSimulation'/><menuitem action='StopSimulation'/><menuitem action='Exit'/></menu><menu action='Configuration'><menuitem action='IntroVariables'/></menu><menu action='Help'><menuitem action='Help1'/><menuitem action='AboutAuthors'/></menu></menubar></ui>"); Gtk.MenuBar w14 = ((Gtk.MenuBar)(w1.GetWidget("/menubar1"))); w14.Events = ((Gdk.EventMask)(0)); w14.Name = "menubar1"; bindings["menubar1"] = w14; w13.Add(w14); Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(w13[w14])); w15.Position = 0; w15.Expand = false; w15.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.Statusbar w16 = new Gtk.Statusbar(); w16.Events = ((Gdk.EventMask)(0)); w16.Name = "statusbar1"; bindings["statusbar1"] = w16; w13.Add(w16); Gtk.Box.BoxChild w17 = ((Gtk.Box.BoxChild)(w13[w16])); w17.Position = 1; w17.Expand = false; w17.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.DrawingArea w18 = new Gtk.DrawingArea(); w18.Events = ((Gdk.EventMask)(0)); w18.Name = "drawingarea1"; bindings["drawingarea1"] = w18; w13.Add(w18); Gtk.Box.BoxChild w19 = ((Gtk.Box.BoxChild)(w13[w18])); w19.Position = 2; bindings["vbox1"] = w13; cobj.Add(w13); cobj.DefaultWidth = 500; cobj.DefaultHeight = 300; bindings["sink.sinkgtk"] = cobj; w14.Show(); w16.Show(); w18.Show(); w13.Show(); cobj.Show(); cobj.Removed += ((Gtk.RemovedHandler)(System.Delegate.CreateDelegate(typeof(Gtk.RemovedHandler), cobj, "OnRemoved"))); w4.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnNewSimulationActivated"))); w5.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnPauseSimulationActivated"))); w6.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnStopSimulationActivated"))); w7.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnExitActivated"))); w9.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnIntroVariablesActivated"))); w11.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnHelp1Activated"))); w12.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnAboutAuthorsActivated"))); w18.ExposeEvent += ((Gtk.ExposeEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.ExposeEventHandler), cobj, "OnDrawingarea1ExposeEvent"))); } else { if ((id == "sink.configuration")) { Gtk.Dialog cobj = ((Gtk.Dialog)(obj)); // Widget sink.configuration cobj.Title = "configuration"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.HasSeparator = false; cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "sink.configuration"; // Internal child sink.configuration.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.Table w3 = new Gtk.Table(((uint)(5)), ((uint)(2)), false); w3.Events = ((Gdk.EventMask)(0)); w3.Name = "table1"; // Container child table1.Gtk.Table+TableChild Gtk.Label w4 = new Gtk.Label(); w4.LabelProp = "Max cicles"; w4.Events = ((Gdk.EventMask)(0)); w4.Name = "label1"; bindings["label1"] = w4; w3.Add(w4); Gtk.Table.TableChild w5 = ((Gtk.Table.TableChild)(w3[w4])); w5.YOptions = ((Gtk.AttachOptions)(4)); w5.XOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Label w6 = new Gtk.Label(); w6.LabelProp = "Population"; w6.Events = ((Gdk.EventMask)(0)); w6.Name = "label3"; bindings["label3"] = w6; w3.Add(w6); Gtk.Table.TableChild w7 = ((Gtk.Table.TableChild)(w3[w6])); w7.BottomAttach = ((uint)(2)); w7.TopAttach = ((uint)(1)); w7.YOptions = ((Gtk.AttachOptions)(4)); w7.XOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Label w8 = new Gtk.Label(); w8.LabelProp = "Mortality"; w8.Events = ((Gdk.EventMask)(0)); w8.Name = "label4"; bindings["label4"] = w8; w3.Add(w8); Gtk.Table.TableChild w9 = ((Gtk.Table.TableChild)(w3[w8])); w9.BottomAttach = ((uint)(3)); w9.TopAttach = ((uint)(2)); w9.YOptions = ((Gtk.AttachOptions)(4)); w9.XOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Label w10 = new Gtk.Label(); w10.LabelProp = "Patch"; w10.Events = ((Gdk.EventMask)(0)); w10.Name = "label5"; bindings["label5"] = w10; w3.Add(w10); Gtk.Table.TableChild w11 = ((Gtk.Table.TableChild)(w3[w10])); w11.BottomAttach = ((uint)(4)); w11.TopAttach = ((uint)(3)); w11.YOptions = ((Gtk.AttachOptions)(4)); w11.XOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.HScale w12 = new Gtk.HScale(null); w12.Digits = 0; w12.Adjustment.Upper = 100000; w12.Adjustment.PageIncrement = 100; w12.Adjustment.StepIncrement = 10; w12.DrawValue = true; w12.Adjustment.Value = 99900; w12.ValuePos = ((Gtk.PositionType)(2)); w12.CanFocus = true; w12.Events = ((Gdk.EventMask)(0)); w12.Name = "hscale1"; bindings["hscale1"] = w12; w3.Add(w12); Gtk.Table.TableChild w13 = ((Gtk.Table.TableChild)(w3[w12])); w13.LeftAttach = ((uint)(1)); w13.RightAttach = ((uint)(2)); w13.YOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.HScale w14 = new Gtk.HScale(null); w14.Digits = 0; w14.Adjustment.Upper = 5000; w14.Adjustment.PageIncrement = 10; w14.Adjustment.StepIncrement = 1; w14.DrawValue = true; w14.ValuePos = ((Gtk.PositionType)(2)); w14.CanFocus = true; w14.Events = ((Gdk.EventMask)(0)); w14.Name = "hscale2"; bindings["hscale2"] = w14; w3.Add(w14); Gtk.Table.TableChild w15 = ((Gtk.Table.TableChild)(w3[w14])); w15.BottomAttach = ((uint)(2)); w15.LeftAttach = ((uint)(1)); w15.RightAttach = ((uint)(2)); w15.TopAttach = ((uint)(1)); w15.YOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.HScale w16 = new Gtk.HScale(null); w16.Digits = 0; w16.Adjustment.Upper = 10000; w16.Adjustment.PageIncrement = 10; w16.Adjustment.StepIncrement = 1; w16.DrawValue = true; w16.ValuePos = ((Gtk.PositionType)(2)); w16.CanFocus = true; w16.Events = ((Gdk.EventMask)(0)); w16.Name = "hscale3"; bindings["hscale3"] = w16; w3.Add(w16); Gtk.Table.TableChild w17 = ((Gtk.Table.TableChild)(w3[w16])); w17.BottomAttach = ((uint)(3)); w17.LeftAttach = ((uint)(1)); w17.RightAttach = ((uint)(2)); w17.TopAttach = ((uint)(2)); w17.YOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.HScale w18 = new Gtk.HScale(null); w18.Digits = 0; w18.Adjustment.Upper = 1000; w18.Adjustment.PageIncrement = 10; w18.Adjustment.StepIncrement = 1; w18.DrawValue = true; w18.ValuePos = ((Gtk.PositionType)(2)); w18.CanFocus = true; w18.Events = ((Gdk.EventMask)(0)); w18.Name = "hscale4"; bindings["hscale4"] = w18; w3.Add(w18); Gtk.Table.TableChild w19 = ((Gtk.Table.TableChild)(w3[w18])); w19.BottomAttach = ((uint)(4)); w19.LeftAttach = ((uint)(1)); w19.RightAttach = ((uint)(2)); w19.TopAttach = ((uint)(3)); w19.YOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.HScale w20 = new Gtk.HScale(null); w20.Digits = 0; w20.Adjustment.Upper = 300; w20.Adjustment.PageIncrement = 10; w20.Adjustment.StepIncrement = 1; w20.DrawValue = true; w20.Adjustment.Value = 60; w20.ValuePos = ((Gtk.PositionType)(2)); w20.CanFocus = true; w20.Events = ((Gdk.EventMask)(0)); w20.Name = "hscale5"; bindings["hscale5"] = w20; w3.Add(w20); Gtk.Table.TableChild w21 = ((Gtk.Table.TableChild)(w3[w20])); w21.BottomAttach = ((uint)(5)); w21.LeftAttach = ((uint)(1)); w21.RightAttach = ((uint)(2)); w21.TopAttach = ((uint)(4)); w21.YOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Label w22 = new Gtk.Label(); w22.LabelProp = "Size "; w22.Events = ((Gdk.EventMask)(0)); w22.Name = "label7"; bindings["label7"] = w22; w3.Add(w22); Gtk.Table.TableChild w23 = ((Gtk.Table.TableChild)(w3[w22])); w23.BottomAttach = ((uint)(5)); w23.TopAttach = ((uint)(4)); w23.YOptions = ((Gtk.AttachOptions)(4)); w23.XOptions = ((Gtk.AttachOptions)(4)); bindings["table1"] = w3; w2.Add(w3); Gtk.Box.BoxChild w24 = ((Gtk.Box.BoxChild)(w2[w3])); w24.Position = 0; w24.Expand = false; w24.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.Frame w25 = new Gtk.Frame(); w25.ShadowType = ((Gtk.ShadowType)(0)); w25.LabelXalign = 0F; w25.Events = ((Gdk.EventMask)(0)); w25.Name = "frame2"; // Container child frame2.Gtk.Container+ContainerChild Gtk.Alignment w26 = new Gtk.Alignment(0F, 0F, 1F, 1F); w26.LeftPadding = ((uint)(12)); w26.Events = ((Gdk.EventMask)(0)); w26.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.Table w27 = new Gtk.Table(((uint)(6)), ((uint)(3)), false); w27.Events = ((Gdk.EventMask)(0)); w27.Name = "table2"; // Container child table2.Gtk.Table+TableChild Gtk.Label w28 = new Gtk.Label(); w28.LabelProp = " Cell changes to 1 if:"; w28.Events = ((Gdk.EventMask)(0)); w28.Name = "label16"; bindings["label16"] = w28; w27.Add(w28); Gtk.Table.TableChild w29 = ((Gtk.Table.TableChild)(w27[w28])); w29.BottomAttach = ((uint)(4)); w29.LeftAttach = ((uint)(1)); w29.RightAttach = ((uint)(2)); w29.TopAttach = ((uint)(3)); w29.YOptions = ((Gtk.AttachOptions)(4)); w29.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.Label w30 = new Gtk.Label(); w30.LabelProp = " Cell changes to 0 if: "; w30.Events = ((Gdk.EventMask)(0)); w30.Name = "label2"; bindings["label2"] = w30; w27.Add(w30); Gtk.Table.TableChild w31 = ((Gtk.Table.TableChild)(w27[w30])); w31.LeftAttach = ((uint)(1)); w31.RightAttach = ((uint)(2)); w31.YOptions = ((Gtk.AttachOptions)(4)); w31.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.Label w32 = new Gtk.Label(); w32.LabelProp = "If neighborhood is >= "; w32.Events = ((Gdk.EventMask)(0)); w32.Name = "label15"; bindings["label15"] = w32; w27.Add(w32); Gtk.Table.TableChild w33 = ((Gtk.Table.TableChild)(w27[w32])); w33.BottomAttach = ((uint)(2)); w33.TopAttach = ((uint)(1)); w33.YOptions = ((Gtk.AttachOptions)(4)); w33.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.Label w34 = new Gtk.Label(); w34.LabelProp = "If neighborhood is >= "; w34.Events = ((Gdk.EventMask)(0)); w34.Name = "label11"; bindings["label11"] = w34; w27.Add(w34); Gtk.Table.TableChild w35 = ((Gtk.Table.TableChild)(w27[w34])); w35.BottomAttach = ((uint)(3)); w35.TopAttach = ((uint)(2)); w35.YOptions = ((Gtk.AttachOptions)(4)); w35.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.Label w36 = new Gtk.Label(); w36.LabelProp = "If neighborhood is >="; w36.Events = ((Gdk.EventMask)(0)); w36.Name = "label13"; bindings["label13"] = w36; w27.Add(w36); Gtk.Table.TableChild w37 = ((Gtk.Table.TableChild)(w27[w36])); w37.BottomAttach = ((uint)(5)); w37.TopAttach = ((uint)(4)); w37.YOptions = ((Gtk.AttachOptions)(4)); w37.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.Label w38 = new Gtk.Label(); w38.LabelProp = "If neighborhood is >="; w38.Events = ((Gdk.EventMask)(0)); w38.Name = "label14"; bindings["label14"] = w38; w27.Add(w38); Gtk.Table.TableChild w39 = ((Gtk.Table.TableChild)(w27[w38])); w39.BottomAttach = ((uint)(6)); w39.TopAttach = ((uint)(5)); w39.YOptions = ((Gtk.AttachOptions)(4)); w39.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.Label w40 = new Gtk.Label(); w40.LabelProp = "and habitat = 1; Or ..."; w40.Events = ((Gdk.EventMask)(0)); w40.Name = "label6"; bindings["label6"] = w40; w27.Add(w40); Gtk.Table.TableChild w41 = ((Gtk.Table.TableChild)(w27[w40])); w41.BottomAttach = ((uint)(2)); w41.LeftAttach = ((uint)(2)); w41.RightAttach = ((uint)(3)); w41.TopAttach = ((uint)(1)); w41.YOptions = ((Gtk.AttachOptions)(4)); w41.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.Label w42 = new Gtk.Label(); w42.LabelProp = "and habitat = 0; "; w42.Events = ((Gdk.EventMask)(0)); w42.Name = "label12"; bindings["label12"] = w42; w27.Add(w42); Gtk.Table.TableChild w43 = ((Gtk.Table.TableChild)(w27[w42])); w43.BottomAttach = ((uint)(3)); w43.LeftAttach = ((uint)(2)); w43.RightAttach = ((uint)(3)); w43.TopAttach = ((uint)(2)); w43.YOptions = ((Gtk.AttachOptions)(4)); w43.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.Label w44 = new Gtk.Label(); w44.LabelProp = "and habitat = 1; Or..."; w44.Events = ((Gdk.EventMask)(0)); w44.Name = "label9"; bindings["label9"] = w44; w27.Add(w44); Gtk.Table.TableChild w45 = ((Gtk.Table.TableChild)(w27[w44])); w45.BottomAttach = ((uint)(5)); w45.LeftAttach = ((uint)(2)); w45.RightAttach = ((uint)(3)); w45.TopAttach = ((uint)(4)); w45.YOptions = ((Gtk.AttachOptions)(4)); w45.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.Label w46 = new Gtk.Label(); w46.LabelProp = "and habitat = 0;"; w46.Events = ((Gdk.EventMask)(0)); w46.Name = "label10"; bindings["label10"] = w46; w27.Add(w46); Gtk.Table.TableChild w47 = ((Gtk.Table.TableChild)(w27[w46])); w47.BottomAttach = ((uint)(6)); w47.LeftAttach = ((uint)(2)); w47.RightAttach = ((uint)(3)); w47.TopAttach = ((uint)(5)); w47.YOptions = ((Gtk.AttachOptions)(4)); w47.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.HScale w48 = new Gtk.HScale(null); w48.Digits = 0; w48.Adjustment.Upper = 8; w48.Adjustment.PageIncrement = 1; w48.Adjustment.StepIncrement = 1; w48.DrawValue = true; w48.Adjustment.Value = 8; w48.ValuePos = ((Gtk.PositionType)(2)); w48.CanFocus = true; w48.Events = ((Gdk.EventMask)(0)); w48.Name = "hscale7"; bindings["hscale7"] = w48; w27.Add(w48); Gtk.Table.TableChild w49 = ((Gtk.Table.TableChild)(w27[w48])); w49.BottomAttach = ((uint)(2)); w49.LeftAttach = ((uint)(1)); w49.RightAttach = ((uint)(2)); w49.TopAttach = ((uint)(1)); w49.YOptions = ((Gtk.AttachOptions)(4)); w49.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.HScale w50 = new Gtk.HScale(null); w50.Digits = 0; w50.Adjustment.Upper = 8; w50.Adjustment.PageIncrement = 1; w50.Adjustment.StepIncrement = 1; w50.DrawValue = true; w50.ValuePos = ((Gtk.PositionType)(2)); w50.CanFocus = true; w50.Events = ((Gdk.EventMask)(0)); w50.Name = "hscale8"; bindings["hscale8"] = w50; w27.Add(w50); Gtk.Table.TableChild w51 = ((Gtk.Table.TableChild)(w27[w50])); w51.BottomAttach = ((uint)(3)); w51.LeftAttach = ((uint)(1)); w51.RightAttach = ((uint)(2)); w51.TopAttach = ((uint)(2)); w51.YOptions = ((Gtk.AttachOptions)(4)); w51.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.HScale w52 = new Gtk.HScale(null); w52.Digits = 0; w52.Adjustment.Upper = 8; w52.Adjustment.PageIncrement = 1; w52.Adjustment.StepIncrement = 1; w52.DrawValue = true; w52.Adjustment.Value = 8; w52.ValuePos = ((Gtk.PositionType)(2)); w52.CanFocus = true; w52.Events = ((Gdk.EventMask)(0)); w52.Name = "hscale9"; bindings["hscale9"] = w52; w27.Add(w52); Gtk.Table.TableChild w53 = ((Gtk.Table.TableChild)(w27[w52])); w53.BottomAttach = ((uint)(5)); w53.LeftAttach = ((uint)(1)); w53.RightAttach = ((uint)(2)); w53.TopAttach = ((uint)(4)); w53.YOptions = ((Gtk.AttachOptions)(4)); w53.XOptions = ((Gtk.AttachOptions)(4)); // Container child table2.Gtk.Table+TableChild Gtk.HScale w54 = new Gtk.HScale(null); w54.Digits = 0; w54.Adjustment.Upper = 8; w54.Adjustment.PageIncrement = 1; w54.Adjustment.StepIncrement = 1; w54.DrawValue = true; w54.Adjustment.Value = 3; w54.ValuePos = ((Gtk.PositionType)(2)); w54.CanFocus = true; w54.Events = ((Gdk.EventMask)(0)); w54.Name = "hscale10"; bindings["hscale10"] = w54; w27.Add(w54); Gtk.Table.TableChild w55 = ((Gtk.Table.TableChild)(w27[w54])); w55.BottomAttach = ((uint)(6)); w55.LeftAttach = ((uint)(1)); w55.RightAttach = ((uint)(2)); w55.TopAttach = ((uint)(5)); w55.YOptions = ((Gtk.AttachOptions)(4)); w55.XOptions = ((Gtk.AttachOptions)(4)); bindings["table2"] = w27; w26.Add(w27); bindings["GtkAlignment"] = w26; w25.Add(w26); Gtk.Label w58 = new Gtk.Label(); w58.LabelProp = "<b>Internal variables:</b>"; w58.UseMarkup = true; w58.Events = ((Gdk.EventMask)(256)); w58.Name = "GtkLabel1"; bindings["GtkLabel1"] = w58; w25.LabelWidget = w58; bindings["frame2"] = w25; w2.Add(w25); Gtk.Box.BoxChild w59 = ((Gtk.Box.BoxChild)(w2[w25])); w59.Position = 1; w59.Expand = false; w59.Fill = false; bindings["vbox1"] = w2; w1.Add(w2); Gtk.Box.BoxChild w60 = ((Gtk.Box.BoxChild)(w1[w2])); w60.Position = 0; w60.Expand = false; w60.Fill = false; bindings["dialog_VBox"] = w1; // Internal child sink.configuration.ActionArea Gtk.HButtonBox w61 = cobj.ActionArea; w61.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w61.Spacing = 6; w61.BorderWidth = ((uint)(5)); w61.Events = ((Gdk.EventMask)(256)); w61.Name = "sink.configuration_ActionArea"; // Container child sink.configuration_ActionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w62 = new Gtk.Button(); w62.CanFocus = true; w62.Events = ((Gdk.EventMask)(0)); w62.Name = "button1"; w62.CanDefault = true; w62.Label = "Save"; bindings["button1"] = w62; cobj.AddActionWidget(w62, 0); Gtk.ButtonBox.ButtonBoxChild w63 = ((Gtk.ButtonBox.ButtonBoxChild)(w61[w62])); w63.Expand = false; w63.Fill = false; bindings["sink.configuration_ActionArea"] = w61; cobj.DefaultWidth = 609; cobj.DefaultHeight = 484; bindings["sink.configuration"] = cobj; w4.Show(); w6.Show(); w8.Show(); w10.Show(); w12.Show(); w14.Show(); w16.Show(); w18.Show(); w20.Show(); w22.Show(); w3.Show(); w28.Show(); w30.Show(); w32.Show(); w34.Show(); w36.Show(); w38.Show(); w40.Show(); w42.Show(); w44.Show(); w46.Show(); w48.Show(); w50.Show(); w52.Show(); w54.Show(); w27.Show(); w26.Show(); w58.Show(); w25.Show(); w2.Show(); w1.Show(); w62.Show(); w61.Show(); cobj.Show(); w62.Released += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnButton1Released"))); } } } 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); } } }
// Page 1 // List of editing options public Gtk.Widget MakeEditingPane () { Gtk.Label label; Gtk.CheckButton check; Gtk.Alignment align; IPropertyEditorBool peditor, font_peditor, bullet_peditor; Gtk.VBox options_list = new Gtk.VBox (false, 12); options_list.BorderWidth = 12; options_list.Show (); // Spell checking... #if FIXED_GTKSPELL if (NoteSpellChecker.GtkSpellAvailable) { check = MakeCheckButton ( Catalog.GetString ("_Spell check while typing")); options_list.PackStart (check, false, false, 0); peditor = Services.Factory.CreatePropertyEditorToggleButton ( Preferences.ENABLE_SPELLCHECKING, check); SetupPropertyEditor (peditor); label = MakeTipLabel ( Catalog.GetString ("Misspellings will be underlined " + "in red, with correct spelling " + "suggestions shown in the context " + "menu.")); options_list.PackStart (label, false, false, 0); } #endif // WikiWords... check = MakeCheckButton (Catalog.GetString ("Highlight _WikiWords")); options_list.PackStart (check, false, false, 0); peditor = Services.Factory.CreatePropertyEditorToggleButton (Preferences.ENABLE_WIKIWORDS, check); SetupPropertyEditor (peditor); label = MakeTipLabel ( Catalog.GetString ("Enable this option to highlight " + "words <b>ThatLookLikeThis</b>. " + "Clicking the word will create a " + "note with that name.")); options_list.PackStart (label, false, false, 0); // Auto bulleted list check = MakeCheckButton (Catalog.GetString ("Enable auto-_bulleted lists")); options_list.PackStart (check, false, false, 0); bullet_peditor = Services.Factory.CreatePropertyEditorToggleButton (Preferences.ENABLE_AUTO_BULLETED_LISTS, check); SetupPropertyEditor (bullet_peditor); // Custom font... Gtk.HBox font_box = new Gtk.HBox (false, 0); check = MakeCheckButton (Catalog.GetString ("Use custom _font")); font_box.PackStart (check); font_peditor = Services.Factory.CreatePropertyEditorToggleButton (Preferences.ENABLE_CUSTOM_FONT, check); SetupPropertyEditor (font_peditor); font_button = MakeFontButton (); font_button.Sensitive = check.Active; font_box.PackStart (font_button); font_box.ShowAll (); options_list.PackStart (font_box, false, false, 0); font_peditor.AddGuard (font_button); // Note renaming bahvior Gtk.HBox rename_behavior_box = new Gtk.HBox (false, 0); label = MakeLabel (Catalog.GetString ("When renaming a linked note: ")); rename_behavior_box.PackStart (label); rename_behavior_combo = new Gtk.ComboBox (new string [] { Catalog.GetString ("Ask me what to do"), Catalog.GetString ("Never rename links"), Catalog.GetString ("Always rename links")}); int rename_behavior = (int) Preferences.Get (Preferences.NOTE_RENAME_BEHAVIOR); if (rename_behavior < 0 || rename_behavior > 2) { rename_behavior = 0; Preferences.Set (Preferences.NOTE_RENAME_BEHAVIOR, rename_behavior); } rename_behavior_combo.Active = rename_behavior; rename_behavior_combo.Changed += (o, e) => Preferences.Set (Preferences.NOTE_RENAME_BEHAVIOR, rename_behavior_combo.Active); rename_behavior_box.PackStart (rename_behavior_combo); rename_behavior_box.ShowAll (); options_list.PackStart (rename_behavior_box, false, false, 0); // New Note Template // Translators: This is 'New Note' Template, not New 'Note Template' label = MakeLabel (Catalog.GetString ("New Note Template")); options_list.PackStart (label, false, false, 0); label = MakeTipLabel ( Catalog.GetString ("Use the new note template to specify the text " + "that should be used when creating a new note.")); options_list.PackStart (label, false, false, 0); align = new Gtk.Alignment (0.5f, 0.5f, 0.4f, 1.0f); align.Show (); options_list.PackStart (align, false, false, 0); Gtk.Button open_template_button = new Gtk.Button (); open_template_button.Label = Catalog.GetString ("Open New Note Template"); open_template_button.Clicked += OpenTemplateButtonClicked; open_template_button.Show (); align.Add (open_template_button); return options_list; }
public static void Build(object obj, string id) { System.Collections.Hashtable bindings = new System.Collections.Hashtable(); if ((id == "SharpTranslator.ReversibleCombos")) { Gtk.Bin cobj = ((Gtk.Bin)(obj)); // Widget SharpTranslator.ReversibleCombos BinContainer.Attach(cobj); cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "SharpTranslator.ReversibleCombos"; // Container child SharpTranslator.ReversibleCombos.Gtk.Container+ContainerChild Gtk.HBox w1 = new Gtk.HBox(); w1.Spacing = 5; w1.BorderWidth = ((uint)(5)); w1.Events = ((Gdk.EventMask)(0)); w1.Name = "hbox1"; // Container child hbox1.Gtk.Box+BoxChild Gtk.Label w2 = new Gtk.Label(); w2.LabelProp = "Source:"; w2.Events = ((Gdk.EventMask)(0)); w2.Name = "labelSource"; bindings["labelSource"] = w2; w1.Add(w2); Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(w1[w2])); w3.Position = 0; w3.Expand = false; w3.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.ComboBox w4 = Gtk.ComboBox.NewText(); w4.Events = ((Gdk.EventMask)(0)); w4.Name = "comboSource"; bindings["comboSource"] = w4; w1.Add(w4); Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(w1[w4])); w5.Position = 1; w5.Expand = false; w5.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.VSeparator w6 = new Gtk.VSeparator(); w6.Events = ((Gdk.EventMask)(0)); w6.Name = "vseparator1"; bindings["vseparator1"] = w6; w1.Add(w6); Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w1[w6])); w7.Position = 2; w7.Expand = false; w7.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.CheckButton w8 = new Gtk.CheckButton(); w8.Label = "reverse"; w8.DrawIndicator = true; w8.BorderWidth = ((uint)(5)); w8.CanFocus = true; w8.Events = ((Gdk.EventMask)(0)); w8.Name = "checkbuttonReverse"; bindings["checkbuttonReverse"] = w8; w1.Add(w8); Gtk.Box.BoxChild w9 = ((Gtk.Box.BoxChild)(w1[w8])); w9.Position = 3; w9.Expand = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.VSeparator w10 = new Gtk.VSeparator(); w10.Events = ((Gdk.EventMask)(0)); w10.Name = "vseparator2"; bindings["vseparator2"] = w10; w1.Add(w10); Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(w1[w10])); w11.Position = 4; w11.Expand = false; w11.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.Label w12 = new Gtk.Label(); w12.LabelProp = "Target:"; w12.Events = ((Gdk.EventMask)(0)); w12.Name = "labelTarget"; bindings["labelTarget"] = w12; w1.Add(w12); Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(w1[w12])); w13.Position = 5; w13.Expand = false; w13.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.ComboBox w14 = Gtk.ComboBox.NewText(); w14.Events = ((Gdk.EventMask)(0)); w14.Name = "comboTarget"; bindings["comboTarget"] = w14; w1.Add(w14); Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(w1[w14])); w15.Position = 6; w15.Expand = false; w15.Fill = false; bindings["hbox1"] = w1; cobj.Add(w1); bindings["SharpTranslator.ReversibleCombos"] = cobj; w2.Show(); w4.Show(); w6.Show(); w8.Show(); w10.Show(); w12.Show(); w14.Show(); w1.Show(); cobj.Show(); } else { if ((id == "SharpTranslator.AboutDialog")) { Gtk.Dialog cobj = ((Gtk.Dialog)(obj)); // Widget SharpTranslator.AboutDialog cobj.Title = "AboutDialog"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.HasSeparator = false; cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "SharpTranslator.AboutDialog"; // Internal child SharpTranslator.AboutDialog.VBox Gtk.VBox w1 = cobj.VBox; w1.BorderWidth = ((uint)(2)); w1.Events = ((Gdk.EventMask)(256)); w1.Name = "dialog_VBox"; // Container child dialog_VBox.Gtk.Box+BoxChild Gtk.TextView w2 = new Gtk.TextView(); w2.Buffer.Text = "\n SharpTranslator\n\n Version 0.1.3 (October 2006)\n\n License: GPL\n\n Author: Carlos Ble <http://www.shidix.com/carlosble>\n\n English-Spanish dictionary was taken from i2e:\n (Alfredo Casademunt, Jose Luis Triviño)\n\n"; w2.CanFocus = true; w2.Events = ((Gdk.EventMask)(0)); w2.Name = "textview1"; bindings["textview1"] = w2; w1.Add(w2); Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(w1[w2])); w3.Position = 0; // Container child dialog_VBox.Gtk.Box+BoxChild Gtk.HSeparator w4 = new Gtk.HSeparator(); w4.Events = ((Gdk.EventMask)(0)); w4.Name = "hseparator1"; bindings["hseparator1"] = w4; w1.Add(w4); Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(w1[w4])); w5.Position = 1; w5.Expand = false; w5.Fill = false; bindings["dialog_VBox"] = w1; // Internal child SharpTranslator.AboutDialog.ActionArea Gtk.HButtonBox w6 = cobj.ActionArea; w6.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w6.Spacing = 10; w6.BorderWidth = ((uint)(5)); w6.Events = ((Gdk.EventMask)(256)); w6.Name = "SharpTranslator.AboutDialog_ActionArea"; // Container child SharpTranslator.AboutDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w7 = new Gtk.Button(); w7.CanFocus = true; w7.Events = ((Gdk.EventMask)(0)); w7.Name = "buttonClose"; w7.CanDefault = true; // Container child buttonClose.Gtk.Container+ContainerChild Gtk.Alignment w8 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w8.Events = ((Gdk.EventMask)(0)); w8.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w9 = new Gtk.HBox(); w9.Spacing = 2; w9.Events = ((Gdk.EventMask)(0)); w9.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w10 = new Gtk.Image(); w10.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-close", 16, 0); w10.Events = ((Gdk.EventMask)(0)); w10.Name = "image1"; bindings["image1"] = w10; w9.Add(w10); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w12 = new Gtk.Label(); w12.LabelProp = "Close"; w12.Events = ((Gdk.EventMask)(0)); w12.Name = "GtkLabel"; bindings["GtkLabel"] = w12; w9.Add(w12); bindings["GtkHBox"] = w9; w8.Add(w9); bindings["GtkAlignment"] = w8; w7.Add(w8); bindings["buttonClose"] = w7; cobj.AddActionWidget(w7, 0); Gtk.ButtonBox.ButtonBoxChild w16 = ((Gtk.ButtonBox.ButtonBoxChild)(w6[w7])); w16.Expand = false; w16.Fill = false; bindings["SharpTranslator.AboutDialog_ActionArea"] = w6; cobj.DefaultWidth = 487; cobj.DefaultHeight = 303; bindings["SharpTranslator.AboutDialog"] = cobj; w2.Show(); w4.Show(); w1.Show(); w10.Show(); w12.Show(); w9.Show(); w8.Show(); w7.Show(); w6.Show(); cobj.Show(); w7.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnClose"))); } else { if ((id == "SharpTranslator.LearnWindow")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget SharpTranslator.LearnWindow cobj.Title = "LearnWindow"; cobj.WindowPosition = ((Gtk.WindowPosition)(1)); cobj.Resizable = false; cobj.AllowGrow = false; cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "SharpTranslator.LearnWindow"; // Container child SharpTranslator.LearnWindow.Gtk.Container+ContainerChild Gtk.VBox w1 = new Gtk.VBox(); w1.Spacing = 5; w1.BorderWidth = ((uint)(3)); w1.Events = ((Gdk.EventMask)(0)); w1.Name = "vbox1"; // Container child vbox1.Gtk.Box+BoxChild Gtk.HBox w2 = new Gtk.HBox(); w2.BorderWidth = ((uint)(3)); w2.Events = ((Gdk.EventMask)(0)); w2.Name = "hbox5"; // Container child hbox5.Gtk.Box+BoxChild Gtk.Label w3 = new Gtk.Label(); w3.LabelProp = "Type of item:"; w3.Events = ((Gdk.EventMask)(0)); w3.Name = "label1"; bindings["label1"] = w3; w2.Add(w3); Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w2[w3])); w4.Position = 0; w4.Expand = false; w4.Fill = false; // Container child hbox5.Gtk.Box+BoxChild Gtk.HBox w5 = new Gtk.HBox(); w5.Events = ((Gdk.EventMask)(0)); w5.Name = "hbox4"; // Container child hbox4.Gtk.Box+BoxChild Gtk.CheckButton w6 = new Gtk.CheckButton(); w6.Label = "Word"; w6.Active = true; w6.DrawIndicator = true; w6.CanFocus = true; w6.Events = ((Gdk.EventMask)(0)); w6.Name = "checkbWord"; bindings["checkbWord"] = w6; w5.Add(w6); Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w5[w6])); w7.Position = 0; // Container child hbox4.Gtk.Box+BoxChild Gtk.CheckButton w8 = new Gtk.CheckButton(); w8.Label = "Expression"; w8.DrawIndicator = true; w8.CanFocus = true; w8.Events = ((Gdk.EventMask)(0)); w8.Name = "checkbExpression"; bindings["checkbExpression"] = w8; w5.Add(w8); Gtk.Box.BoxChild w9 = ((Gtk.Box.BoxChild)(w5[w8])); w9.Position = 1; bindings["hbox4"] = w5; w2.Add(w5); Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(w2[w5])); w10.Position = 1; w10.Expand = false; bindings["hbox5"] = w2; w1.Add(w2); Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(w1[w2])); w11.Position = 0; w11.Expand = false; w11.Fill = false; // Container child vbox1.Gtk.Box+BoxChild SharpTranslator.ReversibleCombos w12 = new SharpTranslator.ReversibleCombos(); w12.Events = ((Gdk.EventMask)(256)); w12.Name = "rCombos"; bindings["rCombos"] = w12; w1.Add(w12); Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(w1[w12])); w13.Position = 1; w13.Expand = false; w13.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.HBox w14 = new Gtk.HBox(); w14.Spacing = 5; w14.BorderWidth = ((uint)(3)); w14.Events = ((Gdk.EventMask)(0)); w14.Name = "hbox3"; // Container child hbox3.Gtk.Box+BoxChild Gtk.Label w15 = new Gtk.Label(); w15.LabelProp = "Text:"; w15.Events = ((Gdk.EventMask)(0)); w15.Name = "labelText"; bindings["labelText"] = w15; w14.Add(w15); Gtk.Box.BoxChild w16 = ((Gtk.Box.BoxChild)(w14[w15])); w16.Position = 0; w16.Expand = false; w16.Fill = false; // Container child hbox3.Gtk.Box+BoxChild Gtk.Entry w17 = new Gtk.Entry(); w17.IsEditable = true; w17.InvisibleChar = '●'; w17.CanFocus = true; w17.Events = ((Gdk.EventMask)(0)); w17.Name = "entryText"; bindings["entryText"] = w17; w14.Add(w17); Gtk.Box.BoxChild w18 = ((Gtk.Box.BoxChild)(w14[w17])); w18.Position = 1; // Container child hbox3.Gtk.Box+BoxChild Gtk.Label w19 = new Gtk.Label(); w19.LabelProp = "Translation:"; w19.Events = ((Gdk.EventMask)(0)); w19.Name = "label3"; bindings["label3"] = w19; w14.Add(w19); Gtk.Box.BoxChild w20 = ((Gtk.Box.BoxChild)(w14[w19])); w20.Position = 2; w20.Expand = false; w20.Fill = false; // Container child hbox3.Gtk.Box+BoxChild Gtk.Entry w21 = new Gtk.Entry(); w21.IsEditable = true; w21.InvisibleChar = '●'; w21.CanFocus = true; w21.Events = ((Gdk.EventMask)(0)); w21.Name = "entryTranslation"; bindings["entryTranslation"] = w21; w14.Add(w21); Gtk.Box.BoxChild w22 = ((Gtk.Box.BoxChild)(w14[w21])); w22.Position = 3; bindings["hbox3"] = w14; w1.Add(w14); Gtk.Box.BoxChild w23 = ((Gtk.Box.BoxChild)(w1[w14])); w23.Position = 2; w23.Expand = false; w23.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.HSeparator w24 = new Gtk.HSeparator(); w24.Events = ((Gdk.EventMask)(0)); w24.Name = "hseparator1"; bindings["hseparator1"] = w24; w1.Add(w24); Gtk.Box.BoxChild w25 = ((Gtk.Box.BoxChild)(w1[w24])); w25.Position = 3; w25.Expand = false; w25.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.HButtonBox w26 = new Gtk.HButtonBox(); w26.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w26.Spacing = 3; w26.BorderWidth = ((uint)(3)); w26.Events = ((Gdk.EventMask)(0)); w26.Name = "hbuttonbox1"; // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w27 = new Gtk.Button(); w27.CanFocus = true; w27.Events = ((Gdk.EventMask)(0)); w27.Name = "buttonCancel"; // Container child buttonCancel.Gtk.Container+ContainerChild Gtk.Alignment w28 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w28.Events = ((Gdk.EventMask)(0)); w28.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w29 = new Gtk.HBox(); w29.Spacing = 2; w29.Events = ((Gdk.EventMask)(0)); w29.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w30 = new Gtk.Image(); w30.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-cancel", 16, 0); w30.Events = ((Gdk.EventMask)(0)); w30.Name = "image2"; bindings["image2"] = w30; w29.Add(w30); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w32 = new Gtk.Label(); w32.LabelProp = "Cancel"; w32.Events = ((Gdk.EventMask)(0)); w32.Name = "GtkLabel"; bindings["GtkLabel"] = w32; w29.Add(w32); bindings["GtkHBox"] = w29; w28.Add(w29); bindings["GtkAlignment"] = w28; w27.Add(w28); bindings["buttonCancel"] = w27; w26.Add(w27); Gtk.ButtonBox.ButtonBoxChild w36 = ((Gtk.ButtonBox.ButtonBoxChild)(w26[w27])); w36.Expand = false; w36.Fill = false; // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w37 = new Gtk.Button(); w37.CanFocus = true; w37.Events = ((Gdk.EventMask)(0)); w37.Name = "buttonAccept"; // Container child buttonAccept.Gtk.Container+ContainerChild Gtk.Alignment w38 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w38.Events = ((Gdk.EventMask)(0)); w38.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w39 = new Gtk.HBox(); w39.Spacing = 2; w39.Events = ((Gdk.EventMask)(0)); w39.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w40 = new Gtk.Image(); w40.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-ok", 16, 0); w40.Events = ((Gdk.EventMask)(0)); w40.Name = "image3"; bindings["image3"] = w40; w39.Add(w40); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w42 = new Gtk.Label(); w42.LabelProp = "Accept"; w42.Events = ((Gdk.EventMask)(0)); w42.Name = "GtkLabel"; bindings["GtkLabel"] = w42; w39.Add(w42); bindings["GtkHBox"] = w39; w38.Add(w39); bindings["GtkAlignment"] = w38; w37.Add(w38); bindings["buttonAccept"] = w37; w26.Add(w37); Gtk.ButtonBox.ButtonBoxChild w46 = ((Gtk.ButtonBox.ButtonBoxChild)(w26[w37])); w46.Position = 1; w46.Expand = false; w46.Fill = false; bindings["hbuttonbox1"] = w26; w1.Add(w26); Gtk.Box.BoxChild w47 = ((Gtk.Box.BoxChild)(w1[w26])); w47.Position = 4; w47.Expand = false; w47.Fill = false; bindings["vbox1"] = w1; cobj.Add(w1); cobj.DefaultWidth = 586; cobj.DefaultHeight = 194; bindings["SharpTranslator.LearnWindow"] = cobj; w3.Show(); w6.Show(); w8.Show(); w5.Show(); w2.Show(); w12.Show(); w15.Show(); w17.Show(); w19.Show(); w21.Show(); w14.Show(); w24.Show(); w30.Show(); w32.Show(); w29.Show(); w28.Show(); w27.Show(); w40.Show(); w42.Show(); w39.Show(); w38.Show(); w37.Show(); w26.Show(); w1.Show(); cobj.Show(); cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnClose"))); w37.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnAccept"))); } else { if ((id == "SharpTranslator.MainWindow")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget SharpTranslator.MainWindow cobj.Title = "SharpTranslator"; Gtk.UIManager w1 = new Gtk.UIManager(); Gtk.ActionGroup w2 = new Gtk.ActionGroup("Default"); Gtk.Action w3 = new Gtk.Action("File", "File", null, null); w3.ShortLabel = "Archivo"; bindings["File"] = w3; w2.Add(w3, null); Gtk.Action w4 = new Gtk.Action("Edit", "Edit", null, null); w4.ShortLabel = "Editar"; bindings["Edit"] = w4; w2.Add(w4, null); Gtk.Action w5 = new Gtk.Action("Learn", "Learn", null, "gtk-new"); w5.ShortLabel = "Learn"; bindings["Learn"] = w5; w2.Add(w5, null); Gtk.Action w6 = new Gtk.Action("floppy", null, null, "gtk-floppy"); bindings["floppy"] = w6; w2.Add(w6, null); Gtk.Action w7 = new Gtk.Action("LearnWords", "Learn words", null, "gtk-new"); w7.ShortLabel = "Learn "; bindings["LearnWords"] = w7; w2.Add(w7, null); Gtk.Action w8 = new Gtk.Action("AddLanguage", "Add Language", null, "gtk-add"); w8.ShortLabel = "Exit"; bindings["AddLanguage"] = w8; w2.Add(w8, null); Gtk.Action w9 = new Gtk.Action("Cut", "Cut", null, "gtk-cut"); w9.ShortLabel = "Cut"; bindings["Cut"] = w9; w2.Add(w9, null); Gtk.Action w10 = new Gtk.Action("Copy", "Copy", null, "gtk-copy"); w10.ShortLabel = "Copy"; bindings["Copy"] = w10; w2.Add(w10, null); Gtk.Action w11 = new Gtk.Action("Paste", "Paste", null, "gtk-paste"); w11.ShortLabel = "Paste"; bindings["Paste"] = w11; w2.Add(w11, null); Gtk.Action w12 = new Gtk.Action("Help", "Help", null, null); w12.ShortLabel = "Help"; bindings["Help"] = w12; w2.Add(w12, null); Gtk.Action w13 = new Gtk.Action("About", "About", null, "gnome-stock-about"); w13.ShortLabel = "About"; bindings["About"] = w13; w2.Add(w13, null); Gtk.Action w14 = new Gtk.Action("ImportDictionary", "Import Dictionary", null, "gnome-stock-book-blue"); w14.ShortLabel = "Import Dictionary"; bindings["ImportDictionary"] = w14; w2.Add(w14, null); Gtk.Action w15 = new Gtk.Action("Preferences", "Preferences", null, "gtk-preferences"); w15.ShortLabel = "Preferences"; bindings["Preferences"] = w15; w2.Add(w15, null); Gtk.Action w16 = new Gtk.Action("Close", "Close", null, "gtk-close"); w16.ShortLabel = "Close"; bindings["Close"] = w16; w2.Add(w16, null); w1.InsertActionGroup(w2, 0); cobj.AddAccelGroup(w1.AccelGroup); cobj.Icon = Gtk.IconTheme.Default.LoadIcon("gtk-properties", 16, 0); cobj.WindowPosition = ((Gtk.WindowPosition)(1)); cobj.DefaultWidth = 60; cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "SharpTranslator.MainWindow"; // Container child SharpTranslator.MainWindow.Gtk.Container+ContainerChild Gtk.VBox w17 = new Gtk.VBox(); w17.Events = ((Gdk.EventMask)(0)); w17.Name = "vbox1"; // Container child vbox1.Gtk.Box+BoxChild w1.AddUiFromString("<ui><menubar name='menubar1'><menu action='File'><menuitem action='LearnWords'/><menuitem action='AddLanguage'/><menuitem action='ImportDictionary'/><menuitem action='Close'/></menu><menu action='Edit'><menuitem action='Cut'/><menuitem action='Copy'/><menuitem action='Paste'/><menuitem action='Preferences'/></menu><menu action='Help'><menuitem action='About'/></menu></menubar></ui>"); Gtk.MenuBar w18 = ((Gtk.MenuBar)(w1.GetWidget("/menubar1"))); w18.Events = ((Gdk.EventMask)(0)); w18.Name = "menubar1"; bindings["menubar1"] = w18; w17.Add(w18); Gtk.Box.BoxChild w19 = ((Gtk.Box.BoxChild)(w17[w18])); w19.Position = 0; w19.Expand = false; w19.Fill = false; // Container child vbox1.Gtk.Box+BoxChild w1.AddUiFromString("<ui><toolbar name='toolbar1'><toolitem action='Learn'/></toolbar></ui>"); Gtk.Toolbar w20 = ((Gtk.Toolbar)(w1.GetWidget("/toolbar1"))); w20.ShowArrow = false; w20.Tooltips = false; w20.ToolbarStyle = ((Gtk.ToolbarStyle)(2)); w20.IconSize = ((Gtk.IconSize)(2)); w20.Events = ((Gdk.EventMask)(0)); w20.Name = "toolbar1"; bindings["toolbar1"] = w20; w17.Add(w20); Gtk.Box.BoxChild w21 = ((Gtk.Box.BoxChild)(w17[w20])); w21.Position = 1; w21.Expand = false; w21.Fill = false; // Container child vbox1.Gtk.Box+BoxChild SharpTranslator.ReversibleCombos w22 = new SharpTranslator.ReversibleCombos(); w22.Events = ((Gdk.EventMask)(256)); w22.Name = "rCombos"; bindings["rCombos"] = w22; w17.Add(w22); Gtk.Box.BoxChild w23 = ((Gtk.Box.BoxChild)(w17[w22])); w23.Position = 2; w23.Expand = false; w23.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.ScrolledWindow w24 = new Gtk.ScrolledWindow(); w24.VscrollbarPolicy = ((Gtk.PolicyType)(1)); w24.HscrollbarPolicy = ((Gtk.PolicyType)(1)); w24.CanFocus = true; w24.Events = ((Gdk.EventMask)(0)); w24.Name = "scrolledwindow1"; // Container child scrolledwindow1.Gtk.Container+ContainerChild Gtk.TreeView w25 = new Gtk.TreeView(); w25.CanFocus = true; w25.Events = ((Gdk.EventMask)(0)); w25.Name = "treeviewResults"; bindings["treeviewResults"] = w25; w24.Add(w25); bindings["scrolledwindow1"] = w24; w17.Add(w24); Gtk.Box.BoxChild w27 = ((Gtk.Box.BoxChild)(w17[w24])); w27.Position = 3; // Container child vbox1.Gtk.Box+BoxChild Gtk.HBox w28 = new Gtk.HBox(); w28.Spacing = 5; w28.BorderWidth = ((uint)(3)); w28.Events = ((Gdk.EventMask)(0)); w28.Name = "hbox3"; // Container child hbox3.Gtk.Box+BoxChild Gtk.Label w29 = new Gtk.Label(); w29.LabelProp = "Word:"; w29.Events = ((Gdk.EventMask)(0)); w29.Name = "labelWord"; bindings["labelWord"] = w29; w28.Add(w29); Gtk.Box.BoxChild w30 = ((Gtk.Box.BoxChild)(w28[w29])); w30.Position = 0; w30.Expand = false; w30.Fill = false; // Container child hbox3.Gtk.Box+BoxChild Gtk.Entry w31 = new Gtk.Entry(); w31.IsEditable = true; w31.InvisibleChar = '●'; w31.CanFocus = true; w31.Events = ((Gdk.EventMask)(0)); w31.Name = "entryKeyword"; w31.CanDefault = true; bindings["entryKeyword"] = w31; w28.Add(w31); Gtk.Box.BoxChild w32 = ((Gtk.Box.BoxChild)(w28[w31])); w32.Position = 1; // Container child hbox3.Gtk.Box+BoxChild Gtk.Button w33 = new Gtk.Button(); Gtk.Tooltips w34 = new Gtk.Tooltips(); w34.SetTip(w33, "Search keyword", "Search keyword"); w33.CanFocus = true; w33.Events = ((Gdk.EventMask)(0)); w33.Name = "buttonSearch"; // Container child buttonSearch.Gtk.Container+ContainerChild Gtk.Alignment w35 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w35.Events = ((Gdk.EventMask)(0)); w35.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w36 = new Gtk.HBox(); w36.Spacing = 2; w36.Events = ((Gdk.EventMask)(0)); w36.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w37 = new Gtk.Image(); w37.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-find", 16, 0); w37.Events = ((Gdk.EventMask)(0)); w37.Name = "image4"; bindings["image4"] = w37; w36.Add(w37); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w39 = new Gtk.Label(); w39.LabelProp = "Search"; w39.Events = ((Gdk.EventMask)(0)); w39.Name = "GtkLabel"; bindings["GtkLabel"] = w39; w36.Add(w39); bindings["GtkHBox"] = w36; w35.Add(w36); bindings["GtkAlignment"] = w35; w33.Add(w35); bindings["buttonSearch"] = w33; w28.Add(w33); Gtk.Box.BoxChild w43 = ((Gtk.Box.BoxChild)(w28[w33])); w43.Position = 2; w43.Expand = false; w43.Fill = false; bindings["hbox3"] = w28; w17.Add(w28); Gtk.Box.BoxChild w44 = ((Gtk.Box.BoxChild)(w17[w28])); w44.Position = 4; w44.Expand = false; w44.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.HBox w45 = new Gtk.HBox(); w45.Spacing = 5; w45.BorderWidth = ((uint)(3)); w45.Events = ((Gdk.EventMask)(0)); w45.Name = "hbox4"; // Container child hbox4.Gtk.Box+BoxChild Gtk.Label w46 = new Gtk.Label(); w46.LabelProp = "Expression:"; w46.Events = ((Gdk.EventMask)(0)); w46.Name = "labelExpression"; bindings["labelExpression"] = w46; w45.Add(w46); Gtk.Box.BoxChild w47 = ((Gtk.Box.BoxChild)(w45[w46])); w47.Position = 0; w47.Expand = false; w47.Fill = false; // Container child hbox4.Gtk.Box+BoxChild Gtk.Entry w48 = new Gtk.Entry(); w48.IsEditable = true; w48.InvisibleChar = '●'; w48.CanFocus = true; w48.Events = ((Gdk.EventMask)(0)); w48.Name = "entryExpression"; bindings["entryExpression"] = w48; w45.Add(w48); Gtk.Box.BoxChild w49 = ((Gtk.Box.BoxChild)(w45[w48])); w49.Position = 1; // Container child hbox4.Gtk.Box+BoxChild Gtk.Button w50 = new Gtk.Button(); w34.SetTip(w50, "Search keyword", "Search keyword"); w50.CanFocus = true; w50.Events = ((Gdk.EventMask)(0)); w50.Name = "buttonSearchExpression"; // Container child buttonSearchExpression.Gtk.Container+ContainerChild Gtk.Alignment w51 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w51.Events = ((Gdk.EventMask)(0)); w51.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w52 = new Gtk.HBox(); w52.Spacing = 2; w52.Events = ((Gdk.EventMask)(0)); w52.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w53 = new Gtk.Image(); w53.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-find", 16, 0); w53.Events = ((Gdk.EventMask)(0)); w53.Name = "image5"; bindings["image5"] = w53; w52.Add(w53); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w55 = new Gtk.Label(); w55.LabelProp = "Search"; w55.Events = ((Gdk.EventMask)(0)); w55.Name = "GtkLabel"; bindings["GtkLabel"] = w55; w52.Add(w55); bindings["GtkHBox"] = w52; w51.Add(w52); bindings["GtkAlignment"] = w51; w50.Add(w51); bindings["buttonSearchExpression"] = w50; w45.Add(w50); Gtk.Box.BoxChild w59 = ((Gtk.Box.BoxChild)(w45[w50])); w59.Position = 2; w59.Expand = false; w59.Fill = false; // Container child hbox4.Gtk.Box+BoxChild Gtk.Button w60 = new Gtk.Button(); w34.SetTip(w60, "Search keyword", "Search keyword"); w60.CanFocus = true; w60.Events = ((Gdk.EventMask)(0)); w60.Name = "buttonShowAll"; w60.Label = "Show All"; bindings["buttonShowAll"] = w60; w45.Add(w60); Gtk.Box.BoxChild w61 = ((Gtk.Box.BoxChild)(w45[w60])); w61.Position = 3; w61.Expand = false; w61.Fill = false; bindings["hbox4"] = w45; w17.Add(w45); Gtk.Box.BoxChild w62 = ((Gtk.Box.BoxChild)(w17[w45])); w62.Position = 5; w62.Expand = false; w62.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.HSeparator w63 = new Gtk.HSeparator(); w63.Events = ((Gdk.EventMask)(0)); w63.Name = "hseparator1"; bindings["hseparator1"] = w63; w17.Add(w63); Gtk.Box.BoxChild w64 = ((Gtk.Box.BoxChild)(w17[w63])); w64.Position = 6; w64.Expand = false; w64.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.HButtonBox w65 = new Gtk.HButtonBox(); w65.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w65.BorderWidth = ((uint)(3)); w65.Events = ((Gdk.EventMask)(0)); w65.Name = "hbuttonbox1"; // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w66 = new Gtk.Button(); w66.CanFocus = true; w66.Events = ((Gdk.EventMask)(0)); w66.Name = "buttonClose"; // Container child buttonClose.Gtk.Container+ContainerChild Gtk.Alignment w67 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w67.Events = ((Gdk.EventMask)(0)); w67.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w68 = new Gtk.HBox(); w68.Spacing = 2; w68.Events = ((Gdk.EventMask)(0)); w68.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w69 = new Gtk.Image(); w69.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-close", 16, 0); w69.Events = ((Gdk.EventMask)(0)); w69.Name = "image6"; bindings["image6"] = w69; w68.Add(w69); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w71 = new Gtk.Label(); w71.LabelProp = "Close"; w71.Events = ((Gdk.EventMask)(0)); w71.Name = "GtkLabel"; bindings["GtkLabel"] = w71; w68.Add(w71); bindings["GtkHBox"] = w68; w67.Add(w68); bindings["GtkAlignment"] = w67; w66.Add(w67); bindings["buttonClose"] = w66; w65.Add(w66); Gtk.ButtonBox.ButtonBoxChild w75 = ((Gtk.ButtonBox.ButtonBoxChild)(w65[w66])); w75.Expand = false; w75.Fill = false; bindings["hbuttonbox1"] = w65; w17.Add(w65); Gtk.Box.BoxChild w76 = ((Gtk.Box.BoxChild)(w17[w65])); w76.Position = 7; w76.Expand = false; w76.Fill = false; bindings["vbox1"] = w17; cobj.Add(w17); cobj.DefaultHeight = 480; bindings["SharpTranslator.MainWindow"] = cobj; w18.Show(); w20.Show(); w22.Show(); w25.Show(); w24.Show(); w29.Show(); w31.Show(); w37.Show(); w39.Show(); w36.Show(); w35.Show(); w33.Show(); w28.Show(); w46.Show(); w48.Show(); w53.Show(); w55.Show(); w52.Show(); w51.Show(); w50.Show(); w60.Show(); w45.Show(); w63.Show(); w69.Show(); w71.Show(); w68.Show(); w67.Show(); w66.Show(); w65.Show(); w17.Show(); cobj.Show(); cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent"))); w5.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnLearn"))); w7.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnLearn"))); w13.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnAbout"))); w16.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnClose"))); w31.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnSearch"))); w33.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnSearch"))); w48.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnSearchExpression"))); w50.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnSearchExpression"))); w60.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnShowAll"))); w66.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnClose"))); } } } } System.Reflection.FieldInfo[] fields = obj.GetType().GetFields(((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) | System.Reflection.BindingFlags.Instance)); for (int n = 0; (n < fields.Length); n = (n + 1)) { System.Reflection.FieldInfo field = fields[n]; object widget = bindings[field.Name]; if (((widget != null) && field.FieldType.IsInstanceOfType(widget))) { field.SetValue(obj, widget); } } }
Gtk.Button MakeFontButton () { Gtk.HBox font_box = new Gtk.HBox (false, 0); font_box.Show (); font_face = new Gtk.Label (null); font_face.UseMarkup = true; font_face.Show (); font_box.PackStart (font_face, true, true, 0); Gtk.VSeparator sep = new Gtk.VSeparator (); sep.Show (); font_box.PackStart (sep, false, false, 0); font_size = new Gtk.Label (null); font_size.Xpad = 4; font_size.Show (); font_box.PackStart (font_size, false, false, 0); Gtk.Button button = new Gtk.Button (); button.Clicked += OnFontButtonClicked; button.Add (font_box); button.Show (); string font_desc = (string) Preferences.Get (Preferences.CUSTOM_FONT_FACE); UpdateFontButton (font_desc); return button; }
public Gtk.Button AddCustomButton (string message, Gtk.ResponseType response, bool isDefault) { Gtk.Button button = new Gtk.Button (); button.Label = message; button.CanDefault = true; button.Show (); AddButton (button, response, isDefault); return button; }
public Gtk.Widget MakeSyncPane () { Gtk.VBox vbox = new Gtk.VBox (false, 0); vbox.Spacing = 4; vbox.BorderWidth = 8; Gtk.HBox hbox = new Gtk.HBox (false, 4); Gtk.Label label = new Gtk.Label (Catalog.GetString ("Ser_vice:")); label.Xalign = 0; label.Show (); hbox.PackStart (label, false, false, 0); // Populate the store with all the available SyncServiceAddins syncAddinStore = new Gtk.ListStore (typeof (SyncServiceAddin)); syncAddinIters = new Dictionary<string,Gtk.TreeIter> (); SyncServiceAddin [] addins = Tomboy.DefaultNoteManager.AddinManager.GetSyncServiceAddins (); Array.Sort (addins, CompareSyncAddinsByName); foreach (SyncServiceAddin addin in addins) { Gtk.TreeIter iter = syncAddinStore.Append (); syncAddinStore.SetValue (iter, 0, addin); syncAddinIters [addin.Id] = iter; } syncAddinCombo = new Gtk.ComboBox (syncAddinStore); label.MnemonicWidget = syncAddinCombo; Gtk.CellRendererText crt = new Gtk.CellRendererText (); syncAddinCombo.PackStart (crt, true); syncAddinCombo.SetCellDataFunc (crt, new Gtk.CellLayoutDataFunc (ComboBoxTextDataFunc)); // Read from Preferences which service is configured and select it // by default. Otherwise, just select the first one in the list. string addin_id = Preferences.Get ( Preferences.SYNC_SELECTED_SERVICE_ADDIN) as String; Gtk.TreeIter active_iter; if (addin_id != null && syncAddinIters.ContainsKey (addin_id)) { active_iter = syncAddinIters [addin_id]; syncAddinCombo.SetActiveIter (active_iter); } else { if (syncAddinStore.GetIterFirst (out active_iter) == true) { syncAddinCombo.SetActiveIter (active_iter); } } syncAddinCombo.Changed += OnSyncAddinComboChanged; syncAddinCombo.Show (); hbox.PackStart (syncAddinCombo, true, true, 0); hbox.Show (); vbox.PackStart (hbox, false, false, 0); // Get the preferences GUI for the Sync Addin if (active_iter.Stamp != Gtk.TreeIter.Zero.Stamp) selectedSyncAddin = syncAddinStore.GetValue (active_iter, 0) as SyncServiceAddin; if (selectedSyncAddin != null) syncAddinPrefsWidget = selectedSyncAddin.CreatePreferencesControl (OnSyncAddinPrefsChanged); if (syncAddinPrefsWidget == null) { Gtk.Label l = new Gtk.Label (Catalog.GetString ("Not configurable")); l.Yalign = 0.5f; l.Yalign = 0.5f; syncAddinPrefsWidget = l; } if (syncAddinPrefsWidget != null && addin_id != null && syncAddinIters.ContainsKey (addin_id) && selectedSyncAddin.IsConfigured) syncAddinPrefsWidget.Sensitive = false; syncAddinPrefsWidget.Show (); syncAddinPrefsContainer = new Gtk.VBox (false, 0); syncAddinPrefsContainer.PackStart (syncAddinPrefsWidget, false, false, 0); syncAddinPrefsContainer.Show (); vbox.PackStart (syncAddinPrefsContainer, true, true, 10); // Autosync preference int timeout = (int) Preferences.Get (Preferences.SYNC_AUTOSYNC_TIMEOUT); if (timeout > 0 && timeout < 5) { timeout = 5; Preferences.Set (Preferences.SYNC_AUTOSYNC_TIMEOUT, 5); } Gtk.HBox autosyncBox = new Gtk.HBox (false, 5); // Translators: This is and the next string go together. // Together they look like "Automatically Sync in Background Every [_] Minutes", // where "[_]" is a GtkSpinButton. autosyncCheck = new Gtk.CheckButton (Catalog.GetString ("Automaticall_y Sync in Background Every")); autosyncSpinner = new Gtk.SpinButton (5, 1000, 1); autosyncSpinner.Value = timeout >= 5 ? timeout : 10; Gtk.Label autosyncExtraText = // Translators: See above comment for details on // this string. new Gtk.Label (Catalog.GetString ("Minutes")); autosyncCheck.Active = autosyncSpinner.Sensitive = timeout >= 5; EventHandler updateTimeoutPref = (o, e) => { Preferences.Set (Preferences.SYNC_AUTOSYNC_TIMEOUT, autosyncCheck.Active ? (int) autosyncSpinner.Value : -1); }; autosyncCheck.Toggled += (o, e) => { autosyncSpinner.Sensitive = autosyncCheck.Active; updateTimeoutPref (o, e); }; autosyncSpinner.ValueChanged += updateTimeoutPref; autosyncBox.PackStart (autosyncCheck); autosyncBox.PackStart (autosyncSpinner); autosyncBox.PackStart (autosyncExtraText); vbox.PackStart (autosyncBox, false, true, 0); Gtk.HButtonBox bbox = new Gtk.HButtonBox (); bbox.Spacing = 4; bbox.LayoutStyle = Gtk.ButtonBoxStyle.End; // "Advanced..." button to bring up extra sync config dialog Gtk.Button advancedConfigButton = new Gtk.Button (Catalog.GetString ("_Advanced...")); advancedConfigButton.Clicked += OnAdvancedSyncConfigButton; advancedConfigButton.Show (); bbox.PackStart (advancedConfigButton, false, false, 0); bbox.SetChildSecondary (advancedConfigButton, true); resetSyncAddinButton = new Gtk.Button (Gtk.Stock.Clear); resetSyncAddinButton.Clicked += OnResetSyncAddinButton; resetSyncAddinButton.Sensitive = (selectedSyncAddin != null && addin_id == selectedSyncAddin.Id && selectedSyncAddin.IsConfigured); resetSyncAddinButton.Show (); bbox.PackStart (resetSyncAddinButton, false, false, 0); // TODO: Tabbing should go directly from sync prefs widget to here // TODO: Consider connecting to "Enter" pressed in sync prefs widget saveSyncAddinButton = new Gtk.Button (Gtk.Stock.Save); saveSyncAddinButton.Clicked += OnSaveSyncAddinButton; saveSyncAddinButton.Sensitive = (selectedSyncAddin != null && (addin_id != selectedSyncAddin.Id || !selectedSyncAddin.IsConfigured)); saveSyncAddinButton.Show (); bbox.PackStart (saveSyncAddinButton, false, false, 0); syncAddinCombo.Sensitive = (selectedSyncAddin == null || addin_id != selectedSyncAddin.Id || !selectedSyncAddin.IsConfigured); bbox.Show (); vbox.PackStart (bbox, false, false, 0); vbox.ShowAll (); return vbox; }
public void fill() { Gtk.Button cancel = new Gtk.Button("Cancel scan"); Gtk.VSeparator sep = new Gtk.VSeparator(); cancel.Clicked += delegate(object sender, EventArgs args) { _fill_canceled = true; }; bar.Add(sep); sep.Show(); bar.Add(cancel); cancel.Show(); bar.Show(); getSheets().Clear(); basedir = MySource.getCueSheetDir(); Hyena.Log.Information("Base directory=" + basedir); if (basedir != null) { _fill_ready = false; _fill_count = 0; _fill_dir_count = 0; _fill_canceled = false; _fill_cues.Clear(); _fill_dirs.Clear(); fill(basedir); GLib.Timeout.Add(500, delegate() { if (_fill_ready || _fill_canceled) { try { Hyena.Log.Information("Reload albums"); MySource.getAlbumModel().Reload(); Hyena.Log.Information(MySource.getAlbumModel().Count.ToString()); Hyena.Log.Information("Reload artists"); MySource.getArtistModel().Reload(); Hyena.Log.Information(MySource.getArtistModel().Count.ToString()); Hyena.Log.Information("Reload composers"); MySource.getComposerModel().Reload(); Hyena.Log.Information(MySource.getComposerModel().Count.ToString()); Hyena.Log.Information("Reload genres"); MySource.getGenreModel().Reload(); Hyena.Log.Information(MySource.getGenreModel().Count.ToString()); Hyena.Log.Information("Reload tracks"); MySource.getTrackModel().Reload(); Hyena.Log.Information("Reload play lists"); MySource.getPlayListsModel().Reload(); Hyena.Log.Information("Reloaded all"); } catch (System.Exception e) { Hyena.Log.Information(e.ToString()); } Hyena.Log.Information("Reloaded"); filling.Text = ""; bar.Remove(sep); bar.Remove(cancel); bar.Hide(); FillLibrary(); return(false); } else { return(true); } }); } }
public override void Initialize() { Widget = new Gtk.Button(); Widget.Show(); }
public override void Initialize() { Widget = new Gtk.Button (); Widget.Show (); }
private void CreateGui() { Gtk.FileChooserButton fc=new Gtk.FileChooserButton("Choose directory to put your splitted files",Gtk.FileChooserAction.SelectFolder); string fn=Banshee.Configuration.ConfigurationClient.Get<string>("cuesheets_todevice",""); if (fn!="") { fc.SelectFilename(fn); } fc.FileSet+=new EventHandler(delegate(Object sender,EventArgs args) { fn=fc.Filename; Banshee.Configuration.ConfigurationClient.Set<string>("cuesheets_todevice",fn); }); Gtk.Button btn=new Gtk.Button("Split CueSheet Audio File"); Gtk.Button csplit=new Gtk.Button("Cancel"); csplit.Clicked+=delegate(object sender,EventArgs args) { _splt.CancelSplit(); }; Gtk.ProgressBar bar=new Gtk.ProgressBar(); Gtk.ProgressBar nr=new Gtk.ProgressBar(); Gtk.Button ok=(Gtk.Button) base.AddButton ("OK",1); Gtk.Label result=new Gtk.Label("-"); btn.Clicked+=delegate(object sender,EventArgs args) { btn.Hide (); csplit.Show (); result.Markup=""; ok.Sensitive=false; fc.Sensitive=false; btn.Sensitive=false; _splt.SplitWithPaths (); bool convert_to_latin1=true; _splt.SplitToDir (fn,convert_to_latin1); GLib.Timeout.Add(50,delegate () { bar.Fraction=_splt.ProgressOfCurrentTrack; int n=_splt.ProgressNTracks; int i=_splt.ProgressCurrentTrack; double d=((double) i)/((double) n); nr.Fraction=d; if (_splt.SplitFinished) { ok.Sensitive=true; btn.Sensitive=true; fc.Sensitive=true; csplit.Hide (); btn.Show (); if (_splt.Cancelled) { result.Markup="<b>Split Cancelled</b>"; } else { result.Markup="<b>Finished</b>"; } } return !_splt.SplitFinished; }); }; fc.Show (); nr.Show (); bar.Show (); btn.Show (); result.Show (); base.VBox.Add (fc); base.VBox.Add (hsep()); base.VBox.Add (nr); base.VBox.Add (bar); base.VBox.Add (hsep ()); base.VBox.Add (result); base.VBox.Add (hsep ()); base.VBox.Add (btn); base.VBox.Add (csplit); base.VBox.Show(); }
void AddButton (string stock_id, Gtk.ResponseType response, bool is_default) { Gtk.Button button = new Gtk.Button (stock_id); button.CanDefault = true; button.Show (); AddActionWidget (button, response); if (is_default) { DefaultResponse = response; button.AddAccelerator ("activate", accel_group, (uint) Gdk.Key.Escape, 0, Gtk.AccelFlags.Visible); } }
public void AddButton (string stock_id, Gtk.ResponseType response, bool isDefault) { Gtk.Button button = new Gtk.Button (stock_id); button.CanDefault = true; button.Show (); AddButton (button, response, isDefault); }
public PreferencesDialog (AddinManager addin_manager) : base () { this.addin_manager = addin_manager; IconName = "tomboy"; HasSeparator = false; BorderWidth = 5; Resizable = true; Title = Catalog.GetString ("Tomboy Preferences"); ActionArea.Layout = Gtk.ButtonBoxStyle.End; addin_prefs_dialogs = new Dictionary<string, Gtk.Dialog> (); addin_info_dialogs = new Dictionary<string, Gtk.Dialog> (); // Notebook Tabs (Editing, Hotkeys)... Gtk.Notebook notebook = new Gtk.Notebook (); notebook.TabPos = Gtk.PositionType.Top; notebook.Show (); notebook.AppendPage (MakeEditingPane (), new Gtk.Label (Catalog.GetString ("Editing"))); if (! (Services.Keybinder is NullKeybinder)) notebook.AppendPage (MakeHotkeysPane (), new Gtk.Label (Catalog.GetString ("Hotkeys"))); notebook.AppendPage (MakeSyncPane (), new Gtk.Label (Catalog.GetString ("Synchronization"))); notebook.AppendPage (MakeAddinsPane (), new Gtk.Label (Catalog.GetString ("Add-ins"))); // TODO: Figure out a way to have these be placed in a specific order foreach (PreferenceTabAddin tabAddin in addin_manager.GetPreferenceTabAddins ()) { Logger.Debug ("Adding preference tab addin: {0}", tabAddin.GetType ().Name); try { string tabName; Gtk.Widget tabWidget; if (tabAddin.GetPreferenceTabWidget (this, out tabName, out tabWidget) == true) { notebook.AppendPage (tabWidget, new Gtk.Label (tabName)); } } catch (Exception e) { Logger.Warn ("Problems adding preferences tab addin: {0}", tabAddin.GetType ().Name); Logger.Debug ("{0}:\n{1}", e.Message, e.StackTrace); } } VBox.PackStart (notebook, true, true, 0); addin_manager.ApplicationAddinListChanged += OnAppAddinListChanged; // Ok button... Gtk.Button button = new Gtk.Button (Gtk.Stock.Close); button.CanDefault = true; button.Show (); Gtk.AccelGroup accel_group = new Gtk.AccelGroup (); AddAccelGroup (accel_group); button.AddAccelerator ("activate", accel_group, (uint) Gdk.Key.Escape, 0, 0); AddActionWidget (button, Gtk.ResponseType.Close); DefaultResponse = Gtk.ResponseType.Close; Preferences.SettingChanged += HandlePreferencesSettingChanged; }
public static void Build(object obj, string id) { System.Collections.Hashtable bindings = new System.Collections.Hashtable(); if ((id == "Boxerp.Client.GtkSharp.Lib.QuestionDialog")) { Gtk.Dialog cobj = ((Gtk.Dialog)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.QuestionDialog cobj.Title = "Question"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.Modal = true; cobj.HasSeparator = false; cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.QuestionDialog"; // Internal child Boxerp.Client.GtkSharp.Lib.QuestionDialog.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.HBox w2 = new Gtk.HBox(); w2.Events = ((Gdk.EventMask)(0)); w2.Name = "hbox1"; // Container child hbox1.Gtk.Box+BoxChild Gtk.Image w3 = new Gtk.Image(); w3.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-dialog-info", 16, 0); w3.Events = ((Gdk.EventMask)(0)); w3.Name = "image"; bindings["image"] = w3; w2.Add(w3); Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w2[w3])); w4.Position = 0; w4.Expand = false; w4.Fill = false; w4.Padding = ((uint)(5)); // Container child hbox1.Gtk.Box+BoxChild Gtk.Label w5 = new Gtk.Label(); w5.LabelProp = "Info"; w5.Events = ((Gdk.EventMask)(0)); w5.Name = "label"; bindings["label"] = w5; w2.Add(w5); Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(w2[w5])); w6.Position = 1; bindings["hbox1"] = w2; w1.Add(w2); Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w1[w2])); w7.Position = 0; w7.Expand = false; w7.Fill = false; w7.Padding = ((uint)(5)); bindings["dialog_VBox"] = w1; // Internal child Boxerp.Client.GtkSharp.Lib.QuestionDialog.ActionArea Gtk.HButtonBox w8 = cobj.ActionArea; w8.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w8.Spacing = 10; w8.BorderWidth = ((uint)(5)); w8.Events = ((Gdk.EventMask)(256)); w8.Name = "Boxerp.Client.GtkSharp.Lib.QuestionDialog_ActionArea"; // Container child Boxerp.Client.GtkSharp.Lib.QuestionDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w9 = new Gtk.Button(); w9.CanFocus = true; w9.Events = ((Gdk.EventMask)(0)); w9.Name = "button22"; w9.CanDefault = true; // Container child button22.Gtk.Container+ContainerChild Gtk.Alignment w10 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w10.Events = ((Gdk.EventMask)(0)); w10.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w11 = new Gtk.HBox(); w11.Spacing = 2; w11.Events = ((Gdk.EventMask)(0)); w11.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w12 = new Gtk.Image(); w12.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-no", 16, 0); w12.Events = ((Gdk.EventMask)(0)); w12.Name = "image2"; bindings["image2"] = w12; w11.Add(w12); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w14 = new Gtk.Label(); w14.LabelProp = "No"; w14.Events = ((Gdk.EventMask)(0)); w14.Name = "GtkLabel"; bindings["GtkLabel"] = w14; w11.Add(w14); bindings["GtkHBox"] = w11; w10.Add(w11); bindings["GtkAlignment"] = w10; w9.Add(w10); bindings["button22"] = w9; cobj.AddActionWidget(w9, -9); Gtk.ButtonBox.ButtonBoxChild w18 = ((Gtk.ButtonBox.ButtonBoxChild)(w8[w9])); w18.Expand = false; w18.Fill = false; // Container child Boxerp.Client.GtkSharp.Lib.QuestionDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w19 = new Gtk.Button(); w19.CanFocus = true; w19.Events = ((Gdk.EventMask)(0)); w19.Name = "button24"; w19.CanDefault = true; // Container child button24.Gtk.Container+ContainerChild Gtk.Alignment w20 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w20.Events = ((Gdk.EventMask)(0)); w20.Name = "GtkAlignment1"; // Container child GtkAlignment1.Gtk.Container+ContainerChild Gtk.HBox w21 = new Gtk.HBox(); w21.Spacing = 2; w21.Events = ((Gdk.EventMask)(0)); w21.Name = "GtkHBox1"; // Container child GtkHBox1.Gtk.Container+ContainerChild Gtk.Image w22 = new Gtk.Image(); w22.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-yes", 16, 0); w22.Events = ((Gdk.EventMask)(0)); w22.Name = "image3"; bindings["image3"] = w22; w21.Add(w22); // Container child GtkHBox1.Gtk.Container+ContainerChild Gtk.Label w24 = new Gtk.Label(); w24.LabelProp = "Yes"; w24.Events = ((Gdk.EventMask)(0)); w24.Name = "GtkLabel1"; bindings["GtkLabel1"] = w24; w21.Add(w24); bindings["GtkHBox1"] = w21; w20.Add(w21); bindings["GtkAlignment1"] = w20; w19.Add(w20); bindings["button24"] = w19; cobj.AddActionWidget(w19, -8); Gtk.ButtonBox.ButtonBoxChild w28 = ((Gtk.ButtonBox.ButtonBoxChild)(w8[w19])); w28.Position = 1; w28.Expand = false; w28.Fill = false; bindings["Boxerp.Client.GtkSharp.Lib.QuestionDialog_ActionArea"] = w8; cobj.DefaultWidth = 400; cobj.DefaultHeight = 99; bindings["Boxerp.Client.GtkSharp.Lib.QuestionDialog"] = cobj; w3.Show(); w5.Show(); w2.Show(); w1.Show(); w12.Show(); w14.Show(); w11.Show(); w10.Show(); w9.Show(); w22.Show(); w24.Show(); w21.Show(); w20.Show(); w19.Show(); w8.Show(); cobj.Show(); w9.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnNo"))); w19.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnYes"))); } else { if ((id == "Boxerp.Client.GtkSharp.Lib.SimpleListView")) { Gtk.Bin cobj = ((Gtk.Bin)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.SimpleListView BinContainer.Attach(cobj); cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.SimpleListView"; // Container child Boxerp.Client.GtkSharp.Lib.SimpleListView.Gtk.Container+ContainerChild Gtk.TreeView w1 = new Gtk.TreeView(); w1.CanFocus = true; w1.Events = ((Gdk.EventMask)(0)); w1.Name = "treeview"; bindings["treeview"] = w1; cobj.Add(w1); bindings["Boxerp.Client.GtkSharp.Lib.SimpleListView"] = cobj; w1.Show(); cobj.Show(); } else { if ((id == "Boxerp.Client.GtkSharp.Lib.WarningDialog")) { Gtk.Dialog cobj = ((Gtk.Dialog)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.WarningDialog cobj.Title = "Warning"; cobj.Icon = Gtk.IconTheme.Default.LoadIcon("gtk-dialog-warning", 16, 0); cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.HasSeparator = false; cobj.Resizable = false; cobj.AllowGrow = false; cobj.DefaultWidth = 500; cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.WarningDialog"; // Internal child Boxerp.Client.GtkSharp.Lib.WarningDialog.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.HBox w2 = new Gtk.HBox(); w2.Spacing = 5; w2.BorderWidth = ((uint)(5)); w2.Events = ((Gdk.EventMask)(0)); w2.Name = "hbox1"; // Container child hbox1.Gtk.Box+BoxChild Gtk.Image w3 = new Gtk.Image(); w3.Pixbuf = Gtk.IconTheme.Default.LoadIcon("stock_dialog-warning", 16, 0); w3.Events = ((Gdk.EventMask)(0)); w3.Name = "image"; bindings["image"] = w3; w2.Add(w3); Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w2[w3])); w4.Position = 0; w4.Expand = false; w4.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.Label w5 = new Gtk.Label(); w5.LabelProp = "Warning"; w5.Events = ((Gdk.EventMask)(0)); w5.Name = "label"; bindings["label"] = w5; w2.Add(w5); Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(w2[w5])); w6.Position = 1; bindings["hbox1"] = w2; w1.Add(w2); Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w1[w2])); w7.Position = 0; w7.Expand = false; w7.Fill = false; bindings["dialog_VBox"] = w1; // Internal child Boxerp.Client.GtkSharp.Lib.WarningDialog.ActionArea Gtk.HButtonBox w8 = cobj.ActionArea; w8.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w8.Spacing = 10; w8.BorderWidth = ((uint)(5)); w8.Events = ((Gdk.EventMask)(256)); w8.Name = "Boxerp.Client.GtkSharp.Lib.WarningDialog_ActionArea"; // Container child Boxerp.Client.GtkSharp.Lib.WarningDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w9 = new Gtk.Button(); w9.CanFocus = true; w9.Events = ((Gdk.EventMask)(0)); w9.Name = "buttonOk"; w9.CanDefault = true; // Container child buttonOk.Gtk.Container+ContainerChild Gtk.Alignment w10 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w10.Events = ((Gdk.EventMask)(0)); w10.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w11 = new Gtk.HBox(); w11.Spacing = 2; w11.Events = ((Gdk.EventMask)(0)); w11.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w12 = new Gtk.Image(); w12.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-ok", 16, 0); w12.Events = ((Gdk.EventMask)(0)); w12.Name = "image7"; bindings["image7"] = w12; w11.Add(w12); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w14 = new Gtk.Label(); w14.LabelProp = "Ok"; w14.Events = ((Gdk.EventMask)(0)); w14.Name = "GtkLabel"; bindings["GtkLabel"] = w14; w11.Add(w14); bindings["GtkHBox"] = w11; w10.Add(w11); bindings["GtkAlignment"] = w10; w9.Add(w10); bindings["buttonOk"] = w9; cobj.AddActionWidget(w9, 0); Gtk.ButtonBox.ButtonBoxChild w18 = ((Gtk.ButtonBox.ButtonBoxChild)(w8[w9])); w18.Expand = false; w18.Fill = false; bindings["Boxerp.Client.GtkSharp.Lib.WarningDialog_ActionArea"] = w8; cobj.DefaultHeight = 104; bindings["Boxerp.Client.GtkSharp.Lib.WarningDialog"] = cobj; w3.Show(); w5.Show(); w2.Show(); w1.Show(); w12.Show(); w14.Show(); w11.Show(); w10.Show(); w9.Show(); w8.Show(); cobj.Show(); w9.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnOk"))); } else { if ((id == "Boxerp.Client.GtkSharp.Lib.WaitWindow")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.WaitWindow cobj.Title = "Operation in progress..."; cobj.WindowPosition = ((Gtk.WindowPosition)(1)); cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.WaitWindow"; // Container child Boxerp.Client.GtkSharp.Lib.WaitWindow.Gtk.Container+ContainerChild Gtk.VBox w1 = new Gtk.VBox(); w1.Spacing = 2; w1.BorderWidth = ((uint)(5)); w1.Events = ((Gdk.EventMask)(256)); w1.Name = "vbox"; // Container child vbox.Gtk.Box+BoxChild Gtk.Label w2 = new Gtk.Label(); w2.LabelProp = "Please wait"; w2.Events = ((Gdk.EventMask)(0)); w2.Name = "labelMsg"; bindings["labelMsg"] = w2; w1.Add(w2); Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(w1[w2])); w3.Position = 0; // Container child vbox.Gtk.Box+BoxChild Gtk.ProgressBar w4 = new Gtk.ProgressBar(); w4.Events = ((Gdk.EventMask)(0)); w4.Name = "progressbar"; bindings["progressbar"] = w4; w1.Add(w4); Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(w1[w4])); w5.Position = 1; w5.Expand = false; w5.Fill = false; // Container child vbox.Gtk.Box+BoxChild Gtk.HButtonBox w6 = new Gtk.HButtonBox(); w6.LayoutStyle = ((Gtk.ButtonBoxStyle)(2)); w6.Spacing = 10; w6.BorderWidth = ((uint)(5)); w6.Events = ((Gdk.EventMask)(256)); w6.Name = "actionArea"; // Container child actionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w7 = new Gtk.Button(); w7.CanFocus = true; w7.Events = ((Gdk.EventMask)(0)); w7.Name = "button"; w7.CanDefault = true; // Container child button.Gtk.Container+ContainerChild Gtk.Alignment w8 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w8.Events = ((Gdk.EventMask)(0)); w8.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w9 = new Gtk.HBox(); w9.Spacing = 2; w9.Events = ((Gdk.EventMask)(0)); w9.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w10 = new Gtk.Image(); w10.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-cancel", 16, 0); w10.Events = ((Gdk.EventMask)(0)); w10.Name = "image1"; bindings["image1"] = w10; w9.Add(w10); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w12 = new Gtk.Label(); w12.LabelProp = "Cancel"; w12.Events = ((Gdk.EventMask)(0)); w12.Name = "GtkLabel"; bindings["GtkLabel"] = w12; w9.Add(w12); bindings["GtkHBox"] = w9; w8.Add(w9); bindings["GtkAlignment"] = w8; w7.Add(w8); bindings["button"] = w7; w6.Add(w7); Gtk.ButtonBox.ButtonBoxChild w16 = ((Gtk.ButtonBox.ButtonBoxChild)(w6[w7])); w16.Expand = false; w16.Fill = false; bindings["actionArea"] = w6; w1.Add(w6); Gtk.Box.BoxChild w17 = ((Gtk.Box.BoxChild)(w1[w6])); w17.Position = 2; w17.Expand = false; w17.Fill = false; bindings["vbox"] = w1; cobj.Add(w1); cobj.DefaultWidth = 400; cobj.DefaultHeight = 119; bindings["Boxerp.Client.GtkSharp.Lib.WaitWindow"] = cobj; w2.Show(); w4.Show(); w10.Show(); w12.Show(); w9.Show(); w8.Show(); w7.Show(); w6.Show(); w1.Show(); cobj.Show(); cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent"))); w7.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnCancel"))); } else { if ((id == "Boxerp.Client.GtkSharp.Lib.WaitDialog")) { Gtk.Dialog cobj = ((Gtk.Dialog)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.WaitDialog cobj.Title = "Operation in progress..."; cobj.WindowPosition = ((Gtk.WindowPosition)(1)); cobj.HasSeparator = false; cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.WaitDialog"; // Internal child Boxerp.Client.GtkSharp.Lib.WaitDialog.VBox Gtk.VBox w1 = cobj.VBox; w1.Spacing = 2; w1.BorderWidth = ((uint)(2)); w1.Events = ((Gdk.EventMask)(256)); w1.Name = "dialog_VBox"; // Container child dialog_VBox.Gtk.Box+BoxChild Gtk.Label w2 = new Gtk.Label(); w2.LabelProp = "Please wait"; w2.Events = ((Gdk.EventMask)(0)); w2.Name = "labelMsg"; bindings["labelMsg"] = w2; w1.Add(w2); Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(w1[w2])); w3.Position = 0; // Container child dialog_VBox.Gtk.Box+BoxChild Gtk.ProgressBar w4 = new Gtk.ProgressBar(); w4.Events = ((Gdk.EventMask)(0)); w4.Name = "progressbar"; bindings["progressbar"] = w4; w1.Add(w4); Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(w1[w4])); w5.Position = 1; w5.Expand = false; w5.Fill = false; bindings["dialog_VBox"] = w1; // Internal child Boxerp.Client.GtkSharp.Lib.WaitDialog.ActionArea Gtk.HButtonBox w6 = cobj.ActionArea; w6.LayoutStyle = ((Gtk.ButtonBoxStyle)(2)); w6.Spacing = 10; w6.BorderWidth = ((uint)(5)); w6.Events = ((Gdk.EventMask)(256)); w6.Name = "actionArea"; // Container child actionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w7 = new Gtk.Button(); w7.CanFocus = true; w7.Events = ((Gdk.EventMask)(0)); w7.Name = "button"; w7.CanDefault = true; // Container child button.Gtk.Container+ContainerChild Gtk.Alignment w8 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w8.Events = ((Gdk.EventMask)(0)); w8.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w9 = new Gtk.HBox(); w9.Spacing = 2; w9.Events = ((Gdk.EventMask)(0)); w9.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w10 = new Gtk.Image(); w10.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-cancel", 16, 0); w10.Events = ((Gdk.EventMask)(0)); w10.Name = "image8"; bindings["image8"] = w10; w9.Add(w10); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w12 = new Gtk.Label(); w12.LabelProp = "Cancel"; w12.Events = ((Gdk.EventMask)(0)); w12.Name = "GtkLabel"; bindings["GtkLabel"] = w12; w9.Add(w12); bindings["GtkHBox"] = w9; w8.Add(w9); bindings["GtkAlignment"] = w8; w7.Add(w8); bindings["button"] = w7; cobj.AddActionWidget(w7, -7); Gtk.ButtonBox.ButtonBoxChild w16 = ((Gtk.ButtonBox.ButtonBoxChild)(w6[w7])); w16.Expand = false; w16.Fill = false; bindings["actionArea"] = w6; cobj.DefaultWidth = 400; cobj.DefaultHeight = 113; bindings["Boxerp.Client.GtkSharp.Lib.WaitDialog"] = cobj; w2.Show(); w4.Show(); w1.Show(); w10.Show(); w12.Show(); w9.Show(); w8.Show(); w7.Show(); w6.Show(); cobj.Show(); cobj.Close += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnClose"))); cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent"))); w7.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnCancel"))); } else { if ((id == "Boxerp.Client.GtkSharp.Lib.DoubleListView")) { Gtk.Bin cobj = ((Gtk.Bin)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.DoubleListView BinContainer.Attach(cobj); cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.DoubleListView"; // Container child Boxerp.Client.GtkSharp.Lib.DoubleListView.Gtk.Container+ContainerChild Gtk.VBox w1 = new Gtk.VBox(); w1.Events = ((Gdk.EventMask)(0)); w1.Name = "vbox2"; // Container child vbox2.Gtk.Box+BoxChild Gtk.HBox w2 = new Gtk.HBox(); w2.Events = ((Gdk.EventMask)(0)); w2.Name = "hbox2"; // Container child hbox2.Gtk.Box+BoxChild Gtk.Label w3 = new Gtk.Label(); w3.LabelProp = "label1"; w3.Events = ((Gdk.EventMask)(0)); w3.Name = "labelLeft"; bindings["labelLeft"] = w3; w2.Add(w3); Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w2[w3])); w4.Position = 0; w4.Fill = false; // Container child hbox2.Gtk.Box+BoxChild Gtk.VSeparator w5 = new Gtk.VSeparator(); w5.Events = ((Gdk.EventMask)(0)); w5.Name = "vseparator1"; bindings["vseparator1"] = w5; w2.Add(w5); Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(w2[w5])); w6.Position = 1; w6.Expand = false; w6.Fill = false; // Container child hbox2.Gtk.Box+BoxChild Gtk.Label w7 = new Gtk.Label(); w7.LabelProp = "label2"; w7.Events = ((Gdk.EventMask)(0)); w7.Name = "labelRight"; bindings["labelRight"] = w7; w2.Add(w7); Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(w2[w7])); w8.Position = 2; w8.Fill = false; bindings["hbox2"] = w2; w1.Add(w2); Gtk.Box.BoxChild w9 = ((Gtk.Box.BoxChild)(w1[w2])); w9.Position = 0; w9.Expand = false; // Container child vbox2.Gtk.Box+BoxChild Gtk.HBox w10 = new Gtk.HBox(); w10.Spacing = 5; w10.BorderWidth = ((uint)(5)); w10.Events = ((Gdk.EventMask)(0)); w10.Name = "hbox1"; // Container child hbox1.Gtk.Box+BoxChild Gtk.ScrolledWindow w11 = new Gtk.ScrolledWindow(); w11.VscrollbarPolicy = ((Gtk.PolicyType)(1)); w11.HscrollbarPolicy = ((Gtk.PolicyType)(1)); w11.CanFocus = true; w11.Events = ((Gdk.EventMask)(0)); w11.Name = "scrolledwindow1"; // Container child scrolledwindow1.Gtk.Container+ContainerChild Gtk.Viewport w12 = new Gtk.Viewport(); w12.ShadowType = ((Gtk.ShadowType)(0)); w12.Events = ((Gdk.EventMask)(0)); w12.Name = "GtkViewport"; // Container child GtkViewport.Gtk.Container+ContainerChild Boxerp.Client.GtkSharp.Lib.SimpleListView w13 = new Boxerp.Client.GtkSharp.Lib.SimpleListView(); w13.Events = ((Gdk.EventMask)(256)); w13.Name = "slistviewLeft"; bindings["slistviewLeft"] = w13; w12.Add(w13); bindings["GtkViewport"] = w12; w11.Add(w12); bindings["scrolledwindow1"] = w11; w10.Add(w11); Gtk.Box.BoxChild w16 = ((Gtk.Box.BoxChild)(w10[w11])); w16.Position = 0; // Container child hbox1.Gtk.Box+BoxChild Gtk.VBox w17 = new Gtk.VBox(); w17.Homogeneous = true; w17.Events = ((Gdk.EventMask)(0)); w17.Name = "vbox1"; // Container child vbox1.Gtk.Box+BoxChild Gtk.Button w18 = new Gtk.Button(); w18.CanFocus = true; w18.Events = ((Gdk.EventMask)(0)); w18.Name = "button5"; // Container child button5.Gtk.Container+ContainerChild Gtk.Alignment w19 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w19.Events = ((Gdk.EventMask)(0)); w19.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w20 = new Gtk.HBox(); w20.Spacing = 2; w20.Events = ((Gdk.EventMask)(0)); w20.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w21 = new Gtk.Image(); w21.Pixbuf = Gtk.IconTheme.Default.LoadIcon("stock_left", 16, 0); w21.Events = ((Gdk.EventMask)(0)); w21.Name = "image5"; bindings["image5"] = w21; w20.Add(w21); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w23 = new Gtk.Label(); w23.LabelProp = ""; w23.Events = ((Gdk.EventMask)(0)); w23.Name = "GtkLabel"; bindings["GtkLabel"] = w23; w20.Add(w23); bindings["GtkHBox"] = w20; w19.Add(w20); bindings["GtkAlignment"] = w19; w18.Add(w19); bindings["button5"] = w18; w17.Add(w18); Gtk.Box.BoxChild w27 = ((Gtk.Box.BoxChild)(w17[w18])); w27.Position = 1; w27.Expand = false; w27.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.Button w28 = new Gtk.Button(); w28.CanFocus = true; w28.Events = ((Gdk.EventMask)(0)); w28.Name = "button6"; // Container child button6.Gtk.Container+ContainerChild Gtk.Alignment w29 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w29.Events = ((Gdk.EventMask)(0)); w29.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w30 = new Gtk.HBox(); w30.Spacing = 2; w30.Events = ((Gdk.EventMask)(0)); w30.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w31 = new Gtk.Image(); w31.Pixbuf = Gtk.IconTheme.Default.LoadIcon("stock_right", 16, 0); w31.Events = ((Gdk.EventMask)(0)); w31.Name = "image6"; bindings["image6"] = w31; w30.Add(w31); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w33 = new Gtk.Label(); w33.LabelProp = ""; w33.Events = ((Gdk.EventMask)(0)); w33.Name = "GtkLabel"; bindings["GtkLabel"] = w33; w30.Add(w33); bindings["GtkHBox"] = w30; w29.Add(w30); bindings["GtkAlignment"] = w29; w28.Add(w29); bindings["button6"] = w28; w17.Add(w28); Gtk.Box.BoxChild w37 = ((Gtk.Box.BoxChild)(w17[w28])); w37.Position = 2; w37.Expand = false; w37.Fill = false; bindings["vbox1"] = w17; w10.Add(w17); Gtk.Box.BoxChild w38 = ((Gtk.Box.BoxChild)(w10[w17])); w38.Position = 1; w38.Expand = false; w38.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.ScrolledWindow w39 = new Gtk.ScrolledWindow(); w39.VscrollbarPolicy = ((Gtk.PolicyType)(1)); w39.HscrollbarPolicy = ((Gtk.PolicyType)(1)); w39.CanFocus = true; w39.Events = ((Gdk.EventMask)(0)); w39.Name = "scrolledwindow2"; // Container child scrolledwindow2.Gtk.Container+ContainerChild Gtk.Viewport w40 = new Gtk.Viewport(); w40.ShadowType = ((Gtk.ShadowType)(0)); w40.Events = ((Gdk.EventMask)(0)); w40.Name = "GtkViewport1"; // Container child GtkViewport1.Gtk.Container+ContainerChild Boxerp.Client.GtkSharp.Lib.SimpleListView w41 = new Boxerp.Client.GtkSharp.Lib.SimpleListView(); w41.Events = ((Gdk.EventMask)(256)); w41.Name = "slistviewRight"; bindings["slistviewRight"] = w41; w40.Add(w41); bindings["GtkViewport1"] = w40; w39.Add(w40); bindings["scrolledwindow2"] = w39; w10.Add(w39); Gtk.Box.BoxChild w44 = ((Gtk.Box.BoxChild)(w10[w39])); w44.PackType = ((Gtk.PackType)(1)); w44.Position = 2; bindings["hbox1"] = w10; w1.Add(w10); Gtk.Box.BoxChild w45 = ((Gtk.Box.BoxChild)(w1[w10])); w45.Position = 1; bindings["vbox2"] = w1; cobj.Add(w1); bindings["Boxerp.Client.GtkSharp.Lib.DoubleListView"] = cobj; w3.Show(); w5.Show(); w7.Show(); w2.Show(); w13.Show(); w12.Show(); w11.Show(); w21.Show(); w23.Show(); w20.Show(); w19.Show(); w18.Show(); w31.Show(); w33.Show(); w30.Show(); w29.Show(); w28.Show(); w17.Show(); w41.Show(); w40.Show(); w39.Show(); w10.Show(); w1.Show(); cobj.Show(); w18.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnLeftClicked"))); w28.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnRightClicked"))); } else { if ((id == "Boxerp.Client.GtkSharp.Lib.InfoDialog")) { Gtk.Dialog cobj = ((Gtk.Dialog)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.InfoDialog cobj.Title = "Info"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.HasSeparator = false; cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.InfoDialog"; // Internal child Boxerp.Client.GtkSharp.Lib.InfoDialog.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.HBox w2 = new Gtk.HBox(); w2.Spacing = 5; w2.BorderWidth = ((uint)(5)); w2.Events = ((Gdk.EventMask)(0)); w2.Name = "hbox1"; // Container child hbox1.Gtk.Box+BoxChild Gtk.Image w3 = new Gtk.Image(); w3.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-dialog-info", 16, 0); w3.Events = ((Gdk.EventMask)(0)); w3.Name = "image"; bindings["image"] = w3; w2.Add(w3); Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w2[w3])); w4.Position = 0; w4.Expand = false; w4.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.Label w5 = new Gtk.Label(); w5.LabelProp = "Info"; w5.Events = ((Gdk.EventMask)(0)); w5.Name = "label"; bindings["label"] = w5; w2.Add(w5); Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(w2[w5])); w6.Position = 1; bindings["hbox1"] = w2; w1.Add(w2); Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w1[w2])); w7.Position = 0; w7.Expand = false; w7.Fill = false; bindings["dialog_VBox"] = w1; // Internal child Boxerp.Client.GtkSharp.Lib.InfoDialog.ActionArea Gtk.HButtonBox w8 = cobj.ActionArea; w8.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w8.Spacing = 10; w8.BorderWidth = ((uint)(5)); w8.Events = ((Gdk.EventMask)(256)); w8.Name = "Boxerp.Client.GtkSharp.Lib.InfoDialog_ActionArea"; // Container child Boxerp.Client.GtkSharp.Lib.InfoDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w9 = new Gtk.Button(); w9.CanFocus = true; w9.Events = ((Gdk.EventMask)(0)); w9.Name = "button35"; w9.CanDefault = true; // Container child button35.Gtk.Container+ContainerChild Gtk.Alignment w10 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w10.Events = ((Gdk.EventMask)(0)); w10.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w11 = new Gtk.HBox(); w11.Spacing = 2; w11.Events = ((Gdk.EventMask)(0)); w11.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w12 = new Gtk.Image(); w12.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-ok", 16, 0); w12.Events = ((Gdk.EventMask)(0)); w12.Name = "image4"; bindings["image4"] = w12; w11.Add(w12); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w14 = new Gtk.Label(); w14.LabelProp = "Ok"; w14.Events = ((Gdk.EventMask)(0)); w14.Name = "GtkLabel"; bindings["GtkLabel"] = w14; w11.Add(w14); bindings["GtkHBox"] = w11; w10.Add(w11); bindings["GtkAlignment"] = w10; w9.Add(w10); bindings["button35"] = w9; cobj.AddActionWidget(w9, 0); Gtk.ButtonBox.ButtonBoxChild w18 = ((Gtk.ButtonBox.ButtonBoxChild)(w8[w9])); w18.Expand = false; w18.Fill = false; bindings["Boxerp.Client.GtkSharp.Lib.InfoDialog_ActionArea"] = w8; cobj.DefaultWidth = 400; cobj.DefaultHeight = 104; bindings["Boxerp.Client.GtkSharp.Lib.InfoDialog"] = cobj; w3.Show(); w5.Show(); w2.Show(); w1.Show(); w12.Show(); w14.Show(); w11.Show(); w10.Show(); w9.Show(); w8.Show(); cobj.Show(); w9.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnOkClicked"))); } else { if ((id == "button7")) { Gtk.Button cobj = ((Gtk.Button)(obj)); // Widget button7 cobj.CanFocus = true; cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "button7"; cobj.CanDefault = true; cobj.Label = "button7"; bindings["button7"] = cobj; cobj.Show(); } else { if ((id == "Boxerp.Client.GtkSharp.Lib.FilteredListView")) { Gtk.Bin cobj = ((Gtk.Bin)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.FilteredListView BinContainer.Attach(cobj); cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.FilteredListView"; // Container child Boxerp.Client.GtkSharp.Lib.FilteredListView.Gtk.Container+ContainerChild Gtk.TreeView w1 = new Gtk.TreeView(); w1.CanFocus = true; w1.Events = ((Gdk.EventMask)(0)); w1.Name = "treeview"; bindings["treeview"] = w1; cobj.Add(w1); bindings["Boxerp.Client.GtkSharp.Lib.FilteredListView"] = cobj; w1.Show(); cobj.Show(); } else { if ((id == "Boxerp.Client.GtkSharp.Lib.SimpleTreeView")) { Gtk.Bin cobj = ((Gtk.Bin)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.SimpleTreeView BinContainer.Attach(cobj); cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.SimpleTreeView"; // Container child Boxerp.Client.GtkSharp.Lib.SimpleTreeView.Gtk.Container+ContainerChild Gtk.TreeView w1 = new Gtk.TreeView(); w1.CanFocus = true; w1.Events = ((Gdk.EventMask)(0)); w1.Name = "treeview"; bindings["treeview"] = w1; cobj.Add(w1); bindings["Boxerp.Client.GtkSharp.Lib.SimpleTreeView"] = cobj; w1.Show(); cobj.Show(); } else { if ((id == "Boxerp.Client.GtkSharp.Lib.LoginWindow")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.LoginWindow cobj.Title = "LoginWindow"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.LoginWindow"; cobj.DefaultWidth = 400; cobj.DefaultHeight = 300; bindings["Boxerp.Client.GtkSharp.Lib.LoginWindow"] = cobj; cobj.Show(); } else { if ((id == "MainWindow")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget MainWindow cobj.Title = "MainWindow"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "MainWindow"; cobj.DefaultWidth = 400; cobj.DefaultHeight = 300; bindings["MainWindow"] = cobj; cobj.Show(); cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent"))); } else { if ((id == "Boxerp.Client.GtkSharp.Lib.InfoExtendedDialog")) { Gtk.Dialog cobj = ((Gtk.Dialog)(obj)); // Widget Boxerp.Client.GtkSharp.Lib.InfoExtendedDialog cobj.Title = "InfoExtendedDialog"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.HasSeparator = false; cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "Boxerp.Client.GtkSharp.Lib.InfoExtendedDialog"; // Internal child Boxerp.Client.GtkSharp.Lib.InfoExtendedDialog.VBox Gtk.VBox w1 = cobj.VBox; w1.BorderWidth = ((uint)(2)); w1.Events = ((Gdk.EventMask)(256)); w1.Name = "dialog_VBox"; bindings["dialog_VBox"] = w1; // Internal child Boxerp.Client.GtkSharp.Lib.InfoExtendedDialog.ActionArea Gtk.HButtonBox w2 = cobj.ActionArea; w2.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w2.Events = ((Gdk.EventMask)(256)); w2.Name = "Boxerp.Client.GtkSharp.Lib.InfoExtendedDialog_ActionArea"; // Container child Boxerp.Client.GtkSharp.Lib.InfoExtendedDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w3 = new Gtk.Button(); w3.CanFocus = true; w3.Events = ((Gdk.EventMask)(0)); w3.Name = "button6"; w3.CanDefault = true; w3.Label = "button6"; bindings["button6"] = w3; cobj.AddActionWidget(w3, 0); Gtk.ButtonBox.ButtonBoxChild w4 = ((Gtk.ButtonBox.ButtonBoxChild)(w2[w3])); w4.Expand = false; w4.Fill = false; bindings["Boxerp.Client.GtkSharp.Lib.InfoExtendedDialog_ActionArea"] = w2; cobj.DefaultWidth = 400; cobj.DefaultHeight = 300; bindings["Boxerp.Client.GtkSharp.Lib.InfoExtendedDialog"] = cobj; w1.Show(); w3.Show(); w2.Show(); cobj.Show(); } } } } } } } } } } } } } 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); } } }
public static void Build(object obj, string id) { System.Collections.Hashtable bindings = new System.Collections.Hashtable(); if ((id == "igaeditorgtk.MainForm")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget igaeditorgtk.MainForm cobj.Title = "IGA Ad Cache Editor (GTK) by micolous"; Gtk.UIManager w1 = new Gtk.UIManager(); Gtk.ActionGroup w2 = new Gtk.ActionGroup("Default"); Gtk.Action w3 = new Gtk.Action("Application", "_Application", null, null); w3.ShortLabel = "_Application"; bindings["Application"] = w3; w2.Add(w3, null); Gtk.Action w4 = new Gtk.Action("ImportAdpack", "_Import Adpack", null, null); w4.ShortLabel = "_Import Adpack"; bindings["ImportAdpack"] = w4; w2.Add(w4, null); Gtk.Action w5 = new Gtk.Action("ExportAdpack", "_Export Adpack", null, null); w5.ShortLabel = "_Export Adpack"; bindings["ExportAdpack"] = w5; w2.Add(w5, null); Gtk.Action w6 = new Gtk.Action("", "-", null, null); w6.ShortLabel = "-"; bindings[""] = w6; w2.Add(w6, null); Gtk.Action w7 = new Gtk.Action("Reload", "_Reload", null, "gtk-refresh"); w7.ShortLabel = "_Reload"; bindings["Reload"] = w7; w2.Add(w7, null); Gtk.Action w8 = new Gtk.Action("VaccumShrinkDatabase", "_Vaccum/Shrink Database", null, null); w8.ShortLabel = "_Vaccum/Shrink Database"; bindings["VaccumShrinkDatabase"] = w8; w2.Add(w8, null); Gtk.Action w9 = new Gtk.Action("CloseDatabase", "_Close Database", null, "gtk-close"); w9.ShortLabel = "_Close Database"; bindings["CloseDatabase"] = w9; w2.Add(w9, null); Gtk.Action w10 = new Gtk.Action("Exit", "E_xit", null, "gtk-quit"); w10.ShortLabel = "E_xit"; bindings["Exit"] = w10; w2.Add(w10, null); Gtk.Action w11 = new Gtk.Action("Debug", "_Debug", null, null); w11.ShortLabel = "_Debug"; bindings["Debug"] = w11; w2.Add(w11, null); Gtk.Action w12 = new Gtk.Action("Help", "_Help", null, null); w12.ShortLabel = "_Help"; bindings["Help"] = w12; w2.Add(w12, null); Gtk.Action w13 = new Gtk.Action("About", "_About", null, "gtk-about"); w13.ShortLabel = "_About"; bindings["About"] = w13; w2.Add(w13, null); Gtk.Action w14 = new Gtk.Action("ExecuteSQL", "_Execute SQL", null, null); w14.ShortLabel = "_Execute SQL"; bindings["ExecuteSQL"] = w14; w2.Add(w14, null); w1.InsertActionGroup(w2, 0); cobj.AddAccelGroup(w1.AccelGroup); cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "igaeditorgtk.MainForm"; // Container child igaeditorgtk.MainForm.Gtk.Container+ContainerChild Gtk.VBox w15 = new Gtk.VBox(); w15.Events = ((Gdk.EventMask)(0)); w15.Name = "vbox1"; // Container child vbox1.Gtk.Box+BoxChild w1.AddUiFromString("<ui><menubar name='menubar1'><menu action='Application'><menuitem action='ImportAdpack'/><menuitem action='ExportAdpack'/><separator/><menuitem action='Reload'/><menuitem action='VaccumShrinkDatabase'/><menuitem action='CloseDatabase'/><separator/><menuitem action='Exit'/></menu><menu action='Debug'><menuitem action='ExecuteSQL'/></menu><menu action='Help'><menuitem action='About'/><separator/></menu></menubar></ui>"); Gtk.MenuBar w16 = ((Gtk.MenuBar)(w1.GetWidget("/menubar1"))); w16.Events = ((Gdk.EventMask)(0)); w16.Name = "menubar1"; bindings["menubar1"] = w16; w15.Add(w16); Gtk.Box.BoxChild w17 = ((Gtk.Box.BoxChild)(w15[w16])); w17.Position = 0; w17.Expand = false; w17.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.Frame w18 = new Gtk.Frame(); w18.ShadowType = ((Gtk.ShadowType)(0)); w18.LabelXalign = 0F; w18.Events = ((Gdk.EventMask)(0)); w18.Name = "frame1"; // Container child frame1.Gtk.Container+ContainerChild Gtk.Alignment w19 = new Gtk.Alignment(0F, 0F, 1F, 1F); w19.LeftPadding = ((uint)(12)); w19.Events = ((Gdk.EventMask)(0)); w19.Name = "GtkAlignment6"; // Container child GtkAlignment6.Gtk.Container+ContainerChild Gtk.ScrolledWindow w20 = new Gtk.ScrolledWindow(); w20.VscrollbarPolicy = ((Gtk.PolicyType)(1)); w20.HscrollbarPolicy = ((Gtk.PolicyType)(2)); w20.CanFocus = true; w20.Events = ((Gdk.EventMask)(0)); w20.Name = "scrolledwindow1"; // Container child scrolledwindow1.Gtk.Container+ContainerChild Gtk.TreeView w21 = new Gtk.TreeView(); w21.EnableSearch = false; w21.CanFocus = true; w21.Events = ((Gdk.EventMask)(0)); w21.Name = "RecordTreeView"; bindings["RecordTreeView"] = w21; w20.Add(w21); bindings["scrolledwindow1"] = w20; w19.Add(w20); bindings["GtkAlignment6"] = w19; w18.Add(w19); Gtk.Label w25 = new Gtk.Label(); w25.LabelProp = "<b>frame1</b>"; w25.UseMarkup = true; w25.Events = ((Gdk.EventMask)(256)); w25.Name = "DatabaseTitleLabel"; bindings["DatabaseTitleLabel"] = w25; w18.LabelWidget = w25; bindings["frame1"] = w18; w15.Add(w18); Gtk.Box.BoxChild w26 = ((Gtk.Box.BoxChild)(w15[w18])); w26.Position = 1; // Container child vbox1.Gtk.Box+BoxChild Gtk.HBox w27 = new Gtk.HBox(); w27.Events = ((Gdk.EventMask)(0)); w27.Name = "hbox1"; // Container child hbox1.Gtk.Box+BoxChild Gtk.Button w28 = new Gtk.Button(); w28.UseStock = true; w28.UseUnderline = true; w28.CanFocus = true; w28.Events = ((Gdk.EventMask)(0)); w28.Name = "AddRecordButton"; w28.Label = "gtk-add"; bindings["AddRecordButton"] = w28; w27.Add(w28); Gtk.Box.BoxChild w29 = ((Gtk.Box.BoxChild)(w27[w28])); w29.Position = 0; w29.Expand = false; w29.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.Button w30 = new Gtk.Button(); w30.UseStock = true; w30.UseUnderline = true; w30.CanFocus = true; w30.Events = ((Gdk.EventMask)(0)); w30.Name = "EditRecordButton"; w30.Label = "gtk-properties"; bindings["EditRecordButton"] = w30; w27.Add(w30); Gtk.Box.BoxChild w31 = ((Gtk.Box.BoxChild)(w27[w30])); w31.Position = 1; w31.Expand = false; w31.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.Button w32 = new Gtk.Button(); w32.UseStock = true; w32.UseUnderline = true; w32.CanFocus = true; w32.Events = ((Gdk.EventMask)(0)); w32.Name = "DeleteRecordButton"; w32.Label = "gtk-remove"; bindings["DeleteRecordButton"] = w32; w27.Add(w32); Gtk.Box.BoxChild w33 = ((Gtk.Box.BoxChild)(w27[w32])); w33.Position = 2; w33.Expand = false; w33.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.Alignment w34 = new Gtk.Alignment(0.5F, 0.5F, 1F, 1F); w34.Events = ((Gdk.EventMask)(0)); w34.Name = "alignment4"; bindings["alignment4"] = w34; w27.Add(w34); Gtk.Box.BoxChild w35 = ((Gtk.Box.BoxChild)(w27[w34])); w35.Position = 3; // Container child hbox1.Gtk.Box+BoxChild Gtk.Button w36 = new Gtk.Button(); w36.UseUnderline = true; w36.CanFocus = true; w36.Events = ((Gdk.EventMask)(0)); w36.Name = "PreviewImageButton"; // Container child PreviewImageButton.Gtk.Container+ContainerChild Gtk.Alignment w37 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w37.Events = ((Gdk.EventMask)(0)); w37.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w38 = new Gtk.HBox(); w38.Spacing = 2; w38.Events = ((Gdk.EventMask)(0)); w38.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w39 = new Gtk.Image(); w39.Pixbuf = Gtk.IconTheme.Default.LoadIcon("stock_zoom", 20, 0); w39.Events = ((Gdk.EventMask)(0)); w39.Name = "image1"; bindings["image1"] = w39; w38.Add(w39); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w41 = new Gtk.Label(); w41.LabelProp = "_Preview"; w41.UseUnderline = true; w41.Events = ((Gdk.EventMask)(0)); w41.Name = "GtkLabel"; bindings["GtkLabel"] = w41; w38.Add(w41); bindings["GtkHBox"] = w38; w37.Add(w38); bindings["GtkAlignment"] = w37; w36.Add(w37); bindings["PreviewImageButton"] = w36; w27.Add(w36); Gtk.Box.BoxChild w45 = ((Gtk.Box.BoxChild)(w27[w36])); w45.Position = 4; w45.Expand = false; w45.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.Button w46 = new Gtk.Button(); w46.UseUnderline = true; w46.CanFocus = true; w46.Events = ((Gdk.EventMask)(0)); w46.Name = "ImportImageButton"; // Container child ImportImageButton.Gtk.Container+ContainerChild Gtk.Alignment w47 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w47.Events = ((Gdk.EventMask)(0)); w47.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w48 = new Gtk.HBox(); w48.Spacing = 2; w48.Events = ((Gdk.EventMask)(0)); w48.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w49 = new Gtk.Image(); w49.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-open", 16, 0); w49.Events = ((Gdk.EventMask)(0)); w49.Name = "image2"; bindings["image2"] = w49; w48.Add(w49); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w51 = new Gtk.Label(); w51.LabelProp = "_Import"; w51.UseUnderline = true; w51.Events = ((Gdk.EventMask)(0)); w51.Name = "GtkLabel"; bindings["GtkLabel"] = w51; w48.Add(w51); bindings["GtkHBox"] = w48; w47.Add(w48); bindings["GtkAlignment"] = w47; w46.Add(w47); bindings["ImportImageButton"] = w46; w27.Add(w46); Gtk.Box.BoxChild w55 = ((Gtk.Box.BoxChild)(w27[w46])); w55.Position = 5; w55.Expand = false; w55.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.Button w56 = new Gtk.Button(); w56.UseUnderline = true; w56.CanFocus = true; w56.Events = ((Gdk.EventMask)(0)); w56.Name = "button16"; // Container child button16.Gtk.Container+ContainerChild Gtk.Alignment w57 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w57.Events = ((Gdk.EventMask)(0)); w57.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w58 = new Gtk.HBox(); w58.Spacing = 2; w58.Events = ((Gdk.EventMask)(0)); w58.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w59 = new Gtk.Image(); w59.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-save-as", 16, 0); w59.Events = ((Gdk.EventMask)(0)); w59.Name = "image3"; bindings["image3"] = w59; w58.Add(w59); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w61 = new Gtk.Label(); w61.LabelProp = "_Export"; w61.UseUnderline = true; w61.Events = ((Gdk.EventMask)(0)); w61.Name = "GtkLabel"; bindings["GtkLabel"] = w61; w58.Add(w61); bindings["GtkHBox"] = w58; w57.Add(w58); bindings["GtkAlignment"] = w57; w56.Add(w57); bindings["button16"] = w56; w27.Add(w56); Gtk.Box.BoxChild w65 = ((Gtk.Box.BoxChild)(w27[w56])); w65.Position = 6; w65.Expand = false; w65.Fill = false; bindings["hbox1"] = w27; w15.Add(w27); Gtk.Box.BoxChild w66 = ((Gtk.Box.BoxChild)(w15[w27])); w66.Position = 2; w66.Expand = false; w66.Fill = false; bindings["vbox1"] = w15; cobj.Add(w15); cobj.DefaultWidth = 566; cobj.DefaultHeight = 300; bindings["igaeditorgtk.MainForm"] = cobj; w16.Show(); w21.Show(); w20.Show(); w19.Show(); w25.Show(); w18.Show(); w28.Show(); w30.Show(); w32.Show(); w34.Show(); w39.Show(); w41.Show(); w38.Show(); w37.Show(); w36.Show(); w49.Show(); w51.Show(); w48.Show(); w47.Show(); w46.Show(); w59.Show(); w61.Show(); w58.Show(); w57.Show(); w56.Show(); w27.Show(); w15.Show(); cobj.Show(); cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent"))); w7.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnReloadActivated"))); w8.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnVaccumShrinkDatabaseActivated"))); w9.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnCloseDatabaseActivated"))); w10.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnExitActivated"))); w36.Pressed += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnPreviewImageButtonPressed"))); } else { if ((id == "igaeditorgtk.OpenWindow")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget igaeditorgtk.OpenWindow cobj.Title = "IGA Ad Cache Editor (GTK) by micolous"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "igaeditorgtk.OpenWindow"; // Container child igaeditorgtk.OpenWindow.Gtk.Container+ContainerChild Gtk.VBox w1 = new Gtk.VBox(); w1.Events = ((Gdk.EventMask)(0)); w1.Name = "vbox1"; // Container child vbox1.Gtk.Box+BoxChild Gtk.Label w2 = new Gtk.Label(); w2.LabelProp = "Welcome to IGA Ad Cache Editor.\n\nPlease select the ad cache file to open, otherwise known as \"icontent.cache\"."; w2.Wrap = true; w2.Justify = ((Gtk.Justification)(3)); w2.Events = ((Gdk.EventMask)(0)); w2.Name = "label1"; bindings["label1"] = w2; w1.Add(w2); Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(w1[w2])); w3.Position = 0; w3.Expand = false; w3.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.FileChooserWidget w4 = new Gtk.FileChooserWidget(((Gtk.FileChooserAction)(0))); w4.Events = ((Gdk.EventMask)(0)); w4.Name = "FileChooserControl"; bindings["FileChooserControl"] = w4; w1.Add(w4); Gtk.Box.BoxChild w5 = ((Gtk.Box.BoxChild)(w1[w4])); w5.Position = 1; // Container child vbox1.Gtk.Box+BoxChild Gtk.HBox w6 = new Gtk.HBox(); w6.Spacing = 2; w6.BorderWidth = ((uint)(1)); w6.Events = ((Gdk.EventMask)(0)); w6.Name = "hbox2"; // Container child hbox2.Gtk.Box+BoxChild Gtk.Alignment w7 = new Gtk.Alignment(0.5F, 0.5F, 1F, 1F); w7.Events = ((Gdk.EventMask)(0)); w7.Name = "alignment3"; bindings["alignment3"] = w7; w6.Add(w7); Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(w6[w7])); w8.Position = 0; // Container child hbox2.Gtk.Box+BoxChild Gtk.Button w9 = new Gtk.Button(); w9.UseStock = true; w9.UseUnderline = true; w9.CanFocus = true; w9.Events = ((Gdk.EventMask)(0)); w9.Name = "OpenDatabaseButton"; w9.Label = "gtk-open"; bindings["OpenDatabaseButton"] = w9; w6.Add(w9); Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(w6[w9])); w10.Position = 1; w10.Expand = false; w10.Fill = false; bindings["hbox2"] = w6; w1.Add(w6); Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(w1[w6])); w11.Position = 2; w11.Expand = false; w11.Fill = false; bindings["vbox1"] = w1; cobj.Add(w1); cobj.DefaultWidth = 611; cobj.DefaultHeight = 407; bindings["igaeditorgtk.OpenWindow"] = cobj; w2.Show(); w4.Show(); w7.Show(); w9.Show(); w6.Show(); w1.Show(); cobj.Show(); cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent"))); w4.FileActivated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFileChooserControlFileActivated"))); w9.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnOpenDatabaseButtonClicked"))); } else { if ((id == "igaeditorgtk.SimpleMessageBox")) { Gtk.Dialog cobj = ((Gtk.Dialog)(obj)); // Widget igaeditorgtk.SimpleMessageBox cobj.Title = "IGA Ad Cache Editor"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.HasSeparator = false; cobj.Events = ((Gdk.EventMask)(256)); cobj.Name = "igaeditorgtk.SimpleMessageBox"; // Internal child igaeditorgtk.SimpleMessageBox.VBox Gtk.VBox w1 = cobj.VBox; w1.BorderWidth = ((uint)(2)); w1.Events = ((Gdk.EventMask)(256)); w1.Name = "dialog_VBox"; // Container child dialog_VBox.Gtk.Box+BoxChild Gtk.TextView w2 = new Gtk.TextView(); w2.WrapMode = ((Gtk.WrapMode)(2)); w2.Editable = false; w2.Justification = ((Gtk.Justification)(3)); w2.CanFocus = true; w2.Events = ((Gdk.EventMask)(0)); w2.Name = "MessageTextBox"; bindings["MessageTextBox"] = w2; w1.Add(w2); Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(w1[w2])); w3.Position = 0; bindings["dialog_VBox"] = w1; // Internal child igaeditorgtk.SimpleMessageBox.ActionArea Gtk.HButtonBox w4 = cobj.ActionArea; w4.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w4.Spacing = 10; w4.BorderWidth = ((uint)(5)); w4.Events = ((Gdk.EventMask)(256)); w4.Name = "igaeditorgtk.SimpleMessageBox_ActionArea"; // Container child igaeditorgtk.SimpleMessageBox_ActionArea.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w5 = new Gtk.Button(); w5.UseStock = true; w5.UseUnderline = true; w5.CanFocus = true; w5.Events = ((Gdk.EventMask)(0)); w5.Name = "OkayButton"; w5.CanDefault = true; w5.Label = "gtk-ok"; bindings["OkayButton"] = w5; cobj.AddActionWidget(w5, -7); Gtk.ButtonBox.ButtonBoxChild w6 = ((Gtk.ButtonBox.ButtonBoxChild)(w4[w5])); w6.Expand = false; w6.Fill = false; bindings["igaeditorgtk.SimpleMessageBox_ActionArea"] = w4; cobj.DefaultWidth = 400; cobj.DefaultHeight = 300; bindings["igaeditorgtk.SimpleMessageBox"] = cobj; w2.Show(); w1.Show(); w5.Show(); w4.Show(); cobj.Show(); w5.Pressed += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnOkayButtonPressed"))); } } } 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); } } }
public void fill() { Gtk.Button cancel=new Gtk.Button("Cancel scan"); Gtk.VSeparator sep=new Gtk.VSeparator(); cancel.Clicked+=delegate(object sender,EventArgs args) { _fill_canceled=true; }; bar.Add (sep); sep.Show (); bar.Add (cancel); cancel.Show (); bar.Show (); getSheets().Clear (); basedir=MySource.getCueSheetDir(); Hyena.Log.Information ("Base directory="+basedir); if (basedir!=null) { _fill_ready=false; _fill_count=0; _fill_dir_count=0; _fill_canceled=false; _fill_cues.Clear (); _fill_dirs.Clear (); fill (basedir); GLib.Timeout.Add (500,delegate() { if (_fill_ready || _fill_canceled) { try { Hyena.Log.Information("Reload albums"); MySource.getAlbumModel ().Reload (); Hyena.Log.Information(MySource.getAlbumModel ().Count.ToString ()); Hyena.Log.Information("Reload artists"); MySource.getArtistModel ().Reload (); Hyena.Log.Information(MySource.getArtistModel ().Count.ToString ()); Hyena.Log.Information("Reload composers"); MySource.getComposerModel ().Reload (); Hyena.Log.Information(MySource.getComposerModel ().Count.ToString ()); Hyena.Log.Information("Reload genres"); MySource.getGenreModel ().Reload (); Hyena.Log.Information(MySource.getGenreModel ().Count.ToString ()); Hyena.Log.Information("Reload tracks"); MySource.getTrackModel ().Reload (); Hyena.Log.Information("Reload play lists"); MySource.getPlayListsModel().Reload(); Hyena.Log.Information("Reloaded all"); } catch(System.Exception e) { Hyena.Log.Information (e.ToString()); } Hyena.Log.Information("Reloaded"); filling.Text=""; bar.Remove (sep); bar.Remove (cancel); bar.Hide (); FillLibrary (); return false; } else { return true; } }); } }
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); }
public static void Build(object obj, string id) { System.Collections.Hashtable bindings = new System.Collections.Hashtable(); if ((id == "administrator.EditCreateUser")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget administrator.EditCreateUser cobj.Title = "EditCreateUser"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "administrator.EditCreateUser"; cobj.DefaultWidth = 400; cobj.DefaultHeight = 300; bindings["administrator.EditCreateUser"] = cobj; cobj.Show(); } else { if ((id == "administrator.LoginWindow")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget administrator.LoginWindow cobj.Title = "Boxerp Server Administrator"; cobj.WindowPosition = ((Gtk.WindowPosition)(1)); cobj.Modal = true; cobj.Resizable = false; cobj.AllowGrow = false; cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "administrator.LoginWindow"; // Container child administrator.LoginWindow.Gtk.Container+ContainerChild Gtk.VBox w1 = new Gtk.VBox(); w1.BorderWidth = ((uint)(5)); w1.Events = ((Gdk.EventMask)(0)); w1.Name = "vbox1"; // Container child vbox1.Gtk.Box+BoxChild Gtk.HBox w2 = new Gtk.HBox(); w2.Events = ((Gdk.EventMask)(0)); w2.Name = "hbox1"; // Container child hbox1.Gtk.Box+BoxChild Gtk.Label w3 = new Gtk.Label(); w3.LabelProp = "Login:"******"label1"; w3.WidthRequest = 150; bindings["label1"] = w3; w2.Add(w3); Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(w2[w3])); w4.Position = 0; // Container child hbox1.Gtk.Box+BoxChild Gtk.Entry w5 = new Gtk.Entry(); w5.Text = "demo"; w5.IsEditable = true; w5.MaxLength = 100; w5.InvisibleChar = '●'; w5.CanFocus = true; w5.Events = ((Gdk.EventMask)(0)); w5.Name = "entryLogin"; w5.WidthRequest = 200; bindings["entryLogin"] = w5; w2.Add(w5); Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(w2[w5])); w6.Position = 1; w6.Expand = false; w6.Fill = false; bindings["hbox1"] = w2; w1.Add(w2); Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w1[w2])); w7.Position = 0; w7.Expand = false; w7.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.HBox w8 = new Gtk.HBox(); w8.Events = ((Gdk.EventMask)(0)); w8.Name = "hbox2"; w8.WidthRequest = 150; // Container child hbox2.Gtk.Box+BoxChild Gtk.Label w9 = new Gtk.Label(); w9.LabelProp = "Password:"******"label2"; bindings["label2"] = w9; w8.Add(w9); Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(w8[w9])); w10.Position = 0; w10.Fill = false; // Container child hbox2.Gtk.Box+BoxChild Gtk.Entry w11 = new Gtk.Entry(); w11.Text = "pass"; w11.IsEditable = true; w11.Visibility = false; w11.InvisibleChar = '●'; w11.CanFocus = true; w11.Events = ((Gdk.EventMask)(0)); w11.Name = "entryPassword"; w11.WidthRequest = 200; bindings["entryPassword"] = w11; w8.Add(w11); Gtk.Box.BoxChild w12 = ((Gtk.Box.BoxChild)(w8[w11])); w12.Position = 1; w12.Expand = false; w12.Fill = false; bindings["hbox2"] = w8; w1.Add(w8); Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(w1[w8])); w13.Position = 1; // Container child vbox1.Gtk.Box+BoxChild Gtk.HSeparator w14 = new Gtk.HSeparator(); w14.Events = ((Gdk.EventMask)(0)); w14.Name = "hseparator1"; bindings["hseparator1"] = w14; w1.Add(w14); Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(w1[w14])); w15.Position = 2; w15.Expand = false; w15.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.HBox w16 = new Gtk.HBox(); w16.Events = ((Gdk.EventMask)(0)); w16.Name = "hbox3"; // Container child hbox3.Gtk.Box+BoxChild Gtk.Button w17 = new Gtk.Button(); w17.CanFocus = true; w17.Events = ((Gdk.EventMask)(0)); w17.Name = "buttonConnect"; // Container child buttonConnect.Gtk.Container+ContainerChild Gtk.Alignment w18 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w18.Events = ((Gdk.EventMask)(0)); w18.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w19 = new Gtk.HBox(); w19.Spacing = 2; w19.Events = ((Gdk.EventMask)(0)); w19.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w20 = new Gtk.Image(); w20.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-connect", 16, 0); w20.Events = ((Gdk.EventMask)(0)); w20.Name = "image15"; bindings["image15"] = w20; w19.Add(w20); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w22 = new Gtk.Label(); w22.LabelProp = "Connect"; w22.Events = ((Gdk.EventMask)(0)); w22.Name = "GtkLabel"; bindings["GtkLabel"] = w22; w19.Add(w22); bindings["GtkHBox"] = w19; w18.Add(w19); bindings["GtkAlignment"] = w18; w17.Add(w18); bindings["buttonConnect"] = w17; w16.Add(w17); Gtk.Box.BoxChild w26 = ((Gtk.Box.BoxChild)(w16[w17])); w26.PackType = ((Gtk.PackType)(1)); w26.Position = 0; w26.Expand = false; w26.Fill = false; bindings["hbox3"] = w16; w1.Add(w16); Gtk.Box.BoxChild w27 = ((Gtk.Box.BoxChild)(w1[w16])); w27.Position = 3; w27.Expand = false; w27.Fill = false; bindings["vbox1"] = w1; cobj.Add(w1); cobj.DefaultWidth = 370; cobj.DefaultHeight = 129; bindings["administrator.LoginWindow"] = cobj; w3.Show(); w5.Show(); w2.Show(); w9.Show(); w11.Show(); w8.Show(); w14.Show(); w20.Show(); w22.Show(); w19.Show(); w18.Show(); w17.Show(); w16.Show(); w1.Show(); cobj.Show(); cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent"))); w5.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnConnect"))); w11.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnConnect"))); w17.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnConnect"))); } else { if ((id == "administrator.MainWindow")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget administrator.MainWindow cobj.Title = "Boxerp Administrator"; Gtk.UIManager w1 = new Gtk.UIManager(); Gtk.ActionGroup w2 = new Gtk.ActionGroup("Default"); Gtk.Action w3 = new Gtk.Action("File", "File", null, null); w3.ShortLabel = "File"; bindings["File"] = w3; w2.Add(w3, null); Gtk.Action w4 = new Gtk.Action("Exit", "Exit", null, null); w4.ShortLabel = "Exit"; bindings["Exit"] = w4; w2.Add(w4, null); Gtk.Action w5 = new Gtk.Action("Edit", "Edit", null, null); w5.ShortLabel = "Edit"; bindings["Edit"] = w5; w2.Add(w5, null); Gtk.Action w6 = new Gtk.Action("Cut", "Cut", null, null); w6.ShortLabel = "Cut"; bindings["Cut"] = w6; w2.Add(w6, null); Gtk.Action w7 = new Gtk.Action("Copy", "Copy", null, null); w7.ShortLabel = "Copy"; bindings["Copy"] = w7; w2.Add(w7, null); Gtk.Action w8 = new Gtk.Action("Paste", "Paste", null, null); w8.ShortLabel = "Paste"; bindings["Paste"] = w8; w2.Add(w8, null); Gtk.Action w9 = new Gtk.Action("Help", "Help", null, null); w9.ShortLabel = "Help"; bindings["Help"] = w9; w2.Add(w9, null); Gtk.Action w10 = new Gtk.Action("About", "About", null, null); w10.ShortLabel = "About"; bindings["About"] = w10; w2.Add(w10, null); w1.InsertActionGroup(w2, 0); cobj.AddAccelGroup(w1.AccelGroup); cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.DefaultWidth = 800; cobj.DefaultHeight = 600; cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "administrator.MainWindow"; // Container child administrator.MainWindow.Gtk.Container+ContainerChild Gtk.VBox w11 = new Gtk.VBox(); w11.Events = ((Gdk.EventMask)(0)); w11.Name = "vbox1"; // Container child vbox1.Gtk.Box+BoxChild w1.AddUiFromString("<ui><menubar name='menubar1'><menu action='File'><menuitem action='Exit'/></menu><menu action='Edit'><menuitem action='Cut'/><menuitem action='Copy'/><menuitem action='Paste'/></menu><menu action='Help'><menuitem action='About'/></menu></menubar></ui>"); Gtk.MenuBar w12 = ((Gtk.MenuBar)(w1.GetWidget("/menubar1"))); w12.Events = ((Gdk.EventMask)(0)); w12.Name = "menubar1"; bindings["menubar1"] = w12; w11.Add(w12); Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(w11[w12])); w13.Position = 0; w13.Expand = false; w13.Fill = false; // Container child vbox1.Gtk.Box+BoxChild w1.AddUiFromString("<ui><toolbar name='toolbar1'/></ui>"); Gtk.Toolbar w14 = ((Gtk.Toolbar)(w1.GetWidget("/toolbar1"))); w14.ShowArrow = false; w14.ToolbarStyle = ((Gtk.ToolbarStyle)(0)); w14.IconSize = ((Gtk.IconSize)(3)); w14.Events = ((Gdk.EventMask)(0)); w14.Name = "toolbar1"; bindings["toolbar1"] = w14; w11.Add(w14); Gtk.Box.BoxChild w15 = ((Gtk.Box.BoxChild)(w11[w14])); w15.Position = 1; w15.Expand = false; w15.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.VBox w16 = new Gtk.VBox(); w16.BorderWidth = ((uint)(5)); w16.Events = ((Gdk.EventMask)(0)); w16.Name = "vbox2"; // Container child vbox2.Gtk.Box+BoxChild Gtk.HBox w17 = new Gtk.HBox(); w17.Events = ((Gdk.EventMask)(0)); w17.Name = "hbox1"; // Container child hbox1.Gtk.Box+BoxChild Gtk.Label w18 = new Gtk.Label(); w18.LabelProp = "<b>Enterprise:</b>"; w18.UseMarkup = true; w18.Ypad = 6; w18.Events = ((Gdk.EventMask)(256)); w18.Name = "labelEnterprise"; bindings["labelEnterprise"] = w18; w17.Add(w18); Gtk.Box.BoxChild w19 = ((Gtk.Box.BoxChild)(w17[w18])); w19.Position = 0; w19.Expand = false; w19.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.Entry w20 = new Gtk.Entry(); w20.IsEditable = true; w20.InvisibleChar = '●'; w20.CanFocus = true; w20.Events = ((Gdk.EventMask)(0)); w20.Name = "entryEnterprise"; bindings["entryEnterprise"] = w20; w17.Add(w20); Gtk.Box.BoxChild w21 = ((Gtk.Box.BoxChild)(w17[w20])); w21.Position = 1; w21.Expand = false; w21.Fill = false; // Container child hbox1.Gtk.Box+BoxChild Gtk.Button w22 = new Gtk.Button(); Gtk.Tooltips w23 = new Gtk.Tooltips(); w23.SetTip(w22, "Añadir un Hecho", "Añadir un Hecho"); w22.CanFocus = true; w22.Events = ((Gdk.EventMask)(0)); w22.Name = "buttonFindEnterprise"; w22.HasDefault = true; // Container child buttonFindEnterprise.Gtk.Container+ContainerChild Gtk.Alignment w24 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w24.Events = ((Gdk.EventMask)(0)); w24.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w25 = new Gtk.HBox(); w25.Spacing = 2; w25.Events = ((Gdk.EventMask)(0)); w25.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w26 = new Gtk.Image(); w26.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-find", 16, 0); w26.Events = ((Gdk.EventMask)(0)); w26.Name = "image1"; bindings["image1"] = w26; w25.Add(w26); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w28 = new Gtk.Label(); w28.LabelProp = ""; w28.Events = ((Gdk.EventMask)(0)); w28.Name = "GtkLabel"; bindings["GtkLabel"] = w28; w25.Add(w28); bindings["GtkHBox"] = w25; w24.Add(w25); bindings["GtkAlignment"] = w24; w22.Add(w24); bindings["buttonFindEnterprise"] = w22; w17.Add(w22); Gtk.Box.BoxChild w32 = ((Gtk.Box.BoxChild)(w17[w22])); w32.Position = 2; w32.Expand = false; w32.Fill = false; bindings["hbox1"] = w17; w16.Add(w17); Gtk.Box.BoxChild w33 = ((Gtk.Box.BoxChild)(w16[w17])); w33.Position = 0; w33.Expand = false; w33.Fill = false; // Container child vbox2.Gtk.Box+BoxChild Gtk.ScrolledWindow w34 = new Gtk.ScrolledWindow(); w34.VscrollbarPolicy = ((Gtk.PolicyType)(1)); w34.HscrollbarPolicy = ((Gtk.PolicyType)(1)); w34.CanFocus = true; w34.Events = ((Gdk.EventMask)(0)); w34.Name = "scrolledwindow1"; // Container child scrolledwindow1.Gtk.Container+ContainerChild Gtk.Viewport w35 = new Gtk.Viewport(); w35.ShadowType = ((Gtk.ShadowType)(0)); w35.Events = ((Gdk.EventMask)(0)); w35.Name = "GtkViewport"; // Container child GtkViewport.Gtk.Container+ContainerChild Boxerp.Client.GtkSharp.Lib.FilteredListView w36 = new Boxerp.Client.GtkSharp.Lib.FilteredListView(); w36.Events = ((Gdk.EventMask)(256)); w36.Name = "ftreeviewEnterprises"; bindings["ftreeviewEnterprises"] = w36; w35.Add(w36); bindings["GtkViewport"] = w35; w34.Add(w35); bindings["scrolledwindow1"] = w34; w16.Add(w34); Gtk.Box.BoxChild w39 = ((Gtk.Box.BoxChild)(w16[w34])); w39.Position = 1; // Container child vbox2.Gtk.Box+BoxChild Gtk.HBox w40 = new Gtk.HBox(); w40.Events = ((Gdk.EventMask)(0)); w40.Name = "hbox14"; // Container child hbox14.Gtk.Box+BoxChild Gtk.Button w41 = new Gtk.Button(); w23.SetTip(w41, "Añadir un Hecho", "Añadir un Hecho"); w41.CanFocus = true; w41.Events = ((Gdk.EventMask)(0)); w41.Name = "buttonNewEnterprise"; w41.HasDefault = true; // Container child buttonNewEnterprise.Gtk.Container+ContainerChild Gtk.Alignment w42 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w42.Events = ((Gdk.EventMask)(0)); w42.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w43 = new Gtk.HBox(); w43.Spacing = 2; w43.Events = ((Gdk.EventMask)(0)); w43.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w44 = new Gtk.Image(); w44.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-new", 16, 0); w44.Events = ((Gdk.EventMask)(0)); w44.Name = "image2"; bindings["image2"] = w44; w43.Add(w44); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w46 = new Gtk.Label(); w46.LabelProp = ""; w46.Events = ((Gdk.EventMask)(0)); w46.Name = "GtkLabel"; bindings["GtkLabel"] = w46; w43.Add(w46); bindings["GtkHBox"] = w43; w42.Add(w43); bindings["GtkAlignment"] = w42; w41.Add(w42); bindings["buttonNewEnterprise"] = w41; w40.Add(w41); Gtk.Box.BoxChild w50 = ((Gtk.Box.BoxChild)(w40[w41])); w50.PackType = ((Gtk.PackType)(1)); w50.Position = 0; w50.Expand = false; w50.Fill = false; // Container child hbox14.Gtk.Box+BoxChild Gtk.Button w51 = new Gtk.Button(); w23.SetTip(w51, "Editar el Hecho", "Editar el Hecho"); w51.CanFocus = true; w51.Events = ((Gdk.EventMask)(0)); w51.Name = "buttonEditEnterprise"; // Container child buttonEditEnterprise.Gtk.Container+ContainerChild Gtk.Alignment w52 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w52.Events = ((Gdk.EventMask)(0)); w52.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w53 = new Gtk.HBox(); w53.Spacing = 2; w53.Events = ((Gdk.EventMask)(0)); w53.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w54 = new Gtk.Image(); w54.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-edit", 16, 0); w54.Events = ((Gdk.EventMask)(0)); w54.Name = "image3"; bindings["image3"] = w54; w53.Add(w54); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w56 = new Gtk.Label(); w56.LabelProp = ""; w56.Events = ((Gdk.EventMask)(0)); w56.Name = "GtkLabel"; bindings["GtkLabel"] = w56; w53.Add(w56); bindings["GtkHBox"] = w53; w52.Add(w53); bindings["GtkAlignment"] = w52; w51.Add(w52); bindings["buttonEditEnterprise"] = w51; w40.Add(w51); Gtk.Box.BoxChild w60 = ((Gtk.Box.BoxChild)(w40[w51])); w60.PackType = ((Gtk.PackType)(1)); w60.Position = 1; w60.Expand = false; w60.Fill = false; // Container child hbox14.Gtk.Box+BoxChild Gtk.Button w61 = new Gtk.Button(); w23.SetTip(w61, "Quitar el Hecho", "Quitar el Hecho"); w61.CanFocus = true; w61.Events = ((Gdk.EventMask)(0)); w61.Name = "buttonDelEnterprise"; // Container child buttonDelEnterprise.Gtk.Container+ContainerChild Gtk.Alignment w62 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w62.Events = ((Gdk.EventMask)(0)); w62.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w63 = new Gtk.HBox(); w63.Spacing = 2; w63.Events = ((Gdk.EventMask)(0)); w63.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w64 = new Gtk.Image(); w64.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-delete", 16, 0); w64.Events = ((Gdk.EventMask)(0)); w64.Name = "image4"; bindings["image4"] = w64; w63.Add(w64); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w66 = new Gtk.Label(); w66.LabelProp = ""; w66.Events = ((Gdk.EventMask)(0)); w66.Name = "GtkLabel"; bindings["GtkLabel"] = w66; w63.Add(w66); bindings["GtkHBox"] = w63; w62.Add(w63); bindings["GtkAlignment"] = w62; w61.Add(w62); bindings["buttonDelEnterprise"] = w61; w40.Add(w61); Gtk.Box.BoxChild w70 = ((Gtk.Box.BoxChild)(w40[w61])); w70.PackType = ((Gtk.PackType)(1)); w70.Position = 2; w70.Expand = false; w70.Fill = false; bindings["hbox14"] = w40; w16.Add(w40); Gtk.Box.BoxChild w71 = ((Gtk.Box.BoxChild)(w16[w40])); w71.Position = 2; w71.Expand = false; w71.Fill = false; bindings["vbox2"] = w16; w11.Add(w16); Gtk.Box.BoxChild w72 = ((Gtk.Box.BoxChild)(w11[w16])); w72.Position = 2; w72.Expand = false; w72.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.HSeparator w73 = new Gtk.HSeparator(); w73.Events = ((Gdk.EventMask)(0)); w73.Name = "hseparator2"; bindings["hseparator2"] = w73; w11.Add(w73); Gtk.Box.BoxChild w74 = ((Gtk.Box.BoxChild)(w11[w73])); w74.Position = 3; w74.Expand = false; w74.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.HBox w75 = new Gtk.HBox(); w75.Homogeneous = true; w75.Events = ((Gdk.EventMask)(0)); w75.Name = "hbox2"; // Container child hbox2.Gtk.Box+BoxChild Gtk.VBox w76 = new Gtk.VBox(); w76.BorderWidth = ((uint)(5)); w76.Events = ((Gdk.EventMask)(0)); w76.Name = "vbox3"; // Container child vbox3.Gtk.Box+BoxChild Gtk.HBox w77 = new Gtk.HBox(); w77.Events = ((Gdk.EventMask)(0)); w77.Name = "hbox3"; // Container child hbox3.Gtk.Box+BoxChild Gtk.Label w78 = new Gtk.Label(); w78.LabelProp = "<b>User:</b>"; w78.UseMarkup = true; w78.Ypad = 6; w78.Events = ((Gdk.EventMask)(256)); w78.Name = "labelUser"; bindings["labelUser"] = w78; w77.Add(w78); Gtk.Box.BoxChild w79 = ((Gtk.Box.BoxChild)(w77[w78])); w79.Position = 0; w79.Expand = false; w79.Fill = false; // Container child hbox3.Gtk.Box+BoxChild Gtk.Entry w80 = new Gtk.Entry(); w80.IsEditable = true; w80.InvisibleChar = '●'; w80.CanFocus = true; w80.Events = ((Gdk.EventMask)(0)); w80.Name = "entryUser"; bindings["entryUser"] = w80; w77.Add(w80); Gtk.Box.BoxChild w81 = ((Gtk.Box.BoxChild)(w77[w80])); w81.Position = 1; w81.Expand = false; w81.Fill = false; // Container child hbox3.Gtk.Box+BoxChild Gtk.Button w82 = new Gtk.Button(); w23.SetTip(w82, "Añadir un Hecho", "Añadir un Hecho"); w82.CanFocus = true; w82.Events = ((Gdk.EventMask)(0)); w82.Name = "buttonFindUser"; w82.HasDefault = true; // Container child buttonFindUser.Gtk.Container+ContainerChild Gtk.Alignment w83 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w83.Events = ((Gdk.EventMask)(0)); w83.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w84 = new Gtk.HBox(); w84.Spacing = 2; w84.Events = ((Gdk.EventMask)(0)); w84.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w85 = new Gtk.Image(); w85.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-find", 16, 0); w85.Events = ((Gdk.EventMask)(0)); w85.Name = "image5"; bindings["image5"] = w85; w84.Add(w85); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w87 = new Gtk.Label(); w87.LabelProp = ""; w87.Events = ((Gdk.EventMask)(0)); w87.Name = "GtkLabel"; bindings["GtkLabel"] = w87; w84.Add(w87); bindings["GtkHBox"] = w84; w83.Add(w84); bindings["GtkAlignment"] = w83; w82.Add(w83); bindings["buttonFindUser"] = w82; w77.Add(w82); Gtk.Box.BoxChild w91 = ((Gtk.Box.BoxChild)(w77[w82])); w91.Position = 2; w91.Expand = false; w91.Fill = false; bindings["hbox3"] = w77; w76.Add(w77); Gtk.Box.BoxChild w92 = ((Gtk.Box.BoxChild)(w76[w77])); w92.Position = 0; w92.Expand = false; w92.Fill = false; // Container child vbox3.Gtk.Box+BoxChild Gtk.ScrolledWindow w93 = new Gtk.ScrolledWindow(); w93.VscrollbarPolicy = ((Gtk.PolicyType)(1)); w93.HscrollbarPolicy = ((Gtk.PolicyType)(1)); w93.CanFocus = true; w93.Events = ((Gdk.EventMask)(0)); w93.Name = "scrolledwindow2"; // Container child scrolledwindow2.Gtk.Container+ContainerChild Gtk.Viewport w94 = new Gtk.Viewport(); w94.ShadowType = ((Gtk.ShadowType)(0)); w94.Events = ((Gdk.EventMask)(0)); w94.Name = "GtkViewport1"; // Container child GtkViewport1.Gtk.Container+ContainerChild Boxerp.Client.GtkSharp.Lib.FilteredListView w95 = new Boxerp.Client.GtkSharp.Lib.FilteredListView(); w95.Events = ((Gdk.EventMask)(256)); w95.Name = "ftreeviewUsers"; bindings["ftreeviewUsers"] = w95; w94.Add(w95); bindings["GtkViewport1"] = w94; w93.Add(w94); bindings["scrolledwindow2"] = w93; w76.Add(w93); Gtk.Box.BoxChild w98 = ((Gtk.Box.BoxChild)(w76[w93])); w98.Position = 1; // Container child vbox3.Gtk.Box+BoxChild Gtk.HBox w99 = new Gtk.HBox(); w99.Events = ((Gdk.EventMask)(0)); w99.Name = "hbox15"; // Container child hbox15.Gtk.Box+BoxChild Gtk.Button w100 = new Gtk.Button(); w23.SetTip(w100, "Añadir un Hecho", "Añadir un Hecho"); w100.CanFocus = true; w100.Events = ((Gdk.EventMask)(0)); w100.Name = "buttonNewUser"; w100.HasDefault = true; // Container child buttonNewUser.Gtk.Container+ContainerChild Gtk.Alignment w101 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w101.Events = ((Gdk.EventMask)(0)); w101.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w102 = new Gtk.HBox(); w102.Spacing = 2; w102.Events = ((Gdk.EventMask)(0)); w102.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w103 = new Gtk.Image(); w103.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-new", 16, 0); w103.Events = ((Gdk.EventMask)(0)); w103.Name = "image6"; bindings["image6"] = w103; w102.Add(w103); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w105 = new Gtk.Label(); w105.LabelProp = ""; w105.Events = ((Gdk.EventMask)(0)); w105.Name = "GtkLabel"; bindings["GtkLabel"] = w105; w102.Add(w105); bindings["GtkHBox"] = w102; w101.Add(w102); bindings["GtkAlignment"] = w101; w100.Add(w101); bindings["buttonNewUser"] = w100; w99.Add(w100); Gtk.Box.BoxChild w109 = ((Gtk.Box.BoxChild)(w99[w100])); w109.PackType = ((Gtk.PackType)(1)); w109.Position = 0; w109.Expand = false; w109.Fill = false; // Container child hbox15.Gtk.Box+BoxChild Gtk.Button w110 = new Gtk.Button(); w23.SetTip(w110, "Editar el Hecho", "Editar el Hecho"); w110.CanFocus = true; w110.Events = ((Gdk.EventMask)(0)); w110.Name = "buttonEditUser"; // Container child buttonEditUser.Gtk.Container+ContainerChild Gtk.Alignment w111 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w111.Events = ((Gdk.EventMask)(0)); w111.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w112 = new Gtk.HBox(); w112.Spacing = 2; w112.Events = ((Gdk.EventMask)(0)); w112.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w113 = new Gtk.Image(); w113.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-edit", 16, 0); w113.Events = ((Gdk.EventMask)(0)); w113.Name = "image7"; bindings["image7"] = w113; w112.Add(w113); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w115 = new Gtk.Label(); w115.LabelProp = ""; w115.Events = ((Gdk.EventMask)(0)); w115.Name = "GtkLabel"; bindings["GtkLabel"] = w115; w112.Add(w115); bindings["GtkHBox"] = w112; w111.Add(w112); bindings["GtkAlignment"] = w111; w110.Add(w111); bindings["buttonEditUser"] = w110; w99.Add(w110); Gtk.Box.BoxChild w119 = ((Gtk.Box.BoxChild)(w99[w110])); w119.PackType = ((Gtk.PackType)(1)); w119.Position = 1; w119.Expand = false; w119.Fill = false; // Container child hbox15.Gtk.Box+BoxChild Gtk.Button w120 = new Gtk.Button(); w23.SetTip(w120, "Quitar el Hecho", "Quitar el Hecho"); w120.CanFocus = true; w120.Events = ((Gdk.EventMask)(0)); w120.Name = "buttonDelUser"; // Container child buttonDelUser.Gtk.Container+ContainerChild Gtk.Alignment w121 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w121.Events = ((Gdk.EventMask)(0)); w121.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w122 = new Gtk.HBox(); w122.Spacing = 2; w122.Events = ((Gdk.EventMask)(0)); w122.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w123 = new Gtk.Image(); w123.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-delete", 16, 0); w123.Events = ((Gdk.EventMask)(0)); w123.Name = "image8"; bindings["image8"] = w123; w122.Add(w123); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w125 = new Gtk.Label(); w125.LabelProp = ""; w125.Events = ((Gdk.EventMask)(0)); w125.Name = "GtkLabel"; bindings["GtkLabel"] = w125; w122.Add(w125); bindings["GtkHBox"] = w122; w121.Add(w122); bindings["GtkAlignment"] = w121; w120.Add(w121); bindings["buttonDelUser"] = w120; w99.Add(w120); Gtk.Box.BoxChild w129 = ((Gtk.Box.BoxChild)(w99[w120])); w129.PackType = ((Gtk.PackType)(1)); w129.Position = 2; w129.Expand = false; w129.Fill = false; bindings["hbox15"] = w99; w76.Add(w99); Gtk.Box.BoxChild w130 = ((Gtk.Box.BoxChild)(w76[w99])); w130.Position = 2; w130.Expand = false; w130.Fill = false; bindings["vbox3"] = w76; w75.Add(w76); Gtk.Box.BoxChild w131 = ((Gtk.Box.BoxChild)(w75[w76])); w131.Position = 0; // Container child hbox2.Gtk.Box+BoxChild Gtk.VBox w132 = new Gtk.VBox(); w132.BorderWidth = ((uint)(5)); w132.Events = ((Gdk.EventMask)(0)); w132.Name = "vbox4"; // Container child vbox4.Gtk.Box+BoxChild Gtk.HBox w133 = new Gtk.HBox(); w133.Events = ((Gdk.EventMask)(0)); w133.Name = "hbox4"; // Container child hbox4.Gtk.Box+BoxChild Gtk.Label w134 = new Gtk.Label(); w134.LabelProp = "<b>Group:</b>"; w134.UseMarkup = true; w134.Ypad = 6; w134.Events = ((Gdk.EventMask)(256)); w134.Name = "labelGroup"; bindings["labelGroup"] = w134; w133.Add(w134); Gtk.Box.BoxChild w135 = ((Gtk.Box.BoxChild)(w133[w134])); w135.Position = 0; w135.Expand = false; w135.Fill = false; // Container child hbox4.Gtk.Box+BoxChild Gtk.Entry w136 = new Gtk.Entry(); w136.IsEditable = true; w136.InvisibleChar = '●'; w136.CanFocus = true; w136.Events = ((Gdk.EventMask)(0)); w136.Name = "entryGroup"; bindings["entryGroup"] = w136; w133.Add(w136); Gtk.Box.BoxChild w137 = ((Gtk.Box.BoxChild)(w133[w136])); w137.Position = 1; w137.Expand = false; w137.Fill = false; // Container child hbox4.Gtk.Box+BoxChild Gtk.Button w138 = new Gtk.Button(); w23.SetTip(w138, "Añadir un Hecho", "Añadir un Hecho"); w138.CanFocus = true; w138.Events = ((Gdk.EventMask)(0)); w138.Name = "buttonFindGroup"; w138.HasDefault = true; // Container child buttonFindGroup.Gtk.Container+ContainerChild Gtk.Alignment w139 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w139.Events = ((Gdk.EventMask)(0)); w139.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w140 = new Gtk.HBox(); w140.Spacing = 2; w140.Events = ((Gdk.EventMask)(0)); w140.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w141 = new Gtk.Image(); w141.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-find", 16, 0); w141.Events = ((Gdk.EventMask)(0)); w141.Name = "image9"; bindings["image9"] = w141; w140.Add(w141); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w143 = new Gtk.Label(); w143.LabelProp = ""; w143.Events = ((Gdk.EventMask)(0)); w143.Name = "GtkLabel"; bindings["GtkLabel"] = w143; w140.Add(w143); bindings["GtkHBox"] = w140; w139.Add(w140); bindings["GtkAlignment"] = w139; w138.Add(w139); bindings["buttonFindGroup"] = w138; w133.Add(w138); Gtk.Box.BoxChild w147 = ((Gtk.Box.BoxChild)(w133[w138])); w147.Position = 2; w147.Expand = false; w147.Fill = false; bindings["hbox4"] = w133; w132.Add(w133); Gtk.Box.BoxChild w148 = ((Gtk.Box.BoxChild)(w132[w133])); w148.Position = 0; w148.Expand = false; w148.Fill = false; // Container child vbox4.Gtk.Box+BoxChild Gtk.ScrolledWindow w149 = new Gtk.ScrolledWindow(); w149.VscrollbarPolicy = ((Gtk.PolicyType)(1)); w149.HscrollbarPolicy = ((Gtk.PolicyType)(1)); w149.CanFocus = true; w149.Events = ((Gdk.EventMask)(0)); w149.Name = "scrolledwindow3"; // Container child scrolledwindow3.Gtk.Container+ContainerChild Gtk.Viewport w150 = new Gtk.Viewport(); w150.ShadowType = ((Gtk.ShadowType)(0)); w150.Events = ((Gdk.EventMask)(0)); w150.Name = "GtkViewport2"; // Container child GtkViewport2.Gtk.Container+ContainerChild Boxerp.Client.GtkSharp.Lib.FilteredListView w151 = new Boxerp.Client.GtkSharp.Lib.FilteredListView(); w151.Events = ((Gdk.EventMask)(256)); w151.Name = "ftreeviewGroups"; bindings["ftreeviewGroups"] = w151; w150.Add(w151); bindings["GtkViewport2"] = w150; w149.Add(w150); bindings["scrolledwindow3"] = w149; w132.Add(w149); Gtk.Box.BoxChild w154 = ((Gtk.Box.BoxChild)(w132[w149])); w154.Position = 1; // Container child vbox4.Gtk.Box+BoxChild Gtk.HBox w155 = new Gtk.HBox(); w155.Events = ((Gdk.EventMask)(0)); w155.Name = "hbox16"; // Container child hbox16.Gtk.Box+BoxChild Gtk.Button w156 = new Gtk.Button(); w23.SetTip(w156, "Añadir un Hecho", "Añadir un Hecho"); w156.CanFocus = true; w156.Events = ((Gdk.EventMask)(0)); w156.Name = "buttonNewGroup"; w156.HasDefault = true; // Container child buttonNewGroup.Gtk.Container+ContainerChild Gtk.Alignment w157 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w157.Events = ((Gdk.EventMask)(0)); w157.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w158 = new Gtk.HBox(); w158.Spacing = 2; w158.Events = ((Gdk.EventMask)(0)); w158.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w159 = new Gtk.Image(); w159.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-new", 16, 0); w159.Events = ((Gdk.EventMask)(0)); w159.Name = "image10"; bindings["image10"] = w159; w158.Add(w159); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w161 = new Gtk.Label(); w161.LabelProp = ""; w161.Events = ((Gdk.EventMask)(0)); w161.Name = "GtkLabel"; bindings["GtkLabel"] = w161; w158.Add(w161); bindings["GtkHBox"] = w158; w157.Add(w158); bindings["GtkAlignment"] = w157; w156.Add(w157); bindings["buttonNewGroup"] = w156; w155.Add(w156); Gtk.Box.BoxChild w165 = ((Gtk.Box.BoxChild)(w155[w156])); w165.PackType = ((Gtk.PackType)(1)); w165.Position = 0; w165.Expand = false; w165.Fill = false; // Container child hbox16.Gtk.Box+BoxChild Gtk.Button w166 = new Gtk.Button(); w23.SetTip(w166, "Editar el Hecho", "Editar el Hecho"); w166.CanFocus = true; w166.Events = ((Gdk.EventMask)(0)); w166.Name = "buttonEditGroup"; // Container child buttonEditGroup.Gtk.Container+ContainerChild Gtk.Alignment w167 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w167.Events = ((Gdk.EventMask)(0)); w167.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w168 = new Gtk.HBox(); w168.Spacing = 2; w168.Events = ((Gdk.EventMask)(0)); w168.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w169 = new Gtk.Image(); w169.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-edit", 16, 0); w169.Events = ((Gdk.EventMask)(0)); w169.Name = "image11"; bindings["image11"] = w169; w168.Add(w169); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w171 = new Gtk.Label(); w171.LabelProp = ""; w171.Events = ((Gdk.EventMask)(0)); w171.Name = "GtkLabel"; bindings["GtkLabel"] = w171; w168.Add(w171); bindings["GtkHBox"] = w168; w167.Add(w168); bindings["GtkAlignment"] = w167; w166.Add(w167); bindings["buttonEditGroup"] = w166; w155.Add(w166); Gtk.Box.BoxChild w175 = ((Gtk.Box.BoxChild)(w155[w166])); w175.PackType = ((Gtk.PackType)(1)); w175.Position = 1; w175.Expand = false; w175.Fill = false; // Container child hbox16.Gtk.Box+BoxChild Gtk.Button w176 = new Gtk.Button(); w23.SetTip(w176, "Quitar el Hecho", "Quitar el Hecho"); w176.CanFocus = true; w176.Events = ((Gdk.EventMask)(0)); w176.Name = "buttonDelGroup"; // Container child buttonDelGroup.Gtk.Container+ContainerChild Gtk.Alignment w177 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w177.Events = ((Gdk.EventMask)(0)); w177.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w178 = new Gtk.HBox(); w178.Spacing = 2; w178.Events = ((Gdk.EventMask)(0)); w178.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w179 = new Gtk.Image(); w179.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-delete", 16, 0); w179.Events = ((Gdk.EventMask)(0)); w179.Name = "image12"; bindings["image12"] = w179; w178.Add(w179); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w181 = new Gtk.Label(); w181.LabelProp = ""; w181.Events = ((Gdk.EventMask)(0)); w181.Name = "GtkLabel"; bindings["GtkLabel"] = w181; w178.Add(w181); bindings["GtkHBox"] = w178; w177.Add(w178); bindings["GtkAlignment"] = w177; w176.Add(w177); bindings["buttonDelGroup"] = w176; w155.Add(w176); Gtk.Box.BoxChild w185 = ((Gtk.Box.BoxChild)(w155[w176])); w185.PackType = ((Gtk.PackType)(1)); w185.Position = 2; w185.Expand = false; w185.Fill = false; bindings["hbox16"] = w155; w132.Add(w155); Gtk.Box.BoxChild w186 = ((Gtk.Box.BoxChild)(w132[w155])); w186.Position = 2; w186.Expand = false; w186.Fill = false; bindings["vbox4"] = w132; w75.Add(w132); Gtk.Box.BoxChild w187 = ((Gtk.Box.BoxChild)(w75[w132])); w187.Position = 1; bindings["hbox2"] = w75; w11.Add(w75); Gtk.Box.BoxChild w188 = ((Gtk.Box.BoxChild)(w11[w75])); w188.Position = 4; // Container child vbox1.Gtk.Box+BoxChild Gtk.HSeparator w189 = new Gtk.HSeparator(); w189.Events = ((Gdk.EventMask)(0)); w189.Name = "hseparator1"; bindings["hseparator1"] = w189; w11.Add(w189); Gtk.Box.BoxChild w190 = ((Gtk.Box.BoxChild)(w11[w189])); w190.Position = 6; w190.Expand = false; w190.Fill = false; // Container child vbox1.Gtk.Box+BoxChild Gtk.Statusbar w191 = new Gtk.Statusbar(); w191.Events = ((Gdk.EventMask)(0)); w191.Name = "statusbar1"; bindings["statusbar1"] = w191; w11.Add(w191); Gtk.Box.BoxChild w192 = ((Gtk.Box.BoxChild)(w11[w191])); w192.Position = 7; w192.Expand = false; w192.Fill = false; bindings["vbox1"] = w11; cobj.Add(w11); bindings["administrator.MainWindow"] = cobj; w12.Show(); w14.Show(); w18.Show(); w20.Show(); w26.Show(); w28.Show(); w25.Show(); w24.Show(); w22.Show(); w17.Show(); w36.Show(); w35.Show(); w34.Show(); w44.Show(); w46.Show(); w43.Show(); w42.Show(); w41.Show(); w54.Show(); w56.Show(); w53.Show(); w52.Show(); w51.Show(); w64.Show(); w66.Show(); w63.Show(); w62.Show(); w61.Show(); w40.Show(); w16.Show(); w73.Show(); w78.Show(); w80.Show(); w85.Show(); w87.Show(); w84.Show(); w83.Show(); w82.Show(); w77.Show(); w95.Show(); w94.Show(); w93.Show(); w103.Show(); w105.Show(); w102.Show(); w101.Show(); w100.Show(); w113.Show(); w115.Show(); w112.Show(); w111.Show(); w110.Show(); w123.Show(); w125.Show(); w122.Show(); w121.Show(); w120.Show(); w99.Show(); w76.Show(); w134.Show(); w136.Show(); w141.Show(); w143.Show(); w140.Show(); w139.Show(); w138.Show(); w133.Show(); w151.Show(); w150.Show(); w149.Show(); w159.Show(); w161.Show(); w158.Show(); w157.Show(); w156.Show(); w169.Show(); w171.Show(); w168.Show(); w167.Show(); w166.Show(); w179.Show(); w181.Show(); w178.Show(); w177.Show(); w176.Show(); w155.Show(); w132.Show(); w75.Show(); w189.Show(); w191.Show(); w11.Show(); cobj.Show(); cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnDeleteEvent"))); w20.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindEnterprise"))); w22.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindEnterprise"))); w61.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnDelEnterpriseClicked"))); w51.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnEditEnterpriseClicked"))); w41.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnNewEnterpriseClicked"))); w80.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindUser"))); w82.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindUser"))); w120.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnDelUserClicked"))); w110.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnEditUserClicked"))); w100.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnNewUserClicked"))); w136.Activated += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindGroup"))); w138.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnFindGroup"))); w176.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnDelGroupClicked"))); w166.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnEditGroupClicked"))); w156.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnNewGroupClicked"))); } else { if ((id == "administrator.EditUserWindow")) { Gtk.Window cobj = ((Gtk.Window)(obj)); // Widget administrator.EditUserWindow cobj.Title = "User"; cobj.WindowPosition = ((Gtk.WindowPosition)(4)); cobj.Events = ((Gdk.EventMask)(0)); cobj.Name = "administrator.EditUserWindow"; // Container child administrator.EditUserWindow.Gtk.Container+ContainerChild Gtk.VBox w1 = new Gtk.VBox(); w1.Events = ((Gdk.EventMask)(0)); w1.Name = "vbox1"; // Container child vbox1.Gtk.Box+BoxChild Gtk.Notebook w2 = new Gtk.Notebook(); w2.CanFocus = true; w2.Events = ((Gdk.EventMask)(0)); w2.Name = "notebook1"; // Container child notebook1.Gtk.Notebook+NotebookChild Gtk.VBox w3 = new Gtk.VBox(); w3.Events = ((Gdk.EventMask)(0)); w3.Name = "vbox2"; // Container child vbox2.Gtk.Box+BoxChild Gtk.Table w4 = new Gtk.Table(((uint)(5)), ((uint)(2)), false); w4.RowSpacing = ((uint)(1)); w4.ColumnSpacing = ((uint)(5)); w4.BorderWidth = ((uint)(5)); w4.Events = ((Gdk.EventMask)(0)); w4.Name = "table1"; // Container child table1.Gtk.Table+TableChild Gtk.CheckButton w5 = new Gtk.CheckButton(); w5.Label = ""; w5.DrawIndicator = true; w5.CanFocus = true; w5.Events = ((Gdk.EventMask)(0)); w5.Name = "checkActive"; bindings["checkActive"] = w5; w4.Add(w5); Gtk.Table.TableChild w6 = ((Gtk.Table.TableChild)(w4[w5])); w6.BottomAttach = ((uint)(5)); w6.LeftAttach = ((uint)(1)); w6.RightAttach = ((uint)(2)); w6.TopAttach = ((uint)(4)); w6.YOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Label w7 = new Gtk.Label(); w7.LabelProp = "Active:"; w7.Events = ((Gdk.EventMask)(0)); w7.Name = "label4"; bindings["label4"] = w7; w4.Add(w7); Gtk.Table.TableChild w8 = ((Gtk.Table.TableChild)(w4[w7])); w8.BottomAttach = ((uint)(5)); w8.TopAttach = ((uint)(4)); w8.YOptions = ((Gtk.AttachOptions)(4)); w8.XOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Entry w9 = new Gtk.Entry(); w9.IsEditable = true; w9.Visibility = false; w9.InvisibleChar = '●'; w9.CanFocus = true; w9.Events = ((Gdk.EventMask)(0)); w9.Name = "entryPassword"; bindings["entryPassword"] = w9; w4.Add(w9); Gtk.Table.TableChild w10 = ((Gtk.Table.TableChild)(w4[w9])); w10.BottomAttach = ((uint)(4)); w10.LeftAttach = ((uint)(1)); w10.RightAttach = ((uint)(2)); w10.TopAttach = ((uint)(3)); w10.YOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Entry w11 = new Gtk.Entry(); w11.IsEditable = true; w11.InvisibleChar = '●'; w11.CanFocus = true; w11.Events = ((Gdk.EventMask)(0)); w11.Name = "entryEmail"; bindings["entryEmail"] = w11; w4.Add(w11); Gtk.Table.TableChild w12 = ((Gtk.Table.TableChild)(w4[w11])); w12.BottomAttach = ((uint)(3)); w12.LeftAttach = ((uint)(1)); w12.RightAttach = ((uint)(2)); w12.TopAttach = ((uint)(2)); w12.YOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Entry w13 = new Gtk.Entry(); w13.IsEditable = true; w13.InvisibleChar = '●'; w13.CanFocus = true; w13.Events = ((Gdk.EventMask)(0)); w13.Name = "entryRealName"; bindings["entryRealName"] = w13; w4.Add(w13); Gtk.Table.TableChild w14 = ((Gtk.Table.TableChild)(w4[w13])); w14.BottomAttach = ((uint)(2)); w14.LeftAttach = ((uint)(1)); w14.RightAttach = ((uint)(2)); w14.TopAttach = ((uint)(1)); w14.YOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Label w15 = new Gtk.Label(); w15.LabelProp = "Password:"******"label14"; bindings["label14"] = w15; w4.Add(w15); Gtk.Table.TableChild w16 = ((Gtk.Table.TableChild)(w4[w15])); w16.BottomAttach = ((uint)(4)); w16.TopAttach = ((uint)(3)); w16.YOptions = ((Gtk.AttachOptions)(4)); w16.XOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Label w17 = new Gtk.Label(); w17.LabelProp = "Email:"; w17.Events = ((Gdk.EventMask)(0)); w17.Name = "label13"; bindings["label13"] = w17; w4.Add(w17); Gtk.Table.TableChild w18 = ((Gtk.Table.TableChild)(w4[w17])); w18.BottomAttach = ((uint)(3)); w18.TopAttach = ((uint)(2)); w18.YOptions = ((Gtk.AttachOptions)(4)); w18.XOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Label w19 = new Gtk.Label(); w19.LabelProp = "Real Name:"; w19.Events = ((Gdk.EventMask)(0)); w19.Name = "label12"; bindings["label12"] = w19; w4.Add(w19); Gtk.Table.TableChild w20 = ((Gtk.Table.TableChild)(w4[w19])); w20.BottomAttach = ((uint)(2)); w20.TopAttach = ((uint)(1)); w20.YOptions = ((Gtk.AttachOptions)(4)); w20.XOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Label w21 = new Gtk.Label(); w21.LabelProp = "User Name:"; w21.Events = ((Gdk.EventMask)(0)); w21.Name = "label10"; bindings["label10"] = w21; w4.Add(w21); Gtk.Table.TableChild w22 = ((Gtk.Table.TableChild)(w4[w21])); w22.YOptions = ((Gtk.AttachOptions)(4)); w22.XOptions = ((Gtk.AttachOptions)(4)); // Container child table1.Gtk.Table+TableChild Gtk.Entry w23 = new Gtk.Entry(); w23.IsEditable = true; w23.InvisibleChar = '●'; w23.CanFocus = true; w23.Events = ((Gdk.EventMask)(0)); w23.Name = "entryUserName"; bindings["entryUserName"] = w23; w4.Add(w23); Gtk.Table.TableChild w24 = ((Gtk.Table.TableChild)(w4[w23])); w24.LeftAttach = ((uint)(1)); w24.RightAttach = ((uint)(2)); w24.YOptions = ((Gtk.AttachOptions)(4)); bindings["table1"] = w4; w3.Add(w4); Gtk.Box.BoxChild w25 = ((Gtk.Box.BoxChild)(w3[w4])); w25.Position = 0; w25.Expand = false; w25.Fill = false; // Container child vbox2.Gtk.Box+BoxChild Boxerp.Client.GtkSharp.Lib.DoubleListView w26 = new Boxerp.Client.GtkSharp.Lib.DoubleListView(); w26.Events = ((Gdk.EventMask)(256)); w26.Name = "dtreeview"; bindings["dtreeview"] = w26; w3.Add(w26); Gtk.Box.BoxChild w27 = ((Gtk.Box.BoxChild)(w3[w26])); w27.Position = 1; bindings["vbox2"] = w3; w2.Add(w3); Gtk.Notebook.NotebookChild w28 = ((Gtk.Notebook.NotebookChild)(w2[w3])); w28.TabExpand = false; // Notebook tab Gtk.Label w29 = new Gtk.Label(); w29.LabelProp = "Properties"; w29.Events = ((Gdk.EventMask)(0)); w29.Name = "label1"; bindings["label1"] = w29; w2.SetTabLabel(w3, w29); // Container child notebook1.Gtk.Notebook+NotebookChild Gtk.VBox w30 = new Gtk.VBox(); w30.Events = ((Gdk.EventMask)(0)); w30.Name = "vbox3"; bindings["vbox3"] = w30; w2.Add(w30); Gtk.Notebook.NotebookChild w31 = ((Gtk.Notebook.NotebookChild)(w2[w30])); w31.Position = 1; w31.TabExpand = false; // Notebook tab Gtk.Label w32 = new Gtk.Label(); w32.LabelProp = "Permissions"; w32.Events = ((Gdk.EventMask)(0)); w32.Name = "label1"; bindings["label1"] = w32; w2.SetTabLabel(w30, w32); bindings["notebook1"] = w2; w1.Add(w2); Gtk.Box.BoxChild w33 = ((Gtk.Box.BoxChild)(w1[w2])); w33.Position = 0; w33.Padding = ((uint)(5)); // Container child vbox1.Gtk.Box+BoxChild Gtk.HButtonBox w34 = new Gtk.HButtonBox(); w34.LayoutStyle = ((Gtk.ButtonBoxStyle)(4)); w34.Spacing = 2; w34.BorderWidth = ((uint)(5)); w34.Events = ((Gdk.EventMask)(0)); w34.Name = "hbuttonbox1"; // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w35 = new Gtk.Button(); w35.CanFocus = true; w35.Events = ((Gdk.EventMask)(0)); w35.Name = "buttonCancel"; // Container child buttonCancel.Gtk.Container+ContainerChild Gtk.Alignment w36 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w36.Events = ((Gdk.EventMask)(0)); w36.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w37 = new Gtk.HBox(); w37.Spacing = 2; w37.Events = ((Gdk.EventMask)(0)); w37.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w38 = new Gtk.Image(); w38.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-cancel", 16, 0); w38.Events = ((Gdk.EventMask)(0)); w38.Name = "image13"; bindings["image13"] = w38; w37.Add(w38); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w40 = new Gtk.Label(); w40.LabelProp = "Cancel"; w40.Events = ((Gdk.EventMask)(0)); w40.Name = "GtkLabel"; bindings["GtkLabel"] = w40; w37.Add(w40); bindings["GtkHBox"] = w37; w36.Add(w37); bindings["GtkAlignment"] = w36; w35.Add(w36); bindings["buttonCancel"] = w35; w34.Add(w35); Gtk.ButtonBox.ButtonBoxChild w44 = ((Gtk.ButtonBox.ButtonBoxChild)(w34[w35])); w44.Expand = false; w44.Fill = false; // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild Gtk.Button w45 = new Gtk.Button(); w45.CanFocus = true; w45.Events = ((Gdk.EventMask)(0)); w45.Name = "buttonOk"; // Container child buttonOk.Gtk.Container+ContainerChild Gtk.Alignment w46 = new Gtk.Alignment(0.5F, 0.5F, 0F, 0F); w46.Events = ((Gdk.EventMask)(0)); w46.Name = "GtkAlignment"; // Container child GtkAlignment.Gtk.Container+ContainerChild Gtk.HBox w47 = new Gtk.HBox(); w47.Spacing = 2; w47.Events = ((Gdk.EventMask)(0)); w47.Name = "GtkHBox"; // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Image w48 = new Gtk.Image(); w48.Pixbuf = Gtk.IconTheme.Default.LoadIcon("gtk-ok", 16, 0); w48.Events = ((Gdk.EventMask)(0)); w48.Name = "image14"; bindings["image14"] = w48; w47.Add(w48); // Container child GtkHBox.Gtk.Container+ContainerChild Gtk.Label w50 = new Gtk.Label(); w50.LabelProp = "Ok"; w50.Events = ((Gdk.EventMask)(0)); w50.Name = "GtkLabel"; bindings["GtkLabel"] = w50; w47.Add(w50); bindings["GtkHBox"] = w47; w46.Add(w47); bindings["GtkAlignment"] = w46; w45.Add(w46); bindings["buttonOk"] = w45; w34.Add(w45); Gtk.ButtonBox.ButtonBoxChild w54 = ((Gtk.ButtonBox.ButtonBoxChild)(w34[w45])); w54.Position = 1; w54.Expand = false; w54.Fill = false; bindings["hbuttonbox1"] = w34; w1.Add(w34); Gtk.Box.BoxChild w55 = ((Gtk.Box.BoxChild)(w1[w34])); w55.PackType = ((Gtk.PackType)(1)); w55.Position = 1; w55.Expand = false; w55.Fill = false; bindings["vbox1"] = w1; cobj.Add(w1); cobj.DefaultWidth = 400; cobj.DefaultHeight = 273; bindings["administrator.EditUserWindow"] = cobj; w5.Show(); w7.Show(); w9.Show(); w11.Show(); w13.Show(); w15.Show(); w17.Show(); w19.Show(); w21.Show(); w23.Show(); w4.Show(); w26.Show(); w3.Show(); w29.Show(); w30.Show(); w32.Show(); w2.Show(); w38.Show(); w40.Show(); w37.Show(); w36.Show(); w35.Show(); w48.Show(); w50.Show(); w47.Show(); w46.Show(); w45.Show(); w34.Show(); w1.Show(); cobj.Show(); cobj.DeleteEvent += ((Gtk.DeleteEventHandler)(System.Delegate.CreateDelegate(typeof(Gtk.DeleteEventHandler), cobj, "OnClose"))); w35.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnCancelClicked"))); w45.Clicked += ((System.EventHandler)(System.Delegate.CreateDelegate(typeof(System.EventHandler), cobj, "OnOkClicked"))); } } } } System.Reflection.FieldInfo[] fields = obj.GetType().GetFields(((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) | System.Reflection.BindingFlags.Instance)); for (int n = 0; (n < fields.Length); n = (n + 1)) { System.Reflection.FieldInfo field = fields[n]; object widget = bindings[field.Name]; if (((widget != null) && field.FieldType.IsInstanceOfType(widget))) { field.SetValue(obj, widget); } } }
public static void ShowDeletionDialog (List<Note> notes, Gtk.Window parent) { string message; if ((bool) Preferences.Get (Preferences.ENABLE_DELETE_CONFIRM)) { // show confirmation dialog if (notes.Count == 1) { Note note = notes[0]; message = string.Format (Catalog.GetString ("Really delete \"{0}\"?"), note.Title) ; } else message = string.Format (Catalog.GetPluralString ( "Really delete this {0} note?", "Really delete these {0} notes?", notes.Count), notes.Count); HIGMessageDialog dialog = new HIGMessageDialog ( parent, Gtk.DialogFlags.DestroyWithParent, Gtk.MessageType.Question, Gtk.ButtonsType.None, message, Catalog.GetString ("If you delete a note it is " + "permanently lost.")); Gtk.Button button; button = new Gtk.Button (Gtk.Stock.Cancel); button.CanDefault = true; button.Show (); dialog.AddActionWidget (button, Gtk.ResponseType.Cancel); dialog.DefaultResponse = Gtk.ResponseType.Cancel; button = new Gtk.Button (Gtk.Stock.Delete); button.CanDefault = true; button.Show (); dialog.AddActionWidget (button, 666); int result = dialog.Run (); if (result == 666) { foreach (Note note in notes) { note.Manager.Delete (note); } } dialog.Destroy(); } else { // no confirmation dialog, just delete foreach (Note note in notes) { note.Manager.Delete (note); } } }