~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Autotools/gtk-gui/MonoDevelop.Autotools.GenerateMakefilesDialog.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-07-05 13:00:05 UTC
  • mfrom: (1.2.8 upstream) (1.3.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100705130005-d6hp4k5gcn1xkj8c
Tags: 2.4+dfsg-1ubuntu1
* debian/patches/remove_support_for_moonlight.patch,
  debian/patches/dont_add_moonlight_to_core_addins.patch,
  debian/control:
  + Enable support for Moonlight
* debian/rules:
  + Ensure Moonlight addin isn't shipped in main MonoDevelop package by
    mistake

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// ------------------------------------------------------------------------------
2
 
//  <autogenerated>
3
 
//      This code was generated by a tool.
4
 
//      
5
 
// 
6
 
//      Changes to this file may cause incorrect behavior and will be lost if 
7
 
//      the code is regenerated.
8
 
//  </autogenerated>
9
 
// ------------------------------------------------------------------------------
10
 
 
11
 
namespace MonoDevelop.Autotools {
12
 
    
13
 
    public partial class GenerateMakefilesDialog {
14
 
        
15
 
        private Gtk.VBox vbox2;
16
 
        
17
 
        private Gtk.Label label2;
18
 
        
19
 
        private Gtk.VBox vbox3;
20
 
        
21
 
        private Gtk.RadioButton rbSimple;
22
 
        
23
 
        private Gtk.Label label4;
24
 
        
25
 
        private Gtk.RadioButton rbAutotools;
26
 
        
27
 
        private Gtk.Label label5;
28
 
        
29
 
        private Gtk.HSeparator hseparator1;
30
 
        
31
 
        private Gtk.Label label3;
32
 
        
33
 
        private Gtk.HBox hbox1;
34
 
        
35
 
        private Gtk.Label label1;
36
 
        
37
 
        private Gtk.ComboBox comboConfigs;
38
 
        
39
 
        private Gtk.Button buttonCancel;
40
 
        
41
 
        private Gtk.Button buttonOk;
42
 
        
43
 
        protected virtual void Build() {
44
 
            Stetic.Gui.Initialize(this);
45
 
            // Widget MonoDevelop.Autotools.GenerateMakefilesDialog
46
 
            this.Name = "MonoDevelop.Autotools.GenerateMakefilesDialog";
47
 
            this.Title = Mono.Unix.Catalog.GetString("Generate Makefiles");
48
 
            this.WindowPosition = ((Gtk.WindowPosition)(4));
49
 
            this.Resizable = false;
50
 
            this.AllowGrow = false;
51
 
            // Internal child MonoDevelop.Autotools.GenerateMakefilesDialog.VBox
52
 
            Gtk.VBox w1 = this.VBox;
53
 
            w1.Name = "dialog1_VBox";
54
 
            w1.BorderWidth = ((uint)(2));
55
 
            // Container child dialog1_VBox.Gtk.Box+BoxChild
56
 
            this.vbox2 = new Gtk.VBox();
57
 
            this.vbox2.Name = "vbox2";
58
 
            this.vbox2.Spacing = 12;
59
 
            this.vbox2.BorderWidth = ((uint)(12));
60
 
            // Container child vbox2.Gtk.Box+BoxChild
61
 
            this.label2 = new Gtk.Label();
62
 
            this.label2.Name = "label2";
63
 
            this.label2.Xalign = 0F;
64
 
            this.label2.LabelProp = Mono.Unix.Catalog.GetString("Select the kind of Makefile you want to generate:");
65
 
            this.vbox2.Add(this.label2);
66
 
            Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.vbox2[this.label2]));
67
 
            w2.Position = 0;
68
 
            w2.Expand = false;
69
 
            w2.Fill = false;
70
 
            // Container child vbox2.Gtk.Box+BoxChild
71
 
            this.vbox3 = new Gtk.VBox();
72
 
            this.vbox3.Name = "vbox3";
73
 
            this.vbox3.Spacing = 6;
74
 
            // Container child vbox3.Gtk.Box+BoxChild
75
 
            this.rbSimple = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("Simple"));
76
 
            this.rbSimple.CanFocus = true;
77
 
            this.rbSimple.Name = "rbSimple";
78
 
            this.rbSimple.DrawIndicator = true;
79
 
            this.rbSimple.UseUnderline = true;
80
 
            this.rbSimple.Group = new GLib.SList(System.IntPtr.Zero);
81
 
            this.rbSimple.Remove(this.rbSimple.Child);
82
 
            // Container child rbSimple.Gtk.Container+ContainerChild
83
 
            this.label4 = new Gtk.Label();
84
 
            this.label4.WidthRequest = 550;
85
 
            this.label4.Name = "label4";
86
 
            this.label4.LabelProp = Mono.Unix.Catalog.GetString("<b>Simple Makefile</b>\nGenerates set of Makefiles with the most common targets, and a configuration script that does a basic check of package dependencies.");
87
 
            this.label4.UseMarkup = true;
88
 
            this.label4.Wrap = true;
89
 
            this.rbSimple.Add(this.label4);
90
 
            this.vbox3.Add(this.rbSimple);
91
 
            Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(this.vbox3[this.rbSimple]));
