summaryrefslogtreecommitdiffstats
path: root/src/desktop-events.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/desktop-events.h')
-rw-r--r--src/desktop-events.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/desktop-events.h b/src/desktop-events.h
new file mode 100644
index 0000000..9361cde
--- /dev/null
+++ b/src/desktop-events.h
@@ -0,0 +1,59 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+#ifndef __DESKTOP_EVENTS_H__
+#define __DESKTOP_EVENTS_H__
+
+/*
+ * Entry points for event distribution
+ *
+ * Authors:
+ * Lauris Kaplinski <lauris@kaplinski.com>
+ *
+ * Copyright (C) 1999-2002 authors
+ * Copyright (C) 2001-2002 Ximian, Inc.
+ *
+ * Released under GNU GPL v2+, read the file 'COPYING' for more information.
+ */
+
+#include <glib.h>
+
+class SPDesktop;
+struct SPDesktopWidget;
+class SPGuide;
+
+namespace Inkscape {
+ class CanvasItem;
+ class CanvasItemGuideLine;
+}
+
+typedef union _GdkEvent GdkEvent;
+typedef struct _GdkEventCrossing GdkEventCrossing;
+typedef struct _GdkEventMotion GdkEventMotion;
+typedef struct _GtkWidget GtkWidget;
+
+/* Item handlers */
+
+bool sp_desktop_root_handler (GdkEvent *event, SPDesktop *desktop);
+
+/* Default handlers */
+
+gint sp_canvas_enter_notify (GtkWidget *widget, GdkEventCrossing *event, SPDesktop *desktop);
+gint sp_canvas_leave_notify (GtkWidget *widget, GdkEventCrossing *event, SPDesktop *desktop);
+gint sp_canvas_motion_notify (GtkWidget *widget,GdkEventMotion *motion, SPDesktop *desktop);
+
+/* Guides */
+
+bool sp_dt_guide_event(GdkEvent *event, Inkscape::CanvasItemGuideLine *guide_item, SPGuide *guide);
+
+#endif
+
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :