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_NATIVE_PANEL_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_H_ |
6 #define CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_H_ | 6 #define CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/ui/panels/panel.h" | 9 #include "chrome/browser/ui/panels/panel.h" |
10 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 virtual bool IsPanelActive() const = 0; | 55 virtual bool IsPanelActive() const = 0; |
56 virtual gfx::NativeWindow GetNativePanelHandle() = 0; | 56 virtual gfx::NativeWindow GetNativePanelHandle() = 0; |
57 virtual void UpdatePanelTitleBar() = 0; | 57 virtual void UpdatePanelTitleBar() = 0; |
58 virtual void ShowTaskManagerForPanel() = 0; | 58 virtual void ShowTaskManagerForPanel() = 0; |
59 virtual FindBar* CreatePanelFindBar() = 0; | 59 virtual FindBar* CreatePanelFindBar() = 0; |
60 virtual void NotifyPanelOnUserChangedTheme() = 0; | 60 virtual void NotifyPanelOnUserChangedTheme() = 0; |
61 virtual void DrawAttention() = 0; | 61 virtual void DrawAttention() = 0; |
62 virtual bool IsDrawingAttention() const = 0; | 62 virtual bool IsDrawingAttention() const = 0; |
63 virtual Browser* GetPanelBrowser() const = 0; | 63 virtual Browser* GetPanelBrowser() const = 0; |
64 virtual void DestroyPanelBrowser() = 0; | 64 virtual void DestroyPanelBrowser() = 0; |
65 | |
66 // Returns a pointer to the testing interface to the native panel. | |
67 virtual NativePanelTesting* GetNativePanelTesting() = 0; | |
68 }; | 65 }; |
69 | 66 |
70 // A NativePanel utility interface used for accessing elements of the | 67 // A NativePanel utility interface used for accessing elements of the |
71 // native panel used only by test automation. | 68 // native panel used only by test automation. |
72 class NativePanelTesting { | 69 class NativePanelTesting { |
73 public: | 70 public: |
| 71 static NativePanelTesting* Create(NativePanel* native_panel); |
74 | 72 |
75 protected: | 73 // Need a virtual destructor defined to be able to use the instance inside a |
| 74 // scoped_ptr<>. |
76 virtual ~NativePanelTesting() {} | 75 virtual ~NativePanelTesting() {} |
| 76 |
| 77 virtual void PressLeftMouseButtonTitlebar(const gfx::Point& point) = 0; |
| 78 virtual void ReleaseMouseButtonTitlebar() = 0; |
| 79 virtual void DragTitlebar(int delta_x, int delta_y) = 0; |
| 80 virtual void CancelDragTitlebar() = 0; |
| 81 virtual void FinishDragTitlebar() = 0; |
77 }; | 82 }; |
78 | 83 |
79 #endif // CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_H_ | 84 #endif // CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_H_ |
OLD | NEW |