| 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_UI_COCOA_SIDEBAR_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_SIDEBAR_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_SIDEBAR_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_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/ui/cocoa/tab_contents/tab_contents_controller.h" | 12 #import "chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h" |
| 13 | 13 |
| 14 @class NSSplitView; | 14 @class NSSplitView; |
| 15 @class NSView; | 15 @class NSView; |
| 16 | 16 |
| 17 class TabContents; | 17 class TabContentsWrapper; |
| 18 | 18 |
| 19 // 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. |
| 20 // 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 |
| 21 // the vew, if there's no sidebar contents to show. | 21 // the vew, if there's no sidebar contents to show. |
| 22 @interface SidebarController : NSObject { | 22 @interface SidebarController : NSObject { |
| 23 @private | 23 @private |
| 24 // A view hosting sidebar contents. | 24 // A view hosting sidebar contents. |
| 25 scoped_nsobject<NSSplitView> splitView_; | 25 scoped_nsobject<NSSplitView> splitView_; |
| 26 | 26 |
| 27 // Manages currently displayed sidebar contents. | 27 // Manages currently displayed sidebar contents. |
| 28 scoped_nsobject<TabContentsController> contentsController_; | 28 scoped_nsobject<TabContentsController> contentsController_; |
| 29 } | 29 } |
| 30 | 30 |
| 31 - (id)initWithDelegate:(id<TabContentsControllerDelegate>)delegate; | 31 - (id)initWithDelegate:(id<TabContentsControllerDelegate>)delegate; |
| 32 | 32 |
| 33 // This controller's view. | 33 // This controller's view. |
| 34 - (NSSplitView*)view; | 34 - (NSSplitView*)view; |
| 35 | 35 |
| 36 // 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 |
| 37 // returns an NSSplitView, so provide a differently-named method. | 37 // returns an NSSplitView, so provide a differently-named method. |
| 38 - (NSSplitView*)splitView; | 38 - (NSSplitView*)splitView; |
| 39 | 39 |
| 40 // Depending on |contents|'s state, decides whether the sidebar | 40 // Depending on |tab|'s state, decides whether the sidebar |
| 41 // should be shown or hidden and adjusts its width (|delegate_| handles | 41 // should be shown or hidden and adjusts its width (|delegate_| handles |
| 42 // the actual resize). | 42 // the actual resize). |
| 43 - (void)updateSidebarForTabContents:(TabContents*)contents; | 43 - (void)updateSidebarForTab:(TabContentsWrapper*)tab; |
| 44 | 44 |
| 45 // Call when the sidebar view is properly sized and the render widget host view | 45 // Call when the sidebar view is properly sized and the render widget host view |
| 46 // should be put into the view hierarchy. | 46 // should be put into the view hierarchy. |
| 47 - (void)ensureContentsVisible; | 47 - (void)ensureContentsVisible; |
| 48 | 48 |
| 49 @end | 49 @end |
| 50 | 50 |
| 51 #endif // CHROME_BROWSER_UI_COCOA_SIDEBAR_CONTROLLER_H_ | 51 #endif // CHROME_BROWSER_UI_COCOA_SIDEBAR_CONTROLLER_H_ |
| OLD | NEW |