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

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Refactoring/gtk-gui/MonoDevelop.Refactoring.EncapsulateFieldDialog.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 MonoDevelop.Refactoring
 
4
{
 
5
        public partial class EncapsulateFieldDialog
 
6
        {
 
7
                private global::Gtk.VBox vbox;
 
8
                private global::Gtk.ScrolledWindow GtkScrolledWindow;
 
9
                private global::Gtk.TreeView treeview;
 
10
                private global::Gtk.HBox hbox1;
 
11
                private global::Gtk.Button buttonSelectAll;
 
12
                private global::Gtk.Button buttonUnselectAll;
 
13
                private global::Gtk.HSeparator hseparator2;
 
14
                private global::Gtk.Label labelUpdateRefs;
 
15
                private global::Gtk.HBox hboxUpdateRefs;
 
16
                private global::Gtk.Label labelSpacer;
 
17
                private global::Gtk.VBox vboxUpdateChoices;
 
18
                private global::Gtk.RadioButton radioUpdateExternal;
 
19
                private global::Gtk.RadioButton radioUpdateAll;
 
20
                private global::Gtk.HBox hbox2;
 
21
                private global::Gtk.Image imageError;
 
22
                private global::Gtk.Label labelError;
 
23
                private global::Gtk.Button buttonCancel;
 
24
                private global::Gtk.Button buttonOk;
 
25
 
 
26
                protected virtual void Build ()
 
27
                {
 
28
                        global::Stetic.Gui.Initialize (this);
 
29
                        // Widget MonoDevelop.Refactoring.EncapsulateFieldDialog
 
30
                        this.Name = "MonoDevelop.Refactoring.EncapsulateFieldDialog";
 
31
                        this.Title = global::Mono.Unix.Catalog.GetString ("Encapsulate Fields");
 
32
                        this.WindowPosition = ((global::Gtk.WindowPosition)(4));
 
33
                        this.BorderWidth = ((uint)(6));
 
34
                        // Internal child MonoDevelop.Refactoring.EncapsulateFieldDialog.VBox
 
35
                        global::Gtk.VBox w1 = this.VBox;
 
36
                        w1.Name = "dialog1_VBox";
 
37
                        w1.Spacing = 6;
 
38
                        w1.BorderWidth = ((uint)(2));
 
39
                        // Container child dialog1_VBox.Gtk.Box+BoxChild
 
40
                        this.vbox = new global::Gtk.VBox ();
 
41
                        this.vbox.Name = "vbox";
 
42
                        this.vbox.Spacing = 6;
 
43
                        this.vbox.BorderWidth = ((uint)(6));
 
44
                        // Container child vbox.Gtk.Box+BoxChild
 
45
                        this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
 
46
                        this.GtkScrolledWindow.Name = "GtkScrolledWindow";
 
47
                        this.GtkScrolledWindow.HscrollbarPolicy = ((global::Gtk.PolicyType)(2));
 
48
                        this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
 
49
                        // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
 
50
                        this.treeview = new global::Gtk.TreeView ();
 
51
                        this.treeview.CanFocus = true;
 
52
                        this.treeview.Name = "treeview";
 
53
                        this.GtkScrolledWindow.Add (this.treeview);
 
54
                        this.vbox.Add (this.GtkScrolledWindow);
 
55
                        global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(this.vbox [this.GtkScrolledWindow]));
 
56
                        w3.Position = 0;
 
57
                        // Container child vbox.Gtk.Box+BoxChild
 
58
                        this.hbox1 = new global::Gtk.HBox ();
 
59
                        this.hbox1.Name = "hbox1";
 
60
                        this.hbox1.Spacing = 6;
 
61
                        // Container child hbox1.Gtk.Box+BoxChild
 
62
                        this.buttonSelectAll = new global::Gtk.Button ();
 
63
                        this.buttonSelectAll.CanFocus = true;
 
64
                        this.buttonSelectAll.Name = "buttonSelectAll";
 
65
                        this.buttonSelectAll.UseUnderline = true;
 
66
                        this.buttonSelectAll.Label = global::Mono.Unix.Catalog.GetString ("Select All");
 
67
                        this.hbox1.Add (this.buttonSelectAll);
 
68
                        global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.buttonSelectAll]));
 
69
                        w4.Position = 0;
 
70
                        w4.Expand = false;
 
71
                        w4.Fill = false;
 
72
                        // Container child hbox1.Gtk.Box+BoxChild
 
73
                        this.buttonUnselectAll = new global::Gtk.Button ();
 
74
                        this.buttonUnselectAll.CanFocus = true;
 
