* XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / QueryContinueDragEventArgs.cs
index 1008a635bccdf9efd6f9a1b0654367f497eee395..85e151668b278963f5ce1b8330627838e5b3b0d5 100644 (file)
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-// Copyright (c) 2004 Novell, Inc.
+// Copyright (c) 2004-2005 Novell, Inc.
 //
 // Authors:
 //     Peter Bartok    pbartok@novell.com
 //
 //
-// $Revision: 1.1 $
-// $Modtime: $
-// $Log: QueryContinueDragEventArgs.cs,v $
-// Revision 1.1  2004/07/09 05:21:25  pbartok
-// - Initial check-in
-//
-//
+
 
 // COMPLETE
 
+using System.Runtime.InteropServices;
+
 namespace System.Windows.Forms {
+       [ComVisible(true)]
        public class QueryContinueDragEventArgs : EventArgs {
-               private int             key_state;
-               private bool            escape_pressed;
-               private DragAction      drag_action;
+               internal int            key_state;
+               internal bool           escape_pressed;
+               internal DragAction     drag_action;
 
                #region Public Constructors
                public QueryContinueDragEventArgs(int keyState, bool escapePressed, DragAction action) {
-                       this.key_state=keyState;
-                       this.escape_pressed=escapePressed;
-                       this.drag_action=action;
+                       this.key_state = keyState;
+                       this.escape_pressed = escapePressed;
+                       this.drag_action = action;
                }
                #endregion      // Public Constructors