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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
|
// Copyright (c) 2012 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/ui/cocoa/tabs/tab_window_controller.h"
#include "base/logging.h"
#import "chrome/browser/ui/cocoa/fast_resize_view.h"
#import "chrome/browser/ui/cocoa/framed_browser_window.h"
#import "chrome/browser/ui/cocoa/tabs/tab_strip_view.h"
#import "chrome/browser/ui/cocoa/themed_window.h"
#import "ui/base/cocoa/focus_tracker.h"
#include "ui/base/theme_provider.h"
@interface TabWindowController(PRIVATE)
- (void)setUseOverlay:(BOOL)useOverlay;
@end
@interface TabWindowOverlayWindow : NSWindow
@end
@implementation TabWindowOverlayWindow
- (ui::ThemeProvider*)themeProvider {
if ([self parentWindow])
return [[[self parentWindow] windowController] themeProvider];
return NULL;
}
- (ThemedWindowStyle)themedWindowStyle {
if ([self parentWindow])
return [[[self parentWindow] windowController] themedWindowStyle];
return NO;
}
- (NSPoint)themePatternPhase {
if ([self parentWindow])
return [[[self parentWindow] windowController] themePatternPhase];
return NSZeroPoint;
}
@end
@implementation TabWindowController
- (id)initTabWindowControllerWithTabStrip:(BOOL)hasTabStrip {
NSRect contentRect = NSMakeRect(60, 229, 750, 600);
scoped_nsobject<FramedBrowserWindow> window(
[[FramedBrowserWindow alloc] initWithContentRect:contentRect
hasTabStrip:hasTabStrip]);
[window setReleasedWhenClosed:YES];
[window setAutorecalculatesKeyViewLoop:YES];
if ((self = [super initWithWindow:window])) {
[[self window] setDelegate:self];
tabContentArea_.reset([[FastResizeView alloc] initWithFrame:
NSMakeRect(0, 0, 750, 600)]);
[tabContentArea_ setAutoresizingMask:NSViewWidthSizable |
NSViewHeightSizable];
[[[self window] contentView] addSubview:tabContentArea_];
tabStripView_.reset([[TabStripView alloc] initWithFrame:
NSMakeRect(0, 0, 750, 37)]);
[tabStripView_ setAutoresizingMask:NSViewWidthSizable |
NSViewMinYMargin];
if (hasTabStrip)
[self addTabStripToWindow];
}
return self;
}
- (TabStripView*)tabStripView {
return tabStripView_;
}
- (FastResizeView*)tabContentArea {
return tabContentArea_;
}
// Add the top tab strop to the window, above the content box and add it to the
// view hierarchy as a sibling of the content view so it can overlap with the
// window frame.
- (void)addTabStripToWindow {
// The frame doesn't matter. This class relies on subclasses to do tab strip
// layout.
NSView* contentParent = [[[self window] contentView] superview];
[contentParent addSubview:tabStripView_];
}
- (void)removeOverlay {
[self setUseOverlay:NO];
if (closeDeferred_) {
// See comment in BrowserWindowCocoa::Close() about orderOut:.
[[self window] orderOut:self];
[[self window] performClose:self]; // Autoreleases the controller.
}
}
- (void)showOverlay {
[self setUseOverlay:YES];
}
// if |useOverlay| is true, we're moving views into the overlay's content
// area. If false, we're moving out of the overlay back into the window's
// content.
- (void)moveViewsBetweenWindowAndOverlay:(BOOL)useOverlay {
if (useOverlay) {
[[[overlayWindow_ contentView] superview] addSubview:[self tabStripView]];
// Add the original window's content view as a subview of the overlay
// window's content view. We cannot simply use setContentView: here because
// the overlay window has a different content size (due to it being
// borderless).
[[overlayWindow_ contentView] addSubview:cachedContentView_];
} else {
[[self window] setContentView:cachedContentView_];
// The TabStripView always needs to be in front of the window's content
// view and therefore it should always be added after the content view is
// set.
[[[[self window] contentView] superview] addSubview:[self tabStripView]];
[[[[self window] contentView] superview] updateTrackingAreas];
}
}
// If |useOverlay| is YES, creates a new overlay window and puts the tab strip
// and the content area inside of it. This allows it to have a different opacity
// from the title bar. If NO, returns everything to the previous state and
// destroys the overlay window until it's needed again. The tab strip and window
// contents are returned to the original window.
- (void)setUseOverlay:(BOOL)useOverlay {
[NSObject cancelPreviousPerformRequestsWithTarget:self
selector:@selector(removeOverlay)
object:nil];
NSWindow* window = [self window];
if (useOverlay && !overlayWindow_) {
DCHECK(!cachedContentView_);
overlayWindow_ = [[TabWindowOverlayWindow alloc]
initWithContentRect:[window frame]
styleMask:NSBorderlessWindowMask
backing:NSBackingStoreBuffered
defer:YES];
[overlayWindow_ setTitle:@"overlay"];
[overlayWindow_ setBackgroundColor:[NSColor clearColor]];
[overlayWindow_ setOpaque:NO];
[overlayWindow_ setDelegate:self];
cachedContentView_ = [window contentView];
[window addChildWindow:overlayWindow_ ordered:NSWindowAbove];
// Sets explictly nil to the responder and then restores it.
// Leaving the first responder non-null here
// causes [RenderWidgethostViewCocoa resignFirstResponder] and
// following RenderWidgetHost::Blur(), which results unexpected
// focus lost.
focusBeforeOverlay_.reset([[FocusTracker alloc] initWithWindow:window]);
[window makeFirstResponder:nil];
[self moveViewsBetweenWindowAndOverlay:useOverlay];
[overlayWindow_ orderFront:nil];
} else if (!useOverlay && overlayWindow_) {
DCHECK(cachedContentView_);
[window setContentView:cachedContentView_];
[self moveViewsBetweenWindowAndOverlay:useOverlay];
[focusBeforeOverlay_ restoreFocusInWindow:window];
focusBeforeOverlay_.reset(nil);
[window display];
[window removeChildWindow:overlayWindow_];
[overlayWindow_ orderOut:nil];
[overlayWindow_ release];
overlayWindow_ = nil;
cachedContentView_ = nil;
} else {
NOTREACHED();
}
}
- (NSWindow*)overlayWindow {
return overlayWindow_;
}
- (BOOL)shouldConstrainFrameRect {
// If we currently have an overlay window, do not attempt to change the
// window's size, as our overlay window doesn't know how to resize properly.
return overlayWindow_ == nil;
}
- (BOOL)canReceiveFrom:(TabWindowController*)source {
// subclass must implement
NOTIMPLEMENTED();
return NO;
}
- (void)moveTabView:(NSView*)view
fromController:(TabWindowController*)dragController {
NOTIMPLEMENTED();
}
- (NSView*)activeTabView {
NOTIMPLEMENTED();
return nil;
}
- (void)layoutTabs {
// subclass must implement
NOTIMPLEMENTED();
}
- (TabWindowController*)detachTabToNewWindow:(TabView*)tabView {
// subclass must implement
NOTIMPLEMENTED();
return NULL;
}
- (void)insertPlaceholderForTab:(TabView*)tab frame:(NSRect)frame {
[self showNewTabButton:NO];
}
- (void)removePlaceholder {
[self showNewTabButton:YES];
}
- (BOOL)isDragSessionActive {
NOTIMPLEMENTED();
return NO;
}
- (BOOL)tabDraggingAllowed {
return YES;
}
- (BOOL)tabTearingAllowed {
return YES;
}
- (BOOL)windowMovementAllowed {
return YES;
}
- (BOOL)isTabFullyVisible:(TabView*)tab {
// Subclasses should implement this, but it's not necessary.
return YES;
}
- (void)showNewTabButton:(BOOL)show {
// subclass must implement
NOTIMPLEMENTED();
}
- (void)detachTabView:(NSView*)view {
// subclass must implement
NOTIMPLEMENTED();
}
- (NSInteger)numberOfTabs {
// subclass must implement
NOTIMPLEMENTED();
return 0;
}
- (BOOL)hasLiveTabs {
// subclass must implement
NOTIMPLEMENTED();
return NO;
}
- (NSString*)activeTabTitle {
// subclass must implement
NOTIMPLEMENTED();
return @"";
}
- (BOOL)hasTabStrip {
// Subclasses should implement this.
NOTIMPLEMENTED();
return YES;
}
- (BOOL)isTabDraggable:(NSView*)tabView {
// Subclasses should implement this.
NOTIMPLEMENTED();
return YES;
}
// Tell the window that it needs to call performClose: as soon as the current
// drag is complete. This prevents a window (and its overlay) from going away
// during a drag.
- (void)deferPerformClose {
closeDeferred_ = YES;
}
// Called when the size of the window content area has changed. Override to
// position specific views. Base class implementation does nothing.
- (void)layoutSubviews {
NOTIMPLEMENTED();
}
@end
|