75
                        this.buttonUnselectAll.Name = "buttonUnselectAll";
 
76
                        this.buttonUnselectAll.UseUnderline = true;
 
77
                        this.buttonUnselectAll.Label = global::Mono.Unix.Catalog.GetString ("Unselect All");
 
78
                        this.hbox1.Add (this.buttonUnselectAll);
 
79
                        global::Gtk.Box.BoxChild w5 = ((global::Gtk.Box.BoxChild)(this.hbox1 [this.buttonUnselectAll]));
 
80
                        w5.Position = 1;
 
81
                        w5.Expand = false;
 
82
                        w5.Fill = false;
 
83
                        this.vbox.Add (this.hbox1);
 
84
                        global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox [this.hbox1]));
 
85
                        w6.Position = 1;
 
86
                        w6.Expand = false;
 
87
                        w6.Fill = false;
 
88
                        // Container child vbox.Gtk.Box+BoxChild
 
89
                        this.hseparator2 = new global::Gtk.HSeparator ();
 
90
                        this.hseparator2.Name = "hseparator2";
 
91
                        this.vbox.Add (this.hseparator2);
 
92
                        global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox [this.hseparator2]));
 
93
                        w7.Position = 2;
 
94
                        w7.Expand = false;
 
95
                        w7.Fill = false;
 
96
                        // Container child vbox.Gtk.Box+BoxChild
 
97
                        this.labelUpdateRefs = new global::Gtk.Label ();
 
98
                        this.labelUpdateRefs.Name = "labelUpdateRefs";
 
99
                        this.labelUpdateRefs.Xalign = 0F;
 
100
                        this.labelUpdateRefs.LabelProp = global::Mono.Unix.Catalog.GetString ("_Update references:");
 
101
                        this.labelUpdateRefs.UseUnderline = true;
 
102
                        this.vbox.Add (this.labelUpdateRefs);
 
103
                        global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox [this.labelUpdateRefs]));
 
104
                        w8.Position = 3;
 
105
                        w8.Expand = false;
 
106
                        w8.Fill = false;
 
107
                        // Container child vbox.Gtk.Box+BoxChild
 
108
                        this.hboxUpdateRefs = new global::Gtk.HBox ();
 
109
                        this.hboxUpdateRefs.Name = "hboxUpdateRefs";
 
110
                        this.hboxUpdateRefs.Spacing = 6;
 
111
                        // Container child hboxUpdateRefs.Gtk.Box+BoxChild
 
112
                        this.labelSpacer = new global::Gtk.Label ();
 
113
                        this.labelSpacer.Name = "labelSpacer";
 
114
                        this.labelSpacer.Xalign = 0F;
 
115
                        this.hboxUpdateRefs.Add (this.labelSpacer);
 
116
                        global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.hboxUpdateRefs [this.labelSpacer]));
 
117
                        w9.Position = 0;
 
118
                        w9.Expand = false;
 
119
                        w9.Fill = false;
 
120
                        // Container child hboxUpdateRefs.Gtk.Box+BoxChild
 
121
                        this.vboxUpdateChoices = new global::Gtk.VBox ();
 
122
                        this.vboxUpdateChoices.Name = "vboxUpdateChoices";
 
123
                        this.vboxUpdateChoices.Spacing = 6;
 
124
                        // Container child vboxUpdateChoices.Gtk.Box+BoxChild
 
125
                        this.radioUpdateExternal = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString("_External"));
 
126
                        this.radioUpdateExternal.CanFocus = true;
 
127
                        this.radioUpdateExternal.Name = "radioUpdateExternal";
 
128
                        this.radioUpdateExternal.Active = true;
 
129
                        this.radioUpdateExternal.DrawIndicator = true;
 
130
                        this.radioUpdateExternal.UseUnderline = true;
 
131
                        this.radioUpdateExternal.Group = new global::GLib.SList (global::System.IntPtr.Zero);
 
132
                        this.vboxUpdateChoices.Add (this.radioUpdateExternal);
 
133
                        global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.vboxUpdateChoices [this.radioUpdateExternal]));
 
134
                        w10.Position = 0;
 
135
                        w10.Expand = false;
 
136
                        w10.Fill = false;
 
137
                        // Container child vboxUpdateChoices.Gtk.Box+BoxChild
 
138
                        this.radioUpdateAll = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString("_All"));
 
139
                        this.radioUpdateAll.CanFocus = true;
 
140
                        this.radioUpdateAll.Name = "radioUpdateAll";
 
141
                        this.radioUpdateAll.DrawIndicator = true;
 
