protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget superiorpics.RandomCelebs
     global::Stetic.BinContainer.Attach (this);
     this.Name = "superiorpics.RandomCelebs";
     // Container child superiorpics.RandomCelebs.Gtk.Container+ContainerChild
     this.vbox1 = new global::Gtk.VBox ();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.btnRandom = new global::Gtk.Button ();
     this.btnRandom.CanFocus = true;
     this.btnRandom.Name = "btnRandom";
     this.btnRandom.UseUnderline = true;
     this.btnRandom.Label = global::Mono.Unix.Catalog.GetString ("Random");
     this.vbox1.Add (this.btnRandom);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.btnRandom]));
     w1.Position = 0;
     w1.Expand = false;
     w1.Fill = false;
     this.Add (this.vbox1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.Hide ();
     this.btnRandom.Clicked += new global::System.EventHandler (this.OnBtnRandomClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget LinXbox360isoBurner.Dvdrwchoose
     this.Name = "LinXbox360isoBurner.Dvdrwchoose";
     this.Title = "Choose your dvdrw device";
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Resizable = false;
     this.AllowGrow = false;
     // Internal child LinXbox360isoBurner.Dvdrwchoose.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog_VBox.Gtk.Box+BoxChild
     this.@fixed = new global::Gtk.Fixed ();
     [email protected] = "fixed";
     [email protected] = false;
     // Container child fixed.Gtk.Fixed+FixedChild
     this.label = new global::Gtk.Label ();
     this.label.Name = "label";
     this.label.LabelProp = "Choose your dvdrw device:";
     [email protected] (this.label);
     global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.@fixed [this.label]));
     w2.X = 15;
     w2.Y = 9;
     // Container child fixed.Gtk.Fixed+FixedChild
     this.combobox = global::Gtk.ComboBox.NewText ();
     this.combobox.Name = "combobox";
     [email protected] (this.combobox);
     global::Gtk.Fixed.FixedChild w3 = ((global::Gtk.Fixed.FixedChild)(this.@fixed [this.combobox]));
     w3.X = 15;
     w3.Y = 31;
     w1.Add (this.@fixed);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(w1 [this.@fixed]));
     w4.Position = 0;
     // Internal child LinXbox360isoBurner.Dvdrwchoose.ActionArea
     global::Gtk.HButtonBox w5 = this.ActionArea;
     w5.Name = "dialog1_ActionArea";
     w5.Spacing = 6;
     w5.BorderWidth = ((uint)(5));
     w5.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(2));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.button_ok = new global::Gtk.Button ();
     this.button_ok.CanDefault = true;
     this.button_ok.CanFocus = true;
     this.button_ok.Name = "button_ok";
     this.button_ok.UseUnderline = true;
     this.button_ok.Label = "OK";
     this.AddActionWidget (this.button_ok, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w6 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w5 [this.button_ok]));
     w6.Expand = false;
     w6.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 400;
     this.DefaultHeight = 139;
     this.Show ();
     this.button_ok.Clicked += new global::System.EventHandler (this.OnButtonOkClicked);
 }
예제 #3
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MainWindow
     this.Name = "MainWindow";
     this.Title = global::Mono.Unix.Catalog.GetString ("MainWindow");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.vbox1 = new global::Gtk.VBox ();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.button4 = new global::Gtk.Button ();
     this.button4.CanFocus = true;
     this.button4.Name = "button4";
     this.button4.UseUnderline = true;
     this.button4.Label = global::Mono.Unix.Catalog.GetString ("GtkButton");
     this.vbox1.Add (this.button4);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.button4]));
     w1.Position = 0;
     w1.Expand = false;
     w1.Fill = false;
     this.Add (this.vbox1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 400;
     this.DefaultHeight = 300;
     this.Show ();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
     this.button4.Clicked += new global::System.EventHandler (this.OnButton4Clicked);
 }
예제 #4
0
파일: TabLabel.cs 프로젝트: aaberg/DbUtils
        private void Init()
        {
            this.Spacing = 5;

            this.CanFocus = true;

            // icon
            var icon = Gtk.Image.NewFromIconName(Gtk.Stock.File, Gtk.IconSize.Menu);
            this.PackStart(icon, true, true, 0);

            // label
            var Label = new global::Gtk.Label(this.LabelText);
            this.PackStart (Label, true, true, 0);

            // Close button
            var closeBtn = new global::Gtk.Button();
            closeBtn.Relief = Gtk.ReliefStyle.None;
            closeBtn.FocusOnClick = false;
            closeBtn.Add(Gtk.Image.NewFromIconName(Gtk.Stock.Close, Gtk.IconSize.Menu));
            closeBtn.BorderWidth = 0;
            closeBtn.Clicked += (sender, e) => OnCloseClicked();

            this.PackStart(closeBtn, false, false, 0);

            this.ShowAll();
        }
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget meticulus.controls.gtk.filter_dialog
			this.Name = "meticulus.controls.gtk.filter_dialog";
			this.Title = global::Mono.Unix.Catalog.GetString ("Filter Creator");
			this.Icon = global::Stetic.IconLoader.LoadIcon (this, "gtk-find", global::Gtk.IconSize.Menu);
			this.WindowPosition = ((global::Gtk.WindowPosition)(4));
			this.AllowShrink = true;
			this.DefaultWidth = 650;
			this.DefaultHeight = 350;
			// Internal child meticulus.controls.gtk.filter_dialog.VBox
			global::Gtk.VBox w1 = this.VBox;
			w1.Name = "dialog1_VBox";
			w1.BorderWidth = ((uint)(2));
			// Container child dialog1_VBox.Gtk.Box+BoxChild
			this.filter_creator1 = new global::meticulus.controls.gtk.filter_creator ();
			this.filter_creator1.Events = ((global::Gdk.EventMask)(256));
			this.filter_creator1.Name = "filter_creator1";
			w1.Add (this.filter_creator1);
			global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(w1 [this.filter_creator1]));
			w2.Position = 0;
			// Internal child meticulus.controls.gtk.filter_dialog.ActionArea
			global::Gtk.HButtonBox w3 = this.ActionArea;
			w3.Name = "dialog1_ActionArea";
			w3.Spacing = 10;
			w3.BorderWidth = ((uint)(5));
			w3.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonCancel = new global::Gtk.Button ();
			this.buttonCancel.CanDefault = true;
			this.buttonCancel.CanFocus = true;
			this.buttonCancel.Name = "buttonCancel";
			this.buttonCancel.UseStock = true;
			this.buttonCancel.UseUnderline = true;
			this.buttonCancel.Label = "gtk-cancel";
			this.AddActionWidget (this.buttonCancel, -6);
			global::Gtk.ButtonBox.ButtonBoxChild w4 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonCancel]));
			w4.Expand = false;
			w4.Fill = false;
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonOk = new global::Gtk.Button ();
			this.buttonOk.CanDefault = true;
			this.buttonOk.CanFocus = true;
			this.buttonOk.Name = "buttonOk";
			this.buttonOk.UseStock = true;
			this.buttonOk.UseUnderline = true;
			this.buttonOk.Label = "gtk-ok";
			this.AddActionWidget (this.buttonOk, -5);
			global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonOk]));
			w5.Position = 1;
			w5.Expand = false;
			w5.Fill = false;
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.Show ();
			this.buttonCancel.Clicked += new global::System.EventHandler (this.OnButtonCancelClicked);
			this.buttonOk.Clicked += new global::System.EventHandler (this.OnButtonOkClicked);
		}
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget Moscrif.IDE.Controls.LibsManagerDialog
     this.Name = "Moscrif.IDE.Controls.LibsManagerDialog";
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     // Internal child Moscrif.IDE.Controls.LibsManagerDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
     this.GtkScrolledWindow.Name = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.tvLibs = new global::Gtk.TreeView ();
     this.tvLibs.CanFocus = true;
     this.tvLibs.Name = "tvLibs";
     this.GtkScrolledWindow.Add (this.tvLibs);
     w1.Add (this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(w1 [this.GtkScrolledWindow]));
     w3.Position = 0;
     // Internal child Moscrif.IDE.Controls.LibsManagerDialog.ActionArea
     global::Gtk.HButtonBox w4 = this.ActionArea;
     w4.Name = "dialog1_ActionArea";
     w4.Spacing = 10;
     w4.BorderWidth = ((uint)(5));
     w4.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel = new global::Gtk.Button ();
     this.buttonCancel.CanDefault = true;
     this.buttonCancel.CanFocus = true;
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.UseStock = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label = "gtk-cancel";
     this.AddActionWidget (this.buttonCancel, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w4 [this.buttonCancel]));
     w5.Expand = false;
     w5.Fill = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk = new global::Gtk.Button ();
     this.buttonOk.CanDefault = true;
     this.buttonOk.CanFocus = true;
     this.buttonOk.Name = "buttonOk";
     this.buttonOk.UseStock = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label = "gtk-ok";
     this.AddActionWidget (this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w6 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w4 [this.buttonOk]));
     w6.Position = 1;
     w6.Expand = false;
     w6.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 399;
     this.DefaultHeight = 307;
     this.Show ();
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget LinXbox360isoBurner.FileError
     this.Name = "LinXbox360isoBurner.FileError";
     this.Title = "FileError";
     this.Icon = global::Gdk.Pixbuf.LoadFromResource ("LinXbox360isoBurner.icon.png");
     this.WindowPosition = ((global::Gtk.WindowPosition)(3));
     this.BorderWidth = ((uint)(20));
     this.Resizable = false;
     this.AllowGrow = false;
     this.Gravity = ((global::Gdk.Gravity)(10));
     this.SkipPagerHint = true;
     this.SkipTaskbarHint = true;
     // Container child LinXbox360isoBurner.FileError.Gtk.Container+ContainerChild
     this.vbox3 = new global::Gtk.VBox ();
     this.vbox3.Name = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.label1 = new global::Gtk.Label ();
     this.label1.Name = "label1";
     this.label1.LabelProp = ".dvd file error";
     this.vbox3.Add (this.label1);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.label1]));
     w1.Position = 0;
     // Container child vbox3.Gtk.Box+BoxChild
     this.hbuttonbox2 = new global::Gtk.HButtonBox ();
     this.hbuttonbox2.Name = "hbuttonbox2";
     // Container child hbuttonbox2.Gtk.ButtonBox+ButtonBoxChild
     this.button = new global::Gtk.Button ();
     this.button.CanFocus = true;
     this.button.Name = "button";
     this.button.UseUnderline = true;
     this.button.Label = "Close";
     this.hbuttonbox2.Add (this.button);
     global::Gtk.ButtonBox.ButtonBoxChild w2 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.hbuttonbox2 [this.button]));
     w2.Expand = false;
     w2.Fill = false;
     this.vbox3.Add (this.hbuttonbox2);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.hbuttonbox2]));
     w3.Position = 1;
     w3.Expand = false;
     w3.Fill = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.fixed2 = new global::Gtk.Fixed ();
     this.fixed2.Name = "fixed2";
     this.fixed2.HasWindow = false;
     this.vbox3.Add (this.fixed2);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.fixed2]));
     w4.Position = 2;
     w4.Fill = false;
     this.Add (this.vbox3);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 201;
     this.DefaultHeight = 130;
     this.Show ();
     this.button.Clicked += new global::System.EventHandler (this.OnButtonClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget QSOrmProject.OneWidgetDialog
     this.Name = "QSOrmProject.OneWidgetDialog";
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Internal child QSOrmProject.OneWidgetDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Internal child QSOrmProject.OneWidgetDialog.ActionArea
     global::Gtk.HButtonBox w2 = this.ActionArea;
     w2.Name = "dialog1_ActionArea";
     w2.Spacing = 10;
     w2.BorderWidth = ((uint)(5));
     w2.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonClose = new global::Gtk.Button ();
     this.buttonClose.CanDefault = true;
     this.buttonClose.CanFocus = true;
     this.buttonClose.Name = "buttonClose";
     this.buttonClose.UseStock = true;
     this.buttonClose.UseUnderline = true;
     this.buttonClose.Label = "gtk-close";
     this.AddActionWidget (this.buttonClose, -7);
     global::Gtk.ButtonBox.ButtonBoxChild w3 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w2 [this.buttonClose]));
     w3.Expand = false;
     w3.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 106;
     this.DefaultHeight = 62;
     this.Show ();
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget LongoMatch.Gui.Dialog.ChooseProjectDialog
     this.Name = "LongoMatch.Gui.Dialog.ChooseProjectDialog";
     this.Title = global::VAS.Core.Catalog.GetString ("Choose project");
     this.Icon = global::Stetic.IconLoader.LoadIcon (this, "longomatch", global::Gtk.IconSize.Menu);
     this.TypeHint = ((global::Gdk.WindowTypeHint)(1));
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Modal = true;
     this.Gravity = ((global::Gdk.Gravity)(5));
     this.SkipPagerHint = true;
     // Internal child LongoMatch.Gui.Dialog.ChooseProjectDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.projectlistwidget1 = new global::LongoMatch.Gui.Component.ProjectListWidget ();
     this.projectlistwidget1.Events = ((global::Gdk.EventMask)(256));
     this.projectlistwidget1.Name = "projectlistwidget1";
     w1.Add (this.projectlistwidget1);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(w1 [this.projectlistwidget1]));
     w2.Position = 0;
     // Internal child LongoMatch.Gui.Dialog.ChooseProjectDialog.ActionArea
     global::Gtk.HButtonBox w3 = this.ActionArea;
     w3.Name = "dialog1_ActionArea";
     w3.Spacing = 10;
     w3.BorderWidth = ((uint)(5));
     w3.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel = new global::Gtk.Button ();
     this.buttonCancel.CanDefault = true;
     this.buttonCancel.CanFocus = true;
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.UseStock = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label = "gtk-cancel";
     this.AddActionWidget (this.buttonCancel, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w4 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonCancel]));
     w4.Expand = false;
     w4.Fill = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.okButton = new global::Gtk.Button ();
     this.okButton.CanFocus = true;
     this.okButton.Name = "okButton";
     this.okButton.UseStock = true;
     this.okButton.UseUnderline = true;
     this.okButton.Label = "gtk-ok";
     this.AddActionWidget (this.okButton, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.okButton]));
     w5.Position = 1;
     w5.Expand = false;
     w5.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 699;
     this.DefaultHeight = 481;
     this.Show ();
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MonoDevelop.Stereo.Gui.QuickFixDialog
     this.Name = "MonoDevelop.Stereo.Gui.QuickFixDialog";
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.DestroyWithParent = true;
     // Internal child MonoDevelop.Stereo.Gui.QuickFixDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.label1 = new global::Gtk.Label ();
     this.label1.Name = "label1";
     this.label1.Xalign = 0F;
     this.label1.Yalign = 0F;
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("label1");
     w1.Add (this.label1);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(w1 [this.label1]));
     w2.Position = 0;
     w2.Expand = false;
     w2.Fill = false;
     // Internal child MonoDevelop.Stereo.Gui.QuickFixDialog.ActionArea
     global::Gtk.HButtonBox w3 = this.ActionArea;
     w3.Name = "dialog1_ActionArea";
     w3.Spacing = 10;
     w3.BorderWidth = ((uint)(5));
     w3.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel = new global::Gtk.Button ();
     this.buttonCancel.CanDefault = true;
     this.buttonCancel.CanFocus = true;
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.UseStock = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label = "gtk-cancel";
     this.AddActionWidget (this.buttonCancel, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w4 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonCancel]));
     w4.Expand = false;
     w4.Fill = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk = new global::Gtk.Button ();
     this.buttonOk.CanDefault = true;
     this.buttonOk.CanFocus = true;
     this.buttonOk.Name = "buttonOk";
     this.buttonOk.UseStock = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label = "gtk-ok";
     this.AddActionWidget (this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonOk]));
     w5.Position = 1;
     w5.Expand = false;
     w5.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 354;
     this.DefaultHeight = 58;
     this.Show ();
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget PasswordManager.ConnectionChange
     this.Name = "PasswordManager.ConnectionChange";
     this.Title = global::Mono.Unix.Catalog.GetString ("ConnectionChange");
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     this.Modal = true;
     // Container child PasswordManager.ConnectionChange.Gtk.Container+ContainerChild
     this.fixed1 = new global::Gtk.Fixed ();
     this.fixed1.Name = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.serverAddressLabel = new global::Gtk.Label ();
     this.serverAddressLabel.Name = "serverAddressLabel";
     this.serverAddressLabel.LabelProp = global::Mono.Unix.Catalog.GetString ("Server Address");
     this.fixed1.Add (this.serverAddressLabel);
     global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.serverAddressLabel]));
     w1.X = 36;
     w1.Y = 21;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.okChange = new global::Gtk.Button ();
     this.okChange.CanFocus = true;
     this.okChange.Name = "okChange";
     this.okChange.UseUnderline = true;
     this.okChange.Label = global::Mono.Unix.Catalog.GetString ("OK");
     this.fixed1.Add (this.okChange);
     global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.okChange]));
     w2.X = 38;
     w2.Y = 96;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.serverEntry = new global::Gtk.Entry ();
     this.serverEntry.CanFocus = true;
     this.serverEntry.Name = "serverEntry";
     this.serverEntry.IsEditable = true;
     this.serverEntry.InvisibleChar = '●';
     this.fixed1.Add (this.serverEntry);
     global::Gtk.Fixed.FixedChild w3 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.serverEntry]));
     w3.X = 33;
     w3.Y = 49;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.exitbutton = new global::Gtk.Button ();
     this.exitbutton.CanFocus = true;
     this.exitbutton.Name = "exitbutton";
     this.exitbutton.UseUnderline = true;
     this.exitbutton.Label = global::Mono.Unix.Catalog.GetString ("Exit");
     this.fixed1.Add (this.exitbutton);
     global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.exitbutton]));
     w4.X = 245;
     w4.Y = 93;
     this.Add (this.fixed1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 379;
     this.DefaultHeight = 132;
     this.Show ();
     this.okChange.Clicked += new global::System.EventHandler (this.OnOkChangeClicked);
     this.exitbutton.Clicked += new global::System.EventHandler (this.OnExitbuttonClicked);
 }
예제 #12
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MainWindow
     this.Name = "MainWindow";
     this.Title = global::Mono.Unix.Catalog.GetString ("Number Pretifier");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.vbox1 = new global::Gtk.VBox ();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox2 = new global::Gtk.HBox ();
     this.hbox2.Name = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.entry1 = new global::Gtk.Entry ();
     this.entry1.TooltipMarkup = "Input number field";
     this.entry1.CanFocus = true;
     this.entry1.Name = "entry1";
     this.entry1.IsEditable = true;
     this.entry1.InvisibleChar = '•';
     this.hbox2.Add (this.entry1);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.entry1]));
     w1.Position = 0;
     // Container child hbox2.Gtk.Box+BoxChild
     this.button1 = new global::Gtk.Button ();
     this.button1.CanFocus = true;
     this.button1.Name = "button1";
     this.button1.UseUnderline = true;
     this.button1.Label = global::Mono.Unix.Catalog.GetString ("Pretify");
     this.hbox2.Add (this.button1);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.button1]));
     w2.Position = 1;
     w2.Expand = false;
     w2.Fill = false;
     this.vbox1.Add (this.hbox2);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox2]));
     w3.Position = 0;
     w3.Expand = false;
     w3.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.label1 = new global::Gtk.Label ();
     this.label1.Name = "label1";
     this.vbox1.Add (this.label1);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.label1]));
     w4.Position = 1;
     w4.Expand = false;
     w4.Fill = false;
     this.Add (this.vbox1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 384;
     this.DefaultHeight = 62;
     this.Show ();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
     this.entry1.Activated += new global::System.EventHandler (this.OnEntry1Activated);
     this.button1.Clicked += new global::System.EventHandler (this.OnButton1Clicked);
 }
예제 #13
0
 private void boton(string nombre, string label, string imagen)
 {
     Gtk.Button boton = new global::Gtk.Button ();
     boton.CanFocus = true;
     boton.Name = nombre;
     boton.UseUnderline = true;
     // Container child btnNuevo.Gtk.Container+ContainerChild
     global::Gtk.Alignment w1 = new global::Gtk.Alignment (0.5f, 0.5f, 0f, 0f);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     global::Gtk.HBox w2 = new global::Gtk.HBox ();
     w2.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Image w3 = new global::Gtk.Image ();
     //w3.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, imagen, global::Gtk.IconSize.Button);
     w2.Add (w3);
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Label w5 = new global::Gtk.Label ();
     w5.LabelProp = global::Mono.Unix.Catalog.GetString (label);
     w5.UseUnderline = true;
     w2.Add (w5);
     w1.Add (w2);
     boton.Add (w1);
     this.fixed1.Add (boton);
     global::Gtk.Fixed.FixedChild w9 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[boton]));
     w9.X = this.x;
     w9.Y = this.y - 10;
 }
예제 #14
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MeeGen.ColorSelectButton
     global::Stetic.BinContainer.Attach (this);
     this.Name = "MeeGen.ColorSelectButton";
     // Container child MeeGen.ColorSelectButton.Gtk.Container+ContainerChild
     this.Button = new global::Gtk.Button ();
     this.Button.CanFocus = true;
     this.Button.Name = "Button";
     this.Button.FocusOnClick = false;
     this.Button.Relief = ((global::Gtk.ReliefStyle)(2));
     // Container child Button.Gtk.Container+ContainerChild
     this.DrawingArea = new global::Gtk.DrawingArea ();
     this.DrawingArea.Name = "DrawingArea";
     this.Button.Add (this.DrawingArea);
     this.Button.Label = null;
     this.Add (this.Button);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.Hide ();
     this.Button.Clicked += new global::System.EventHandler (this.OnButtonClicked);
     this.DrawingArea.ExposeEvent += new global::Gtk.ExposeEventHandler (this.OnDrawingareaExposeEvent);
 }
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget TraceLab.UI.GTK.CalendarDatePickerDialog
			this.Name = "TraceLab.UI.GTK.CalendarDatePickerDialog";
			this.WindowPosition = ((global::Gtk.WindowPosition)(4));
			// Internal child TraceLab.UI.GTK.CalendarDatePickerDialog.VBox
			global::Gtk.VBox w1 = this.VBox;
			w1.Name = "dialog1_VBox";
			w1.BorderWidth = ((uint)(2));
			// Container child dialog1_VBox.Gtk.Box+BoxChild
			this.calendar1 = new global::Gtk.Calendar ();
			this.calendar1.CanFocus = true;
			this.calendar1.Name = "calendar1";
			this.calendar1.DisplayOptions = ((global::Gtk.CalendarDisplayOptions)(35));
			w1.Add (this.calendar1);
			global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(w1 [this.calendar1]));
			w2.Position = 0;
			w2.Expand = false;
			w2.Fill = false;
			// Internal child TraceLab.UI.GTK.CalendarDatePickerDialog.ActionArea
			global::Gtk.HButtonBox w3 = this.ActionArea;
			w3.Name = "dialog1_ActionArea";
			w3.Spacing = 10;
			w3.BorderWidth = ((uint)(5));
			w3.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonCancel = new global::Gtk.Button ();
			this.buttonCancel.CanDefault = true;
			this.buttonCancel.CanFocus = true;
			this.buttonCancel.Name = "buttonCancel";
			this.buttonCancel.UseStock = true;
			this.buttonCancel.UseUnderline = true;
			this.buttonCancel.Label = "gtk-cancel";
			this.AddActionWidget (this.buttonCancel, -6);
			global::Gtk.ButtonBox.ButtonBoxChild w4 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonCancel]));
			w4.Expand = false;
			w4.Fill = false;
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonOk = new global::Gtk.Button ();
			this.buttonOk.CanDefault = true;
			this.buttonOk.CanFocus = true;
			this.buttonOk.Name = "buttonOk";
			this.buttonOk.UseStock = true;
			this.buttonOk.UseUnderline = true;
			this.buttonOk.Label = "gtk-ok";
			this.AddActionWidget (this.buttonOk, -5);
			global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonOk]));
			w5.Position = 1;
			w5.Expand = false;
			w5.Fill = false;
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.DefaultWidth = 400;
			this.DefaultHeight = 300;
			this.Show ();
			this.buttonCancel.Clicked += new global::System.EventHandler (this.OnButtonCancelClicked);
			this.buttonOk.Clicked += new global::System.EventHandler (this.OnButtonOkClicked);
		}
예제 #16
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MainWindow
     this.Name = "MainWindow";
     this.Title = global::Mono.Unix.Catalog.GetString ("MainWindow");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.fixed1 = new global::Gtk.Fixed ();
     this.fixed1.Name = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.button1 = new global::Gtk.Button ();
     this.button1.CanFocus = true;
     this.button1.Name = "button1";
     this.button1.UseUnderline = true;
     this.button1.Label = global::Mono.Unix.Catalog.GetString ("GtkButton");
     this.fixed1.Add (this.button1);
     global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.button1]));
     w1.X = 33;
     w1.Y = 23;
     this.Add (this.fixed1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 400;
     this.DefaultHeight = 300;
     this.Show ();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
     this.button1.Clicked += new global::System.EventHandler (this.OnButton1Clicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget AkariSolver.ErrorDialog
     this.Name = "AkariSolver.ErrorDialog";
     this.Title = global::Mono.Unix.Catalog.GetString ("Error");
     this.WindowPosition = ((global::Gtk.WindowPosition)(3));
     // Internal child AkariSolver.ErrorDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.ErrorFrame = new global::Gtk.Frame ();
     this.ErrorFrame.Name = "ErrorFrame";
     this.ErrorFrame.ShadowType = ((global::Gtk.ShadowType)(0));
     // Container child ErrorFrame.Gtk.Container+ContainerChild
     this.GtkAlignment2 = new global::Gtk.Alignment (0F, 0F, 1F, 1F);
     this.GtkAlignment2.Name = "GtkAlignment2";
     this.GtkAlignment2.LeftPadding = ((uint)(12));
     // Container child GtkAlignment2.Gtk.Container+ContainerChild
     this.ErrorLabel1 = new global::Gtk.Label ();
     this.ErrorLabel1.Name = "ErrorLabel1";
     this.ErrorLabel1.LabelProp = global::Mono.Unix.Catalog.GetString ("The puzzle is unsolvable!");
     this.GtkAlignment2.Add (this.ErrorLabel1);
     this.ErrorFrame.Add (this.GtkAlignment2);
     this.ErrorLabel = new global::Gtk.Label ();
     this.ErrorLabel.Name = "ErrorLabel";
     this.ErrorLabel.UseMarkup = true;
     this.ErrorFrame.LabelWidget = this.ErrorLabel;
     w1.Add (this.ErrorFrame);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(w1 [this.ErrorFrame]));
     w4.Position = 0;
     w4.Expand = false;
     w4.Fill = false;
     // Internal child AkariSolver.ErrorDialog.ActionArea
     global::Gtk.HButtonBox w5 = this.ActionArea;
     w5.Name = "dialog1_ActionArea";
     w5.Spacing = 10;
     w5.BorderWidth = ((uint)(5));
     w5.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk = new global::Gtk.Button ();
     this.buttonOk.CanDefault = true;
     this.buttonOk.CanFocus = true;
     this.buttonOk.Name = "buttonOk";
     this.buttonOk.UseStock = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label = "gtk-ok";
     this.AddActionWidget (this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w6 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w5 [this.buttonOk]));
     w6.Expand = false;
     w6.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 400;
     this.DefaultHeight = 99;
     this.Show ();
     this.buttonOk.Clicked += new global::System.EventHandler (this.OnButtonOkClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget bazar.AccountableDebts
     this.Name = "bazar.AccountableDebts";
     this.Title = global::Mono.Unix.Catalog.GetString ("Долги подотчетных лиц");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Internal child bazar.AccountableDebts.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
     this.GtkScrolledWindow.Name = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.treeviewDebts = new global::Gtk.TreeView ();
     this.treeviewDebts.CanFocus = true;
     this.treeviewDebts.Name = "treeviewDebts";
     this.GtkScrolledWindow.Add (this.treeviewDebts);
     w1.Add (this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(w1 [this.GtkScrolledWindow]));
     w3.Position = 0;
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.labelTotal = new global::Gtk.Label ();
     this.labelTotal.Name = "labelTotal";
     this.labelTotal.Xalign = 1F;
     this.labelTotal.LabelProp = global::Mono.Unix.Catalog.GetString ("0");
     w1.Add (this.labelTotal);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(w1 [this.labelTotal]));
     w4.Position = 1;
     w4.Expand = false;
     w4.Fill = false;
     // Internal child bazar.AccountableDebts.ActionArea
     global::Gtk.HButtonBox w5 = this.ActionArea;
     w5.Name = "dialog1_ActionArea";
     w5.Spacing = 10;
     w5.BorderWidth = ((uint)(5));
     w5.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonClose = new global::Gtk.Button ();
     this.buttonClose.CanFocus = true;
     this.buttonClose.Name = "buttonClose";
     this.buttonClose.UseUnderline = true;
     this.buttonClose.Label = global::Mono.Unix.Catalog.GetString ("_Закрыть");
     global::Gtk.Image w6 = new global::Gtk.Image ();
     w6.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-close", global::Gtk.IconSize.Menu);
     this.buttonClose.Image = w6;
     this.AddActionWidget (this.buttonClose, -7);
     global::Gtk.ButtonBox.ButtonBoxChild w7 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w5 [this.buttonClose]));
     w7.Expand = false;
     w7.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 469;
     this.DefaultHeight = 375;
     this.Show ();
     this.treeviewDebts.RowActivated += new global::Gtk.RowActivatedHandler (this.OnTreeviewDebtsRowActivated);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget Core.Logger.CoreLoggerConsol
     this.Name = "Core.Logger.CoreLoggerConsol";
     this.Title = global::Mono.Unix.Catalog.GetString ("CoreLoggerConsol");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child Core.Logger.CoreLoggerConsol.Gtk.Container+ContainerChild
     this.vbox1 = new global::Gtk.VBox ();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.reset = new global::Gtk.Button ();
     this.reset.CanFocus = true;
     this.reset.Name = "reset";
     this.reset.UseUnderline = true;
     this.reset.Label = global::Mono.Unix.Catalog.GetString ("Reset Log");
     this.vbox1.Add (this.reset);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.reset]));
     w1.Position = 0;
     w1.Expand = false;
     w1.Fill = false;
     this.Add (this.vbox1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 400;
     this.DefaultHeight = 300;
     this.Show ();
 }
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget MonoDevelop.Database.Components.DatabaseConnectionSettingsDialog
			this.Name = "MonoDevelop.Database.Components.DatabaseConnectionSettingsDialog";
			this.TypeHint = ((global::Gdk.WindowTypeHint)(1));
			this.WindowPosition = ((global::Gtk.WindowPosition)(1));
			this.SkipTaskbarHint = true;
			// Internal child MonoDevelop.Database.Components.DatabaseConnectionSettingsDialog.VBox
			global::Gtk.VBox w1 = this.VBox;
			w1.Name = "dialog1_VBox";
			w1.BorderWidth = ((uint)(2));
			// Container child dialog1_VBox.Gtk.Box+BoxChild
			this.vbox = new global::Gtk.VBox ();
			this.vbox.Name = "vbox";
			this.vbox.Spacing = 6;
			w1.Add (this.vbox);
			global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(w1[this.vbox]));
			w2.Position = 0;
			// Internal child MonoDevelop.Database.Components.DatabaseConnectionSettingsDialog.ActionArea
			global::Gtk.HButtonBox w3 = this.ActionArea;
			w3.Name = "dialog1_ActionArea";
			w3.Spacing = 6;
			w3.BorderWidth = ((uint)(5));
			w3.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonCancel = new global::Gtk.Button ();
			this.buttonCancel.CanDefault = true;
			this.buttonCancel.CanFocus = true;
			this.buttonCancel.Name = "buttonCancel";
			this.buttonCancel.UseStock = true;
			this.buttonCancel.UseUnderline = true;
			this.buttonCancel.Label = "gtk-cancel";
			this.AddActionWidget (this.buttonCancel, -6);
			global::Gtk.ButtonBox.ButtonBoxChild w4 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3[this.buttonCancel]));
			w4.Expand = false;
			w4.Fill = false;
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonOk = new global::Gtk.Button ();
			this.buttonOk.Sensitive = false;
			this.buttonOk.CanDefault = true;
			this.buttonOk.CanFocus = true;
			this.buttonOk.Name = "buttonOk";
			this.buttonOk.UseStock = true;
			this.buttonOk.UseUnderline = true;
			this.buttonOk.Label = "gtk-ok";
			this.AddActionWidget (this.buttonOk, -5);
			global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3[this.buttonOk]));
			w5.Position = 1;
			w5.Expand = false;
			w5.Fill = false;
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.DefaultWidth = 606;
			this.DefaultHeight = 355;
			this.Show ();
			this.buttonCancel.Clicked += new global::System.EventHandler (this.OnCancelClicked);
			this.buttonOk.Clicked += new global::System.EventHandler (this.OnOkClicked);
		}
