1 | /* GTK - The GIMP Toolkit |
2 | * Recent chooser action for GtkUIManager |
3 | * |
4 | * Copyright (C) 2007, Emmanuele Bassi |
5 | * |
6 | * This library is free software; you can redistribute it and/or |
7 | * modify it under the terms of the GNU Lesser General Public |
8 | * License as published by the Free Software Foundation; either |
9 | * version 2 of the License, or (at your option) any later version. |
10 | * |
11 | * This library is distributed in the hope that it will be useful, |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | * Lesser General Public License for more details. |
15 | * |
16 | * You should have received a copy of the GNU Lesser General Public |
17 | * License along with this library; if not, write to the |
18 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | * Boston, MA 02111-1307, USA. |
20 | */ |
21 | |
22 | #ifndef __GTK_RECENT_ACTION_H__ |
23 | #define __GTK_RECENT_ACTION_H__ |
24 | |
25 | #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) |
26 | #error "Only <gtk/gtk.h> can be included directly." |
27 | #endif |
28 | |
29 | #include <gtk/gtkaction.h> |
30 | #include <gtk/gtkrecentmanager.h> |
31 | |
32 | G_BEGIN_DECLS |
33 | |
34 | #define GTK_TYPE_RECENT_ACTION (gtk_recent_action_get_type ()) |
35 | #define GTK_RECENT_ACTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_RECENT_ACTION, GtkRecentAction)) |
36 | #define GTK_IS_RECENT_ACTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_RECENT_ACTION)) |
37 | #define GTK_RECENT_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_RECENT_ACTION, GtkRecentActionClass)) |
38 | #define GTK_IS_RECENT_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_RECENT_ACTION)) |
39 | #define GTK_RECENT_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_RECENT_ACTION, GtkRecentActionClass)) |
40 | |
41 | typedef struct _GtkRecentAction GtkRecentAction; |
42 | typedef struct _GtkRecentActionPrivate GtkRecentActionPrivate; |
43 | typedef struct _GtkRecentActionClass GtkRecentActionClass; |
44 | |
45 | struct _GtkRecentAction |
46 | { |
47 | GtkAction parent_instance; |
48 | |
49 | /*< private >*/ |
50 | GtkRecentActionPrivate *GSEAL (priv); |
51 | }; |
52 | |
53 | struct _GtkRecentActionClass |
54 | { |
55 | GtkActionClass parent_class; |
56 | }; |
57 | |
58 | GType gtk_recent_action_get_type (void) G_GNUC_CONST; |
59 | GtkAction *gtk_recent_action_new (const gchar *name, |
60 | const gchar *label, |
61 | const gchar *tooltip, |
62 | const gchar *stock_id); |
63 | GtkAction *gtk_recent_action_new_for_manager (const gchar *name, |
64 | const gchar *label, |
65 | const gchar *tooltip, |
66 | const gchar *stock_id, |
67 | GtkRecentManager *manager); |
68 | gboolean gtk_recent_action_get_show_numbers (GtkRecentAction *action); |
69 | void gtk_recent_action_set_show_numbers (GtkRecentAction *action, |
70 | gboolean show_numbers); |
71 | |
72 | G_END_DECLS |
73 | |
74 | #endif /* __GTK_RECENT_ACTION_H__ */ |
75 | |