Enable Menu > Quit to work again after startup on macOS
[ardour.git] / gtk2_ardour / bundle_env_mingw.cc
index f53c461299f8fc878310f1ee2f53fdc633b32981..926e4cdcae02d18ba8487d0d2391c5016815ef0e 100644 (file)
@@ -1,26 +1,26 @@
 /*
-    Copyright (C) 2001-2012 Paul Davis
-
-    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., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
+ * Copyright (C) 2014-2015 Robin Gareus <robin@gareus.org>
+ * Copyright (C) 2014-2016 Paul Davis <paul@linuxaudiosystems.com>
+ *
* 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.
+ */
 
 #include <stdlib.h>
 #include <string>
 #include "bundle_env.h"
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 #include <glibmm.h>
 #include <fontconfig/fontconfig.h>
@@ -29,7 +29,6 @@
 
 #include <windows.h>
 #include <wingdi.h>
-#include <shlobj.h> // CSIDL_*
 
 #include "ardour/ardour.h"
 #include "ardour/search_paths.h"
 
 #include "pbd/file_utils.h"
 #include "pbd/epa.h"
-#include "pbd/windows_special_dirs.h"
 
 using namespace std;
 using namespace PBD;
 using namespace ARDOUR;
 
-
-/* query top-level Ardour installation path.
- * Typically, this will be somehwere like
- * "C:\Program Files (x86)\Ardour"
- */
-const std::string
-get_install_path ()
-{
-       const gchar* pExeRoot = g_win32_get_package_installation_directory_of_module (0);
-
-       if (0 == pExeRoot) {
-               HKEY key;
-               DWORD size = PATH_MAX;
-               char tmp[PATH_MAX+1];
-               if (
-#ifdef __MINGW64__
-                               (ERROR_SUCCESS == RegOpenKeyExA (HKEY_LOCAL_MACHINE, "Software\\" PROGRAM_NAME "\\v" PROGRAM_VERSION "\\w64", 0, KEY_READ, &key))
-#else
-                               (ERROR_SUCCESS == RegOpenKeyExA (HKEY_LOCAL_MACHINE, "Software\\" PROGRAM_NAME "\\v" PROGRAM_VERSION "\\w32", 0, KEY_READ, &key))
-#endif
-                               &&(ERROR_SUCCESS == RegQueryValueExA (key, "Install_Dir", 0, NULL, reinterpret_cast<LPBYTE>(tmp), &size))
-                        )
-               {
-                       pExeRoot = Glib::locale_to_utf8(tmp).c_str();
-               }
-       }
-
-       if (0 == pExeRoot) {
-               const char *program_files = PBD::get_win_special_folder (CSIDL_PROGRAM_FILES);
-               if (program_files) {
-                       pExeRoot = g_build_filename(program_files, PROGRAM_NAME, NULL);
-               }
-       }
-
-       if (pExeRoot && Glib::file_test(pExeRoot, Glib::FILE_TEST_EXISTS|Glib::FILE_TEST_IS_DIR)) {
-               return std::string (pExeRoot);
-       }
-       return "";
-}
-
-
 void
 fixup_bundle_environment (int, char* [], string & localedir)
 {
@@ -93,8 +50,8 @@ fixup_bundle_environment (int, char* [], string & localedir)
        // setting a FONTCONFIG_FILE won't hurt either see bundle_env_msvc.cc
        // (pangocairo prefers the windows gdi backend unless PANGOCAIRO_BACKEND=fc is set)
 
-       // Unset GTK_RC_FILES so that only ardour specific files are loaded
-       Glib::unsetenv ("GTK_RC_FILES");
+       // Unset GTK2_RC_FILES so that only ardour specific files are loaded
+       Glib::unsetenv ("GTK2_RC_FILES");
 
        std::string path;
 
@@ -123,47 +80,69 @@ fixup_bundle_environment (int, char* [], string & localedir)
        Glib::setenv ("VAMP_PATH", path, true);
 
        Glib::setenv ("SUIL_MODULE_DIR", Glib::build_filename(ardour_dll_directory(), "suil"), true);
+
+       /* XXX this should really be PRODUCT_EXE see tools/x-win/package.sh
+        * ardour on windows does not have a startup wrapper script.
+        *
+        * then again, there's probably nobody using NSM on windows.
+        * because neither nsmd nor the GUI is currently available for windows.
+        * furthermore it'll be even less common for derived products.
+        */
+       Glib::setenv ("ARDOUR_SELF", Glib::build_filename(ardour_dll_directory(), "ardour.exe"), true);
 }
 
 static __cdecl void
 unload_custom_fonts()
 {
-       std::string ardour_mono_file;
-       if (!find_file (ardour_data_search_path(), "ArdourMono.ttf", ardour_mono_file)) {
-               return;
+       std::string font_file;
+       if (find_file (ardour_data_search_path(), "ArdourMono.ttf", font_file)) {
+               RemoveFontResource(font_file.c_str());
+       }
+       if (find_file (ardour_data_search_path(), "ArdourSans.ttf", font_file)) {
+               RemoveFontResource(font_file.c_str());
        }
-       RemoveFontResource(ardour_mono_file.c_str());
 }
 
 void
 load_custom_fonts()
 {
        std::string ardour_mono_file;
+       std::string ardour_sans_file;
 
        if (!find_file (ardour_data_search_path(), "ArdourMono.ttf", ardour_mono_file)) {
                cerr << _("Cannot find ArdourMono TrueType font") << endl;
+       }
+
+       if (!find_file (ardour_data_search_path(), "ArdourSans.ttf", ardour_sans_file)) {
+               cerr << _("Cannot find ArdourSans TrueType font") << endl;
+       }
+
+       if (ardour_mono_file.empty () && ardour_sans_file.empty ()) {
                return;
        }
 
        if (pango_font_map_get_type() == PANGO_TYPE_FT2_FONT_MAP) {
                FcConfig *config = FcInitLoadConfigAndFonts();
-               FcBool ret = FcConfigAppFontAddFile(config, reinterpret_cast<const FcChar8*>(ardour_mono_file.c_str()));
 
-               if (ret == FcFalse) {
+               if (!ardour_mono_file.empty () && FcFalse == FcConfigAppFontAddFile(config, reinterpret_cast<const FcChar8*>(ardour_mono_file.c_str()))) {
                        cerr << _("Cannot load ArdourMono TrueType font.") << endl;
                }
 
-               ret = FcConfigSetCurrent(config);
+               if (!ardour_sans_file.empty () && FcFalse == FcConfigAppFontAddFile(config, reinterpret_cast<const FcChar8*>(ardour_sans_file.c_str()))) {
+                       cerr << _("Cannot load ArdourSans TrueType font.") << endl;
+               }
 
-               if (ret == FcFalse) {
+               if (FcFalse == FcConfigSetCurrent(config)) {
                        cerr << _("Failed to set fontconfig configuration.") << endl;
                }
        } else {
                // pango with win32 backend
                if (0 == AddFontResource(ardour_mono_file.c_str())) {
                        cerr << _("Cannot register ArdourMono TrueType font with windows gdi.") << endl;
-               } else {
-                       atexit (&unload_custom_fonts);
                }
+               if (0 == AddFontResource(ardour_sans_file.c_str())) {
+                       cerr << _("Cannot register ArdourSans TrueType font with windows gdi.") << endl;
+               }
+               atexit (&unload_custom_fonts);
        }
 }