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

MonoDevelop.CSharp.Project.CompilerOptionsPanelWidget.cs « gtk-gui « CSharpBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d65f8b14288320b91507ae129cc7cbcf69320c85 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308

// This file has been generated by the GUI designer. Do not modify.
namespace MonoDevelop.CSharp.Project
{
	public partial class CompilerOptionsPanelWidget
	{
		private global::Gtk.VBox vbox1;
		
		private global::Gtk.Label label82;
		
		private global::Gtk.HBox hbox5;
		
		private global::Gtk.Label label76;
		
		private global::Gtk.VBox vbox2;
		
		private global::Gtk.Table table7;
		
		private global::Gtk.ComboBoxEntry codepageEntry;
		
		private global::Gtk.HBox hbox57;
		
		private global::Gtk.ComboBox compileTargetCombo;
		
		private global::MonoDevelop.Components.FileEntry iconEntry;
		
		private global::Gtk.Label label1;
		
		private global::Gtk.Label label3;
		
		private global::Gtk.Label label86;
		
		private global::Gtk.Label label88;
		
		private global::Gtk.ComboBoxEntry mainClassEntry;
		
		private global::Gtk.CheckButton noStdLibCheckButton;
		
		private global::Gtk.Label label83;
		
		private global::Gtk.Label label75;
		
		private global::Gtk.HBox hbox7;
		
		private global::Gtk.Label label74;
		
		private global::Gtk.VBox vbox3;
		
		private global::Gtk.Table table2;
		
		private global::Gtk.Label label2;
		
		private global::Gtk.ComboBox langVerCombo;
		
		private global::Gtk.CheckButton allowUnsafeCodeCheckButton;