예제 #21
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MainWindow
     this.Name = "MainWindow";
     this.Title = global::Mono.Unix.Catalog.GetString ("MainWindow");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.fixed5 = new global::Gtk.Fixed ();
     this.fixed5.Name = "fixed5";
     this.fixed5.HasWindow = false;
     // Container child fixed5.Gtk.Fixed+FixedChild
     this.button16 = new global::Gtk.Button ();
     this.button16.CanFocus = true;
     this.button16.Name = "button16";
     this.button16.UseUnderline = true;
     this.button16.Label = global::Mono.Unix.Catalog.GetString ("GtkButton");
     this.fixed5.Add (this.button16);
     global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed5 [this.button16]));
     w1.X = 518;
     w1.Y = 172;
     this.Add (this.fixed5);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 824;
     this.DefaultHeight = 655;
     this.Show ();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
 }
예제 #22
0
파일: MainWindow.cs 프로젝트: moscrif/ide
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MainWindow
     this.Name = "MainWindow";
     this.Title = global::Mono.Unix.Catalog.GetString ("Updater");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.vbox2 = new global::Gtk.VBox ();
     this.vbox2.Name = "vbox2";
     this.vbox2.Spacing = 6;
     this.vbox2.BorderWidth = ((uint)(6));
     // Container child vbox2.Gtk.Box+BoxChild
     this.messageLabel = new global::Gtk.Label ();
     this.messageLabel.Name = "messageLabel";
     this.messageLabel.LabelProp = global::Mono.Unix.Catalog.GetString ("label1");
     this.vbox2.Add (this.messageLabel);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.messageLabel]));
     w1.Position = 0;
     w1.Expand = false;
     w1.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.progressBar = new global::Gtk.ProgressBar ();
     this.progressBar.Name = "progressBar";
     this.vbox2.Add (this.progressBar);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.progressBar]));
     w2.Position = 1;
     w2.Expand = false;
     w2.Fill = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbuttonbox2 = new global::Gtk.HButtonBox ();
     this.hbuttonbox2.Name = "hbuttonbox2";
     this.hbuttonbox2.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child hbuttonbox2.Gtk.ButtonBox+ButtonBoxChild
     this.btnQuit = new global::Gtk.Button ();
     this.btnQuit.CanFocus = true;
     this.btnQuit.Name = "btnQuit";
     this.btnQuit.UseUnderline = true;
     this.btnQuit.Label = global::Mono.Unix.Catalog.GetString ("_Ok");
     this.hbuttonbox2.Add (this.btnQuit);
     global::Gtk.ButtonBox.ButtonBoxChild w3 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.hbuttonbox2 [this.btnQuit]));
     w3.Expand = false;
     w3.Fill = false;
     this.vbox2.Add (this.hbuttonbox2);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbuttonbox2]));
     w4.PackType = ((global::Gtk.PackType)(1));
     w4.Position = 2;
     w4.Expand = false;
     w4.Fill = false;
     this.Add (this.vbox2);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 435;
     this.DefaultHeight = 119;
     this.btnQuit.Hide ();
     this.Show ();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
     this.btnQuit.Clicked += new global::System.EventHandler (this.OnButton2517Clicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget Windows.Controls.ListBox
     global::Stetic.BinContainer.Attach (this);
     this.Name = "Windows.Controls.ListBox";
     // Container child Windows.Controls.ListBox.Gtk.Container+ContainerChild
     this.vbox1 = new global::Gtk.VBox ();
     this.vbox1.Name = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox1 = new global::Gtk.HBox ();
     this.hbox1.Name = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.comboboxentry = global::Gtk.ComboBoxEntry.NewText ();
     this.comboboxentry.Name = "comboboxentry";
     this.hbox1.Add (this.comboboxentry);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.comboboxentry]));
     w1.Position = 0;
     // Container child hbox1.Gtk.Box+BoxChild
     this.btnAdd = new global::Gtk.Button ();
     this.btnAdd.CanDefault = true;
     this.btnAdd.CanFocus = true;
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Relief = ((global::Gtk.ReliefStyle)(2));
     global::Gtk.Image w2 = new global::Gtk.Image ();
     w2.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, "gtk-add", global::Gtk.IconSize.Menu);
     this.btnAdd.Image = w2;
     this.hbox1.Add (this.btnAdd);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.btnAdd]));
     w3.Position = 1;
     w3.Expand = false;
     this.vbox1.Add (this.hbox1);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox1]));
     w4.Position = 0;
     w4.Expand = false;
     w4.Fill = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
     this.GtkScrolledWindow.Name = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.listbox = new global::Gtk.TreeView ();
     this.listbox.TooltipMarkup = "Press delete to remove symbols from portfolio.";
     this.listbox.CanFocus = true;
     this.listbox.Name = "listbox";
     this.GtkScrolledWindow.Add (this.listbox);
     this.vbox1.Add (this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.GtkScrolledWindow]));
     w6.Position = 1;
     this.Add (this.vbox1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.Hide ();
     this.comboboxentry.Changed += new global::System.EventHandler (this.OnComboboxentryChanged);
     this.btnAdd.Clicked += new global::System.EventHandler (this.OnBtnAddClicked);
     this.listbox.KeyReleaseEvent += new global::Gtk.KeyReleaseEventHandler (this.OnListboxKeyReleaseEvent);
 }
예제 #24
0
 private void boton(string nombre, string label, string imagen)
 {
     Gtk.Button boton = new global::Gtk.Button ();
     boton.CanFocus = true;
     boton.Name = nombre;
     boton.UseUnderline = true;
     // Container child btnNuevo.Gtk.Container+ContainerChild
     global::Gtk.Alignment w1 = new global::Gtk.Alignment (0.5f, 0.5f, 0f, 0f);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     global::Gtk.HBox w2 = new global::Gtk.HBox ();
     w2.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     /*global::Gtk.Image w3 = new global::Gtk.Image ();
     w3.Pixbuf = global::Stetic.IconLoader.LoadIcon (this, imagen, global::Gtk.IconSize.Button);
     w2.Add (w3);
     Este era el boton nuevo*/
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Label w5 = new global::Gtk.Label ();
     w5.LabelProp = global::Mono.Unix.Catalog.GetString (label);
     w5.UseUnderline = true;
     w2.Add (w5);
     w1.Add (w2);
     boton.Add (w1);
     this.fixed2.Add (boton);
     global::Gtk.Fixed.FixedChild w9 = ((global::Gtk.Fixed.FixedChild)(this.fixed2[boton]));
     w9.X = this.x;
     w9.Y = this.y - 10;
     if(imagen == "gtk-file")//linea que aniade el evento a los botones dinamicos
         boton.Clicked += new global::System.EventHandler (this.OnfileClicked);
 }
예제 #25
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget MainWindow
     this.Name = "MainWindow";
     this.Title = global::Mono.Unix.Catalog.GetString ("MainWindow");
     this.Icon = global::Stetic.IconLoader.LoadIcon (this, "gtk-home", global::Gtk.IconSize.Menu);
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.fixed1 = new global::Gtk.Fixed ();
     this.fixed1.Name = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.btnmostrar = new global::Gtk.Button ();
     this.btnmostrar.CanFocus = true;
     this.btnmostrar.Name = "btnmostrar";
     this.btnmostrar.UseUnderline = true;
     this.btnmostrar.Label = global::Mono.Unix.Catalog.GetString ("Mostrar ");
     this.fixed1.Add (this.btnmostrar);
     global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.btnmostrar]));
     w1.X = 31;
     w1.Y = 28;
     this.Add (this.fixed1);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 894;
     this.DefaultHeight = 578;
     this.Show ();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler (this.OnDeleteEvent);
 }
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget MonoDevelop.Ide.Execution.MonoExecutionParametersPreview
			this.Name = "MonoDevelop.Ide.Execution.MonoExecutionParametersPreview";
			this.Title = global::MonoDevelop.Core.GettextCatalog.GetString ("Options Preview");
			this.WindowPosition = ((global::Gtk.WindowPosition)(4));
			this.Modal = true;
			// Internal child MonoDevelop.Ide.Execution.MonoExecutionParametersPreview.VBox
			global::Gtk.VBox w1 = this.VBox;
			w1.Name = "dialog1_VBox";
			w1.BorderWidth = ((uint)(2));
			// Container child dialog1_VBox.Gtk.Box+BoxChild
			this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
			this.GtkScrolledWindow.Name = "GtkScrolledWindow";
			this.GtkScrolledWindow.HscrollbarPolicy = ((global::Gtk.PolicyType)(2));
			this.GtkScrolledWindow.BorderWidth = ((uint)(6));
			// Container child GtkScrolledWindow.Gtk.Container+ContainerChild
			global::Gtk.Viewport w2 = new global::Gtk.Viewport ();
			w2.ShadowType = ((global::Gtk.ShadowType)(0));
			// Container child GtkViewport.Gtk.Container+ContainerChild
			this.labelOps = new global::Gtk.Label ();
			this.labelOps.Name = "labelOps";
			this.labelOps.Xalign = 0f;
			this.labelOps.Yalign = 0f;
			this.labelOps.UseMarkup = true;
			this.labelOps.Wrap = true;
			this.labelOps.Selectable = true;
			this.labelOps.WidthChars = 50;
			w2.Add (this.labelOps);
			this.GtkScrolledWindow.Add (w2);
			w1.Add (this.GtkScrolledWindow);
			global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(w1[this.GtkScrolledWindow]));
			w5.Position = 0;
			// Internal child MonoDevelop.Ide.Execution.MonoExecutionParametersPreview.ActionArea
			global::Gtk.HButtonBox w6 = this.ActionArea;
			w6.Name = "dialog1_ActionArea";
			w6.Spacing = 10;
			w6.BorderWidth = ((uint)(5));
			w6.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonOk = new global::Gtk.Button ();
			this.buttonOk.CanDefault = true;
			this.buttonOk.CanFocus = true;
			this.buttonOk.Name = "buttonOk";
			this.buttonOk.UseStock = true;
			this.buttonOk.UseUnderline = true;
			this.buttonOk.Label = "gtk-close";
			this.AddActionWidget (this.buttonOk, -7);
			global::Gtk.ButtonBox.ButtonBoxChild w7 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w6[this.buttonOk]));
			w7.Expand = false;
			w7.Fill = false;
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.DefaultWidth = 501;
			this.DefaultHeight = 341;
			this.Show ();
		}
예제 #27
0
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget catoolgui.reqImport
			this.Name = "catoolgui.reqImport";
			this.Title = global::Mono.Unix.Catalog.GetString ("Import Request");
			this.WindowPosition = ((global::Gtk.WindowPosition)(4));
			// Internal child catoolgui.reqImport.VBox
			global::Gtk.VBox w1 = this.VBox;
			w1.Name = "dialog1_VBox";
			w1.BorderWidth = ((uint)(2));
			// Container child dialog1_VBox.Gtk.Box+BoxChild
			this.reqChooser = new global::Gtk.FileChooserButton (global::Mono.Unix.Catalog.GetString ("Select a Request"), ((global::Gtk.FileChooserAction)(0)));
			this.reqChooser.Name = "reqChooser";
			w1.Add (this.reqChooser);
			global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(w1 [this.reqChooser]));
			w2.Position = 0;
			w2.Expand = false;
			w2.Fill = false;
			// Internal child catoolgui.reqImport.ActionArea
			global::Gtk.HButtonBox w3 = this.ActionArea;
			w3.Name = "dialog1_ActionArea";
			w3.Spacing = 10;
			w3.BorderWidth = ((uint)(5));
			w3.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonCancel = new global::Gtk.Button ();
			this.buttonCancel.CanDefault = true;
			this.buttonCancel.CanFocus = true;
			this.buttonCancel.Name = "buttonCancel";
			this.buttonCancel.UseStock = true;
			this.buttonCancel.UseUnderline = true;
			this.buttonCancel.Label = "gtk-cancel";
			this.AddActionWidget (this.buttonCancel, -6);
			global::Gtk.ButtonBox.ButtonBoxChild w4 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonCancel]));
			w4.Expand = false;
			w4.Fill = false;
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonOk = new global::Gtk.Button ();
			this.buttonOk.CanDefault = true;
			this.buttonOk.CanFocus = true;
			this.buttonOk.Name = "buttonOk";
			this.buttonOk.UseStock = true;
			this.buttonOk.UseUnderline = true;
			this.buttonOk.Label = "gtk-ok";
			this.AddActionWidget (this.buttonOk, -5);
			global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonOk]));
			w5.Position = 1;
			w5.Expand = false;
			w5.Fill = false;
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.DefaultWidth = 194;
			this.DefaultHeight = 74;
			this.Show ();
			this.buttonCancel.Clicked += new global::System.EventHandler (this.OnButtonCancelClicked);
			this.buttonOk.Clicked += new global::System.EventHandler (this.OnButtonOkClicked);
		}
		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget MonoDevelop.ValaBinding.AddPathDialog
			this.Name = "MonoDevelop.ValaBinding.AddPathDialog";
			this.Title = global::Mono.Unix.Catalog.GetString ("Add Path");
			this.Modal = true;
			// Internal child MonoDevelop.ValaBinding.AddPathDialog.VBox
			global::Gtk.VBox w1 = this.VBox;
			w1.Name = "dialog1_VBox";
			w1.Spacing = 6;
			w1.BorderWidth = ((uint)(2));
			// Container child dialog1_VBox.Gtk.Box+BoxChild
			this.file_chooser_widget = new global::Gtk.FileChooserWidget (((global::Gtk.FileChooserAction)(0)));
			this.file_chooser_widget.Name = "file_chooser_widget";
			this.file_chooser_widget.ShowHidden = true;
			w1.Add (this.file_chooser_widget);
			global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(w1[this.file_chooser_widget]));
			w2.Position = 0;
			// Internal child MonoDevelop.ValaBinding.AddPathDialog.ActionArea
			global::Gtk.HButtonBox w3 = this.ActionArea;
			w3.Name = "dialog1_ActionArea";
			w3.Spacing = 6;
			w3.BorderWidth = ((uint)(5));
			w3.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonCancel = new global::Gtk.Button ();
			this.buttonCancel.CanDefault = true;
			this.buttonCancel.CanFocus = true;
			this.buttonCancel.Name = "buttonCancel";
			this.buttonCancel.UseStock = true;
			this.buttonCancel.UseUnderline = true;
			this.buttonCancel.Label = "gtk-cancel";
			this.AddActionWidget (this.buttonCancel, -6);
			global::Gtk.ButtonBox.ButtonBoxChild w4 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3[this.buttonCancel]));
			w4.Expand = false;
			w4.Fill = false;
			// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
			this.buttonOk = new global::Gtk.Button ();
			this.buttonOk.CanDefault = true;
			this.buttonOk.CanFocus = true;
			this.buttonOk.Name = "buttonOk";
			this.buttonOk.UseStock = true;
			this.buttonOk.UseUnderline = true;
			this.buttonOk.Label = "gtk-ok";
			this.AddActionWidget (this.buttonOk, -5);
			global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3[this.buttonOk]));
			w5.Position = 1;
			w5.Expand = false;
			w5.Fill = false;
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.DefaultWidth = 649;
			this.DefaultHeight = 436;
			this.Show ();
			this.buttonCancel.Clicked += new global::System.EventHandler (this.OnCancelButtonClick);
			this.buttonOk.Clicked += new global::System.EventHandler (this.OnOkButtonClick);
		}
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget Screenary.Client.WelcomeDialog
     this.Name = "Screenary.Client.WelcomeDialog";
     this.Title = global::Mono.Unix.Catalog.GetString ("Welcome to Screenary!");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Internal child Screenary.Client.WelcomeDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.label1 = new global::Gtk.Label ();
     this.label1.Name = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("Would you like to use the application as a sender or receiver?");
     w1.Add (this.label1);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(w1 [this.label1]));
     w2.Position = 0;
     w2.Expand = false;
     w2.Fill = false;
     w2.Padding = ((uint)(16));
     // Internal child Screenary.Client.WelcomeDialog.ActionArea
     global::Gtk.HButtonBox w3 = this.ActionArea;
     w3.Name = "dialog1_ActionArea";
     w3.Spacing = 10;
     w3.BorderWidth = ((uint)(5));
     w3.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonSender = new global::Gtk.Button ();
     this.buttonSender.CanDefault = true;
     this.buttonSender.CanFocus = true;
     this.buttonSender.Name = "buttonSender";
     this.buttonSender.UseUnderline = true;
     this.buttonSender.Label = global::Mono.Unix.Catalog.GetString ("Sender");
     this.AddActionWidget (this.buttonSender, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w4 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonSender]));
     w4.Expand = false;
     w4.Fill = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonReceiver = new global::Gtk.Button ();
     this.buttonReceiver.CanDefault = true;
     this.buttonReceiver.CanFocus = true;
     this.buttonReceiver.Name = "buttonReceiver";
     this.buttonReceiver.UseUnderline = true;
     this.buttonReceiver.Label = global::Mono.Unix.Catalog.GetString ("Receiver");
     this.AddActionWidget (this.buttonReceiver, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonReceiver]));
     w5.Position = 1;
     w5.Expand = false;
     w5.Fill = false;
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 410;
     this.DefaultHeight = 133;
     this.Show ();
     this.buttonSender.Clicked += new global::System.EventHandler (this.OnButtonSenderClicked);
     this.buttonReceiver.Clicked += new global::System.EventHandler (this.OnButtonReceiverClicked);
 }
예제 #30
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize (this);
     // Widget FrontEnd.ViewLogbook
     this.Name = "FrontEnd.ViewLogbook";
     this.Title = global::Mono.Unix.Catalog.GetString ("ViewLogbook");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child FrontEnd.ViewLogbook.Gtk.Container+ContainerChild
     this.vbox3 = new global::Gtk.VBox ();
     this.vbox3.Name = "vbox3";
     this.vbox3.Spacing = 6;
     this.vbox3.BorderWidth = ((uint)(5));
     // Container child vbox3.Gtk.Box+BoxChild
     this.calendar1 = new global::Gtk.Calendar ();
     this.calendar1.CanFocus = true;
     this.calendar1.Name = "calendar1";
     this.calendar1.DisplayOptions = ((global::Gtk.CalendarDisplayOptions)(35));
     this.vbox3.Add (this.calendar1);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.calendar1]));
     w1.Position = 0;
     w1.Expand = false;
     w1.Fill = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
     this.GtkScrolledWindow.Name = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.textview1 = new global::Gtk.TextView ();
     this.textview1.CanFocus = true;
     this.textview1.Name = "textview1";
     this.textview1.Editable = false;
     this.textview1.WrapMode = ((global::Gtk.WrapMode)(2));
     this.GtkScrolledWindow.Add (this.textview1);
     this.vbox3.Add (this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.GtkScrolledWindow]));
     w3.Position = 1;
     // Container child vbox3.Gtk.Box+BoxChild
     this.btnClose = new global::Gtk.Button ();
     this.btnClose.CanFocus = true;
     this.btnClose.Name = "btnClose";
     this.btnClose.UseUnderline = true;
     this.btnClose.Label = global::Mono.Unix.Catalog.GetString ("Close");
     this.vbox3.Add (this.btnClose);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.btnClose]));
     w4.Position = 2;
     w4.Expand = false;
     w4.Fill = false;
     w4.Padding = ((uint)(5));
     this.Add (this.vbox3);
     if ((this.Child != null)) {
         this.Child.ShowAll ();
     }
     this.DefaultWidth = 400;
     this.DefaultHeight = 603;
     this.Show ();
     this.calendar1.DaySelected += new global::System.EventHandler (this.OnDayChange);
     this.calendar1.MonthChanged += new global::System.EventHandler (this.OnMonthChange);
     this.btnClose.Clicked += new global::System.EventHandler (this.OnCloseClick);
 }
예제 #31
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget Moscrif.IDE.Option.FilteringWidget
     global::Stetic.BinContainer.Attach(this);
     this.Name = "Moscrif.IDE.Option.FilteringWidget";
     // Container child Moscrif.IDE.Option.FilteringWidget.Gtk.Container+ContainerChild
     this.table2               = new global::Gtk.Table(((uint)(3)), ((uint)(3)), false);
     this.table2.Name          = "table2";
     this.table2.RowSpacing    = ((uint)(6));
     this.table2.ColumnSpacing = ((uint)(6));
     // Container child table2.Gtk.Table+TableChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.tvMask          = new global::Gtk.TreeView();
     this.tvMask.CanFocus = true;
     this.tvMask.Name     = "tvMask";
     this.GtkScrolledWindow.Add(this.tvMask);
     this.table2.Add(this.GtkScrolledWindow);
     global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table2 [this.GtkScrolledWindow]));
     w2.TopAttach    = ((uint)(2));
     w2.BottomAttach = ((uint)(3));
     w2.LeftAttach   = ((uint)(1));
     w2.RightAttach  = ((uint)(2));
     w2.YPadding     = ((uint)(5));
     w2.XOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table2.Gtk.Table+TableChild
     this.GtkScrolledWindow1            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow1.Name       = "GtkScrolledWindow1";
     this.GtkScrolledWindow1.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow1.Gtk.Container+ContainerChild
     this.tvFilter          = new global::Gtk.TreeView();
     this.tvFilter.CanFocus = true;
     this.tvFilter.Name     = "tvFilter";
     this.GtkScrolledWindow1.Add(this.tvFilter);
     this.table2.Add(this.GtkScrolledWindow1);
     global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table2 [this.GtkScrolledWindow1]));
     w4.LeftAttach  = ((uint)(1));
     w4.RightAttach = ((uint)(2));
     w4.YPadding    = ((uint)(5));
     // Container child table2.Gtk.Table+TableChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.Xalign    = 1F;
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("Mask");
     this.table2.Add(this.label3);
     global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table2 [this.label3]));
     w5.TopAttach    = ((uint)(2));
     w5.BottomAttach = ((uint)(3));
     w5.XPadding     = ((uint)(5));
     w5.XOptions     = ((global::Gtk.AttachOptions)(4));
     w5.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table2.Gtk.Table+TableChild
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.Xalign    = 1F;
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("Filter");
     this.table2.Add(this.label4);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table2 [this.label4]));
     w6.XPadding = ((uint)(5));
     w6.XOptions = ((global::Gtk.AttachOptions)(4));
     w6.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table2.Gtk.Table+TableChild
     this.vbuttonbox2             = new global::Gtk.VButtonBox();
     this.vbuttonbox2.Name        = "vbuttonbox2";
     this.vbuttonbox2.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(3));
     // Container child vbuttonbox2.Gtk.ButtonBox+ButtonBoxChild
     this.btnAddMask              = new global::Gtk.Button();
     this.btnAddMask.CanFocus     = true;
     this.btnAddMask.Name         = "btnAddMask";
     this.btnAddMask.UseUnderline = true;
     this.btnAddMask.Label        = global::Mono.Unix.Catalog.GetString("Add");
     this.vbuttonbox2.Add(this.btnAddMask);
     global::Gtk.ButtonBox.ButtonBoxChild w7 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox2 [this.btnAddMask]));
     w7.Expand = false;
     w7.Fill   = false;
     // Container child vbuttonbox2.Gtk.ButtonBox+ButtonBoxChild
     this.btnDeleteMask              = new global::Gtk.Button();
     this.btnDeleteMask.CanFocus     = true;
     this.btnDeleteMask.Name         = "btnDeleteMask";
     this.btnDeleteMask.UseUnderline = true;
     this.btnDeleteMask.Label        = global::Mono.Unix.Catalog.GetString("Delete");
     this.vbuttonbox2.Add(this.btnDeleteMask);
     global::Gtk.ButtonBox.ButtonBoxChild w8 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox2 [this.btnDeleteMask]));
     w8.Position = 1;
     w8.Expand   = false;
     w8.Fill     = false;
     // Container child vbuttonbox2.Gtk.ButtonBox+ButtonBoxChild
     this.btnEditMask              = new global::Gtk.Button();
     this.btnEditMask.CanFocus     = true;
     this.btnEditMask.Name         = "btnEditMask";
     this.btnEditMask.UseUnderline = true;
     this.btnEditMask.Label        = global::Mono.Unix.Catalog.GetString("Edit");
     this.vbuttonbox2.Add(this.btnEditMask);
     global::Gtk.ButtonBox.ButtonBoxChild w9 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox2 [this.btnEditMask]));
     w9.Position = 2;
     w9.Expand   = false;
     w9.Fill     = false;
     this.table2.Add(this.vbuttonbox2);
     global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table2 [this.vbuttonbox2]));
     w10.TopAttach    = ((uint)(2));
     w10.BottomAttach = ((uint)(3));
     w10.LeftAttach   = ((uint)(2));
     w10.RightAttach  = ((uint)(3));
     w10.XPadding     = ((uint)(5));
     w10.XOptions     = ((global::Gtk.AttachOptions)(4));
     w10.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table2.Gtk.Table+TableChild
     this.vbuttonbox3             = new global::Gtk.VButtonBox();
     this.vbuttonbox3.Name        = "vbuttonbox3";
     this.vbuttonbox3.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(3));
     // Container child vbuttonbox3.Gtk.ButtonBox+ButtonBoxChild
     this.btnAddFilter              = new global::Gtk.Button();
     this.btnAddFilter.CanFocus     = true;
     this.btnAddFilter.Name         = "btnAddFilter";
     this.btnAddFilter.UseUnderline = true;
     this.btnAddFilter.Label        = global::Mono.Unix.Catalog.GetString("Add");
     this.vbuttonbox3.Add(this.btnAddFilter);
     global::Gtk.ButtonBox.ButtonBoxChild w11 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox3 [this.btnAddFilter]));
     w11.Expand = false;
     w11.Fill   = false;
     // Container child vbuttonbox3.Gtk.ButtonBox+ButtonBoxChild
     this.btnDeleteFilter              = new global::Gtk.Button();
     this.btnDeleteFilter.CanFocus     = true;
     this.btnDeleteFilter.Name         = "btnDeleteFilter";
     this.btnDeleteFilter.UseUnderline = true;
     this.btnDeleteFilter.Label        = global::Mono.Unix.Catalog.GetString("Delete");
     this.vbuttonbox3.Add(this.btnDeleteFilter);
     global::Gtk.ButtonBox.ButtonBoxChild w12 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox3 [this.btnDeleteFilter]));
     w12.Position = 1;
     w12.Expand   = false;
     w12.Fill     = false;
     // Container child vbuttonbox3.Gtk.ButtonBox+ButtonBoxChild
     this.btnEditFilter              = new global::Gtk.Button();
     this.btnEditFilter.CanFocus     = true;
     this.btnEditFilter.Name         = "btnEditFilter";
     this.btnEditFilter.UseUnderline = true;
     this.btnEditFilter.Label        = global::Mono.Unix.Catalog.GetString("Edit");
     this.vbuttonbox3.Add(this.btnEditFilter);
     global::Gtk.ButtonBox.ButtonBoxChild w13 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox3 [this.btnEditFilter]));
     w13.Position = 2;
     w13.Expand   = false;
     w13.Fill     = false;
     this.table2.Add(this.vbuttonbox3);
     global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table2 [this.vbuttonbox3]));
     w14.LeftAttach  = ((uint)(2));
     w14.RightAttach = ((uint)(3));
     w14.YPadding    = ((uint)(5));
     w14.XOptions    = ((global::Gtk.AttachOptions)(4));
     w14.YOptions    = ((global::Gtk.AttachOptions)(4));
     this.Add(this.table2);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Hide();
     this.btnAddFilter.Clicked    += new global::System.EventHandler(this.OnBtnAddFilterClicked);
     this.btnDeleteFilter.Clicked += new global::System.EventHandler(this.OnBtnDeleteFilterClicked);
     this.btnEditFilter.Clicked   += new global::System.EventHandler(this.OnBtnEditFilterClicked);
     this.btnAddMask.Clicked      += new global::System.EventHandler(this.OnBtnAddMaskClicked);
     this.btnDeleteMask.Clicked   += new global::System.EventHandler(this.OnBtnDeleteMaskClicked);
     this.btnEditMask.Clicked     += new global::System.EventHandler(this.OnBtnEditMaskClicked);
 }
예제 #32
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("MainWindow");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.fixed1           = new global::Gtk.Fixed();
     this.fixed1.Name      = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.btnShowMsg              = new global::Gtk.Button();
     this.btnShowMsg.CanFocus     = true;
     this.btnShowMsg.Name         = "btnShowMsg";
     this.btnShowMsg.UseUnderline = true;
     this.btnShowMsg.Label        = global::Mono.Unix.Catalog.GetString("ShowMessage");
     this.fixed1.Add(this.btnShowMsg);
     global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.btnShowMsg]));
     w1.X = 10;
     w1.Y = 443;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.btnLogin              = new global::Gtk.Button();
     this.btnLogin.CanFocus     = true;
     this.btnLogin.Name         = "btnLogin";
     this.btnLogin.UseUnderline = true;
     this.btnLogin.Label        = global::Mono.Unix.Catalog.GetString("Login");
     this.fixed1.Add(this.btnLogin);
     global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.btnLogin]));
     w2.X = 153;
     w2.Y = 436;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.btnNewDb              = new global::Gtk.Button();
     this.btnNewDb.CanFocus     = true;
     this.btnNewDb.Name         = "btnNewDb";
     this.btnNewDb.UseUnderline = true;
     this.btnNewDb.Label        = global::Mono.Unix.Catalog.GetString("New DB");
     this.fixed1.Add(this.btnNewDb);
     global::Gtk.Fixed.FixedChild w3 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.btnNewDb]));
     w3.X = 263;
     w3.Y = 434;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.etrPsw               = new global::Gtk.Entry();
     this.etrPsw.CanFocus      = true;
     this.etrPsw.Name          = "etrPsw";
     this.etrPsw.IsEditable    = true;
     this.etrPsw.InvisibleChar = '•';
     this.fixed1.Add(this.etrPsw);
     global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.etrPsw]));
     w4.X = 202;
     w4.Y = 401;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.etrUser               = new global::Gtk.Entry();
     this.etrUser.CanFocus      = true;
     this.etrUser.Name          = "etrUser";
     this.etrUser.IsEditable    = true;
     this.etrUser.InvisibleChar = '•';
     this.fixed1.Add(this.etrUser);
     global::Gtk.Fixed.FixedChild w5 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.etrUser]));
     w5.X = 203;
     w5.Y = 363;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("Senha:");
     this.fixed1.Add(this.label2);
     global::Gtk.Fixed.FixedChild w6 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.label2]));
     w6.X = 19;
     w6.Y = 411;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("Usuário:");
     this.fixed1.Add(this.label1);
     global::Gtk.Fixed.FixedChild w7 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.label1]));
     w7.X = 17;
     w7.Y = 387;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.button1              = new global::Gtk.Button();
     this.button1.CanFocus     = true;
     this.button1.Name         = "button1";
     this.button1.UseUnderline = true;
     this.button1.Label        = global::Mono.Unix.Catalog.GetString("GtkButton");
     this.fixed1.Add(this.button1);
     global::Gtk.Fixed.FixedChild w8 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.button1]));
     w8.X = 485;
     w8.Y = 441;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.btnOsAbertas              = new global::Gtk.Button();
     this.btnOsAbertas.CanFocus     = true;
     this.btnOsAbertas.Name         = "btnOsAbertas";
     this.btnOsAbertas.UseUnderline = true;
     this.btnOsAbertas.Label        = global::Mono.Unix.Catalog.GetString("O.S. Abertas");
     this.fixed1.Add(this.btnOsAbertas);
     global::Gtk.Fixed.FixedChild w9 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.btnOsAbertas]));
     w9.X = 2;
     w9.Y = 5;
     this.Add(this.fixed1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 637;
     this.DefaultHeight = 493;
     this.Show();
     this.DeleteEvent          += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.btnShowMsg.Clicked   += new global::System.EventHandler(this.OnBtnShowMsgClicked);
     this.btnNewDb.Clicked     += new global::System.EventHandler(this.OnBtnNewDbClicked);
     this.button1.Clicked      += new global::System.EventHandler(this.OnButton1Clicked);
     this.btnOsAbertas.Clicked += new global::System.EventHandler(this.OnBtnOsAbertasClicked);
 }
