Initial German translation of the build tutorial
[anjuta.git] / plugins / file-loader / anjuta-recent-chooser-menu.h
blob2378248fc4bf8b5a1ef0b5eaebb6ccbade1197dc
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., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
22 #ifndef __ANJUTA_RECENT_CHOOSER_MENU_H__
23 #define __ANJUTA_RECENT_CHOOSER_MENU_H__
25 #include <gtk/gtk.h>
27 G_BEGIN_DECLS
29 #define ANJUTA_TYPE_RECENT_CHOOSER_MENU (anjuta_recent_chooser_menu_get_type ())
30 #define ANJUTA_RECENT_CHOOSER_MENU(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ANJUTA_TYPE_RECENT_CHOOSER_MENU, AnjutaRecentChooserMenu))
31 #define ANJUTA_IS_RECENT_CHOOSER_MENU(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ANJUTA_TYPE_RECENT_CHOOSER_MENU))
32 #define ANJUTA_RECENT_CHOOSER_MENU_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ANJUTA_TYPE_RECENT_CHOOSER_MENU, AnjutaRecentChooserMenuClass))
33 #define ANJUTA_IS_RECENT_CHOOSER_MENU_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ANJUTA_TYPE_RECENT_CHOOSER_MENU))
34 #define ANJUTA_RECENT_CHOOSER_MENU_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ANJUTA_TYPE_RECENT_CHOOSER_MENU, AnjutaRecentChooserMenuClass))
36 typedef struct _AnjutaRecentChooserMenu AnjutaRecentChooserMenu;
37 typedef struct _AnjutaRecentChooserMenuClass AnjutaRecentChooserMenuClass;
38 typedef struct _AnjutaRecentChooserMenuPrivate AnjutaRecentChooserMenuPrivate;
40 struct _AnjutaRecentChooserMenu
42 /*< private >*/
43 GtkMenu parent_instance;
45 AnjutaRecentChooserMenuPrivate *priv;
48 struct _AnjutaRecentChooserMenuClass
50 GtkMenuClass parent_class;
52 /* padding for future expansion */
53 void (* gtk_recent1) (void);
54 void (* gtk_recent2) (void);
55 void (* gtk_recent3) (void);
56 void (* gtk_recent4) (void);
59 GType anjuta_recent_chooser_menu_get_type (void) G_GNUC_CONST;
61 GtkWidget *anjuta_recent_chooser_menu_new (void);
62 GtkWidget *anjuta_recent_chooser_menu_new_for_manager (GtkRecentManager *manager);
64 gboolean anjuta_recent_chooser_menu_get_show_numbers (AnjutaRecentChooserMenu *menu);
65 void anjuta_recent_chooser_menu_set_show_numbers (AnjutaRecentChooserMenu *menu,
66 gboolean show_numbers);
68 G_END_DECLS
70 #endif /* ! __ANJUTA_RECENT_CHOOSER_MENU_H__ */