]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-init.c
[win32] Fix ev_win32_get_locale_dir()
[evince.git] / libdocument / ev-init.c
1 /* this file is part of evince, a gnome document viewer
2  *
3  * Copyright © 2009 Christian Persch
4  *
5  * Evince is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU Lesser General Public License as published by
7  * the Free Software Foundation; either version 2.1 of the License, or
8  * (at your option) any later version.
9  *
10  * Evince is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser 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 #include <config.h>
21
22 #include <glib.h>
23 #include <glib/gi18n-lib.h>
24 #ifdef G_OS_WIN32
25 #include <windows.h>
26 #endif
27
28 #include "ev-init.h"
29 #include "ev-backends-manager.h"
30 #include "ev-debug.h"
31 #include "ev-file-helpers.h"
32
33 static int ev_init_count;
34
35 #ifdef G_OS_WIN32
36
37 static HMODULE evdocument_dll = NULL;
38 static gchar *locale_dir = NULL;
39
40 #ifdef DLL_EXPORT
41 BOOL WINAPI
42 DllMain (HINSTANCE hinstDLL,
43          DWORD     fdwReason,
44          LPVOID    lpvReserved)
45 {
46         if (fdwReason == DLL_PROCESS_ATTACH)
47                 evdocument_dll = hinstDLL;
48
49         return TRUE;
50 }
51 #endif
52
53 static const gchar *
54 _ev_win32_get_locale_dir (HMODULE module)
55 {
56         if (locale_dir)
57                 return locale_dir;
58
59         gchar *install_dir = NULL, *utf8_locale_dir;
60         gchar *retval = NULL;
61
62         if (evdocument_dll != NULL)
63                 install_dir =
64                 g_win32_get_package_installation_directory_of_module (module);
65
66         if (install_dir) {
67                 utf8_locale_dir = g_build_filename (install_dir,
68                         "share", "locale", NULL);
69
70                 locale_dir = g_win32_locale_filename_from_utf8 (utf8_locale_dir);
71
72                 g_free (install_dir);
73                 g_free (utf8_locale_dir);
74         }
75
76         if (!locale_dir)
77                 locale_dir = g_strdup ("");
78
79         return locale_dir;
80 }
81
82 #endif
83
84 const gchar *
85 ev_get_locale_dir (void)
86 {
87 #ifdef G_OS_WIN32
88         return _ev_win32_get_locale_dir (evdocument_dll);
89 #else
90         return GNOMELOCALEDIR;
91 #endif
92 }
93
94 /**
95  * ev_init:
96  *
97  * Initializes the evince document library, and binds the evince
98  * gettext domain.
99  *
100  * You must call this before calling any other function in the evince
101  * document library.
102  *
103  * Returns: %TRUE if any backends were found; %FALSE otherwise
104  */
105 gboolean
106 ev_init (void)
107 {
108         static gboolean have_backends;
109
110         if (ev_init_count++ > 0)
111                 return have_backends;
112
113         /* set up translation catalog */
114         bindtextdomain (GETTEXT_PACKAGE, ev_get_locale_dir ());
115         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
116
117         _ev_debug_init ();
118         _ev_file_helpers_init ();
119         have_backends = _ev_backends_manager_init ();
120
121         return have_backends;
122 }
123
124 /**
125  * ev_shutdown:
126  *
127  * Shuts the evince document library down.
128  */
129 void
130 ev_shutdown (void)
131 {
132         g_assert (_ev_is_initialized ());
133
134         if (--ev_init_count > 0)
135                 return;
136
137 #ifdef G_OS_WIN32
138         if (locale_dir != NULL)
139                 g_free(locale_dir);
140 #endif
141
142         _ev_backends_manager_shutdown ();
143         _ev_file_helpers_shutdown ();
144         _ev_debug_shutdown ();
145 }
146
147 /*
148  * _ev_is_initialized:
149  *
150  * Returns: %TRUE if the evince document library has been initialized
151  */
152 gboolean
153 _ev_is_initialized (void)
154 {
155         return ev_init_count > 0;
156 }