예제 #33
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget Docking.Components.ScriptEditor
     global::Stetic.BinContainer.Attach(this);
     this.Name = "Docking.Components.ScriptEditor";
     // Container child Docking.Components.ScriptEditor.Gtk.Container+ContainerChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.vpaned1          = new global::Gtk.VPaned();
     this.vpaned1.CanFocus = true;
     this.vpaned1.Name     = "vpaned1";
     this.vpaned1.Position = 102;
     // Container child vpaned1.Gtk.Paned+PanedChild
     this.scrolledwindow4            = new global::Gtk.ScrolledWindow();
     this.scrolledwindow4.CanFocus   = true;
     this.scrolledwindow4.Name       = "scrolledwindow4";
     this.scrolledwindow4.ShadowType = ((global::Gtk.ShadowType)(1));
     this.vpaned1.Add(this.scrolledwindow4);
     global::Gtk.Paned.PanedChild w1 = ((global::Gtk.Paned.PanedChild)(this.vpaned1 [this.scrolledwindow4]));
     w1.Resize = false;
     // Container child vpaned1.Gtk.Paned+PanedChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.textMessage          = new global::Docking.Widgets.TextViewLocalized();
     this.textMessage.CanFocus = true;
     this.textMessage.Name     = "textMessage";
     this.textMessage.Editable = false;
     this.hbox1.Add(this.textMessage);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.textMessage]));
     w2.Position = 0;
     // Container child hbox1.Gtk.Box+BoxChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.buttonOK              = new global::Gtk.Button();
     this.buttonOK.CanFocus     = true;
     this.buttonOK.Name         = "buttonOK";
     this.buttonOK.UseUnderline = true;
     global::Gtk.Image w3 = new global::Gtk.Image();
     w3.Pixbuf           = global::Stetic.IconLoader.LoadIcon(this, "gtk-apply", global::Gtk.IconSize.Button);
     this.buttonOK.Image = w3;
     this.vbox1.Add(this.buttonOK);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.buttonOK]));
     w4.Position = 0;
     w4.Expand   = false;
     w4.Fill     = false;
     this.hbox1.Add(this.vbox1);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.vbox1]));
     w5.Position = 1;
     w5.Expand   = false;
     w5.Fill     = false;
     this.vpaned1.Add(this.hbox1);
     this.vbox2.Add(this.vpaned1);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.vpaned1]));
     w7.Position = 0;
     this.Add(this.vbox2);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Hide();
 }
예제 #34
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget TdP2019TPFinalRichieri.SessionDialog
     this.Name           = "TdP2019TPFinalRichieri.SessionDialog";
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Internal child TdP2019TPFinalRichieri.SessionDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vboxSignUp         = new global::Gtk.VBox();
     this.vboxSignUp.Name    = "vboxSignUp";
     this.vboxSignUp.Spacing = 6;
     // Container child vboxSignUp.Gtk.Box+BoxChild
     this.imgHeader        = new global::Gtk.Image();
     this.imgHeader.Name   = "imgHeader";
     this.imgHeader.Pixbuf = global::Gdk.Pixbuf.LoadFromResource("TdP2019TPFinalRichieri.UI.Resources.Header.png");
     this.vboxSignUp.Add(this.imgHeader);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vboxSignUp[this.imgHeader]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child vboxSignUp.Gtk.Box+BoxChild
     this.entryQuestion               = new global::Gtk.Entry();
     this.entryQuestion.CanFocus      = true;
     this.entryQuestion.Name          = "entryQuestion";
     this.entryQuestion.IsEditable    = false;
     this.entryQuestion.InvisibleChar = '•';
     this.vboxSignUp.Add(this.entryQuestion);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vboxSignUp[this.entryQuestion]));
     w3.Position = 1;
     w3.Expand   = false;
     // Container child vboxSignUp.Gtk.Box+BoxChild
     this.cbbAnswers = global::Gtk.ComboBox.NewText();
     this.cbbAnswers.WidthRequest = 200;
     this.cbbAnswers.Name         = "cbbAnswers";
     this.vboxSignUp.Add(this.cbbAnswers);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vboxSignUp[this.cbbAnswers]));
     w4.Position = 2;
     w4.Expand   = false;
     // Container child vboxSignUp.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     this.vboxSignUp.Add(this.hbox1);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vboxSignUp[this.hbox1]));
     w5.Position = 3;
     w1.Add(this.vboxSignUp);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(w1[this.vboxSignUp]));
     w6.Position = 0;
     // Internal child TdP2019TPFinalRichieri.SessionDialog.ActionArea
     global::Gtk.HButtonBox w7 = this.ActionArea;
     w7.Name        = "dialog1_ActionArea";
     w7.Spacing     = 10;
     w7.BorderWidth = ((uint)(5));
     w7.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.btnClose              = new global::Gtk.Button();
     this.btnClose.CanDefault   = true;
     this.btnClose.CanFocus     = true;
     this.btnClose.Name         = "btnClose";
     this.btnClose.UseUnderline = true;
     this.btnClose.Label        = global::Mono.Unix.Catalog.GetString("_Close");
     this.AddActionWidget(this.btnClose, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w8 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w7[this.btnClose]));
     w8.Expand = false;
     w8.Fill   = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.btnAnswer              = new global::Gtk.Button();
     this.btnAnswer.CanDefault   = true;
     this.btnAnswer.CanFocus     = true;
     this.btnAnswer.Name         = "btnAnswer";
     this.btnAnswer.UseUnderline = true;
     this.btnAnswer.Label        = global::Mono.Unix.Catalog.GetString("_Answer");
     this.AddActionWidget(this.btnAnswer, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w9 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w7[this.btnAnswer]));
     w9.Position = 1;
     w9.Expand   = false;
     w9.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 693;
     this.DefaultHeight = 377;
     this.Show();
     this.btnClose.Clicked  += new global::System.EventHandler(this.OnBtnCloseClicked);
     this.btnAnswer.Clicked += new global::System.EventHandler(this.OnBtnAnswerClicked);
 }
예제 #35
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget OPDtabGui.LoadBackup
     this.Name           = "OPDtabGui.LoadBackup";
     this.Title          = "LoadBackup";
     this.Icon           = global::Gdk.Pixbuf.LoadFromResource("OPDtabGui.AppIcon.png");
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     // Container child OPDtabGui.LoadBackup.Gtk.Container+ContainerChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.cbBackupFiles      = new global::Gtk.ComboBox();
     this.cbBackupFiles.Name = "cbBackupFiles";
     this.hbox1.Add(this.cbBackupFiles);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.cbBackupFiles]));
     w1.Position = 0;
     // Container child hbox1.Gtk.Box+BoxChild
     this.btnLoad              = new global::Gtk.Button();
     this.btnLoad.CanFocus     = true;
     this.btnLoad.Name         = "btnLoad";
     this.btnLoad.UseUnderline = true;
     this.btnLoad.Label        = "Load";
     this.hbox1.Add(this.btnLoad);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.btnLoad]));
     w2.Position = 1;
     w2.Expand   = false;
     w2.Fill     = false;
     this.vbox1.Add(this.hbox1);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox1]));
     w3.Position = 0;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.frame1      = new global::Gtk.Frame();
     this.frame1.Name = "frame1";
     // Container child frame1.Gtk.Container+ContainerChild
     this.GtkAlignment             = new global::Gtk.Alignment(0F, 0F, 1F, 1F);
     this.GtkAlignment.Name        = "GtkAlignment";
     this.GtkAlignment.LeftPadding = ((uint)(12));
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     this.table1               = new global::Gtk.Table(((uint)(2)), ((uint)(2)), false);
     this.table1.Name          = "table1";
     this.table1.RowSpacing    = ((uint)(6));
     this.table1.ColumnSpacing = ((uint)(6));
     // Container child table1.Gtk.Table+TableChild
     this.GtkScrolledWindow2                  = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow2.Name             = "GtkScrolledWindow2";
     this.GtkScrolledWindow2.HscrollbarPolicy = ((global::Gtk.PolicyType)(2));
     // Container child GtkScrolledWindow2.Gtk.Container+ContainerChild
     global::Gtk.Viewport w4 = new global::Gtk.Viewport();
     w4.ShadowType = ((global::Gtk.ShadowType)(0));
     // Container child GtkViewport2.Gtk.Container+ContainerChild
     this.vboxRounds         = new global::Gtk.VBox();
     this.vboxRounds.Name    = "vboxRounds";
     this.vboxRounds.Spacing = 6;
     w4.Add(this.vboxRounds);
     this.GtkScrolledWindow2.Add(w4);
     this.table1.Add(this.GtkScrolledWindow2);
     global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table1[this.GtkScrolledWindow2]));
     w7.TopAttach    = ((uint)(1));
     w7.BottomAttach = ((uint)(2));
     w7.LeftAttach   = ((uint)(1));
     w7.RightAttach  = ((uint)(2));
     // Container child table1.Gtk.Table+TableChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.Yalign    = 0F;
     this.label1.LabelProp = "Debaters:";
     this.table1.Add(this.label1);
     global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table1[this.label1]));
     w8.XOptions = ((global::Gtk.AttachOptions)(4));
     w8.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.labelDebaters           = new global::Gtk.Label();
     this.labelDebaters.Name      = "labelDebaters";
     this.labelDebaters.Xalign    = 0F;
     this.labelDebaters.LabelProp = "<i>None selected</i>";
     this.labelDebaters.UseMarkup = true;
     this.table1.Add(this.labelDebaters);
     global::Gtk.Table.TableChild w9 = ((global::Gtk.Table.TableChild)(this.table1[this.labelDebaters]));
     w9.LeftAttach  = ((uint)(1));
     w9.RightAttach = ((uint)(2));
     w9.XOptions    = ((global::Gtk.AttachOptions)(4));
     w9.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.labelRounds           = new global::Gtk.Label();
     this.labelRounds.Name      = "labelRounds";
     this.labelRounds.Yalign    = 0F;
     this.labelRounds.LabelProp = "Rounds:";
     this.table1.Add(this.labelRounds);
     global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table1[this.labelRounds]));
     w10.TopAttach    = ((uint)(1));
     w10.BottomAttach = ((uint)(2));
     w10.XOptions     = ((global::Gtk.AttachOptions)(4));
     w10.YOptions     = ((global::Gtk.AttachOptions)(4));
     this.GtkAlignment.Add(this.table1);
     this.frame1.Add(this.GtkAlignment);
     this.GtkLabel1           = new global::Gtk.Label();
     this.GtkLabel1.Name      = "GtkLabel1";
     this.GtkLabel1.LabelProp = "Info";
     this.GtkLabel1.UseMarkup = true;
     this.frame1.LabelWidget  = this.GtkLabel1;
     this.vbox1.Add(this.frame1);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.frame1]));
     w13.Position = 1;
     this.Add(this.vbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 400;
     this.DefaultHeight = 300;
     this.Show();
     this.cbBackupFiles.Changed += new global::System.EventHandler(this.OnCbBackupFilesChanged);
     this.btnLoad.Clicked       += new global::System.EventHandler(this.OnBtnLoadClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget LongoMatch.Gui.Dialog.DatabasesManager
     this.Name            = "LongoMatch.Gui.Dialog.DatabasesManager";
     this.Title           = global::Mono.Unix.Catalog.GetString("Databases manager");
     this.Icon            = global::Gdk.Pixbuf.LoadFromResource("logo.svg");
     this.WindowPosition  = ((global::Gtk.WindowPosition)(4));
     this.Modal           = true;
     this.Gravity         = ((global::Gdk.Gravity)(5));
     this.SkipPagerHint   = true;
     this.SkipTaskbarHint = true;
     // Internal child LongoMatch.Gui.Dialog.DatabasesManager.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.dblabel      = new global::Gtk.Label();
     this.dblabel.Name = "dblabel";
     this.vbox2.Add(this.dblabel);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.dblabel]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.treeview          = new global::Gtk.TreeView();
     this.treeview.CanFocus = true;
     this.treeview.Name     = "treeview";
     this.GtkScrolledWindow.Add(this.treeview);
     this.hbox1.Add(this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.GtkScrolledWindow]));
     w4.Position = 0;
     // Container child hbox1.Gtk.Box+BoxChild
     this.vbox3         = new global::Gtk.VBox();
     this.vbox3.Name    = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.selectbutton              = new global::Gtk.Button();
     this.selectbutton.Sensitive    = false;
     this.selectbutton.CanFocus     = true;
     this.selectbutton.Name         = "selectbutton";
     this.selectbutton.UseUnderline = true;
     // Container child selectbutton.Gtk.Container+ContainerChild
     global::Gtk.Alignment w5 = new global::Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     global::Gtk.HBox w6 = new global::Gtk.HBox();
     w6.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Image w7 = new global::Gtk.Image();
     w7.Pixbuf = global::Stetic.IconLoader.LoadIcon(this, "gtk-apply", global::Gtk.IconSize.Menu);
     w6.Add(w7);
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Label w9 = new global::Gtk.Label();
     w9.LabelProp    = global::Mono.Unix.Catalog.GetString("_Select DB");
     w9.UseUnderline = true;
     w6.Add(w9);
     w5.Add(w6);
     this.selectbutton.Add(w5);
     this.vbox3.Add(this.selectbutton);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.selectbutton]));
     w13.Position = 0;
     w13.Expand   = false;
     w13.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.delbutton              = new global::Gtk.Button();
     this.delbutton.Sensitive    = false;
     this.delbutton.CanFocus     = true;
     this.delbutton.Name         = "delbutton";
     this.delbutton.UseUnderline = true;
     // Container child delbutton.Gtk.Container+ContainerChild
     global::Gtk.Alignment w14 = new global::Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     global::Gtk.HBox w15 = new global::Gtk.HBox();
     w15.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Image w16 = new global::Gtk.Image();
     w16.Pixbuf = global::Stetic.IconLoader.LoadIcon(this, "gtk-delete", global::Gtk.IconSize.Menu);
     w15.Add(w16);
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Label w18 = new global::Gtk.Label();
     w18.LabelProp    = global::Mono.Unix.Catalog.GetString("_Delete");
     w18.UseUnderline = true;
     w15.Add(w18);
     w14.Add(w15);
     this.delbutton.Add(w14);
     this.vbox3.Add(this.delbutton);
     global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.delbutton]));
     w22.Position = 1;
     w22.Expand   = false;
     w22.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.backupbutton              = new global::Gtk.Button();
     this.backupbutton.Sensitive    = false;
     this.backupbutton.CanFocus     = true;
     this.backupbutton.Name         = "backupbutton";
     this.backupbutton.UseUnderline = true;
     // Container child backupbutton.Gtk.Container+ContainerChild
     global::Gtk.Alignment w23 = new global::Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     global::Gtk.HBox w24 = new global::Gtk.HBox();
     w24.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Image w25 = new global::Gtk.Image();
     w25.Pixbuf = global::Stetic.IconLoader.LoadIcon(this, "gtk-save-as", global::Gtk.IconSize.Menu);
     w24.Add(w25);
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Label w27 = new global::Gtk.Label();
     w27.LabelProp    = global::Mono.Unix.Catalog.GetString("_Backup");
     w27.UseUnderline = true;
     w24.Add(w27);
     w23.Add(w24);
     this.backupbutton.Add(w23);
     this.vbox3.Add(this.backupbutton);
     global::Gtk.Box.BoxChild w31 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.backupbutton]));
     w31.Position = 2;
     w31.Expand   = false;
     w31.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.addbutton              = new global::Gtk.Button();
     this.addbutton.CanFocus     = true;
     this.addbutton.Name         = "addbutton";
     this.addbutton.UseUnderline = true;
     // Container child addbutton.Gtk.Container+ContainerChild
     global::Gtk.Alignment w32 = new global::Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     global::Gtk.HBox w33 = new global::Gtk.HBox();
     w33.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Image w34 = new global::Gtk.Image();
     w34.Pixbuf = global::Stetic.IconLoader.LoadIcon(this, "gtk-add", global::Gtk.IconSize.Menu);
     w33.Add(w34);
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Label w36 = new global::Gtk.Label();
     w36.LabelProp    = global::Mono.Unix.Catalog.GetString("_Add");
     w36.UseUnderline = true;
     w33.Add(w36);
     w32.Add(w33);
     this.addbutton.Add(w32);
     this.vbox3.Add(this.addbutton);
     global::Gtk.Box.BoxChild w40 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.addbutton]));
     w40.Position = 3;
     w40.Expand   = false;
     w40.Fill     = false;
     this.hbox1.Add(this.vbox3);
     global::Gtk.Box.BoxChild w41 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.vbox3]));
     w41.Position = 1;
     w41.Expand   = false;
     w41.Fill     = false;
     this.vbox2.Add(this.hbox1);
     global::Gtk.Box.BoxChild w42 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbox1]));
     w42.Position = 1;
     w1.Add(this.vbox2);
     global::Gtk.Box.BoxChild w43 = ((global::Gtk.Box.BoxChild)(w1 [this.vbox2]));
     w43.Position = 0;
     // Internal child LongoMatch.Gui.Dialog.DatabasesManager.ActionArea
     global::Gtk.HButtonBox w44 = this.ActionArea;
     w44.Name        = "dialog1_ActionArea";
     w44.Spacing     = 10;
     w44.BorderWidth = ((uint)(5));
     w44.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk              = new global::Gtk.Button();
     this.buttonOk.CanDefault   = true;
     this.buttonOk.CanFocus     = true;
     this.buttonOk.Name         = "buttonOk";
     this.buttonOk.UseStock     = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label        = "gtk-ok";
     this.AddActionWidget(this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w45 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w44 [this.buttonOk]));
     w45.Expand = false;
     w45.Fill   = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 400;
     this.DefaultHeight = 300;
     this.Show();
     this.treeview.CursorChanged += new global::System.EventHandler(this.OnTreeviewCursorChanged);
     this.selectbutton.Clicked   += new global::System.EventHandler(this.OnSelectbuttonClicked);
     this.delbutton.Clicked      += new global::System.EventHandler(this.OnDelbuttonClicked);
     this.backupbutton.Clicked   += new global::System.EventHandler(this.OnBackupbuttonClicked);
     this.addbutton.Clicked      += new global::System.EventHandler(this.OnAddbuttonClicked);
 }
예제 #37
0
 protected virtual void Build()
 {
     MonoDevelop.Components.Gui.Initialize(this);
     // Widget MonoDevelop.Debugger.Viewers.ValueVisualizerDialog
     this.Name           = "MonoDevelop.Debugger.Viewers.ValueVisualizerDialog";
     this.Title          = global::Mono.Unix.Catalog.GetString("Value Visualizer");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Internal child MonoDevelop.Debugger.Viewers.ValueVisualizerDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.mainBox             = new global::Gtk.VBox();
     this.mainBox.Name        = "mainBox";
     this.mainBox.Spacing     = 6;
     this.mainBox.BorderWidth = ((uint)(6));
     // Container child mainBox.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("View as:");
     this.hbox1.Add(this.label1);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.label1]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     this.mainBox.Add(this.hbox1);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.mainBox [this.hbox1]));
     w3.Position = 0;
     w3.Expand   = false;
     w3.Fill     = false;
     w1.Add(this.mainBox);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(w1 [this.mainBox]));
     w4.Position = 0;
     // Internal child MonoDevelop.Debugger.Viewers.ValueVisualizerDialog.ActionArea
     global::Gtk.HButtonBox w5 = this.ActionArea;
     w5.Name        = "dialog1_ActionArea";
     w5.Spacing     = 10;
     w5.BorderWidth = ((uint)(5));
     w5.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel              = new global::Gtk.Button();
     this.buttonCancel.CanDefault   = true;
     this.buttonCancel.CanFocus     = true;
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.UseStock     = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label        = "gtk-cancel";
     this.AddActionWidget(this.buttonCancel, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w6 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w5 [this.buttonCancel]));
     w6.Expand = false;
     w6.Fill   = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonSave              = new global::Gtk.Button();
     this.buttonSave.CanDefault   = true;
     this.buttonSave.CanFocus     = true;
     this.buttonSave.Name         = "buttonSave";
     this.buttonSave.UseStock     = true;
     this.buttonSave.UseUnderline = true;
     this.buttonSave.Label        = "gtk-save";
     this.AddActionWidget(this.buttonSave, -10);
     global::Gtk.ButtonBox.ButtonBoxChild w7 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w5 [this.buttonSave]));
     w7.Position = 1;
     w7.Expand   = false;
     w7.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 628;
     this.DefaultHeight = 433;
     this.Hide();
     this.buttonSave.Clicked += new global::System.EventHandler(this.OnSaveClicked);
 }
예제 #38
0
 protected virtual void Build()
 {
     MonoDevelop.Components.Gui.Initialize(this);
     // Widget MonoDevelop.Ide.Projects.ConfirmProjectDeleteDialog
     this.Name           = "MonoDevelop.Ide.Projects.ConfirmProjectDeleteDialog";
     this.Title          = global::Mono.Unix.Catalog.GetString("Delete Project");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Modal          = true;
     // Internal child MonoDevelop.Ide.Projects.ConfirmProjectDeleteDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox2             = new global::Gtk.VBox();
     this.vbox2.Name        = "vbox2";
     this.vbox2.Spacing     = 6;
     this.vbox2.BorderWidth = ((uint)(6));
     // Container child vbox2.Gtk.Box+BoxChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.Xalign    = 0F;
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("Please select which files and folders you want to delete:");
     this.vbox2.Add(this.label1);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.label1]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.radioDeleteAll               = new global::Gtk.RadioButton(global::Mono.Unix.Catalog.GetString("Delete the project file and the whole project directory:"));
     this.radioDeleteAll.CanFocus      = true;
     this.radioDeleteAll.Name          = "radioDeleteAll";
     this.radioDeleteAll.DrawIndicator = true;
     this.radioDeleteAll.UseUnderline  = true;
     this.radioDeleteAll.Group         = new global::GLib.SList(global::System.IntPtr.Zero);
     this.vbox2.Add(this.radioDeleteAll);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.radioDeleteAll]));
     w3.Position = 1;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.alignment1             = new global::Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.alignment1.Name        = "alignment1";
     this.alignment1.LeftPadding = ((uint)(30));
     // Container child alignment1.Gtk.Container+ContainerChild
     this.labelProjectDir           = new global::Gtk.Label();
     this.labelProjectDir.Name      = "labelProjectDir";
     this.labelProjectDir.Xalign    = 0F;
     this.labelProjectDir.LabelProp = "label2";
     this.alignment1.Add(this.labelProjectDir);
     this.vbox2.Add(this.alignment1);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.alignment1]));
     w5.Position = 2;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.radioDeleteSel               = new global::Gtk.RadioButton(global::Mono.Unix.Catalog.GetString("Delete the following files and folders:"));
     this.radioDeleteSel.CanFocus      = true;
     this.radioDeleteSel.Name          = "radioDeleteSel";
     this.radioDeleteSel.DrawIndicator = true;
     this.radioDeleteSel.UseUnderline  = true;
     this.radioDeleteSel.Group         = this.radioDeleteAll.Group;
     this.vbox2.Add(this.radioDeleteSel);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.radioDeleteSel]));
     w6.Position = 3;
     w6.Expand   = false;
     w6.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.alignment2             = new global::Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.alignment2.Name        = "alignment2";
     this.alignment2.LeftPadding = ((uint)(30));
     // Container child alignment2.Gtk.Container+ContainerChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.fileList                = new global::Gtk.TreeView();
     this.fileList.CanFocus       = true;
     this.fileList.Name           = "fileList";
     this.fileList.HeadersVisible = false;
     this.GtkScrolledWindow.Add(this.fileList);
     this.alignment2.Add(this.GtkScrolledWindow);
     this.vbox2.Add(this.alignment2);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.alignment2]));
     w9.Position = 4;
     w1.Add(this.vbox2);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(w1 [this.vbox2]));
     w10.Position = 0;
     // Internal child MonoDevelop.Ide.Projects.ConfirmProjectDeleteDialog.ActionArea
     global::Gtk.HButtonBox w11 = this.ActionArea;
     w11.Name        = "dialog1_ActionArea";
     w11.Spacing     = 10;
     w11.BorderWidth = ((uint)(5));
     w11.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel              = new global::Gtk.Button();
     this.buttonCancel.CanDefault   = true;
     this.buttonCancel.CanFocus     = true;
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.UseStock     = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label        = "gtk-cancel";
     this.AddActionWidget(this.buttonCancel, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w12 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w11 [this.buttonCancel]));
     w12.Expand = false;
     w12.Fill   = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk              = new global::Gtk.Button();
     this.buttonOk.CanDefault   = true;
     this.buttonOk.CanFocus     = true;
     this.buttonOk.Name         = "buttonOk";
     this.buttonOk.UseStock     = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label        = "gtk-delete";
     this.AddActionWidget(this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w13 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w11 [this.buttonOk]));
     w13.Position = 1;
     w13.Expand   = false;
     w13.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 512;
     this.DefaultHeight = 387;
     this.Hide();
     this.radioDeleteAll.Toggled += new global::System.EventHandler(this.OnRadioDeleteAllToggled);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MonoDevelop.Ide.Gui.Dialogs.TipOfTheDayWindow
     this.Name           = "MonoDevelop.Ide.Gui.Dialogs.TipOfTheDayWindow";
     this.Title          = "Tip of the Day";
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     this.BorderWidth    = ((uint)(6));
     // Container child MonoDevelop.Ide.Gui.Dialogs.TipOfTheDayWindow.Gtk.Container+ContainerChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.vbox3             = new global::Gtk.VBox();
     this.vbox3.Name        = "vbox3";
     this.vbox3.Spacing     = 12;
     this.vbox3.BorderWidth = ((uint)(6));
     // Container child vbox3.Gtk.Box+BoxChild
     this.hbox7         = new global::Gtk.HBox();
     this.hbox7.Name    = "hbox7";
     this.hbox7.Spacing = 5;
     // Container child hbox7.Gtk.Box+BoxChild
     this.image5        = new global::Gtk.Image();
     this.image5.Name   = "image5";
     this.image5.Xalign = 0f;
     this.image5.Yalign = 0f;
     this.image5.Pixbuf = global::Stetic.IconLoader.LoadIcon(this, "gtk-dialog-info", global::Gtk.IconSize.Dialog);
     this.hbox7.Add(this.image5);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.image5]));
     w1.Position = 0;
     w1.Expand   = false;
     // Container child hbox7.Gtk.Box+BoxChild
     this.categoryLabel           = new global::Gtk.Label();
     this.categoryLabel.Name      = "categoryLabel";
     this.categoryLabel.Xalign    = 0f;
     this.categoryLabel.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Did you know...?");
     this.categoryLabel.UseMarkup = true;
     this.categoryLabel.Wrap      = true;
     this.hbox7.Add(this.categoryLabel);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox7[this.categoryLabel]));
     w2.Position = 1;
     w2.Expand   = false;
     w2.Fill     = false;
     this.vbox3.Add(this.hbox7);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.hbox7]));
     w3.Position = 0;
     w3.Expand   = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.scrolledwindow2            = new global::Gtk.ScrolledWindow();
     this.scrolledwindow2.Name       = "scrolledwindow2";
     this.scrolledwindow2.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child scrolledwindow2.Gtk.Container+ContainerChild
     this.tipTextview               = new global::Gtk.TextView();
     this.tipTextview.Buffer.Text   = "Did you know that you can design lots of cool things with glade?";
     this.tipTextview.Name          = "tipTextview";
     this.tipTextview.Editable      = false;
     this.tipTextview.CursorVisible = false;
     this.tipTextview.WrapMode      = ((global::Gtk.WrapMode)(2));
     this.scrolledwindow2.Add(this.tipTextview);
     this.vbox3.Add(this.scrolledwindow2);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.scrolledwindow2]));
     w5.Position = 1;
     this.vbox2.Add(this.vbox3);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.vbox3]));
     w6.Position = 0;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox5             = new global::Gtk.HBox();
     this.hbox5.Name        = "hbox5";
     this.hbox5.Spacing     = 12;
     this.hbox5.BorderWidth = ((uint)(6));
     // Container child hbox5.Gtk.Box+BoxChild
     this.noshowCheckbutton               = new global::Gtk.CheckButton();
     this.noshowCheckbutton.Name          = "noshowCheckbutton";
     this.noshowCheckbutton.Label         = global::MonoDevelop.Core.GettextCatalog.GetString("_Show at startup");
     this.noshowCheckbutton.DrawIndicator = true;
     this.noshowCheckbutton.UseUnderline  = true;
     this.hbox5.Add(this.noshowCheckbutton);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox5[this.noshowCheckbutton]));
     w7.Position = 0;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child hbox5.Gtk.Box+BoxChild
     this.hbuttonbox1             = new global::Gtk.HButtonBox();
     this.hbuttonbox1.Spacing     = 10;
     this.hbuttonbox1.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.nextButton              = new global::Gtk.Button();
     this.nextButton.Name         = "nextButton";
     this.nextButton.UseUnderline = true;
     // Container child nextButton.Gtk.Container+ContainerChild
     global::Gtk.Alignment w8 = new global::Gtk.Alignment(0.5f, 0.5f, 0f, 0f);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     global::Gtk.HBox w9 = new global::Gtk.HBox();
     w9.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Image w10 = new global::Gtk.Image();
     w10.Pixbuf = global::Stetic.IconLoader.LoadIcon(this, "gtk-go-forward", global::Gtk.IconSize.Button);
     w9.Add(w10);
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Label w12 = new global::Gtk.Label();
     w12.LabelProp    = global::MonoDevelop.Core.GettextCatalog.GetString("_Next Tip");
     w12.UseUnderline = true;
     w9.Add(w12);
     w8.Add(w9);
     this.nextButton.Add(w8);
     this.hbuttonbox1.Add(this.nextButton);
     global::Gtk.ButtonBox.ButtonBoxChild w16 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.hbuttonbox1[this.nextButton]));
     w16.Expand = false;
     w16.Fill   = false;
     // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.closeButton              = new global::Gtk.Button();
     this.closeButton.CanDefault   = true;
     this.closeButton.Name         = "closeButton";
     this.closeButton.UseStock     = true;
     this.closeButton.UseUnderline = true;
     this.closeButton.Label        = "gtk-close";
     this.hbuttonbox1.Add(this.closeButton);
     global::Gtk.ButtonBox.ButtonBoxChild w17 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.hbuttonbox1[this.closeButton]));
     w17.Position = 1;
     w17.Expand   = false;
     w17.Fill     = false;
     this.hbox5.Add(this.hbuttonbox1);
     global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.hbox5[this.hbuttonbox1]));
     w18.Position = 1;
     this.vbox2.Add(this.hbox5);
     global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hbox5]));
     w19.Position = 1;
     w19.Expand   = false;
     this.Add(this.vbox2);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 500;
     this.DefaultHeight = 285;
     this.Show();
 }
