(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / Gtk / QueryContinueDragEventArgs.cs
blobc02aa1e4437fe451b161eb844c464a36f4372e7f
1 //
2 // System.Windows.Forms.QueryContinueDragEventArgs.cs
3 //
4 // Author:
5 // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 // Partially completed by Dennis Hayes (dennish@raytek.com)
7 // Gianandrea Terzi (gterzi@lario.com)
8 //
9 // (C) 2002 Ximian, Inc
12 using System.Runtime.InteropServices;
14 namespace System.Windows.Forms {
16 // <summary>
17 // </summary>
19 public class QueryContinueDragEventArgs : EventArgs {
21 #region Fields
23 private int keystate;
24 private bool escapepressed;
25 private DragAction action;
27 #endregion
29 // --- Constructor
31 public QueryContinueDragEventArgs(int keyState, bool escapePressed, DragAction action)
33 this.keystate = keyState;
34 this.escapepressed = escapePressed;
35 this.action = action;
38 #region Public Properties
40 [ComVisible(true)]
41 public DragAction Action {
42 get {
43 return action;
45 set {
46 action = value;
50 [ComVisible(true)]
51 public bool EscapePressed {
52 get {
53 return escapepressed;
57 [ComVisible(true)]
58 public int KeyState {
59 get {
60 return keystate;
63 #endregion