* ImageList.cs: When the image stream is set pull all the images
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / StatusBarPanel.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 // COMPLETE
26
27 using System;
28 using System.Drawing;
29 using System.ComponentModel;
30 using System.ComponentModel.Design;
31 using System.Runtime.InteropServices;
32
33 namespace System.Windows.Forms {
34         [DefaultProperty("Text")]
35         [DesignTimeVisible(false)]
36         public class StatusBarPanel : Component, ISupportInitialize {
37                 #region Local Variables
38                 private StatusBar parent;
39
40                 private string text = String.Empty;
41                 private string tool_tip_text = String.Empty;
42
43                 private Icon icon;
44                 private HorizontalAlignment alignment = HorizontalAlignment.Left;
45                 private StatusBarPanelAutoSize auto_size = StatusBarPanelAutoSize.None;
46                 private StatusBarPanelBorderStyle border_style = StatusBarPanelBorderStyle.Sunken;
47                 private StatusBarPanelStyle style;
48                 private int width = 100;
49                 private int min_width = 10;
50                 #endregion      // Local Variables
51
52                 #region Constructors
53                 public StatusBarPanel ()
54                 {
55                 }
56                 #endregion      // Constructors
57
58                 [DefaultValue(HorizontalAlignment.Left)]
59                 [Localizable(true)]
60                 public HorizontalAlignment Alignment {
61                         get { return alignment; }
62                         set { alignment = value; }
63                 }
64
65                 [DefaultValue(StatusBarPanelAutoSize.None)]
66                 public StatusBarPanelAutoSize AutoSize {
67                         get { return auto_size; }
68                         set { auto_size = value; }
69                 }
70
71                 [DefaultValue(StatusBarPanelBorderStyle.Sunken)]
72                 [DispId(-504)]
73                 public StatusBarPanelBorderStyle BorderStyle {
74                         get { return border_style; }
75                         set { border_style = value; }
76                 }
77
78                 [DefaultValue(null)]
79                 [Localizable(true)]
80                 public Icon Icon {
81                         get { return icon; }
82                         set { icon = value; }
83                 }
84
85                 [DefaultValue(10)]
86                 [Localizable(true)]
87                 [RefreshProperties(RefreshProperties.All)]
88                 public int MinWidth {
89                         get {
90                                 if (AutoSize == StatusBarPanelAutoSize.None)
91                                         return Width;
92                                 return min_width;
93                         }
94                         set {
95                                 if (value < 0)
96                                         throw new ArgumentException ("value");
97                                 min_width = value;
98                         }
99                 }
100                 
101                 [DefaultValue(100)]
102                 [Localizable(true)]
103                 public int Width {
104                         get { return width; }
105                         set {
106                                 if (value < 0)
107                                         throw new ArgumentException ("value");
108                                 width = value;
109                         }
110                 }
111                 
112                 [DefaultValue(StatusBarPanelStyle.Text)]
113                 public StatusBarPanelStyle Style {
114                         get { return style; }
115                         set { style = value; }
116                 }
117
118                 [DefaultValue("")]
119                 [Localizable(true)]
120                 public string Text {
121                         get { return text; }
122                         set { text = value; }
123                 }
124
125                 [DefaultValue("")]
126                 [Localizable(true)]
127                 public string ToolTipText {
128                         get { return tool_tip_text; }
129                         set { tool_tip_text = value; }
130                 }
131
132                 [Browsable(false)]
133                 public StatusBar Parent {
134                         get { return parent; }
135                 }
136
137                 internal void SetParent (StatusBar parent)
138                 {
139                         this.parent = parent;
140                 }
141
142                 public override string ToString ()
143                 {
144                         return "StatusBarPanel: {" + Text +"}";
145                 }
146
147                 [MonoTODO]
148                 protected override void Dispose (bool disposing)
149                 {
150                 }
151
152                 [MonoTODO]
153                 public virtual void BeginInit()
154                 {
155                 }
156
157                 [MonoTODO]
158                 public virtual void EndInit()
159                 {
160                 }
161         }
162 }
163
164