Files
@ a4f9577554a9
Branch filter:
Location: ATITD-Tools/Desert-Paint-Lab/gtk-gui/DesertPaintLab.NewProfileDialog.cs - annotation
a4f9577554a9
3.1 KiB
text/x-csharp
Added tag VERSION_T8_RC4 for changeset d792b40d3ef9
4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a |
// This file has been generated by the GUI designer. Do not modify.
namespace DesertPaintLab
{
public partial class NewProfileDialog
{
private global::Gtk.Label label1;
private global::Gtk.Entry profileNameEntry;
private global::Gtk.Button buttonCancel;
private global::Gtk.Button buttonOk;
protected virtual void Build ()
{
global::Stetic.Gui.Initialize (this);
// Widget DesertPaintLab.NewProfileDialog
this.Name = "DesertPaintLab.NewProfileDialog";
this.Title = "New Profile";
this.WindowPosition = ((global::Gtk.WindowPosition)(4));
this.BorderWidth = ((uint)(5));
// Internal child DesertPaintLab.NewProfileDialog.VBox
global::Gtk.VBox w1 = this.VBox;
w1.Name = "dialog1_VBox";
w1.Spacing = 10;
w1.BorderWidth = ((uint)(9));
// Container child dialog1_VBox.Gtk.Box+BoxChild
this.label1 = new global::Gtk.Label ();
this.label1.Name = "label1";
this.label1.LabelProp = "Name your new profile:";
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;
// Container child dialog1_VBox.Gtk.Box+BoxChild
this.profileNameEntry = new global::Gtk.Entry ();
this.profileNameEntry.CanFocus = true;
this.profileNameEntry.Name = "profileNameEntry";
this.profileNameEntry.IsEditable = true;
this.profileNameEntry.InvisibleChar = '●';
w1.Add (this.profileNameEntry);
global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(w1 [this.profileNameEntry]));
w3.Position = 1;
w3.Expand = false;
w3.Fill = false;
// Internal child DesertPaintLab.NewProfileDialog.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 = 318;
this.DefaultHeight = 177;
this.Show ();
}
}
}
|