Files
@ 41381c24d35a
Branch filter:
Location: ATITD-Tools/Desert-Paint-Lab/gtk-gui/DesertPaintLab.FirstRunDialog.cs - annotation
41381c24d35a
3.2 KiB
text/x-csharp
Now supports all the interface sizes with a setting to select the current interface size. The initial screen size check now displays the detected resolution as a hint. The screen size check / interface size settings can now be updated after launch through File->Preferences. Capturing a reaction now includes a progress bar, and runs in a separate thread instead of silently blocking. The reaction status window under 'Help' now has options to disable ingredients to remove them from the list. NOTE: this also disables/enables those ingredients in the recipe generator as well. The list also updates as new reactions are recorded instead of requiring that it be closed and re-opened to update.
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 FirstRunDialog
{
private global::Gtk.Label label2;
private global::Gtk.Button buttonCancel;
private global::Gtk.Button buttonImport;
private global::Gtk.Button buttonNew;
protected virtual void Build ()
{
global::Stetic.Gui.Initialize (this);
// Widget DesertPaintLab.FirstRunDialog
this.Name = "DesertPaintLab.FirstRunDialog";
this.Title = "Set Up Profile";
this.WindowPosition = ((global::Gtk.WindowPosition)(4));
this.Modal = true;
this.AllowShrink = true;
// Internal child DesertPaintLab.FirstRunDialog.VBox
global::Gtk.VBox w1 = this.VBox;
w1.Name = "dialog1_VBox";
w1.BorderWidth = ((uint)(2));
// Container child dialog1_VBox.Gtk.Box+BoxChild
this.label2 = new global::Gtk.Label ();
this.label2.Name = "label2";
this.label2.LabelProp = "Since this is your first time using this program, you need a new profile.\n\nYou can either import an existing PracticalPaint reactions.txt file, or you can start a new profile from scratch.";
this.label2.Wrap = true;
w1.Add (this.label2);
global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(w1 [this.label2]));
w2.Position = 0;
w2.Padding = ((uint)(5));
// Internal child DesertPaintLab.FirstRunDialog.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.buttonImport = new global::Gtk.Button ();
this.buttonImport.CanDefault = true;
this.buttonImport.CanFocus = true;
this.buttonImport.Name = "buttonImport";
this.buttonImport.UseUnderline = true;
this.buttonImport.Label = "Import reactions.txt";
this.AddActionWidget (this.buttonImport, -3);
global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonImport]));
w5.Position = 1;
w5.Expand = false;
w5.Fill = false;
// Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
this.buttonNew = new global::Gtk.Button ();
this.buttonNew.CanFocus = true;
this.buttonNew.Name = "buttonNew";
this.buttonNew.UseUnderline = true;
this.buttonNew.Label = "New Profile";
this.AddActionWidget (this.buttonNew, -5);
global::Gtk.ButtonBox.ButtonBoxChild w6 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w3 [this.buttonNew]));
w6.Position = 2;
w6.Expand = false;
w6.Fill = false;
if ((this.Child != null)) {
this.Child.ShowAll ();
}
this.DefaultWidth = 416;
this.DefaultHeight = 189;
this.Show ();
}
}
}
|