OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | |
6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | |
7 | |
8 #include "chrome/browser/ui/base_window.h" | |
9 #include "chrome/browser/ui/extensions/native_shell_window.h" | |
10 #include "chrome/browser/ui/extensions/shell_window.h" | |
11 #include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h" | |
12 #include "third_party/skia/include/core/SkRegion.h" | |
13 #include "ui/gfx/image/image_skia.h" | |
14 #include "ui/gfx/rect.h" | |
15 #include "ui/views/widget/widget_delegate.h" | |
16 | |
17 class ExtensionKeybindingRegistryViews; | |
18 class Profile; | |
19 | |
20 namespace content { | |
21 class WebContents; | |
22 } | |
23 | |
24 namespace extensions { | |
25 class Extension; | |
26 } | |
27 | |
28 namespace views { | |
29 class WebView; | |
30 } | |
31 | |
32 class ShellWindowViews : public NativeShellWindow, | |
33 public views::WidgetDelegateView { | |
34 public: | |
35 ShellWindowViews(ShellWindow* shell_window, | |
36 const ShellWindow::CreateParams& params); | |
37 | |
38 bool frameless() const { return frameless_; } | |
39 SkRegion* draggable_region() { return draggable_region_.get(); } | |
40 | |
41 // BaseWindow implementation. | |
42 virtual bool IsActive() const OVERRIDE; | |
43 virtual bool IsMaximized() const OVERRIDE; | |
44 virtual bool IsMinimized() const OVERRIDE; | |
45 virtual bool IsFullscreen() const OVERRIDE; | |
46 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; | |
47 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | |
48 virtual gfx::Rect GetBounds() const OVERRIDE; | |
49 virtual void Show() OVERRIDE; | |
50 virtual void ShowInactive() OVERRIDE; | |
51 virtual void Hide() OVERRIDE; | |
52 virtual void Close() OVERRIDE; | |
53 virtual void Activate() OVERRIDE; | |
54 virtual void Deactivate() OVERRIDE; | |
55 virtual void Maximize() OVERRIDE; | |
56 virtual void Minimize() OVERRIDE; | |
57 virtual void Restore() OVERRIDE; | |
58 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | |
59 virtual void FlashFrame(bool flash) OVERRIDE; | |
60 virtual bool IsAlwaysOnTop() const OVERRIDE; | |
61 | |
62 // WidgetDelegate implementation. | |
63 virtual views::View* GetContentsView() OVERRIDE; | |
64 virtual views::NonClientFrameView* CreateNonClientFrameView( | |
65 views::Widget* widget) OVERRIDE; | |
66 virtual bool CanResize() const OVERRIDE; | |
67 virtual bool CanMaximize() const OVERRIDE; | |
68 virtual views::Widget* GetWidget() 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; | |
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 | |
81 protected: | |
82 // views::View implementation. | |
83 virtual void Layout() OVERRIDE; | |
84 virtual void ViewHierarchyChanged( | |
85 bool is_add, views::View *parent, views::View *child) OVERRIDE; | |
86 virtual gfx::Size GetMinimumSize() OVERRIDE; | |
87 virtual gfx::Size GetMaximumSize() OVERRIDE; | |
88 virtual void OnFocus() OVERRIDE; | |
89 | |
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: | |
103 friend class ShellWindowFrameView; | |
104 | |
105 virtual ~ShellWindowViews(); | |
106 | |
107 // NativeShellWindow implementation. | |
108 virtual void SetFullscreen(bool fullscreen) OVERRIDE; | |
109 virtual bool IsFullscreenOrPending() const OVERRIDE; | |
110 virtual void UpdateWindowIcon() OVERRIDE; | |
111 virtual void UpdateWindowTitle() OVERRIDE; | |
112 virtual void UpdateDraggableRegions( | |
113 const std::vector<extensions::DraggableRegion>& regions) OVERRIDE; | |
114 virtual void HandleKeyboardEvent( | |
115 const content::NativeWebKeyboardEvent& event) OVERRIDE; | |
116 virtual void RenderViewHostChanged() OVERRIDE; | |
117 | |
118 void OnViewWasResized(); | |
119 | |
120 ShellWindow* shell_window_; // weak - ShellWindow owns NativeShellWindow. | |
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 }; | |
139 | |
140 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | |
OLD | NEW |