Files @ 41381c24d35a
Branch filter:

Location: ATITD-Tools/Desert-Paint-Lab/gtk-gui/generated.cs - annotation

Jason Maltzen
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
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 Stetic
{
	internal class Gui
	{
		private static bool initialized;

		internal static void Initialize (Gtk.Widget iconRenderer)
		{
			if ((Stetic.Gui.initialized == false)) {
				Stetic.Gui.initialized = true;
			}
		}
	}

	internal class BinContainer
	{
		private Gtk.Widget child;
		
		private Gtk.UIManager uimanager;

		public static BinContainer Attach (Gtk.Bin bin)
		{
			BinContainer bc = new BinContainer ();
			bin.SizeRequested += new Gtk.SizeRequestedHandler (bc.OnSizeRequested);
			bin.SizeAllocated += new Gtk.SizeAllocatedHandler (bc.OnSizeAllocated);
			bin.Added += new Gtk.AddedHandler (bc.OnAdded);
			return bc;
		}

		private void OnSizeRequested (object sender, Gtk.SizeRequestedArgs args)
		{
			if ((this.child != null)) {
				args.Requisition = this.child.SizeRequest ();
			}
		}

		private void OnSizeAllocated (object sender, Gtk.SizeAllocatedArgs args)
		{
			if ((this.child != null)) {
				this.child.Allocation = args.Allocation;
			}
		}

		private void OnAdded (object sender, Gtk.AddedArgs args)
		{
			this.child = args.Widget;
		}

		public void SetUiManager (Gtk.UIManager uim)
		{
			this.uimanager = uim;
			this.child.Realized += new System.EventHandler (this.OnRealized);
		}

		private void OnRealized (object sender, System.EventArgs args)
		{
			if ((this.uimanager != null)) {
				Gtk.Widget w;
				w = this.child.Toplevel;
				if (((w != null)
				    && typeof(Gtk.Window).IsInstanceOfType (w))) {
					((Gtk.Window)(w)).AddAccelGroup (this.uimanager.AccelGroup);
					this.uimanager = null;
				}
			}
		}
	}

	internal class IconLoader
	{
		public static Gdk.Pixbuf LoadIcon (Gtk.Widget widget, string name, Gtk.IconSize size)
		{
			Gdk.Pixbuf res = widget.RenderIcon (name, size, null);
			if ((res != null)) {
				return res;
			} else {
				int sz;
				int sy;
				global::Gtk.Icon.SizeLookup (size, out sz, out sy);
				try {
					return Gtk.IconTheme.Default.LoadIcon (name, sz, 0);
				} catch (System.Exception) {
					if ((name != "gtk-missing-image")) {
						return Stetic.IconLoader.LoadIcon (widget, "gtk-missing-image", size);
					} else {
						Gdk.Pixmap pmap = new Gdk.Pixmap (Gdk.Screen.Default.RootWindow, sz, sz);
						Gdk.GC gc = new Gdk.GC (pmap);
						gc.RgbFgColor = new Gdk.Color (255, 255, 255);
						pmap.DrawRectangle (gc, true, 0, 0, sz, sz);
						gc.RgbFgColor = new Gdk.Color (0, 0, 0);
						pmap.DrawRectangle (gc, false, 0, 0, (sz - 1), (sz - 1));
						gc.SetLineAttributes (3, Gdk.LineStyle.Solid, Gdk.CapStyle.Round, Gdk.JoinStyle.Round);
						gc.RgbFgColor = new Gdk.Color (255, 0, 0);
						pmap.DrawLine (gc, (sz / 4), (sz / 4), ((sz - 1)
						- (sz / 4)), ((sz - 1)
						- (sz / 4)));
						pmap.DrawLine (gc, ((sz - 1)
						- (sz / 4)), (sz / 4), (sz / 4), ((sz - 1)
						- (sz / 4)));
						return Gdk.Pixbuf.FromDrawable (pmap, pmap.Colormap, 0, 0, 0, 0, sz, sz);
					}
				}
			}
		}
	}

	internal class ActionGroups
	{
		public static Gtk.ActionGroup GetActionGroup (System.Type type)
		{
			return Stetic.ActionGroups.GetActionGroup (type.FullName);
		}

		public static Gtk.ActionGroup GetActionGroup (string name)
		{
			return null;
		}
	}
}