2002-7-1 DennisHayes <dennish@raytek.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / StatusBarPanel.cs
1 //\r
2 // System.Windows.Forms.StatusBarPanel\r
3 //\r
4 // Author:\r
5 //   stubbed out by Richard Baumann (biochem333@nyc.rr.com)\r
6 //\r
7 // (C) Ximian, Inc., 2002\r
8 //\r
9 \r
10 namespace System.Windows.Forms\r
11 {\r
12         // <summary>\r
13         //      This is only a template. Nothing is implemented yet.\r
14         //      Represents a panel in a StatusBar control.\r
15         // </summary>\r
16 using System.ComponentModel;\r
17         public class StatusBarPanel : Component, ISupportInitialize\r
18         {\r
19                 //\r
20                 //  --- Public Methods\r
21                 //\r
22                 //[MonoTODO]\r
23                 //StatusBarPanel()\r
24                 //{\r
25                 //      throw new NotImplementedException ();\r
26                 //      // defaults :)\r
27                 //      alignment = HorizontalAlignment.Left;\r
28                 //      autoSize = StatusBarPanelAutoSize.None;\r
29                 //      borderStyle = StatusBarPanelBorderStyle.Sunken;\r
30                 //      icon = null;\r
31                 //      minWidth = 10;\r
32                 //      style = StatusBarPanelStyle.Text;\r
33                 //      text = "";\r
34                 //      toolTipText = "";\r
35                 //      width = 100;\r
36                 //}\r
37                 //[MonoTODO]\r
38                 //public override string ToString()\r
39                 //{\r
40                 //      throw new NotImplementedException ();\r
41                 //}\r
42 \r
43                 //\r
44                 //  --- Protected Methods\r
45                 //\r
46                 //[MonoTODO]\r
47                 //~StatusBarPanel()\r
48                 //{\r
49                 //      throw new NotImplementedException ();\r
50                 //}\r
51                 //[MonoTODO]\r
52                 //protected override void Dispose(bool disposing)\r
53                 //{\r
54                 //      throw new NotImplementedException ();\r
55                 //}\r
56 \r
57                 //\r
58                 //  --- Public Properties\r
59                 //\r
60                 //[MonoTODO]\r
61                 //public HorizontalAlignment Alignment\r
62                 //{\r
63                 //      get{ throw new NotImplementedException (); }\r
64                 //      set{ throw new NotImplementedException (); }\r
65                 //}\r
66                 //[MonoTODO]\r
67                 //public StatusBarPanelAutoSize AutoSize\r
68                 //{\r
69                 //      get{ throw new NotImplementedException (); }\r
70                 //      set{ throw new NotImplementedException (); }\r
71                 //}\r
72                 //[MonoTODO]\r
73                 //public StatusBarPanelBorderStyle BorderStyle\r
74                 //{\r
75                 //      get{ throw new NotImplementedException (); }\r
76                 //      set{ throw new NotImplementedException (); }\r
77                 //}\r
78                 //[MonoTODO]\r
79                 //public Icon Icon\r
80                 //{\r
81                 //      get{ throw new NotImplementedException (); }\r
82                 //      set{ throw new NotImplementedException (); }\r
83                 //}\r
84                 //[MonoTODO]\r
85                 //public int MinWidth\r
86                 //{\r
87                 //      get{ throw new NotImplementedException (); }\r
88                 //      set{ throw new NotImplementedException (); }\r
89                 //}\r
90                 //[MonoTODO]\r
91                 //public StatusBar Parent\r
92                 //{\r
93                 //      get{ throw new NotImplementedException (); }\r
94                 //      set{ throw new NotImplementedException (); }\r
95                 //}\r
96                 //[MonoTODO]\r
97                 //public StatusBarPanelStyle Style\r
98                 //{\r
99                 //      get{ throw new NotImplementedException (); }\r
100                 //      set{ throw new NotImplementedException (); }\r
101                 //}\r
102                 //[MonoTODO]\r
103                 //public string Text\r
104                 //{\r
105                 //      get{ throw new NotImplementedException (); }\r
106                 //      set{ throw new NotImplementedException (); }\r
107                 //}\r
108                 //[MonoTODO]\r
109                 //public string ToolTipText\r
110                 //{\r
111                 //      get{ throw new NotImplementedException (); }\r
112                 //      set{ throw new NotImplementedException (); }\r
113                 //}\r
114                 //[MonoTODO]\r
115                 //public int Width\r
116                 //{\r
117                 //      get{ throw new NotImplementedException (); }\r
118                 //      set{ throw new NotImplementedException (); }\r
119                 //}\r
120         }\r
121 }