Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_SHELL_PANEL_ASH_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_ASH_SHELL_PANEL_ASH_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/ui/base_window.h" | 8 #include <string> |
|
flackr
2012/11/15 16:04:17
I don't see any std::string's, is this necessary?
stevenjb
2012/11/16 23:42:40
Should be string16.h, changed
| |
| 9 | |
| 10 #include "base/basictypes.h" | |
| 9 #include "chrome/browser/ui/extensions/native_shell_window.h" | 11 #include "chrome/browser/ui/extensions/native_shell_window.h" |
| 10 #include "chrome/browser/ui/extensions/shell_window.h" | 12 #include "chrome/browser/ui/extensions/shell_window.h" |
| 11 #include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h" | 13 #include "ui/gfx/size.h" |
| 12 #include "third_party/skia/include/core/SkRegion.h" | 14 #include "ui/views/controls/native/native_view_host.h" |
| 13 #include "ui/gfx/image/image_skia.h" | |
| 14 #include "ui/gfx/rect.h" | |
| 15 #include "ui/views/widget/widget_delegate.h" | 15 #include "ui/views/widget/widget_delegate.h" |
| 16 | 16 |
| 17 class ExtensionKeybindingRegistryViews; | 17 class GURL; |
| 18 class Profile; | 18 class Profile; |
| 19 | 19 |
| 20 namespace content { | |
| 21 class WebContents; | |
| 22 } | |
| 23 | |
| 24 namespace extensions { | |
| 25 class Extension; | |
| 26 } | |
| 27 | |
| 28 namespace views { | 20 namespace views { |
| 29 class WebView; | 21 class WebView; |
| 22 class Widget; | |
| 30 } | 23 } |
| 31 | 24 |
| 32 class ShellWindowViews : public NativeShellWindow, | 25 namespace internal { |
| 33 public views::WidgetDelegateView { | 26 class PanelHost; |
| 27 } | |
| 28 | |
| 29 /////////////////////////////////////////////////////////////////////////////// | |
| 30 // PanelViewAura is used to display HTML in a Panel window. | |
| 31 // | |
| 32 class ShellPanelAsh : public NativeShellWindow, | |
| 33 public views::WidgetDelegateView { | |
| 34 public: | 34 public: |
| 35 ShellWindowViews(ShellWindow* shell_window, | 35 ShellPanelAsh(ShellWindow* shell_window, |
| 36 const ShellWindow::CreateParams& params); | 36 const ShellWindow::CreateParams& create_params); |
| 37 | 37 virtual ~ShellPanelAsh(); |
| 38 bool frameless() const { return frameless_; } | |
| 39 SkRegion* draggable_region() { return draggable_region_.get(); } | |
| 40 | 38 |
| 41 // BaseWindow implementation. | 39 // BaseWindow implementation. |
| 42 virtual bool IsActive() const OVERRIDE; | 40 virtual bool IsActive() const OVERRIDE; |
| 43 virtual bool IsMaximized() const OVERRIDE; | 41 virtual bool IsMaximized() const OVERRIDE; |
| 44 virtual bool IsMinimized() const OVERRIDE; | 42 virtual bool IsMinimized() const OVERRIDE; |
| 45 virtual bool IsFullscreen() const OVERRIDE; | 43 virtual bool IsFullscreen() const OVERRIDE; |
| 46 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; | 44 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; |
| 47 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 45 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
| 48 virtual gfx::Rect GetBounds() const OVERRIDE; | 46 virtual gfx::Rect GetBounds() const OVERRIDE; |
| 49 virtual void Show() OVERRIDE; | 47 virtual void Show() OVERRIDE; |
| 50 virtual void ShowInactive() OVERRIDE; | 48 virtual void ShowInactive() OVERRIDE; |
| 51 virtual void Hide() OVERRIDE; | 49 virtual void Hide() OVERRIDE; |
| 52 virtual void Close() OVERRIDE; | 50 virtual void Close() OVERRIDE; |
| 53 virtual void Activate() OVERRIDE; | 51 virtual void Activate() OVERRIDE; |
| 54 virtual void Deactivate() OVERRIDE; | 52 virtual void Deactivate() OVERRIDE; |
| 55 virtual void Maximize() OVERRIDE; | 53 virtual void Maximize() OVERRIDE; |
| 56 virtual void Minimize() OVERRIDE; | 54 virtual void Minimize() OVERRIDE; |
| 57 virtual void Restore() OVERRIDE; | 55 virtual void Restore() OVERRIDE; |
| 58 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 56 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
| 59 virtual void FlashFrame(bool flash) OVERRIDE; | 57 virtual void FlashFrame(bool flash) OVERRIDE; |
| 60 virtual bool IsAlwaysOnTop() const OVERRIDE; | 58 virtual bool IsAlwaysOnTop() const OVERRIDE; |
| 61 | 59 |
| 62 // WidgetDelegate implementation. | 60 // WidgetDelegate implementation. |
| 63 virtual views::View* GetContentsView() OVERRIDE; | 61 virtual views::View* GetContentsView() OVERRIDE; |
| 64 virtual views::NonClientFrameView* CreateNonClientFrameView( | 62 virtual views::NonClientFrameView* CreateNonClientFrameView( |
| 65 views::Widget* widget) OVERRIDE; | 63 views::Widget* widget) OVERRIDE; |
| 64 virtual void DeleteDelegate() OVERRIDE; | |
| 66 virtual bool CanResize() const OVERRIDE; | 65 virtual bool CanResize() const OVERRIDE; |
| 67 virtual bool CanMaximize() const OVERRIDE; | 66 virtual string16 GetWindowTitle() const OVERRIDE; |
| 67 virtual bool ShouldShowWindowTitle() const OVERRIDE; | |
| 68 virtual views::Widget* GetWidget() OVERRIDE; | 68 virtual views::Widget* GetWidget() OVERRIDE; |
| 69 virtual const views::Widget* GetWidget() const OVERRIDE; | 69 virtual const views::Widget* GetWidget() const OVERRIDE; |
| 70 virtual string16 GetWindowTitle() const OVERRIDE; | |
| 71 virtual void DeleteDelegate() OVERRIDE; | |
| 72 virtual views::View* GetInitiallyFocusedView() OVERRIDE; | 70 virtual views::View* GetInitiallyFocusedView() OVERRIDE; |
| 73 virtual bool ShouldDescendIntoChildForEventHandling( | |
| 74 gfx::NativeView child, | |
| 75 const gfx::Point& location) OVERRIDE; | |
| 76 virtual gfx::ImageSkia GetWindowAppIcon() OVERRIDE; | |
| 77 virtual gfx::ImageSkia GetWindowIcon() OVERRIDE; | |
| 78 virtual bool ShouldShowWindowTitle() const OVERRIDE; | |
| 79 virtual void OnWidgetMove() OVERRIDE; | |
| 80 | 71 |
| 81 protected: | 72 protected: |
| 82 // views::View implementation. | 73 // views::View implementation. |
| 83 virtual void Layout() OVERRIDE; | 74 virtual void Layout() OVERRIDE; |
| 84 virtual void ViewHierarchyChanged( | 75 virtual void ViewHierarchyChanged( |
| 85 bool is_add, views::View *parent, views::View *child) OVERRIDE; | 76 bool is_add, views::View *parent, views::View *child) OVERRIDE; |
| 86 virtual gfx::Size GetMinimumSize() OVERRIDE; | 77 virtual gfx::Size GetPreferredSize() OVERRIDE; |
| 87 virtual gfx::Size GetMaximumSize() OVERRIDE; | |
| 88 virtual void OnFocus() OVERRIDE; | 78 virtual void OnFocus() OVERRIDE; |
| 89 | 79 |
| 90 Profile* profile() { return shell_window_->profile(); } | |
| 91 content::WebContents* web_contents() { | |
| 92 return shell_window_->web_contents(); | |
| 93 } | |
| 94 const extensions::Extension* extension() { | |
| 95 return shell_window_->extension(); | |
| 96 } | |
| 97 | |
| 98 // views::WidgetDelegate implementation. | |
| 99 virtual void SaveWindowPlacement(const gfx::Rect& bounds, | |
| 100 ui::WindowShowState show_state) OVERRIDE; | |
| 101 | |
| 102 private: | 80 private: |
| 103 friend class ShellWindowFrameView; | |
| 104 | |
| 105 virtual ~ShellWindowViews(); | |
| 106 | |
| 107 // NativeShellWindow implementation. | 81 // NativeShellWindow implementation. |
| 108 virtual void SetFullscreen(bool fullscreen) OVERRIDE; | 82 virtual void SetFullscreen(bool fullscreen) OVERRIDE; |
| 109 virtual bool IsFullscreenOrPending() const OVERRIDE; | 83 virtual bool IsFullscreenOrPending() const OVERRIDE; |
| 110 virtual void UpdateWindowIcon() OVERRIDE; | 84 virtual void UpdateWindowIcon() OVERRIDE; |
| 111 virtual void UpdateWindowTitle() OVERRIDE; | 85 virtual void UpdateWindowTitle() OVERRIDE; |
| 112 virtual void UpdateDraggableRegions( | 86 virtual void UpdateDraggableRegions( |
| 113 const std::vector<extensions::DraggableRegion>& regions) OVERRIDE; | 87 const std::vector<extensions::DraggableRegion>& regions) OVERRIDE; |
| 114 virtual void HandleKeyboardEvent( | 88 virtual void HandleKeyboardEvent( |
| 115 const content::NativeWebKeyboardEvent& event) OVERRIDE; | 89 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
| 116 virtual void RenderViewHostChanged() OVERRIDE; | 90 virtual void RenderViewHostChanged() OVERRIDE; |
| 117 | 91 |
| 118 void OnViewWasResized(); | 92 ShellWindow* shell_window_; // weak - ShellWindow owns ShellPanelAsh. |
| 93 views::WebView* web_view_; | |
| 94 views::Widget* window_; // Unowned pointer to the widget. | |
| 95 gfx::Size preferred_size_; | |
| 96 bool frameless_; | |
| 119 | 97 |
| 120 ShellWindow* shell_window_; // weak - ShellWindow owns NativeShellWindow. | 98 DISALLOW_COPY_AND_ASSIGN(ShellPanelAsh); |
| 121 | |
| 122 views::WebView* web_view_; | |
| 123 views::Widget* window_; | |
| 124 bool is_fullscreen_; | |
| 125 | |
| 126 scoped_ptr<SkRegion> draggable_region_; | |
| 127 | |
| 128 bool frameless_; | |
| 129 gfx::Size minimum_size_; | |
| 130 gfx::Size maximum_size_; | |
| 131 | |
| 132 // The class that registers for keyboard shortcuts for extension commands. | |
| 133 scoped_ptr<ExtensionKeybindingRegistryViews> extension_keybinding_registry_; | |
| 134 | |
| 135 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; | |
| 136 | |
| 137 DISALLOW_COPY_AND_ASSIGN(ShellWindowViews); | |
| 138 }; | 99 }; |
| 139 | 100 |
| 140 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | 101 #endif // CHROME_BROWSER_UI_ASH_SHELL_PANEL_ASH_H_ |
| OLD | NEW |