92
 
            w4.Position = 0;
93
 
            w4.Expand = false;
94
 
            w4.Fill = false;
95
 
            // Container child vbox3.Gtk.Box+BoxChild
96
 
            this.rbAutotools = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("Autotools based"));
97
 
            this.rbAutotools.CanFocus = true;
98
 
            this.rbAutotools.Name = "rbAutotools";
99
 
            this.rbAutotools.DrawIndicator = true;
100
 
            this.rbAutotools.UseUnderline = true;
101
 
            this.rbAutotools.Group = this.rbSimple.Group;
102
 
            this.rbAutotools.Remove(this.rbAutotools.Child);
103
 
            // Container child rbAutotools.Gtk.Container+ContainerChild
104
 
            this.label5 = new Gtk.Label();
105
 
            this.label5.WidthRequest = 550;
106
 
            this.label5.Name = "label5";
107
 
            this.label5.LabelProp = Mono.Unix.Catalog.GetString("<b>Autotools based Makefile</b>\nGenerates a Makefile structure based on Autotools, with the standard targets and configuration scripts.");
108
 
            this.label5.UseMarkup = true;
109
 
            this.label5.Wrap = true;
110
 
            this.rbAutotools.Add(this.label5);
111
 
            this.vbox3.Add(this.rbAutotools);
112
 
            Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.vbox3[this.rbAutotools]));
113
 
            w6.Position = 1;
114
 
            w6.Expand = false;
115
 
            w6.Fill = false;
116
 
            this.vbox2.Add(this.vbox3);
117
 
            Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(this.vbox2[this.vbox3]));
118
 
            w7.Position = 1;
119
 
            w7.Expand = false;
120
 
            w7.Fill = false;
121
 
            // Container child vbox2.Gtk.Box+BoxChild
122
 
            this.hseparator1 = new Gtk.HSeparator();
123
 
            this.hseparator1.Name = "hseparator1";
124
 
            this.vbox2.Add(this.hseparator1);
125
 
            Gtk.Box.BoxChild w8 = ((Gtk.Box.BoxChild)(this.vbox2[this.hseparator1]));
126
 
            w8.Position = 2;
127
 
            w8.Expand = false;
128
 
            w8.Fill = false;
129
 
            // Container child vbox2.Gtk.Box+BoxChild
130
 
            this.label3 = new Gtk.Label();
131
 
            this.label3.WidthRequest = 580;
132
 
            this.label3.Name = "label3";
133
 
            this.label3.Xalign = 0F;
134
 
            this.label3.LabelProp = Mono.Unix.Catalog.GetString("Select the configuration that the Makefile will build by default. Other configurations can be selected via the '--config' option of the generated configure script.");
135
 
            this.label3.Wrap = true;
136
 
            this.vbox2.Add(this.label3);
