blob: 12fc4a5505c361e0ec973562905a7d9f7a12c0b6 (
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
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
|
// 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_window_controller.h"
#include "base/logging.h"
#import "chrome/browser/cocoa/tab_strip_view.h"
@interface TabWindowController(PRIVATE)
- (void)setUseOverlay:(BOOL)useOverlay;
@end
@implementation TabWindowController
@synthesize tabStripView = tabStripView_;
@synthesize tabContentArea = tabContentArea_;
- (void)windowDidLoad {
// Place the tab bar 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.
NSRect tabFrame = [tabContentArea_ frame];
tabFrame.origin = NSMakePoint(0, NSMaxY(tabFrame));
tabFrame.size.height = NSHeight([tabStripView_ frame]);
[tabStripView_ setFrame:tabFrame];
[[[[self window] contentView] superview] addSubview:tabStripView_];
}
- (void)removeOverlay {
[self setUseOverlay:NO];
}
- (void)removeOverlayAfterDelay:(NSTimeInterval)delay {
[NSObject cancelPreviousPerformRequestsWithTarget:self
selector:@selector(removeOverlay)
object:nil];
[self performSelector:@selector(removeOverlay)
withObject:nil
afterDelay:delay];
}
- (void)showOverlay {
[self setUseOverlay:YES];
}
- (NSArray*)viewsToMoveToOverlay {
return [NSArray arrayWithObjects:[self tabStripView],
[self tabContentArea], nil];
}
// 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 {
NSView* moveTo = useOverlay ?
[overlayWindow_ contentView] : [cachedContentView_ superview];
NSArray* viewsToMove = [self viewsToMoveToOverlay];
for (NSView* view in viewsToMove)
[moveTo addSubview:view];
}
// 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];
if (useOverlay && !overlayWindow_) {
DCHECK(!cachedContentView_);
overlayWindow_ = [[NSPanel alloc] initWithContentRect:[[self window] frame]
styleMask:NSBorderlessWindowMask
backing:NSBackingStoreBuffered
defer:YES];
[overlayWindow_ setTitle:@"overlay"];
[overlayWindow_ setBackgroundColor:[NSColor clearColor]];
[overlayWindow_ setOpaque:NO];
NSView *contentView = [overlayWindow_ contentView];
[contentView addSubview:[self tabStripView]];
cachedContentView_ = [[self window] contentView];
[self moveViewsBetweenWindowAndOverlay:useOverlay];
[[self window] addChildWindow:overlayWindow_ ordered:NSWindowAbove];
[overlayWindow_ orderFront:nil];
} else if (!useOverlay && overlayWindow_) {
DCHECK(cachedContentView_);
[[self window] setContentView:cachedContentView_];
[self moveViewsBetweenWindowAndOverlay:useOverlay];
[[self window] makeFirstResponder:cachedContentView_];
[[self window] display];
[[self window] removeChildWindow:overlayWindow_];
[overlayWindow_ orderOut:nil];
[overlayWindow_ release];
overlayWindow_ = nil;
cachedContentView_ = nil;
}
}
- (NSWindow*)overlayWindow {
return overlayWindow_;
}
- (BOOL)canReceiveFrom:(TabWindowController*)source {
// subclass must implement
NOTIMPLEMENTED();
return NO;
}
- (void)moveTabView:(NSView*)view
fromController:(TabWindowController*)dragController {
NOTIMPLEMENTED();
}
- (NSView *)selectedTabView {
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
yStretchiness:(CGFloat)yStretchiness {
// subclass must implement
NOTIMPLEMENTED();
}
- (void)removePlaceholder {
// subclass must implement
NOTIMPLEMENTED();
}
- (void)detachTabView:(NSView*)view {
// subclass must implement
NOTIMPLEMENTED();
}
- (NSInteger)numberOfTabs {
// subclass must implement
NOTIMPLEMENTED();
return 0;
}
- (NSString*)selectedTabTitle {
// subclass must implement
NOTIMPLEMENTED();
return @"";
}
@end
|