예제 #40
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MonoDevelop.Ide.Projects.NewFileDialog
     this.Name           = "MonoDevelop.Ide.Projects.NewFileDialog";
     this.Title          = global::MonoDevelop.Core.GettextCatalog.GetString("New File");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.BorderWidth    = ((uint)(6));
     // Internal child MonoDevelop.Ide.Projects.NewFileDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.Spacing     = 6;
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox2             = new global::Gtk.VBox();
     this.vbox2.Name        = "vbox2";
     this.vbox2.Spacing     = 6;
     this.vbox2.BorderWidth = ((uint)(6));
     // Container child vbox2.Gtk.Box+BoxChild
     this.hpaned1          = new global::Gtk.HPaned();
     this.hpaned1.CanFocus = true;
     this.hpaned1.Name     = "hpaned1";
     this.hpaned1.Position = 192;
     // Container child hpaned1.Gtk.Paned+PanedChild
     this.scrolledwindow1            = new global::Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus   = true;
     this.scrolledwindow1.Name       = "scrolledwindow1";
     this.scrolledwindow1.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     this.catView = new global::Gtk.TreeView();
     this.catView.WidthRequest   = 160;
     this.catView.CanFocus       = true;
     this.catView.Name           = "catView";
     this.catView.HeadersVisible = false;
     this.scrolledwindow1.Add(this.catView);
     this.hpaned1.Add(this.scrolledwindow1);
     global::Gtk.Paned.PanedChild w3 = ((global::Gtk.Paned.PanedChild)(this.hpaned1[this.scrolledwindow1]));
     w3.Resize = false;
     // Container child hpaned1.Gtk.Paned+PanedChild
     this.panedTemplates          = new global::Gtk.HPaned();
     this.panedTemplates.CanFocus = true;
     this.panedTemplates.Name     = "panedTemplates";
     this.panedTemplates.Position = 292;
     // Container child panedTemplates.Gtk.Paned+PanedChild
     this.boxTemplates         = new global::Gtk.VBox();
     this.boxTemplates.Name    = "boxTemplates";
     this.boxTemplates.Spacing = 6;
     this.panedTemplates.Add(this.boxTemplates);
     global::Gtk.Paned.PanedChild w4 = ((global::Gtk.Paned.PanedChild)(this.panedTemplates[this.boxTemplates]));
     w4.Resize = false;
     // Container child panedTemplates.Gtk.Paned+PanedChild
     this.scrolledInfo                  = new global::Gtk.ScrolledWindow();
     this.scrolledInfo.CanFocus         = true;
     this.scrolledInfo.Name             = "scrolledInfo";
     this.scrolledInfo.HscrollbarPolicy = ((global::Gtk.PolicyType)(2));
     this.scrolledInfo.ShadowType       = ((global::Gtk.ShadowType)(1));
     // Container child scrolledInfo.Gtk.Container+ContainerChild
     global::Gtk.Viewport w5 = new global::Gtk.Viewport();
     w5.ShadowType = ((global::Gtk.ShadowType)(0));
     // Container child GtkViewport.Gtk.Container+ContainerChild
     this.boxInfo             = new global::Gtk.VBox();
     this.boxInfo.Name        = "boxInfo";
     this.boxInfo.Spacing     = 6;
     this.boxInfo.BorderWidth = ((uint)(3));
     // Container child boxInfo.Gtk.Box+BoxChild
     this.labelTemplateTitle = new global::Gtk.Label();
     this.labelTemplateTitle.WidthRequest = 145;
     this.labelTemplateTitle.Name         = "labelTemplateTitle";
     this.labelTemplateTitle.Xalign       = 0f;
     this.labelTemplateTitle.LabelProp    = global::MonoDevelop.Core.GettextCatalog.GetString("<b>Console Project</b>");
     this.labelTemplateTitle.UseMarkup    = true;
     this.labelTemplateTitle.Wrap         = true;
     this.boxInfo.Add(this.labelTemplateTitle);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.boxInfo[this.labelTemplateTitle]));
     w6.Position = 0;
     w6.Expand   = false;
     w6.Fill     = false;
     // Container child boxInfo.Gtk.Box+BoxChild
     this.infoLabel = new global::Gtk.Label();
     this.infoLabel.WidthRequest = 145;
     this.infoLabel.Name         = "infoLabel";
     this.infoLabel.Xalign       = 0f;
     this.infoLabel.Yalign       = 0f;
     this.infoLabel.LabelProp    = global::MonoDevelop.Core.GettextCatalog.GetString("Creates a new C# Project");
     this.infoLabel.Wrap         = true;
     this.boxInfo.Add(this.infoLabel);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.boxInfo[this.infoLabel]));
     w7.Position = 1;
     w7.Expand   = false;
     w7.Fill     = false;
     w5.Add(this.boxInfo);
     this.scrolledInfo.Add(w5);
     this.panedTemplates.Add(this.scrolledInfo);
     global::Gtk.Paned.PanedChild w10 = ((global::Gtk.Paned.PanedChild)(this.panedTemplates[this.scrolledInfo]));
     w10.Resize = false;
     this.hpaned1.Add(this.panedTemplates);
     this.vbox2.Add(this.hpaned1);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hpaned1]));
     w12.Position = 0;
     // Container child vbox2.Gtk.Box+BoxChild
     this.label1 = new global::Gtk.Label();
     this.label1.WidthRequest  = 1;
     this.label1.HeightRequest = 1;
     this.label1.Name          = "label1";
     this.vbox2.Add(this.label1);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.label1]));
     w13.Position = 1;
     w13.Expand   = false;
     w13.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox2         = new global::Gtk.HBox();
     this.hbox2.Name    = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Name:");
     this.hbox2.Add(this.label2);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.label2]));
     w14.Position = 0;
     w14.Expand   = false;
     w14.Fill     = false;
     // Container child hbox2.Gtk.Box+BoxChild
     this.nameEntry               = new global::Gtk.Entry();
     this.nameEntry.CanFocus      = true;
     this.nameEntry.Name          = "nameEntry";
     this.nameEntry.IsEditable    = true;
     this.nameEntry.InvisibleChar = '●';
     this.hbox2.Add(this.nameEntry);
     global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.nameEntry]));
     w15.Position = 1;
     this.vbox2.Add(this.hbox2);
     global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hbox2]));
     w16.Position = 2;
     w16.Expand   = false;
     w16.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.boxProject         = new global::Gtk.VBox();
     this.boxProject.Name    = "boxProject";
     this.boxProject.Spacing = 6;
     // Container child boxProject.Gtk.Box+BoxChild
     this.hbox3         = new global::Gtk.HBox();
     this.hbox3.Name    = "hbox3";
     this.hbox3.Spacing = 6;
     // Container child hbox3.Gtk.Box+BoxChild
     this.projectAddCheckbox               = new global::Gtk.CheckButton();
     this.projectAddCheckbox.CanFocus      = true;
     this.projectAddCheckbox.Name          = "projectAddCheckbox";
     this.projectAddCheckbox.Label         = global::MonoDevelop.Core.GettextCatalog.GetString("_Add to project:");
     this.projectAddCheckbox.DrawIndicator = true;
     this.projectAddCheckbox.UseUnderline  = true;
     this.hbox3.Add(this.projectAddCheckbox);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.projectAddCheckbox]));
     w17.Position = 0;
     w17.Expand   = false;
     w17.Fill     = false;
     // Container child hbox3.Gtk.Box+BoxChild
     this.projectAddCombo      = global::Gtk.ComboBox.NewText();
     this.projectAddCombo.Name = "projectAddCombo";
     this.hbox3.Add(this.projectAddCombo);
     global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.projectAddCombo]));
     w18.Position = 1;
     this.boxProject.Add(this.hbox3);
     global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.boxProject[this.hbox3]));
     w19.Position = 0;
     w19.Expand   = false;
     w19.Fill     = false;
     // Container child boxProject.Gtk.Box+BoxChild
     this.hbox4         = new global::Gtk.HBox();
     this.hbox4.Name    = "hbox4";
     this.hbox4.Spacing = 6;
     // Container child hbox4.Gtk.Box+BoxChild
     this.projectPathLabel           = new global::Gtk.Label();
     this.projectPathLabel.Name      = "projectPathLabel";
     this.projectPathLabel.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("Path:");
     this.hbox4.Add(this.projectPathLabel);
     global::Gtk.Box.BoxChild w20 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.projectPathLabel]));
     w20.Position = 0;
     w20.Expand   = false;
     w20.Fill     = false;
     // Container child hbox4.Gtk.Box+BoxChild
     this.projectFolderEntry      = new global::MonoDevelop.Components.FolderEntry();
     this.projectFolderEntry.Name = "projectFolderEntry";
     this.hbox4.Add(this.projectFolderEntry);
     global::Gtk.Box.BoxChild w21 = ((global::Gtk.Box.BoxChild)(this.hbox4[this.projectFolderEntry]));
     w21.Position = 1;
     this.boxProject.Add(this.hbox4);
     global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.boxProject[this.hbox4]));
     w22.Position = 1;
     w22.Expand   = false;
     w22.Fill     = false;
     this.vbox2.Add(this.boxProject);
     global::Gtk.Box.BoxChild w23 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.boxProject]));
     w23.Position = 3;
     w23.Expand   = false;
     w23.Fill     = false;
     w1.Add(this.vbox2);
     global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(w1[this.vbox2]));
     w24.Position = 0;
     // Internal child MonoDevelop.Ide.Projects.NewFileDialog.ActionArea
     global::Gtk.HButtonBox w25 = this.ActionArea;
     w25.Name        = "dialog1_ActionArea";
     w25.Spacing     = 6;
     w25.BorderWidth = ((uint)(5));
     w25.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.cancelButton              = new global::Gtk.Button();
     this.cancelButton.CanDefault   = true;
     this.cancelButton.CanFocus     = true;
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.UseStock     = true;
     this.cancelButton.UseUnderline = true;
     this.cancelButton.Label        = "gtk-cancel";
     this.AddActionWidget(this.cancelButton, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w26 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w25[this.cancelButton]));
     w26.Expand = false;
     w26.Fill   = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.okButton              = new global::Gtk.Button();
     this.okButton.CanDefault   = true;
     this.okButton.CanFocus     = true;
     this.okButton.Name         = "okButton";
     this.okButton.UseStock     = true;
     this.okButton.UseUnderline = true;
     this.okButton.Label        = "gtk-new";
     w25.Add(this.okButton);
     global::Gtk.ButtonBox.ButtonBoxChild w27 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w25[this.okButton]));
     w27.Position = 1;
     w27.Expand   = false;
     w27.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 718;
     this.DefaultHeight = 524;
     this.boxProject.Hide();
     this.Show();
     this.scrolledInfo.SizeAllocated += new global::Gtk.SizeAllocatedHandler(this.OnScrolledInfoSizeAllocated);
 }
예제 #41
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MyNesGTK.Dialog_Paths
     this.Name           = "MyNesGTK.Dialog_Paths";
     this.Title          = global::Mono.Unix.Catalog.GetString("Paths Settings");
     this.Icon           = global::Gdk.Pixbuf.LoadFromResource("MyNesGTK.resources.folder_wrench.png");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Modal          = true;
     // Internal child MyNesGTK.Dialog_Paths.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.table3               = new global::Gtk.Table(((uint)(6)), ((uint)(3)), false);
     this.table3.Name          = "table3";
     this.table3.RowSpacing    = ((uint)(6));
     this.table3.ColumnSpacing = ((uint)(6));
     // Container child table3.Gtk.Table+TableChild
     this.button185              = new global::Gtk.Button();
     this.button185.CanFocus     = true;
     this.button185.Name         = "button185";
     this.button185.UseUnderline = true;
     this.button185.Label        = global::Mono.Unix.Catalog.GetString("Change");
     this.table3.Add(this.button185);
     global::Gtk.Table.TableChild w2 = ((global::Gtk.Table.TableChild)(this.table3 [this.button185]));
     w2.LeftAttach  = ((uint)(2));
     w2.RightAttach = ((uint)(3));
     w2.XOptions    = ((global::Gtk.AttachOptions)(4));
     w2.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.button186              = new global::Gtk.Button();
     this.button186.CanFocus     = true;
     this.button186.Name         = "button186";
     this.button186.UseUnderline = true;
     this.button186.Label        = global::Mono.Unix.Catalog.GetString("Change");
     this.table3.Add(this.button186);
     global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table3 [this.button186]));
     w3.TopAttach    = ((uint)(1));
     w3.BottomAttach = ((uint)(2));
     w3.LeftAttach   = ((uint)(2));
     w3.RightAttach  = ((uint)(3));
     w3.XOptions     = ((global::Gtk.AttachOptions)(4));
     w3.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.button187              = new global::Gtk.Button();
     this.button187.CanFocus     = true;
     this.button187.Name         = "button187";
     this.button187.UseUnderline = true;
     this.button187.Label        = global::Mono.Unix.Catalog.GetString("Change");
     this.table3.Add(this.button187);
     global::Gtk.Table.TableChild w4 = ((global::Gtk.Table.TableChild)(this.table3 [this.button187]));
     w4.TopAttach    = ((uint)(2));
     w4.BottomAttach = ((uint)(3));
     w4.LeftAttach   = ((uint)(2));
     w4.RightAttach  = ((uint)(3));
     w4.XOptions     = ((global::Gtk.AttachOptions)(4));
     w4.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.button188              = new global::Gtk.Button();
     this.button188.CanFocus     = true;
     this.button188.Name         = "button188";
     this.button188.UseUnderline = true;
     this.button188.Label        = global::Mono.Unix.Catalog.GetString("Change");
     this.table3.Add(this.button188);
     global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table3 [this.button188]));
     w5.TopAttach    = ((uint)(3));
     w5.BottomAttach = ((uint)(4));
     w5.LeftAttach   = ((uint)(2));
     w5.RightAttach  = ((uint)(3));
     w5.XOptions     = ((global::Gtk.AttachOptions)(4));
     w5.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.button189              = new global::Gtk.Button();
     this.button189.CanFocus     = true;
     this.button189.Name         = "button189";
     this.button189.UseUnderline = true;
     this.button189.Label        = global::Mono.Unix.Catalog.GetString("Change");
     this.table3.Add(this.button189);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table3 [this.button189]));
     w6.TopAttach    = ((uint)(4));
     w6.BottomAttach = ((uint)(5));
     w6.LeftAttach   = ((uint)(2));
     w6.RightAttach  = ((uint)(3));
     w6.XOptions     = ((global::Gtk.AttachOptions)(4));
     w6.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.button190              = new global::Gtk.Button();
     this.button190.CanFocus     = true;
     this.button190.Name         = "button190";
     this.button190.UseUnderline = true;
     this.button190.Label        = global::Mono.Unix.Catalog.GetString("Reset all to defaults");
     this.table3.Add(this.button190);
     global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table3 [this.button190]));
     w7.TopAttach    = ((uint)(5));
     w7.BottomAttach = ((uint)(6));
     w7.XOptions     = ((global::Gtk.AttachOptions)(4));
     w7.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.entry_gg               = new global::Gtk.Entry();
     this.entry_gg.CanFocus      = true;
     this.entry_gg.Name          = "entry_gg";
     this.entry_gg.IsEditable    = false;
     this.entry_gg.InvisibleChar = '●';
     this.table3.Add(this.entry_gg);
     global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table3 [this.entry_gg]));
     w8.TopAttach    = ((uint)(4));
     w8.BottomAttach = ((uint)(5));
     w8.LeftAttach   = ((uint)(1));
     w8.RightAttach  = ((uint)(2));
     w8.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.entry_snaps               = new global::Gtk.Entry();
     this.entry_snaps.CanFocus      = true;
     this.entry_snaps.Name          = "entry_snaps";
     this.entry_snaps.IsEditable    = false;
     this.entry_snaps.InvisibleChar = '●';
     this.table3.Add(this.entry_snaps);
     global::Gtk.Table.TableChild w9 = ((global::Gtk.Table.TableChild)(this.table3 [this.entry_snaps]));
     w9.TopAttach    = ((uint)(2));
     w9.BottomAttach = ((uint)(3));
     w9.LeftAttach   = ((uint)(1));
     w9.RightAttach  = ((uint)(2));
     w9.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.entry_sounds               = new global::Gtk.Entry();
     this.entry_sounds.CanFocus      = true;
     this.entry_sounds.Name          = "entry_sounds";
     this.entry_sounds.IsEditable    = false;
     this.entry_sounds.InvisibleChar = '●';
     this.table3.Add(this.entry_sounds);
     global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table3 [this.entry_sounds]));
     w10.TopAttach    = ((uint)(3));
     w10.BottomAttach = ((uint)(4));
     w10.LeftAttach   = ((uint)(1));
     w10.RightAttach  = ((uint)(2));
     w10.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.entry_sram               = new global::Gtk.Entry();
     this.entry_sram.CanFocus      = true;
     this.entry_sram.Name          = "entry_sram";
     this.entry_sram.IsEditable    = false;
     this.entry_sram.InvisibleChar = '●';
     this.table3.Add(this.entry_sram);
     global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.table3 [this.entry_sram]));
     w11.TopAttach    = ((uint)(1));
     w11.BottomAttach = ((uint)(2));
     w11.LeftAttach   = ((uint)(1));
     w11.RightAttach  = ((uint)(2));
     w11.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.entry_state               = new global::Gtk.Entry();
     this.entry_state.CanFocus      = true;
     this.entry_state.Name          = "entry_state";
     this.entry_state.IsEditable    = false;
     this.entry_state.InvisibleChar = '●';
     this.table3.Add(this.entry_state);
     global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.table3 [this.entry_state]));
     w12.LeftAttach  = ((uint)(1));
     w12.RightAttach = ((uint)(2));
     w12.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("State saves folder");
     this.table3.Add(this.label3);
     global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table3 [this.label3]));
     w13.XOptions = ((global::Gtk.AttachOptions)(4));
     w13.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("Save-Ram folder");
     this.table3.Add(this.label4);
     global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table3 [this.label4]));
     w14.TopAttach    = ((uint)(1));
     w14.BottomAttach = ((uint)(2));
     w14.XOptions     = ((global::Gtk.AttachOptions)(4));
     w14.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.label5           = new global::Gtk.Label();
     this.label5.Name      = "label5";
     this.label5.LabelProp = global::Mono.Unix.Catalog.GetString("Snapshots folder");
     this.table3.Add(this.label5);
     global::Gtk.Table.TableChild w15 = ((global::Gtk.Table.TableChild)(this.table3 [this.label5]));
     w15.TopAttach    = ((uint)(2));
     w15.BottomAttach = ((uint)(3));
     w15.XOptions     = ((global::Gtk.AttachOptions)(4));
     w15.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.label6           = new global::Gtk.Label();
     this.label6.Name      = "label6";
     this.label6.LabelProp = global::Mono.Unix.Catalog.GetString("Sound records folder");
     this.table3.Add(this.label6);
     global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.table3 [this.label6]));
     w16.TopAttach    = ((uint)(3));
     w16.BottomAttach = ((uint)(4));
     w16.XOptions     = ((global::Gtk.AttachOptions)(4));
     w16.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table3.Gtk.Table+TableChild
     this.label7           = new global::Gtk.Label();
     this.label7.Name      = "label7";
     this.label7.LabelProp = global::Mono.Unix.Catalog.GetString("Game Genie codes folder");
     this.table3.Add(this.label7);
     global::Gtk.Table.TableChild w17 = ((global::Gtk.Table.TableChild)(this.table3 [this.label7]));
     w17.TopAttach    = ((uint)(4));
     w17.BottomAttach = ((uint)(5));
     w17.XOptions     = ((global::Gtk.AttachOptions)(4));
     w17.YOptions     = ((global::Gtk.AttachOptions)(4));
     w1.Add(this.table3);
     global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(w1 [this.table3]));
     w18.Position = 0;
     w18.Expand   = false;
     w18.Fill     = false;
     // Internal child MyNesGTK.Dialog_Paths.ActionArea
     global::Gtk.HButtonBox w19 = this.ActionArea;
     w19.Name        = "dialog1_ActionArea";
     w19.Spacing     = 10;
     w19.BorderWidth = ((uint)(5));
     w19.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel              = new global::Gtk.Button();
     this.buttonCancel.CanDefault   = true;
     this.buttonCancel.CanFocus     = true;
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.UseStock     = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label        = "gtk-cancel";
     this.AddActionWidget(this.buttonCancel, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w20 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w19 [this.buttonCancel]));
     w20.Expand = false;
     w20.Fill   = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk              = new global::Gtk.Button();
     this.buttonOk.CanDefault   = true;
     this.buttonOk.CanFocus     = true;
     this.buttonOk.Name         = "buttonOk";
     this.buttonOk.UseStock     = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label        = "gtk-ok";
     this.AddActionWidget(this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w21 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w19 [this.buttonOk]));
     w21.Position = 1;
     w21.Expand   = false;
     w21.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 646;
     this.DefaultHeight = 315;
     this.Show();
     this.button190.Pressed += new global::System.EventHandler(this.OnButton190Pressed);
     this.button189.Pressed += new global::System.EventHandler(this.OnButton189Pressed);
     this.button188.Pressed += new global::System.EventHandler(this.OnButton188Pressed);
     this.button187.Pressed += new global::System.EventHandler(this.OnButton187Pressed);
     this.button186.Pressed += new global::System.EventHandler(this.OnButton186Pressed);
     this.button185.Pressed += new global::System.EventHandler(this.OnButton185Pressed);
 }
예제 #42
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MonoDevelop.VersionControl.Dialogs.CommitDialog
     this.Events         = ((global::Gdk.EventMask)(256));
     this.Name           = "MonoDevelop.VersionControl.Dialogs.CommitDialog";
     this.Title          = global::Mono.Unix.Catalog.GetString("Commit Files");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.BorderWidth    = ((uint)(6));
     // Internal child MonoDevelop.VersionControl.Dialogs.CommitDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Events      = ((global::Gdk.EventMask)(256));
     w1.Name        = "dialog_VBox";
     w1.Spacing     = 6;
     w1.BorderWidth = ((uint)(2));
     // Container child dialog_VBox.Gtk.Box+BoxChild
     this.mainBox             = new global::Gtk.VBox();
     this.mainBox.Name        = "mainBox";
     this.mainBox.Spacing     = 6;
     this.mainBox.BorderWidth = ((uint)(6));
     // Container child mainBox.Gtk.Box+BoxChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.Xalign    = 0F;
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("The following files will be committed:");
     this.mainBox.Add(this.label1);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.mainBox [this.label1]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child mainBox.Gtk.Box+BoxChild
     this.scrolledwindow1            = new global::Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus   = true;
     this.scrolledwindow1.Name       = "scrolledwindow1";
     this.scrolledwindow1.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     this.fileList          = new global::Gtk.TreeView();
     this.fileList.CanFocus = true;
     this.fileList.Name     = "fileList";
     this.scrolledwindow1.Add(this.fileList);
     this.mainBox.Add(this.scrolledwindow1);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.mainBox [this.scrolledwindow1]));
     w4.Position = 1;
     // Container child mainBox.Gtk.Box+BoxChild
     this.vboxExtensions         = new global::Gtk.VBox();
     this.vboxExtensions.Name    = "vboxExtensions";
     this.vboxExtensions.Spacing = 6;
     this.mainBox.Add(this.vboxExtensions);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.mainBox [this.vboxExtensions]));
     w5.PackType = ((global::Gtk.PackType)(1));
     w5.Position = 2;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child mainBox.Gtk.Box+BoxChild
     this.scrolledwindow2            = new global::Gtk.ScrolledWindow();
     this.scrolledwindow2.CanFocus   = true;
     this.scrolledwindow2.Name       = "scrolledwindow2";
     this.scrolledwindow2.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child scrolledwindow2.Gtk.Container+ContainerChild
     this.textview          = new global::Gtk.TextView();
     this.textview.CanFocus = true;
     this.textview.Name     = "textview";
     this.scrolledwindow2.Add(this.textview);
     this.mainBox.Add(this.scrolledwindow2);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.mainBox [this.scrolledwindow2]));
     w7.PackType = ((global::Gtk.PackType)(1));
     w7.Position = 3;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child mainBox.Gtk.Box+BoxChild
     this.label2              = new global::Gtk.Label();
     this.label2.Name         = "label2";
     this.label2.Xalign       = 0F;
     this.label2.LabelProp    = global::Mono.Unix.Catalog.GetString("Commit _message:");
     this.label2.UseUnderline = true;
     this.mainBox.Add(this.label2);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.mainBox [this.label2]));
     w8.PackType = ((global::Gtk.PackType)(1));
     w8.Position = 4;
     w8.Expand   = false;
     w8.Fill     = false;
     w1.Add(this.mainBox);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(w1 [this.mainBox]));
     w9.Position = 0;
     // Internal child MonoDevelop.VersionControl.Dialogs.CommitDialog.ActionArea
     global::Gtk.HButtonBox w10 = this.ActionArea;
     w10.Events      = ((global::Gdk.EventMask)(256));
     w10.Name        = "VersionControlAddIn.CommitDialog_ActionArea";
     w10.Spacing     = 6;
     w10.BorderWidth = ((uint)(5));
     w10.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child VersionControlAddIn.CommitDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.button29              = new global::Gtk.Button();
     this.button29.CanDefault   = true;
     this.button29.CanFocus     = true;
     this.button29.Name         = "button29";
     this.button29.UseStock     = true;
     this.button29.UseUnderline = true;
     this.button29.Label        = "gtk-cancel";
     this.AddActionWidget(this.button29, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w11 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w10 [this.button29]));
     w11.Expand = false;
     w11.Fill   = false;
     // Container child VersionControlAddIn.CommitDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCommit              = new global::Gtk.Button();
     this.buttonCommit.CanDefault   = true;
     this.buttonCommit.CanFocus     = true;
     this.buttonCommit.Name         = "buttonCommit";
     this.buttonCommit.UseUnderline = true;
     // Container child buttonCommit.Gtk.Container+ContainerChild
     global::Gtk.Alignment w12 = new global::Gtk.Alignment(0.5F, 0.5F, 0F, 0F);
     // Container child GtkAlignment.Gtk.Container+ContainerChild
     global::Gtk.HBox w13 = new global::Gtk.HBox();
     w13.Spacing = 2;
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Image w14 = new global::Gtk.Image();
     w14.Pixbuf = global::Stetic.IconLoader.LoadIcon(this, "vc-commit", global::Gtk.IconSize.Menu);
     w13.Add(w14);
     // Container child GtkHBox.Gtk.Container+ContainerChild
     global::Gtk.Label w16 = new global::Gtk.Label();
     w16.LabelProp    = global::Mono.Unix.Catalog.GetString("C_ommit");
     w16.UseUnderline = true;
     w13.Add(w16);
     w12.Add(w13);
     this.buttonCommit.Add(w12);
     w10.Add(this.buttonCommit);
     global::Gtk.ButtonBox.ButtonBoxChild w20 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w10 [this.buttonCommit]));
     w20.Position = 1;
     w20.Expand   = false;
     w20.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth          = 628;
     this.DefaultHeight         = 481;
     this.label2.MnemonicWidget = this.textview;
     this.Hide();
     this.buttonCommit.Clicked += new global::System.EventHandler(this.OnButtonCommitClicked);
 }
예제 #43
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget Vodovoz.RouteListCreateItemsView
     global::Stetic.BinContainer.Attach(this);
     this.Name = "Vodovoz.RouteListCreateItemsView";
     // Container child Vodovoz.RouteListCreateItemsView.Gtk.Container+ContainerChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.ylabelOrders           = new global::Gamma.GtkWidgets.yLabel();
     this.ylabelOrders.Name      = "ylabelOrders";
     this.ylabelOrders.LabelProp = global::Mono.Unix.Catalog.GetString("<b>Заказы:</b>");
     this.ylabelOrders.UseMarkup = true;
     this.hbox1.Add(this.ylabelOrders);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.ylabelOrders]));
     w1.Position = 0;
     w1.Expand   = false;
     w1.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.enumbuttonAddOrder              = new global::QS.Widgets.EnumMenuButton();
     this.enumbuttonAddOrder.CanFocus     = true;
     this.enumbuttonAddOrder.Name         = "enumbuttonAddOrder";
     this.enumbuttonAddOrder.UseUnderline = true;
     this.enumbuttonAddOrder.UseMarkup    = false;
     this.enumbuttonAddOrder.LabelXAlign  = 0F;
     this.enumbuttonAddOrder.Label        = global::Mono.Unix.Catalog.GetString("Добавить");
     global::Gtk.Image w2 = new global::Gtk.Image();
     w2.Pixbuf = global::Stetic.IconLoader.LoadIcon(this, "gtk-add", global::Gtk.IconSize.Menu);
     this.enumbuttonAddOrder.Image = w2;
     this.hbox1.Add(this.enumbuttonAddOrder);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.enumbuttonAddOrder]));
     w3.Position = 1;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.buttonDelete              = new global::Gtk.Button();
     this.buttonDelete.Sensitive    = false;
     this.buttonDelete.CanFocus     = true;
     this.buttonDelete.Name         = "buttonDelete";
     this.buttonDelete.UseUnderline = true;
     this.buttonDelete.Label        = global::Mono.Unix.Catalog.GetString("Удалить");
     global::Gtk.Image w4 = new global::Gtk.Image();
     w4.Pixbuf = global::Stetic.IconLoader.LoadIcon(this, "gtk-delete", global::Gtk.IconSize.Menu);
     this.buttonDelete.Image = w4;
     this.hbox1.Add(this.buttonDelete);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.buttonDelete]));
     w5.Position = 2;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.buttonOpenOrder              = new global::Gtk.Button();
     this.buttonOpenOrder.Sensitive    = false;
     this.buttonOpenOrder.CanFocus     = true;
     this.buttonOpenOrder.Name         = "buttonOpenOrder";
     this.buttonOpenOrder.UseUnderline = true;
     this.buttonOpenOrder.Label        = global::Mono.Unix.Catalog.GetString("Открыть заказ");
     this.hbox1.Add(this.buttonOpenOrder);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.buttonOpenOrder]));
     w6.Position = 3;
     w6.Expand   = false;
     w6.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.labelSum           = new global::Gtk.Label();
     this.labelSum.Name      = "labelSum";
     this.labelSum.Xalign    = 1F;
     this.labelSum.LabelProp = "";
     this.hbox1.Add(this.labelSum);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.labelSum]));
     w7.PackType = ((global::Gtk.PackType)(1));
     w7.Position = 4;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.lblVolume           = new global::Gtk.Label();
     this.lblVolume.Name      = "lblVolume";
     this.lblVolume.Xalign    = 0F;
     this.lblVolume.LabelProp = "";
     this.lblVolume.UseMarkup = true;
     this.hbox1.Add(this.lblVolume);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.lblVolume]));
     w8.PackType = ((global::Gtk.PackType)(1));
     w8.Position = 5;
     w8.Expand   = false;
     w8.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.lblWeight           = new global::Gtk.Label();
     this.lblWeight.Name      = "lblWeight";
     this.lblWeight.Xalign    = 0F;
     this.lblWeight.LabelProp = "";
     this.lblWeight.UseMarkup = true;
     this.hbox1.Add(this.lblWeight);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.lblWeight]));
     w9.PackType = ((global::Gtk.PackType)(1));
     w9.Position = 6;
     w9.Expand   = false;
     w9.Fill     = false;
     this.vbox1.Add(this.hbox1);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox1]));
     w10.Position = 0;
     w10.Expand   = false;
     w10.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.ytreeviewItems             = new global::Gamma.GtkWidgets.yTreeView();
     this.ytreeviewItems.CanFocus    = true;
     this.ytreeviewItems.Name        = "ytreeviewItems";
     this.ytreeviewItems.Reorderable = true;
     this.GtkScrolledWindow.Add(this.ytreeviewItems);
     this.vbox1.Add(this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.GtkScrolledWindow]));
     w12.Position = 1;
     this.Add(this.vbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Hide();
     this.enumbuttonAddOrder.EnumItemClicked += new global::System.EventHandler <QS.Widgets.EnumItemClickedEventArgs>(this.OnEnumbuttonAddOrderEnumItemClicked);
     this.buttonDelete.Clicked        += new global::System.EventHandler(this.OnButtonDeleteClicked);
     this.buttonOpenOrder.Clicked     += new global::System.EventHandler(this.OnButtonOpenOrderClicked);
     this.ytreeviewItems.RowActivated += new global::Gtk.RowActivatedHandler(this.OnYtreeviewItemsRowActivated);
 }
