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
|
// 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/dev_tools_controller.h"
#include <algorithm>
#include <Cocoa/Cocoa.h>
#import "base/mac/foundation_util.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile.h"
#import "chrome/browser/ui/cocoa/view_id_util.h"
#include "chrome/common/pref_names.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_view.h"
using content::WebContents;
@interface GraySplitView : NSSplitView {
CGFloat topContentOffset_;
BOOL dividerHidden_;
}
@property(assign, nonatomic) CGFloat topContentOffset;
@property(assign, nonatomic) BOOL dividerHidden;
- (NSColor*)dividerColor;
- (CGFloat)dividerThickness;
@end
@implementation GraySplitView
@synthesize topContentOffset = topContentOffset_;
@synthesize dividerHidden = dividerHidden_;
- (NSColor*)dividerColor {
return [NSColor darkGrayColor];
}
- (CGFloat)dividerThickness {
return dividerHidden_ ? 0 : [super dividerThickness];
}
- (void)drawDividerInRect:(NSRect)aRect {
NSRect dividerRect = aRect;
if ([self isVertical]) {
dividerRect.size.height -= topContentOffset_;
dividerRect.origin.y += topContentOffset_;
}
[super drawDividerInRect:dividerRect];
}
- (NSView*)hitTest:(NSPoint)point {
NSPoint viewPoint = [self convertPoint:point fromView:[self superview]];
if (viewPoint.y < topContentOffset_)
return nil;
return [super hitTest:point];
}
@end
@interface DevToolsController (Private)
- (void)showDevToolsContainer;
- (void)hideDevToolsContainer;
- (void)updateDevToolsSplitPosition;
- (void)updateDevToolsViewFrame;
@end
@implementation DevToolsController
- (id)init {
if ((self = [super init])) {
splitView_.reset([[GraySplitView alloc] initWithFrame:NSZeroRect]);
[splitView_ setDividerStyle:NSSplitViewDividerStyleThin];
[splitView_ setVertical:NO];
[splitView_ setAutoresizingMask:NSViewWidthSizable|NSViewHeightSizable];
[splitView_ setDelegate:self];
[splitView_ setDividerHidden:NO];
dockSide_ = DEVTOOLS_DOCK_SIDE_BOTTOM;
}
return self;
}
- (void)dealloc {
[splitView_ setDelegate:nil];
[super dealloc];
}
- (NSView*)view {
return splitView_.get();
}
- (NSSplitView*)splitView {
return splitView_.get();
}
- (void)updateDevToolsForWebContents:(WebContents*)contents
withProfile:(Profile*)profile {
DevToolsWindow* newDevToolsWindow = contents ?
DevToolsWindow::GetDockedInstanceForInspectedTab(contents) : NULL;
// Fast return in case of the same window having same orientation.
if (devToolsWindow_ == newDevToolsWindow) {
if (!newDevToolsWindow ||
(newDevToolsWindow->dock_side() == dockSide_)) {
if (newDevToolsWindow)
[self updateDevToolsSplitPosition];
return;
}
}
// Store last used position.
if (devToolsWindow_) {
NSArray* subviews = [splitView_ subviews];
DCHECK_EQ([subviews count], 2u);
NSView* devToolsView = [subviews objectAtIndex:1];
if (dockSide_ == DEVTOOLS_DOCK_SIDE_RIGHT)
devToolsWindow_->SetWidth(NSWidth([devToolsView frame]));
else if (dockSide_ == DEVTOOLS_DOCK_SIDE_BOTTOM)
devToolsWindow_->SetHeight(NSHeight([devToolsView frame]));
}
if (devToolsWindow_)
[self hideDevToolsContainer];
devToolsWindow_ = newDevToolsWindow;
if (devToolsWindow_) {
dockSide_ = devToolsWindow_->dock_side();
[self showDevToolsContainer];
}
}
- (CGFloat)topContentOffset {
return [splitView_ topContentOffset];
}
- (void)setTopContentOffset:(CGFloat)offset {
[splitView_ setTopContentOffset:offset];
if ([[splitView_ subviews] count] > 1)
[self updateDevToolsViewFrame];
}
- (void)showDevToolsContainer {
NSArray* subviews = [splitView_ subviews];
DCHECK_EQ([subviews count], 1u);
WebContents* devToolsContents = devToolsWindow_->web_contents();
// |devToolsView| is a TabContentsViewCocoa object, whose ViewID was
// set to VIEW_ID_TAB_CONTAINER initially, so we need to change it to
// VIEW_ID_DEV_TOOLS_DOCKED here.
NSView* devToolsView = devToolsContents->GetView()->GetNativeView();
view_id_util::SetID(devToolsView, VIEW_ID_DEV_TOOLS_DOCKED);
[devToolsView setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
NSRect containerRect = NSMakeRect(0, 0, 100, 100);
scoped_nsobject<NSView> devToolsContainerView(
[[NSView alloc] initWithFrame:containerRect]);
[devToolsContainerView addSubview:devToolsView];
[splitView_ addSubview:devToolsContainerView];
[self updateDevToolsViewFrame];
BOOL isVertical = devToolsWindow_->dock_side() == DEVTOOLS_DOCK_SIDE_RIGHT;
[splitView_ setVertical:isVertical];
[self updateDevToolsSplitPosition];
}
- (void)hideDevToolsContainer {
NSArray* subviews = [splitView_ subviews];
DCHECK_EQ([subviews count], 2u);
NSView* oldDevToolsContentsView = [subviews objectAtIndex:1];
[oldDevToolsContentsView removeFromSuperview];
[splitView_ adjustSubviews];
}
- (void)updateDevToolsSplitPosition {
NSArray* subviews = [splitView_ subviews];
// It seems as if |-setPosition:ofDividerAtIndex:| should do what's needed,
// but I can't figure out how to use it. Manually resize web and devtools.
// TODO(alekseys): either make setPosition:ofDividerAtIndex: work or to add a
// category on NSSplitView to handle manual resizing.
NSView* webView = [subviews objectAtIndex:0];
NSRect webFrame = [webView frame];
NSView* devToolsView = [subviews objectAtIndex:1];
NSRect devToolsFrame = [devToolsView frame];
BOOL noDivider = devToolsWindow_->dock_side() == DEVTOOLS_DOCK_SIDE_MINIMIZED;
[splitView_ setDividerHidden:noDivider];
if (devToolsWindow_->dock_side() == DEVTOOLS_DOCK_SIDE_RIGHT) {
CGFloat size = devToolsWindow_->GetWidth(NSWidth([splitView_ frame]));
devToolsFrame.size.width = size;
webFrame.size.width =
NSWidth([splitView_ frame]) - ([splitView_ dividerThickness] + size);
} else {
CGFloat size =
devToolsWindow_->dock_side() == DEVTOOLS_DOCK_SIDE_MINIMIZED ?
devToolsWindow_->GetMinimizedHeight() :
devToolsWindow_->GetHeight(NSHeight([splitView_ frame]));
devToolsFrame.size.height = size;
webFrame.size.height =
NSHeight([splitView_ frame]) - ([splitView_ dividerThickness] + size);
}
[[splitView_ window] disableScreenUpdatesUntilFlush];
[webView setFrame:webFrame];
[devToolsView setFrame:devToolsFrame];
[splitView_ adjustSubviews];
}
- (void)updateDevToolsViewFrame {
NSView* devToolsView =
devToolsWindow_->web_contents()->GetView()->GetNativeView();
NSRect devToolsRect = [[devToolsView superview] bounds];
if (devToolsWindow_->dock_side() == DEVTOOLS_DOCK_SIDE_RIGHT)
devToolsRect.size.height -= [splitView_ topContentOffset];
[devToolsView setFrame:devToolsRect];
}
// NSSplitViewDelegate protocol.
- (BOOL)splitView:(NSSplitView *)splitView
shouldAdjustSizeOfSubview:(NSView *)subview {
// Return NO for the devTools view to indicate that it should not be resized
// automatically. It preserves the height set by the user and also keeps
// view height the same while changing tabs when one of the tabs shows infobar
// and others are not.
if ([[splitView_ subviews] indexOfObject:subview] == 1)
return NO;
return YES;
}
- (CGFloat)splitView:(NSSplitView*)splitView
constrainSplitPosition:(CGFloat)proposedPosition
ofSubviewAt:(NSInteger)dividerIndex {
if (![splitView_ isVertical] &&
proposedPosition < [splitView_ topContentOffset]) {
return [splitView_ topContentOffset];
}
return proposedPosition;
}
- (NSRect)splitView:(NSSplitView*)splitView
effectiveRect:(NSRect)proposedEffectiveRect
forDrawnRect:(NSRect)drawnRect
ofDividerAtIndex:(NSInteger)dividerIndex {
if (devToolsWindow_->dock_side() == DEVTOOLS_DOCK_SIDE_MINIMIZED) {
return NSZeroRect;
} else {
return proposedEffectiveRect;
}
}
- (CGFloat)splitView:(NSSplitView*)splitView
constrainMaxCoordinate:(CGFloat)proposedMax
ofSubviewAt:(NSInteger)dividerIndex {
if ([splitView_ isVertical]) {
return NSWidth([splitView_ frame]) - [splitView_ dividerThickness] -
devToolsWindow_->GetMinimumWidth();
} else {
return NSHeight([splitView_ frame]) - [splitView_ dividerThickness] -
devToolsWindow_->GetMinimumHeight();
}
}
-(void)splitViewWillResizeSubviews:(NSNotification *)notification {
[[splitView_ window] disableScreenUpdatesUntilFlush];
}
@end
|