		protected virtual void Build ()
		{
			global::Stetic.Gui.Initialize (this);
			// Widget MonoDevelop.CSharp.Project.CompilerOptionsPanelWidget
			global::Stetic.BinContainer.Attach (this);
			this.Name = "MonoDevelop.CSharp.Project.CompilerOptionsPanelWidget";
			// Container child MonoDevelop.CSharp.Project.CompilerOptionsPanelWidget.Gtk.Container+ContainerChild
			this.vbox1 = new global::Gtk.VBox ();
			this.vbox1.Name = "vbox1";
			this.vbox1.Spacing = 6;
			// Container child vbox1.Gtk.Box+BoxChild
			this.label82 = new global::Gtk.Label ();
			this.label82.Name = "label82";
			this.label82.Xalign = 0F;
			this.label82.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Code Generation</b>");
			this.label82.UseMarkup = true;
			this.vbox1.Add (this.label82);
			global::Gtk.Box.BoxChild w1 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.label82]));
			w1.Position = 0;
			w1.Expand = false;
			w1.Fill = false;
			// Container child vbox1.Gtk.Box+BoxChild
			this.hbox5 = new global::Gtk.HBox ();
			this.hbox5.Name = "hbox5";
			this.hbox5.Spacing = 6;
			// Container child hbox5.Gtk.Box+BoxChild
			this.label76 = new global::Gtk.Label ();
			this.label76.WidthRequest = 18;
			this.label76.Name = "label76";
			this.hbox5.Add (this.label76);
			global::Gtk.Box.BoxChild w2 = ((global::Gtk.Box.BoxChild)(this.hbox5 [this.label76]));
			w2.Position = 0;
			w2.Expand = false;
			w2.Fill = false;
			// Container child hbox5.Gtk.Box+BoxChild
			this.vbox2 = new global::Gtk.VBox ();
			this.vbox2.Name = "vbox2";
			this.vbox2.Spacing = 6;
			// Container child vbox2.Gtk.Box+BoxChild
			this.table7 = new global::Gtk.Table (((uint)(5)), ((uint)(2)), false);
			this.table7.Name = "table7";
			this.table7.RowSpacing = ((uint)(6));
			this.table7.ColumnSpacing = ((uint)(6));
			// Container child table7.Gtk.Table+TableChild
			this.codepageEntry = global::Gtk.ComboBoxEntry.NewText ();
			this.codepageEntry.Name = "codepageEntry";
			this.table7.Add (this.codepageEntry);
			global::Gtk.Table.TableChild w3 = ((global::Gtk.Table.TableChild)(this.table7 [this.codepageEntry]));
			w3.TopAttach = ((uint)(3));
			w3.BottomAttach = ((uint)(4));
			w3.LeftAttach = ((uint)(1));
			w3.RightAttach = ((uint)(2));
			w3.XOptions = ((global::Gtk.AttachOptions)(4));
			w3.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table7.Gtk.Table+TableChild
			this.hbox57 = new global::Gtk.HBox ();
			this.hbox57.Name = "hbox57";
			// Container child hbox57.Gtk.Box+BoxChild
			this.compileTargetCombo = new global::Gtk.ComboBox ();
			this.compileTargetCombo.Name = "compileTargetCombo";
			this.hbox57.Add (this.compileTargetCombo);
			global::Gtk.Box.BoxChild w4 = ((global::Gtk.Box.BoxChild)(this.hbox57 [this.compileTargetCombo]));
			w4.Position = 0;
			w4.Expand = false;
			w4.Fill = false;
			this.table7.Add (this.hbox57);
			global::Gtk.Table.TableChild w5 = ((global::Gtk.Table.TableChild)(this.table7 [this.hbox57]));
			w5.LeftAttach = ((uint)(1));
			w5.RightAttach = ((uint)(2));
			w5.XOptions = ((global::Gtk.AttachOptions)(4));
			w5.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table7.Gtk.Table+TableChild
			this.iconEntry = new global::MonoDevelop.Components.FileEntry ();
			this.iconEntry.Name = "iconEntry";
			this.iconEntry.DisplayAsRelativePath = false;
			this.table7.Add (this.iconEntry);
			global::Gtk.Table.TableChild w6 = ((global::Gtk.Table.TableChild)(this.table7 [this.iconEntry]));
			w6.TopAttach = ((uint)(2));
			w6.BottomAttach = ((uint)(3));
			w6.LeftAttach = ((uint)(1));
			w6.RightAttach = ((uint)(2));
			w6.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table7.Gtk.Table+TableChild
			this.label1 = new global::Gtk.Label ();
			this.label1.Name = "label1";
			this.label1.Xalign = 0F;
			this.label1.LabelProp = global::Mono.Unix.Catalog.GetString ("Compiler Code Page:");
			this.table7.Add (this.label1);
			global::Gtk.Table.TableChild w7 = ((global::Gtk.Table.TableChild)(this.table7 [this.label1]));
			w7.TopAttach = ((uint)(3));
			w7.BottomAttach = ((uint)(4));
			w7.XOptions = ((global::Gtk.AttachOptions)(4));
			w7.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table7.Gtk.Table+TableChild
			this.label3 = new global::Gtk.Label ();
			this.label3.Name = "label3";
			this.label3.Xalign = 0F;
			this.label3.LabelProp = global::Mono.Unix.Catalog.GetString ("Win32 Icon:");
			this.table7.Add (this.label3);
			global::Gtk.Table.TableChild w8 = ((global::Gtk.Table.TableChild)(this.table7 [this.label3]));
			w8.TopAttach = ((uint)(2));
			w8.BottomAttach = ((uint)(3));
			w8.XOptions = ((global::Gtk.AttachOptions)(4));
			w8.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table7.Gtk.Table+TableChild
			this.label86 = new global::Gtk.Label ();
			this.label86.Name = "label86";
			this.label86.Xalign = 0F;
			this.label86.LabelProp = global::Mono.Unix.Catalog.GetString ("Compile _Target:");
			this.label86.UseUnderline = true;
			this.table7.Add (this.label86);
			global::Gtk.Table.TableChild w9 = ((global::Gtk.Table.TableChild)(this.table7 [this.label86]));
			w9.XOptions = ((global::Gtk.AttachOptions)(4));
			w9.YOptions = ((global::Gtk.AttachOptions)(0));
			// Container child table7.Gtk.Table+TableChild
			this.label88 = new global::Gtk.Label ();
			this.label88.Name = "label88";
			this.label88.Xalign = 0F;
			this.label88.LabelProp = global::Mono.Unix.Catalog.GetString ("_Main Class:");
			this.label88.UseUnderline = true;
			this.table7.Add (this.label88);
			global::Gtk.Table.TableChild w10 = ((global::Gtk.Table.TableChild)(this.table7 [this.label88]));
			w10.TopAttach = ((uint)(1));
			w10.BottomAttach = ((uint)(2));
			w10.XOptions = ((global::Gtk.AttachOptions)(4));
			w10.YOptions = ((global::Gtk.AttachOptions)(0));
			// Container child table7.Gtk.Table+TableChild
			this.mainClassEntry = new global::Gtk.ComboBoxEntry ();
			this.mainClassEntry.Name = "mainClassEntry";
			this.table7.Add (this.mainClassEntry);
			global::Gtk.Table.TableChild w11 = ((global::Gtk.Table.TableChild)(this.table7 [this.mainClassEntry]));
			w11.TopAttach = ((uint)(1));
			w11.BottomAttach = ((uint)(2));
			w11.LeftAttach = ((uint)(1));
			w11.RightAttach = ((uint)(2));
			w11.YOptions = ((global::Gtk.AttachOptions)(4));
			this.vbox2.Add (this.table7);
			global::Gtk.Box.BoxChild w12 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.table7]));
			w12.Position = 0;
			// Container child vbox2.Gtk.Box+BoxChild
			this.noStdLibCheckButton = new global::Gtk.CheckButton ();
			this.noStdLibCheckButton.CanFocus = true;
			this.noStdLibCheckButton.Name = "noStdLibCheckButton";
			this.noStdLibCheckButton.Label = global::Mono.Unix.Catalog.GetString ("Do not reference mscorlib.dll");
			this.noStdLibCheckButton.DrawIndicator = true;
			this.noStdLibCheckButton.UseUnderline = true;
			this.vbox2.Add (this.noStdLibCheckButton);
			global::Gtk.Box.BoxChild w13 = ((global::Gtk.Box.BoxChild)(this.vbox2 [this.noStdLibCheckButton]));
			w13.Position = 1;
			w13.Expand = false;
			w13.Fill = false;
			this.hbox5.Add (this.vbox2);
			global::Gtk.Box.BoxChild w14 = ((global::Gtk.Box.BoxChild)(this.hbox5 [this.vbox2]));
			w14.Position = 1;
			this.vbox1.Add (this.hbox5);
			global::Gtk.Box.BoxChild w15 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox5]));
			w15.Position = 1;
			w15.Expand = false;
			// Container child vbox1.Gtk.Box+BoxChild
			this.label83 = new global::Gtk.Label ();
			this.label83.Name = "label83";
			this.label83.Xalign = 0F;
			this.label83.LabelProp = global::Mono.Unix.Catalog.GetString ("<b>Language Options</b>");
			this.label83.UseMarkup = true;
			this.vbox1.Add (this.label83);
			global::Gtk.Box.BoxChild w16 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.label83]));
			w16.Position = 2;
			w16.Expand = false;
			w16.Fill = false;
			// Container child vbox1.Gtk.Box+BoxChild
			this.label75 = new global::Gtk.Label ();
			this.label75.WidthRequest = 18;
			this.label75.Name = "label75";
			this.vbox1.Add (this.label75);
			global::Gtk.Box.BoxChild w17 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.label75]));
			w17.PackType = ((global::Gtk.PackType)(1));
			w17.Position = 3;
			// Container child vbox1.Gtk.Box+BoxChild
			this.hbox7 = new global::Gtk.HBox ();
			this.hbox7.Name = "hbox7";
			this.hbox7.Spacing = 6;
			// Container child hbox7.Gtk.Box+BoxChild
			this.label74 = new global::Gtk.Label ();
			this.label74.WidthRequest = 18;
			this.label74.Name = "label74";
			this.hbox7.Add (this.label74);
			global::Gtk.Box.BoxChild w18 = ((global::Gtk.Box.BoxChild)(this.hbox7 [this.label74]));
			w18.Position = 0;
			w18.Expand = false;
			w18.Fill = false;
			// Container child hbox7.Gtk.Box+BoxChild
			this.vbox3 = new global::Gtk.VBox ();
			this.vbox3.Name = "vbox3";
			this.vbox3.Spacing = 6;
			// Container child vbox3.Gtk.Box+BoxChild
			this.table2 = new global::Gtk.Table (((uint)(1)), ((uint)(2)), false);
			this.table2.Name = "table2";
			this.table2.RowSpacing = ((uint)(6));
			this.table2.ColumnSpacing = ((uint)(6));
			// Container child table2.Gtk.Table+TableChild
			this.label2 = new global::Gtk.Label ();
			this.label2.Name = "label2";
			this.label2.Xalign = 0F;
			this.label2.LabelProp = global::Mono.Unix.Catalog.GetString ("C# Language Version:");
			this.table2.Add (this.label2);
			global::Gtk.Table.TableChild w19 = ((global::Gtk.Table.TableChild)(this.table2 [this.label2]));
			w19.XOptions = ((global::Gtk.AttachOptions)(4));
			w19.YOptions = ((global::Gtk.AttachOptions)(4));
			// Container child table2.Gtk.Table+TableChild
			this.langVerCombo = global::Gtk.ComboBox.NewText ();
			this.langVerCombo.Name = "langVerCombo";
			this.table2.Add (this.langVerCombo);
			global::Gtk.Table.TableChild w20 = ((global::Gtk.Table.TableChild)(this.table2 [this.langVerCombo]));
			w20.LeftAttach = ((uint)(1));
			w20.RightAttach = ((uint)(2));
			w20.XOptions = ((global::Gtk.AttachOptions)(4));
			w20.YOptions = ((global::Gtk.AttachOptions)(4));
			this.vbox3.Add (this.table2);
			global::Gtk.Box.BoxChild w21 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.table2]));
			w21.Position = 0;
			w21.Fill = false;
			// Container child vbox3.Gtk.Box+BoxChild
			this.allowUnsafeCodeCheckButton = new global::Gtk.CheckButton ();
			this.allowUnsafeCodeCheckButton.CanFocus = true;
			this.allowUnsafeCodeCheckButton.Name = "allowUnsafeCodeCheckButton";
			this.allowUnsafeCodeCheckButton.Label = global::Mono.Unix.Catalog.GetString ("Allow '_unsafe' code");
			this.allowUnsafeCodeCheckButton.Active = true;
			this.allowUnsafeCodeCheckButton.DrawIndicator = true;
			this.allowUnsafeCodeCheckButton.UseUnderline = true;
			this.vbox3.Add (this.allowUnsafeCodeCheckButton);
			global::Gtk.Box.BoxChild w22 = ((global::Gtk.Box.BoxChild)(this.vbox3 [this.allowUnsafeCodeCheckButton]));
			w22.Position = 1;
			w22.Expand = false;
			w22.Fill = false;
			this.hbox7.Add (this.vbox3);
			global::Gtk.Box.BoxChild w23 = ((global::Gtk.Box.BoxChild)(this.hbox7 [this.vbox3]));
			w23.Position = 1;
			this.vbox1.Add (this.hbox7);
			global::Gtk.Box.BoxChild w24 = ((global::Gtk.Box.BoxChild)(this.vbox1 [this.hbox7]));
			w24.PackType = ((global::Gtk.PackType)(1));
			w24.Position = 4;
			w24.Expand = false;
			w24.Fill = false;
			this.Add (this.vbox1);
			if ((this.Child != null)) {
				this.Child.ShowAll ();
			}
			this.label88.MnemonicWidget = this.mainClassEntry;
			this.Show ();
		}
	}
}