예제 #44
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget SDVMMR.OpenFolder
     this.Name           = "SDVMMR.OpenFolder";
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Resizable      = false;
     this.AllowGrow      = false;
     // Internal child SDVMMR.OpenFolder.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox3         = new global::Gtk.VBox();
     this.vbox3.Name    = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.vbox4         = new global::Gtk.VBox();
     this.vbox4.Name    = "vbox4";
     this.vbox4.Spacing = 6;
     // Container child vbox4.Gtk.Box+BoxChild
     this.openAppDataFolder              = new global::Gtk.Button();
     this.openAppDataFolder.CanFocus     = true;
     this.openAppDataFolder.Name         = "openAppDataFolder";
     this.openAppDataFolder.UseUnderline = true;
     this.openAppDataFolder.Label        = global::Mono.Unix.Catalog.GetString("GtkButton");
     this.vbox4.Add(this.openAppDataFolder);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.openAppDataFolder]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.openGameFolder              = new global::Gtk.Button();
     this.openGameFolder.CanFocus     = true;
     this.openGameFolder.Name         = "openGameFolder";
     this.openGameFolder.UseUnderline = true;
     this.openGameFolder.Label        = global::Mono.Unix.Catalog.GetString("GtkButton");
     this.vbox4.Add(this.openGameFolder);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.openGameFolder]));
     w3.Position = 1;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.openSDVMMFolder              = new global::Gtk.Button();
     this.openSDVMMFolder.CanFocus     = true;
     this.openSDVMMFolder.Name         = "openSDVMMFolder";
     this.openSDVMMFolder.UseUnderline = true;
     this.openSDVMMFolder.Label        = global::Mono.Unix.Catalog.GetString("GtkButton");
     this.vbox4.Add(this.openSDVMMFolder);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.openSDVMMFolder]));
     w4.Position = 2;
     w4.Expand   = false;
     w4.Fill     = false;
     this.vbox3.Add(this.vbox4);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.vbox4]));
     w5.Position = 0;
     w5.Expand   = false;
     w5.Fill     = false;
     w1.Add(this.vbox3);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(w1[this.vbox3]));
     w6.Position = 0;
     w6.Expand   = false;
     w6.Fill     = false;
     // Internal child SDVMMR.OpenFolder.ActionArea
     global::Gtk.HButtonBox w7 = this.ActionArea;
     w7.Name        = "dialog1_ActionArea";
     w7.Spacing     = 10;
     w7.BorderWidth = ((uint)(5));
     w7.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk              = new global::Gtk.Button();
     this.buttonOk.CanDefault   = true;
     this.buttonOk.CanFocus     = true;
     this.buttonOk.Name         = "buttonOk";
     this.buttonOk.UseStock     = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label        = "gtk-ok";
     this.AddActionWidget(this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w8 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w7[this.buttonOk]));
     w8.Expand = false;
     w8.Fill   = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 400;
     this.DefaultHeight = 201;
     this.Show();
     this.openAppDataFolder.Clicked += new global::System.EventHandler(this.OnOpenAppDataFolderClicked);
     this.openGameFolder.Clicked    += new global::System.EventHandler(this.OnOpenGameFolderClicked);
     this.openSDVMMFolder.Clicked   += new global::System.EventHandler(this.OnOpenSDVMMFolderClicked);
     this.buttonOk.Clicked          += new global::System.EventHandler(this.OnButtonOkClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget LongoMatch.Gui.Dialog.VideoConversionTool
     this.HeightRequest     = 0;
     this.Name              = "LongoMatch.Gui.Dialog.VideoConversionTool";
     this.Title             = global::Mono.Unix.Catalog.GetString("Video converter tool");
     this.Icon              = global::Stetic.IconLoader.LoadIcon(this, "longomatch", global::Gtk.IconSize.Menu);
     this.TypeHint          = ((global::Gdk.WindowTypeHint)(1));
     this.WindowPosition    = ((global::Gtk.WindowPosition)(1));
     this.Modal             = true;
     this.DestroyWithParent = true;
     this.Gravity           = ((global::Gdk.Gravity)(5));
     this.SkipPagerHint     = true;
     this.SkipTaskbarHint   = true;
     // Internal child LongoMatch.Gui.Dialog.VideoConversionTool.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.eventbox1      = new global::Gtk.EventBox();
     this.eventbox1.Name = "eventbox1";
     // Container child eventbox1.Gtk.Container+ContainerChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.scrolledwindow1          = new global::Gtk.ScrolledWindow();
     this.scrolledwindow1.CanFocus = true;
     this.scrolledwindow1.Name     = "scrolledwindow1";
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     global::Gtk.Viewport w2 = new global::Gtk.Viewport();
     w2.ShadowType = ((global::Gtk.ShadowType)(0));
     // Container child GtkViewport.Gtk.Container+ContainerChild
     this.filesbox         = new global::Gtk.VBox();
     this.filesbox.Name    = "filesbox";
     this.filesbox.Spacing = 6;
     w2.Add(this.filesbox);
     this.scrolledwindow1.Add(w2);
     this.vbox2.Add(this.scrolledwindow1);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.scrolledwindow1]));
     w5.Position = 0;
     // Container child vbox2.Gtk.Box+BoxChild
     this.addbutton1        = new global::Gtk.Button();
     this.addbutton1.Name   = "addbutton1";
     this.addbutton1.Relief = ((global::Gtk.ReliefStyle)(2));
     // Container child addbutton1.Gtk.Container+ContainerChild
     this.addimage      = new global::Gtk.Image();
     this.addimage.Name = "addimage";
     this.addbutton1.Add(this.addimage);
     this.addbutton1.Label = null;
     this.vbox2.Add(this.addbutton1);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.addbutton1]));
     w7.Position = 1;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hseparator1      = new global::Gtk.HSeparator();
     this.hseparator1.Name = "hseparator1";
     this.vbox2.Add(this.hseparator1);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hseparator1]));
     w8.Position = 2;
     w8.Expand   = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1 = new global::Gtk.HBox();
     this.hbox1.HeightRequest = 130;
     this.hbox1.Name          = "hbox1";
     this.hbox1.Spacing       = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.convertimage = new global::Gtk.Image();
     this.convertimage.WidthRequest = 170;
     this.convertimage.Name         = "convertimage";
     this.hbox1.Add(this.convertimage);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.convertimage]));
     w9.Position = 0;
     w9.Expand   = false;
     w9.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.table1               = new global::Gtk.Table(((uint)(3)), ((uint)(2)), false);
     this.table1.Name          = "table1";
     this.table1.RowSpacing    = ((uint)(6));
     this.table1.ColumnSpacing = ((uint)(6));
     // Container child table1.Gtk.Table+TableChild
     this.bitratecombobox      = global::Gtk.ComboBox.NewText();
     this.bitratecombobox.Name = "bitratecombobox";
     this.table1.Add(this.bitratecombobox);
     global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table1 [this.bitratecombobox]));
     w10.TopAttach    = ((uint)(1));
     w10.BottomAttach = ((uint)(2));
     w10.LeftAttach   = ((uint)(1));
     w10.RightAttach  = ((uint)(2));
     w10.XOptions     = ((global::Gtk.AttachOptions)(4));
     w10.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.filenamelabel           = new global::Gtk.Label();
     this.filenamelabel.Name      = "filenamelabel";
     this.filenamelabel.Xalign    = 1F;
     this.filenamelabel.LabelProp = global::Mono.Unix.Catalog.GetString("File name: ");
     this.table1.Add(this.filenamelabel);
     global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.table1 [this.filenamelabel]));
     w11.TopAttach    = ((uint)(2));
     w11.BottomAttach = ((uint)(3));
     w11.XOptions     = ((global::Gtk.AttachOptions)(4));
     w11.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.Xalign    = 1F;
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("Size: ");
     this.table1.Add(this.label2);
     global::Gtk.Table.TableChild w12 = ((global::Gtk.Table.TableChild)(this.table1 [this.label2]));
     w12.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.Xalign    = 1F;
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("Bitrate: ");
     this.table1.Add(this.label3);
     global::Gtk.Table.TableChild w13 = ((global::Gtk.Table.TableChild)(this.table1 [this.label3]));
     w13.TopAttach    = ((uint)(1));
     w13.BottomAttach = ((uint)(2));
     w13.XOptions     = ((global::Gtk.AttachOptions)(4));
     w13.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.mediafilechooser1        = new global::LongoMatch.Gui.Component.MediaFileChooser();
     this.mediafilechooser1.Events = ((global::Gdk.EventMask)(256));
     this.mediafilechooser1.Name   = "mediafilechooser1";
     this.table1.Add(this.mediafilechooser1);
     global::Gtk.Table.TableChild w14 = ((global::Gtk.Table.TableChild)(this.table1 [this.mediafilechooser1]));
     w14.TopAttach    = ((uint)(2));
     w14.BottomAttach = ((uint)(3));
     w14.LeftAttach   = ((uint)(1));
     w14.RightAttach  = ((uint)(2));
     w14.XOptions     = ((global::Gtk.AttachOptions)(4));
     w14.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.sizecombobox      = global::Gtk.ComboBox.NewText();
     this.sizecombobox.Name = "sizecombobox";
     this.table1.Add(this.sizecombobox);
     global::Gtk.Table.TableChild w15 = ((global::Gtk.Table.TableChild)(this.table1 [this.sizecombobox]));
     w15.LeftAttach  = ((uint)(1));
     w15.RightAttach = ((uint)(2));
     w15.XOptions    = ((global::Gtk.AttachOptions)(4));
     w15.YOptions    = ((global::Gtk.AttachOptions)(4));
     this.hbox1.Add(this.table1);
     global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.table1]));
     w16.Position = 1;
     this.vbox2.Add(this.hbox1);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbox1]));
     w17.PackType = ((global::Gtk.PackType)(1));
     w17.Position = 3;
     w17.Expand   = false;
     w17.Fill     = false;
     this.eventbox1.Add(this.vbox2);
     w1.Add(this.eventbox1);
     global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(w1 [this.eventbox1]));
     w19.Position = 0;
     // Internal child LongoMatch.Gui.Dialog.VideoConversionTool.ActionArea
     global::Gtk.HButtonBox w20 = this.ActionArea;
     w20.Name        = "dialog1_ActionArea";
     w20.Spacing     = 10;
     w20.BorderWidth = ((uint)(5));
     w20.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel              = new global::Gtk.Button();
     this.buttonCancel.CanDefault   = true;
     this.buttonCancel.CanFocus     = true;
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.UseStock     = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label        = "gtk-cancel";
     this.AddActionWidget(this.buttonCancel, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w21 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w20 [this.buttonCancel]));
     w21.Expand = false;
     w21.Fill   = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk              = new global::Gtk.Button();
     this.buttonOk.CanDefault   = true;
     this.buttonOk.CanFocus     = true;
     this.buttonOk.Name         = "buttonOk";
     this.buttonOk.UseStock     = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label        = "gtk-ok";
     this.AddActionWidget(this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w22 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w20 [this.buttonOk]));
     w22.Position = 1;
     w22.Expand   = false;
     w22.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 882;
     this.DefaultHeight = 408;
     this.Show();
 }
예제 #46
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("MainWindow");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.fixed1           = new global::Gtk.Fixed();
     this.fixed1.Name      = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("Open Path:");
     this.fixed1.Add(this.label1);
     global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label1]));
     w1.X = 19;
     w1.Y = 13;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("Save Path:");
     this.fixed1.Add(this.label2);
     global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label2]));
     w2.X = 20;
     w2.Y = 53;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.openTextBox = new global::Gtk.Entry();
     this.openTextBox.WidthRequest  = 500;
     this.openTextBox.CanFocus      = true;
     this.openTextBox.Name          = "openTextBox";
     this.openTextBox.IsEditable    = true;
     this.openTextBox.InvisibleChar = '●';
     this.fixed1.Add(this.openTextBox);
     global::Gtk.Fixed.FixedChild w3 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.openTextBox]));
     w3.X = 87;
     w3.Y = 8;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.saveTextBox = new global::Gtk.Entry();
     this.saveTextBox.WidthRequest  = 500;
     this.saveTextBox.CanFocus      = true;
     this.saveTextBox.Name          = "saveTextBox";
     this.saveTextBox.IsEditable    = true;
     this.saveTextBox.InvisibleChar = '●';
     this.fixed1.Add(this.saveTextBox);
     global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.saveTextBox]));
     w4.X = 87;
     w4.Y = 47;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.convertButton              = new global::Gtk.Button();
     this.convertButton.CanFocus     = true;
     this.convertButton.Name         = "convertButton";
     this.convertButton.UseUnderline = true;
     this.convertButton.Label        = global::Mono.Unix.Catalog.GetString("Convert");
     this.fixed1.Add(this.convertButton);
     global::Gtk.Fixed.FixedChild w5 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.convertButton]));
     w5.X = 84;
     w5.Y = 149;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.rotX               = new global::Gtk.Entry();
     this.rotX.CanFocus      = true;
     this.rotX.Name          = "rotX";
     this.rotX.Text          = global::Mono.Unix.Catalog.GetString("90");
     this.rotX.IsEditable    = true;
     this.rotX.InvisibleChar = '●';
     this.fixed1.Add(this.rotX);
     global::Gtk.Fixed.FixedChild w6 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.rotX]));
     w6.X = 425;
     w6.Y = 83;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.useColorsCheckBox               = new global::Gtk.CheckButton();
     this.useColorsCheckBox.CanFocus      = true;
     this.useColorsCheckBox.Name          = "useColorsCheckBox";
     this.useColorsCheckBox.Label         = global::Mono.Unix.Catalog.GetString("Use Colors");
     this.useColorsCheckBox.DrawIndicator = true;
     this.useColorsCheckBox.UseUnderline  = true;
     this.fixed1.Add(this.useColorsCheckBox);
     global::Gtk.Fixed.FixedChild w7 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.useColorsCheckBox]));
     w7.X = 17;
     w7.Y = 90;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.useUVCheckBox               = new global::Gtk.CheckButton();
     this.useUVCheckBox.CanFocus      = true;
     this.useUVCheckBox.Name          = "useUVCheckBox";
     this.useUVCheckBox.Label         = global::Mono.Unix.Catalog.GetString("Use UVs");
     this.useUVCheckBox.Active        = true;
     this.useUVCheckBox.DrawIndicator = true;
     this.useUVCheckBox.UseUnderline  = true;
     this.fixed1.Add(this.useUVCheckBox);
     global::Gtk.Fixed.FixedChild w8 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.useUVCheckBox]));
     w8.X = 116;
     w8.Y = 89;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.useNormalCheckBox               = new global::Gtk.CheckButton();
     this.useNormalCheckBox.CanFocus      = true;
     this.useNormalCheckBox.Name          = "useNormalCheckBox";
     this.useNormalCheckBox.Label         = global::Mono.Unix.Catalog.GetString("Use Normals");
     this.useNormalCheckBox.Active        = true;
     this.useNormalCheckBox.DrawIndicator = true;
     this.useNormalCheckBox.UseUnderline  = true;
     this.fixed1.Add(this.useNormalCheckBox);
     global::Gtk.Fixed.FixedChild w9 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.useNormalCheckBox]));
     w9.X = 197;
     w9.Y = 88;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.rotY               = new global::Gtk.Entry();
     this.rotY.CanFocus      = true;
     this.rotY.Name          = "rotY";
     this.rotY.Text          = global::Mono.Unix.Catalog.GetString("0");
     this.rotY.IsEditable    = true;
     this.rotY.InvisibleChar = '●';
     this.fixed1.Add(this.rotY);
     global::Gtk.Fixed.FixedChild w10 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.rotY]));
     w10.X = 425;
     w10.Y = 116;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.rotZ               = new global::Gtk.Entry();
     this.rotZ.CanFocus      = true;
     this.rotZ.Name          = "rotZ";
     this.rotZ.Text          = global::Mono.Unix.Catalog.GetString("0");
     this.rotZ.IsEditable    = true;
     this.rotZ.InvisibleChar = '●';
     this.fixed1.Add(this.rotZ);
     global::Gtk.Fixed.FixedChild w11 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.rotZ]));
     w11.X = 425;
     w11.Y = 148;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("Rot X:");
     this.fixed1.Add(this.label3);
     global::Gtk.Fixed.FixedChild w12 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label3]));
     w12.X = 372;
     w12.Y = 87;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("Rot Y:");
     this.fixed1.Add(this.label4);
     global::Gtk.Fixed.FixedChild w13 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label4]));
     w13.X = 372;
     w13.Y = 121;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label5           = new global::Gtk.Label();
     this.label5.Name      = "label5";
     this.label5.LabelProp = global::Mono.Unix.Catalog.GetString("Rot Z:");
     this.fixed1.Add(this.label5);
     global::Gtk.Fixed.FixedChild w14 = ((global::Gtk.Fixed.FixedChild)(this.fixed1 [this.label5]));
     w14.X = 374;
     w14.Y = 151;
     this.Add(this.fixed1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 614;
     this.DefaultHeight = 226;
     this.Show();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget VotingMultiChain.LoginWindow
     this.Name           = "VotingMultiChain.LoginWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("Voting Log In");
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     this.BorderWidth    = ((uint)(10));
     this.Resizable      = false;
     this.DefaultWidth   = 550;
     this.DefaultHeight  = 550;
     // Container child VotingMultiChain.LoginWindow.Gtk.Container+ContainerChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.titleLabel           = new global::Gtk.Label();
     this.titleLabel.Name      = "titleLabel";
     this.titleLabel.LabelProp = global::Mono.Unix.Catalog.GetString("Enter login details");
     this.vbox1.Add(this.titleLabel);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.titleLabel]));
     w1.Position = 0;
     w1.Expand   = false;
     w1.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hpaned1          = new global::Gtk.HPaned();
     this.hpaned1.CanFocus = true;
     this.hpaned1.Name     = "hpaned1";
     this.vbox2.Add(this.hpaned1);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hpaned1]));
     w2.Position = 0;
     this.vbox1.Add(this.vbox2);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.vbox2]));
     w3.Position = 1;
     // Container child vbox1.Gtk.Box+BoxChild
     this.vbox3         = new global::Gtk.VBox();
     this.vbox3.Name    = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.hbox6         = new global::Gtk.HBox();
     this.hbox6.Name    = "hbox6";
     this.hbox6.Spacing = 6;
     // Container child hbox6.Gtk.Box+BoxChild
     this.userLabel           = new global::Gtk.Label();
     this.userLabel.Name      = "userLabel";
     this.userLabel.LabelProp = global::Mono.Unix.Catalog.GetString("             User Name");
     this.hbox6.Add(this.userLabel);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.userLabel]));
     w4.Position = 0;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child hbox6.Gtk.Box+BoxChild
     this.userEntry               = new global::Gtk.Entry();
     this.userEntry.CanFocus      = true;
     this.userEntry.Name          = "userEntry";
     this.userEntry.IsEditable    = true;
     this.userEntry.InvisibleChar = '•';
     this.hbox6.Add(this.userEntry);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox6[this.userEntry]));
     w5.Position = 1;
     w5.Expand   = false;
     w5.Padding  = ((uint)(25));
     this.vbox3.Add(this.hbox6);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.hbox6]));
     w6.Position = 0;
     w6.Expand   = false;
     w6.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.hbox5         = new global::Gtk.HBox();
     this.hbox5.Name    = "hbox5";
     this.hbox5.Spacing = 6;
     // Container child hbox5.Gtk.Box+BoxChild
     this.passwordLabel           = new global::Gtk.Label();
     this.passwordLabel.Name      = "passwordLabel";
     this.passwordLabel.LabelProp = global::Mono.Unix.Catalog.GetString("               Password");
     this.hbox5.Add(this.passwordLabel);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.hbox5[this.passwordLabel]));
     w7.Position = 0;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child hbox5.Gtk.Box+BoxChild
     this.passwordEntry               = new global::Gtk.Entry();
     this.passwordEntry.CanFocus      = true;
     this.passwordEntry.Name          = "passwordEntry";
     this.passwordEntry.IsEditable    = true;
     this.passwordEntry.Visibility    = false;
     this.passwordEntry.InvisibleChar = '•';
     this.hbox5.Add(this.passwordEntry);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.hbox5[this.passwordEntry]));
     w8.Position = 1;
     w8.Fill     = false;
     w8.Padding  = ((uint)(25));
     this.vbox3.Add(this.hbox5);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.hbox5]));
     w9.Position = 1;
     w9.Expand   = false;
     w9.Fill     = false;
     this.vbox1.Add(this.vbox3);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.vbox3]));
     w10.Position = 2;
     // Container child vbox1.Gtk.Box+BoxChild
     this.loginButton              = new global::Gtk.Button();
     this.loginButton.CanFocus     = true;
     this.loginButton.Name         = "loginButton";
     this.loginButton.UseUnderline = true;
     this.loginButton.BorderWidth  = ((uint)(2));
     this.loginButton.Label        = global::Mono.Unix.Catalog.GetString("Log In");
     this.vbox1.Add(this.loginButton);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.loginButton]));
     w11.Position = 3;
     w11.Expand   = false;
     w11.Fill     = false;
     w11.Padding  = ((uint)(10));
     this.Add(this.vbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Show();
     this.DeleteEvent         += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
     this.loginButton.Clicked += new global::System.EventHandler(this.OnLoginButtonClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget Gifuser.Options.Settings.SettingsDialog
     this.Name           = "Gifuser.Options.Settings.SettingsDialog";
     this.Title          = global::Mono.Unix.Catalog.GetString("Settings");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Modal          = true;
     // Internal child Gifuser.Options.Settings.SettingsDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox2             = new global::Gtk.VBox();
     this.vbox2.Name        = "vbox2";
     this.vbox2.Spacing     = 6;
     this.vbox2.BorderWidth = ((uint)(6));
     // Container child vbox2.Gtk.Box+BoxChild
     this.vbox3         = new global::Gtk.VBox();
     this.vbox3.Name    = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.recordingsLabel           = new global::Gtk.Label();
     this.recordingsLabel.Name      = "recordingsLabel";
     this.recordingsLabel.LabelProp = global::Mono.Unix.Catalog.GetString("Recordings");
     this.vbox3.Add(this.recordingsLabel);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.recordingsLabel]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.table1               = new global::Gtk.Table(((uint)(2)), ((uint)(3)), false);
     this.table1.Name          = "table1";
     this.table1.RowSpacing    = ((uint)(6));
     this.table1.ColumnSpacing = ((uint)(6));
     // Container child table1.Gtk.Table+TableChild
     this.delayLabel           = new global::Gtk.Label();
     this.delayLabel.Name      = "delayLabel";
     this.delayLabel.LabelProp = global::Mono.Unix.Catalog.GetString("Delay");
     this.table1.Add(this.delayLabel);
     global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table1[this.delayLabel]));
     w3.TopAttach    = ((uint)(1));
     w3.BottomAttach = ((uint)(2));
     w3.XOptions     = ((global::Gtk.AttachOptions)(4));
     w3.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.folderEntry = new global::Gtk.Entry();
     global::Gtk.Tooltips w4 = new Gtk.Tooltips();
     w4.SetTip(this.folderEntry, "Destination folder to store recorded files", "Destination folder to store recorded files");
     this.folderEntry.CanFocus      = true;
     this.folderEntry.Name          = "folderEntry";
     this.folderEntry.IsEditable    = true;
     this.folderEntry.InvisibleChar = '•';
     this.table1.Add(this.folderEntry);
     global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table1[this.folderEntry]));
     w5.LeftAttach  = ((uint)(1));
     w5.RightAttach = ((uint)(2));
     w5.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.folderLabel           = new global::Gtk.Label();
     this.folderLabel.Name      = "folderLabel";
     this.folderLabel.LabelProp = global::Mono.Unix.Catalog.GetString("Folder");
     this.table1.Add(this.folderLabel);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table1[this.folderLabel]));
     w6.XOptions = ((global::Gtk.AttachOptions)(4));
     w6.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.resetDelay              = new global::Gtk.Button();
     this.resetDelay.CanFocus     = true;
     this.resetDelay.Name         = "resetDelay";
     this.resetDelay.UseUnderline = true;
     this.resetDelay.Label        = global::Mono.Unix.Catalog.GetString("Reset");
     this.table1.Add(this.resetDelay);
     global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table1[this.resetDelay]));
     w7.TopAttach    = ((uint)(1));
     w7.BottomAttach = ((uint)(2));
     w7.LeftAttach   = ((uint)(2));
     w7.RightAttach  = ((uint)(3));
     w7.XOptions     = ((global::Gtk.AttachOptions)(4));
     w7.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.resetFolder              = new global::Gtk.Button();
     this.resetFolder.CanFocus     = true;
     this.resetFolder.Name         = "resetFolder";
     this.resetFolder.UseUnderline = true;
     this.resetFolder.Label        = global::Mono.Unix.Catalog.GetString("Reset");
     this.table1.Add(this.resetFolder);
     global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table1[this.resetFolder]));
     w8.LeftAttach  = ((uint)(2));
     w8.RightAttach = ((uint)(3));
     w8.XOptions    = ((global::Gtk.AttachOptions)(4));
     w8.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.spinbutton1 = new global::Gtk.SpinButton(33, 65535, 1);
     w4.SetTip(this.spinbutton1, "The difference in milliseconds between each frame", "The difference in milliseconds between each frame");
     this.spinbutton1.CanFocus = true;
     this.spinbutton1.Name     = "spinbutton1";
     this.spinbutton1.Adjustment.PageIncrement = 10;
     this.spinbutton1.ClimbRate = 1;
     this.spinbutton1.Numeric   = true;
     this.spinbutton1.Value     = 33;
     this.table1.Add(this.spinbutton1);
     global::Gtk.Table.TableChild w9 = ((global::Gtk.Table.TableChild)(this.table1[this.spinbutton1]));
     w9.TopAttach    = ((uint)(1));
     w9.BottomAttach = ((uint)(2));
     w9.LeftAttach   = ((uint)(1));
     w9.RightAttach  = ((uint)(2));
     w9.YOptions     = ((global::Gtk.AttachOptions)(4));
     this.vbox3.Add(this.table1);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.table1]));
     w10.Position = 1;
     w10.Expand   = false;
     w10.Fill     = false;
     this.vbox2.Add(this.vbox3);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.vbox3]));
     w11.Position = 0;
     w11.Expand   = false;
     w11.Fill     = false;
     w1.Add(this.vbox2);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(w1[this.vbox2]));
     w12.Position = 0;
     w12.Expand   = false;
     w12.Fill     = false;
     // Internal child Gifuser.Options.Settings.SettingsDialog.ActionArea
     global::Gtk.HButtonBox w13 = this.ActionArea;
     w13.Name        = "dialog1_ActionArea";
     w13.Spacing     = 10;
     w13.BorderWidth = ((uint)(5));
     w13.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel              = new global::Gtk.Button();
     this.buttonCancel.CanDefault   = true;
     this.buttonCancel.CanFocus     = true;
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.UseStock     = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label        = "gtk-cancel";
     this.AddActionWidget(this.buttonCancel, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w14 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w13[this.buttonCancel]));
     w14.Expand = false;
     w14.Fill   = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk              = new global::Gtk.Button();
     this.buttonOk.CanDefault   = true;
     this.buttonOk.CanFocus     = true;
     this.buttonOk.Name         = "buttonOk";
     this.buttonOk.UseStock     = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label        = "gtk-ok";
     this.AddActionWidget(this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w15 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w13[this.buttonOk]));
     w15.Position = 1;
     w15.Expand   = false;
     w15.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 400;
     this.DefaultHeight = 176;
     this.Show();
     this.resetFolder.Clicked += new global::System.EventHandler(this.OnResetFolderClicked);
     this.resetDelay.Clicked  += new global::System.EventHandler(this.OnResetDelayClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget LongoMatch.Gui.Dialog.CodecsChoiceDialog
     this.Name              = "LongoMatch.Gui.Dialog.CodecsChoiceDialog";
     this.Icon              = global::Stetic.IconLoader.LoadIcon(this, "longomatch", global::Gtk.IconSize.Menu);
     this.WindowPosition    = ((global::Gtk.WindowPosition)(1));
     this.Modal             = true;
     this.DestroyWithParent = true;
     this.Gravity           = ((global::Gdk.Gravity)(5));
     this.SkipPagerHint     = true;
     this.SkipTaskbarHint   = true;
     // Internal child LongoMatch.Gui.Dialog.CodecsChoiceDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.alignment4      = new global::Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.alignment4.Name = "alignment4";
     // Container child alignment4.Gtk.Container+ContainerChild
     this.vbox2             = new global::Gtk.VBox();
     this.vbox2.Name        = "vbox2";
     this.vbox2.Spacing     = 6;
     this.vbox2.BorderWidth = ((uint)(10));
     // Container child vbox2.Gtk.Box+BoxChild
     this.headereventbox      = new global::Gtk.EventBox();
     this.headereventbox.Name = "headereventbox";
     // Container child headereventbox.Gtk.Container+ContainerChild
     this.alignment3               = new global::Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.alignment3.Name          = "alignment3";
     this.alignment3.LeftPadding   = ((uint)(20));
     this.alignment3.TopPadding    = ((uint)(20));
     this.alignment3.RightPadding  = ((uint)(20));
     this.alignment3.BottomPadding = ((uint)(20));
     // Container child alignment3.Gtk.Container+ContainerChild
     this.titlelabel           = new global::Gtk.Label();
     this.titlelabel.Name      = "titlelabel";
     this.titlelabel.Xalign    = 0F;
     this.titlelabel.LabelProp = global::Mono.Unix.Catalog.GetString("Missing CODECS");
     this.alignment3.Add(this.titlelabel);
     this.headereventbox.Add(this.alignment3);
     this.vbox2.Add(this.headereventbox);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.headereventbox]));
     w4.Position = 0;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("As explained and detailed in the <a href=\"http://www.longomatch.com/open-source.html\">OpenSource project</a> page, the use of this free and open source version of LongoMatch requires that you also install additional software called a CODEC, which may also be free.  \n\nTo acknowledge your understanding and for more information on why this is so, where to get it and how to install it visit the <a href=\"http://www.longomatch.com/open-source.html\">OpenSource project</a> page.\n\nTo avoid this, and to enjoy many additional functional benefits, we encourage you to upgrade to Longomatch PRO, which, for a fee, is ready-to-use. ");
     this.label1.UseMarkup = true;
     this.label1.Wrap      = true;
     this.label1.Justify   = ((global::Gtk.Justification)(3));
     this.vbox2.Add(this.label1);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.label1]));
     w5.Position = 1;
     w5.Expand   = false;
     w5.Fill     = false;
     this.alignment4.Add(this.vbox2);
     w1.Add(this.alignment4);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(w1 [this.alignment4]));
     w7.Position = 0;
     w7.Expand   = false;
     w7.Fill     = false;
     // Internal child LongoMatch.Gui.Dialog.CodecsChoiceDialog.ActionArea
     global::Gtk.HButtonBox w8 = this.ActionArea;
     w8.Name        = "dialog1_ActionArea";
     w8.Spacing     = 10;
     w8.BorderWidth = ((uint)(5));
     w8.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk            = new global::Gtk.Button();
     this.buttonOk.CanDefault = true;
     this.buttonOk.CanFocus   = true;
     this.buttonOk.Name       = "buttonOk";
     // Container child buttonOk.Gtk.Container+ContainerChild
     this.buttonOKimage      = new global::Gtk.Image();
     this.buttonOKimage.Name = "buttonOKimage";
     this.buttonOk.Add(this.buttonOKimage);
     this.buttonOk.Label = null;
     this.AddActionWidget(this.buttonOk, -3);
     global::Gtk.ButtonBox.ButtonBoxChild w10 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w8 [this.buttonOk]));
     w10.Expand = false;
     w10.Fill   = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 606;
     this.DefaultHeight = 397;
     this.Show();
 }
