blob: 05cac09736d99503f15e7637367a5f0fb734d7a5 [file] [log] [blame]
// Copyright 2015 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.
#ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_MAC_H_
#define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_MAC_H_
#import <CoreGraphics/CGBase.h>
#include "base/mac/scoped_nsobject.h"
#include "base/macros.h"
#include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
#include "components/prefs/pref_member.h"
namespace views {
class Label;
}
@class FullscreenToolbarControllerViews;
class BrowserNonClientFrameViewMac : public BrowserNonClientFrameView {
public:
// Mac implementation of BrowserNonClientFrameView.
BrowserNonClientFrameViewMac(BrowserFrame* frame, BrowserView* browser_view);
~BrowserNonClientFrameViewMac() override;
// BrowserNonClientFrameView:
void OnFullscreenStateChanged() override;
bool CaptionButtonsOnLeadingEdge() const override;
gfx::Rect GetBoundsForTabStripRegion(
const views::View* tabstrip) const override;
int GetTopInset(bool restored) const override;
int GetThemeBackgroundXInset() const override;
void UpdateFullscreenTopUI(bool needs_check_tab_fullscreen) override;
bool ShouldHideTopUIForFullscreen() const override;
void UpdateThrobber(bool running) override;
// views::NonClientFrameView:
gfx::Rect GetBoundsForClientView() const override;
gfx::Rect GetWindowBoundsForClientBounds(
const gfx::Rect& client_bounds) const override;
int NonClientHitTest(const gfx::Point& point) override;
void GetWindowMask(const gfx::Size& size, SkPath* window_mask) override;
void UpdateWindowIcon() override;
void UpdateWindowTitle() override;
void SizeConstraintsChanged() override;
void UpdateMinimumSize() override;
// views::View:
gfx::Size GetMinimumSize() const override;
protected:
// views::View:
void OnPaint(gfx::Canvas* canvas) override;
void Layout() override;
private:
FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewMacTest,
GetCenteredTitleBounds);
static gfx::Rect GetCenteredTitleBounds(int frame_width,
int frame_height,
int left_inset_x,
int right_inset_x,
int title_width);
void PaintThemedFrame(gfx::Canvas* canvas);
CGFloat FullscreenBackingBarHeight() const;
// Calculate the y offset the top UI needs to shift down due to showing the
// slide down menu bar at the very top in full screen.
int TopUIFullscreenYOffset() const;
// Used to keep track of the update of kShowFullscreenToolbar preference.
BooleanPrefMember show_fullscreen_toolbar_;
views::Label* window_title_ = nullptr;
base::scoped_nsobject<FullscreenToolbarControllerViews>
fullscreen_toolbar_controller_;
DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewMac);
};
#endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_MAC_H_