File: Gtk_GestureDrag.cs

package info (click to toggle)
gnome-subtitles 1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 103,144 kB
  • sloc: xml: 406,395; cs: 364,495; ansic: 3,104; perl: 1,477; sh: 769; python: 545; javascript: 500; makefile: 49
file content (254 lines) | stat: -rw-r--r-- 8,169 bytes parent folder | download
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.

namespace Gtk {

	using System;
	using System.Collections;
	using System.Collections.Generic;
	using System.Runtime.InteropServices;

#region Autogenerated code
	public partial class GestureDrag : Gtk.GestureSingle {

		public GestureDrag (IntPtr raw) : base(raw) {}

		[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern IntPtr gtk_gesture_drag_new(IntPtr widget);

		public GestureDrag (Gtk.Widget widget) : base (IntPtr.Zero)
		{
			if (GetType () != typeof (GestureDrag)) {
				var vals = new List<GLib.Value> ();
				var names = new List<string> ();
				if (widget != null) {
					names.Add ("widget");
					vals.Add (new GLib.Value (widget));
				}
				CreateNativeObject (names.ToArray (), vals.ToArray ());
				return;
			}
			Raw = gtk_gesture_drag_new(widget == null ? IntPtr.Zero : widget.Handle);
		}

		[GLib.Signal("drag-end")]
		public event Gtk.DragEndHandler DragEnd {
			add {
				this.AddSignalHandler ("drag-end", value, typeof (Gtk.DragEndArgs));
			}
			remove {
				this.RemoveSignalHandler ("drag-end", value);
			}
		}

		[GLib.Signal("drag-begin")]
		public event Gtk.DragBeginHandler DragBegin {
			add {
				this.AddSignalHandler ("drag-begin", value, typeof (Gtk.DragBeginArgs));
			}
			remove {
				this.RemoveSignalHandler ("drag-begin", value);
			}
		}

		[GLib.Signal("drag-update")]
		public event Gtk.DragUpdateHandler DragUpdate {
			add {
				this.AddSignalHandler ("drag-update", value, typeof (Gtk.DragUpdateArgs));
			}
			remove {
				this.RemoveSignalHandler ("drag-update", value);
			}
		}

		static DragBeginNativeDelegate DragBegin_cb_delegate;
		static DragBeginNativeDelegate DragBeginVMCallback {
			get {
				if (DragBegin_cb_delegate == null)
					DragBegin_cb_delegate = new DragBeginNativeDelegate (DragBegin_cb);
				return DragBegin_cb_delegate;
			}
		}

		static void OverrideDragBegin (GLib.GType gtype)
		{
			OverrideDragBegin (gtype, DragBeginVMCallback);
		}

		static void OverrideDragBegin (GLib.GType gtype, DragBeginNativeDelegate callback)
		{
			unsafe {
				IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("drag_begin"));
				*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
			}
		}

		[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
		delegate void DragBeginNativeDelegate (IntPtr inst, double start_x, double start_y);

		static void DragBegin_cb (IntPtr inst, double start_x, double start_y)
		{
			try {
				GestureDrag __obj = GLib.Object.GetObject (inst, false) as GestureDrag;
				__obj.OnDragBegin (start_x, start_y);
			} catch (Exception e) {
				GLib.ExceptionManager.RaiseUnhandledException (e, false);
			}
		}

		[GLib.DefaultSignalHandler(Type=typeof(Gtk.GestureDrag), ConnectionMethod="OverrideDragBegin")]
		protected virtual void OnDragBegin (double start_x, double start_y)
		{
			InternalDragBegin (start_x, start_y);
		}

		private void InternalDragBegin (double start_x, double start_y)
		{
			DragBeginNativeDelegate unmanaged = null;
			unsafe {
				IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("drag_begin"));
				unmanaged = (DragBeginNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(DragBeginNativeDelegate));
			}
			if (unmanaged == null) return;

			unmanaged (this.Handle, start_x, start_y);
		}

		static DragUpdateNativeDelegate DragUpdate_cb_delegate;
		static DragUpdateNativeDelegate DragUpdateVMCallback {
			get {
				if (DragUpdate_cb_delegate == null)
					DragUpdate_cb_delegate = new DragUpdateNativeDelegate (DragUpdate_cb);
				return DragUpdate_cb_delegate;
			}
		}

