Updated Spanish translation
[anjuta-git-plugin.git] / plugins / file-loader / anjuta-recent-chooser-menu.h
blobfa623ab6821b20ad01ad592900a9e1eb6dd0a3c2
1 /* GTK - The GIMP Toolkit
2 * gtkrecentchoosermenu.h - Recently used items menu widget
3 * Copyright (C) 2006, Emmanuele Bassi
4 * 2008, Ignacio Casal Quinteiro
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.
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.
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.
22 #ifndef __ANJUTA_RECENT_CHOOSER_MENU_H__
23 #define __ANJUTA_RECENT_CHOOSER_MENU_H__
25 #include <gtk/gtkmenu.h>
26 #include <gtk/gtkrecentchooser.h>
28 G_BEGIN_DECLS
30 #define ANJUTA_TYPE_RECENT_CHOOSER_MENU (anjuta_recent_chooser_menu_get_type ())
31 #define ANJUTA_RECENT_CHOOSER_MENU(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ANJUTA_TYPE_RECENT_CHOOSER_MENU, AnjutaRecentChooserMenu))
32 #define ANJUTA_IS_RECENT_CHOOSER_MENU(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ANJUTA_TYPE_RECENT_CHOOSER_MENU))
33 #define ANJUTA_RECENT_CHOOSER_MENU_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ANJUTA_TYPE_RECENT_CHOOSER_MENU, AnjutaRecentChooserMenuClass))
34 #define ANJUTA_IS_RECENT_CHOOSER_MENU_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ANJUTA_TYPE_RECENT_CHOOSER_MENU))
35 #define ANJUTA_RECENT_CHOOSER_MENU_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ANJUTA_TYPE_RECENT_CHOOSER_MENU, AnjutaRecentChooserMenuClass))
37 typedef struct _AnjutaRecentChooserMenu AnjutaRecentChooserMenu;
38 typedef struct _AnjutaRecentChooserMenuClass AnjutaRecentChooserMenuClass;
39 typedef struct _AnjutaRecentChooserMenuPrivate AnjutaRecentChooserMenuPrivate;
41 struct _AnjutaRecentChooserMenu
43 /*< private >*/
44 GtkMenu parent_instance;
46 AnjutaRecentChooserMenuPrivate *priv;
49 struct _AnjutaRecentChooserMenuClass
51 GtkMenuClass parent_class;
53 /* padding for future expansion */
54 void (* gtk_recent1) (void);
55 void (* gtk_recent2) (void);
56 void (* gtk_recent3) (void);
57 void (* gtk_recent4) (void);
60 GType anjuta_recent_chooser_menu_get_type (void) G_GNUC_CONST;
62 GtkWidget *anjuta_recent_chooser_menu_new (void);
63 GtkWidget *anjuta_recent_chooser_menu_new_for_manager (GtkRecentManager *manager);
65 gboolean anjuta_recent_chooser_menu_get_show_numbers (AnjutaRecentChooserMenu *menu);
66 void anjuta_recent_chooser_menu_set_show_numbers (AnjutaRecentChooserMenu *menu,
67 gboolean show_numbers);
69 G_END_DECLS
71 #endif /* ! __ANJUTA_RECENT_CHOOSER_MENU_H__ */