예제 #50
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget Hotel.frm_huespedReserv
     this.Name           = "Hotel.frm_huespedReserv";
     this.Title          = global::Mono.Unix.Catalog.GetString("frm_huespedReserv");
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     this.Gravity        = ((global::Gdk.Gravity)(5));
     // Container child Hotel.frm_huespedReserv.Gtk.Container+ContainerChild
     this.fixed1           = new global::Gtk.Fixed();
     this.fixed1.Name      = "fixed1";
     this.fixed1.HasWindow = false;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("ESCOGER HUÉSPED");
     this.fixed1.Add(this.label1);
     global::Gtk.Fixed.FixedChild w1 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.label1]));
     w1.X = 256;
     w1.Y = 22;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("Nombres:");
     this.fixed1.Add(this.label2);
     global::Gtk.Fixed.FixedChild w2 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.label2]));
     w2.X = 29;
     w2.Y = 70;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.txtNombres = new global::Gtk.Entry();
     this.txtNombres.WidthRequest  = 180;
     this.txtNombres.CanFocus      = true;
     this.txtNombres.Name          = "txtNombres";
     this.txtNombres.IsEditable    = false;
     this.txtNombres.InvisibleChar = '•';
     this.fixed1.Add(this.txtNombres);
     global::Gtk.Fixed.FixedChild w3 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.txtNombres]));
     w3.X = 124;
     w3.Y = 70;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.txtApellidos = new global::Gtk.Entry();
     this.txtApellidos.WidthRequest  = 180;
     this.txtApellidos.CanFocus      = true;
     this.txtApellidos.Name          = "txtApellidos";
     this.txtApellidos.IsEditable    = false;
     this.txtApellidos.InvisibleChar = '•';
     this.fixed1.Add(this.txtApellidos);
     global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.txtApellidos]));
     w4.X = 124;
     w4.Y = 106;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.txtCedula = new global::Gtk.Entry();
     this.txtCedula.WidthRequest  = 180;
     this.txtCedula.CanFocus      = true;
     this.txtCedula.Name          = "txtCedula";
     this.txtCedula.IsEditable    = false;
     this.txtCedula.InvisibleChar = '•';
     this.fixed1.Add(this.txtCedula);
     global::Gtk.Fixed.FixedChild w5 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.txtCedula]));
     w5.X = 124;
     w5.Y = 143;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("Cédula:");
     this.fixed1.Add(this.label4);
     global::Gtk.Fixed.FixedChild w6 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.label4]));
     w6.X = 29;
     w6.Y = 146;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("Apellidos: ");
     this.fixed1.Add(this.label3);
     global::Gtk.Fixed.FixedChild w7 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.label3]));
     w7.X = 29;
     w7.Y = 110;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.twHuesped = new global::Gtk.TreeView();
     this.twHuesped.WidthRequest  = 370;
     this.twHuesped.HeightRequest = 220;
     this.twHuesped.CanFocus      = true;
     this.twHuesped.Name          = "twHuesped";
     this.GtkScrolledWindow.Add(this.twHuesped);
     this.fixed1.Add(this.GtkScrolledWindow);
     global::Gtk.Fixed.FixedChild w9 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.GtkScrolledWindow]));
     w9.X = 29;
     w9.Y = 240;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.btnCancelar = new global::Gtk.Button();
     this.btnCancelar.WidthRequest  = 90;
     this.btnCancelar.HeightRequest = 30;
     this.btnCancelar.CanFocus      = true;
     this.btnCancelar.Name          = "btnCancelar";
     this.btnCancelar.UseUnderline  = true;
     this.btnCancelar.Label         = global::Mono.Unix.Catalog.GetString("Cancelar");
     this.fixed1.Add(this.btnCancelar);
     global::Gtk.Fixed.FixedChild w10 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.btnCancelar]));
     w10.X = 468;
     w10.Y = 385;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.btnAgregar = new global::Gtk.Button();
     this.btnAgregar.WidthRequest  = 90;
     this.btnAgregar.HeightRequest = 30;
     this.btnAgregar.CanFocus      = true;
     this.btnAgregar.Name          = "btnAgregar";
     this.btnAgregar.UseUnderline  = true;
     this.btnAgregar.Label         = global::Mono.Unix.Catalog.GetString("Agregar");
     this.fixed1.Add(this.btnAgregar);
     global::Gtk.Fixed.FixedChild w11 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.btnAgregar]));
     w11.X = 471;
     w11.Y = 307;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.txtBuscar = new global::Gtk.Entry();
     this.txtBuscar.WidthRequest  = 250;
     this.txtBuscar.CanFocus      = true;
     this.txtBuscar.Name          = "txtBuscar";
     this.txtBuscar.IsEditable    = true;
     this.txtBuscar.InvisibleChar = '•';
     this.fixed1.Add(this.txtBuscar);
     global::Gtk.Fixed.FixedChild w12 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.txtBuscar]));
     w12.X = 29;
     w12.Y = 195;
     // Container child fixed1.Gtk.Fixed+FixedChild
     this.btnBuscar = new global::Gtk.Button();
     this.btnBuscar.WidthRequest  = 100;
     this.btnBuscar.HeightRequest = 30;
     this.btnBuscar.CanFocus      = true;
     this.btnBuscar.Name          = "btnBuscar";
     this.btnBuscar.UseUnderline  = true;
     this.btnBuscar.Label         = global::Mono.Unix.Catalog.GetString("Buscar");
     this.fixed1.Add(this.btnBuscar);
     global::Gtk.Fixed.FixedChild w13 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[this.btnBuscar]));
     w13.X = 297;
     w13.Y = 193;
     this.Add(this.fixed1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 651;
     this.DefaultHeight = 504;
     this.Show();
     this.twHuesped.CursorChanged += new global::System.EventHandler(this.OnTwHuespedCursorChanged);
     this.btnCancelar.Clicked     += new global::System.EventHandler(this.OnBtnCancelarClicked);
     this.btnAgregar.Clicked      += new global::System.EventHandler(this.OnBtnAgregarClicked);
     this.btnBuscar.Clicked       += new global::System.EventHandler(this.OnBtnBuscarClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget KalliopeSync.View.ConnectionDialog
     this.Name              = "KalliopeSync.View.ConnectionDialog";
     this.Title             = global::Mono.Unix.Catalog.GetString("Connection Dialog");
     this.TypeHint          = ((global::Gdk.WindowTypeHint)(1));
     this.WindowPosition    = ((global::Gtk.WindowPosition)(4));
     this.Modal             = true;
     this.DestroyWithParent = true;
     this.SkipPagerHint     = true;
     this.SkipTaskbarHint   = true;
     // Internal child KalliopeSync.View.ConnectionDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox4         = new global::Gtk.VBox();
     this.vbox4.Name    = "vbox4";
     this.vbox4.Spacing = 6;
     // Container child vbox4.Gtk.Box+BoxChild
     this.hbox2         = new global::Gtk.HBox();
     this.hbox2.Name    = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.LabelAccount = new global::Gtk.Label();
     this.LabelAccount.WidthRequest = 150;
     this.LabelAccount.Name         = "LabelAccount";
     this.LabelAccount.LabelProp    = global::Mono.Unix.Catalog.GetString("Account");
     this.LabelAccount.Justify      = ((global::Gtk.Justification)(2));
     this.hbox2.Add(this.LabelAccount);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.LabelAccount]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child hbox2.Gtk.Box+BoxChild
     this.TextViewAccount = new global::Gtk.TextView();
     this.TextViewAccount.WidthRequest  = 250;
     this.TextViewAccount.HeightRequest = 28;
     this.TextViewAccount.CanFocus      = true;
     this.TextViewAccount.Name          = "TextViewAccount";
     this.TextViewAccount.AcceptsTab    = false;
     this.hbox2.Add(this.TextViewAccount);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.TextViewAccount]));
     w3.Position = 1;
     this.vbox4.Add(this.hbox2);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox2]));
     w4.Position = 0;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.label3 = new global::Gtk.Label();
     this.label3.WidthRequest = 150;
     this.label3.Name         = "label3";
     this.label3.LabelProp    = global::Mono.Unix.Catalog.GetString("Account Key");
     this.hbox1.Add(this.label3);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.label3]));
     w5.Position = 0;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.TextViewAccountKey = new global::Gtk.TextView();
     this.TextViewAccountKey.WidthRequest  = 250;
     this.TextViewAccountKey.HeightRequest = 25;
     this.TextViewAccountKey.CanFocus      = true;
     this.TextViewAccountKey.Name          = "TextViewAccountKey";
     this.hbox1.Add(this.TextViewAccountKey);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.TextViewAccountKey]));
     w6.Position = 1;
     this.vbox4.Add(this.hbox1);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox1]));
     w7.Position = 1;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.hbox3         = new global::Gtk.HBox();
     this.hbox3.Name    = "hbox3";
     this.hbox3.Spacing = 6;
     // Container child hbox3.Gtk.Box+BoxChild
     this.label4 = new global::Gtk.Label();
     this.label4.WidthRequest = 150;
     this.label4.Name         = "label4";
     this.label4.LabelProp    = global::Mono.Unix.Catalog.GetString("Container");
     this.hbox3.Add(this.label4);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.label4]));
     w8.Position = 0;
     w8.Expand   = false;
     w8.Fill     = false;
     // Container child hbox3.Gtk.Box+BoxChild
     this.TextViewContainer = new global::Gtk.TextView();
     this.TextViewContainer.WidthRequest  = 250;
     this.TextViewContainer.HeightRequest = 28;
     this.TextViewContainer.CanFocus      = true;
     this.TextViewContainer.Name          = "TextViewContainer";
     this.hbox3.Add(this.TextViewContainer);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox3 [this.TextViewContainer]));
     w9.Position = 1;
     this.vbox4.Add(this.hbox3);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox3]));
     w10.Position = 2;
     w10.Expand   = false;
     w10.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.hbox4         = new global::Gtk.HBox();
     this.hbox4.Name    = "hbox4";
     this.hbox4.Spacing = 6;
     // Container child hbox4.Gtk.Box+BoxChild
     this.label5 = new global::Gtk.Label();
     this.label5.WidthRequest = 150;
     this.label5.Name         = "label5";
     this.label5.LabelProp    = global::Mono.Unix.Catalog.GetString("Sync Folder");
     this.hbox4.Add(this.label5);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.label5]));
     w11.Position = 0;
     w11.Expand   = false;
     w11.Fill     = false;
     // Container child hbox4.Gtk.Box+BoxChild
     this.TextViewSyncFolder = new global::Gtk.TextView();
     this.TextViewSyncFolder.WidthRequest  = 250;
     this.TextViewSyncFolder.HeightRequest = 28;
     this.TextViewSyncFolder.CanFocus      = true;
     this.TextViewSyncFolder.Name          = "TextViewSyncFolder";
     this.hbox4.Add(this.TextViewSyncFolder);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox4 [this.TextViewSyncFolder]));
     w12.Position = 1;
     this.vbox4.Add(this.hbox4);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox4]));
     w13.Position = 3;
     w13.Expand   = false;
     w13.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.hbox5         = new global::Gtk.HBox();
     this.hbox5.Name    = "hbox5";
     this.hbox5.Spacing = 6;
     // Container child hbox5.Gtk.Box+BoxChild
     this.label6 = new global::Gtk.Label();
     this.label6.WidthRequest = 150;
     this.label6.Name         = "label6";
     this.label6.LabelProp    = global::Mono.Unix.Catalog.GetString("Full Throttle? ");
     this.hbox5.Add(this.label6);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.hbox5 [this.label6]));
     w14.Position = 0;
     w14.Expand   = false;
     w14.Fill     = false;
     // Container child hbox5.Gtk.Box+BoxChild
     this.checkbutton1               = new global::Gtk.CheckButton();
     this.checkbutton1.CanFocus      = true;
     this.checkbutton1.Name          = "checkbutton1";
     this.checkbutton1.Label         = "";
     this.checkbutton1.Active        = true;
     this.checkbutton1.DrawIndicator = true;
     this.checkbutton1.UseUnderline  = true;
     this.hbox5.Add(this.checkbutton1);
     global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.hbox5 [this.checkbutton1]));
     w15.Position = 1;
     this.vbox4.Add(this.hbox5);
     global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hbox5]));
     w16.Position = 4;
     w16.Expand   = false;
     w16.Fill     = false;
     w1.Add(this.vbox4);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(w1 [this.vbox4]));
     w17.Position = 0;
     // Internal child KalliopeSync.View.ConnectionDialog.ActionArea
     global::Gtk.HButtonBox w18 = this.ActionArea;
     w18.Name        = "dialog1_ActionArea";
     w18.Spacing     = 10;
     w18.BorderWidth = ((uint)(5));
     w18.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel              = new global::Gtk.Button();
     this.buttonCancel.CanDefault   = true;
     this.buttonCancel.CanFocus     = true;
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.UseStock     = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label        = "gtk-cancel";
     this.AddActionWidget(this.buttonCancel, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w19 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w18 [this.buttonCancel]));
     w19.Expand = false;
     w19.Fill   = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk              = new global::Gtk.Button();
     this.buttonOk.CanDefault   = true;
     this.buttonOk.CanFocus     = true;
     this.buttonOk.Name         = "buttonOk";
     this.buttonOk.UseStock     = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label        = "gtk-ok";
     this.AddActionWidget(this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w20 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w18 [this.buttonOk]));
     w20.Position = 1;
     w20.Expand   = false;
     w20.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 441;
     this.DefaultHeight = 300;
     this.Show();
     this.buttonOk.Clicked += new global::System.EventHandler(this.OnButtonOkClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget ocmgtk.WaypointWidget
     Stetic.BinContainer w1 = global::Stetic.BinContainer.Attach(this);
     this.UIManager = new global::Gtk.UIManager();
     global::Gtk.ActionGroup w2 = new global::Gtk.ActionGroup("Default");
     this.refreshAction = new global::Gtk.Action("refreshAction", null, null, "gtk-refresh");
     w2.Add(this.refreshAction, null);
     this.UIManager.InsertActionGroup(w2, 0);
     this.Name = "ocmgtk.WaypointWidget";
     // Container child ocmgtk.WaypointWidget.Gtk.Container+ContainerChild
     this.widgetBox      = new global::Gtk.VBox();
     this.widgetBox.Name = "widgetBox";
     // Container child widgetBox.Gtk.Box+BoxChild
     this.hbox1             = new global::Gtk.HBox();
     this.hbox1.Name        = "hbox1";
     this.hbox1.Spacing     = 6;
     this.hbox1.BorderWidth = ((uint)(6));
     // Container child hbox1.Gtk.Box+BoxChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.wptView          = new global::Gtk.TreeView();
     this.wptView.CanFocus = true;
     this.wptView.Name     = "wptView";
     this.GtkScrolledWindow.Add(this.wptView);
     this.hbox1.Add(this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.GtkScrolledWindow]));
     w4.Position = 0;
     // Container child hbox1.Gtk.Box+BoxChild
     this.vbuttonbox1             = new global::Gtk.VButtonBox();
     this.vbuttonbox1.Name        = "vbuttonbox1";
     this.vbuttonbox1.Spacing     = 6;
     this.vbuttonbox1.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(3));
     // Container child vbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.addButton              = new global::Gtk.Button();
     this.addButton.CanFocus     = true;
     this.addButton.Name         = "addButton";
     this.addButton.UseStock     = true;
     this.addButton.UseUnderline = true;
     this.addButton.Label        = "gtk-add";
     this.vbuttonbox1.Add(this.addButton);
     global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox1 [this.addButton]));
     w5.Expand = false;
     w5.Fill   = false;
     // Container child vbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.editButton              = new global::Gtk.Button();
     this.editButton.Sensitive    = false;
     this.editButton.CanFocus     = true;
     this.editButton.Name         = "editButton";
     this.editButton.UseStock     = true;
     this.editButton.UseUnderline = true;
     this.editButton.Label        = "gtk-edit";
     this.vbuttonbox1.Add(this.editButton);
     global::Gtk.ButtonBox.ButtonBoxChild w6 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox1 [this.editButton]));
     w6.Position = 1;
     w6.Expand   = false;
     w6.Fill     = false;
     // Container child vbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.deleteButton              = new global::Gtk.Button();
     this.deleteButton.Sensitive    = false;
     this.deleteButton.CanFocus     = true;
     this.deleteButton.Name         = "deleteButton";
     this.deleteButton.UseStock     = true;
     this.deleteButton.UseUnderline = true;
     this.deleteButton.Label        = "gtk-delete";
     this.vbuttonbox1.Add(this.deleteButton);
     global::Gtk.ButtonBox.ButtonBoxChild w7 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox1 [this.deleteButton]));
     w7.Position = 2;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child vbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.grabButton              = new global::Gtk.Button();
     this.grabButton.CanFocus     = true;
     this.grabButton.Name         = "grabButton";
     this.grabButton.UseUnderline = true;
     this.grabButton.Label        = global::Mono.Unix.Catalog.GetString("_Grab Waypoints...");
     this.vbuttonbox1.Add(this.grabButton);
     global::Gtk.ButtonBox.ButtonBoxChild w8 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.vbuttonbox1 [this.grabButton]));
     w8.Position = 3;
     w8.Expand   = false;
     w8.Fill     = false;
     this.hbox1.Add(this.vbuttonbox1);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.vbuttonbox1]));
     w9.Position = 1;
     w9.Expand   = false;
     w9.Fill     = false;
     this.widgetBox.Add(this.hbox1);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.widgetBox [this.hbox1]));
     w10.Position = 0;
     this.Add(this.widgetBox);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     w1.SetUiManager(UIManager);
     this.Hide();
     this.addButton.Clicked    += new global::System.EventHandler(this.doAdd);
     this.editButton.Clicked   += new global::System.EventHandler(this.DoEdit);
     this.deleteButton.Clicked += new global::System.EventHandler(this.doRemove);
     this.grabButton.Clicked   += new global::System.EventHandler(this.OnGrabClick);
 }
예제 #53
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget NPR.StationSearchWidget
     global::Stetic.BinContainer.Attach(this);
     this.Name = "NPR.StationSearchWidget";
     // Container child NPR.StationSearchWidget.Gtk.Container+ContainerChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.my_stations              = new global::Gtk.Button();
     this.my_stations.CanFocus     = true;
     this.my_stations.Name         = "my_stations";
     this.my_stations.UseUnderline = true;
     this.my_stations.Label        = global::Mono.Unix.Catalog.GetString("My _Stations");
     this.hbox1.Add(this.my_stations);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.my_stations]));
     w1.Position = 0;
     w1.Expand   = false;
     w1.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.ZipEntry              = new global::Docky.Widgets.SearchEntry();
     this.ZipEntry.Name         = "ZipEntry";
     this.ZipEntry.EmptyMessage = "Zip Code";
     this.ZipEntry.Ready        = true;
     this.ZipEntry.HasFocus     = true;
     this.hbox1.Add(this.ZipEntry);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.ZipEntry]));
     w2.Position = 1;
     // Container child hbox1.Gtk.Box+BoxChild
     this.Search              = new global::Gtk.Button();
     this.Search.CanFocus     = true;
     this.Search.Name         = "Search";
     this.Search.UseUnderline = true;
     this.Search.Label        = global::Mono.Unix.Catalog.GetString("S_earch");
     global::Gtk.Image w3 = new global::Gtk.Image();
     w3.Pixbuf         = global::Stetic.IconLoader.LoadIcon(this, "gtk-find", global::Gtk.IconSize.Menu);
     this.Search.Image = w3;
     this.hbox1.Add(this.Search);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.Search]));
     w4.Position = 2;
     w4.Expand   = false;
     w4.Fill     = false;
     this.vbox1.Add(this.hbox1);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox1]));
     w5.Position = 0;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.stationsScroll                  = new global::Gtk.ScrolledWindow();
     this.stationsScroll.CanFocus         = true;
     this.stationsScroll.Name             = "stationsScroll";
     this.stationsScroll.HscrollbarPolicy = ((global::Gtk.PolicyType)(2));
     this.stationsScroll.ShadowType       = ((global::Gtk.ShadowType)(1));
     // Container child stationsScroll.Gtk.Container+ContainerChild
     global::Gtk.Viewport w6 = new global::Gtk.Viewport();
     w6.ShadowType = ((global::Gtk.ShadowType)(0));
     // Container child GtkViewport.Gtk.Container+ContainerChild
     this.tileview          = new global::Docky.Widgets.TileView();
     this.tileview.Name     = "tileview";
     this.tileview.IconSize = 64;
     w6.Add(this.tileview);
     this.stationsScroll.Add(w6);
     this.vbox1.Add(this.stationsScroll);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.stationsScroll]));
     w9.Position = 1;
     this.Add(this.vbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Hide();
     this.my_stations.Clicked += new global::System.EventHandler(this.MyStationsClicked);
     this.Search.Clicked      += new global::System.EventHandler(this.SearchClicked);
 }
