2003-06-18 09:56:10 +00:00
|
|
|
/**
|
|
|
|
* \file os_win32.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Ruurd A. Reitsma
|
2005-01-21 22:08:59 +00:00
|
|
|
* \author Claus Hentschel
|
|
|
|
* \author Angus Leeming
|
2003-06-18 09:56:10 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-06-18 09:56:10 +00:00
|
|
|
*
|
|
|
|
* Various OS specific functions
|
|
|
|
*/
|
2001-05-17 15:11:01 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2004-11-07 13:22:51 +00:00
|
|
|
#include "support/os.h"
|
2005-09-30 12:24:50 +00:00
|
|
|
#include "support/os_win32.h"
|
2005-01-12 08:27:14 +00:00
|
|
|
#include "support/lstrings.h"
|
2006-04-15 14:46:12 +00:00
|
|
|
#include "support/filetools.h"
|
2007-01-24 15:49:20 +00:00
|
|
|
#include "support/ExceptionMessage.h"
|
2007-01-11 21:22:18 +00:00
|
|
|
#include "support/package.h"
|
|
|
|
#include "support/path.h"
|
2004-11-07 13:22:51 +00:00
|
|
|
|
2001-12-20 16:27:02 +00:00
|
|
|
#include "debug.h"
|
2007-01-24 15:49:20 +00:00
|
|
|
#include "gettext.h"
|
2001-05-17 15:11:01 +00:00
|
|
|
|
2005-09-30 12:24:50 +00:00
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
* Fortunately, Microsoft provide the trickery. All we need is the
|
|
|
|
* NewAPIs.h header file, available for download from Microsoft as
|
|
|
|
* part of the Platform SDK.
|
|
|
|
*/
|
|
|
|
#if defined (HAVE_NEWAPIS_H)
|
|
|
|
// This should be defined already to keep Boost.Filesystem happy.
|
|
|
|
# if !defined (WANT_GETFILEATTRIBUTESEX_WRAPPER)
|
|
|
|
# error Expected WANT_GETFILEATTRIBUTESEX_WRAPPER to be defined!
|
|
|
|
# endif
|
|
|
|
# define WANT_GETLONGPATHNAME_WRAPPER 1
|
|
|
|
# define COMPILE_NEWAPIS_STUBS
|
|
|
|
# include <NewAPIs.h>
|
|
|
|
# undef COMPILE_NEWAPIS_STUBS
|
|
|
|
# undef WANT_GETLONGPATHNAME_WRAPPER
|
|
|
|
#endif
|
|
|
|
|
2001-05-17 15:11:01 +00:00
|
|
|
#include <io.h>
|
2005-01-21 22:08:59 +00:00
|
|
|
#include <direct.h> // _getdrive
|
2005-09-30 12:24:50 +00:00
|
|
|
#include <shlobj.h> // SHGetFolderPath
|
2006-05-17 22:13:33 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
#include <shlwapi.h>
|
2005-09-30 12:24:50 +00:00
|
|
|
|
2005-09-30 21:19:31 +00:00
|
|
|
// Must define SHGFP_TYPE_CURRENT for older versions of MinGW.
|
|
|
|
#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__CYGWIN32__)
|
|
|
|
# include <w32api.h>
|
|
|
|
# if __W32API_MAJOR_VERSION < 3 || \
|
|
|
|
__W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION < 2
|
|
|
|
# define SHGFP_TYPE_CURRENT 0
|
|
|
|
# endif
|
2005-09-30 12:24:50 +00:00
|
|
|
#endif
|
2001-05-17 15:11:01 +00:00
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
using std::endl;
|
2003-10-08 08:38:05 +00:00
|
|
|
using std::string;
|
2001-05-17 15:11:01 +00:00
|
|
|
|
2006-04-15 14:46:12 +00:00
|
|
|
using lyx::support::runCommand;
|
|
|
|
using lyx::support::split;
|
2007-01-11 21:22:18 +00:00
|
|
|
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);
|
2006-04-15 14:46:12 +00:00
|
|
|
|
2001-05-17 15:11:01 +00:00
|
|
|
|
2003-07-01 21:31:06 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace support {
|
2003-02-10 10:22:05 +00:00
|
|
|
namespace os {
|
|
|
|
|
2006-04-15 14:46:12 +00:00
|
|
|
namespace {
|
|
|
|
|
2006-06-27 10:51:24 +00:00
|
|
|
bool windows_style_tex_paths_ = true;
|
2006-04-15 14:46:12 +00:00
|
|
|
|
|
|
|
string cygdrive = "/cygdrive";
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
2005-09-30 12:24:50 +00:00
|
|
|
void init(int /* argc */, char * argv[])
|
2005-01-17 22:31:30 +00:00
|
|
|
{
|
|
|
|
/* Note from Angus, 17 Jan 2005:
|
|
|
|
*
|
|
|
|
* The code below is taken verbatim from Ruurd's original patch
|
|
|
|
* porting LyX to Win32.
|
|
|
|
*
|
|
|
|
* Windows allows us to define LyX either as a console-based app
|
|
|
|
* or as a GUI-based app. Ruurd decided to define LyX as a
|
|
|
|
* console-based app with a "main" function rather than a "WinMain"
|
|
|
|
* function as the point of entry to the program, but to
|
|
|
|
* immediately close the console window that Windows helpfully
|
|
|
|
* opens for us. Doing so allows the user to see all of LyX's
|
|
|
|
* debug output simply by running LyX from a DOS or MSYS-shell
|
|
|
|
* prompt.
|
|
|
|
*
|
|
|
|
* The alternative approach is to define LyX as a genuine
|
|
|
|
* GUI-based app, with a "WinMain" function as the entry point to the
|
|
|
|
* executable rather than a "main" function, so:
|
|
|
|
*
|
|
|
|
* #if defined (_WIN32)
|
|
|
|
* # define WIN32_LEAN_AND_MEAN
|
2005-04-29 08:42:02 +00:00
|
|
|
* # include <stdlib.h> // for __argc, __argv
|
2005-01-17 22:31:30 +00:00
|
|
|
* # include <windows.h> // for WinMain
|
|
|
|
* #endif
|
|
|
|
*
|
|
|
|
* // This will require the "-mwindows" flag when linking with
|
|
|
|
* // gcc under MinGW.
|
|
|
|
* // For MSVC, use "/subsystem:windows".
|
|
|
|
* #if defined (_WIN32)
|
|
|
|
* int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
|
|
|
* {
|
2005-04-29 08:42:02 +00:00
|
|
|
* return mymain(__argc, __argv);
|
2005-01-17 22:31:30 +00:00
|
|
|
* }
|
|
|
|
* #endif
|
|
|
|
*
|
|
|
|
* where "mymain" is just a renamed "main".
|
|
|
|
*
|
|
|
|
* However, doing so means that the lyxerr messages would mysteriously
|
|
|
|
* disappear. They could be resurrected with something like:
|
|
|
|
*
|
|
|
|
* #ifdef WIN32
|
|
|
|
* AllocConsole();
|
2005-01-18 09:48:08 +00:00
|
|
|
* freopen("conin$","r",stdin);
|
|
|
|
* freopen("conout$","w",stdout);
|
|
|
|
* freopen("conout$","w",stderr);
|
2005-01-17 22:31:30 +00:00
|
|
|
* #endif
|
|
|
|
*
|
|
|
|
* This code could be invoked (say) the first time that lyxerr
|
|
|
|
* is called. However, Ruurd has tried this route and found that some
|
|
|
|
* shell scripts failed, for mysterious reasons...
|
|
|
|
*
|
|
|
|
* I've chosen for now, therefore, to simply add Ruurd's original
|
2006-07-25 19:38:56 +00:00
|
|
|
* code as-is. A wrapper program hidecmd.c has been added to
|
|
|
|
* development/Win32 which hides the console window of lyx when
|
|
|
|
* lyx is invoked as a parameter of hidecmd.exe.
|
2005-01-17 22:31:30 +00:00
|
|
|
*/
|
2006-04-15 14:46:12 +00:00
|
|
|
|
|
|
|
// If cygwin is detected, query the cygdrive prefix
|
2006-06-30 14:28:36 +00:00
|
|
|
HKEY regKey;
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
DWORD bufSize = sizeof(buf);
|
|
|
|
LONG retVal;
|
|
|
|
|
|
|
|
retVal = RegOpenKeyEx(HKEY_LOCAL_MACHINE,
|
|
|
|
"Software\\Cygnus Solutions\\Cygwin\\mounts v2",
|
|
|
|
0, KEY_QUERY_VALUE, ®Key);
|
|
|
|
if (retVal != ERROR_SUCCESS) {
|
|
|
|
retVal = RegOpenKeyEx(HKEY_CURRENT_USER,
|
|
|
|
"Software\\Cygnus Solutions\\Cygwin\\mounts v2",
|
|
|
|
0, KEY_QUERY_VALUE, ®Key);
|
|
|
|
}
|
|
|
|
if (retVal == ERROR_SUCCESS) {
|
|
|
|
retVal = RegQueryValueEx(regKey, "cygdrive prefix", NULL, NULL,
|
|
|
|
(LPBYTE) buf, &bufSize);
|
|
|
|
RegCloseKey(regKey);
|
|
|
|
if ((retVal == ERROR_SUCCESS) && (bufSize <= MAX_PATH))
|
|
|
|
cygdrive = buf;
|
2006-04-15 14:46:12 +00:00
|
|
|
}
|
2005-01-17 22:31:30 +00:00
|
|
|
}
|
2003-02-10 10:22:05 +00:00
|
|
|
|
2001-05-17 15:11:01 +00:00
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
string current_root()
|
|
|
|
{
|
2005-01-04 17:50:25 +00:00
|
|
|
// _getdrive returns the current drive (1=A, 2=B, and so on).
|
|
|
|
char const drive = ::_getdrive() + 'A' - 1;
|
|
|
|
return string(1, drive) + ":/";
|
2001-05-17 15:11:01 +00:00
|
|
|
}
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
|
2007-03-13 10:22:10 +00:00
|
|
|
docstring::size_type common_path(docstring const & p1, docstring const & p2)
|
2003-02-10 10:22:05 +00:00
|
|
|
{
|
2007-03-13 10:22:10 +00:00
|
|
|
docstring::size_type i = 0;
|
|
|
|
docstring::size_type const p1_len = p1.length();
|
|
|
|
docstring::size_type const p2_len = p2.length();
|
2003-02-10 10:22:05 +00:00
|
|
|
while (i < p1_len && i < p2_len && uppercase(p1[i]) == uppercase(p2[i]))
|
|
|
|
++i;
|
2001-05-17 15:11:01 +00:00
|
|
|
if ((i < p1_len && i < p2_len)
|
|
|
|
|| (i < p1_len && p1[i] != '/' && i == p2_len)
|
2003-02-10 10:22:05 +00:00
|
|
|
|| (i < p2_len && p2[i] != '/' && i == p1_len))
|
|
|
|
{
|
|
|
|
if (i)
|
|
|
|
--i; // here was the last match
|
|
|
|
while (i && p1[i] != '/')
|
|
|
|
--i;
|
2001-05-17 15:11:01 +00:00
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
|
|
|
|
string external_path(string const & p)
|
|
|
|
{
|
2005-04-18 17:43:11 +00:00
|
|
|
string const dos_path = subst(p, "/", "\\");
|
2004-12-20 16:59:33 +00:00
|
|
|
|
2007-04-01 10:09:49 +00:00
|
|
|
LYXERR(Debug::LATEX)
|
2001-05-17 15:11:01 +00:00
|
|
|
<< "<Win32 path correction> ["
|
|
|
|
<< p << "]->>["
|
2002-11-27 10:30:28 +00:00
|
|
|
<< dos_path << ']' << endl;
|
2001-05-17 15:11:01 +00:00
|
|
|
return dos_path;
|
2001-10-04 09:57:02 +00:00
|
|
|
}
|
|
|
|
|
2001-10-08 14:09:06 +00:00
|
|
|
|
2005-09-30 12:24:50 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
string const get_long_path(string const & short_path)
|
|
|
|
{
|
2007-01-18 20:47:27 +00:00
|
|
|
// 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.
|
2005-10-02 21:49:52 +00:00
|
|
|
std::vector<char> long_path(MAX_PATH);
|
2007-01-18 20:47:27 +00:00
|
|
|
DWORD result = GetLongPathName(to_local8bit(from_utf8(short_path)).c_str(),
|
2005-09-30 12:24:50 +00:00
|
|
|
&long_path[0], long_path.size());
|
|
|
|
|
|
|
|
if (result > long_path.size()) {
|
|
|
|
long_path.resize(result);
|
|
|
|
result = GetLongPathName(short_path.c_str(),
|
|
|
|
&long_path[0], long_path.size());
|
|
|
|
BOOST_ASSERT(result <= long_path.size());
|
|
|
|
}
|
|
|
|
|
2007-01-18 20:47:27 +00:00
|
|
|
return (result == 0) ? short_path : to_utf8(from_filesystem8bit(&long_path[0]));
|
2005-09-30 12:24:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
string internal_path(string const & p)
|
|
|
|
{
|
2005-09-30 12:24:50 +00:00
|
|
|
return subst(get_long_path(p), "\\", "/");
|
2001-10-04 09:57:02 +00:00
|
|
|
}
|
2001-10-08 14:09:06 +00:00
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
|
2006-04-05 19:26:08 +00:00
|
|
|
string external_path_list(string const & p)
|
|
|
|
{
|
|
|
|
return subst(p, '/', '\\');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string internal_path_list(string const & p)
|
|
|
|
{
|
|
|
|
return subst(p, '\\', '/');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-24 12:48:37 +00:00
|
|
|
string latex_path(string const & p)
|
|
|
|
{
|
2006-04-15 14:46:12 +00:00
|
|
|
// We may need a posix style path or a windows style path (depending
|
2006-06-27 10:51:24 +00:00
|
|
|
// on windows_style_tex_paths_), but we use always forward slashes,
|
|
|
|
// since it gets written into a .tex file.
|
2006-04-15 14:46:12 +00:00
|
|
|
|
2006-06-27 10:51:24 +00:00
|
|
|
if (!windows_style_tex_paths_ && is_absolute_path(p)) {
|
2006-04-15 14:46:12 +00:00
|
|
|
string const drive = p.substr(0, 2);
|
|
|
|
string const cygprefix = cygdrive + "/" + drive.substr(0, 1);
|
|
|
|
string const cygpath = subst(subst(p, '\\', '/'), drive, cygprefix);
|
2007-04-01 10:09:49 +00:00
|
|
|
LYXERR(Debug::LATEX)
|
2006-06-27 10:51:24 +00:00
|
|
|
<< "<Path correction for LaTeX> ["
|
2006-04-15 14:46:12 +00:00
|
|
|
<< p << "]->>["
|
|
|
|
<< cygpath << ']' << endl;
|
|
|
|
return cygpath;
|
|
|
|
}
|
2006-04-05 19:26:08 +00:00
|
|
|
return subst(p, '\\', '/');
|
2006-03-24 12:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-08 14:09:06 +00:00
|
|
|
// (Claus H.) On Win32 both Unix and Win32/DOS pathnames are used.
|
|
|
|
// Therefore an absolute path could be either a pathname starting
|
|
|
|
// with a slash (Unix) or a pathname starting with a drive letter
|
|
|
|
// followed by a colon. Because a colon is not valid in pathes in Unix
|
|
|
|
// and at another location in Win32 testing just for the existance
|
|
|
|
// of the colon in the 2nd position seems to be enough!
|
2003-02-10 10:22:05 +00:00
|
|
|
bool is_absolute_path(string const & p)
|
2001-10-08 14:09:06 +00:00
|
|
|
{
|
|
|
|
if (p.empty())
|
|
|
|
return false;
|
|
|
|
|
2001-12-20 16:27:02 +00:00
|
|
|
bool isDosPath = (p.length() > 1 && p[1] == ':');
|
|
|
|
bool isUnixPath = (p[0] == '/');
|
2001-10-08 14:09:06 +00:00
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
return isDosPath || isUnixPath;
|
2001-10-08 14:09:06 +00:00
|
|
|
}
|
2002-02-08 14:32:17 +00:00
|
|
|
|
2002-09-23 16:03:11 +00:00
|
|
|
|
|
|
|
// returns a string suitable to be passed to popen when
|
|
|
|
// reading a pipe
|
2003-02-10 10:22:05 +00:00
|
|
|
char const * popen_read_mode()
|
2002-09-23 16:03:11 +00:00
|
|
|
{
|
|
|
|
return "r";
|
|
|
|
}
|
2003-02-10 10:22:05 +00:00
|
|
|
|
|
|
|
|
2004-12-15 19:35:43 +00:00
|
|
|
string const & nulldev()
|
|
|
|
{
|
2005-01-10 19:17:43 +00:00
|
|
|
static string const nulldev_ = "nul";
|
2004-12-15 19:35:43 +00:00
|
|
|
return nulldev_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-10 10:22:05 +00:00
|
|
|
shell_type shell()
|
|
|
|
{
|
2004-12-15 19:35:43 +00:00
|
|
|
return CMD_EXE;
|
2003-02-10 10:22:05 +00:00
|
|
|
}
|
|
|
|
|
2005-01-14 15:53:30 +00:00
|
|
|
|
2005-01-13 10:10:16 +00:00
|
|
|
char path_separator()
|
|
|
|
{
|
|
|
|
return ';';
|
|
|
|
}
|
|
|
|
|
2005-01-14 15:53:30 +00:00
|
|
|
|
2006-06-27 10:51:24 +00:00
|
|
|
void windows_style_tex_paths(bool use_windows_paths)
|
2006-04-15 14:46:12 +00:00
|
|
|
{
|
2006-06-27 10:51:24 +00:00
|
|
|
windows_style_tex_paths_ = use_windows_paths;
|
2006-04-15 14:46:12 +00:00
|
|
|
}
|
2005-01-14 15:53:30 +00:00
|
|
|
|
2005-09-30 12:24:50 +00:00
|
|
|
|
|
|
|
GetFolderPath::GetFolderPath()
|
|
|
|
: folder_module_(0),
|
|
|
|
folder_path_func_(0)
|
|
|
|
{
|
|
|
|
folder_module_ = LoadLibrary("shfolder.dll");
|
|
|
|
if (!folder_module_) {
|
2007-01-24 15:49:20 +00:00
|
|
|
throw ExceptionMessage(ErrorException, _("System file not found"),
|
|
|
|
_("Unable to load shfolder.dll\nPlease install."));
|
2005-09-30 12:24:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
folder_path_func_ = reinterpret_cast<function_pointer>(::GetProcAddress(folder_module_, "SHGetFolderPathA"));
|
|
|
|
if (folder_path_func_ == 0) {
|
2007-01-24 15:49:20 +00:00
|
|
|
throw ExceptionMessage(ErrorException, _("System function not found"),
|
|
|
|
_("Unable to find SHGetFolderPathA in shfolder.dll\n"
|
|
|
|
"Don't know how to proceed. Sorry."));
|
2005-09-30 12:24:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GetFolderPath::~GetFolderPath()
|
|
|
|
{
|
|
|
|
if (folder_module_)
|
|
|
|
FreeLibrary(folder_module_);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Given a folder ID, returns the folder name (in unix-style format).
|
|
|
|
// Eg CSIDL_PERSONAL -> "C:/Documents and Settings/USERNAME/My Documents"
|
|
|
|
string const GetFolderPath::operator()(folder_id _id) const
|
|
|
|
{
|
2005-10-02 21:49:52 +00:00
|
|
|
char folder_path[MAX_PATH];
|
2005-09-30 12:24:50 +00:00
|
|
|
|
|
|
|
int id = 0;
|
|
|
|
switch (_id) {
|
|
|
|
case PERSONAL:
|
|
|
|
id = CSIDL_PERSONAL;
|
|
|
|
break;
|
|
|
|
case APPDATA:
|
|
|
|
id = CSIDL_APPDATA;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BOOST_ASSERT(false);
|
|
|
|
}
|
|
|
|
HRESULT const result = (folder_path_func_)(0, id, 0,
|
|
|
|
SHGFP_TYPE_CURRENT,
|
|
|
|
folder_path);
|
2007-01-18 20:47:27 +00:00
|
|
|
return (result == 0) ? os::internal_path(to_utf8(from_filesystem8bit(folder_path))) : string();
|
2005-09-30 12:24:50 +00:00
|
|
|
}
|
|
|
|
|
2006-05-17 22:13:33 +00:00
|
|
|
|
|
|
|
bool canAutoOpenFile(string const & ext, auto_open_mode const mode)
|
|
|
|
{
|
|
|
|
if (ext.empty())
|
|
|
|
return false;
|
2006-05-18 19:09:53 +00:00
|
|
|
|
|
|
|
string const full_ext = "." + ext;
|
2006-05-17 22:13:33 +00:00
|
|
|
|
|
|
|
DWORD bufSize = MAX_PATH + 100;
|
|
|
|
TCHAR buf[MAX_PATH + 100];
|
|
|
|
// reference: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc
|
|
|
|
// /platform/shell/reference/shlwapi/registry/assocquerystring.asp
|
|
|
|
char const * action = (mode == VIEW) ? "open" : "edit";
|
|
|
|
return S_OK == AssocQueryString(0, ASSOCSTR_EXECUTABLE,
|
|
|
|
full_ext.c_str(), action, buf, &bufSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool autoOpenFile(string const & filename, auto_open_mode const mode)
|
|
|
|
{
|
|
|
|
// reference: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc
|
|
|
|
// /platform/shell/reference/functions/shellexecute.asp
|
|
|
|
char const * action = (mode == VIEW) ? "open" : "edit";
|
2006-05-18 19:09:53 +00:00
|
|
|
return reinterpret_cast<int>(ShellExecute(NULL, action,
|
2007-01-18 20:47:27 +00:00
|
|
|
to_local8bit(from_utf8(filename)).c_str(), NULL, NULL, 1)) > 32;
|
2006-05-17 22:13:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-11 21:22:18 +00:00
|
|
|
void addFontResources()
|
|
|
|
{
|
|
|
|
// Windows only: Add BaKoMa TrueType font resources
|
2007-04-06 13:09:54 +00:00
|
|
|
string const fonts_dir = addPath(package().system_support().absFilename(), "fonts");
|
2007-01-11 21:22:18 +00:00
|
|
|
|
|
|
|
for (int i = 0 ; i < num_fonts_truetype ; ++i) {
|
2007-01-18 20:47:27 +00:00
|
|
|
string const font_current =
|
2007-01-11 21:22:18 +00:00
|
|
|
addName(fonts_dir, win_fonts_truetype[i] + ".ttf");
|
2007-01-18 20:47:27 +00:00
|
|
|
AddFontResource(to_local8bit(from_utf8(external_path(font_current))).c_str());
|
2007-01-11 21:22:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void restoreFontResources()
|
|
|
|
{
|
|
|
|
// Windows only: Remove BaKoMa TrueType font resources
|
2007-04-06 13:09:54 +00:00
|
|
|
string const fonts_dir = addPath(package().system_support().absFilename(), "fonts");
|
2007-01-11 21:22:18 +00:00
|
|
|
|
|
|
|
for(int i = 0 ; i < num_fonts_truetype ; ++i) {
|
2007-01-18 20:47:27 +00:00
|
|
|
string const font_current =
|
2007-01-11 21:22:18 +00:00
|
|
|
addName(fonts_dir, win_fonts_truetype[i] + ".ttf");
|
2007-01-18 20:47:27 +00:00
|
|
|
RemoveFontResource(to_local8bit(from_utf8(external_path(font_current))).c_str());
|
2007-01-11 21:22:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-01 21:31:06 +00:00
|
|
|
} // namespace os
|
|
|
|
} // namespace support
|
|
|
|
} // namespace lyx
|