New test.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / CreateParams.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-2006 Novell, Inc.
21 //
22 // Authors:
23 //      Peter Bartok    pbartok@novell.com
24 //
25
26
27 // COMPLETE
28
29 using System.Collections;
30 using System.ComponentModel;
31
32 namespace System.Windows.Forms {
33         public class CreateParams {
34                 #region Local Variables
35                 private string  caption;
36                 private string  class_name;
37                 private int     class_style;
38                 private int     ex_style;
39                 private int     x;
40                 private int     y;
41                 private int     height;
42                 private int     width;
43                 private int     style;
44                 private object  param;
45                 private IntPtr  parent;
46                 internal Menu   menu;
47                 #endregion      // Local variables
48
49                 #region Public Constructors
50                 public CreateParams() {
51                 }
52                 #endregion      // Public Constructors
53
54                 #region Public Instance Properties
55                 public string Caption {
56                         get { return caption; }
57                         set { caption = value; }
58                 }
59
60                 public string ClassName {
61                         get { return class_name; }
62                         set { class_name = value; }
63                 }
64
65                 public int ClassStyle {
66                         get { return class_style; }
67                         set { class_style = value; }
68                 }
69
70                 public int ExStyle {
71                         get { return ex_style; }
72                         set { ex_style = value; }
73                 }
74
75                 public int X {
76                         get { return x; }
77                         set { x = value; }
78                 }
79
80                 public int Y {
81                         get { return y; }
82                         set { y = value; }
83                 }
84
85                 public int Width {
86                         get { return width; }
87                         set { width = value; }
88                 }
89
90                 public int Height {
91                         get { return height; }
92                         set { height = value; }
93                 }
94
95                 public int Style {
96                         get { return style; }
97                         set { style = value; }
98                 }
99
100                 public object Param {
101                         get { return param; }
102                         set { param = value; }
103                 }
104
105                 public IntPtr Parent {
106                         get { return parent; }
107                         set { parent = value; }
108                 }
109                 #endregion      // Public Instance Properties
110
111                 #region Public Instance Methods
112                 public override string ToString() {
113                         return "CreateParams {'" + class_name + 
114                                 "', '" + caption + 
115                                 "', " + String.Format("0x{0:X}", class_style) +
116                                 ", " + String.Format("0x{0:X}", ex_style) +
117                                 ", {" + String.Format("{0}", x) +
118                                 ", " + String.Format("{0}", y) +
119                                 ", " + String.Format("{0}", width) +
120                                 ", " + String.Format("{0}", height) +
121                                 "}}";
122                 }
123                 #endregion      // Public Instance Methods
124
125         }
126 }