예제 #54
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget OPDtabGui.ShowRanking
     this.Name           = "OPDtabGui.ShowRanking";
     this.Title          = "ShowRanking";
     this.Icon           = global::Gdk.Pixbuf.LoadFromResource("OPDtabGui.AppIcon.png");
     this.WindowPosition = ((global::Gtk.WindowPosition)(1));
     // Container child OPDtabGui.ShowRanking.Gtk.Container+ContainerChild
     this.notebook1             = new global::Gtk.Notebook();
     this.notebook1.CanFocus    = true;
     this.notebook1.Name        = "notebook1";
     this.notebook1.CurrentPage = 3;
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.vbox3         = new global::Gtk.VBox();
     this.vbox3.Name    = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.hbox2         = new global::Gtk.HBox();
     this.hbox2.Name    = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.cTeamsFilter             = new global::Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.cTeamsFilter.Name        = "cTeamsFilter";
     this.cTeamsFilter.LeftPadding = ((uint)(6));
     this.hbox2.Add(this.cTeamsFilter);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.cTeamsFilter]));
     w1.Position = 0;
     w1.Expand   = false;
     w1.Fill     = false;
     // Container child hbox2.Gtk.Box+BoxChild
     this.cbTeamsOnlyHighlight               = new global::Gtk.CheckButton();
     this.cbTeamsOnlyHighlight.CanFocus      = true;
     this.cbTeamsOnlyHighlight.Name          = "cbTeamsOnlyHighlight";
     this.cbTeamsOnlyHighlight.Label         = "Only Highlight";
     this.cbTeamsOnlyHighlight.Active        = true;
     this.cbTeamsOnlyHighlight.DrawIndicator = true;
     this.cbTeamsOnlyHighlight.UseUnderline  = true;
     this.hbox2.Add(this.cbTeamsOnlyHighlight);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox2[this.cbTeamsOnlyHighlight]));
     w2.Position = 1;
     w2.Expand   = false;
     w2.Fill     = false;
     this.vbox3.Add(this.hbox2);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.hbox2]));
     w3.Position = 0;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.GtkScrolledWindow1      = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow1.Name = "GtkScrolledWindow1";
     // Container child GtkScrolledWindow1.Gtk.Container+ContainerChild
     global::Gtk.Viewport w4 = new global::Gtk.Viewport();
     w4.ShadowType = ((global::Gtk.ShadowType)(0));
     // Container child GtkViewport1.Gtk.Container+ContainerChild
     this.tableTeams      = new global::Gtk.Table(((uint)(3)), ((uint)(6)), false);
     this.tableTeams.Name = "tableTeams";
     // Container child tableTeams.Gtk.Table+TableChild
     this.label8           = new global::Gtk.Label();
     this.label8.Name      = "label8";
     this.label8.Xalign    = 0F;
     this.label8.LabelProp = "<b>Team</b>";
     this.label8.UseMarkup = true;
     this.tableTeams.Add(this.label8);
     global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.tableTeams[this.label8]));
     w5.LeftAttach  = ((uint)(1));
     w5.RightAttach = ((uint)(6));
     w5.XPadding    = ((uint)(6));
     w5.XOptions    = ((global::Gtk.AttachOptions)(4));
     w5.YOptions    = ((global::Gtk.AttachOptions)(4));
     // Container child tableTeams.Gtk.Table+TableChild
     this.label9           = new global::Gtk.Label();
     this.label9.Name      = "label9";
     this.label9.LabelProp = "<b>Pos</b>";
     this.label9.UseMarkup = true;
     this.tableTeams.Add(this.label9);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.tableTeams[this.label9]));
     w6.XPadding = ((uint)(6));
     w6.XOptions = ((global::Gtk.AttachOptions)(4));
     w6.YOptions = ((global::Gtk.AttachOptions)(4));
     w4.Add(this.tableTeams);
     this.GtkScrolledWindow1.Add(w4);
     this.vbox3.Add(this.GtkScrolledWindow1);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.GtkScrolledWindow1]));
     w9.Position = 1;
     this.notebook1.Add(this.vbox3);
     // Notebook tab
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = "Teams";
     this.notebook1.SetTabLabel(this.vbox3, this.label2);
     this.label2.ShowAll();
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox3         = new global::Gtk.HBox();
     this.hbox3.Name    = "hbox3";
     this.hbox3.Spacing = 6;
     // Container child hbox3.Gtk.Box+BoxChild
     this.cSpeakersFilter             = new global::Gtk.Alignment(0.5F, 0.5F, 1F, 1F);
     this.cSpeakersFilter.Name        = "cSpeakersFilter";
     this.cSpeakersFilter.LeftPadding = ((uint)(6));
     this.hbox3.Add(this.cSpeakersFilter);
     global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.cSpeakersFilter]));
     w11.Position = 0;
     w11.Expand   = false;
     w11.Fill     = false;
     // Container child hbox3.Gtk.Box+BoxChild
     this.cbSpeakersOnlyHighlight               = new global::Gtk.CheckButton();
     this.cbSpeakersOnlyHighlight.CanFocus      = true;
     this.cbSpeakersOnlyHighlight.Name          = "cbSpeakersOnlyHighlight";
     this.cbSpeakersOnlyHighlight.Label         = "Only Highlight";
     this.cbSpeakersOnlyHighlight.Active        = true;
     this.cbSpeakersOnlyHighlight.DrawIndicator = true;
     this.cbSpeakersOnlyHighlight.UseUnderline  = true;
     this.hbox3.Add(this.cbSpeakersOnlyHighlight);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hbox3[this.cbSpeakersOnlyHighlight]));
     w12.Position = 1;
     w12.Expand   = false;
     w12.Fill     = false;
     this.vbox1.Add(this.hbox3);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.hbox3]));
     w13.Position = 0;
     w13.Expand   = false;
     w13.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.GtkScrolledWindow      = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name = "GtkScrolledWindow";
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     global::Gtk.Viewport w14 = new global::Gtk.Viewport();
     w14.ShadowType = ((global::Gtk.ShadowType)(0));
     // Container child GtkViewport.Gtk.Container+ContainerChild
     this.tableSpeakers      = new global::Gtk.Table(((uint)(3)), ((uint)(6)), false);
     this.tableSpeakers.Name = "tableSpeakers";
     // Container child tableSpeakers.Gtk.Table+TableChild
     this.label6           = new global::Gtk.Label();
     this.label6.Name      = "label6";
     this.label6.LabelProp = "<b>Pos</b>";
     this.label6.UseMarkup = true;
     this.tableSpeakers.Add(this.label6);
     global::Gtk.Table.TableChild w15 = ((global::Gtk.Table.TableChild)(this.tableSpeakers[this.label6]));
     w15.XPadding = ((uint)(6));
     w15.XOptions = ((global::Gtk.AttachOptions)(4));
     w15.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tableSpeakers.Gtk.Table+TableChild
     this.label7           = new global::Gtk.Label();
     this.label7.Name      = "label7";
     this.label7.Xalign    = 0F;
     this.label7.LabelProp = "<b>Speaker</b>";
     this.label7.UseMarkup = true;
     this.tableSpeakers.Add(this.label7);
     global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.tableSpeakers[this.label7]));
     w16.LeftAttach  = ((uint)(1));
     w16.RightAttach = ((uint)(6));
     w16.XPadding    = ((uint)(6));
     w16.XOptions    = ((global::Gtk.AttachOptions)(4));
     w16.YOptions    = ((global::Gtk.AttachOptions)(4));
     w14.Add(this.tableSpeakers);
     this.GtkScrolledWindow.Add(w14);
     this.vbox1.Add(this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w19 = ((global::Gtk.Box.BoxChild)(this.vbox1[this.GtkScrolledWindow]));
     w19.Position = 1;
     this.notebook1.Add(this.vbox1);
     global::Gtk.Notebook.NotebookChild w20 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox1]));
     w20.Position = 1;
     // Notebook tab
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.LabelProp = "Speakers";
     this.notebook1.SetTabLabel(this.vbox1, this.label3);
     this.label3.ShowAll();
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.GtkScrolledWindow2                  = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow2.Name             = "GtkScrolledWindow2";
     this.GtkScrolledWindow2.HscrollbarPolicy = ((global::Gtk.PolicyType)(2));
     // Container child GtkScrolledWindow2.Gtk.Container+ContainerChild
     global::Gtk.Viewport w21 = new global::Gtk.Viewport();
     w21.ShadowType = ((global::Gtk.ShadowType)(0));
     // Container child GtkViewport2.Gtk.Container+ContainerChild
     this.tableJudges               = new global::Gtk.Table(((uint)(3)), ((uint)(4)), false);
     this.tableJudges.Name          = "tableJudges";
     this.tableJudges.ColumnSpacing = ((uint)(6));
     // Container child tableJudges.Gtk.Table+TableChild
     this.label10           = new global::Gtk.Label();
     this.label10.Name      = "label10";
     this.label10.Xalign    = 0F;
     this.label10.LabelProp = "<b>Judge</b>";
     this.label10.UseMarkup = true;
     this.tableJudges.Add(this.label10);
     global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.tableJudges[this.label10]));
     w22.XOptions = ((global::Gtk.AttachOptions)(4));
     w22.YOptions = ((global::Gtk.AttachOptions)(4));
     // Container child tableJudges.Gtk.Table+TableChild
     this.label11           = new global::Gtk.Label();
     this.label11.Name      = "label11";
     this.label11.Xalign    = 0F;
     this.label11.LabelProp = "<b>Stats</b>";
     this.label11.UseMarkup = true;
     this.tableJudges.Add(this.label11);
     global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.tableJudges[this.label11]));
     w23.LeftAttach  = ((uint)(1));
     w23.RightAttach = ((uint)(4));
     w23.XOptions    = ((global::Gtk.AttachOptions)(4));
     w23.YOptions    = ((global::Gtk.AttachOptions)(4));
     w21.Add(this.tableJudges);
     this.GtkScrolledWindow2.Add(w21);
     this.notebook1.Add(this.GtkScrolledWindow2);
     global::Gtk.Notebook.NotebookChild w26 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.GtkScrolledWindow2]));
     w26.Position = 2;
     // Notebook tab
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = "Judges";
     this.notebook1.SetTabLabel(this.GtkScrolledWindow2, this.label1);
     this.label1.ShowAll();
     // Container child notebook1.Gtk.Notebook+NotebookChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbuttonbox1             = new global::Gtk.HButtonBox();
     this.hbuttonbox1.Name        = "hbuttonbox1";
     this.hbuttonbox1.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(3));
     // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.btnExportPDF              = new global::Gtk.Button();
     this.btnExportPDF.CanFocus     = true;
     this.btnExportPDF.Name         = "btnExportPDF";
     this.btnExportPDF.UseUnderline = true;
     this.btnExportPDF.Label        = "Export as PDF";
     this.hbuttonbox1.Add(this.btnExportPDF);
     global::Gtk.ButtonBox.ButtonBoxChild w27 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.hbuttonbox1[this.btnExportPDF]));
     w27.Expand = false;
     w27.Fill   = false;
     // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.btnExportCSV              = new global::Gtk.Button();
     this.btnExportCSV.CanFocus     = true;
     this.btnExportCSV.Name         = "btnExportCSV";
     this.btnExportCSV.UseUnderline = true;
     this.btnExportCSV.Label        = "Export as CSV";
     this.hbuttonbox1.Add(this.btnExportCSV);
     global::Gtk.ButtonBox.ButtonBoxChild w28 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.hbuttonbox1[this.btnExportCSV]));
     w28.Position = 1;
     w28.Expand   = false;
     w28.Fill     = false;
     // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.btnUpdate              = new global::Gtk.Button();
     this.btnUpdate.CanFocus     = true;
     this.btnUpdate.Name         = "btnUpdate";
     this.btnUpdate.UseUnderline = true;
     this.btnUpdate.Label        = "Update All";
     global::Gtk.Image w29 = new global::Gtk.Image();
     w29.Pixbuf           = global::Stetic.IconLoader.LoadIcon(this, "gtk-redo", global::Gtk.IconSize.Menu);
     this.btnUpdate.Image = w29;
     this.hbuttonbox1.Add(this.btnUpdate);
     global::Gtk.ButtonBox.ButtonBoxChild w30 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.hbuttonbox1[this.btnUpdate]));
     w30.Position = 2;
     w30.Expand   = false;
     w30.Fill     = false;
     // Container child hbuttonbox1.Gtk.ButtonBox+ButtonBoxChild
     this.btnResultsCSVExport              = new global::Gtk.Button();
     this.btnResultsCSVExport.CanFocus     = true;
     this.btnResultsCSVExport.Name         = "btnResultsCSVExport";
     this.btnResultsCSVExport.UseUnderline = true;
     this.btnResultsCSVExport.Label        = "Export Round Results";
     this.hbuttonbox1.Add(this.btnResultsCSVExport);
     global::Gtk.ButtonBox.ButtonBoxChild w31 = ((global::Gtk.ButtonBox.ButtonBoxChild)(this.hbuttonbox1[this.btnResultsCSVExport]));
     w31.Position = 3;
     w31.Expand   = false;
     w31.Fill     = false;
     this.vbox2.Add(this.hbuttonbox1);
     global::Gtk.Box.BoxChild w32 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hbuttonbox1]));
     w32.Position = 0;
     w32.Expand   = false;
     w32.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.label12           = new global::Gtk.Label();
     this.label12.Name      = "label12";
     this.label12.LabelProp = "Mark Break:";
     this.hbox1.Add(this.label12);
     global::Gtk.Box.BoxChild w33 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.label12]));
     w33.Position = 0;
     w33.Expand   = false;
     w33.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.cbSelectMarking      = global::Gtk.ComboBox.NewText();
     this.cbSelectMarking.Name = "cbSelectMarking";
     this.hbox1.Add(this.cbSelectMarking);
     global::Gtk.Box.BoxChild w34 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.cbSelectMarking]));
     w34.Position = 1;
     w34.Expand   = false;
     w34.Fill     = false;
     this.vbox2.Add(this.hbox1);
     global::Gtk.Box.BoxChild w35 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hbox1]));
     w35.Position = 1;
     w35.Expand   = false;
     w35.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.alignment1      = new global::Gtk.Alignment(0F, 0F, 0F, 0F);
     this.alignment1.Name = "alignment1";
     // Container child alignment1.Gtk.Container+ContainerChild
     this.frame1      = new global::Gtk.Frame();
     this.frame1.Name = "frame1";
     // Container child frame1.Gtk.Container+ContainerChild
     this.GtkAlignment1               = new global::Gtk.Alignment(0F, 0F, 0F, 0F);
     this.GtkAlignment1.Name          = "GtkAlignment1";
     this.GtkAlignment1.LeftPadding   = ((uint)(12));
     this.GtkAlignment1.TopPadding    = ((uint)(6));
     this.GtkAlignment1.RightPadding  = ((uint)(6));
     this.GtkAlignment1.BottomPadding = ((uint)(6));
     // Container child GtkAlignment1.Gtk.Container+ContainerChild
     this.tableRounds               = new global::Gtk.Table(((uint)(3)), ((uint)(4)), false);
     this.tableRounds.Name          = "tableRounds";
     this.tableRounds.RowSpacing    = ((uint)(6));
     this.tableRounds.ColumnSpacing = ((uint)(6));
     // Container child tableRounds.Gtk.Table+TableChild
     this.label13           = new global::Gtk.Label();
     this.label13.Name      = "label13";
     this.label13.Xalign    = 0F;
     this.label13.LabelProp = "Name";
     this.tableRounds.Add(this.label13);
     global::Gtk.Table.TableChild w36 = ((global::Gtk.Table.TableChild)(this.tableRounds[this.label13]));
     w36.LeftAttach  = ((uint)(2));
     w36.RightAttach = ((uint)(3));
     w36.XOptions    = ((global::Gtk.AttachOptions)(4));
     w36.YOptions    = ((global::Gtk.AttachOptions)(0));
     // Container child tableRounds.Gtk.Table+TableChild
     this.label5           = new global::Gtk.Label();
     this.label5.Name      = "label5";
     this.label5.LabelProp = "Gov / Opp";
     this.tableRounds.Add(this.label5);
     global::Gtk.Table.TableChild w37 = ((global::Gtk.Table.TableChild)(this.tableRounds[this.label5]));
     w37.LeftAttach  = ((uint)(3));
     w37.RightAttach = ((uint)(4));
     w37.XOptions    = ((global::Gtk.AttachOptions)(4));
     w37.YOptions    = ((global::Gtk.AttachOptions)(0));
     this.GtkAlignment1.Add(this.tableRounds);
     this.frame1.Add(this.GtkAlignment1);
     this.GtkLabel5           = new global::Gtk.Label();
     this.GtkLabel5.Name      = "GtkLabel5";
     this.GtkLabel5.LabelProp = "<b>Selected Rounds</b>";
     this.GtkLabel5.UseMarkup = true;
     this.frame1.LabelWidget  = this.GtkLabel5;
     this.alignment1.Add(this.frame1);
     this.vbox2.Add(this.alignment1);
     global::Gtk.Box.BoxChild w41 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.alignment1]));
     w41.Position = 2;
     w41.Expand   = false;
     w41.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.alignment2      = new global::Gtk.Alignment(0F, 0F, 0F, 0F);
     this.alignment2.Name = "alignment2";
     // Container child alignment2.Gtk.Container+ContainerChild
     this.frame2      = new global::Gtk.Frame();
     this.frame2.Name = "frame2";
     // Container child frame2.Gtk.Container+ContainerChild
     this.GtkAlignment2               = new global::Gtk.Alignment(0F, 0F, 0F, 0F);
     this.GtkAlignment2.Name          = "GtkAlignment2";
     this.GtkAlignment2.LeftPadding   = ((uint)(12));
     this.GtkAlignment2.TopPadding    = ((uint)(6));
     this.GtkAlignment2.RightPadding  = ((uint)(6));
     this.GtkAlignment2.BottomPadding = ((uint)(6));
     // Container child GtkAlignment2.Gtk.Container+ContainerChild
     this.tableAvgPoints               = new global::Gtk.Table(((uint)(12)), ((uint)(2)), false);
     this.tableAvgPoints.Name          = "tableAvgPoints";
     this.tableAvgPoints.RowSpacing    = ((uint)(6));
     this.tableAvgPoints.ColumnSpacing = ((uint)(6));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label14           = new global::Gtk.Label();
     this.label14.Name      = "label14";
     this.label14.Xalign    = 0F;
     this.label14.LabelProp = "<small>Gov1</small>";
     this.label14.UseMarkup = true;
     this.tableAvgPoints.Add(this.label14);
     global::Gtk.Table.TableChild w42 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label14]));
     w42.TopAttach    = ((uint)(1));
     w42.BottomAttach = ((uint)(2));
     w42.XOptions     = ((global::Gtk.AttachOptions)(4));
     w42.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label15           = new global::Gtk.Label();
     this.label15.Name      = "label15";
     this.label15.Xalign    = 0F;
     this.label15.LabelProp = "<small>Opp1</small>";
     this.label15.UseMarkup = true;
     this.tableAvgPoints.Add(this.label15);
     global::Gtk.Table.TableChild w43 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label15]));
     w43.TopAttach    = ((uint)(2));
     w43.BottomAttach = ((uint)(3));
     w43.XOptions     = ((global::Gtk.AttachOptions)(4));
     w43.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label16           = new global::Gtk.Label();
     this.label16.Name      = "label16";
     this.label16.Xalign    = 0F;
     this.label16.LabelProp = "<small>Gov2</small>";
     this.label16.UseMarkup = true;
     this.tableAvgPoints.Add(this.label16);
     global::Gtk.Table.TableChild w44 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label16]));
     w44.TopAttach    = ((uint)(3));
     w44.BottomAttach = ((uint)(4));
     w44.XOptions     = ((global::Gtk.AttachOptions)(4));
     w44.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label17           = new global::Gtk.Label();
     this.label17.Name      = "label17";
     this.label17.Xalign    = 0F;
     this.label17.LabelProp = "<small>Opp2</small>";
     this.label17.UseMarkup = true;
     this.tableAvgPoints.Add(this.label17);
     global::Gtk.Table.TableChild w45 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label17]));
     w45.TopAttach    = ((uint)(4));
     w45.BottomAttach = ((uint)(5));
     w45.XOptions     = ((global::Gtk.AttachOptions)(4));
     w45.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label18           = new global::Gtk.Label();
     this.label18.Name      = "label18";
     this.label18.Xalign    = 0F;
     this.label18.LabelProp = "<small>Free1</small>";
     this.label18.UseMarkup = true;
     this.tableAvgPoints.Add(this.label18);
     global::Gtk.Table.TableChild w46 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label18]));
     w46.TopAttach    = ((uint)(5));
     w46.BottomAttach = ((uint)(6));
     w46.XOptions     = ((global::Gtk.AttachOptions)(4));
     w46.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label19           = new global::Gtk.Label();
     this.label19.Name      = "label19";
     this.label19.Xalign    = 0F;
     this.label19.LabelProp = "<small>Free2</small>";
     this.label19.UseMarkup = true;
     this.tableAvgPoints.Add(this.label19);
     global::Gtk.Table.TableChild w47 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label19]));
     w47.TopAttach    = ((uint)(6));
     w47.BottomAttach = ((uint)(7));
     w47.XOptions     = ((global::Gtk.AttachOptions)(4));
     w47.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label20           = new global::Gtk.Label();
     this.label20.Name      = "label20";
     this.label20.Xalign    = 0F;
     this.label20.LabelProp = "<small>Free3</small>";
     this.label20.UseMarkup = true;
     this.tableAvgPoints.Add(this.label20);
     global::Gtk.Table.TableChild w48 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label20]));
     w48.TopAttach    = ((uint)(7));
     w48.BottomAttach = ((uint)(8));
     w48.XOptions     = ((global::Gtk.AttachOptions)(4));
     w48.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label21           = new global::Gtk.Label();
     this.label21.Name      = "label21";
     this.label21.Xalign    = 0F;
     this.label21.LabelProp = "<small>Opp3</small>";
     this.label21.UseMarkup = true;
     this.tableAvgPoints.Add(this.label21);
     global::Gtk.Table.TableChild w49 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label21]));
     w49.TopAttach    = ((uint)(8));
     w49.BottomAttach = ((uint)(9));
     w49.XOptions     = ((global::Gtk.AttachOptions)(4));
     w49.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label22           = new global::Gtk.Label();
     this.label22.Name      = "label22";
     this.label22.Xalign    = 0F;
     this.label22.LabelProp = "<small>Gov3</small>";
     this.label22.UseMarkup = true;
     this.tableAvgPoints.Add(this.label22);
     global::Gtk.Table.TableChild w50 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label22]));
     w50.TopAttach    = ((uint)(9));
     w50.BottomAttach = ((uint)(10));
     w50.XOptions     = ((global::Gtk.AttachOptions)(4));
     w50.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label23           = new global::Gtk.Label();
     this.label23.Name      = "label23";
     this.label23.Xalign    = 0F;
     this.label23.LabelProp = "<small>Gov</small>";
     this.label23.UseMarkup = true;
     this.tableAvgPoints.Add(this.label23);
     global::Gtk.Table.TableChild w51 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label23]));
     w51.TopAttach    = ((uint)(10));
     w51.BottomAttach = ((uint)(11));
     w51.XOptions     = ((global::Gtk.AttachOptions)(4));
     w51.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child tableAvgPoints.Gtk.Table+TableChild
     this.label24           = new global::Gtk.Label();
     this.label24.Name      = "label24";
     this.label24.Xalign    = 0F;
     this.label24.LabelProp = "<small>Opp</small>";
     this.label24.UseMarkup = true;
     this.tableAvgPoints.Add(this.label24);
     global::Gtk.Table.TableChild w52 = ((global::Gtk.Table.TableChild)(this.tableAvgPoints[this.label24]));
     w52.TopAttach    = ((uint)(11));
     w52.BottomAttach = ((uint)(12));
     w52.XOptions     = ((global::Gtk.AttachOptions)(4));
     w52.YOptions     = ((global::Gtk.AttachOptions)(0));
     this.GtkAlignment2.Add(this.tableAvgPoints);
     this.frame2.Add(this.GtkAlignment2);
     this.GtkLabel6           = new global::Gtk.Label();
     this.GtkLabel6.Name      = "GtkLabel6";
     this.GtkLabel6.LabelProp = "<b>Average Points</b>";
     this.GtkLabel6.UseMarkup = true;
     this.frame2.LabelWidget  = this.GtkLabel6;
     this.alignment2.Add(this.frame2);
     this.vbox2.Add(this.alignment2);
     global::Gtk.Box.BoxChild w56 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.alignment2]));
     w56.Position = 3;
     w56.Expand   = false;
     w56.Fill     = false;
     this.notebook1.Add(this.vbox2);
     global::Gtk.Notebook.NotebookChild w57 = ((global::Gtk.Notebook.NotebookChild)(this.notebook1[this.vbox2]));
     w57.Position = 3;
     // Notebook tab
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.LabelProp = "Options & Tools";
     this.notebook1.SetTabLabel(this.vbox2, this.label4);
     this.label4.ShowAll();
     this.Add(this.notebook1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 616;
     this.DefaultHeight = 780;
     this.Hide();
     this.btnExportPDF.Clicked        += new global::System.EventHandler(this.OnBtnExportPDFClicked);
     this.btnExportCSV.Clicked        += new global::System.EventHandler(this.OnBtnExportCSVClicked);
     this.btnResultsCSVExport.Clicked += new global::System.EventHandler(this.OnBtnResultsCSVExportClicked);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MonoDevelop.Ide.Projects.NewProjectDialog
     this.WidthRequest      = 930;
     this.Name              = "MonoDevelop.Ide.Projects.NewProjectDialog";
     this.Title             = "New Solution";
     this.TypeHint          = ((global::Gdk.WindowTypeHint)(1));
     this.WindowPosition    = ((global::Gtk.WindowPosition)(1));
     this.BorderWidth       = ((uint)(6));
     this.DestroyWithParent = true;
     // Internal child MonoDevelop.Ide.Projects.NewProjectDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog-vbox1";
     w1.Spacing     = 6;
     w1.BorderWidth = ((uint)(2));
     // Container child dialog-vbox1.Gtk.Box+BoxChild
     this.notebook             = new global::Gtk.Notebook();
     this.notebook.CanFocus    = true;
     this.notebook.Name        = "notebook";
     this.notebook.CurrentPage = 0;
     this.notebook.ShowBorder  = false;
     this.notebook.BorderWidth = ((uint)(6));
     // Container child notebook.Gtk.Notebook+NotebookChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 7;
     // Container child vbox1.Gtk.Box+BoxChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1      = new global::Gtk.HBox();
     this.hbox1.Name = "hbox1";
     // Container child hbox1.Gtk.Box+BoxChild
     this.vbox4         = new global::Gtk.VBox();
     this.vbox4.Name    = "vbox4";
     this.vbox4.Spacing = 6;
     // Container child vbox4.Gtk.Box+BoxChild
     this.hpaned1          = new global::Gtk.HPaned();
     this.hpaned1.CanFocus = true;
     this.hpaned1.Name     = "hpaned1";
     this.hpaned1.Position = 188;
     // Container child hpaned1.Gtk.Paned+PanedChild
     this.scrolledwindow1            = new global::Gtk.ScrolledWindow();
     this.scrolledwindow1.Name       = "scrolledwindow1";
     this.scrolledwindow1.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child scrolledwindow1.Gtk.Container+ContainerChild
     this.lst_template_types                = new global::Gtk.TreeView();
     this.lst_template_types.Name           = "lst_template_types";
     this.lst_template_types.HeadersVisible = false;
     this.scrolledwindow1.Add(this.lst_template_types);
     this.hpaned1.Add(this.scrolledwindow1);
     global::Gtk.Paned.PanedChild w3 = ((global::Gtk.Paned.PanedChild)(this.hpaned1 [this.scrolledwindow1]));
     w3.Resize = false;
     // Container child hpaned1.Gtk.Paned+PanedChild
     this.panedTemplates          = new global::Gtk.HPaned();
     this.panedTemplates.CanFocus = true;
     this.panedTemplates.Name     = "panedTemplates";
     this.panedTemplates.Position = 430;
     // Container child panedTemplates.Gtk.Paned+PanedChild
     this.boxTemplates         = new global::Gtk.VBox();
     this.boxTemplates.Name    = "boxTemplates";
     this.boxTemplates.Spacing = 6;
     this.panedTemplates.Add(this.boxTemplates);
     global::Gtk.Paned.PanedChild w4 = ((global::Gtk.Paned.PanedChild)(this.panedTemplates [this.boxTemplates]));
     w4.Resize = false;
     // Container child panedTemplates.Gtk.Paned+PanedChild
     this.scrolledInfo                  = new global::Gtk.ScrolledWindow();
     this.scrolledInfo.CanFocus         = true;
     this.scrolledInfo.Name             = "scrolledInfo";
     this.scrolledInfo.HscrollbarPolicy = ((global::Gtk.PolicyType)(2));
     this.scrolledInfo.ShadowType       = ((global::Gtk.ShadowType)(1));
     // Container child scrolledInfo.Gtk.Container+ContainerChild
     global::Gtk.Viewport w5 = new global::Gtk.Viewport();
     w5.ShadowType = ((global::Gtk.ShadowType)(0));
     // Container child GtkViewport.Gtk.Container+ContainerChild
     this.boxInfo             = new global::Gtk.VBox();
     this.boxInfo.Name        = "boxInfo";
     this.boxInfo.Spacing     = 6;
     this.boxInfo.BorderWidth = ((uint)(3));
     // Container child boxInfo.Gtk.Box+BoxChild
     this.labelTemplateTitle = new global::Gtk.Label();
     this.labelTemplateTitle.WidthRequest = 30;
     this.labelTemplateTitle.Name         = "labelTemplateTitle";
     this.labelTemplateTitle.Xalign       = 0F;
     this.labelTemplateTitle.LabelProp    = global::MonoDevelop.Core.GettextCatalog.GetString("<b>Console Project</b>");
     this.labelTemplateTitle.UseMarkup    = true;
     this.labelTemplateTitle.Wrap         = true;
     this.boxInfo.Add(this.labelTemplateTitle);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.boxInfo [this.labelTemplateTitle]));
     w6.Position = 0;
     w6.Expand   = false;
     w6.Fill     = false;
     // Container child boxInfo.Gtk.Box+BoxChild
     this.lbl_template_descr = new global::Gtk.Label();
     this.lbl_template_descr.WidthRequest = 116;
     this.lbl_template_descr.Name         = "lbl_template_descr";
     this.lbl_template_descr.Xalign       = 0F;
     this.lbl_template_descr.Yalign       = 0F;
     this.lbl_template_descr.LabelProp    = global::MonoDevelop.Core.GettextCatalog.GetString("Creates a new C# Project");
     this.lbl_template_descr.Wrap         = true;
     this.boxInfo.Add(this.lbl_template_descr);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.boxInfo [this.lbl_template_descr]));
     w7.Position = 1;
     w7.Expand   = false;
     w7.Fill     = false;
     w5.Add(this.boxInfo);
     this.scrolledInfo.Add(w5);
     this.panedTemplates.Add(this.scrolledInfo);
     global::Gtk.Paned.PanedChild w10 = ((global::Gtk.Paned.PanedChild)(this.panedTemplates [this.scrolledInfo]));
     w10.Resize = false;
     this.hpaned1.Add(this.panedTemplates);
     this.vbox4.Add(this.hpaned1);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox4 [this.hpaned1]));
     w12.Position = 0;
     this.hbox1.Add(this.vbox4);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.vbox4]));
     w13.Position = 0;
     this.vbox2.Add(this.hbox1);
     global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbox1]));
     w14.Position = 0;
     this.vbox1.Add(this.vbox2);
     global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.vbox2]));
     w15.Position = 0;
     // Container child vbox1.Gtk.Box+BoxChild
     this.vbox3         = new global::Gtk.VBox();
     this.vbox3.Name    = "vbox3";
     this.vbox3.Spacing = 6;
     // Container child vbox3.Gtk.Box+BoxChild
     this.table1               = new global::Gtk.Table(((uint)(3)), ((uint)(2)), false);
     this.table1.Name          = "table1";
     this.table1.RowSpacing    = ((uint)(6));
     this.table1.ColumnSpacing = ((uint)(6));
     // Container child table1.Gtk.Table+TableChild
     this.entry_location      = new global::MonoDevelop.Components.FolderEntry();
     this.entry_location.Name = "entry_location";
     this.table1.Add(this.entry_location);
     global::Gtk.Table.TableChild w16 = ((global::Gtk.Table.TableChild)(this.table1 [this.entry_location]));
     w16.TopAttach    = ((uint)(1));
     w16.BottomAttach = ((uint)(2));
     w16.LeftAttach   = ((uint)(1));
     w16.RightAttach  = ((uint)(2));
     w16.XOptions     = ((global::Gtk.AttachOptions)(4));
     w16.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.hbox2         = new global::Gtk.HBox();
     this.hbox2.Name    = "hbox2";
     this.hbox2.Spacing = 6;
     // Container child hbox2.Gtk.Box+BoxChild
     this.txt_subdirectory                  = new global::Gtk.Entry();
     this.txt_subdirectory.Name             = "txt_subdirectory";
     this.txt_subdirectory.IsEditable       = true;
     this.txt_subdirectory.ActivatesDefault = true;
     this.txt_subdirectory.InvisibleChar    = '●';
     this.hbox2.Add(this.txt_subdirectory);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.txt_subdirectory]));
     w17.Position = 0;
     // Container child hbox2.Gtk.Box+BoxChild
     this.chk_combine_directory               = new global::Gtk.CheckButton();
     this.chk_combine_directory.Name          = "chk_combine_directory";
     this.chk_combine_directory.Label         = global::MonoDevelop.Core.GettextCatalog.GetString("_Create directory for solution");
     this.chk_combine_directory.Active        = true;
     this.chk_combine_directory.DrawIndicator = true;
     this.chk_combine_directory.UseUnderline  = true;
     this.hbox2.Add(this.chk_combine_directory);
     global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.chk_combine_directory]));
     w18.Position = 1;
     w18.Expand   = false;
     w18.Fill     = false;
     this.table1.Add(this.hbox2);
     global::Gtk.Table.TableChild w19 = ((global::Gtk.Table.TableChild)(this.table1 [this.hbox2]));
     w19.TopAttach    = ((uint)(2));
     w19.BottomAttach = ((uint)(3));
     w19.LeftAttach   = ((uint)(1));
     w19.RightAttach  = ((uint)(2));
     w19.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.lbl_location              = new global::Gtk.Label();
     this.lbl_location.Name         = "lbl_location";
     this.lbl_location.Xalign       = 0F;
     this.lbl_location.Yalign       = 0F;
     this.lbl_location.LabelProp    = global::MonoDevelop.Core.GettextCatalog.GetString("_Location:");
     this.lbl_location.UseUnderline = true;
     this.table1.Add(this.lbl_location);
     global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.table1 [this.lbl_location]));
     w20.TopAttach    = ((uint)(1));
     w20.BottomAttach = ((uint)(2));
     w20.XOptions     = ((global::Gtk.AttachOptions)(4));
     w20.YOptions     = ((global::Gtk.AttachOptions)(0));
     // Container child table1.Gtk.Table+TableChild
     this.lbl_name              = new global::Gtk.Label();
     this.lbl_name.Name         = "lbl_name";
     this.lbl_name.Xalign       = 0F;
     this.lbl_name.Yalign       = 0F;
     this.lbl_name.LabelProp    = global::MonoDevelop.Core.GettextCatalog.GetString("N_ame:");
     this.lbl_name.UseUnderline = true;
     this.table1.Add(this.lbl_name);
     global::Gtk.Table.TableChild w21 = ((global::Gtk.Table.TableChild)(this.table1 [this.lbl_name]));
     w21.XOptions = ((global::Gtk.AttachOptions)(4));
     w21.YOptions = ((global::Gtk.AttachOptions)(0));
     // Container child table1.Gtk.Table+TableChild
     this.lbl_subdirectory              = new global::Gtk.Label();
     this.lbl_subdirectory.Name         = "lbl_subdirectory";
     this.lbl_subdirectory.Xalign       = 0F;
     this.lbl_subdirectory.LabelProp    = global::MonoDevelop.Core.GettextCatalog.GetString("_Solution name:");
     this.lbl_subdirectory.UseUnderline = true;
     this.table1.Add(this.lbl_subdirectory);
     global::Gtk.Table.TableChild w22 = ((global::Gtk.Table.TableChild)(this.table1 [this.lbl_subdirectory]));
     w22.TopAttach    = ((uint)(2));
     w22.BottomAttach = ((uint)(3));
     w22.XOptions     = ((global::Gtk.AttachOptions)(4));
     w22.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.txt_name                  = new global::Gtk.Entry();
     this.txt_name.Name             = "txt_name";
     this.txt_name.IsEditable       = true;
     this.txt_name.ActivatesDefault = true;
     this.txt_name.InvisibleChar    = '●';
     this.table1.Add(this.txt_name);
     global::Gtk.Table.TableChild w23 = ((global::Gtk.Table.TableChild)(this.table1 [this.txt_name]));
     w23.LeftAttach  = ((uint)(1));
     w23.RightAttach = ((uint)(2));
     w23.YOptions    = ((global::Gtk.AttachOptions)(0));
     this.vbox3.Add(this.table1);
     global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.table1]));
     w24.Position = 0;
     w24.Expand   = false;
     w24.Fill     = false;
     // Container child vbox3.Gtk.Box+BoxChild
     this.lbl_will_save_in = new global::Gtk.Label();
     this.lbl_will_save_in.WidthRequest = 580;
     this.lbl_will_save_in.Name         = "lbl_will_save_in";
     this.lbl_will_save_in.Xalign       = 0F;
     this.lbl_will_save_in.Yalign       = 0F;
     this.lbl_will_save_in.LabelProp    = "Project will be saved in: /dev/null";
     this.lbl_will_save_in.Wrap         = true;
     this.vbox3.Add(this.lbl_will_save_in);
     global::Gtk.Box.BoxChild w25 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.lbl_will_save_in]));
     w25.Position = 1;
     w25.Expand   = false;
     w25.Fill     = false;
     this.vbox1.Add(this.vbox3);
     global::Gtk.Box.BoxChild w26 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.vbox3]));
     w26.Position = 1;
     w26.Expand   = false;
     this.notebook.Add(this.vbox1);
     // Notebook tab
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.LabelProp = "page1";
     this.notebook.SetTabLabel(this.vbox1, this.label1);
     this.label1.ShowAll();
     // Container child notebook.Gtk.Notebook+NotebookChild
     this.vbox5         = new global::Gtk.VBox();
     this.vbox5.Name    = "vbox5";
     this.vbox5.Spacing = 6;
     // Container child vbox5.Gtk.Box+BoxChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.Xalign    = 0F;
     this.label3.LabelProp = global::MonoDevelop.Core.GettextCatalog.GetString("<b>Project Features</b>");
     this.label3.UseMarkup = true;
     this.vbox5.Add(this.label3);
     global::Gtk.Box.BoxChild w28 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.label3]));
     w28.Position = 0;
     w28.Expand   = false;
     w28.Fill     = false;
     // Container child vbox5.Gtk.Box+BoxChild
     this.label4 = new global::Gtk.Label();
     this.label4.WidthRequest = 632;
     this.label4.Name         = "label4";
     this.label4.Xalign       = 0F;
     this.label4.LabelProp    = global::MonoDevelop.Core.GettextCatalog.GetString("<small>This list shows a set of features you can enable in the new project. After creating the project those features can be enabled or disabled in the Project Options dialog, or by adding new projects to the solution.</small>");
     this.label4.UseMarkup    = true;
     this.label4.Wrap         = true;
     this.vbox5.Add(this.label4);
     global::Gtk.Box.BoxChild w29 = ((global::Gtk.Box.BoxChild)(this.vbox5 [this.label4]));
     w29.Position = 1;
     w29.Expand   = false;
     w29.Fill     = false;
     this.notebook.Add(this.vbox5);
     global::Gtk.Notebook.NotebookChild w30 = ((global::Gtk.Notebook.NotebookChild)(this.notebook [this.vbox5]));
     w30.Position = 1;
     // Notebook tab
     this.label2           = new global::Gtk.Label();
     this.label2.Name      = "label2";
     this.label2.LabelProp = "page2";
     this.notebook.SetTabLabel(this.vbox5, this.label2);
     this.label2.ShowAll();
     w1.Add(this.notebook);
     global::Gtk.Box.BoxChild w31 = ((global::Gtk.Box.BoxChild)(w1 [this.notebook]));
     w31.Position = 0;
     // Internal child MonoDevelop.Ide.Projects.NewProjectDialog.ActionArea
     global::Gtk.HButtonBox w32 = this.ActionArea;
     w32.Name        = "dialog-action_area1";
     w32.Spacing     = 6;
     w32.BorderWidth = ((uint)(5));
     w32.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog-action_area1.Gtk.ButtonBox+ButtonBoxChild
     this.btn_close              = new global::Gtk.Button();
     this.btn_close.CanDefault   = true;
     this.btn_close.Name         = "btn_close";
     this.btn_close.UseStock     = true;
     this.btn_close.UseUnderline = true;
     this.btn_close.Label        = "gtk-cancel";
     this.AddActionWidget(this.btn_close, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w33 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w32 [this.btn_close]));
     w33.Expand = false;
     w33.Fill   = false;
     // Container child dialog-action_area1.Gtk.ButtonBox+ButtonBoxChild
     this.btn_new              = new global::Gtk.Button();
     this.btn_new.CanDefault   = true;
     this.btn_new.Name         = "btn_new";
     this.btn_new.UseStock     = true;
     this.btn_new.UseUnderline = true;
     this.btn_new.Label        = "gtk-go-forward";
     w32.Add(this.btn_new);
     global::Gtk.ButtonBox.ButtonBoxChild w34 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w32 [this.btn_new]));
     w34.Position = 1;
     w34.Expand   = false;
     w34.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth                    = 930;
     this.DefaultHeight                   = 539;
     this.lbl_name.MnemonicWidget         = this.txt_name;
     this.lbl_subdirectory.MnemonicWidget = this.txt_subdirectory;
     this.Hide();
     this.scrolledInfo.SizeAllocated    += new global::Gtk.SizeAllocatedHandler(this.OnScrolledInfoSizeAllocated);
     this.boxInfo.SizeAllocated         += new global::Gtk.SizeAllocatedHandler(this.OnBoxInfoSizeAllocated);
     this.txt_name.Changed              += new global::System.EventHandler(this.NameChanged);
     this.txt_subdirectory.Changed      += new global::System.EventHandler(this.PathChanged);
     this.chk_combine_directory.Clicked += new global::System.EventHandler(this.SolutionCheckChanged);
     this.btn_close.Clicked             += new global::System.EventHandler(this.cancelClicked);
     this.btn_new.Clicked += new global::System.EventHandler(this.OpenEvent);
 }
