OLD | NEW |
1 /** | 1 /** |
2 * This class contains all client functionality of the IE plugin | 2 * This class contains all client functionality of the IE plugin |
3 * | 3 * |
4 * Exception errors are tested by calls to ExceptionsTest from: Main ... | 4 * Exception errors are tested by calls to ExceptionsTest from: Main ... |
5 */ | 5 */ |
6 | 6 |
7 #ifndef _PLUGIN_SETTINGS_H_ | 7 #ifndef _PLUGIN_SETTINGS_H_ |
8 #define _PLUGIN_SETTINGS_H_ | 8 #define _PLUGIN_SETTINGS_H_ |
9 | 9 |
10 | 10 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #define SETTING_TAB_CONFIG_VERSION L"configversion" | 44 #define SETTING_TAB_CONFIG_VERSION L"configversion" |
45 #endif | 45 #endif |
46 | 46 |
47 | 47 |
48 class CPluginIniFileW; | 48 class CPluginIniFileW; |
49 | 49 |
50 | 50 |
51 class CPluginSettings | 51 class CPluginSettings |
52 { | 52 { |
53 | 53 |
54 public: | |
55 | |
56 typedef std::map<CString, CString> TProperties; | |
57 | |
58 private: | 54 private: |
59 | 55 |
60 DWORD m_dwWorkingThreadId; | 56 DWORD m_dwWorkingThreadId; |
61 | 57 |
62 static CComAutoCriticalSection s_criticalSectionLocal; | 58 static CComAutoCriticalSection s_criticalSectionLocal; |
63 | 59 |
64 void Clear(); | 60 void Clear(); |
65 | 61 |
66 // Private constructor used by the singleton pattern | 62 // Private constructor used by the singleton pattern |
67 CPluginSettings(); | 63 CPluginSettings(); |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 | 111 |
116 void SetSubscription(const std::wstring& url); | 112 void SetSubscription(const std::wstring& url); |
117 void SetDefaultSubscription(); | 113 void SetDefaultSubscription(); |
118 CString GetSubscription(); | 114 CString GetSubscription(); |
119 CString GetAppLocale(); | 115 CString GetAppLocale(); |
120 CString GetDocumentationLink(); | 116 CString GetDocumentationLink(); |
121 }; | 117 }; |
122 | 118 |
123 | 119 |
124 #endif // _PLUGIN_SETTINGS_H_ | 120 #endif // _PLUGIN_SETTINGS_H_ |
OLD | NEW |