Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MonoDevelop.Ide.Projects.GtkProjectFolderPreviewWidget.cs « Gui « MonoDevelop.Ide « core « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b03cb6f0086e0aea33b8e5210586b18eed34f6cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// This file has been generated by the GUI designer. Do not modify.
namespace MonoDevelop.Ide.Projects
{
	internal partial class GtkProjectFolderPreviewWidget
	{
		private global::Gtk.VBox mainVBox;
		
		private global::Gtk.HBox previewLabelHBox;
		
		private global::Gtk.Label previewLabel;
		
		private global::Gtk.Label previewPaddingLabel;
		
		private global::Gtk.ScrolledWindow GtkScrolledWindow;
		
		private global::Gtk.TreeView folderTreeView;

		protected virtual void Build ()
		{
			MonoDevelop.Components.Gui.Initialize (this);
			// Widget MonoDevelop.Ide.Projects.GtkProjectFolderPreviewWidget
			MonoDevelop.Components.BinContainer.Attach (this);
			this.Name = "MonoDevelop.Ide.Projects.GtkProjectFolderPreviewWidget";
			// Container child MonoDevelop.Ide.Projects.GtkProjectFolderPreviewWidget.Gtk.Container+ContainerChild
			this.mainVBox = new global::Gtk.VBox ();
			this.mainVBox.Name = "mainVBox";
			this.mainVBox.Spacing = 6;
			// Container child mainVBox.Gtk.Box+BoxChild
			this.previewLabelHBox = new global::Gtk.HBox ();
			this.previewLabelHBox.Name = "previewLabelHBox";
			this.previewLabelHBox.Spacing = 6;
			// Container child previewLabelHBox.Gtk.Box+BoxChild
			this.previewLabel = new global::Gtk.Label ();
			this.previewLabel.Name = "previewLabel";
			this.previewLabel.LabelProp = "<span weight='bold' foreground='#555555'>PREVIEW</span>";
			this.previewLabel.UseMarkup = true;
			this.previewLabelHBox.Add (this.previewLabel);
			global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.previewLabelHBox [this.previewLabel]));
			w1.Position = 0;
			w1.Expand = false;
			w1.Fill = false;
			// Container child previewLabelHBox.Gtk.Box+BoxChild
			this.previewPaddingLabel = new global::Gtk.Label ();
			this.previewPaddingLabel.Name = "previewPaddingLabel";
			this.previewLabelHBox.Add (this.previewPaddingLabel);
			global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.previewLabelHBox [this.previewPaddingLabel]));
			w2.Position = 1;
			w2.Expand = false;
			w2.Fill = false;
			this.mainVBox.Add (this.previewLabelHBox);
			global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.mainVBox [this.previewLabelHBox]));
			w3.Position = 0;
			w3.Expand = false;
			w3.Fill = false;
			// Container child mainVBox.Gtk.Box+BoxChild
			this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
			this.GtkScrolledWindow.Name = "GtkScrolledWindow";
			this.GtkScrolledWindow.CanFocus = false;
			this.GtkScrolledWindow.HscrollbarPolicy = ((global::Gtk.PolicyType)(2));
			// Container child GtkScrolledWindow.Gtk.Container+ContainerChild
			this.folderTreeView = new global::Gtk.TreeView ();
			this.folderTreeView.Name = "folderTreeView";
			this.folderTreeView.EnableSearch = false;
			this.folderTreeView.HeadersVisible = false;
			this.GtkScrolledWindow.Add (this.folderTreeView);
			this.mainVBox.Add (this.GtkScrolledWindow);
			global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.mainVBox [this.GtkScrolledWindow]));
			w5.Position = 1;
			this.Add (this.mainVBox);
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.Hide ();
		}
	}
}