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_PANELS_OVERFLOW_PANEL_STRIP_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_OVERFLOW_PANEL_STRIP_H_ |
6 #define CHROME_BROWSER_UI_PANELS_OVERFLOW_PANEL_STRIP_H_ | 6 #define CHROME_BROWSER_UI_PANELS_OVERFLOW_PANEL_STRIP_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 #include "chrome/browser/ui/panels/panel.h" | 10 #include "chrome/browser/ui/panels/panel.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 virtual void CloseAll() OVERRIDE; | 37 virtual void CloseAll() OVERRIDE; |
38 virtual void ResizePanelWindow( | 38 virtual void ResizePanelWindow( |
39 Panel* panel, | 39 Panel* panel, |
40 const gfx::Size& preferred_window_size) OVERRIDE; | 40 const gfx::Size& preferred_window_size) OVERRIDE; |
41 virtual void OnPanelAttentionStateChanged(Panel* panel) OVERRIDE; | 41 virtual void OnPanelAttentionStateChanged(Panel* panel) OVERRIDE; |
42 virtual void ActivatePanel(Panel* panel) OVERRIDE; | 42 virtual void ActivatePanel(Panel* panel) OVERRIDE; |
43 virtual void MinimizePanel(Panel* panel) OVERRIDE; | 43 virtual void MinimizePanel(Panel* panel) OVERRIDE; |
44 virtual void RestorePanel(Panel* panel) OVERRIDE; | 44 virtual void RestorePanel(Panel* panel) OVERRIDE; |
45 virtual bool IsPanelMinimized(const Panel* panel) const OVERRIDE; | 45 virtual bool IsPanelMinimized(const Panel* panel) const OVERRIDE; |
46 virtual bool CanShowPanelAsActive(const Panel* panel) const OVERRIDE; | 46 virtual bool CanShowPanelAsActive(const Panel* panel) const OVERRIDE; |
| 47 virtual void SavePanelPlacement(Panel* panel) OVERRIDE; |
| 48 virtual void RestorePanelToSavedPlacement() OVERRIDE; |
| 49 virtual void DiscardSavedPanelPlacement() OVERRIDE; |
47 virtual bool CanDragPanel(const Panel* panel) const OVERRIDE; | 50 virtual bool CanDragPanel(const Panel* panel) const OVERRIDE; |
48 virtual void StartDraggingPanel(Panel* panel) OVERRIDE; | 51 virtual void StartDraggingPanelWithinStrip(Panel* panel) OVERRIDE; |
49 virtual void DragPanel(Panel* panel, int delta_x, int delta_y) OVERRIDE; | 52 virtual void DragPanelWithinStrip(Panel* panel, |
50 virtual void EndDraggingPanel(Panel* panel, bool cancelled) OVERRIDE; | 53 int delta_x, |
| 54 int delta_y) OVERRIDE; |
| 55 virtual void EndDraggingPanelWithinStrip(Panel* panel, |
| 56 bool aborted) OVERRIDE; |
51 | 57 |
52 void OnFullScreenModeChanged(bool is_full_screen); | 58 void OnFullScreenModeChanged(bool is_full_screen); |
53 | 59 |
54 int num_panels() const { return static_cast<int>(panels_.size()); } | 60 int num_panels() const { return static_cast<int>(panels_.size()); } |
55 Panel* first_panel() const { | 61 Panel* first_panel() const { |
56 return panels_.empty() ? NULL : panels_.front(); | 62 return panels_.empty() ? NULL : panels_.front(); |
57 } | 63 } |
58 const Panels& panels() const { return panels_; } | 64 const Panels& panels() const { return panels_; } |
59 | 65 |
60 #ifdef UNIT_TEST | 66 #ifdef UNIT_TEST |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 int overflow_hover_animator_start_width_; | 148 int overflow_hover_animator_start_width_; |
143 int overflow_hover_animator_end_width_; | 149 int overflow_hover_animator_end_width_; |
144 | 150 |
145 // Invalid panel index. | 151 // Invalid panel index. |
146 static const size_t kInvalidPanelIndex = static_cast<size_t>(-1); | 152 static const size_t kInvalidPanelIndex = static_cast<size_t>(-1); |
147 | 153 |
148 DISALLOW_COPY_AND_ASSIGN(OverflowPanelStrip); | 154 DISALLOW_COPY_AND_ASSIGN(OverflowPanelStrip); |
149 }; | 155 }; |
150 | 156 |
151 #endif // CHROME_BROWSER_UI_PANELS_OVERFLOW_PANEL_STRIP_H_ | 157 #endif // CHROME_BROWSER_UI_PANELS_OVERFLOW_PANEL_STRIP_H_ |
OLD | NEW |