claws-mail/src/manual.h
Tristan Chabredier fefa13721e 2006-07-06 [wwp] 2.3.1cvs63
* src/account.c
	* src/addressbook.c
	* src/addressitem.h
	* src/folderview.c
	* src/mainwindow.c
	* src/manual.c
	* src/manual.h
	* src/message_search.c
	* src/prefs_actions.c
	* src/prefs_filtering.c
	* src/prefs_filtering.h
	* src/prefs_template.c
	* src/summary_search.c
	* src/summaryview.c
	* src/gtk/gtkutils.c
	* src/gtk/gtkutils.h
	* src/gtk/pluginwindow.c
		add help buttons to some dialogs. Clicking such buttons opens a
		relevant manual page. Patch by Fabien Vantard <fzzzzz@gmail.com>.
2006-07-06 14:20:03 +00:00

43 lines
1.6 KiB
C

/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __MANUAL_H__
#define __MANUAL_H__
typedef enum
{
MANUAL_MANUAL_LOCAL,
MANUAL_FAQ_CLAWS,
} ManualType;
#define MANUAL_ANCHOR_WIZARD "start_wizard"
#define MANUAL_ANCHOR_FILTERING "handling_filters"
#define MANUAL_ANCHOR_SEARCHING "handling_searching"
#define MANUAL_ANCHOR_ACCOUNTPREFS "ch_account"
#define MANUAL_ANCHOR_ADDRBOOK "ch_addrbook"
#define MANUAL_ANCHOR_ACTIONS "adv_actions"
#define MANUAL_ANCHOR_TEMPLATES "adv_templates"
#define MANUAL_ANCHOR_PROCESSING "adv_processing"
#define MANUAL_ANCHOR_PLUGINS "adv_plugins"
gboolean manual_available (ManualType type);
void manual_open (ManualType type, gchar *url_anchor);
void manual_open_with_anchor_cb(GtkWidget *widget, gchar *url_anchor);
#endif /* __MANUAL_H__ */