OLD | NEW |
1 /* | 1 /* |
2 * http://msdn.microsoft.com/en-us/library/bb250436.aspx | 2 * http://msdn.microsoft.com/en-us/library/bb250436.aspx |
3 */ | 3 */ |
4 | 4 |
5 #ifndef _PLUGIN_CLASS_H_ | 5 #ifndef _PLUGIN_CLASS_H_ |
6 #define _PLUGIN_CLASS_H_ | 6 #define _PLUGIN_CLASS_H_ |
7 | 7 |
8 | 8 |
9 #include "PluginTypedef.h" | 9 #include "PluginTypedef.h" |
10 #include "Plugin.h" | 10 #include "Plugin.h" |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 private: | 132 private: |
133 DWORD m_nConnectionID; | 133 DWORD m_nConnectionID; |
134 HWND m_hBrowserWnd; | 134 HWND m_hBrowserWnd; |
135 HWND m_hTabWnd; | 135 HWND m_hTabWnd; |
136 HWND m_hStatusBarWnd; | 136 HWND m_hStatusBarWnd; |
137 HWND m_hPaneWnd; | 137 HWND m_hPaneWnd; |
138 WNDPROC m_pWndProcStatus; | 138 WNDPROC m_pWndProcStatus; |
139 int m_nPaneWidth; | 139 int m_nPaneWidth; |
140 HANDLE m_hTheme; | 140 HANDLE m_hTheme; |
141 | 141 |
| 142 CriticalSection m_csStatusBar; |
| 143 |
142 bool m_isAdviced; | 144 bool m_isAdviced; |
143 bool m_isInitializedOk; | 145 bool m_isInitializedOk; |
144 | 146 |
145 // Atom pane class | 147 // Atom pane class |
146 static ATOM s_atomPaneClass; | 148 static ATOM s_atomPaneClass; |
147 | 149 |
148 static ATOM GetAtomPaneClass(); | 150 static ATOM GetAtomPaneClass(); |
149 | 151 |
150 // Icons | 152 // Icons |
151 static HICON s_hIcons[ICON_MAX]; | 153 static HICON s_hIcons[ICON_MAX]; |
(...skipping 28 matching lines...) Expand all Loading... |
180 static CComQIPtr<IWebBrowser2> s_asyncWebBrowser2; | 182 static CComQIPtr<IWebBrowser2> s_asyncWebBrowser2; |
181 | 183 |
182 static CComQIPtr<IWebBrowser2> GetAsyncBrowser(); | 184 static CComQIPtr<IWebBrowser2> GetAsyncBrowser(); |
183 | 185 |
184 }; | 186 }; |
185 | 187 |
186 OBJECT_ENTRY_AUTO(__uuidof(PluginClass), CPluginClass) | 188 OBJECT_ENTRY_AUTO(__uuidof(PluginClass), CPluginClass) |
187 | 189 |
188 | 190 |
189 #endif // _PLUGIN_CLASS_H_ | 191 #endif // _PLUGIN_CLASS_H_ |
OLD | NEW |