142
                        this.radioUpdateAll.UseUnderline = true;
 
143
                        this.radioUpdateAll.Group = this.radioUpdateExternal.Group;
 
144
                        this.vboxUpdateChoices.Add (this.radioUpdateAll);
 
145
                        global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.vboxUpdateChoices [this.radioUpdateAll]));
 
146
                        w11.Position = 1;
 
147
                        w11.Expand = false;
 
148
                        w11.Fill = false;
 
149
                        this.hboxUpdateRefs.Add (this.vboxUpdateChoices);
 
150
                        global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.hboxUpdateRefs [this.vboxUpdateChoices]));
 
151
                        w12.Position = 1;
 
152
                        this.vbox.Add (this.hboxUpdateRefs);
 
153
                        global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox [this.hboxUpdateRefs]));
 
154
                        w13.Position = 4;
 
155
                        w13.Expand = false;
 
156
                        w13.Fill = false;
 
157
                        // Container child vbox.Gtk.Box+BoxChild
 
158
                        this.hbox2 = new global::Gtk.HBox ();
 
159
                        this.hbox2.Name = "hbox2";
 
160
                        this.hbox2.Spacing = 6;
 
161
                        // Container child hbox2.Gtk.Box+BoxChild
 
162
                        this.imageError = new global::Gtk.Image ();
 
163
                        this.imageError.Name = "imageError";
 
164
                        this.hbox2.Add (this.imageError);
 
165
                        global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.imageError]));
 
166
                        w14.Position = 0;
 
167
                        w14.Expand = false;
 
168
                        w14.Fill = false;
 
169
                        // Container child hbox2.Gtk.Box+BoxChild
 
170
                        this.labelError = new global::Gtk.Label ();
 
171
                        this.labelError.Name = "labelError";
 
172
                        this.hbox2.Add (this.labelError);
 
173
                        global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.hbox2 [this.labelError]));
 
174
                        w15.Position = 1;
 
175
                        w15.Expand = false;
 
176
                        w15.Fill = false;
 
177
                        this.vbox.Add (this.hbox2);
 
178
                        global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox [this.hbox2]));
 
179
                        w16.Position = 5;
 
180
                        w16.Expand = false;
 
181
                        w16.Fill = false;
 
182
                        w1.Add (this.vbox);
 
183
                        global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(w1 [this.vbox]));
 
184
                        w17.Position = 0;
 
185
                        // Internal child MonoDevelop.Refactoring.EncapsulateFieldDialog.ActionArea
 
186
                        global::Gtk.HButtonBox w18 = this.ActionArea;
 
187
                        w18.Name = "dialog1_ActionArea";
 
188
                        w18.Spacing = 6;
 
189
                        w18.BorderWidth = ((uint)(5));
 
190
                        w18.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
 
191
                        // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
 
192
                        this.buttonCancel = new global::Gtk.Button ();
 
193
                        this.buttonCancel.CanDefault = true;
 
194
                        this.buttonCancel.CanFocus = true;
 
195
                        this.buttonCancel.Name = "buttonCancel";
 
196
                        this.buttonCancel.UseStock = true;
 
197
                        this.buttonCancel.UseUnderline = true;
 
198
                        this.buttonCancel.Label = "gtk-cancel";
 
199
                        this.AddActionWidget (this.buttonCancel, -6);
 
200
                        global::Gtk.ButtonBox.ButtonBoxChild w19 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w18 [this.buttonCancel]));
 
201
                        w19.Expand = false;
 
202
                        w19.Fill = false;
 
203
                        // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
 
204
                        this.buttonOk = new global::Gtk.Button ();
 
205
                        this.buttonOk.CanDefault = true;
 
206
                        this.buttonOk.CanFocus = true;
 
207
                        this.buttonOk.Name = "buttonOk";
 
208
                        this.buttonOk.UseStock = true;
 
209
                        this.buttonOk.UseUnderline = true;
 
210
                        this.buttonOk.Label = "gtk-ok";
 
211
                        this.AddActionWidget (this.buttonOk, -5);
 
212
                        global::Gtk.ButtonBox.ButtonBoxChild w20 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w18 [this.buttonOk]));
 
213
                        w20.Position = 1;
 
214
                        w20.Expand = false;
 
215
                        w20.Fill = false;
 
216
                        if ((this.Child != null)) {
 
217
                                this.Child.ShowAll ();
 
218
                        }
 
219
                        this.DefaultWidth = 465;
 
220
                        this.DefaultHeight = 427;
 
221
                        this.Hide ();
 
222
                }
 
223
        }
 
224
}