2007-08-28 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ScrollProperties.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 // Authors:
21 //      Olivier Dufour  olivier.duff@free.fr
22 //      Jonathan Pobst  monkey@jpobst.com
23 //
24
25 #if NET_2_0
26 using System.ComponentModel;
27
28 namespace System.Windows.Forms
29 {
30         public abstract class ScrollProperties
31         {
32                 #region Private Fields
33                 private ScrollableControl parentControl;
34                 internal ScrollBar scroll_bar;
35                 #endregion
36
37                 #region constructor
38                 protected ScrollProperties (ScrollableControl container)
39                 {
40                         parentControl = container;
41                 }
42                 #endregion
43
44                 #region Public Properties
45                 [DefaultValue (true)]
46                 public bool Enabled {
47                         get { return scroll_bar.Enabled; }
48                         set { scroll_bar.Enabled = value; }
49                 }
50                 
51                 [DefaultValue (10)]
52                 [RefreshProperties (RefreshProperties.Repaint)]
53                 public int LargeChange {
54                         get { return scroll_bar.LargeChange; }
55                         set { scroll_bar.LargeChange = value; }
56                 }
57
58                 [DefaultValue (100)]
59                 [RefreshProperties (RefreshProperties.Repaint)]
60                 public int Maximum {
61                         get { return scroll_bar.Maximum; }
62                         set { scroll_bar.Maximum = value; }
63                 }
64
65                 [DefaultValue (0)]
66                 [RefreshProperties (RefreshProperties.Repaint)]
67                 public int Minimum {
68                         get { return scroll_bar.Minimum; }
69                         set { scroll_bar.Minimum = value; }
70                 }
71
72                 [DefaultValue (1)]
73                 public int SmallChange {
74                         get { return scroll_bar.SmallChange; }
75                         set { scroll_bar.SmallChange = value; }
76                 }
77
78                 [DefaultValue (0)]
79                 [BindableAttribute (true)]
80                 public int Value {
81                         get { return scroll_bar.Value; }
82                         set { scroll_bar.Value = value; }
83                 }
84
85                 [DefaultValue (false)]
86                 public bool Visible {
87                         get { return scroll_bar.Visible; }
88                         set { scroll_bar.Visible = value; }
89                 }
90                 #endregion
91
92                 #region Protected Properties
93                 protected ScrollableControl ParentControl {
94                         get { return parentControl; }
95                 }
96                 #endregion
97         }
98 }
99 #endif