OLD | NEW |
1 #include "PluginStdAfx.h" | 1 #include "PluginStdAfx.h" |
2 #include <algorithm> | 2 #include <algorithm> |
3 #include <stdexcept> | 3 #include <stdexcept> |
4 #include <vector> | 4 #include <vector> |
5 | 5 |
6 #include "../shared/Utils.h" | 6 #include "../shared/Utils.h" |
7 #include "PluginUtil.h" | 7 #include "PluginUtil.h" |
8 #include "PluginSettings.h" | 8 #include "PluginSettings.h" |
9 | 9 |
10 BString::BString(const std::wstring& value) | 10 BString::BString(const std::wstring& value) |
11 : value(::SysAllocString(value.c_str())) | 11 : value(::SysAllocString(value.c_str())) |
12 { | 12 { |
13 } | 13 } |
14 | 14 |
15 BString::~BString() | 15 BString::~BString() |
16 { | 16 { |
17 ::SysFreeString(value); | 17 ::SysFreeString(value); |
18 } | 18 } |
19 | 19 |
20 BString::operator BSTR() | 20 BString::operator BSTR() |
21 { | 21 { |
22 return value; | 22 return value; |
23 } | 23 } |
24 | 24 |
25 std::wstring UserSettingsFileUrl() | 25 std::wstring UserSettingsFileUrl() |
26 { | 26 { |
27 return FileUrl(GetDllDir() + L"html\\templates\\index.html"); | 27 return FileUrl( Location::html_dir() + L"templates\\index.html" ); |
28 } | 28 } |
29 | 29 |
30 std::wstring UserSettingsFirstRunPageUrl() | 30 std::wstring UserSettingsFirstRunPageUrl() |
31 { | 31 { |
32 return FileUrl(GetDllDir() + L"html\\templates\\firstRun.html"); | 32 return FileUrl( Location::html_dir() + L"templates\\firstRun.html"); |
33 } | 33 } |
34 | 34 |
35 std::wstring FileUrl(const std::wstring& path) | 35 std::wstring FileUrl(const std::wstring& path) |
36 { | 36 { |
37 std::wstring url = path; | 37 std::wstring url = path; |
38 std::replace(url.begin(), url.end(), L'\\', L'/'); | 38 std::replace(url.begin(), url.end(), L'\\', L'/'); |
39 return L"file:///" + url; | 39 return L"file:///" + url; |
40 } | 40 } |
41 | |
OLD | NEW |