예제 #56
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget SchedulerSharp.Windows.AboutDilog
     this.Name           = "SchedulerSharp.Windows.AboutDilog";
     this.Title          = global::Mono.Unix.Catalog.GetString("Sobre Scheduler#");
     this.Icon           = global::Gdk.Pixbuf.LoadFromResource("SchedulerSharp.icon512.png");
     this.TypeHint       = ((global::Gdk.WindowTypeHint)(1));
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Resizable      = false;
     this.AllowGrow      = false;
     this.DefaultWidth   = 320;
     this.DefaultHeight  = 450;
     // Internal child SchedulerSharp.Windows.AboutDilog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox4         = new global::Gtk.VBox();
     this.vbox4.Name    = "vbox4";
     this.vbox4.Spacing = 6;
     // Container child vbox4.Gtk.Box+BoxChild
     this.image225        = new global::Gtk.Image();
     this.image225.Name   = "image225";
     this.image225.Pixbuf = global::Gdk.Pixbuf.LoadFromResource("SchedulerSharp.Icons.icon127.png");
     this.vbox4.Add(this.image225);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.image225]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.label4           = new global::Gtk.Label();
     this.label4.Name      = "label4";
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("<span size=\"x-large\"><b>Scheduler-Sharp 1.0</b></span>");
     this.label4.UseMarkup = true;
     this.label4.Justify   = ((global::Gtk.Justification)(2));
     this.vbox4.Add(this.label4);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.label4]));
     w3.Position = 1;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.label5           = new global::Gtk.Label();
     this.label5.Name      = "label5";
     this.label5.LabelProp = global::Mono.Unix.Catalog.GetString("Simulador de escalonamento de processos.\nEscrito em C# com interface grafica em G" +
                                                                 "TK.\nImplementação dos algoritmos de escalonamento\nFCFS, SJF com Preempção e Roun" +
                                                                 "d Robin.");
     this.label5.Justify = ((global::Gtk.Justification)(2));
     this.vbox4.Add(this.label5);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.label5]));
     w4.Position = 2;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.hseparator5      = new global::Gtk.HSeparator();
     this.hseparator5.Name = "hseparator5";
     this.vbox4.Add(this.hseparator5);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.hseparator5]));
     w5.Position = 3;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.label7           = new global::Gtk.Label();
     this.label7.Name      = "label7";
     this.label7.LabelProp = global::Mono.Unix.Catalog.GetString("Copyright © 2019 Gabriela Faria de Oliveira");
     this.vbox4.Add(this.label7);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.label7]));
     w6.Position = 4;
     w6.Expand   = false;
     w6.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.label6           = new global::Gtk.Label();
     this.label6.Name      = "label6";
     this.label6.LabelProp = global::Mono.Unix.Catalog.GetString("Copyright © 2019 Wilgnne Khawan Barbosa de Alencar");
     this.vbox4.Add(this.label6);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.label6]));
     w7.Position = 5;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.hseparator4      = new global::Gtk.HSeparator();
     this.hseparator4.Name = "hseparator4";
     this.vbox4.Add(this.hseparator4);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.hseparator4]));
     w8.Position = 6;
     w8.Expand   = false;
     w8.Fill     = false;
     // Container child vbox4.Gtk.Box+BoxChild
     this.label8            = new global::Gtk.Label();
     this.label8.Name       = "label8";
     this.label8.LabelProp  = global::Mono.Unix.Catalog.GetString("<span foreground=\"red\"><u>www.github.com/Wilgnne/Scheduler-Sharp</u></span>");
     this.label8.UseMarkup  = true;
     this.label8.Selectable = true;
     this.vbox4.Add(this.label8);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox4[this.label8]));
     w9.Position = 7;
     w9.Expand   = false;
     w9.Fill     = false;
     w1.Add(this.vbox4);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(w1[this.vbox4]));
     w10.Position = 0;
     w10.Expand   = false;
     w10.Fill     = false;
     // Internal child SchedulerSharp.Windows.AboutDilog.ActionArea
     global::Gtk.HButtonBox w11 = this.ActionArea;
     w11.Name        = "__gtksharp_167_Stetic_TopLevelDialog_ActionArea";
     w11.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child __gtksharp_167_Stetic_TopLevelDialog_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.button178              = new global::Gtk.Button();
     this.button178.CanFocus     = true;
     this.button178.Name         = "button178";
     this.button178.UseStock     = true;
     this.button178.UseUnderline = true;
     this.button178.Label        = "gtk-close";
     this.AddActionWidget(this.button178, -7);
     global::Gtk.ButtonBox.ButtonBoxChild w12 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w11[this.button178]));
     w12.Expand = false;
     w12.Fill   = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.Show();
     this.button178.Clicked += new global::System.EventHandler(this.CloseEvent);
 }
예제 #57
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget QSSupportLib.ErrorMsg
     this.WidthRequest   = 1000;
     this.Name           = "QSSupportLib.ErrorMsg";
     this.Title          = global::Mono.Unix.Catalog.GetString("Ошибка");
     this.Icon           = global::Stetic.IconLoader.LoadIcon(this, "gtk-dialog-error", global::Gtk.IconSize.Menu);
     this.TypeHint       = ((global::Gdk.WindowTypeHint)(1));
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Modal          = true;
     // Internal child QSSupportLib.ErrorMsg.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.image249        = new global::Gtk.Image();
     this.image249.Name   = "image249";
     this.image249.Xalign = 0F;
     this.image249.Yalign = 0F;
     this.image249.Pixbuf = global::Stetic.IconLoader.LoadIcon(this, "gtk-dialog-error", global::Gtk.IconSize.Dialog);
     this.hbox1.Add(this.image249);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.image249]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.vbox2         = new global::Gtk.VBox();
     this.vbox2.Name    = "vbox2";
     this.vbox2.Spacing = 6;
     // Container child vbox2.Gtk.Box+BoxChild
     this.label1           = new global::Gtk.Label();
     this.label1.Name      = "label1";
     this.label1.Xalign    = 0F;
     this.label1.LabelProp = global::Mono.Unix.Catalog.GetString("К сожалению в программе произошла непредвиденная ошибка.");
     this.vbox2.Add(this.label1);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.label1]));
     w3.Position = 0;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.labelUserMessage            = new global::Gtk.Label();
     this.labelUserMessage.Name       = "labelUserMessage";
     this.labelUserMessage.LabelProp  = global::Mono.Unix.Catalog.GetString("label2");
     this.labelUserMessage.Wrap       = true;
     this.labelUserMessage.Selectable = true;
     this.vbox2.Add(this.labelUserMessage);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.labelUserMessage]));
     w4.Position = 1;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.label3           = new global::Gtk.Label();
     this.label3.Name      = "label3";
     this.label3.Xalign    = 0F;
     this.label3.LabelProp = global::Mono.Unix.Catalog.GetString("Вы можете помочь нам улучшить программу и исправить данную проблему. \nДля этого в" +
                                                                 "оспользуйтесь формой отправки отчета об ошибке.\n");
     this.label3.Justify = ((global::Gtk.Justification)(3));
     this.vbox2.Add(this.label3);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.label3]));
     w5.Position = 2;
     w5.Expand   = false;
     w5.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.table1               = new global::Gtk.Table(((uint)(3)), ((uint)(2)), false);
     this.table1.Name          = "table1";
     this.table1.RowSpacing    = ((uint)(6));
     this.table1.ColumnSpacing = ((uint)(6));
     // Container child table1.Gtk.Table+TableChild
     this.entryEmail = new global::Gtk.Entry();
     this.entryEmail.TooltipMarkup = "Для отправки отчета нам требуется ваш email. Мы будем использовать его для уточне" +
                                     "ния информации об ошибке, а также для оперативного информирования об устранении " +
                                     "данной проблемы.";
     this.entryEmail.CanFocus      = true;
     this.entryEmail.Name          = "entryEmail";
     this.entryEmail.IsEditable    = true;
     this.entryEmail.InvisibleChar = '●';
     this.table1.Add(this.entryEmail);
     global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table1[this.entryEmail]));
     w6.TopAttach    = ((uint)(2));
     w6.BottomAttach = ((uint)(3));
     w6.LeftAttach   = ((uint)(1));
     w6.RightAttach  = ((uint)(2));
     w6.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.GtkScrolledWindow1            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow1.Name       = "GtkScrolledWindow1";
     this.GtkScrolledWindow1.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow1.Gtk.Container+ContainerChild
     this.textviewDescription = new global::Gtk.TextView();
     this.textviewDescription.TooltipMarkup = "В этом поле опишите последовательность действий, которая привела к возникновению " +
                                              "ошибки.";
     this.textviewDescription.CanFocus = true;
     this.textviewDescription.Name     = "textviewDescription";
     this.GtkScrolledWindow1.Add(this.textviewDescription);
     this.table1.Add(this.GtkScrolledWindow1);
     global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table1[this.GtkScrolledWindow1]));
     w8.TopAttach    = ((uint)(1));
     w8.BottomAttach = ((uint)(2));
     w8.LeftAttach   = ((uint)(1));
     w8.RightAttach  = ((uint)(2));
     w8.XOptions     = ((global::Gtk.AttachOptions)(4));
     w8.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label2 = new global::Gtk.Label();
     this.label2.TooltipMarkup = "В этом поле опишите последовательность действий, которая привела к возникновению " +
                                 "ошибки.";
     this.label2.Name      = "label2";
     this.label2.Xalign    = 1F;
     this.label2.LabelProp = global::Mono.Unix.Catalog.GetString("Описание:");
     this.table1.Add(this.label2);
     global::Gtk.Table.TableChild w9 = ((global::Gtk.Table.TableChild)(this.table1[this.label2]));
     w9.TopAttach    = ((uint)(1));
     w9.BottomAttach = ((uint)(2));
     w9.XOptions     = ((global::Gtk.AttachOptions)(4));
     w9.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label4 = new global::Gtk.Label();
     this.label4.TooltipMarkup = "Для отправки отчета нам требуется ваш email. Мы будем использовать его, для уточн" +
                                 "ения информации об ошибке, а также для оперативного информирования об устранении" +
                                 " данной проблемы.";
     this.label4.Name      = "label4";
     this.label4.Xalign    = 1F;
     this.label4.LabelProp = global::Mono.Unix.Catalog.GetString("Ваш e-mail:");
     this.table1.Add(this.label4);
     global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table1[this.label4]));
     w10.TopAttach    = ((uint)(2));
     w10.BottomAttach = ((uint)(3));
     w10.XOptions     = ((global::Gtk.AttachOptions)(4));
     w10.YOptions     = ((global::Gtk.AttachOptions)(4));
     // Container child table1.Gtk.Table+TableChild
     this.label5           = new global::Gtk.Label();
     this.label5.Name      = "label5";
     this.label5.LabelProp = global::Mono.Unix.Catalog.GetString("Для отправки отчета, пожалуйста, заполните следующие поля:");
     this.table1.Add(this.label5);
     global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.table1[this.label5]));
     w11.RightAttach = ((uint)(2));
     w11.XOptions    = ((global::Gtk.AttachOptions)(4));
     w11.YOptions    = ((global::Gtk.AttachOptions)(4));
     this.vbox2.Add(this.table1);
     global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.table1]));
     w12.Position = 3;
     w12.Expand   = false;
     w12.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hseparator1      = new global::Gtk.HSeparator();
     this.hseparator1.Name = "hseparator1";
     this.vbox2.Add(this.hseparator1);
     global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hseparator1]));
     w13.Position = 4;
     w13.Expand   = false;
     w13.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.expander1          = new global::Gtk.Expander(null);
     this.expander1.CanFocus = true;
     this.expander1.Name     = "expander1";
     this.expander1.Expanded = true;
     // Container child expander1.Gtk.Container+ContainerChild
     this.GtkScrolledWindow = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.HeightRequest = 203;
     this.GtkScrolledWindow.Name          = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType    = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.textviewError          = new global::Gtk.TextView();
     this.textviewError.CanFocus = true;
     this.textviewError.Name     = "textviewError";
     this.textviewError.Editable = false;
     this.textviewError.WrapMode = ((global::Gtk.WrapMode)(2));
     this.GtkScrolledWindow.Add(this.textviewError);
     this.expander1.Add(this.GtkScrolledWindow);
     this.GtkLabel1              = new global::Gtk.Label();
     this.GtkLabel1.Name         = "GtkLabel1";
     this.GtkLabel1.LabelProp    = global::Mono.Unix.Catalog.GetString("Техническая информация");
     this.GtkLabel1.UseUnderline = true;
     this.expander1.LabelWidget  = this.GtkLabel1;
     this.vbox2.Add(this.expander1);
     global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.expander1]));
     w16.Position = 5;
     this.hbox1.Add(this.vbox2);
     global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.vbox2]));
     w17.Position = 1;
     w1.Add(this.hbox1);
     global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(w1[this.hbox1]));
     w18.Position = 0;
     // Internal child QSSupportLib.ErrorMsg.ActionArea
     global::Gtk.HButtonBox w19 = this.ActionArea;
     w19.Name        = "dialog1_ActionArea";
     w19.Spacing     = 10;
     w19.BorderWidth = ((uint)(5));
     w19.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonSendReport              = new global::Gtk.Button();
     this.buttonSendReport.CanFocus     = true;
     this.buttonSendReport.Name         = "buttonSendReport";
     this.buttonSendReport.UseUnderline = true;
     this.buttonSendReport.Label        = global::Mono.Unix.Catalog.GetString("Отправить отчет");
     global::Gtk.Image w20 = new global::Gtk.Image();
     w20.Pixbuf = global::Gdk.Pixbuf.LoadFromResource("QSSupportLib.icons.send-error-report.png");
     this.buttonSendReport.Image = w20;
     w19.Add(this.buttonSendReport);
     global::Gtk.ButtonBox.ButtonBoxChild w21 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w19[this.buttonSendReport]));
     w21.Expand = false;
     w21.Fill   = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCopy = new global::Gtk.Button();
     this.buttonCopy.TooltipMarkup = "Копирует сообщение в буфер обмена.";
     this.buttonCopy.CanFocus      = true;
     this.buttonCopy.Name          = "buttonCopy";
     this.buttonCopy.UseUnderline  = true;
     this.buttonCopy.Label         = global::Mono.Unix.Catalog.GetString("Скопировать");
     global::Gtk.Image w22 = new global::Gtk.Image();
     w22.Pixbuf            = global::Stetic.IconLoader.LoadIcon(this, "gtk-copy", global::Gtk.IconSize.Menu);
     this.buttonCopy.Image = w22;
     w19.Add(this.buttonCopy);
     global::Gtk.ButtonBox.ButtonBoxChild w23 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w19[this.buttonCopy]));
     w23.Position = 1;
     w23.Expand   = false;
     w23.Fill     = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk              = new global::Gtk.Button();
     this.buttonOk.CanDefault   = true;
     this.buttonOk.CanFocus     = true;
     this.buttonOk.Name         = "buttonOk";
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label        = global::Mono.Unix.Catalog.GetString("Понятно");
     global::Gtk.Image w24 = new global::Gtk.Image();
     w24.Pixbuf          = global::Stetic.IconLoader.LoadIcon(this, "gtk-close", global::Gtk.IconSize.Menu);
     this.buttonOk.Image = w24;
     this.AddActionWidget(this.buttonOk, -7);
     global::Gtk.ButtonBox.ButtonBoxChild w25 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w19[this.buttonOk]));
     w25.Position = 2;
     w25.Expand   = false;
     w25.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 1553;
     this.DefaultHeight = 784;
     this.Show();
     this.buttonSendReport.Clicked += new global::System.EventHandler(this.OnButtonSendReportClicked);
     this.buttonCopy.Clicked       += new global::System.EventHandler(this.OnButtonCopyClicked);
 }
예제 #58
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MainWindow
     this.WidthRequest   = 430;
     this.HeightRequest  = 460;
     this.Name           = "MainWindow";
     this.Title          = global::Mono.Unix.Catalog.GetString("MainWindow");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.AllowShrink    = true;
     this.Gravity        = ((global::Gdk.Gravity)(5));
     // Container child MainWindow.Gtk.Container+ContainerChild
     this.vbox1         = new global::Gtk.VBox();
     this.vbox1.Name    = "vbox1";
     this.vbox1.Spacing = 6;
     // Container child vbox1.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 5;
     // Container child hbox1.Gtk.Box+BoxChild
     this.btnShow              = new global::Gtk.Button();
     this.btnShow.CanFocus     = true;
     this.btnShow.Name         = "btnShow";
     this.btnShow.UseUnderline = true;
     this.btnShow.Label        = global::Mono.Unix.Catalog.GetString("Show");
     this.hbox1.Add(this.btnShow);
     global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.btnShow]));
     w1.Position = 0;
     w1.Expand   = false;
     w1.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.btnRandom              = new global::Gtk.Button();
     this.btnRandom.CanFocus     = true;
     this.btnRandom.Name         = "btnRandom";
     this.btnRandom.UseUnderline = true;
     this.btnRandom.Label        = global::Mono.Unix.Catalog.GetString("Random");
     this.hbox1.Add(this.btnRandom);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.btnRandom]));
     w2.Position = 1;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.btnBackward              = new global::Gtk.Button();
     this.btnBackward.CanFocus     = true;
     this.btnBackward.Name         = "btnBackward";
     this.btnBackward.UseUnderline = true;
     this.btnBackward.Label        = global::Mono.Unix.Catalog.GetString("Backward");
     this.hbox1.Add(this.btnBackward);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.btnBackward]));
     w3.Position = 2;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.btnForward              = new global::Gtk.Button();
     this.btnForward.CanFocus     = true;
     this.btnForward.Name         = "btnForward";
     this.btnForward.UseUnderline = true;
     this.btnForward.Label        = global::Mono.Unix.Catalog.GetString("Forward");
     this.hbox1.Add(this.btnForward);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.btnForward]));
     w4.Position = 3;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.filechooserbutton1        = new global::Gtk.FileChooserButton(global::Mono.Unix.Catalog.GetString("Select a File"), ((global::Gtk.FileChooserAction)(2)));
     this.filechooserbutton1.Events = ((global::Gdk.EventMask)(16));
     this.filechooserbutton1.Name   = "filechooserbutton1";
     this.hbox1.Add(this.filechooserbutton1);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.filechooserbutton1]));
     w5.Position = 4;
     // Container child hbox1.Gtk.Box+BoxChild
     this.btnClose              = new global::Gtk.Button();
     this.btnClose.CanFocus     = true;
     this.btnClose.Name         = "btnClose";
     this.btnClose.UseUnderline = true;
     this.btnClose.Label        = global::Mono.Unix.Catalog.GetString("Close");
     this.hbox1.Add(this.btnClose);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.btnClose]));
     w6.Position = 5;
     w6.Expand   = false;
     w6.Fill     = false;
     this.vbox1.Add(this.hbox1);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox1]));
     w7.Position = 0;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.pixbox = new global::Gtk.Image();
     this.pixbox.WidthRequest  = 400;
     this.pixbox.HeightRequest = 400;
     this.pixbox.Events        = ((global::Gdk.EventMask)(36));
     this.pixbox.Name          = "pixbox";
     this.vbox1.Add(this.pixbox);
     global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.pixbox]));
     w8.Position = 1;
     w8.Expand   = false;
     w8.Fill     = false;
     // Container child vbox1.Gtk.Box+BoxChild
     this.statusbar1         = new global::Gtk.Statusbar();
     this.statusbar1.Name    = "statusbar1";
     this.statusbar1.Spacing = 6;
     // Container child statusbar1.Gtk.Box+BoxChild
     this.lblOut           = new global::Gtk.Label();
     this.lblOut.Name      = "lblOut";
     this.lblOut.LabelProp = global::Mono.Unix.Catalog.GetString("label1");
     this.statusbar1.Add(this.lblOut);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.statusbar1 [this.lblOut]));
     w9.Position = 1;
     w9.Expand   = false;
     w9.Fill     = false;
     this.vbox1.Add(this.statusbar1);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.statusbar1]));
     w10.Position = 2;
     w10.Expand   = false;
     w10.Fill     = false;
     this.Add(this.vbox1);
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 432;
     this.DefaultHeight = 485;
     this.Show();
     this.DeleteEvent += new global::Gtk.DeleteEventHandler(this.OnDeleteEvent);
 }
예제 #59
0
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget TXM.Lin.SetPairingDialog
     this.Name           = "TXM.Lin.SetPairingDialog";
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     // Internal child TXM.Lin.SetPairingDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox6         = new global::Gtk.VBox();
     this.vbox6.Name    = "vbox6";
     this.vbox6.Spacing = 6;
     // Container child vbox6.Gtk.Box+BoxChild
     this.hbox13         = new global::Gtk.HBox();
     this.hbox13.Name    = "hbox13";
     this.hbox13.Spacing = 6;
     // Container child hbox13.Gtk.Box+BoxChild
     this.ComboboxPlayer1      = global::Gtk.ComboBox.NewText();
     this.ComboboxPlayer1.Name = "ComboboxPlayer1";
     this.hbox13.Add(this.ComboboxPlayer1);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox13 [this.ComboboxPlayer1]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child hbox13.Gtk.Box+BoxChild
     this.ComboboxPlayer2      = global::Gtk.ComboBox.NewText();
     this.ComboboxPlayer2.Name = "ComboboxPlayer2";
     this.hbox13.Add(this.ComboboxPlayer2);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox13 [this.ComboboxPlayer2]));
     w3.Position = 1;
     w3.Expand   = false;
     w3.Fill     = false;
     // Container child hbox13.Gtk.Box+BoxChild
     this.ButtonAdd              = new global::Gtk.Button();
     this.ButtonAdd.CanFocus     = true;
     this.ButtonAdd.Name         = "ButtonAdd";
     this.ButtonAdd.UseUnderline = true;
     this.ButtonAdd.Label        = global::Mono.Unix.Catalog.GetString("+");
     this.hbox13.Add(this.ButtonAdd);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox13 [this.ButtonAdd]));
     w4.Position = 2;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child hbox13.Gtk.Box+BoxChild
     this.buttonSub              = new global::Gtk.Button();
     this.buttonSub.Sensitive    = false;
     this.buttonSub.CanFocus     = true;
     this.buttonSub.Name         = "buttonSub";
     this.buttonSub.UseUnderline = true;
     this.buttonSub.Label        = global::Mono.Unix.Catalog.GetString("-");
     this.hbox13.Add(this.buttonSub);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox13 [this.buttonSub]));
     w5.PackType = ((global::Gtk.PackType)(1));
     w5.Position = 3;
     w5.Expand   = false;
     w5.Fill     = false;
     this.vbox6.Add(this.hbox13);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox6 [this.hbox13]));
     w6.Position = 0;
     w6.Expand   = false;
     w6.Fill     = false;
     // Container child vbox6.Gtk.Box+BoxChild
     this.label18           = new global::Gtk.Label();
     this.label18.Name      = "label18";
     this.label18.LabelProp = global::Mono.Unix.Catalog.GetString("Paarungen:");
     this.vbox6.Add(this.label18);
     global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox6 [this.label18]));
     w7.Position = 1;
     w7.Expand   = false;
     w7.Fill     = false;
     // Container child vbox6.Gtk.Box+BoxChild
     this.GtkScrolledWindow            = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.Name       = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.ListboxPairings          = new global::Gtk.NodeView();
     this.ListboxPairings.CanFocus = true;
     this.ListboxPairings.Name     = "ListboxPairings";
     this.GtkScrolledWindow.Add(this.ListboxPairings);
     this.vbox6.Add(this.GtkScrolledWindow);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox6 [this.GtkScrolledWindow]));
     w9.Position = 2;
     w1.Add(this.vbox6);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(w1 [this.vbox6]));
     w10.Position = 0;
     // Internal child TXM.Lin.SetPairingDialog.ActionArea
     global::Gtk.HButtonBox w11 = this.ActionArea;
     w11.Name        = "dialog1_ActionArea";
     w11.Spacing     = 10;
     w11.BorderWidth = ((uint)(5));
     w11.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonCancel              = new global::Gtk.Button();
     this.buttonCancel.CanDefault   = true;
     this.buttonCancel.CanFocus     = true;
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.UseStock     = true;
     this.buttonCancel.UseUnderline = true;
     this.buttonCancel.Label        = "gtk-cancel";
     this.AddActionWidget(this.buttonCancel, -6);
     global::Gtk.ButtonBox.ButtonBoxChild w12 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w11 [this.buttonCancel]));
     w12.Expand = false;
     w12.Fill   = false;
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.buttonOk              = new global::Gtk.Button();
     this.buttonOk.CanDefault   = true;
     this.buttonOk.CanFocus     = true;
     this.buttonOk.Name         = "buttonOk";
     this.buttonOk.UseStock     = true;
     this.buttonOk.UseUnderline = true;
     this.buttonOk.Label        = "gtk-ok";
     this.AddActionWidget(this.buttonOk, -5);
     global::Gtk.ButtonBox.ButtonBoxChild w13 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w11 [this.buttonOk]));
     w13.Position = 1;
     w13.Expand   = false;
     w13.Fill     = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 400;
     this.DefaultHeight = 300;
     this.Show();
     this.ComboboxPlayer1.Changed       += new global::System.EventHandler(this.Player1_SelectionChanged);
     this.ComboboxPlayer2.Changed       += new global::System.EventHandler(this.Player2_SelectionChanged);
     this.ButtonAdd.Clicked             += new global::System.EventHandler(this.ButtonAdd_Click);
     this.buttonSub.Clicked             += new global::System.EventHandler(this.ButtonSub_Click);
     this.ListboxPairings.CursorChanged += new global::System.EventHandler(this.LbPairing_Changed);
     this.buttonOk.Clicked += new global::System.EventHandler(this.ButtonOK_Click);
 }
 protected virtual void Build()
 {
     global::Stetic.Gui.Initialize(this);
     // Widget MonoDevelop.Ide.Gui.Dialogs.ProgressDialog
     this.Name           = "MonoDevelop.Ide.Gui.Dialogs.ProgressDialog";
     this.Title          = global::MonoDevelop.Core.GettextCatalog.GetString("MonoDevelop");
     this.WindowPosition = ((global::Gtk.WindowPosition)(4));
     this.Modal          = true;
     // Internal child MonoDevelop.Ide.Gui.Dialogs.ProgressDialog.VBox
     global::Gtk.VBox w1 = this.VBox;
     w1.Name        = "dialog1_VBox";
     w1.BorderWidth = ((uint)(2));
     // Container child dialog1_VBox.Gtk.Box+BoxChild
     this.vbox2             = new global::Gtk.VBox();
     this.vbox2.Name        = "vbox2";
     this.vbox2.Spacing     = 6;
     this.vbox2.BorderWidth = ((uint)(12));
     // Container child vbox2.Gtk.Box+BoxChild
     this.label           = new global::Gtk.Label();
     this.label.Name      = "label";
     this.label.Xalign    = 0F;
     this.label.LabelProp = "label";
     this.vbox2.Add(this.label);
     global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.label]));
     w2.Position = 0;
     w2.Expand   = false;
     w2.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.hbox1         = new global::Gtk.HBox();
     this.hbox1.Name    = "hbox1";
     this.hbox1.Spacing = 6;
     // Container child hbox1.Gtk.Box+BoxChild
     this.progressBar      = new global::Gtk.ProgressBar();
     this.progressBar.Name = "progressBar";
     this.hbox1.Add(this.progressBar);
     global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.progressBar]));
     w3.Position = 0;
     // Container child hbox1.Gtk.Box+BoxChild
     this.btnCancel              = new global::Gtk.Button();
     this.btnCancel.CanDefault   = true;
     this.btnCancel.CanFocus     = true;
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.UseStock     = true;
     this.btnCancel.UseUnderline = true;
     this.btnCancel.Label        = "gtk-cancel";
     this.hbox1.Add(this.btnCancel);
     global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.btnCancel]));
     w4.Position = 1;
     w4.Expand   = false;
     w4.Fill     = false;
     // Container child hbox1.Gtk.Box+BoxChild
     this.btnClose              = new global::Gtk.Button();
     this.btnClose.CanDefault   = true;
     this.btnClose.CanFocus     = true;
     this.btnClose.Name         = "btnClose";
     this.btnClose.UseStock     = true;
     this.btnClose.UseUnderline = true;
     this.btnClose.Label        = "gtk-close";
     this.hbox1.Add(this.btnClose);
     global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.btnClose]));
     w5.Position = 2;
     w5.Expand   = false;
     w5.Fill     = false;
     this.vbox2.Add(this.hbox1);
     global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.hbox1]));
     w6.Position = 1;
     w6.Expand   = false;
     w6.Fill     = false;
     // Container child vbox2.Gtk.Box+BoxChild
     this.expander          = new global::Gtk.Expander(null);
     this.expander.CanFocus = true;
     this.expander.Name     = "expander";
     // Container child expander.Gtk.Container+ContainerChild
     this.GtkScrolledWindow = new global::Gtk.ScrolledWindow();
     this.GtkScrolledWindow.HeightRequest = 250;
     this.GtkScrolledWindow.Name          = "GtkScrolledWindow";
     this.GtkScrolledWindow.ShadowType    = ((global::Gtk.ShadowType)(1));
     // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
     this.detailsTextView          = new global::Gtk.TextView();
     this.detailsTextView.CanFocus = true;
     this.detailsTextView.Name     = "detailsTextView";
     this.GtkScrolledWindow.Add(this.detailsTextView);
     this.expander.Add(this.GtkScrolledWindow);
     this.expanderLabel              = new global::Gtk.Label();
     this.expanderLabel.Name         = "expanderLabel";
     this.expanderLabel.LabelProp    = global::MonoDevelop.Core.GettextCatalog.GetString("Details");
     this.expanderLabel.UseUnderline = true;
     this.expander.LabelWidget       = this.expanderLabel;
     this.vbox2.Add(this.expander);
     global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.expander]));
     w9.Position = 2;
     w1.Add(this.vbox2);
     global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(w1 [this.vbox2]));
     w10.Position = 0;
     // Internal child MonoDevelop.Ide.Gui.Dialogs.ProgressDialog.ActionArea
     global::Gtk.HButtonBox w11 = this.ActionArea;
     w11.Name        = "dialog1_ActionArea";
     w11.Spacing     = 10;
     w11.BorderWidth = ((uint)(5));
     w11.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
     // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
     this.button103              = new global::Gtk.Button();
     this.button103.CanFocus     = true;
     this.button103.Name         = "button103";
     this.button103.UseUnderline = true;
     this.button103.Label        = global::MonoDevelop.Core.GettextCatalog.GetString("GtkButton");
     this.AddActionWidget(this.button103, 0);
     global::Gtk.ButtonBox.ButtonBoxChild w12 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w11 [this.button103]));
     w12.Expand = false;
     w12.Fill   = false;
     if ((this.Child != null))
     {
         this.Child.ShowAll();
     }
     this.DefaultWidth  = 544;
     this.DefaultHeight = 170;
     this.btnClose.Hide();
     w11.Hide();
     this.Hide();
     this.btnCancel.Clicked  += new global::System.EventHandler(this.OnBtnCancelClicked);
     this.btnClose.Clicked   += new global::System.EventHandler(this.OnBtnCloseClicked);
     this.expander.Activated += new global::System.EventHandler(this.OnExpander1Activated);
 }