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 29 matching lines...) Expand all Loading... |
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; |
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 virtual gfx::Size GetNonClientAreaExtent() const OVERRIDE; |
| 51 virtual int GetRestoredHeight() const OVERRIDE; |
| 52 virtual void SetRestoredHeight(int height) OVERRIDE; |
50 | 53 |
51 Panel* panel() { return panel_.get(); } | 54 Panel* panel() { return panel_.get(); } |
52 Browser* browser() const { return browser_.get(); } | 55 Browser* browser() const { return browser_.get(); } |
53 | 56 |
54 private: | 57 private: |
55 friend class PanelBrowserWindowCocoaTest; | 58 friend class PanelBrowserWindowCocoaTest; |
56 FRIEND_TEST_ALL_PREFIXES(PanelBrowserWindowCocoaTest, CreateClose); | 59 FRIEND_TEST_ALL_PREFIXES(PanelBrowserWindowCocoaTest, CreateClose); |
57 FRIEND_TEST_ALL_PREFIXES(PanelBrowserWindowCocoaTest, NativeBounds); | 60 FRIEND_TEST_ALL_PREFIXES(PanelBrowserWindowCocoaTest, NativeBounds); |
58 FRIEND_TEST_ALL_PREFIXES(PanelBrowserWindowCocoaTest, TitlebarViewCreate); | 61 FRIEND_TEST_ALL_PREFIXES(PanelBrowserWindowCocoaTest, TitlebarViewCreate); |
59 FRIEND_TEST_ALL_PREFIXES(PanelBrowserWindowCocoaTest, TitlebarViewSizing); | 62 FRIEND_TEST_ALL_PREFIXES(PanelBrowserWindowCocoaTest, TitlebarViewSizing); |
60 FRIEND_TEST_ALL_PREFIXES(PanelBrowserWindowCocoaTest, TitlebarViewClose); | 63 FRIEND_TEST_ALL_PREFIXES(PanelBrowserWindowCocoaTest, TitlebarViewClose); |
61 | 64 |
62 bool isClosed(); | 65 bool isClosed(); |
63 | 66 |
64 scoped_ptr<Browser> browser_; | 67 scoped_ptr<Browser> browser_; |
65 scoped_ptr<Panel> panel_; | 68 scoped_ptr<Panel> panel_; |
66 gfx::Rect bounds_; | 69 gfx::Rect bounds_; |
67 PanelWindowControllerCocoa* controller_; // Weak, owns us. | 70 PanelWindowControllerCocoa* controller_; // Weak, owns us. |
68 bool is_shown_; // Panel is hidden on creation, Show() changes that forever. | 71 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. | 72 bool has_find_bar_; // Find bar should only be created once per panel. |
70 | 73 |
71 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindowCocoa); | 74 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindowCocoa); |
72 }; | 75 }; |
73 | 76 |
74 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_ | 77 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_ |
OLD | NEW |