137
 
            Gtk.Box.BoxChild w9 = ((Gtk.Box.BoxChild)(this.vbox2[this.label3]));
138
 
            w9.Position = 3;
139
 
            w9.Expand = false;
140
 
            w9.Fill = false;
141
 
            // Container child vbox2.Gtk.Box+BoxChild
142
 
            this.hbox1 = new Gtk.HBox();
143
 
            this.hbox1.Name = "hbox1";
144
 
            this.hbox1.Spacing = 6;
145
 
            // Container child hbox1.Gtk.Box+BoxChild
146
 
            this.label1 = new Gtk.Label();
147
 
            this.label1.Name = "label1";
148
 
            this.label1.LabelProp = Mono.Unix.Catalog.GetString("Default configuration:");
149
 
            this.hbox1.Add(this.label1);
150
 
            Gtk.Box.BoxChild w10 = ((Gtk.Box.BoxChild)(this.hbox1[this.label1]));
151
 
            w10.Position = 0;
152
 
            w10.Expand = false;
153
 
            w10.Fill = false;
154
 
            // Container child hbox1.Gtk.Box+BoxChild
155
 
            this.comboConfigs = Gtk.ComboBox.NewText();
156
 
            this.comboConfigs.Name = "comboConfigs";
157
 
            this.hbox1.Add(this.comboConfigs);
158
 
            Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(this.hbox1[this.comboConfigs]));
159
 
            w11.Position = 1;
160
 
            w11.Expand = false;
161
 
            w11.Fill = false;
162
 
            this.vbox2.Add(this.hbox1);
163
 
            Gtk.Box.BoxChild w12 = ((Gtk.Box.BoxChild)(this.vbox2[this.hbox1]));
164
 
            w12.PackType = ((Gtk.PackType)(1));
165
 
            w12.Position = 4;
166
 
            w12.Expand = false;
167
 
            w12.Fill = false;
168
 
            w1.Add(this.vbox2);
169
 
            Gtk.Box.BoxChild w13 = ((Gtk.Box.BoxChild)(w1[this.vbox2]));
170
 
            w13.Position = 0;
171
 
            w13.Expand = false;
172
 
            w13.Fill = false;
173
 
            // Internal child MonoDevelop.Autotools.GenerateMakefilesDialog.ActionArea
174
 
            Gtk.HButtonBox w14 = this.ActionArea;
175
 
            w14.Name = "dialog1_ActionArea";
176
 
            w14.Spacing = 6;
177
 
            w14.BorderWidth = ((uint)(5));
178
 
            w14.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
179
 
            // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
180
 
            this.buttonCancel = new Gtk.Button();
181
 
            this.buttonCancel.CanDefault = true;
182
 
            this.buttonCancel.CanFocus = true;
183
 
            this.buttonCancel.Name = "buttonCancel";
184
 
            this.buttonCancel.UseStock = true;
185
 
            this.buttonCancel.UseUnderline = true;
186
 
            this.buttonCancel.Label = "gtk-cancel";
187
 
            this.AddActionWidget(this.buttonCancel, -6);
188
 
            Gtk.ButtonBox.ButtonBoxChild w15 = ((Gtk.ButtonBox.ButtonBoxChild)(w14[this.buttonCancel]));
189
 
            w15.Expand = false;
190
 
            w15.Fill = false;
191
 
            // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
192
 
            this.buttonOk = new Gtk.Button();
193
 
            this.buttonOk.CanDefault = true;
194
 
            this.buttonOk.CanFocus = true;
195
 
            this.buttonOk.Name = "buttonOk";
196
 
            this.buttonOk.UseStock = true;
197
 
            this.buttonOk.UseUnderline = true;
198
 
            this.buttonOk.Label = "gtk-ok";
199
 
            this.AddActionWidget(this.buttonOk, -5);
200
 
            Gtk.ButtonBox.ButtonBoxChild w16 = ((Gtk.ButtonBox.ButtonBoxChild)(w14[this.buttonOk]));