		static void OverrideDragUpdate (GLib.GType gtype)
		{
			OverrideDragUpdate (gtype, DragUpdateVMCallback);
		}

		static void OverrideDragUpdate (GLib.GType gtype, DragUpdateNativeDelegate callback)
		{
			unsafe {
				IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("drag_update"));
				*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
			}
		}

		[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
		delegate void DragUpdateNativeDelegate (IntPtr inst, double offset_x, double offset_y);

		static void DragUpdate_cb (IntPtr inst, double offset_x, double offset_y)
		{
			try {
				GestureDrag __obj = GLib.Object.GetObject (inst, false) as GestureDrag;
				__obj.OnDragUpdate (offset_x, offset_y);
			} catch (Exception e) {
				GLib.ExceptionManager.RaiseUnhandledException (e, false);
			}
		}

		[GLib.DefaultSignalHandler(Type=typeof(Gtk.GestureDrag), ConnectionMethod="OverrideDragUpdate")]
		protected virtual void OnDragUpdate (double offset_x, double offset_y)
		{
			InternalDragUpdate (offset_x, offset_y);
		}

		private void InternalDragUpdate (double offset_x, double offset_y)
		{
			DragUpdateNativeDelegate unmanaged = null;
			unsafe {
				IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("drag_update"));
				unmanaged = (DragUpdateNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(DragUpdateNativeDelegate));
			}
			if (unmanaged == null) return;

			unmanaged (this.Handle, offset_x, offset_y);
		}

		static DragEndNativeDelegate DragEnd_cb_delegate;
		static DragEndNativeDelegate DragEndVMCallback {
			get {
				if (DragEnd_cb_delegate == null)
					DragEnd_cb_delegate = new DragEndNativeDelegate (DragEnd_cb);
				return DragEnd_cb_delegate;
			}
		}

		static void OverrideDragEnd (GLib.GType gtype)
		{
			OverrideDragEnd (gtype, DragEndVMCallback);
		}

		static void OverrideDragEnd (GLib.GType gtype, DragEndNativeDelegate callback)
		{
			unsafe {
				IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("drag_end"));
				*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
			}
		}

		[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
		delegate void DragEndNativeDelegate (IntPtr inst, double offset_x, double offset_y);

		static void DragEnd_cb (IntPtr inst, double offset_x, double offset_y)
		{
			try {
				GestureDrag __obj = GLib.Object.GetObject (inst, false) as GestureDrag;
				__obj.OnDragEnd (offset_x, offset_y);
			} catch (Exception e) {
				GLib.ExceptionManager.RaiseUnhandledException (e, false);
			}
		}

		[GLib.DefaultSignalHandler(Type=typeof(Gtk.GestureDrag), ConnectionMethod="OverrideDragEnd")]
		protected virtual void OnDragEnd (double offset_x, double offset_y)
		{
			InternalDragEnd (offset_x, offset_y);
		}

		private void InternalDragEnd (double offset_x, double offset_y)
		{
			DragEndNativeDelegate unmanaged = null;
			unsafe {
				IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("drag_end"));
				unmanaged = (DragEndNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(DragEndNativeDelegate));
			}
			if (unmanaged == null) return;

			unmanaged (this.Handle, offset_x, offset_y);
		}

		[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern bool gtk_gesture_drag_get_offset(IntPtr raw, out double x, out double y);

		public bool GetOffset(out double x, out double y) {
			bool raw_ret = gtk_gesture_drag_get_offset(Handle, out x, out y);
			bool ret = raw_ret;
			return ret;
		}

		[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern bool gtk_gesture_drag_get_start_point(IntPtr raw, out double x, out double y);

		public bool GetStartPoint(out double x, out double y) {
			bool raw_ret = gtk_gesture_drag_get_start_point(Handle, out x, out y);
			bool ret = raw_ret;
			return ret;
		}

		[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern IntPtr gtk_gesture_drag_get_type();

		public static new GLib.GType GType { 
			get {
				IntPtr raw_ret = gtk_gesture_drag_get_type();
				GLib.GType ret = new GLib.GType(raw_ret);
				return ret;
			}
		}

#endregion
	}
}