blob: 8072683957279d596ffddd6509f8571b10ca0d73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/cocoa/tab_contents_controller.h"
#include "base/mac_util.h"
#include "base/sys_string_conversions.h"
#include "chrome/browser/bookmarks/bookmark_model.h"
#include "chrome/browser/tab_contents/tab_contents.h"
@implementation TabContentsController
- (id)initWithNibName:(NSString*)name
contents:(TabContents*)contents {
if ((self = [super initWithNibName:name
bundle:mac_util::MainAppBundle()])) {
contents_ = contents;
}
return self;
}
- (void)dealloc {
// make sure our contents have been removed from the window
[[self view] removeFromSuperview];
[super dealloc];
}
// Call when the tab view is properly sized and the render widget host view
// should be put into the view hierarchy.
- (void)ensureContentsVisible {
[contentsBox_ setContentView:contents_->GetNativeView()];
}
// Returns YES if the tab represented by this controller is the front-most.
- (BOOL)isCurrentTab {
// We're the current tab if we're in the view hierarchy, otherwise some other
// tab is.
return [[self view] superview] ? YES : NO;
}
- (void)willBecomeUnselectedTab {
RenderViewHost* rvh = contents_->render_view_host();
if (rvh)
rvh->Blur();
}
- (void)willBecomeSelectedTab {
RenderViewHost* rvh = contents_->render_view_host();
if (rvh)
rvh->Focus();
}
- (void)tabDidChange:(TabContents*)updatedContents {
// Calling setContentView: here removes any first responder status
// the view may have, so avoid changing the view hierarchy unless
// the view is different.
if (contents_ != updatedContents) {
contents_ = updatedContents;
[contentsBox_ setContentView:contents_->GetNativeView()];
}
}
@end
|