201
 
            w16.Position = 1;
202
 
            w16.Expand = false;
203
 
            w16.Fill = false;
204
 
            if ((this.Child != null)) {
205
 
                this.Child.ShowAll();
206
 
            }
207
 
            this.DefaultWidth = 614;
208
 
            this.DefaultHeight = 359;
209
 
            this.Show();
210
 
        }
211
 
    }
 
1
 
 
2
// This file has been generated by the GUI designer. Do not modify.
 
3
namespace MonoDevelop.Autotools
 
4
{
 
5
        public partial class GenerateMakefilesDialog
 
6
        {
 
7
                private global::Gtk.VBox vbox2;
 
8
 
 
9
                private global::Gtk.Label label2;
 
10
 
 
11
                private global::Gtk.VBox vbox3;
 
12
 
 
13
                private global::Gtk.RadioButton rbSimple;
 
14
 
 
15
                private global::Gtk.Label label4;
 
16
 
 
17
                private global::Gtk.RadioButton rbAutotools;
 
18
 
 
19
                private global::Gtk.Label label5;
 
20
 
 
21
                private global::Gtk.HSeparator hseparator1;
 
22
 
 
23
                private global::Gtk.Label label3;
 
24
 
 
25
                private global::Gtk.HBox hbox1;
 
26
 
 
27
                private global::Gtk.Label label1;
 
28
 
 
29
                private global::Gtk.ComboBox comboConfigs;
 
30
 
 
31
                private global::Gtk.Button buttonCancel;
 
32
 
 
33
                private global::Gtk.Button buttonOk;
 
34
 
 
35
                protected virtual void Build ()
 
36
                {
 
37
                        global::Stetic.Gui.Initialize (this);
 
38
                        // Widget MonoDevelop.Autotools.GenerateMakefilesDialog
 
39
                        this.Name = "MonoDevelop.Autotools.GenerateMakefilesDialog";
 
40
                        this.Title = global::Mono.Unix.Catalog.GetString ("Generate Makefiles");
 
41
                        this.WindowPosition = ((global::Gtk.WindowPosition)(4));
 
42
                        this.Resizable = false;
 
43
                        this.AllowGrow = false;
 
44
                        // Internal child MonoDevelop.Autotools.GenerateMakefilesDialog.VBox
 
45
                        global::Gtk.VBox w1 = this.VBox;
 
46
                        w1.Name = "dialog1_VBox";
 
47
                        w1.BorderWidth = ((uint)(2));
 
48
                        // Container child dialog1_VBox.Gtk.Box+BoxChild
 
49
                        this.vbox2 = new global::Gtk.VBox ();
 
50
                        this.vbox2.Name = "vbox2";
 
51
                        this.vbox2.Spacing = 12;
 
52
                        this.vbox2.BorderWidth = ((uint)(12));
 
53
                        // Container child vbox2.Gtk.Box+BoxChild
 
54
                        this.label2 = new global::Gtk.Label ();
 
55
                        this.label2.Name = "label2";
 
56
                        this.label2.Xalign = 0f;
 
57
                        this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("Select the kind of Makefile you want to generate:");
 
58
                        this.vbox2.Add (this.label2);
 
59
                        global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.label2]));
 
60
                        w2.Position = 0;
 
61
                        w2.Expand = false;
 
62
                        w2.Fill = false;
 
63
                        // Container child vbox2.Gtk.Box+BoxChild
 
64
                        this.vbox3 = new global::Gtk.VBox ();
 
65
                        this.vbox3.Name = "vbox3";
 
66
                        this.vbox3.Spacing = 6;
 
67
                        // Container child vbox3.Gtk.Box+BoxChild
 
68
                        this.rbSimple = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Simple"));
 
69
                        this.rbSimple.CanFocus = true;
 
70
                        this.rbSimple.Name = "rbSimple";
 
71
                        this.rbSimple.DrawIndicator = true;
 
72
                        this.rbSimple.UseUnderline = true;
 
