* Mono.Cairo/Cairo.cs (cairo_set_target_drawable): Not available anymore, removed.
[mono.git] / mcs / class / System.Drawing.Design / System.Drawing.Design / CursorEditor.cs
1 //
2 // System.Drawing.Design.CursorEditor.cs
3 // 
4 // Authors:
5 //  Martin Willemoes Hansen (mwh@sysrq.dk)
6 //  Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 // 
8 // (C) 2003 Martin Willemoes Hansen
9 // (C) 2003 Andreas Nahr
10 // 
11 using System;
12 using System.Drawing;
13 using System.ComponentModel;
14 namespace System.Drawing.Design
15 {
16         public class CursorEditor : UITypeEditor
17         {
18
19                 public CursorEditor()
20                 {
21                 }
22
23                 [MonoTODO]
24                 public override object EditValue (ITypeDescriptorContext context,
25                         IServiceProvider provider, object value)
26                 {
27                         // TODO IMPLEMENT
28                         return value;
29                 }
30
31                 public override UITypeEditorEditStyle GetEditStyle (
32                         ITypeDescriptorContext context)
33                 {
34                         return UITypeEditorEditStyle.DropDown;
35                 }
36         }
37 }