* TreeView.cs: Don't draw the selected node when we lose
[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 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                 #endregion      // Local variables
47
48                 #region Public Constructors
49                 public CreateParams() {
50                 }
51                 #endregion      // Public Constructors
52
53                 #region Public Instance Properties
54                 public string Caption {
55                         get { return caption; }
56                         set { caption = value; }
57                 }
58
59                 public string ClassName {
60                         get { return class_name; }
61                         set { class_name = value; }
62                 }
63
64                 public int ClassStyle {
65                         get { return class_style; }
66                         set { class_style = value; }
67                 }
68
69                 public int ExStyle {
70                         get { return ex_style; }
71                         set { ex_style = value; }
72                 }
73
74                 public int X {
75                         get { return x; }
76                         set { x = value; }
77                 }
78
79                 public int Y {
80                         get { return y; }
81                         set { y = value; }
82                 }
83
84                 public int Width {
85                         get { return width; }
86                         set { width = value; }
87                 }
88
89                 public int Height {
90                         get { return height; }
91                         set { height = value; }
92                 }
93
94                 public int Style {
95                         get { return style; }
96                         set { style = value; }
97                 }
98
99                 public object Param {
100                         get { return param; }
101                         set { param = value; }
102                 }
103
104                 public IntPtr Parent {
105                         get { return parent; }
106                         set { parent = value; }
107                 }
108                 #endregion      // Public Instance Properties
109
110                 #region Public Instance Methods
111                 public override string ToString() {
112                         return "CreateParams {'" + class_name + 
113                                 "', '" + caption + 
114                                 "', " + String.Format("0x{0:X}", class_style) +
115                                 ", " + String.Format("0x{0:X}", ex_style) +
116                                 ", {" + String.Format("{0}", x) +
117                                 ", " + String.Format("{0}", y) +
118                                 ", " + String.Format("{0}", width) +
119                                 ", " + String.Format("{0}", height) +
120                                 "}}";
121                 }
122                 #endregion      // Public Instance Methods
123
124         }
125 }