~ubuntu-branches/ubuntu/saucy/monodevelop/saucy-proposed

« back to all changes in this revision

Viewing changes to src/tools/mdmonitor/gtk-gui/Mono.Instrumentation.Monitor.CounterSelectorDialog.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-09-10 16:54:48 UTC
  • mfrom: (19.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100910165448-0rybfk25zd4o9431
Tags: 2.4+dfsg-2
* debian/patches/inject_Mono.Debugger.Soft_source.patch,
  debian/patches/use_system_Mono.Debugger.Soft.patch,
  debian/control:
  + Build against system Soft Debugger, since we now have a new
    enough Mono to match MonoDevelop's required API

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.Instrumentation.Monitor
 
4
{
 
5
        public partial class CounterSelectorDialog
 
6
        {
 
7
                private global::Gtk.ScrolledWindow GtkScrolledWindow;
 
8
 
 
9
                private global::Gtk.TreeView treeCounters;
 
10
 
 
11
                private global::Gtk.Button buttonCancel;
 
12
 
 
13
                private global::Gtk.Button buttonOk;
 
14
 
 
15
                protected virtual void Build ()
 
16
                {
 
17
                        global::Stetic.Gui.Initialize (this);
 
18
                        // Widget Mono.Instrumentation.Monitor.CounterSelectorDialog
 
19
                        this.Name = "Mono.Instrumentation.Monitor.CounterSelectorDialog";
 
20
                        this.Title = global::Mono.Unix.Catalog.GetString ("Select Counter");
 
21
                        this.WindowPosition = ((global::Gtk.WindowPosition)(4));
 
22
                        // Internal child Mono.Instrumentation.Monitor.CounterSelectorDialog.VBox
 
23
                        global::Gtk.VBox w1 = this.VBox;
 
24
                        w1.Name = "dialog1_VBox";
 
25
                        w1.BorderWidth = ((uint)(2));
 
26
                        // Container child dialog1_VBox.Gtk.Box+BoxChild
 
27
                        this.GtkScrolledWindow = new global::Gtk.ScrolledWindow ();
 
28
                        this.GtkScrolledWindow.Name = "GtkScrolledWindow";
 
29
                        this.GtkScrolledWindow.ShadowType = ((global::Gtk.ShadowType)(1));
 
30
                        this.GtkScrolledWindow.BorderWidth = ((uint)(9));
 
31
                        // Container child GtkScrolledWindow.Gtk.Container+ContainerChild
 
32
                        this.treeCounters = new global::Gtk.TreeView ();
 
33
                        this.treeCounters.CanFocus = true;
 
34
                        this.treeCounters.Name = "treeCounters";
 
35
                        this.GtkScrolledWindow.Add (this.treeCounters);
 
36
                        w1.Add (this.GtkScrolledWindow);
 
37
                        global::Gtk.Box.BoxChild w3 = ((global::Gtk.Box.BoxChild)(w1[this.GtkScrolledWindow]));
 
38
                        w3.Position = 0;
 
39
                        // Internal child Mono.Instrumentation.Monitor.CounterSelectorDialog.ActionArea
 
40
                        global::Gtk.HButtonBox w4 = this.ActionArea;
 
41
                        w4.Name = "dialog1_ActionArea";
 
42
                        w4.Spacing = 10;
 
43
                        w4.BorderWidth = ((uint)(5));
 
44
                        w4.LayoutStyle = ((global::Gtk.ButtonBoxStyle)(4));
 
45
                        // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
 
46
                        this.buttonCancel = new global::Gtk.Button ();
 
47
                        this.buttonCancel.CanDefault = true;
 
48
                        this.buttonCancel.CanFocus = true;
 
49
                        this.buttonCancel.Name = "buttonCancel";
 
50
                        this.buttonCancel.UseStock = true;
 
51
                        this.buttonCancel.UseUnderline = true;
 
52
                        this.buttonCancel.Label = "gtk-cancel";
 
53
                        this.AddActionWidget (this.buttonCancel, -6);
 
54
                        global::Gtk.ButtonBox.ButtonBoxChild w5 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w4[this.buttonCancel]));
 
55
                        w5.Expand = false;
 
56
                        w5.Fill = false;
 
57
                        // Container child dialog1_ActionArea.Gtk.ButtonBox+ButtonBoxChild
 
58
                        this.buttonOk = new global::Gtk.Button ();
 
59
                        this.buttonOk.CanDefault = true;
 
60
                        this.buttonOk.CanFocus = true;
 
61
                        this.buttonOk.Name = "buttonOk";
 
62
                        this.buttonOk.UseStock = true;
 
63
                        this.buttonOk.UseUnderline = true;
 
64
                        this.buttonOk.Label = "gtk-ok";
 
65
                        this.AddActionWidget (this.buttonOk, -5);
 
66
                        global::Gtk.ButtonBox.ButtonBoxChild w6 = ((global::Gtk.ButtonBox.ButtonBoxChild)(w4[this.buttonOk]));
 
67
                        w6.Position = 1;
 
68
                        w6.Expand = false;
 
69
                        w6.Fill = false;
 
70
                        if ((this.Child != null)) {
 
71
                                this.Child.ShowAll ();
 
72
                        }
 
73
                        this.DefaultWidth = 445;
 
74
                        this.DefaultHeight = 540;
 
75
                        this.Show ();
 
76
                }
 
77
        }
 
78
}