Chromium Code Reviews| 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_COCOA_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_ |
| 6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_ | 6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_ |
| 7 | 7 |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 #include "base/gtest_prod_util.h" | 9 #include "base/gtest_prod_util.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 25 const gfx::Rect& bounds); | 25 const gfx::Rect& bounds); |
| 26 virtual ~PanelBrowserWindowCocoa(); | 26 virtual ~PanelBrowserWindowCocoa(); |
| 27 | 27 |
| 28 // Overridden from NativePanel | 28 // Overridden from NativePanel |
| 29 virtual void ShowPanel() OVERRIDE; | 29 virtual void ShowPanel() OVERRIDE; |
| 30 virtual void ShowPanelInactive() OVERRIDE; | 30 virtual void ShowPanelInactive() OVERRIDE; |
| 31 virtual gfx::Rect GetPanelBounds() const OVERRIDE; | 31 virtual gfx::Rect GetPanelBounds() const OVERRIDE; |
| 32 virtual void SetPanelBounds(const gfx::Rect& bounds) OVERRIDE; | 32 virtual void SetPanelBounds(const gfx::Rect& bounds) OVERRIDE; |
| 33 virtual void OnPanelExpansionStateChanged( | 33 virtual void OnPanelExpansionStateChanged( |
| 34 Panel::ExpansionState expansion_state) OVERRIDE; | 34 Panel::ExpansionState expansion_state) OVERRIDE; |
| 35 virtual bool ShouldBringUpPanelTitleBar(int mouse_x, | 35 virtual bool ShouldBringUpPanelTitlebar(int mouse_x, |
| 36 int mouse_y) const OVERRIDE; | 36 int mouse_y) const OVERRIDE; |
| 37 virtual void ClosePanel() OVERRIDE; | 37 virtual void ClosePanel() OVERRIDE; |
| 38 virtual void ActivatePanel() OVERRIDE; | 38 virtual void ActivatePanel() OVERRIDE; |
| 39 virtual void DeactivatePanel() OVERRIDE; | 39 virtual void DeactivatePanel() OVERRIDE; |
| 40 virtual bool IsPanelActive() const OVERRIDE; | 40 virtual bool IsPanelActive() const OVERRIDE; |
| 41 virtual gfx::NativeWindow GetNativePanelHandle() OVERRIDE; | 41 virtual gfx::NativeWindow GetNativePanelHandle() OVERRIDE; |
| 42 virtual void UpdatePanelTitleBar() OVERRIDE; | 42 virtual void UpdatePanelTitlebar() OVERRIDE; |
|
jianli
2011/08/12 21:34:51
ditto.
prasadt
2011/08/12 21:59:30
Done.
| |
| 43 virtual void ShowTaskManagerForPanel() OVERRIDE; | 43 virtual void ShowTaskManagerForPanel() OVERRIDE; |
| 44 virtual FindBar* CreatePanelFindBar() OVERRIDE; | 44 virtual FindBar* CreatePanelFindBar() OVERRIDE; |
| 45 virtual void NotifyPanelOnUserChangedTheme() OVERRIDE; | 45 virtual void NotifyPanelOnUserChangedTheme() OVERRIDE; |
| 46 virtual void DrawAttention() OVERRIDE; | 46 virtual void DrawAttention() OVERRIDE; |
| 47 virtual bool IsDrawingAttention() const OVERRIDE; | 47 virtual bool IsDrawingAttention() const OVERRIDE; |
| 48 virtual Browser* GetPanelBrowser() const OVERRIDE; | 48 virtual Browser* GetPanelBrowser() const OVERRIDE; |
| 49 virtual void DestroyPanelBrowser() OVERRIDE; | 49 virtual void DestroyPanelBrowser() OVERRIDE; |
| 50 | 50 |
| 51 Panel* panel() { return panel_.get(); } | 51 Panel* panel() { return panel_.get(); } |
| 52 Browser* browser() const { return browser_.get(); } | 52 Browser* browser() const { return browser_.get(); } |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 65 scoped_ptr<Panel> panel_; | 65 scoped_ptr<Panel> panel_; |
| 66 gfx::Rect bounds_; | 66 gfx::Rect bounds_; |
| 67 PanelWindowControllerCocoa* controller_; // Weak, owns us. | 67 PanelWindowControllerCocoa* controller_; // Weak, owns us. |
| 68 bool is_shown_; // Panel is hidden on creation, Show() changes that forever. | 68 bool is_shown_; // Panel is hidden on creation, Show() changes that forever. |
| 69 bool has_find_bar_; // Find bar should only be created once per panel. | 69 bool has_find_bar_; // Find bar should only be created once per panel. |
| 70 | 70 |
| 71 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindowCocoa); | 71 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindowCocoa); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_ | 74 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_ |
| OLD | NEW |