* Makefile.am:
[monodevelop.git] / main / src / addins / MonoDevelop.Debugger / gtk-gui / MonoDevelop.Debugger.ExpressionEvaluatorDialog.cs
blob2ea1358539fbb6855e3b701aacb27a7ed0a18abe
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 // ------------------------------------------------------------------------------
11 namespace MonoDevelop.Debugger {
14 public partial class ExpressionEvaluatorDialog {
16 private Gtk.VBox vbox2;
18 private Gtk.HBox hbox1;
20 private Gtk.Entry entry;
22 private Gtk.Button buttonEval;
24 private Gtk.ScrolledWindow GtkScrolledWindow;
26 private MonoDevelop.Debugger.ObjectValueTreeView valueTree;
28 private Gtk.Button buttonOk;
30 protected virtual void Build() {
31 Stetic.Gui.Initialize(this);
32 // Widget MonoDevelop.Debugger.ExpressionEvaluatorDialog
33 this.Name = "MonoDevelop.Debugger.ExpressionEvaluatorDialog";
34 this.Title = Mono.Unix.Catalog.GetString("Expression Evaluator");
35 this.WindowPosition = ((Gtk.WindowPosition)(4));
36 this.Modal = true;
37 this.HasSeparator = false;
38 // Internal child MonoDevelop.Debugger.ExpressionEvaluatorDialog.VBox
39 Gtk.VBox w1 = this.VBox;
40 w1.Name = "dialog1_VBox";
41 w1.BorderWidth = ((uint)(2));
42 // Container child dialog1_VBox.Gtk.Box+BoxChild
43 this.vbox2 = new Gtk.VBox();
44 this.vbox2.Name = "vbox2";
45 this.vbox2.Spacing = 6;
46 this.vbox2.BorderWidth = ((uint)(9));
47 // Container child vbox2.Gtk.Box+BoxChild
48 this.hbox1 = new Gtk.HBox();
49 this.hbox1.Name = "hbox1";
50 this.hbox1.Spacing = 6;
51 // Container child hbox1.Gtk.Box+BoxChild
52 this.entry = new Gtk.Entry();
53 this.entry.CanFocus = true;
54 this.entry.Name = "entry";
55 this.entry.IsEditable = true;
56 this.entry.ActivatesDefault = true;
57 this.entry.InvisibleChar = '●';
58 this.hbox1.Add(this.entry);
59 Gtk.Box.BoxChild w2 = ((Gtk.Box.BoxChild)(this.hbox1[this.entry]));
60 w2.Position = 0;
61 // Container child hbox1.Gtk.Box+BoxChild
62 this.buttonEval = new Gtk.Button();
63 this.buttonEval.CanDefault = true;
64 this.buttonEval.CanFocus = true;
65 this.buttonEval.Name = "buttonEval";
66 this.buttonEval.UseUnderline = true;
67 this.buttonEval.Label = Mono.Unix.Catalog.GetString("Evaluate");
68 this.hbox1.Add(this.buttonEval);
69 Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.hbox1[this.buttonEval]));
70 w3.Position = 1;
71 w3.Expand = false;
72 w3.Fill = false;
73 this.vbox2.Add(this.hbox1);
74 Gtk.Box.BoxChild w4 = ((Gtk.Box.BoxChild)(this.vbox2[this.hbox1]));
75 w4.Position = 0;
76 w4.Expand = false;
77 w4.Fill = false;
78 // Container child vbox2.Gtk.Box+BoxChild
79 this.GtkScrolledWindow = new Gtk.ScrolledWindow();
80 this.GtkScrolledWindow.Name = "GtkScrolledWindow";
81 this.GtkScrolledWindow.ShadowType = ((Gtk.ShadowType)(1));
82 // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
83 this.valueTree = new MonoDevelop.Debugger.ObjectValueTreeView();
84 this.valueTree.CanFocus = true;
85 this.valueTree.Name = "valueTree";
86 this.valueTree.AllowAdding = false;
87 this.valueTree.AllowEditing = false;
88 this.valueTree.CompactView = false;
89 this.GtkScrolledWindow.Add(this.valueTree);
90 this.vbox2.Add(this.GtkScrolledWindow);
91 Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.vbox2[this.GtkScrolledWindow]));
92 w6.Position = 1;
93 w1.Add(this.vbox2);
94 Gtk.Box.BoxChild w7 = ((Gtk.Box.BoxChild)(w1[this.vbox2]));
95 w7.Position = 0;
96 // Internal child MonoDevelop.Debugger.ExpressionEvaluatorDialog.ActionArea
97 Gtk.HButtonBox w8 = this.ActionArea;
98 w8.Name = "dialog1_ActionArea";
99 w8.Spacing = 6;
100 w8.BorderWidth = ((uint)(5));
101 w8.LayoutStyle = ((Gtk.ButtonBoxStyle)(4));
102 // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
103 this.buttonOk = new Gtk.Button();
104 this.buttonOk.CanDefault = true;
105 this.buttonOk.CanFocus = true;
106 this.buttonOk.Name = "buttonOk";
107 this.buttonOk.UseStock = true;
108 this.buttonOk.UseUnderline = true;
109 this.buttonOk.Label = "gtk-close";
110 this.AddActionWidget(this.buttonOk, -7);
111 Gtk.ButtonBox.ButtonBoxChild w9 = ((Gtk.ButtonBox.ButtonBoxChild)(w8[this.buttonOk]));
112 w9.Expand = false;
113 w9.Fill = false;
114 if ((this.Child != null)) {
115 this.Child.ShowAll();
117 this.DefaultWidth = 545;
118 this.DefaultHeight = 396;
119 this.buttonEval.HasDefault = true;
120 this.Show();
121 this.buttonEval.Clicked += new System.EventHandler(this.OnButtonEvalClicked);