]> git.lyx.org Git - lyx.git/blobdiff - src/support/os_win32.C
Fix several filename and environment variable encoding problems
[lyx.git] / src / support / os_win32.C
index c6624eadc4cd17c611a1acc45705d41f37ec8f46..daa977b73f8498211065b94aff36bee5efb21614 100644 (file)
@@ -18,6 +18,8 @@
 #include "support/os_win32.h"
 #include "support/lstrings.h"
 #include "support/filetools.h"
+#include "support/package.h"
+#include "support/path.h"
 
 #include "debug.h"
 
@@ -26,8 +28,6 @@
 #include <cstdlib>
 #include <vector>
 
-#include <string>
-
 /* The GetLongPathName macro may be defined on the compiling machine,
  * but we must use a bit of trickery if the resulting executable is
  * to run on a Win95 machine.
@@ -68,6 +68,13 @@ using std::string;
 
 using lyx::support::runCommand;
 using lyx::support::split;
+using lyx::support::addName;
+using lyx::support::addPath;
+using lyx::support::package;
+
+string const win_fonts_truetype[] = {"cmex10", "cmmi10", "cmr10", "cmsy10",
+       "eufm10", "msam10", "msbm10", "wasy10", "esint10"};
+const int num_fonts_truetype = sizeof(win_fonts_truetype) / sizeof(*win_fonts_truetype);
 
 
 namespace lyx {
@@ -208,8 +215,11 @@ namespace {
 
 string const get_long_path(string const & short_path)
 {
+       // GetLongPathName needs the path in file system encoding.
+       // We can use to_local8bit, since file system encoding and the
+       // local 8 bit encoding are identical on windows.
        std::vector<char> long_path(MAX_PATH);
-       DWORD result = GetLongPathName(short_path.c_str(),
+       DWORD result = GetLongPathName(to_local8bit(from_utf8(short_path)).c_str(),
                                       &long_path[0], long_path.size());
 
        if (result > long_path.size()) {
@@ -219,7 +229,7 @@ string const get_long_path(string const & short_path)
                BOOST_ASSERT(result <= long_path.size());
        }
 
-       return (result == 0) ? short_path : &long_path[0];
+       return (result == 0) ? short_path : to_utf8(from_filesystem8bit(&long_path[0]));
 }
 
 } // namespace anon
@@ -375,7 +385,7 @@ string const GetFolderPath::operator()(folder_id _id) const
        HRESULT const result = (folder_path_func_)(0, id, 0,
                                                   SHGFP_TYPE_CURRENT,
                                                   folder_path);
-       return (result == 0) ? os::internal_path(folder_path) : string();
+       return (result == 0) ? os::internal_path(to_utf8(from_filesystem8bit(folder_path))) : string();
 }
 
 
@@ -402,10 +412,35 @@ bool autoOpenFile(string const & filename, auto_open_mode const mode)
        //                 /platform/shell/reference/functions/shellexecute.asp
        char const * action = (mode == VIEW) ? "open" : "edit";
        return reinterpret_cast<int>(ShellExecute(NULL, action,
-               filename.c_str(), NULL, NULL, 1)) > 32;
+               to_local8bit(from_utf8(filename)).c_str(), NULL, NULL, 1)) > 32;
 }
 
 
+void addFontResources()
+{
+       // Windows only: Add BaKoMa TrueType font resources
+       string const fonts_dir = addPath(package().system_support(), "fonts");
+       
+       for (int i = 0 ; i < num_fonts_truetype ; ++i) {
+               string const font_current =
+                       addName(fonts_dir, win_fonts_truetype[i] + ".ttf");
+               AddFontResource(to_local8bit(from_utf8(external_path(font_current))).c_str());
+       }
+}
+
+
+void restoreFontResources()
+{
+       // Windows only: Remove BaKoMa TrueType font resources
+       string const fonts_dir = addPath(package().system_support(), "fonts");
+       
+       for(int i = 0 ; i < num_fonts_truetype ; ++i) {
+               string const font_current =
+                       addName(fonts_dir, win_fonts_truetype[i] + ".ttf");
+               RemoveFontResource(to_local8bit(from_utf8(external_path(font_current))).c_str());
+       }
+}
+
 } // namespace os
 } // namespace support
 } // namespace lyx