~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/mono-addins/Mono.Addins.Gui/gtk-gui/Mono.Addins.Gui.ProgressDialog.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
// This file has been generated by the GUI designer. Do not modify.
 
3
namespace Mono.Addins.Gui
 
4
{
 
5
        internal partial class ProgressDialog
 
6
        {
 
7
                private global::Gtk.VBox vbox2;
 
8
                private global::Gtk.Label labelMessage;
 
9
                private global::Gtk.ProgressBar progressbar;
 
10
                private global::Gtk.Expander expander1;
 
11
                private global::Gtk.ScrolledWindow GtkScrolledWindow;
 
12
                private global::Gtk.TextView textview;
 
13
                private global::Gtk.Label GtkLabel1;
 
14
                private global::Gtk.Button buttonCancel;
 
15
 
 
16
                protected virtual void Build ()
 
17
                {
 
18
                        global::Stetic.Gui.Initialize (this);
 
19
                        // Widget Mono.Addins.Gui.ProgressDialog
 
20
                        this.Name = "Mono.Addins.Gui.ProgressDialog";
 
21
                        this.Title = global::Mono.Unix.Catalog.GetString ("Progress");
 
22
                        this.WindowPosition = ((global::Gtk.WindowPosition)(4));
 
23
                        this.Modal = true;
 
24
                        // Internal child Mono.Addins.Gui.ProgressDialog.VBox
 
25
                        global::Gtk.VBox w1 = this.VBox;
 
26
                        w1.Name = "dialog1_VBox";
 
27
                        w1.BorderWidth = ((uint)(2));
 
28
                        // Container child dialog1_VBox.Gtk.Box+BoxChild
 
29
                        this.vbox2 = new global::Gtk.VBox ();
 
30
                        this.vbox2.Name = "vbox2";
 
31
                        this.vbox2.Spacing = 6;
 
32
                        this.vbox2.BorderWidth = ((uint)(9));
 
33
                        // Container child vbox2.Gtk.Box+BoxChild
 
34
                        this.labelMessage = new global::Gtk.Label ();
 
35
                        this.labelMessage.Name = "labelMessage";
 
36
                        this.labelMessage.Xalign = 0F;
 
37
                        this.vbox2.Add (this.labelMessage);
 
38
                        global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.labelMessage]));
 
39
                        w2.Position = 0;
 
40
                        w2.Expand = false;
 
41
                        w2.Fill = false;
 
42
                        // Container child vbox2.Gtk.Box+BoxChild
 
43
                        this.progressbar = new global::Gtk.ProgressBar ();
 
44
                        this.progressbar.Name = "progressbar";
 
45
                        this.vbox2.Add (this.progressbar);
 
46
                        global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.progressbar]));
 
47
                        w3.Position = 1;
 
48
                        w3.Expand = false;
 
49
                        w3.Fill = false;
 
50
                        // Container child vbox2.Gtk.Box+BoxChild
 
51
                        this.expander1 = new global::Gtk.Expander (null);
 
52
                        this.expander1.CanFocus = true;
 
53
                        this.expander1.Name = "expander1";
 
54
                        // Container child expander1.Gtk.Container+ContainerChild
 
55
                        this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
 
56
                        this.GtkScrolledWindow.Name = "GtkScrolledWindow";
 
57
                        this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
 
58
                        // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
 
59
                        this.textview = new global::Gtk.TextView ();
 
60
                        this.textview.CanFocus = true;
 
61
                        this.textview.Name = "textview";
 
62
                        this.GtkScrolledWindow.Add (this.textview);
 
63
                        this.expander1.Add (this.GtkScrolledWindow);
 
64
                        this.GtkLabel1 = new global::Gtk.Label ();
 
65
                        this.GtkLabel1.Name = "GtkLabel1";
 
66
                        this.GtkLabel1.LabelProp = global::Mono.Unix.Catalog.GetString ("Details");
 
67
                        this.GtkLabel1.UseUnderline = true;
 
68
                        this.expander1.LabelWidget = this.GtkLabel1;
 
69
                        this.vbox2.Add (this.expander1);
 
70
                        global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.expander1]));
 
71
                        w6.Position = 2;
 
72
                        w1.Add (this.vbox2);
 
73
                        global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(w1 [this.vbox2]));
 
74
                        w7.Position = 0;
 
75
                        // Internal child Mono.Addins.Gui.ProgressDialog.ActionArea
 
76
                        global::Gtk.HButtonBox w8 = this.ActionArea;
 
77
                        w8.Name = "dialog1_ActionArea";
 
78
                        w8.Spacing = 6;
 
79
                        w8.BorderWidth = ((uint)(5));
 
80
                        w8.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
 
81
                        // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
 
82
                        this.buttonCancel = new global::Gtk.Button ();
 
83
                        this.buttonCancel.CanDefault = true;
 
84
                        this.buttonCancel.CanFocus = true;
 
85
                        this.buttonCancel.Name = "buttonCancel";
 
86
                        this.buttonCancel.UseStock = true;
 
87
                        this.buttonCancel.UseUnderline = true;
 
88
                        this.buttonCancel.Label = "gtk-cancel";
 
89
                        this.AddActionWidget (this.buttonCancel, -6);
 
90
                        global::Gtk.ButtonBox.ButtonBoxChild w9 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w8 [this.buttonCancel]));
 
91
                        w9.Expand = false;
 
92
                        w9.Fill = false;
 
93
                        if ((this.Child != null)) {
 
94
                                this.Child.ShowAll ();
 
95
                        }
 
96
                        this.DefaultWidth = 513;
 
97
                        this.DefaultHeight = 156;
 
98
                        this.Hide ();
 
99
                        this.buttonCancel.Clicked += new global::System.EventHandler (this.OnButtonCancelClicked);
 
100
                }
 
101
        }
 
102
}