register ArdourMono font with windows
[ardour.git] / gtk2_ardour / bundle_env_mingw.cc
1 /*
2     Copyright (C) 2001-2012 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <stdlib.h>
21 #include "bundle_env.h"
22 #include "i18n.h"
23
24 #include <glibmm.h>
25 #include <fontconfig/fontconfig.h>
26 #include <windows.h>
27 #include <wingdi.h>
28
29 #include "ardour/ardour.h"
30 #include "ardour/search_paths.h"
31 #include "ardour/filesystem_paths.h"
32
33 #include "pbd/file_utils.h"
34 #include "pbd/epa.h"
35
36 using namespace std;
37 using namespace PBD;
38 using namespace ARDOUR;
39
40 void
41 fixup_bundle_environment (int, char* [], const char** localedir)
42 {
43         EnvironmentalProtectionAgency::set_global_epa (new EnvironmentalProtectionAgency (true));
44         /* what to do ? */
45         // we should at least set ARDOUR_DATA_PATH to prevent the warning message.
46         // setting a FONTCONFIG_FILE won't hurt either see bundle_env_msvc.cc
47         // (pangocairo prefers the windows gdi backend unless PANGOCAIRO_BACKEND=fc is set)
48
49         // Unset GTK_RC_FILES so that only ardour specific files are loaded
50         Glib::unsetenv ("GTK_RC_FILES");
51 }
52
53 static __cdecl void unload_custom_fonts() {
54         std::string ardour_mono_file;
55         if (!find_file (ardour_data_search_path(), "ArdourMono.ttf", ardour_mono_file)) {
56                 return;
57         }
58         RemoveFontResource(ardour_mono_file.c_str());
59 }
60
61 void load_custom_fonts() 
62 {
63         std::string ardour_mono_file;
64
65         if (!find_file (ardour_data_search_path(), "ArdourMono.ttf", ardour_mono_file)) {
66                 cerr << _("Cannot find ArdourMono TrueType font") << endl;
67                 return;
68         }
69
70         // pango with fontconfig backend
71         FcConfig *config = FcInitLoadConfigAndFonts();
72         FcBool ret = FcConfigAppFontAddFile(config, reinterpret_cast<const FcChar8*>(ardour_mono_file.c_str()));
73
74         if (ret == FcFalse) {
75                 cerr << _("Cannot load ArdourMono TrueType font.") << endl;
76         }
77
78         ret = FcConfigSetCurrent(config);
79
80         if (ret == FcFalse) {
81                 cerr << _("Failed to set fontconfig configuration.") << endl;
82         }
83
84         // pango with win32 backend
85         if (0 == AddFontResource(ardour_mono_file.c_str())) {
86                 cerr << _("Cannot register ArdourMono TrueType font with windows gdi.") << endl;
87         } else {
88                 atexit (&unload_custom_fonts);
89         }
90 }