2005-11-01 Peter Dennis Bartok <pbartok@novell.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / Panel.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 //
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2004-2005 Novell, Inc.
21 //
22 // Authors:
23 //      Jackson Harper (jackson@ximian.com)
24 //
25
26 // COMPLETE
27
28 using System;
29 using System.ComponentModel;
30 using System.ComponentModel.Design;
31 using System.Drawing;
32 using System.Runtime.InteropServices;
33
34 namespace System.Windows.Forms {
35         [DefaultProperty("BorderStyle")]
36         [DefaultEvent("Paint")]
37         [Designer ("System.Windows.Forms.Design.PanelDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
38         public class Panel : ScrollableControl {
39                 #region Constructors & Destructors
40                 public Panel () {
41                         base.TabStop = false;
42                         SetStyle(ControlStyles.Selectable, false);
43                         SetStyle (ControlStyles.SupportsTransparentBackColor, true);
44                 }
45                 #endregion      // Constructors & Destructors
46
47                 #region Public Instance Properties
48                 [DefaultValue(BorderStyle.None)]
49                 [DispId(-504)]
50                 public BorderStyle BorderStyle {
51                         get { return InternalBorderStyle; }
52                         set { InternalBorderStyle = value; }
53                 }
54
55                 [DefaultValue(false)]
56                 public new bool TabStop {
57                         get { return base.TabStop; }
58                         set {
59                                 if (value == TabStop)
60                                         return;
61                                 base.TabStop = value;
62                         }
63                 }
64
65                 [Bindable(false)]
66                 [Browsable(false)]
67                 [EditorBrowsable(EditorBrowsableState.Never)]
68                 public override string Text {
69                         get { return base.Text; }
70                         set {
71                                 if (value == Text)
72                                         return;
73                                 base.Text = value;
74                                 Refresh ();
75                         }
76                 }
77                 #endregion      // Public Instance Properties
78
79                 #region Protected Instance Properties
80                 protected override CreateParams CreateParams {
81                         get {
82                                 return base.CreateParams;
83                         }
84                 }
85
86                 protected override Size DefaultSize {
87                         get { return ThemeEngine.Current.PanelDefaultSize; }
88                 }
89                 #endregion      // Proteced Instance Properties
90
91                 #region Public Instance Methods
92                 public override string ToString ()
93                 {
94                         return base.ToString () + ", BorderStyle: " + BorderStyle;
95                 }
96                 #endregion      // Public Instance Methods
97
98                 #region Protected Instance Methods
99                 protected override void OnResize(EventArgs e) {
100                         base.OnResize (e);
101                         Invalidate(true);
102                 }
103
104                 #endregion      // Protected Instance Methods
105
106                 #region Events
107                 [Browsable(false)]
108                 [EditorBrowsable(EditorBrowsableState.Never)]
109                 public event KeyEventHandler            KeyDown;
110
111                 [Browsable(false)]
112                 [EditorBrowsable(EditorBrowsableState.Never)]
113                 public event KeyPressEventHandler       KeyPress;
114
115                 [Browsable(false)]
116                 [EditorBrowsable(EditorBrowsableState.Never)]
117                 public event KeyEventHandler            KeyUp;
118
119                 [Browsable(false)]
120                 [EditorBrowsable(EditorBrowsableState.Never)]
121                 public event EventHandler               TextChanged;
122                 #endregion
123         }
124 }
125