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

« back to all changes in this revision

Viewing changes to src/addins/Deployment/MonoDevelop.Deployment.Linux/gtk-gui/MonoDevelop.Deployment.Linux.DesktopPanelWidget.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
 
//  <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.Deployment.Linux {
12
 
    
13
 
    public partial class DesktopPanelWidget {
14
 
        
15
 
        private Gtk.Notebook notebook2;
16
 
        
17
 
        private Gtk.Label label6;
18
 
        
19
 
        protected virtual void Build() {
20
 
            Stetic.Gui.Initialize(this);
21
 
            // Widget MonoDevelop.Deployment.Linux.DesktopPanelWidget
22
 
            Stetic.BinContainer.Attach(this);
23
 
            this.CanFocus = true;
24
 
            this.Name = "MonoDevelop.Deployment.Linux.DesktopPanelWidget";
25
 
            // Container child MonoDevelop.Deployment.Linux.DesktopPanelWidget.Gtk.Container+ContainerChild
26
 
            this.notebook2 = new Gtk.Notebook();
27
 
            this.notebook2.CanFocus = true;
28
 
            this.notebook2.Name = "notebook2";
29
 
            this.notebook2.CurrentPage = 0;
30
 
            // Notebook tab
31
 
            Gtk.Label w1 = new Gtk.Label();
32
 
            w1.Visible = true;
33
 
            this.notebook2.Add(w1);
34
 
            this.label6 = new Gtk.Label();
35
 
            this.label6.CanFocus = true;
36
 
            this.label6.Name = "label6";
37
 
            this.label6.LabelProp = "page1";
38
 
            this.notebook2.SetTabLabel(w1, this.label6);
39
 
            this.label6.ShowAll();
40
 
            this.Add(this.notebook2);
41
 
            if ((this.Child != null)) {
42
 
                this.Child.ShowAll();
43
 
            }
44
 
            this.Show();
45
 
        }
46
 
    }
 
1
 
 
2
// This file has been generated by the GUI designer. Do not modify.
 
3
namespace MonoDevelop.Deployment.Linux
 
4
{
 
5
        public partial class DesktopPanelWidget
 
6
        {
 
7
                private global::Gtk.Notebook notebook2;
 
8
 
 
9
                private global::Gtk.Label label6;
 
10
 
 
11
                protected virtual void Build ()
 
12
                {
 
13
                        global::Stetic.Gui.Initialize (this);
 
14
                        // Widget MonoDevelop.Deployment.Linux.DesktopPanelWidget
 
15
                        global::Stetic.BinContainer.Attach (this);
 
16
                        this.CanFocus = true;
 
17
                        this.Name = "MonoDevelop.Deployment.Linux.DesktopPanelWidget";
 
18
                        // Container child MonoDevelop.Deployment.Linux.DesktopPanelWidget.Gtk.Container+ContainerChild
 
19
                        this.notebook2 = new global::Gtk.Notebook ();
 
20
                        this.notebook2.CanFocus = true;
 
21
                        this.notebook2.Name = "notebook2";
 
22
                        this.notebook2.CurrentPage = 0;
 
23
                        // Notebook tab
 
24
                        global::Gtk.Label w1 = new global::Gtk.Label ();
 
25
                        w1.Visible = true;
 
26
                        this.notebook2.Add (w1);
 
27
                        this.label6 = new global::Gtk.Label ();
 
28
                        this.label6.CanFocus = true;
 
29
                        this.label6.Name = "label6";
 
30
                        this.label6.LabelProp = "page1";
 
31
                        this.notebook2.SetTabLabel (w1, this.label6);
 
32
                        this.label6.ShowAll ();
 
33
                        this.Add (this.notebook2);
 
34
                        if ((this.Child != null)) {
 
35
                                this.Child.ShowAll ();
 
36
                        }
 
37
                        this.Show ();
 
38
                }
 
39
        }
47
40
}