**** Merged from MCS ****
[mono-project.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / StatusBarPanel.cs
blob3f2693f557a0ae40ba05a48532b0390f9f541e81
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.
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.
20 // Copyright (c) 2004 Novell, Inc.
22 // Authors:
23 // Jackson Harper (jackson@ximian.com)
26 using System;
27 using System.Drawing;
28 using System.ComponentModel;
30 namespace System.Windows.Forms {
32 public class StatusBarPanel : Component, ISupportInitialize {
34 private StatusBar parent;
36 private string text = String.Empty;
37 private string tool_tip_text = String.Empty;
39 private Icon icon;
40 private HorizontalAlignment alignment = HorizontalAlignment.Left;
41 private StatusBarPanelAutoSize auto_size = StatusBarPanelAutoSize.None;
42 private StatusBarPanelBorderStyle border_style = StatusBarPanelBorderStyle.Sunken;
43 private StatusBarPanelStyle style;
44 private int width = 100;
45 private int min_width = 10;
47 public StatusBarPanel ()
51 public HorizontalAlignment Alignment {
52 get { return alignment; }
53 set { alignment = value; }
56 public StatusBarPanelAutoSize AutoSize {
57 get { return auto_size; }
58 set { auto_size = value; }
61 public StatusBarPanelBorderStyle BorderStyle {
62 get { return border_style; }
63 set { border_style = value; }
66 public Icon Icon {
67 get { return icon; }
68 set { icon = value; }
71 public int MinWidth {
72 get {
73 if (AutoSize == StatusBarPanelAutoSize.None)
74 return Width;
75 return min_width;
77 set {
78 if (value < 0)
79 throw new ArgumentException ("value");
80 min_width = value;
84 public int Width {
85 get { return width; }
86 set {
87 if (value < 0)
88 throw new ArgumentException ("value");
89 width = value;
93 public StatusBarPanelStyle Style {
94 get { return style; }
95 set { style = value; }
98 public string Text {
99 get { return text; }
100 set { text = value; }
103 public string ToolTipText {
104 get { return tool_tip_text; }
105 set { tool_tip_text = value; }
108 public StatusBar Parent {
109 get { return parent; }
112 internal void SetParent (StatusBar parent)
114 this.parent = parent;
117 public override string ToString ()
119 return "StatusBarPanel: {" + Text +"}";
122 [MonoTODO]
123 protected override void Dispose (bool disposing)
127 [MonoTODO]
128 public virtual void BeginInit()
132 [MonoTODO]
133 public virtual void EndInit()