1/* gtkshortcutsshortcutprivate.h
2 *
3 * Copyright (C) 2015 Christian Hergert <christian@hergert.me>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#ifndef GTK_SHORTCUTS_SHORTCUT_H
20#define GTK_SHORTCUTS_SHORTCUT_H
21
22#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
23#error "Only <gtk/gtk.h> can be included directly."
24#endif
25
26#include <gdk/gdk.h>
27
28G_BEGIN_DECLS
29
30#define GTK_TYPE_SHORTCUTS_SHORTCUT (gtk_shortcuts_shortcut_get_type())
31#define GTK_SHORTCUTS_SHORTCUT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SHORTCUTS_SHORTCUT, GtkShortcutsShortcut))
32#define GTK_IS_SHORTCUTS_SHORTCUT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SHORTCUTS_SHORTCUT))
33
34
35typedef struct _GtkShortcutsShortcut GtkShortcutsShortcut;
36typedef struct _GtkShortcutsShortcutClass GtkShortcutsShortcutClass;
37
38/**
39 * GtkShortcutType:
40 * @GTK_SHORTCUT_ACCELERATOR:
41 * The shortcut is a keyboard accelerator. The GtkShortcutsShortcut:accelerator
42 * property will be used.
43 * @GTK_SHORTCUT_GESTURE_PINCH:
44 * The shortcut is a pinch gesture. GTK provides an icon and subtitle.
45 * @GTK_SHORTCUT_GESTURE_STRETCH:
46 * The shortcut is a stretch gesture. GTK provides an icon and subtitle.
47 * @GTK_SHORTCUT_GESTURE_ROTATE_CLOCKWISE:
48 * The shortcut is a clockwise rotation gesture. GTK provides an icon and subtitle.
49 * @GTK_SHORTCUT_GESTURE_ROTATE_COUNTERCLOCKWISE:
50 * The shortcut is a counterclockwise rotation gesture. GTK provides an icon and subtitle.
51 * @GTK_SHORTCUT_GESTURE_TWO_FINGER_SWIPE_LEFT:
52 * The shortcut is a two-finger swipe gesture. GTK provides an icon and subtitle.
53 * @GTK_SHORTCUT_GESTURE_TWO_FINGER_SWIPE_RIGHT:
54 * The shortcut is a two-finger swipe gesture. GTK provides an icon and subtitle.
55 * @GTK_SHORTCUT_GESTURE:
56 * The shortcut is a gesture. The GtkShortcutsShortcut:icon property will be
57 * used.
58 * @GTK_SHORTCUT_GESTURE_SWIPE_LEFT:
59 * The shortcut is a swipe gesture. GTK provides an icon and subtitle.
60 * @GTK_SHORTCUT_GESTURE_SWIPE_RIGHT:
61 * The shortcut is a swipe gesture. GTK provides an icon and subtitle.
62 *
63 * GtkShortcutType specifies the kind of shortcut that is being described.
64 *
65 * More values may be added to this enumeration over time.
66 */
67typedef enum {
68 GTK_SHORTCUT_ACCELERATOR,
69 GTK_SHORTCUT_GESTURE_PINCH,
70 GTK_SHORTCUT_GESTURE_STRETCH,
71 GTK_SHORTCUT_GESTURE_ROTATE_CLOCKWISE,
72 GTK_SHORTCUT_GESTURE_ROTATE_COUNTERCLOCKWISE,
73 GTK_SHORTCUT_GESTURE_TWO_FINGER_SWIPE_LEFT,
74 GTK_SHORTCUT_GESTURE_TWO_FINGER_SWIPE_RIGHT,
75 GTK_SHORTCUT_GESTURE,
76 GTK_SHORTCUT_GESTURE_SWIPE_LEFT,
77 GTK_SHORTCUT_GESTURE_SWIPE_RIGHT
78} GtkShortcutType;
79
80GDK_AVAILABLE_IN_ALL
81GType gtk_shortcuts_shortcut_get_type (void) G_GNUC_CONST;
82
83G_END_DECLS
84
85#endif /* GTK_SHORTCUTS_SHORTCUT_H */
86

source code of gtk/gtk/gtkshortcutsshortcut.h