Use a shorter/simpler license convention, stops the header taking so much space. Follow the SPDX license specification: https://spdx.org/licenses - C/C++/objc/objc++ - Python - Shell Scripts - CMake, GNUmakefile While most of the source tree has been included - `./extern/` was left out. - `./intern/cycles` & `./intern/atomic` are also excluded because they use different header conventions. doc/license/SPDX-license-identifiers.txt has been added to list SPDX all used identifiers. See P2788 for the script that automated these edits. Reviewed By: brecht, mont29, sergey Ref D14069
131 lines
3.3 KiB
C++
131 lines
3.3 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2011 Blender Foundation. All rights reserved. */
|
|
|
|
/** \file
|
|
* \ingroup GHOST
|
|
*/
|
|
|
|
#include "GHOST_SystemPathsWin32.h"
|
|
#include "GHOST_Debug.h"
|
|
|
|
#ifndef _WIN32_IE
|
|
# define _WIN32_IE 0x0501
|
|
#endif
|
|
#include "utfconv.h"
|
|
#include <shlobj.h>
|
|
|
|
GHOST_SystemPathsWin32::GHOST_SystemPathsWin32()
|
|
{
|
|
}
|
|
|
|
GHOST_SystemPathsWin32::~GHOST_SystemPathsWin32()
|
|
{
|
|
}
|
|
|
|
const char *GHOST_SystemPathsWin32::getSystemDir(int, const char *versionstr) const
|
|
{
|
|
/* 1 utf-16 might translate into 3 utf-8. 2 utf-16 translates into 4 utf-8. */
|
|
static char knownpath[MAX_PATH * 3 + 128] = {0};
|
|
PWSTR knownpath_16 = NULL;
|
|
|
|
HRESULT hResult = SHGetKnownFolderPath(
|
|
FOLDERID_ProgramData, KF_FLAG_DEFAULT, NULL, &knownpath_16);
|
|
|
|
if (hResult == S_OK) {
|
|
conv_utf_16_to_8(knownpath_16, knownpath, MAX_PATH * 3);
|
|
CoTaskMemFree(knownpath_16);
|
|
strcat(knownpath, "\\Blender Foundation\\Blender\\");
|
|
strcat(knownpath, versionstr);
|
|
return knownpath;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
const char *GHOST_SystemPathsWin32::getUserDir(int, const char *versionstr) const
|
|
{
|
|
static char knownpath[MAX_PATH * 3 + 128] = {0};
|
|
PWSTR knownpath_16 = NULL;
|
|
|
|
HRESULT hResult = SHGetKnownFolderPath(
|
|
FOLDERID_RoamingAppData, KF_FLAG_DEFAULT, NULL, &knownpath_16);
|
|
|
|
if (hResult == S_OK) {
|
|
conv_utf_16_to_8(knownpath_16, knownpath, MAX_PATH * 3);
|
|
CoTaskMemFree(knownpath_16);
|
|
strcat(knownpath, "\\Blender Foundation\\Blender\\");
|
|
strcat(knownpath, versionstr);
|
|
return knownpath;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
const char *GHOST_SystemPathsWin32::getUserSpecialDir(GHOST_TUserSpecialDirTypes type) const
|
|
{
|
|
GUID folderid;
|
|
|
|
switch (type) {
|
|
case GHOST_kUserSpecialDirDesktop:
|
|
folderid = FOLDERID_Desktop;
|
|
break;
|
|
case GHOST_kUserSpecialDirDocuments:
|
|
folderid = FOLDERID_Documents;
|
|
break;
|
|
case GHOST_kUserSpecialDirDownloads:
|
|
folderid = FOLDERID_Downloads;
|
|
break;
|
|
case GHOST_kUserSpecialDirMusic:
|
|
folderid = FOLDERID_Music;
|
|
break;
|
|
case GHOST_kUserSpecialDirPictures:
|
|
folderid = FOLDERID_Pictures;
|
|
break;
|
|
case GHOST_kUserSpecialDirVideos:
|
|
folderid = FOLDERID_Videos;
|
|
break;
|
|
case GHOST_kUserSpecialDirCaches:
|
|
folderid = FOLDERID_LocalAppData;
|
|
break;
|
|
default:
|
|
GHOST_ASSERT(
|
|
false,
|
|
"GHOST_SystemPathsWin32::getUserSpecialDir(): Invalid enum value for type parameter");
|
|
return NULL;
|
|
}
|
|
|
|
static char knownpath[MAX_PATH * 3] = {0};
|
|
PWSTR knownpath_16 = NULL;
|
|
HRESULT hResult = SHGetKnownFolderPath(folderid, KF_FLAG_DEFAULT, NULL, &knownpath_16);
|
|
|
|
if (hResult == S_OK) {
|
|
conv_utf_16_to_8(knownpath_16, knownpath, MAX_PATH * 3);
|
|
CoTaskMemFree(knownpath_16);
|
|
return knownpath;
|
|
}
|
|
|
|
CoTaskMemFree(knownpath_16);
|
|
return NULL;
|
|
}
|
|
|
|
const char *GHOST_SystemPathsWin32::getBinaryDir() const
|
|
{
|
|
static char fullname[MAX_PATH * 3] = {0};
|
|
wchar_t fullname_16[MAX_PATH * 3];
|
|
|
|
if (GetModuleFileNameW(0, fullname_16, MAX_PATH)) {
|
|
conv_utf_16_to_8(fullname_16, fullname, MAX_PATH * 3);
|
|
return fullname;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
void GHOST_SystemPathsWin32::addToSystemRecentFiles(const char *filename) const
|
|
{
|
|
/* SHARD_PATH resolves to SHARD_PATHA for non-UNICODE build */
|
|
UTF16_ENCODE(filename);
|
|
SHAddToRecentDocs(SHARD_PATHW, filename_16);
|
|
UTF16_UN_ENCODE(filename);
|
|
}
|