Updated Spanish translation
[anjuta.git] / src / action-callbacks.h
blob314da79aa579d247d4e78ca600dd697aa5240346
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * mainmenu_callbacks.h
4 * Copyright (C) 2003 Naba Kumar <naba@gnome.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #ifndef _MAINMENU_CALLBACKS_H_
21 #define _MAINMENU_CALLBACKS_H_
23 #include <gtk/gtk.h>
25 void on_exit_activate (GtkAction * action, AnjutaWindow *win);
26 void on_fullscreen_toggle (GtkAction *action, AnjutaWindow *win);
27 void on_layout_lock_toggle (GtkAction *action, AnjutaWindow *win);
28 void on_reset_layout_activate (GtkAction *action, AnjutaWindow *win);
29 void on_toolbar_view_toggled (GtkAction *action, AnjutaWindow *win);
30 void on_preferences_activate (GtkAction * action, AnjutaWindow *win);
32 /* Help actions */
33 void on_help_manual_activate (GtkAction *action, gpointer data);
34 void on_help_faqs_activate (GtkAction *action, gpointer data);
36 void on_url_home_activate (GtkAction * action, gpointer user_data);
37 void on_url_bugs_activate (GtkAction * action, gpointer user_data);
38 void on_url_faqs_activate (GtkAction * action, gpointer user_data);
39 void on_url_activate (GtkAction * action, gpointer url);
40 void on_about_activate (GtkAction * action, AnjutaWindow *win);
42 #endif