summaryrefslogtreecommitdiffstats
path: root/subprojects/libhandy/src/hdy-navigation-direction.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--subprojects/libhandy/src/hdy-navigation-direction.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/subprojects/libhandy/src/hdy-navigation-direction.h b/subprojects/libhandy/src/hdy-navigation-direction.h
new file mode 100644
index 0000000..ea63ef5
--- /dev/null
+++ b/subprojects/libhandy/src/hdy-navigation-direction.h
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 2019 Alexander Mikhaylenko <exalm7659@gmail.com>
+ *
+ * SPDX-License-Identifier: LGPL-2.1+
+ */
+
+#pragma once
+
+#if !defined(_HANDY_INSIDE) && !defined(HANDY_COMPILATION)
+#error "Only <handy.h> can be included directly."
+#endif
+
+#include <glib-object.h>
+#include "hdy-enums.h"
+
+G_BEGIN_DECLS
+
+typedef enum {
+ HDY_NAVIGATION_DIRECTION_BACK,
+ HDY_NAVIGATION_DIRECTION_FORWARD,
+} HdyNavigationDirection;
+
+G_END_DECLS