*** empty log message ***
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / GiveFeedbackEventArgs.cs
1 //\r
2 // System.Windows.Forms.GiveFeedbackEventArgs.cs\r
3 //\r
4 // Author:\r
5 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)\r
6 //      Partialy completed by Dennis Hayes (dennish@raytek.com)\r
7 // (C) 2002 Ximian, Inc\r
8 //\r
9 \r
10 namespace System.Windows.Forms {\r
11 \r
12         /// <summary>\r
13         ///\r
14         /// </summary>\r
15 \r
16     public class GiveFeedbackEventArgs : EventArgs {\r
17 \r
18                 DragDropEffects effect;\r
19                 bool useDefaultCursors;\r
20 \r
21                 //  --- Constructor\r
22                 \r
23                 public GiveFeedbackEventArgs(  DragDropEffects effect,  bool useDefaultCursors )\r
24                 {\r
25                         this.effect = effect;\r
26                         this.useDefaultCursors = useDefaultCursors;\r
27                 }\r
28                 \r
29                 //  --- Public Properties\r
30                 public DragDropEffects Effect {\r
31                         get {\r
32                                 return effect;\r
33                         }\r
34                 }\r
35                 public bool UseDefaultCursors {\r
36                         get {\r
37                                 return useDefaultCursors;\r
38                         }\r
39                         set {\r
40                                 useDefaultCursors = value;\r
41                         }\r
42                 }\r
43 \r
44                 \r
45                 //      --- Public Methods\r
46                 \r
47 //              [MonoTODO]\r
48 //              public virtual bool Equals(object o);\r
49 //              {\r
50 //                      //throw new NotImplementedException ();\r
51 //                      return false;\r
52 //              }\r
53 //              [MonoTODO]\r
54 //              public static bool Equals(object o1, object o2);\r
55 //              {\r
56 //                      throw new NotImplementedException ();\r
57 //              }\r
58         }\r
59 }\r