1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef APPS_SHELL_WINDOW_H_
6 #define APPS_SHELL_WINDOW_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/weak_ptr.h"
10 #include "chrome/browser/extensions/extension_icon_image.h"
11 #include "chrome/browser/extensions/extension_keybinding_registry.h"
12 #include "chrome/browser/sessions/session_id.h"
13 #include "components/web_modal/web_contents_modal_dialog_manager_delegate.h"
14 #include "content/public/browser/notification_observer.h"
15 #include "content/public/browser/notification_registrar.h"
16 #include "content/public/browser/web_contents_delegate.h"
17 #include "content/public/common/console_message_level.h"
18 #include "ui/base/ui_base_types.h" // WindowShowState
19 #include "ui/gfx/image/image.h"
20 #include "ui/gfx/rect.h"
30 namespace extensions
{
32 class PlatformAppBrowserTest
;
33 class WindowController
;
35 struct DraggableRegion
;
44 class NativeAppWindow
;
46 // Manages the web contents for Shell Windows. The implementation for this
47 // class should create and maintain the WebContents for the window, and handle
48 // any message passing between the web contents and the extension system or
50 class ShellWindowContents
{
52 ShellWindowContents() {}
53 virtual ~ShellWindowContents() {}
55 // Called to initialize the WebContents, before the app window is created.
56 virtual void Initialize(Profile
* profile
, const GURL
& url
) = 0;
58 // Called to load the contents, after the app window is created.
59 virtual void LoadContents(int32 creator_process_id
) = 0;
61 // Called when the native window changes.
62 virtual void NativeWindowChanged(NativeAppWindow
* native_app_window
) = 0;
64 // Called when the native window closes.
65 virtual void NativeWindowClosed() = 0;
67 virtual content::WebContents
* GetWebContents() const = 0;
70 DISALLOW_COPY_AND_ASSIGN(ShellWindowContents
);
73 // ShellWindow is the type of window used by platform apps. Shell windows
74 // have a WebContents but none of the chrome of normal browser windows.
75 class ShellWindow
: public content::NotificationObserver
,
76 public content::WebContentsDelegate
,
77 public web_modal::WebContentsModalDialogManagerDelegate
,
78 public extensions::ExtensionKeybindingRegistry::Delegate
,
79 public extensions::IconImage::Observer
{
82 WINDOW_TYPE_DEFAULT
= 1 << 0, // Default shell window.
83 WINDOW_TYPE_PANEL
= 1 << 1, // OS controlled panel window (Ash only).
84 WINDOW_TYPE_V1_PANEL
= 1 << 2, // For apps v1 support in Ash; deprecate
89 FRAME_CHROME
, // Chrome-style window frame.
90 FRAME_NONE
, // Frameless window.
97 WindowType window_type
;
99 bool transparent_background
; // Only supported on ash.
101 // Specify the initial content bounds of the window (excluding any window
102 // decorations). INT_MIN designates 'unspecified' for the position
103 // components, and 0 for the size components. When unspecified, they should
104 // be replaced with a default value.
107 gfx::Size minimum_size
;
108 gfx::Size maximum_size
;
110 std::string window_key
;
112 // The process ID of the process that requested the create.
113 int32 creator_process_id
;
115 // Initial state of the window.
116 ui::WindowShowState state
;
118 // If true, don't show the window after creation.
121 // If true, the window will be resizable by the user. Defaults to true.
124 // If true, the window will be focused on creation. Defaults to true.
132 // General initialization.
133 virtual void InitWebContents(content::WebContents
* web_contents
) = 0;
134 virtual NativeAppWindow
* CreateNativeAppWindow(
136 const CreateParams
& params
) = 0;
139 virtual content::WebContents
* OpenURLFromTab(
141 content::WebContents
* source
,
142 const content::OpenURLParams
& params
) = 0;
143 virtual void AddNewContents(Profile
* profile
,
144 content::WebContents
* new_contents
,
145 WindowOpenDisposition disposition
,
146 const gfx::Rect
& initial_pos
,
148 bool* was_blocked
) = 0;
151 virtual content::ColorChooser
* ShowColorChooser(
152 content::WebContents
* web_contents
,
153 SkColor initial_color
) = 0;
154 virtual void RunFileChooser(content::WebContents
* tab
,
155 const content::FileChooserParams
& params
) = 0;
156 virtual void RequestMediaAccessPermission(
157 content::WebContents
* web_contents
,
158 const content::MediaStreamRequest
& request
,
159 const content::MediaResponseCallback
& callback
,
160 const extensions::Extension
* extension
) = 0;
161 virtual int PreferredIconSize() = 0;
163 // Web contents modal dialog support.
164 virtual void SetWebContentsBlocked(content::WebContents
* web_contents
,
166 virtual bool IsWebContentsVisible(content::WebContents
* web_contents
) = 0;
169 // Convert draggable regions in raw format to SkRegion format. Caller is
170 // responsible for deleting the returned SkRegion instance.
171 static SkRegion
* RawDraggableRegionsToSkRegion(
172 const std::vector
<extensions::DraggableRegion
>& regions
);
174 // The constructor and Init methods are public for constructing a ShellWindow
175 // with a non-standard render interface (e.g. v1 apps using Ash Panels).
176 // Normally ShellWindow::Create should be used.
177 // The constructed shell window takes ownership of |delegate|.
178 ShellWindow(Profile
* profile
,
180 const extensions::Extension
* extension
);
182 // Initializes the render interface, web contents, and native window.
183 // |shell_window_contents| will become owned by ShellWindow.
184 void Init(const GURL
& url
,
185 ShellWindowContents
* shell_window_contents
,
186 const CreateParams
& params
);
189 const std::string
& window_key() const { return window_key_
; }
190 const SessionID
& session_id() const { return session_id_
; }
191 const extensions::Extension
* extension() const { return extension_
; }
192 const std::string
& extension_id() const { return extension_id_
; }
193 content::WebContents
* web_contents() const;
194 WindowType
window_type() const { return window_type_
; }
195 bool window_type_is_panel() const {
196 return (window_type_
== WINDOW_TYPE_PANEL
||
197 window_type_
== WINDOW_TYPE_V1_PANEL
);
199 Profile
* profile() const { return profile_
; }
200 const gfx::Image
& app_icon() const { return app_icon_
; }
201 const GURL
& app_icon_url() { return app_icon_url_
; }
203 NativeAppWindow
* GetBaseWindow();
204 gfx::NativeWindow
GetNativeWindow();
206 // Returns the bounds that should be reported to the renderer.
207 gfx::Rect
GetClientBounds() const;
209 // This will return a slightly smaller icon then the app_icon to be used in
210 // application lists.
211 scoped_ptr
<gfx::Image
> GetAppListIcon();
213 // NativeAppWindows should call this to determine what the window's title
214 // is on startup and from within UpdateWindowTitle().
215 string16
GetTitle() const;
217 // Call to notify ShellRegistry and delete the window. Subclasses should
218 // invoke this method instead of using "delete this".
219 void OnNativeClose();
221 // Should be called by native implementations when the window size, position,
222 // or minimized/maximized state has changed.
223 void OnNativeWindowChanged();
225 // Should be called by native implementations when the window is activated.
226 void OnNativeWindowActivated();
228 // Specifies a url for the launcher icon.
229 void SetAppIconUrl(const GURL
& icon_url
);
231 // Set the region in the window that will accept input events.
232 // If |region| is NULL, then the entire window will accept input events.
233 void UpdateInputRegion(scoped_ptr
<SkRegion
> region
);
235 // Called from the render interface to modify the draggable regions.
236 void UpdateDraggableRegions(
237 const std::vector
<extensions::DraggableRegion
>& regions
);
239 // Updates the app image to |image|. Called internally from the image loader
240 // callback. Also called externally for v1 apps using Ash Panels.
241 void UpdateAppIcon(const gfx::Image
& image
);
243 // Transitions window into fullscreen, maximized, minimized or restores based
244 // on chrome.app.window API.
250 ShellWindowContents
* shell_window_contents_for_test() {
251 return shell_window_contents_
.get();
255 virtual ~ShellWindow();
258 // PlatformAppBrowserTest needs access to web_contents()
259 friend class extensions::PlatformAppBrowserTest
;
261 // content::WebContentsDelegate implementation.
262 virtual void CloseContents(content::WebContents
* contents
) OVERRIDE
;
263 virtual bool ShouldSuppressDialogs() OVERRIDE
;
264 virtual content::ColorChooser
* OpenColorChooser(
265 content::WebContents
* web_contents
, SkColor color
) OVERRIDE
;
266 virtual void RunFileChooser(
267 content::WebContents
* tab
,
268 const content::FileChooserParams
& params
) OVERRIDE
;
269 virtual bool IsPopupOrPanel(
270 const content::WebContents
* source
) const OVERRIDE
;
271 virtual void MoveContents(
272 content::WebContents
* source
, const gfx::Rect
& pos
) OVERRIDE
;
273 virtual void NavigationStateChanged(const content::WebContents
* source
,
274 unsigned changed_flags
) OVERRIDE
;
275 virtual void ToggleFullscreenModeForTab(content::WebContents
* source
,
276 bool enter_fullscreen
) OVERRIDE
;
277 virtual bool IsFullscreenForTabOrPending(
278 const content::WebContents
* source
) const OVERRIDE
;
279 virtual void RequestMediaAccessPermission(
280 content::WebContents
* web_contents
,
281 const content::MediaStreamRequest
& request
,
282 const content::MediaResponseCallback
& callback
) OVERRIDE
;
283 virtual content::WebContents
* OpenURLFromTab(
284 content::WebContents
* source
,
285 const content::OpenURLParams
& params
) OVERRIDE
;
286 virtual void AddNewContents(content::WebContents
* source
,
287 content::WebContents
* new_contents
,
288 WindowOpenDisposition disposition
,
289 const gfx::Rect
& initial_pos
,
291 bool* was_blocked
) OVERRIDE
;
292 virtual void HandleKeyboardEvent(
293 content::WebContents
* source
,
294 const content::NativeWebKeyboardEvent
& event
) OVERRIDE
;
295 virtual void RequestToLockMouse(content::WebContents
* web_contents
,
297 bool last_unlocked_by_target
) OVERRIDE
;
299 // content::NotificationObserver implementation.
300 virtual void Observe(int type
,
301 const content::NotificationSource
& source
,
302 const content::NotificationDetails
& details
) OVERRIDE
;
304 // web_modal::WebContentsModalDialogManagerDelegate implementation.
305 virtual void SetWebContentsBlocked(content::WebContents
* web_contents
,
306 bool blocked
) OVERRIDE
;
307 virtual bool IsWebContentsVisible(
308 content::WebContents
* web_contents
) OVERRIDE
;
310 // Helper method to add a message to the renderer's DevTools console.
311 void AddMessageToDevToolsConsole(content::ConsoleMessageLevel level
,
312 const std::string
& message
);
314 // Saves the window geometry/position/screen bounds.
315 void SaveWindowPosition();
317 // Helper method to adjust the cached bounds so that we can make sure it can
318 // be visible on the screen. See http://crbug.com/145752 .
319 void AdjustBoundsToBeVisibleOnScreen(
320 const gfx::Rect
& cached_bounds
,
321 const gfx::Rect
& cached_screen_bounds
,
322 const gfx::Rect
& current_screen_bounds
,
323 const gfx::Size
& minimum_size
,
324 gfx::Rect
* bounds
) const;
326 // Load the app's image, firing a load state change when loaded.
327 void UpdateExtensionAppIcon();
329 // extensions::ExtensionKeybindingRegistry::Delegate implementation.
330 virtual extensions::ActiveTabPermissionGranter
*
331 GetActiveTabPermissionGranter() OVERRIDE
;
333 // web_modal::WebContentsModalDialogManagerDelegate implementation.
334 virtual web_modal::WebContentsModalDialogHost
*
335 GetWebContentsModalDialogHost() OVERRIDE
;
337 // Callback from web_contents()->DownloadFavicon.
338 void DidDownloadFavicon(int id
,
339 int http_status_code
,
340 const GURL
& image_url
,
342 const std::vector
<SkBitmap
>& bitmaps
);
344 // extensions::IconImage::Observer implementation.
345 virtual void OnExtensionIconImageChanged(
346 extensions::IconImage
* image
) OVERRIDE
;
348 Profile
* profile_
; // weak pointer - owned by ProfileManager.
349 // weak pointer - owned by ExtensionService.
350 const extensions::Extension
* extension_
;
351 const std::string extension_id_
;
353 // Identifier that is used when saving and restoring geometry for this
355 std::string window_key_
;
357 const SessionID session_id_
;
358 WindowType window_type_
;
359 content::NotificationRegistrar registrar_
;
361 // Icon shown in the task bar.
362 gfx::Image app_icon_
;
364 // Icon URL to be used for setting the app icon. If not empty, app_icon_ will
365 // be fetched and set using this URL.
368 // An object to load the app's icon as an extension resource.
369 scoped_ptr
<extensions::IconImage
> app_icon_image_
;
371 scoped_ptr
<NativeAppWindow
> native_app_window_
;
372 scoped_ptr
<ShellWindowContents
> shell_window_contents_
;
373 scoped_ptr
<Delegate
> delegate_
;
375 base::WeakPtrFactory
<ShellWindow
> image_loader_ptr_factory_
;
377 // Fullscreen entered by app.window api.
378 bool fullscreen_for_window_api_
;
379 // Fullscreen entered by HTML requestFullscreen.
380 bool fullscreen_for_tab_
;
382 DISALLOW_COPY_AND_ASSIGN(ShellWindow
);
387 #endif // APPS_SHELL_WINDOW_H_