imported everything from my branch (which is slightly harmless).
[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 Novell, Inc.
21 //
22 // Authors:
23 //      Jackson Harper (jackson@ximian.com)
24 //
25
26 // NOT 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                 }
44                 #endregion      // Constructors & Destructors
45
46                 #region Public Instance Properties
47                 [DefaultValue(BorderStyle.None)]
48                 [DispId(-504)]
49                 public BorderStyle BorderStyle {
50                         get { return border_style; }
51                         set {
52                                 if (value == border_style)
53                                         return;
54                                 border_style = value;
55                                 Refresh ();
56                         }
57                 }
58
59                 [DefaultValue(false)]
60                 public new bool TabStop {
61                         get { return base.TabStop; }
62                         set {
63                                 if (value == TabStop)
64                                         return;
65                                 base.TabStop = value;
66                         }
67                 }
68
69                 [Bindable(false)]
70                 [Browsable(false)]
71                 [EditorBrowsable(EditorBrowsableState.Never)]
72                 public override string Text {
73                         get { return base.Text; }
74                         set {
75                                 if (value == Text)
76                                         return;
77                                 base.Text = value;
78                                 Refresh ();
79                         }
80                 }
81                 #endregion      // Public Instance Properties
82
83                 #region Protected Instance Properties
84                 protected override CreateParams CreateParams {
85                         get {
86                                 return base.CreateParams;
87                         }
88                 }
89
90                 protected override Size DefaultSize {
91                         get { return ThemeEngine.Current.PanelDefaultSize; }
92                 }
93                 #endregion      // Proteced Instance Properties
94
95                 #region Public Instance Methods
96                 public override string ToString ()
97                 {
98                         return base.ToString () + ", BorderStyle: " + BorderStyle;
99                 }
100                 #endregion      // Public Instance Methods
101
102                 #region Protected Instance Methods
103                 protected override void OnResize(EventArgs e) {\r
104                         base.OnResize (e);\r
105                         Invalidate(true);\r
106                 }\r
107
108                 #endregion      // Protected Instance Methods
109
110                 #region Events
111                 [Browsable(false)]
112                 [EditorBrowsable(EditorBrowsableState.Never)]
113                 public event KeyEventHandler            KeyDown;
114
115                 [Browsable(false)]
116                 [EditorBrowsable(EditorBrowsableState.Never)]
117                 public event KeyPressEventHandler       KeyPress;
118
119                 [Browsable(false)]
120                 [EditorBrowsable(EditorBrowsableState.Never)]
121                 public event KeyEventHandler            KeyUp;
122
123                 [Browsable(false)]
124                 [EditorBrowsable(EditorBrowsableState.Never)]
125                 public event EventHandler               TextChanged;
126                 #endregion
127         }
128 }
129