diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2014-03-03 20:46:10 +0100 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2014-05-23 19:54:22 +0200 |
commit | 83dd050ab23a57f4b7ad614b6b3f5a82c21152e9 (patch) | |
tree | 5b197dc956a51c43f5124a0269b8b7cac0974100 /gtk/gtkgestureprivate.h | |
parent | a9fa0151f1c30f77134e31ac260afa17aa3b273f (diff) | |
download | gtk+-83dd050ab23a57f4b7ad614b6b3f5a82c21152e9.tar.gz |
gesture: Add private getter to know whether a touch begin was handled
If GDK_TOUCH_BEGIN was handled/consumed for a sequence, or GDK_BUTTON_PRESS was
handled for the mouse gesture, this function will return TRUE.
Diffstat (limited to 'gtk/gtkgestureprivate.h')
-rw-r--r-- | gtk/gtkgestureprivate.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gtk/gtkgestureprivate.h b/gtk/gtkgestureprivate.h new file mode 100644 index 0000000000..d60eaf10d5 --- /dev/null +++ b/gtk/gtkgestureprivate.h @@ -0,0 +1,32 @@ +/* GTK - The GIMP Toolkit + * Copyright (C) 2014, Red Hat, Inc. + * + * This library 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. + * + * This library 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 this library. If not, see <http://www.gnu.org/licenses/>. + * + * Author(s): Carlos Garnacho <carlosg@gnome.org> + */ + +#ifndef __GTK_GESTURE_PRIVATE_H__ +#define __GTK_GESTURE_PRIVATE_H__ + +#include "gtkgesture.h" + +G_BEGIN_DECLS + +gboolean _gtk_gesture_handled_sequence_press (GtkGesture *gesture, + GdkEventSequence *sequence); + +G_END_DECLS + +#endif /* __GTK_GESTURE_PRIVATE_H__ */ |