remove old cvs comments since they are no longer updated and we use ChangeLog now
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / Cursor.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 // NOT COMPLETE
28
29 using System;
30 using System.Drawing;
31 using System.Runtime.Serialization;
32
33 namespace System.Windows.Forms {
34         public sealed class Cursor : IDisposable, ISerializable {
35                 
36                 #region Public Constructors
37                 // This is supposed to take a Win32 handle
38                 public Cursor(IntPtr handle) {
39                 }
40
41                 public Cursor(System.IO.Stream stream) {
42                 }
43
44                 public Cursor(string fileName) {
45                 }
46
47                 public Cursor(Type type, string resource) {
48                 }
49                 #endregion      // Public Constructors
50
51                 #region Public Static Properties
52                 public static Rectangle Clip {
53                         get {
54                                 IntPtr          handle;
55                                 bool            confined;
56                                 Rectangle       rect;
57                                 Size            size;
58
59                                 XplatUI.GrabInfo(out handle, out confined, out rect);
60                                 if (handle != IntPtr.Zero) {
61                                         return rect;
62                                 }
63
64                                 XplatUI.GetDisplaySize(out size);
65                                 rect.X = 0;
66                                 rect.Y = 0;
67                                 rect.Width = size.Width;
68                                 rect.Height = size.Height;
69                                 return rect;
70                         }
71
72                         [MonoTODO("First need to add ability to set cursor clip rectangle to XplatUI drivers to implement this property")]
73                         set {
74                                 ;
75                         }
76                 }
77
78                 public static Point Position {
79                         get {
80                                 int x;
81                                 int y;
82
83                                 XplatUI.GetCursorPos (IntPtr.Zero, out x, out y);
84                                 return new Point (x, y);
85                         }
86
87                         set {
88                                 XplatUI.SetCursorPos(IntPtr.Zero, value.X, value.Y);
89                         }
90                 }
91                 #endregion      // Public Static Properties
92
93                 #region Public Instance Properties
94                 #endregion      // Public Instance Properties
95
96                 #region Public Instance Methods
97                 public void Dispose() {
98                 }
99
100                 void ISerializable.GetObjectData(SerializationInfo si, StreamingContext context) {
101                         throw new NotImplementedException();
102                 }
103                 #endregion      // Public Instance Methods
104         }
105 }