LEFT | RIGHT |
(no file at all) | |
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 HtmlFolderPath() |
| 26 { |
| 27 return GetDllDir() + L"html\\templates\\"; |
| 28 } |
| 29 |
25 std::wstring UserSettingsFileUrl() | 30 std::wstring UserSettingsFileUrl() |
26 { | 31 { |
27 return FileUrl(GetDllDir() + L"html\\templates\\index.html"); | 32 return FileUrl(HtmlFolderPath() + L"index.html"); |
| 33 } |
| 34 |
| 35 std::wstring FirstRunPageFileUrl() |
| 36 { |
| 37 return FileUrl(HtmlFolderPath() + L"firstRun.html"); |
28 } | 38 } |
29 | 39 |
30 std::wstring FileUrl(const std::wstring& path) | 40 std::wstring FileUrl(const std::wstring& path) |
31 { | 41 { |
32 std::wstring url = path; | 42 std::wstring url = path; |
33 std::replace(url.begin(), url.end(), L'\\', L'/'); | 43 std::replace(url.begin(), url.end(), L'\\', L'/'); |
34 return L"file:///" + url; | 44 return L"file:///" + url; |
35 } | 45 } |
36 | 46 |
LEFT | RIGHT |