summaryrefslogtreecommitdiff
path: root/libslab/double-click-detector.h
diff options
context:
space:
mode:
authorzhuyaliang <[email protected]>2023-10-25 21:43:03 +0800
committerraveit65 <[email protected]>2023-11-05 12:00:50 +0100
commitc2e94e1925f3c7acfa3fd3352dc8fdafe6375adc (patch)
tree3ba609bf57b7bb3eab18d35d78bd1dc86773fba6 /libslab/double-click-detector.h
parent23fc7b675ebac7a9b02257a31203974d72f584b1 (diff)
downloadmate-control-center-c2e94e1925f3c7acfa3fd3352dc8fdafe6375adc.tar.bz2
mate-control-center-c2e94e1925f3c7acfa3fd3352dc8fdafe6375adc.tar.xz
Remove libslab library
libslab is only used in mate-c-c and there is no need to provide a library
Diffstat (limited to 'libslab/double-click-detector.h')
-rw-r--r--libslab/double-click-detector.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/libslab/double-click-detector.h b/libslab/double-click-detector.h
deleted file mode 100644
index 4a745d8e..00000000
--- a/libslab/double-click-detector.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * 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__ */