73
                        this.rbSimple.Group = new global::GLib.SList (global::System.IntPtr.Zero);
 
74
                        this.rbSimple.Remove (this.rbSimple.Child);
 
75
                        // Container child rbSimple.Gtk.Container+ContainerChild
 
76
                        this.label4 = new global::Gtk.Label ();
 
77
                        this.label4.WidthRequest = 550;
 
78
                        this.label4.Name = "label4";
 
79
                        this.label4.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Simple Makefile</b>\nGenerates set of Makefiles with the most common targets, and a configuration script that does a basic check of package dependencies.");
 
80
                        this.label4.UseMarkup = true;
 
81
                        this.label4.Wrap = true;
 
82
                        this.rbSimple.Add (this.label4);
 
83
                        this.vbox3.Add (this.rbSimple);
 
84
                        global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.rbSimple]));
 
85
                        w4.Position = 0;
 
86
                        w4.Expand = false;
 
87
                        w4.Fill = false;
 
88
                        // Container child vbox3.Gtk.Box+BoxChild
 
89
                        this.rbAutotools = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Autotools based"));
 
90
                        this.rbAutotools.CanFocus = true;
 
91
                        this.rbAutotools.Name = "rbAutotools";
 
92
                        this.rbAutotools.DrawIndicator = true;
 
93
                        this.rbAutotools.UseUnderline = true;
 
94
                        this.rbAutotools.Group = this.rbSimple.Group;
 
95
                        this.rbAutotools.Remove (this.rbAutotools.Child);
 
96
                        // Container child rbAutotools.Gtk.Container+ContainerChild
 
97
                        this.label5 = new global::Gtk.Label ();
 
98
                        this.label5.WidthRequest = 550;
 
99
                        this.label5.Name = "label5";
 
100
                        this.label5.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Autotools based Makefile</b>\nGenerates a Makefile structure based on Autotools, with the standard targets and configuration scripts.");
 
101
                        this.label5.UseMarkup = true;
 
102
                        this.label5.Wrap = true;
 
103
                        this.rbAutotools.Add (this.label5);
 
104
                        this.vbox3.Add (this.rbAutotools);
 
105
                        global::Gtk.Box.BoxChild w6 = ((global::Gtk.Box.BoxChild)(this.vbox3[this.rbAutotools]));
 
106
                        w6.Position = 1;
 
107
                        w6.Expand = false;
 
108
                        w6.Fill = false;
 
109
                        this.vbox2.Add (this.vbox3);
 
110
                        global::Gtk.Box.BoxChild w7 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.vbox3]));
 
111
                        w7.Position = 1;
 
112
                        w7.Expand = false;
 
113
                        w7.Fill = false;
 
114
                        // Container child vbox2.Gtk.Box+BoxChild
 
115
                        this.hseparator1 = new global::Gtk.HSeparator ();
 
116
                        this.hseparator1.Name = "hseparator1";
 
117
                        this.vbox2.Add (this.hseparator1);
 
118
                        global::Gtk.Box.BoxChild w8 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hseparator1]));
 
119
                        w8.Position = 2;
 
120
                        w8.Expand = false;
 
121
                        w8.Fill = false;
 
122
                        // Container child vbox2.Gtk.Box+BoxChild
 
123
                        this.label3 = new global::Gtk.Label ();
 
124
                        this.label3.WidthRequest = 580;
 
125
                        this.label3.Name = "label3";
 
126
                        this.label3.Xalign = 0f;
 
127
                        this.label3.LabelProp = global::Mono.Unix.Catalog.GetString ("Select the configuration that the Makefile will build by default. Other configurations can be selected via the '--config' option of the generated configure script.");
 
128
                        this.label3.Wrap = true;
 
129
                        this.vbox2.Add (this.label3);
 
130
                        global::Gtk.Box.BoxChild w9 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.label3]));
 
131
                        w9.Position = 3;
 
132
                        w9.Expand = false;
 
133
                        w9.Fill = false;
 
134
                        // Container child vbox2.Gtk.Box+BoxChild
 
