Blame src/shell/e-shell-utils.h

Packit 15f964
/*
Packit 15f964
 * e-shell-utils.h
Packit 15f964
 *
Packit 15f964
 * This program is free software; you can redistribute it and/or modify it
Packit 15f964
 * under the terms of the GNU Lesser General Public License as published by
Packit 15f964
 * the Free Software Foundation.
Packit 15f964
 *
Packit 15f964
 * This program is distributed in the hope that it will be useful, but
Packit 15f964
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit 15f964
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
Packit 15f964
 * for more details.
Packit 15f964
 *
Packit 15f964
 * You should have received a copy of the GNU Lesser General Public License
Packit 15f964
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit 15f964
 *
Packit 15f964
 *
Packit 15f964
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
Packit 15f964
 *
Packit 15f964
 */
Packit 15f964
Packit 15f964
#ifndef E_SHELL_UTILS_H
Packit 15f964
#define E_SHELL_UTILS_H
Packit 15f964
Packit 15f964
#include <shell/e-shell.h>
Packit 15f964
Packit 15f964
G_BEGIN_DECLS
Packit 15f964
Packit 15f964
GFile *		e_shell_run_open_dialog		(EShell *shell,
Packit 15f964
						 const gchar *title,
Packit 15f964
						 GtkCallback customize_func,
Packit 15f964
						 gpointer customize_data);
Packit 15f964
Packit 15f964
GFile *		e_shell_run_save_dialog		(EShell *shell,
Packit 15f964
						 const gchar *title,
Packit 15f964
						 const gchar *suggestion,
Packit 15f964
						 const gchar *filters,
Packit 15f964
						 GtkCallback customize_func,
Packit 15f964
						 gpointer customize_data);
Packit 15f964
Packit 15f964
guint		e_shell_utils_import_uris	(EShell *shell,
Packit 15f964
						 const gchar * const *uris);
Packit 15f964
Packit 15f964
void		e_shell_utils_run_preferences	(EShell *shell);
Packit 15f964
gboolean	e_shell_utils_is_quick_reference_available
Packit 15f964
						(EShell *shell);
Packit 15f964
void		e_shell_utils_run_quick_reference
Packit 15f964
						(EShell *shell);
Packit 15f964
void		e_shell_utils_run_help_about	(EShell *shell);
Packit 15f964
void		e_shell_utils_run_help_contents	(EShell *shell);
Packit 15f964
EAlertSink *	e_shell_utils_find_alternate_alert_sink
Packit 15f964
						(GtkWidget *widget);
Packit 15f964
Packit 15f964
G_END_DECLS
Packit 15f964
Packit 15f964
#endif /* E_SHELL_UTILS_H */