c32076bd0633ad877f3642525c1b1f9340209625
[claws.git] / src / manual.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include "defs.h"
25
26 #include <glib.h>
27 #include <string.h>
28
29 #include "prefs_common.h"
30 #include "manual.h"
31 #include "utils.h"
32
33 static gchar *get_lang_str(ManualLang lang);
34
35 static gchar *get_lang_str(ManualLang lang)
36 {
37         switch (lang) {
38         case MANUAL_LANG_EN:
39                 return "en";
40         case MANUAL_LANG_ES:
41                 return "es";
42         case MANUAL_LANG_FR:
43                 return "fr";
44         case MANUAL_LANG_JA:
45                 return "ja";
46         default:
47                 return NULL;
48         }
49 }
50
51 void manual_open(ManualLang lang)
52 {
53         gchar *lang_str;
54         gchar *file_uri;
55
56         lang_str = get_lang_str(lang);
57         if (!lang_str) return;
58
59         file_uri = g_strconcat("file://", MANUALDIR,
60                                G_DIR_SEPARATOR_S, lang_str, G_DIR_SEPARATOR_S,
61                                MANUAL_HTML_INDEX, NULL);
62         debug_print("Opening manual: %s\n", file_uri);
63         open_uri(file_uri, prefs_common.uri_cmd);
64         g_free(file_uri);
65 }
66
67 void faq_open(ManualLang lang)
68 {
69         gchar *lang_str;
70         gchar *file_uri;
71
72         lang_str = get_lang_str(lang);
73         if (!lang_str) return;
74
75         file_uri = g_strconcat("file://", FAQDIR,
76                                G_DIR_SEPARATOR_S, lang_str, G_DIR_SEPARATOR_S,
77                                FAQ_HTML_INDEX, NULL);
78         debug_print("Opening FAQ: %s\n", file_uri);
79         open_uri(file_uri, prefs_common.uri_cmd);
80         g_free(file_uri);
81 }