135
                        this.hbox1 = new global::Gtk.HBox ();
 
136
                        this.hbox1.Name = "hbox1";
 
137
                        this.hbox1.Spacing = 6;
 
138
                        // Container child hbox1.Gtk.Box+BoxChild
 
139
                        this.label1 = new global::Gtk.Label ();
 
140
                        this.label1.Name = "label1";
 
141
                        this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("Default configuration:");
 
142
                        this.hbox1.Add (this.label1);
 
143
                        global::Gtk.Box.BoxChild w10 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.label1]));
 
144
                        w10.Position = 0;
 
145
                        w10.Expand = false;
 
146
                        w10.Fill = false;
 
147
                        // Container child hbox1.Gtk.Box+BoxChild
 
148
                        this.comboConfigs = global::Gtk.ComboBox.NewText ();
 
149
                        this.comboConfigs.Name = "comboConfigs";
 
150
                        this.hbox1.Add (this.comboConfigs);
 
151
                        global::Gtk.Box.BoxChild w11 = ((global::Gtk.Box.BoxChild)(this.hbox1[this.comboConfigs]));
 
152
                        w11.Position = 1;
 
153
                        w11.Expand = false;
 
154
                        w11.Fill = false;
 
155
                        this.vbox2.Add (this.hbox1);
 
156
                        global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox2[this.hbox1]));
 
157
                        w12.PackType = ((global::Gtk.PackType)(1));
 
158
                        w12.Position = 4;
 
159
                        w12.Expand = false;
 
160
                        w12.Fill = false;
 
161
                        w1.Add (this.vbox2);
 
162
                        global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(w1[this.vbox2]));
 
163
                        w13.Position = 0;
 
164
                        w13.Expand = false;
 
165
                        w13.Fill = false;
 
166
                        // Internal child MonoDevelop.Autotools.GenerateMakefilesDialog.ActionArea
 
167
                        global::Gtk.HButtonBox w14 = this.ActionArea;
 
168
                        w14.Name = "dialog1_ActionArea";
 
169
                        w14.Spacing = 6;
 
170
                        w14.BorderWidth = ((uint)(5));
 
171
                        w14.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
 
172
                        // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
 
173
                        this.buttonCancel = new global::Gtk.Button ();
 
174
                        this.buttonCancel.CanDefault = true;
 
175
                        this.buttonCancel.CanFocus = true;
 
176
                        this.buttonCancel.Name = "buttonCancel";
 
177
                        this.buttonCancel.UseStock = true;
 
178
                        this.buttonCancel.UseUnderline = true;
 
179
                        this.buttonCancel.Label = "gtk-cancel";
 
180
                        this.AddActionWidget (this.buttonCancel, -6);
 
181
                        global::Gtk.ButtonBox.ButtonBoxChild w15 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w14[this.buttonCancel]));
 
182
                        w15.Expand = false;
 
183
                        w15.Fill = false;
 
184
                        // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
 
185
                        this.buttonOk = new global::Gtk.Button ();
 
186
                        this.buttonOk.CanDefault = true;
 
187
                        this.buttonOk.CanFocus = true;
 
188
                        this.buttonOk.Name = "buttonOk";
 
189
                        this.buttonOk.UseStock = true;
 
190
                        this.buttonOk.UseUnderline = true;
 
191
                        this.buttonOk.Label = "gtk-ok";
 
192
                        this.AddActionWidget (this.buttonOk, -5);
 
193
                        global::Gtk.ButtonBox.ButtonBoxChild w16 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w14[this.buttonOk]));
 
194
                        w16.Position = 1;
 
195
                        w16.Expand = false;
 
196
                        w16.Fill = false;
 
197
                        if ((this.Child != null)) {
 
198
                                this.Child.ShowAll ();
 
199
                        }
 
200
                        this.DefaultWidth = 614;
 
201
                        this.DefaultHeight = 359;
 
202
                        this.Show ();
 
203
                }
 
204
        }
212
205
}