OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ | 5 #ifndef WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ |
6 #define WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ | 6 #define WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "third_party/npapi/bindings/npapi.h" | 11 #include "third_party/npapi/bindings/npapi.h" |
12 #include "gfx/native_widget_types.h" | 12 // #include "webkit/default_plugin/install_dialog.h" |
| 13 // #include "webkit/default_plugin/plugin_database_handler.h" |
| 14 // #include "webkit/default_plugin/plugin_install_job_monitor.h" |
13 | 15 |
14 // Possible plugin installer states. | 16 // Possible plugin installer states. |
15 enum PluginInstallerState { | 17 enum PluginInstallerState { |
16 PluginInstallerStateUndefined, | 18 PluginInstallerStateUndefined, |
17 PluginListDownloadInitiated, | 19 PluginListDownloadInitiated, |
18 PluginListDownloaded, | 20 PluginListDownloaded, |
19 PluginListDownloadedPluginNotFound, | 21 PluginListDownloadedPluginNotFound, |
20 PluginListDownloadFailed, | 22 PluginListDownloadFailed, |
21 PluginDownloadInitiated, | 23 PluginDownloadInitiated, |
22 PluginDownloadCompleted, | 24 PluginDownloadCompleted, |
(...skipping 26 matching lines...) Expand all Loading... |
49 // mime_type | 51 // mime_type |
50 // Identifies the third party plugin which would be eventually installed. | 52 // Identifies the third party plugin which would be eventually installed. |
51 // argc | 53 // argc |
52 // Indicates the count of arguments passed in from the webpage. | 54 // Indicates the count of arguments passed in from the webpage. |
53 // argv | 55 // argv |
54 // Pointer to the arguments. | 56 // Pointer to the arguments. |
55 // Returns true on success. | 57 // Returns true on success. |
56 bool Initialize(void *module_handle, NPP instance, NPMIMEType mime_type, | 58 bool Initialize(void *module_handle, NPP instance, NPMIMEType mime_type, |
57 int16 argc, char* argn[], char* argv[]); | 59 int16 argc, char* argn[], char* argv[]); |
58 | 60 |
59 // Informs the plugin of its window information. | 61 // Displays the default plugin UI. |
60 // | 62 // |
61 // Parameters: | 63 // Parameters: |
62 // window_info | 64 // parent_window |
63 // The window info passed to npapi. | 65 // Handle to the parent window. |
64 bool NPP_SetWindow(NPWindow* window_info); | 66 bool SetWindow(gfx::NativeView parent_view); |
65 | 67 |
66 // Destroys the install dialog. | 68 // Destroys the install dialog and the plugin window. |
67 void Shutdown(); | 69 void Shutdown(); |
68 | 70 |
69 // Starts plugin download. Spawns the plugin installer after it is | 71 // Starts plugin download. Spawns the plugin installer after it is |
70 // downloaded. | 72 // downloaded. |
71 void DownloadPlugin(); | 73 void DownloadPlugin(); |
72 | 74 |
73 // Indicates that the plugin download was cancelled. | 75 // Indicates that the plugin download was cancelled. |
74 void DownloadCancelled(); | 76 void DownloadCancelled(); |
75 | 77 |
76 // Initializes the plugin download stream. | 78 // Initializes the plugin download stream. |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 // Handles notifications received in response to GetURLNotify calls issued | 120 // Handles notifications received in response to GetURLNotify calls issued |
119 // by the plugin. | 121 // by the plugin. |
120 // | 122 // |
121 // Parameters: | 123 // Parameters: |
122 // url | 124 // url |
123 // Pointer to the URL. | 125 // Pointer to the URL. |
124 // reason | 126 // reason |
125 // Describes why the notification was sent. | 127 // Describes why the notification was sent. |
126 void URLNotify(const char* url, NPReason reason); | 128 void URLNotify(const char* url, NPReason reason); |
127 | 129 |
128 // Used by the renderer to indicate plugin install through the infobar. | 130 // gfx::NativeView window() const { return m_hWnd; } |
129 int16 NPP_HandleEvent(void* event); | |
130 | |
131 const std::string& mime_type() const { return mime_type_; } | 131 const std::string& mime_type() const { return mime_type_; } |
132 | 132 |
133 // Replaces a resource string with the placeholder passed in as an argument | 133 // Replaces a resource string with the placeholder passed in as an argument |
134 // | 134 // |
135 // Parameters: | 135 // Parameters: |
136 // message_id_with_placeholders | 136 // message_id_with_placeholders |
137 // The resource id of the string with placeholders. This is only used if | 137 // The resource id of the string with placeholders. This is only used if |
138 // the placeholder string (the replacement_string) parameter is valid. | 138 // the placeholder string (the replacement_string) parameter is valid. |
139 // message_id_without_placeholders | 139 // message_id_without_placeholders |
140 // The resource id of the string to be returned if the placeholder is | 140 // The resource id of the string to be returned if the placeholder is |
(...skipping 20 matching lines...) Expand all Loading... |
161 // Getter for the NPP instance member. | 161 // Getter for the NPP instance member. |
162 const NPP instance() const { | 162 const NPP instance() const { |
163 return instance_; | 163 return instance_; |
164 } | 164 } |
165 | 165 |
166 // Returns whether or not the UI layout is right-to-left (such as Hebrew or | 166 // Returns whether or not the UI layout is right-to-left (such as Hebrew or |
167 // Arabic). | 167 // Arabic). |
168 bool IsRTLLayout() const; | 168 bool IsRTLLayout() const; |
169 | 169 |
170 protected: | 170 protected: |
171 int16 OnDrawRect(CGContextRef context, CGRect dirty_rect); | |
172 | |
173 // Displays the plugin install confirmation dialog. | 171 // Displays the plugin install confirmation dialog. |
174 void ShowInstallDialog(); | 172 void ShowInstallDialog(); |
175 | 173 |
176 // Clears the current display state. | 174 // Clears the current display state. |
177 void ClearDisplay(); | 175 void ClearDisplay(); |
178 | 176 |
179 // Displays the status message identified by the message resource id | 177 // Displays the status message identified by the message resource id |
180 // passed in. | 178 // passed in. |
181 // | 179 // |
182 // Parameters: | 180 // Parameters: |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 // | 259 // |
262 void PaintUserActionInformation(gfx::NativeDrawingContext paint_dc, | 260 void PaintUserActionInformation(gfx::NativeDrawingContext paint_dc, |
263 int x_origin, int y_origin); | 261 int x_origin, int y_origin); |
264 | 262 |
265 private: | 263 private: |
266 // Notify the renderer that plugin is available to download. | 264 // Notify the renderer that plugin is available to download. |
267 void NotifyPluginStatus(int status); | 265 void NotifyPluginStatus(int status); |
268 | 266 |
269 // The plugins opaque instance handle | 267 // The plugins opaque instance handle |
270 NPP instance_; | 268 NPP instance_; |
| 269 // If this is to install activex |
| 270 bool is_activex_; |
| 271 // The plugin instantiation mode (NP_FULL or NP_EMBED) |
| 272 int16 mode_; |
| 273 // The handle to the icon displayed in the plugin installation window. |
| 274 // HICON icon_; |
| 275 // The Get plugin link message string displayed at the top left corner of |
| 276 // the plugin window. |
| 277 std::wstring get_plugin_link_message_; |
| 278 // The command string displayed in the plugin installation window. |
| 279 std::wstring command_; |
| 280 // An additional message displayed at times by the plugin. |
| 281 std::wstring optional_additional_message_; |
271 // The current stream. | 282 // The current stream. |
272 NPStream* plugin_install_stream_; | 283 NPStream* plugin_install_stream_; |
| 284 // The plugin finder URL. |
| 285 std::string plugin_finder_url_; |
273 // The desired mime type. | 286 // The desired mime type. |
274 std::string mime_type_; | 287 std::string mime_type_; |
| 288 // The desired language. |
| 289 std::string desired_language_; |
| 290 // The plugin name. |
| 291 std::wstring plugin_name_; |
| 292 // The actual download URL. |
| 293 std::string plugin_download_url_; |
| 294 // Indicates if the plugin download URL points to an exe. |
| 295 bool plugin_download_url_for_display_; |
275 // The current state of the plugin installer. | 296 // The current state of the plugin installer. |
276 PluginInstallerState plugin_installer_state_; | 297 PluginInstallerState plugin_installer_state_; |
277 // Dimensions of the plugin | 298 // Used to display the UI for plugin installation. |
278 uint32_t width_; | 299 // PluginInstallDialog install_dialog_; |
279 uint32_t height_; | 300 // To enable auto refresh of the plugin window once the installation |
| 301 // is complete, we spawn the installation process in a job, and monitor |
| 302 // IO completion events on the job. When the active process count of the |
| 303 // job falls to zero, we initiate an auto refresh of the plugin list |
| 304 // which enables the downloaded plugin to be instantiated. |
| 305 // The completion events from the job are monitored in an independent |
| 306 // thread. |
| 307 // scoped_refptr<PluginInstallationJobMonitorThread> |
| 308 // installation_job_monitor_thread_; |
| 309 // This object handles download and parsing of the plugins database. |
| 310 // PluginDatabaseHandler plugin_database_handler_; |
| 311 // Indicates if the left click to download/refresh should be enabled or not. |
| 312 bool enable_click_; |
| 313 // Handles to the fonts used to display text in the plugin window. |
| 314 // HFONT bold_font_; |
| 315 // HFONT regular_font_; |
| 316 // HFONT underline_font_; |
| 317 // Tooltip Window. |
| 318 gfx::NativeWindow tooltip_; |
| 319 |
280 DISALLOW_EVIL_CONSTRUCTORS(PluginInstallerImpl); | 320 DISALLOW_EVIL_CONSTRUCTORS(PluginInstallerImpl); |
281 }; | 321 }; |
282 | 322 |
283 | 323 |
284 #endif // WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ | 324 #endif // WEBKIT_DEFAULT_PLUGIN_PLUGIN_IMPL_MAC_H_ |
OLD | NEW |