OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_COCOA_SIDEBAR_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_COCOA_SIDEBAR_CONTROLLER_H_ |
6 #define CHROME_BROWSER_COCOA_SIDEBAR_CONTROLLER_H_ | 6 #define CHROME_BROWSER_COCOA_SIDEBAR_CONTROLLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #import <Foundation/Foundation.h> | 9 #import <Foundation/Foundation.h> |
10 | 10 |
11 #include "base/scoped_nsobject.h" | 11 #include "base/scoped_nsobject.h" |
| 12 #import "chrome/browser/cocoa/tab_contents_controller.h" |
12 | 13 |
13 @class NSSplitView; | 14 @class NSSplitView; |
14 @class NSView; | 15 @class NSView; |
15 | 16 |
16 class TabContents; | 17 class TabContents; |
17 | 18 |
18 // A class that handles updates of the sidebar view within a browser window. | 19 // A class that handles updates of the sidebar view within a browser window. |
19 // It swaps in the relevant sidebar contents for a given TabContents or removes | 20 // It swaps in the relevant sidebar contents for a given TabContents or removes |
20 // the vew, if there's no sidebar contents to show. | 21 // the vew, if there's no sidebar contents to show. |
21 @interface SidebarController : NSObject { | 22 @interface SidebarController : NSObject { |
22 @private | 23 @private |
23 // A view hosting sidebar contents. | 24 // A view hosting sidebar contents. |
24 scoped_nsobject<NSSplitView> splitView_; | 25 scoped_nsobject<NSSplitView> splitView_; |
25 | 26 |
26 // Currently displayed sidebar contents. | 27 // Manages currently displayed sidebar contents. |
27 TabContents* sidebarContents_; // weak. | 28 scoped_nsobject<TabContentsController> contentsController_; |
28 } | 29 } |
29 | 30 |
30 - (id)init; | 31 - (id)initWithDelegate:(id<TabContentsControllerDelegate>)delegate; |
31 | 32 |
32 // This controller's view. | 33 // This controller's view. |
33 - (NSSplitView*)view; | 34 - (NSSplitView*)view; |
34 | 35 |
35 // The compiler seems to have trouble handling a function named "view" that | 36 // The compiler seems to have trouble handling a function named "view" that |
36 // returns an NSSplitView, so provide a differently-named method. | 37 // returns an NSSplitView, so provide a differently-named method. |
37 - (NSSplitView*)splitView; | 38 - (NSSplitView*)splitView; |
38 | 39 |
39 // Depending on |contents|'s state, decides whether the sidebar | 40 // Depending on |contents|'s state, decides whether the sidebar |
40 // should be shown or hidden and adjusts its width (|delegate_| handles | 41 // should be shown or hidden and adjusts its width (|delegate_| handles |
41 // the actual resize). | 42 // the actual resize). |
42 - (void)updateSidebarForTabContents:(TabContents*)contents; | 43 - (void)updateSidebarForTabContents:(TabContents*)contents; |
43 | 44 |
| 45 // Call when the sidebar view is properly sized and the render widget host view |
| 46 // should be put into the view hierarchy. |
| 47 - (void)ensureContentsVisible; |
| 48 |
44 @end | 49 @end |
45 | 50 |
46 #endif // CHROME_BROWSER_COCOA_SIDEBAR_CONTROLLER_H_ | 51 #endif // CHROME_BROWSER_COCOA_SIDEBAR_CONTROLLER_H_ |
OLD | NEW |