Merge pull request #1275 from ranma42/fix-lib64
[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 using System.ComponentModel;
26
27 namespace System.Windows.Forms
28 {
29         public abstract class ScrollProperties
30         {
31                 #region Private Fields
32                 private ScrollableControl parentControl;
33                 internal ScrollBar scroll_bar;
34                 #endregion
35
36                 #region constructor
37                 protected ScrollProperties (ScrollableControl container)
38                 {
39                         parentControl = container;
40                 }
41                 #endregion
42
43                 #region Public Properties
44                 [DefaultValue (true)]
45                 public bool Enabled {
46                         get { return scroll_bar.Enabled; }
47                         set { scroll_bar.Enabled = value; }
48                 }
49                 
50                 [DefaultValue (10)]
51                 [RefreshProperties (RefreshProperties.Repaint)]
52                 public int LargeChange {
53                         get { return scroll_bar.LargeChange; }
54                         set { scroll_bar.LargeChange = value; }
55                 }
56
57                 [DefaultValue (100)]
58                 [RefreshProperties (RefreshProperties.Repaint)]
59                 public int Maximum {
60                         get { return scroll_bar.Maximum; }
61                         set { scroll_bar.Maximum = value; }
62                 }
63
64                 [DefaultValue (0)]
65                 [RefreshProperties (RefreshProperties.Repaint)]
66                 public int Minimum {
67                         get { return scroll_bar.Minimum; }
68                         set { scroll_bar.Minimum = value; }
69                 }
70
71                 [DefaultValue (1)]
72                 public int SmallChange {
73                         get { return scroll_bar.SmallChange; }
74                         set { scroll_bar.SmallChange = value; }
75                 }
76
77                 [DefaultValue (0)]
78                 [BindableAttribute (true)]
79                 public int Value {
80                         get { return scroll_bar.Value; }
81                         set { scroll_bar.Value = value; }
82                 }
83
84                 [DefaultValue (false)]
85                 public bool Visible {
86                         get { return scroll_bar.Visible; }
87                         set { scroll_bar.Visible = value; }
88                 }
89                 #endregion
90
91                 #region Protected Properties
92                 protected ScrollableControl ParentControl {
93                         get { return parentControl; }
94                 }
95                 #endregion
96         }
97 }