ac3c4a2596cdacf18112bd77530fa29691f794e6
[claws.git] / src / manual.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws team
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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 #if HAVE_LOCALE_H
30 #  include <locale.h>
31 #endif
32
33 #if !defined(LC_MESSAGES) && defined(G_OS_WIN32)
34 #include <libintl.h>
35 #endif
36
37
38 #include "prefs_common.h"
39 #include "manual.h"
40 #include "utils.h"
41
42
43 static gchar *get_language()
44 {
45         gchar *language;
46         gchar *c;
47
48 #ifdef G_OS_WIN32
49         language = g_strdup(gtk_set_locale());
50 #else
51         /* FIXME: Why not using gtk_set_locale here too? -wk */
52         language = g_strdup(setlocale(LC_MESSAGES, NULL));
53 #endif
54         /* At least under W32 it is possible that gtk_set_locate
55            returns NULL.  This is not documented but well, it happens
56            and g_strdup is happy with a NULL argument.  We return a
57            standard language string in this case. */
58         if (!language)
59                 return g_strdup("en");
60         if((c = strchr(language, ',')) != NULL)
61                 *c = '\0';
62         if((c = strchr(language, '_')) != NULL)
63                 *c = '\0';
64
65         return language;
66 }
67
68 static gchar *get_local_path_with_locale(gchar *rootpath)
69 {
70         gchar *lang_str, *dir;
71
72         lang_str = get_language();
73         dir = g_strconcat(rootpath, G_DIR_SEPARATOR_S, 
74                           lang_str, NULL);
75         g_free(lang_str);
76         if(!is_dir_exist(dir)) {
77                 g_free(dir);
78                 dir = g_strconcat(rootpath, G_DIR_SEPARATOR_S,
79                                   "en", NULL);
80                 if(!is_dir_exist(dir)) {
81                         g_free(dir);
82                         dir = NULL;
83                 }
84         }
85
86         return dir;
87 }
88
89 gboolean manual_available(ManualType type)
90 {
91         gboolean ret = FALSE;
92         gchar *dir = NULL;
93         
94         switch (type) {
95                 case MANUAL_MANUAL_LOCAL:
96                         dir = get_local_path_with_locale(MANUALDIR);
97                         if (dir != NULL) {
98                                 g_free(dir);
99                                 ret = TRUE;
100                         }
101                         break;
102                 default:
103                         ret = FALSE;
104         }
105
106         return ret;
107 }
108
109 void manual_open(ManualType type)
110 {
111         gchar *uri = NULL;
112         gchar *dir;
113
114         switch (type) {
115                 case MANUAL_MANUAL_LOCAL:
116                         dir = get_local_path_with_locale(MANUALDIR);
117                         if (dir != NULL) {
118                                 uri = g_strconcat("file://", dir, G_DIR_SEPARATOR_S, MANUAL_HTML_INDEX, NULL);
119                                 g_free(dir);
120                         }
121                         break;
122                 case MANUAL_FAQ_CLAWS:
123                         uri = g_strconcat(FAQ_URI, NULL);
124                         break;
125
126                 default:
127                         break;
128         }
129         open_uri(uri, prefs_common.uri_cmd);
130         g_free(uri);
131 }