This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathEventMotion.cs
120 lines (96 loc) · 3.45 KB
/
EventMotion.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Gdk.EventMotion.cs - Custom motion event wrapper
//
// Author: Mike Kestner <[email protected]>
//
// Copyright (c) 2004 Novell, Inc.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of version 2 of the Lesser GNU General
// Public License as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this program; if not, write to the
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.
namespace Gdk {
using System;
using System.Runtime.InteropServices;
public class EventMotion : Event {
[DllImport("gdksharpglue-2", CallingConvention=CallingConvention.Cdecl)]
static extern uint gtksharp_gdk_event_motion_get_time (IntPtr evt);
[DllImport("gdksharpglue-2", CallingConvention=CallingConvention.Cdecl)]
static extern double gtksharp_gdk_event_motion_get_x (IntPtr evt);
[DllImport("gdksharpglue-2", CallingConvention=CallingConvention.Cdecl)]
static extern double gtksharp_gdk_event_motion_get_y (IntPtr evt);
[DllImport("gdksharpglue-2", CallingConvention=CallingConvention.Cdecl)]
static extern double gtksharp_gdk_event_motion_get_x_root (IntPtr evt);
[DllImport("gdksharpglue-2", CallingConvention=CallingConvention.Cdecl)]
static extern double gtksharp_gdk_event_motion_get_y_root (IntPtr evt);
[DllImport("gdksharpglue-2", CallingConvention=CallingConvention.Cdecl)]
static extern uint gtksharp_gdk_event_motion_get_state (IntPtr evt);
[DllImport("gdksharpglue-2", CallingConvention=CallingConvention.Cdecl)]
static extern ushort gtksharp_gdk_event_motion_get_is_hint (IntPtr evt);
[DllImport("gdksharpglue-2", CallingConvention=CallingConvention.Cdecl)]
static extern IntPtr gtksharp_gdk_event_motion_get_device (IntPtr evt);
[DllImport("gdksharpglue-2", CallingConvention=CallingConvention.Cdecl)]
static extern IntPtr gtksharp_gdk_event_motion_get_axes (IntPtr evt);
public EventMotion (IntPtr raw) : base (raw) { }
public EventMotion (IntPtr raw, bool owned) : base (raw, owned) { }
public uint Time {
get {
return gtksharp_gdk_event_motion_get_time (Handle);
}
}
public ModifierType State {
get {
return (ModifierType) gtksharp_gdk_event_motion_get_state (Handle);
}
}
public double X {
get {
return gtksharp_gdk_event_motion_get_x (Handle);
}
}
public double Y {
get {
return gtksharp_gdk_event_motion_get_y (Handle);
}
}
public double XRoot {
get {
return gtksharp_gdk_event_motion_get_x_root (Handle);
}
}
public double YRoot {
get {
return gtksharp_gdk_event_motion_get_y_root (Handle);
}
}
public bool IsHint {
get {
return gtksharp_gdk_event_motion_get_is_hint (Handle) == 0 ? false : true;
}
}
public Device Device {
get {
return GLib.Object.GetObject (gtksharp_gdk_event_motion_get_device (Handle)) as Device;
}
}
public double[] Axes {
get {
double[] result = null;
IntPtr axes = gtksharp_gdk_event_motion_get_axes (Handle);
if (axes != IntPtr.Zero) {
result = new double [Device.NumAxes];
Marshal.Copy (axes, result, 0, result.Length);
}
return result;
}
}
}
}