1 /* GIMP - The GNU Image Manipulation Program
2  * Copyright (C) 1995 Spencer Kimball and Peter Mattis
3  *
4  * gimpactionview.h
5  * Copyright (C) 2004-2005  Michael Natterer <mitch@gimp.org>
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef __GIMP_ACTION_VIEW_H__
22 #define __GIMP_ACTION_VIEW_H__
23 
24 
25 enum
26 {
27   GIMP_ACTION_VIEW_COLUMN_VISIBLE,
28   GIMP_ACTION_VIEW_COLUMN_ACTION,
29   GIMP_ACTION_VIEW_COLUMN_ICON_NAME,
30   GIMP_ACTION_VIEW_COLUMN_LABEL,
31   GIMP_ACTION_VIEW_COLUMN_LABEL_CASEFOLD,
32   GIMP_ACTION_VIEW_COLUMN_NAME,
33   GIMP_ACTION_VIEW_COLUMN_ACCEL_KEY,
34   GIMP_ACTION_VIEW_COLUMN_ACCEL_MASK,
35   GIMP_ACTION_VIEW_COLUMN_ACCEL_CLOSURE,
36   GIMP_ACTION_VIEW_N_COLUMNS
37 };
38 
39 
40 #define GIMP_TYPE_ACTION_VIEW            (gimp_action_view_get_type ())
41 #define GIMP_ACTION_VIEW(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_ACTION_VIEW, GimpActionView))
42 #define GIMP_ACTION_VIEW_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_ACTION_VIEW, GimpActionViewClass))
43 #define GIMP_IS_ACTION_VIEW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_ACTION_VIEW))
44 #define GIMP_IS_ACTION_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_ACTION_VIEW))
45 #define GIMP_ACTION_VIEW_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_ACTION_VIEW, GimpActionViewClass))
46 
47 
48 typedef struct _GimpActionViewClass GimpActionViewClass;
49 
50 struct _GimpActionView
51 {
52   GtkTreeView    parent_instance;
53 
54   GimpUIManager *manager;
55   gboolean       show_shortcuts;
56 
57   gchar         *filter;
58 };
59 
60 struct _GimpActionViewClass
61 {
62   GtkTreeViewClass  parent_class;
63 };
64 
65 
66 GType       gimp_action_view_get_type   (void) G_GNUC_CONST;
67 
68 GtkWidget * gimp_action_view_new        (GimpUIManager  *manager,
69                                          const gchar    *select_action,
70                                          gboolean        show_shortcuts);
71 
72 void        gimp_action_view_set_filter (GimpActionView *view,
73                                          const gchar    *filter);
74 
75 
76 #endif  /*  __GIMP_ACTION_VIEW_H__  */
77