OLD | NEW |
1 #ifndef _ADBLOCK_PLUS_CLIENT_H_ | 1 #ifndef _ADBLOCK_PLUS_CLIENT_H_ |
2 #define _ADBLOCK_PLUS_CLIENT_H_ | 2 #define _ADBLOCK_PLUS_CLIENT_H_ |
3 | 3 |
4 | 4 |
5 #include "PluginTypedef.h" | 5 #include "PluginTypedef.h" |
6 #include "PluginClientBase.h" | 6 #include "PluginClientBase.h" |
7 #include "../shared/Communication.h" | 7 #include "../shared/Communication.h" |
8 | 8 |
9 | 9 |
10 class CPluginFilter; | 10 class CPluginFilter; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 std::vector<std::wstring> GetExceptionDomains(); | 58 std::vector<std::wstring> GetExceptionDomains(); |
59 void AddFilter(const std::wstring& text); | 59 void AddFilter(const std::wstring& text); |
60 void RemoveFilter(const std::wstring& text); | 60 void RemoveFilter(const std::wstring& text); |
61 void SetPref(const std::wstring& name, const std::wstring& value); | 61 void SetPref(const std::wstring& name, const std::wstring& value); |
62 void SetPref(const std::wstring& name, const int64_t& value); | 62 void SetPref(const std::wstring& name, const int64_t& value); |
63 void SetPref(const std::wstring& name, bool value); | 63 void SetPref(const std::wstring& name, bool value); |
64 std::wstring GetPref(const std::wstring& name, const std::wstring& defaultValu
e = L""); | 64 std::wstring GetPref(const std::wstring& name, const std::wstring& defaultValu
e = L""); |
65 std::wstring GetPref(const std::wstring& name, const wchar_t* defaultValue); | 65 std::wstring GetPref(const std::wstring& name, const wchar_t* defaultValue); |
66 bool GetPref(const std::wstring& name, bool defaultValue = false); | 66 bool GetPref(const std::wstring& name, bool defaultValue = false); |
67 int64_t GetPref(const std::wstring& name, int64_t defaultValue = 0); | 67 int64_t GetPref(const std::wstring& name, int64_t defaultValue = 0); |
| 68 void CheckForUpdates(); |
| 69 std::wstring GetAppLocale(); |
| 70 std::wstring GetDocumentationLink(); |
68 | 71 |
69 bool IsFirstRun(); | 72 bool IsFirstRun(); |
70 }; | 73 }; |
71 | 74 |
72 #endif // _ADBLOCK_PLUS_CLIENT_H_ | 75 #endif // _ADBLOCK_PLUS_CLIENT_H_ |
OLD | NEW |