~ubuntu-branches/ubuntu/feisty/monodevelop/feisty

« back to all changes in this revision

Viewing changes to Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IPadContainer.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-18 00:51:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060818005123-5iit07y0j7wjg55f
Tags: 0.11+svn20060818-0ubuntu1
* New SVN snapshot
  + Works with Gtk# 2.9.0
* debian/control:
  + Updated Build-Depends
* debian/patches/use_nunit2.2.dpatch,
  debian/patches/use_real_libs.dpatch:
  + Updated
* debian/patches/versioncontrol_buildfix.dpatch:
  + Fix build failure in the version control addin

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
                        set {
89
89
                                if (value) {
90
90
                                        layout.ShowPad (content);
91
 
                                        if (PadShown != null) PadShown (this, EventArgs.Empty);
92
91
                                }
93
92
                                else {
94
93
                                        layout.HidePad (content);
95
 
                                        if (PadHidden != null) PadHidden (this, EventArgs.Empty);
96
94
                                }
97
95
                        }
98
96
                }
102
100
                        layout.ActivatePad (content);
103
101
                }
104
102
                
 
103
                internal void NotifyHidden ()
 
104
                {
 
105
                        if (PadShown != null)
 
106
                                PadShown (this, EventArgs.Empty);
 
107
                }
 
108
                
 
109
                internal void NotifyShown ()
 
110
                {
 
111
                        if (PadHidden != null)
 
112
                                PadHidden (this, EventArgs.Empty);
 
113
                }
 
114
                
105
115
                public event EventHandler PadShown;
106
116
                public event EventHandler PadHidden;
107
117