summaryrefslogtreecommitdiff
path: root/shell/double-click-detector.h
diff options
context:
space:
mode:
Diffstat (limited to 'shell/double-click-detector.h')
-rw-r--r--shell/double-click-detector.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/shell/double-click-detector.h b/shell/double-click-detector.h
new file mode 100644
index 00000000..4a745d8e
--- /dev/null
+++ b/shell/double-click-detector.h
@@ -0,0 +1,58 @@
+/*
+ * This file is part of libslab.
+ *
+ * Copyright (c) 2006 Novell, Inc.
+ *
+ * Libslab is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
+ *
+ * Libslab 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 libslab; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __DOUBLE_CLICK_DETECTOR_H__
+#define __DOUBLE_CLICK_DETECTOR_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define DOUBLE_CLICK_DETECTOR_TYPE (double_click_detector_get_type ())
+#define DOUBLE_CLICK_DETECTOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), DOUBLE_CLICK_DETECTOR_TYPE, DoubleClickDetector))
+#define DOUBLE_CLICK_DETECTOR_CLASS(c) (G_TYPE_CHECK_CLASS_CAST ((c), DOUBLE_CLICK_DETECTOR_TYPE, DoubleClickDetectorClass))
+#define IS_DOUBLE_CLICK_DETECTOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), DOUBLE_CLICK_DETECTOR_TYPE))
+#define IS_DOUBLE_CLICK_DETECTOR_CLASS(c) (G_TYPE_CHECK_CLASS_TYPE ((c), DOUBLE_CLICK_DETECTOR_TYPE))
+#define DOUBLE_CLICK_DETECTOR_GET_CLASS(o) (G_TYPE_CHECK_GET_CLASS ((o), DOUBLE_CLICK_DETECTOR_TYPE, DoubleClickDetectorClass))
+
+typedef struct
+{
+ GObject parent_placeholder;
+
+ gint32 double_click_time;
+ guint32 last_click_time;
+} DoubleClickDetector;
+
+typedef struct
+{
+ GObjectClass parent_class;
+} DoubleClickDetectorClass;
+
+GType double_click_detector_get_type (void);
+
+DoubleClickDetector *double_click_detector_new (void);
+
+gboolean double_click_detector_is_double_click (DoubleClickDetector * detector, guint32 event_time,
+ gboolean auto_update);
+
+G_END_DECLS
+
+#endif /* __DOUBLE_CLICK_DETECTOR_H__ */