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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
|
// 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/browser_window_controller_private.h"
#include <cmath>
#include "base/command_line.h"
#import "base/mac/scoped_nsobject.h"
#include "base/prefs/pref_service.h"
#include "base/prefs/scoped_user_pref_update.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/fullscreen.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_info_util.h"
#include "chrome/browser/ui/bookmarks/bookmark_tab_helper.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window_state.h"
#import "chrome/browser/ui/cocoa/browser/avatar_button_controller.h"
#import "chrome/browser/ui/cocoa/dev_tools_controller.h"
#import "chrome/browser/ui/cocoa/fast_resize_view.h"
#import "chrome/browser/ui/cocoa/find_bar/find_bar_cocoa_controller.h"
#import "chrome/browser/ui/cocoa/floating_bar_backing_view.h"
#import "chrome/browser/ui/cocoa/framed_browser_window.h"
#import "chrome/browser/ui/cocoa/fullscreen_mode_controller.h"
#import "chrome/browser/ui/cocoa/fullscreen_window.h"
#import "chrome/browser/ui/cocoa/infobars/infobar_container_controller.h"
#include "chrome/browser/ui/cocoa/last_active_browser_cocoa.h"
#import "chrome/browser/ui/cocoa/nsview_additions.h"
#import "chrome/browser/ui/cocoa/presentation_mode_controller.h"
#import "chrome/browser/ui/cocoa/status_bubble_mac.h"
#import "chrome/browser/ui/cocoa/tab_contents/overlayable_contents_controller.h"
#import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h"
#import "chrome/browser/ui/cocoa/tabs/tab_strip_view.h"
#import "chrome/browser/ui/cocoa/toolbar/toolbar_controller.h"
#include "chrome/browser/ui/fullscreen/fullscreen_controller.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_view.h"
#import "ui/base/cocoa/focus_tracker.h"
#include "ui/base/ui_base_types.h"
using content::RenderWidgetHostView;
using content::WebContents;
namespace {
// Space between the incognito badge and the right edge of the window.
const CGFloat kAvatarRightOffset = 4;
// The amount by which to shrink the tab strip (on the right) when the
// incognito badge is present.
const CGFloat kAvatarTabStripShrink = 18;
// Insets for the location bar, used when the full toolbar is hidden.
// TODO(viettrungluu): We can argue about the "correct" insetting; I like the
// following best, though arguably 0 inset is better/more correct.
const CGFloat kLocBarLeftRightInset = 1;
const CGFloat kLocBarTopInset = 0;
const CGFloat kLocBarBottomInset = 1;
} // namespace
@implementation BrowserWindowController(Private)
// Create the tab strip controller.
- (void)createTabStripController {
DCHECK([overlayableContentsController_ activeContainer]);
DCHECK([[overlayableContentsController_ activeContainer] window]);
tabStripController_.reset([[TabStripController alloc]
initWithView:[self tabStripView]
switchView:[overlayableContentsController_ activeContainer]
browser:browser_.get()
delegate:self]);
}
- (void)saveWindowPositionIfNeeded {
if (!chrome::ShouldSaveWindowPlacement(browser_.get()))
return;
// If we're in fullscreen mode, save the position of the regular window
// instead.
NSWindow* window = [self isFullscreen] ? savedRegularWindow_ : [self window];
// Window positions are stored relative to the origin of the primary monitor.
NSRect monitorFrame = [[[NSScreen screens] objectAtIndex:0] frame];
NSScreen* windowScreen = [window screen];
// Start with the window's frame, which is in virtual coordinates.
// Do some y twiddling to flip the coordinate system.
gfx::Rect bounds(NSRectToCGRect([window frame]));
bounds.set_y(monitorFrame.size.height - bounds.y() - bounds.height());
// Browser::SaveWindowPlacement saves information for session restore.
ui::WindowShowState show_state = ui::SHOW_STATE_NORMAL;
if ([window isMiniaturized])
show_state = ui::SHOW_STATE_MINIMIZED;
else if ([self isFullscreen])
show_state = ui::SHOW_STATE_FULLSCREEN;
chrome::SaveWindowPlacement(browser_.get(), bounds, show_state);
// |windowScreen| can be nil (for example, if the monitor arrangement was
// changed while in fullscreen mode). If we see a nil screen, return without
// saving.
// TODO(rohitrao): We should just not save anything for fullscreen windows.
// http://crbug.com/36479.
if (!windowScreen)
return;
// Only save main window information to preferences.
PrefService* prefs = browser_->profile()->GetPrefs();
if (!prefs || browser_ != chrome::GetLastActiveBrowser())
return;
// Save the current work area, in flipped coordinates.
gfx::Rect workArea(NSRectToCGRect([windowScreen visibleFrame]));
workArea.set_y(monitorFrame.size.height - workArea.y() - workArea.height());
DictionaryPrefUpdate update(
prefs,
chrome::GetWindowPlacementKey(browser_.get()).c_str());
base::DictionaryValue* windowPreferences = update.Get();
windowPreferences->SetInteger("left", bounds.x());
windowPreferences->SetInteger("top", bounds.y());
windowPreferences->SetInteger("right", bounds.right());
windowPreferences->SetInteger("bottom", bounds.bottom());
windowPreferences->SetBoolean("maximized", false);
windowPreferences->SetBoolean("always_on_top", false);
windowPreferences->SetInteger("work_area_left", workArea.x());
windowPreferences->SetInteger("work_area_top", workArea.y());
windowPreferences->SetInteger("work_area_right", workArea.right());
windowPreferences->SetInteger("work_area_bottom", workArea.bottom());
}
- (NSRect)window:(NSWindow*)window
willPositionSheet:(NSWindow*)sheet
usingRect:(NSRect)defaultSheetRect {
// Position the sheet as follows:
// - If the bookmark bar is hidden or shown as a bubble (on the NTP when the
// bookmark bar is disabled), position the sheet immediately below the
// normal toolbar.
// - If the bookmark bar is shown (attached to the normal toolbar), position
// the sheet below the bookmark bar.
// - If the bookmark bar is currently animating, position the sheet according
// to where the bar will be when the animation ends.
switch ([bookmarkBarController_ currentState]) {
case BookmarkBar::SHOW: {
NSRect bookmarkBarFrame = [[bookmarkBarController_ view] frame];
defaultSheetRect.origin.y = bookmarkBarFrame.origin.y;
break;
}
case BookmarkBar::HIDDEN:
case BookmarkBar::DETACHED: {
if ([self hasToolbar]) {
NSRect toolbarFrame = [[toolbarController_ view] frame];
defaultSheetRect.origin.y = toolbarFrame.origin.y;
} else {
// The toolbar is not shown in application mode. The sheet should be
// located at the top of the window, under the title of the window.
defaultSheetRect.origin.y = NSHeight([[window contentView] frame]) -
defaultSheetRect.size.height;
}
break;
}
}
return defaultSheetRect;
}
- (void)layoutSubviews {
// With the exception of the top tab strip, the subviews which we lay out are
// subviews of the content view, so we mainly work in the content view's
// coordinate system. Note, however, that the content view's coordinate system
// and the window's base coordinate system should coincide.
NSWindow* window = [self window];
NSView* contentView = [window contentView];
NSRect contentBounds = [contentView bounds];
CGFloat minX = NSMinX(contentBounds);
CGFloat minY = NSMinY(contentBounds);
CGFloat width = NSWidth(contentBounds);
BOOL useSimplifiedFullscreen = CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableSimplifiedFullscreen);
// Suppress title drawing if necessary.
if ([window respondsToSelector:@selector(setShouldHideTitle:)])
[(id)window setShouldHideTitle:![self hasTitleBar]];
// Update z-order. The code below depends on this.
[self updateSubviewZOrder:[self inPresentationMode]];
BOOL inPresentationMode = [self inPresentationMode];
CGFloat floatingBarHeight = [self floatingBarHeight];
// In presentation mode, |yOffset| accounts for the sliding position of the
// floating bar and the extra offset needed to dodge the menu bar.
CGFloat yOffset = inPresentationMode && !useSimplifiedFullscreen ?
(std::floor((1 - floatingBarShownFraction_) * floatingBarHeight) -
[presentationModeController_ floatingBarVerticalOffset]) : 0;
CGFloat maxY = NSMaxY(contentBounds) + yOffset;
if ([self hasTabStrip]) {
// If we need to lay out the top tab strip, replace |maxY| with a higher
// value, and then lay out the tab strip.
NSRect windowFrame = [contentView convertRect:[window frame] fromView:nil];
maxY = NSHeight(windowFrame) + yOffset;
if (useSimplifiedFullscreen && [self isFullscreen]) {
CGFloat tabStripHeight = NSHeight([[self tabStripView] frame]);
CGFloat revealAmount = (1 - floatingBarShownFraction_) * tabStripHeight;
// In simplified fullscreen, only the toolbar is visible by default, and
// the tabstrip and menu bar come down (each separately) when the user
// mouses near the top of the window. Push the maxY of the toolbar up by
// the amount of the tabstrip that is revealed, while removing the amount
// of space needed by the menu bar.
maxY += std::floor(
revealAmount - [fullscreenModeController_ menuBarHeight]);
}
maxY = [self layoutTabStripAtMaxY:maxY
width:width
fullscreen:[self isFullscreen]];
}
// Sanity-check |maxY|.
DCHECK_GE(maxY, minY);
DCHECK_LE(maxY, NSMaxY(contentBounds) + yOffset);
// Place the toolbar at the top of the reserved area.
maxY = [self layoutToolbarAtMinX:minX maxY:maxY width:width];
// If we're not displaying the bookmark bar below the info bar, then it goes
// immediately below the toolbar.
BOOL placeBookmarkBarBelowInfoBar = [self placeBookmarkBarBelowInfoBar];
if (!placeBookmarkBarBelowInfoBar)
maxY = [self layoutBookmarkBarAtMinX:minX maxY:maxY width:width];
// The floating bar backing view doesn't actually add any height.
NSRect floatingBarBackingRect =
NSMakeRect(minX, maxY, width, floatingBarHeight);
[self layoutFloatingBarBackingView:floatingBarBackingRect
presentationMode:inPresentationMode];
// Place the find bar immediately below the toolbar/attached bookmark bar. In
// presentation mode, it hangs off the top of the screen when the bar is
// hidden.
[findBarCocoaController_ positionFindBarViewAtMaxY:maxY maxWidth:width];
[fullscreenExitBubbleController_ positionInWindowAtTop:maxY width:width];
// If in presentation mode, reset |maxY| to top of screen, so that the
// floating bar slides over the things which appear to be in the content area.
if (inPresentationMode ||
(useSimplifiedFullscreen && !fullscreenUrl_.is_empty())) {
maxY = NSMaxY(contentBounds);
}
// Also place the info bar container immediate below the toolbar, except in
// presentation mode in which case it's at the top of the visual content area.
maxY = [self layoutInfoBarAtMinX:minX maxY:maxY width:width];
// If the bookmark bar is detached, place it next in the visual content area.
if (placeBookmarkBarBelowInfoBar)
maxY = [self layoutBookmarkBarAtMinX:minX maxY:maxY width:width];
// Place the download shelf, if any, at the bottom of the view.
minY = [self layoutDownloadShelfAtMinX:minX minY:minY width:width];
// Finally, the content area takes up all of the remaining space.
NSRect contentAreaRect = NSMakeRect(minX, minY, width, maxY - minY);
[self layoutTabContentArea:contentAreaRect];
// Normally, we don't need to tell the toolbar whether or not to show the
// divider, but things break down during animation.
[toolbarController_ setDividerOpacity:[self toolbarDividerOpacity]];
}
- (CGFloat)floatingBarHeight {
if (![self inPresentationMode])
return 0;
CGFloat totalHeight = [presentationModeController_ floatingBarVerticalOffset];
if ([self hasTabStrip])
totalHeight += NSHeight([[self tabStripView] frame]);
if ([self hasToolbar]) {
totalHeight += NSHeight([[toolbarController_ view] frame]);
} else if ([self hasLocationBar]) {
totalHeight += NSHeight([[toolbarController_ view] frame]) +
kLocBarTopInset + kLocBarBottomInset;
}
if (![self placeBookmarkBarBelowInfoBar])
totalHeight += NSHeight([[bookmarkBarController_ view] frame]);
return totalHeight;
}
- (CGFloat)layoutTabStripAtMaxY:(CGFloat)maxY
width:(CGFloat)width
fullscreen:(BOOL)fullscreen {
// Nothing to do if no tab strip.
if (![self hasTabStrip])
return maxY;
NSView* tabStripView = [self tabStripView];
CGFloat tabStripHeight = NSHeight([tabStripView frame]);
maxY -= tabStripHeight;
[tabStripView setFrame:NSMakeRect(0, maxY, width, tabStripHeight)];
// Set left indentation based on fullscreen mode status.
[tabStripController_ setLeftIndentForControls:(fullscreen ? 0 :
[[tabStripController_ class] defaultLeftIndentForControls])];
// Lay out the icognito/avatar badge because calculating the indentation on
// the right depends on it.
if ([self shouldShowAvatar]) {
NSView* avatarButton = [avatarButtonController_ view];
CGFloat buttonHeight = std::min(
static_cast<CGFloat>(profiles::kAvatarIconHeight), tabStripHeight);
[avatarButton setFrameSize:NSMakeSize(NSWidth([avatarButton frame]),
buttonHeight)];
// Actually place the badge *above* |maxY|, by +2 to miss the divider.
CGFloat badgeXOffset = -kAvatarRightOffset;
CGFloat badgeYOffset = 2 * [[avatarButton superview] cr_lineWidth];
NSPoint origin =
NSMakePoint(width - NSWidth([avatarButton frame]) + badgeXOffset,
maxY + badgeYOffset);
[avatarButton setFrameOrigin:origin];
[avatarButton setHidden:NO]; // Make sure it's shown.
}
// Calculate the right indentation. The default indentation built into the
// tabstrip leaves enough room for the fullscreen button or presentation mode
// toggle button on Lion. On non-Lion systems, the right indent needs to be
// adjusted to make room for the new tab button when an avatar is present.
CGFloat rightIndent = 0;
if (base::mac::IsOSLionOrLater() &&
[[self window] isKindOfClass:[FramedBrowserWindow class]]) {
FramedBrowserWindow* window =
static_cast<FramedBrowserWindow*>([self window]);
rightIndent += -[window fullScreenButtonOriginAdjustment].x;
} else if ([self shouldShowAvatar]) {
rightIndent += kAvatarTabStripShrink;
NSButton* labelButton = [avatarButtonController_ labelButtonView];
if (labelButton)
rightIndent += NSWidth([labelButton frame]) + kAvatarRightOffset;
}
[tabStripController_ setRightIndentForControls:rightIndent];
// Go ahead and layout the tabs.
[tabStripController_ layoutTabsWithoutAnimation];
return maxY;
}
- (CGFloat)layoutToolbarAtMinX:(CGFloat)minX
maxY:(CGFloat)maxY
width:(CGFloat)width {
NSView* toolbarView = [toolbarController_ view];
NSRect toolbarFrame = [toolbarView frame];
if ([self hasToolbar]) {
// The toolbar is present in the window, so we make room for it.
DCHECK(![toolbarView isHidden]);
toolbarFrame.origin.x = minX;
toolbarFrame.origin.y = maxY - NSHeight(toolbarFrame);
toolbarFrame.size.width = width;
maxY -= NSHeight(toolbarFrame);
} else {
if ([self hasLocationBar]) {
// Location bar is present with no toolbar. Put a border of
// |kLocBar...Inset| pixels around the location bar.
// TODO(viettrungluu): This is moderately ridiculous. The toolbar should
// really be aware of what its height should be (the way the toolbar
// compression stuff is currently set up messes things up).
DCHECK(![toolbarView isHidden]);
toolbarFrame.origin.x = kLocBarLeftRightInset;
toolbarFrame.origin.y = maxY - NSHeight(toolbarFrame) - kLocBarTopInset;
toolbarFrame.size.width = width - 2 * kLocBarLeftRightInset;
maxY -= kLocBarTopInset + NSHeight(toolbarFrame) + kLocBarBottomInset;
} else {
DCHECK([toolbarView isHidden]);
}
}
[toolbarView setFrame:toolbarFrame];
return maxY;
}
- (BOOL)placeBookmarkBarBelowInfoBar {
// If we are currently displaying the NTP detached bookmark bar or animating
// to/from it (from/to anything else), we display the bookmark bar below the
// info bar.
return [bookmarkBarController_ isInState:BookmarkBar::DETACHED] ||
[bookmarkBarController_ isAnimatingToState:BookmarkBar::DETACHED] ||
[bookmarkBarController_ isAnimatingFromState:BookmarkBar::DETACHED];
}
- (CGFloat)layoutBookmarkBarAtMinX:(CGFloat)minX
maxY:(CGFloat)maxY
width:(CGFloat)width {
[bookmarkBarController_ updateHiddenState];
NSView* bookmarkBarView = [bookmarkBarController_ view];
NSRect frame = [bookmarkBarView frame];
frame.origin.x = minX;
frame.origin.y = maxY - NSHeight(frame);
frame.size.width = width;
[bookmarkBarView setFrame:frame];
maxY -= NSHeight(frame);
// Pin the bookmark bar to the top of the window and make the width flexible.
[bookmarkBarView setAutoresizingMask:NSViewWidthSizable | NSViewMinYMargin];
// TODO(viettrungluu): Does this really belong here? Calling it shouldn't be
// necessary in the non-NTP case.
[bookmarkBarController_ layoutSubviews];
return maxY;
}
- (void)layoutFloatingBarBackingView:(NSRect)frame
presentationMode:(BOOL)presentationMode {
// Only display when in presentation mode.
if (presentationMode) {
// For certain window types such as app windows (e.g., the dev tools
// window), there's no actual overlay. (Displaying one would result in an
// overly sliding in only under the menu, which gives an ugly effect.)
if (floatingBarBackingView_.get()) {
// Set its frame.
[floatingBarBackingView_ setFrame:frame];
}
// But we want the logic to work as usual (for show/hide/etc. purposes).
[presentationModeController_ overlayFrameChanged:frame];
} else {
// Okay to call even if |floatingBarBackingView_| is nil.
if ([floatingBarBackingView_ superview])
[floatingBarBackingView_ removeFromSuperview];
}
}
- (CGFloat)layoutInfoBarAtMinX:(CGFloat)minX
maxY:(CGFloat)maxY
width:(CGFloat)width {
NSView* containerView = [infoBarContainerController_ view];
NSRect containerFrame = [containerView frame];
maxY -= NSHeight(containerFrame);
maxY += [infoBarContainerController_ overlappingTipHeight];
containerFrame.origin.x = minX;
containerFrame.origin.y = maxY;
containerFrame.size.width = width;
[containerView setFrame:containerFrame];
return maxY;
}
- (CGFloat)layoutDownloadShelfAtMinX:(CGFloat)minX
minY:(CGFloat)minY
width:(CGFloat)width {
if (downloadShelfController_.get()) {
NSView* downloadView = [downloadShelfController_ view];
NSRect downloadFrame = [downloadView frame];
downloadFrame.origin.x = minX;
downloadFrame.origin.y = minY;
downloadFrame.size.width = width;
[downloadView setFrame:downloadFrame];
minY += NSHeight(downloadFrame);
}
return minY;
}
- (void)layoutTabContentArea:(NSRect)newFrame {
NSView* tabContentView = [self tabContentArea];
NSRect tabContentFrame = [tabContentView frame];
bool contentShifted =
NSMaxY(tabContentFrame) != NSMaxY(newFrame) ||
NSMinX(tabContentFrame) != NSMinX(newFrame);
tabContentFrame = newFrame;
[tabContentView setFrame:tabContentFrame];
// If the relayout shifts the content area up or down, let the renderer know.
if (contentShifted) {
if (WebContents* contents =
browser_->tab_strip_model()->GetActiveWebContents()) {
if (RenderWidgetHostView* rwhv = contents->GetRenderWidgetHostView())
rwhv->WindowFrameChanged();
}
}
}
- (void)adjustToolbarAndBookmarkBarForCompression:(CGFloat)compression {
CGFloat newHeight =
[toolbarController_ desiredHeightForCompression:compression];
NSRect toolbarFrame = [[toolbarController_ view] frame];
CGFloat deltaH = newHeight - toolbarFrame.size.height;
if (deltaH == 0)
return;
toolbarFrame.size.height = newHeight;
NSRect bookmarkFrame = [[bookmarkBarController_ view] frame];
bookmarkFrame.size.height = bookmarkFrame.size.height - deltaH;
[[toolbarController_ view] setFrame:toolbarFrame];
[[bookmarkBarController_ view] setFrame:bookmarkFrame];
[self layoutSubviews];
}
// Fullscreen and presentation mode methods
- (BOOL)shouldShowPresentationModeToggle {
return chrome::mac::SupportsSystemFullscreen() && [self isFullscreen];
}
- (void)moveViewsForFullscreenForSnowLeopard:(BOOL)fullscreen
regularWindow:(NSWindow*)regularWindow
fullscreenWindow:(NSWindow*)fullscreenWindow {
// This method is only for systems without fullscreen support.
DCHECK(!chrome::mac::SupportsSystemFullscreen());
NSWindow* sourceWindow = fullscreen ? regularWindow : fullscreenWindow;
NSWindow* destWindow = fullscreen ? fullscreenWindow : regularWindow;
// Close the bookmark bubble, if it's open. Use |-ok:| instead of |-cancel:|
// or |-close| because that matches the behavior when the bubble loses key
// status.
[bookmarkBubbleController_ ok:self];
// Save the current first responder so we can restore after views are moved.
base::scoped_nsobject<FocusTracker> focusTracker(
[[FocusTracker alloc] initWithWindow:sourceWindow]);
// While we move views (and focus) around, disable any bar visibility changes.
[self disableBarVisibilityUpdates];
// Retain the tab strip view while we remove it from its superview.
base::scoped_nsobject<NSView> tabStripView;
if ([self hasTabStrip]) {
tabStripView.reset([[self tabStripView] retain]);
[tabStripView removeFromSuperview];
}
// Ditto for the content view.
base::scoped_nsobject<NSView> contentView(
[[sourceWindow contentView] retain]);
// Disable autoresizing of subviews while we move views around. This prevents
// spurious renderer resizes.
[contentView setAutoresizesSubviews:NO];
[contentView removeFromSuperview];
// Have to do this here, otherwise later calls can crash because the window
// has no delegate.
[sourceWindow setDelegate:nil];
[destWindow setDelegate:self];
// With this call, valgrind complains that a "Conditional jump or move depends
// on uninitialised value(s)". The error happens in -[NSThemeFrame
// drawOverlayRect:]. I'm pretty convinced this is an Apple bug, but there is
// no visual impact. I have been unable to tickle it away with other window
// or view manipulation Cocoa calls. Stack added to suppressions_mac.txt.
[contentView setAutoresizesSubviews:YES];
[destWindow setContentView:contentView];
// Move the incognito badge if present.
if ([self shouldShowAvatar]) {
[[avatarButtonController_ view] removeFromSuperview];
[[avatarButtonController_ view] setHidden:YES]; // Will be shown in layout.
[[[destWindow contentView] superview] addSubview:
[avatarButtonController_ view]];
}
// Add the tab strip after setting the content view and moving the incognito
// badge (if any), so that the tab strip will be on top (in the z-order).
if ([self hasTabStrip])
[[[destWindow contentView] superview] addSubview:tabStripView];
[sourceWindow setWindowController:nil];
[self setWindow:destWindow];
[destWindow setWindowController:self];
// Move the status bubble over, if we have one.
if (statusBubble_)
statusBubble_->SwitchParentWindow(destWindow);
// Move the title over.
[destWindow setTitle:[sourceWindow title]];
// The window needs to be onscreen before we can set its first responder.
// Ordering the window to the front can change the active Space (either to
// the window's old Space or to the application's assigned Space). To prevent
// this by temporarily change the collectionBehavior.
NSWindowCollectionBehavior behavior = [sourceWindow collectionBehavior];
[destWindow setCollectionBehavior:
NSWindowCollectionBehaviorMoveToActiveSpace];
[destWindow makeKeyAndOrderFront:self];
[destWindow setCollectionBehavior:behavior];
[focusTracker restoreFocusInWindow:destWindow];
[sourceWindow orderOut:self];
// We're done moving focus, so re-enable bar visibility changes.
[self enableBarVisibilityUpdates];
}
- (void)setPresentationModeInternal:(BOOL)presentationMode
forceDropdown:(BOOL)forceDropdown {
if (presentationMode == [self inPresentationMode])
return;
if (presentationMode) {
BOOL fullscreen_for_tab =
browser_->fullscreen_controller()->IsFullscreenForTabOrPending();
BOOL kiosk_mode =
CommandLine::ForCurrentProcess()->HasSwitch(switches::kKioskMode);
BOOL showDropdown = !fullscreen_for_tab &&
!kiosk_mode &&
(forceDropdown || [self floatingBarHasFocus]);
NSView* contentView = [[self window] contentView];
presentationModeController_.reset(
[[PresentationModeController alloc] initWithBrowserController:self]);
[presentationModeController_ enterPresentationModeForContentView:contentView
showDropdown:showDropdown];
} else {
[presentationModeController_ exitPresentationMode];
presentationModeController_.reset();
}
[self adjustUIForPresentationMode:presentationMode];
[self layoutSubviews];
}
// TODO(rohitrao): This method is misnamed now, since there is a flag that
// enables 10.6-style fullscreen on newer OSes.
- (void)enterFullscreenForSnowLeopard {
// Fade to black.
const CGDisplayReservationInterval kFadeDurationSeconds = 0.6;
Boolean didFadeOut = NO;
CGDisplayFadeReservationToken token;
if (CGAcquireDisplayFadeReservation(kFadeDurationSeconds, &token)
== kCGErrorSuccess) {
didFadeOut = YES;
CGDisplayFade(token, kFadeDurationSeconds / 2, kCGDisplayBlendNormal,
kCGDisplayBlendSolidColor, 0.0, 0.0, 0.0, /*synchronous=*/true);
}
// Create the fullscreen window. After this line, isFullscreen will return
// YES.
fullscreenWindow_.reset([[self createFullscreenWindow] retain]);
savedRegularWindow_ = [[self window] retain];
savedRegularWindowFrame_ = [savedRegularWindow_ frame];
[self moveViewsForFullscreenForSnowLeopard:YES
regularWindow:[self window]
fullscreenWindow:fullscreenWindow_.get()];
// When simplified fullscreen is enabled, do not enter presentation mode.
const CommandLine* command_line = CommandLine::ForCurrentProcess();
if (command_line->HasSwitch(switches::kEnableSimplifiedFullscreen)) {
// TODO(rohitrao): Add code to manage the menubar here.
} else {
[self adjustUIForPresentationMode:YES];
[self setPresentationModeInternal:YES forceDropdown:NO];
}
[self layoutSubviews];
[self windowDidEnterFullScreen:nil];
// Fade back in.
if (didFadeOut) {
CGDisplayFade(token, kFadeDurationSeconds / 2, kCGDisplayBlendSolidColor,
kCGDisplayBlendNormal, 0.0, 0.0, 0.0, /*synchronous=*/false);
CGReleaseDisplayFadeReservation(token);
}
}
- (void)exitFullscreenForSnowLeopard {
// TODO(rohitrao): This method is misnamed now, since there is a flag that
// enables 10.6-style fullscreen on newer OSes.
DCHECK(!chrome::mac::SupportsSystemFullscreen());
// Fade to black.
const CGDisplayReservationInterval kFadeDurationSeconds = 0.6;
Boolean didFadeOut = NO;
CGDisplayFadeReservationToken token;
if (CGAcquireDisplayFadeReservation(kFadeDurationSeconds, &token)
== kCGErrorSuccess) {
didFadeOut = YES;
CGDisplayFade(token, kFadeDurationSeconds / 2, kCGDisplayBlendNormal,
kCGDisplayBlendSolidColor, 0.0, 0.0, 0.0, /*synchronous=*/true);
}
// When simplified fullscreen is enabled, the menubar status is managed
// directly by BWC.
const CommandLine* command_line = CommandLine::ForCurrentProcess();
if (command_line->HasSwitch(switches::kEnableSimplifiedFullscreen)) {
// TODO(rohitrao): Add code to manage the menubar here.
}
[self windowWillExitFullScreen:nil];
[self moveViewsForFullscreenForSnowLeopard:NO
regularWindow:savedRegularWindow_
fullscreenWindow:fullscreenWindow_.get()];
// When exiting fullscreen mode, we need to call layoutSubviews manually.
[savedRegularWindow_ autorelease];
savedRegularWindow_ = nil;
fullscreenWindow_.reset();
[self layoutSubviews];
[self windowDidExitFullScreen:nil];
// Fade back in.
if (didFadeOut) {
CGDisplayFade(token, kFadeDurationSeconds / 2, kCGDisplayBlendSolidColor,
kCGDisplayBlendNormal, 0.0, 0.0, 0.0, /*synchronous=*/false);
CGReleaseDisplayFadeReservation(token);
}
}
// TODO(rohitrao): This function has shrunk into uselessness, and
// |-setFullscreen:| has grown rather large. Find a good way to break up
// |-setFullscreen:| into smaller pieces. http://crbug.com/36449
- (void)adjustUIForPresentationMode:(BOOL)fullscreen {
// Create the floating bar backing view if necessary.
if (fullscreen && !floatingBarBackingView_.get() &&
([self hasTabStrip] || [self hasToolbar] || [self hasLocationBar])) {
floatingBarBackingView_.reset(
[[FloatingBarBackingView alloc] initWithFrame:NSZeroRect]);
[floatingBarBackingView_ setAutoresizingMask:(NSViewWidthSizable |
NSViewMinYMargin)];
}
// Force the bookmark bar z-order to update.
[[bookmarkBarController_ view] removeFromSuperview];
[self updateSubviewZOrder:fullscreen];
[self updateAllowOverlappingViews:fullscreen];
}
- (void)showFullscreenExitBubbleIfNecessary {
// This method is called in response to
// |-updateFullscreenExitBubbleURL:bubbleType:|. If on Lion the system is
// transitioning, do not show the bubble because it will cause visual jank
// <http://crbug.com/130649>. This will be called again as part of
// |-windowDidEnterFullScreen:|, so arrange to do that work then instead.
if (enteringFullscreen_)
return;
[presentationModeController_ ensureOverlayHiddenWithAnimation:NO delay:NO];
if (fullscreenBubbleType_ == FEB_TYPE_NONE ||
fullscreenBubbleType_ == FEB_TYPE_BROWSER_FULLSCREEN_EXIT_INSTRUCTION) {
// Show no exit instruction bubble on Mac when in Browser Fullscreen.
[self destroyFullscreenExitBubbleIfNecessary];
} else {
[fullscreenExitBubbleController_ closeImmediately];
fullscreenExitBubbleController_.reset(
[[FullscreenExitBubbleController alloc]
initWithOwner:self
browser:browser_.get()
url:fullscreenUrl_
bubbleType:fullscreenBubbleType_]);
[fullscreenExitBubbleController_ showWindow];
}
}
- (void)destroyFullscreenExitBubbleIfNecessary {
[fullscreenExitBubbleController_ closeImmediately];
fullscreenExitBubbleController_.reset();
}
- (void)contentViewDidResize:(NSNotification*)notification {
[self layoutSubviews];
}
- (void)registerForContentViewResizeNotifications {
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(contentViewDidResize:)
name:NSViewFrameDidChangeNotification
object:[[self window] contentView]];
}
- (void)deregisterForContentViewResizeNotifications {
[[NSNotificationCenter defaultCenter]
removeObserver:self
name:NSViewFrameDidChangeNotification
object:[[self window] contentView]];
}
- (NSSize)window:(NSWindow*)window
willUseFullScreenContentSize:(NSSize)proposedSize {
return proposedSize;
}
- (NSApplicationPresentationOptions)window:(NSWindow*)window
willUseFullScreenPresentationOptions:(NSApplicationPresentationOptions)opt {
return (opt |
NSApplicationPresentationAutoHideDock |
NSApplicationPresentationAutoHideMenuBar);
}
- (void)windowWillEnterFullScreen:(NSNotification*)notification {
[self registerForContentViewResizeNotifications];
NSWindow* window = [self window];
savedRegularWindowFrame_ = [window frame];
BOOL mode = enteringPresentationMode_ ||
browser_->fullscreen_controller()->IsFullscreenForTabOrPending();
enteringFullscreen_ = YES;
[self setPresentationModeInternal:mode forceDropdown:NO];
}
- (void)windowDidEnterFullScreen:(NSNotification*)notification {
if (chrome::mac::SupportsSystemFullscreen())
[self deregisterForContentViewResizeNotifications];
enteringFullscreen_ = NO;
enteringPresentationMode_ = NO;
const CommandLine* command_line = CommandLine::ForCurrentProcess();
if (command_line->HasSwitch(switches::kEnableSimplifiedFullscreen) &&
fullscreenUrl_.is_empty()) {
fullscreenModeController_.reset([[FullscreenModeController alloc]
initWithBrowserWindowController:self]);
}
[self showFullscreenExitBubbleIfNecessary];
browser_->WindowFullscreenStateChanged();
}
- (void)windowWillExitFullScreen:(NSNotification*)notification {
if (chrome::mac::SupportsSystemFullscreen())
[self registerForContentViewResizeNotifications];
fullscreenModeController_.reset();
[self destroyFullscreenExitBubbleIfNecessary];
[self setPresentationModeInternal:NO forceDropdown:NO];
}
- (void)windowDidExitFullScreen:(NSNotification*)notification {
if (chrome::mac::SupportsSystemFullscreen())
[self deregisterForContentViewResizeNotifications];
browser_->WindowFullscreenStateChanged();
}
- (void)windowDidFailToEnterFullScreen:(NSWindow*)window {
[self deregisterForContentViewResizeNotifications];
enteringFullscreen_ = NO;
[self setPresentationModeInternal:NO forceDropdown:NO];
// Force a relayout to try and get the window back into a reasonable state.
[self layoutSubviews];
}
- (void)windowDidFailToExitFullScreen:(NSWindow*)window {
[self deregisterForContentViewResizeNotifications];
// Force a relayout to try and get the window back into a reasonable state.
[self layoutSubviews];
}
- (void)enableBarVisibilityUpdates {
// Early escape if there's nothing to do.
if (barVisibilityUpdatesEnabled_)
return;
barVisibilityUpdatesEnabled_ = YES;
if ([barVisibilityLocks_ count])
[presentationModeController_ ensureOverlayShownWithAnimation:NO delay:NO];
else
[presentationModeController_ ensureOverlayHiddenWithAnimation:NO delay:NO];
}
- (void)disableBarVisibilityUpdates {
// Early escape if there's nothing to do.
if (!barVisibilityUpdatesEnabled_)
return;
barVisibilityUpdatesEnabled_ = NO;
[presentationModeController_ cancelAnimationAndTimers];
}
- (CGFloat)toolbarDividerOpacity {
return [bookmarkBarController_ toolbarDividerOpacity];
}
- (void)updateSubviewZOrder:(BOOL)inPresentationMode {
NSView* contentView = [[self window] contentView];
NSView* toolbarView = [toolbarController_ view];
if (inPresentationMode) {
// Toolbar is above tab contents so that it can slide down from top of
// screen.
[contentView cr_ensureSubview:toolbarView
isPositioned:NSWindowAbove
relativeTo:[self tabContentArea]];
} else {
// Toolbar is below tab contents so that the info bar arrow can appear above
// it.
[contentView cr_ensureSubview:toolbarView
isPositioned:NSWindowBelow
relativeTo:[self tabContentArea]];
}
// The bookmark bar is always below the toolbar.
[contentView cr_ensureSubview:[bookmarkBarController_ view]
isPositioned:NSWindowBelow
relativeTo:toolbarView];
if (inPresentationMode) {
// In presentation mode the info bar is below all other views.
[contentView cr_ensureSubview:[infoBarContainerController_ view]
isPositioned:NSWindowBelow
relativeTo:[self tabContentArea]];
} else {
// Above the toolbar but still below tab contents. Similar to the bookmark
// bar, this allows Instant results to be above the info bar.
[contentView cr_ensureSubview:[infoBarContainerController_ view]
isPositioned:NSWindowAbove
relativeTo:toolbarView];
}
// The find bar is above everything.
if (findBarCocoaController_) {
NSView* relativeView = nil;
if (inPresentationMode)
relativeView = toolbarView;
else
relativeView = [self tabContentArea];
[contentView cr_ensureSubview:[findBarCocoaController_ view]
isPositioned:NSWindowAbove
relativeTo:relativeView];
}
if (floatingBarBackingView_) {
if ([floatingBarBackingView_ cr_isBelowView:[self tabContentArea]])
[floatingBarBackingView_ removeFromSuperview];
if ([self placeBookmarkBarBelowInfoBar]) {
[contentView cr_ensureSubview:floatingBarBackingView_
isPositioned:NSWindowAbove
relativeTo:[bookmarkBarController_ view]];
} else {
[contentView cr_ensureSubview:floatingBarBackingView_
isPositioned:NSWindowBelow
relativeTo:[bookmarkBarController_ view]];
}
}
}
- (BOOL)shouldAllowOverlappingViews:(BOOL)inPresentationMode {
if (inPresentationMode)
return YES;
if (findBarCocoaController_ &&
![[findBarCocoaController_ findBarView] isHidden]) {
return YES;
}
if (overlappedViewCount_)
return YES;
return NO;
}
- (void)updateAllowOverlappingViews:(BOOL)inPresentationMode {
WebContents* contents = browser_->tab_strip_model()->GetActiveWebContents();
if (!contents)
return;
BOOL allowOverlappingViews =
[self shouldAllowOverlappingViews:inPresentationMode];
// The rendering path with overlapping views disabled causes bugs when
// transitioning between composited and non-composited mode.
// http://crbug.com/279472
allowOverlappingViews = YES;
if (allowOverlappingViews &&
[self coreAnimationStatus] ==
browser_window_controller::kCoreAnimationEnabledLazy) {
[[[self window] contentView] setWantsLayer:YES];
[[self tabStripView] setWantsLayer:YES];
}
contents->GetView()->SetAllowOverlappingViews(allowOverlappingViews);
DevToolsWindow* devToolsWindow =
DevToolsWindow::GetDockedInstanceForInspectedTab(contents);
if (devToolsWindow) {
devToolsWindow->web_contents()->GetView()->
SetAllowOverlappingViews(allowOverlappingViews);
}
}
- (void)updateInfoBarTipVisibility {
// If there's no toolbar then hide the infobar tip.
[infoBarContainerController_
setShouldSuppressTopInfoBarTip:![self hasToolbar]];
}
- (browser_window_controller::CoreAnimationStatus)coreAnimationStatus {
// TODO(sail) Remove this.
if (!CommandLine::ForCurrentProcess()->HasSwitch(
switches::kUseCoreAnimation)) {
return browser_window_controller::kCoreAnimationDisabled;
}
if (CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
switches::kUseCoreAnimation) == "lazy") {
return browser_window_controller::kCoreAnimationEnabledLazy;
}
if (CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
switches::kUseCoreAnimation) == "disabled") {
return browser_window_controller::kCoreAnimationDisabled;
}
return browser_window_controller::kCoreAnimationEnabledAlways;
}
@end // @implementation BrowserWindowController(Private)
|