OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ |
6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ | 6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "chrome/browser/ui/gtk/browser_window_gtk.h" | 10 #include "chrome/browser/ui/gtk/browser_window_gtk.h" |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 bool* is_keyboard_shortcut) OVERRIDE; | 91 bool* is_keyboard_shortcut) OVERRIDE; |
92 virtual void HandlePanelKeyboardEvent( | 92 virtual void HandlePanelKeyboardEvent( |
93 const NativeWebKeyboardEvent& event) OVERRIDE; | 93 const NativeWebKeyboardEvent& event) OVERRIDE; |
94 virtual Browser* GetPanelBrowser() const OVERRIDE; | 94 virtual Browser* GetPanelBrowser() const OVERRIDE; |
95 virtual void DestroyPanelBrowser() OVERRIDE; | 95 virtual void DestroyPanelBrowser() OVERRIDE; |
96 virtual gfx::Size WindowSizeFromContentSize( | 96 virtual gfx::Size WindowSizeFromContentSize( |
97 const gfx::Size& content_size) const OVERRIDE; | 97 const gfx::Size& content_size) const OVERRIDE; |
98 virtual gfx::Size ContentSizeFromWindowSize( | 98 virtual gfx::Size ContentSizeFromWindowSize( |
99 const gfx::Size& window_size) const OVERRIDE; | 99 const gfx::Size& window_size) const OVERRIDE; |
100 virtual int TitleOnlyHeight() const OVERRIDE; | 100 virtual int TitleOnlyHeight() const OVERRIDE; |
| 101 virtual gfx::Size IconOnlySize() const OVERRIDE; |
| 102 virtual void EnsurePanelFullyVisible() OVERRIDE; |
101 | 103 |
102 private: | 104 private: |
103 void StartBoundsAnimation(const gfx::Rect& current_bounds); | 105 void StartBoundsAnimation(const gfx::Rect& current_bounds); |
104 bool IsAnimatingBounds() const; | 106 bool IsAnimatingBounds() const; |
105 | 107 |
106 // MessageLoop::Observer implementation: | 108 // MessageLoop::Observer implementation: |
107 virtual void WillProcessEvent(GdkEvent* event) OVERRIDE; | 109 virtual void WillProcessEvent(GdkEvent* event) OVERRIDE; |
108 virtual void DidProcessEvent(GdkEvent* event) OVERRIDE; | 110 virtual void DidProcessEvent(GdkEvent* event) OVERRIDE; |
109 | 111 |
110 // Overridden from AnimationDelegate: | 112 // Overridden from AnimationDelegate: |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 base::Time disableMinimizeUntilTime_; | 184 base::Time disableMinimizeUntilTime_; |
183 | 185 |
184 // Used to animate the bounds change. | 186 // Used to animate the bounds change. |
185 scoped_ptr<ui::SlideAnimation> bounds_animator_; | 187 scoped_ptr<ui::SlideAnimation> bounds_animator_; |
186 gfx::Rect animation_start_bounds_; | 188 gfx::Rect animation_start_bounds_; |
187 | 189 |
188 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindowGtk); | 190 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindowGtk); |
189 }; | 191 }; |
190 | 192 |
191 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ | 193 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ |
OLD | NEW |