blob: 121bfd044a74b3446b5d8d97137df1a090ca2148 [file] [log] [blame]
// 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.
#ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_
#define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_
#include "base/gtest_prod_util.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
#include "chrome/browser/ui/views/tab_icon_view_model.h"
class TabIconView;
namespace ash {
class FrameBorderHitTestController;
class FrameCaptionButtonContainerView;
class HeaderPainter;
}
namespace views {
class ImageButton;
class ToggleImageButton;
}
class BrowserNonClientFrameViewAsh
: public BrowserNonClientFrameView,
public chrome::TabIconViewModel {
public:
static const char kViewClassName[];
BrowserNonClientFrameViewAsh(BrowserFrame* frame, BrowserView* browser_view);
virtual ~BrowserNonClientFrameViewAsh();
void Init();
// BrowserNonClientFrameView overrides:
virtual gfx::Rect GetBoundsForTabStrip(views::View* tabstrip) const OVERRIDE;
virtual TabStripInsets GetTabStripInsets(bool force_restored) const OVERRIDE;
virtual int GetThemeBackgroundXInset() const OVERRIDE;
virtual void UpdateThrobber(bool running) OVERRIDE;
// views::NonClientFrameView overrides:
virtual gfx::Rect GetBoundsForClientView() const OVERRIDE;
virtual gfx::Rect GetWindowBoundsForClientBounds(
const gfx::Rect& client_bounds) const OVERRIDE;
virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
virtual void GetWindowMask(const gfx::Size& size,
gfx::Path* window_mask) OVERRIDE;
virtual void ResetWindowControls() OVERRIDE;
virtual void UpdateWindowIcon() OVERRIDE;
virtual void UpdateWindowTitle() OVERRIDE;
// views::View overrides:
virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
virtual void Layout() OVERRIDE;
virtual const char* GetClassName() const OVERRIDE;
virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE;
virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
virtual gfx::Size GetMinimumSize() OVERRIDE;
virtual void OnThemeChanged() OVERRIDE;
// Overridden from chrome::TabIconViewModel:
virtual bool ShouldTabIconViewAnimate() const OVERRIDE;
virtual gfx::ImageSkia GetFaviconForTabIconView() OVERRIDE;
private:
FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest, WindowHeader);
FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest,
NonImmersiveFullscreen);
FRIEND_TEST_ALL_PREFIXES(BrowserNonClientFrameViewAshTest,
ImmersiveFullscreen);
// Distance between top of window and client area.
int NonClientTopBorderHeight() const;
// Returns true if we should use a short header, such as for popup windows.
bool UseShortHeader() const;
// Returns true if we should use a super short header with light bars instead
// of regular tabs. This header is used in immersive fullscreen when the
// top-of-window views are not revealed.
bool UseImmersiveLightbarHeaderStyle() const;
// Layout the incognito icon.
void LayoutAvatar();
// Returns true if there is anything to paint. Some fullscreen windows do not
// need their frames painted.
bool ShouldPaint() const;
// Paints the header background when the frame is in immersive fullscreen and
// tab light bar is visible.
void PaintImmersiveLightbarStyleHeader(gfx::Canvas* canvas);
void PaintToolbarBackground(gfx::Canvas* canvas);
// Windows without a toolbar need to draw their own line under the header,
// above the content area.
void PaintContentEdge(gfx::Canvas* canvas);
// Returns the id of the header frame image based on the browser type,
// activation state and incognito mode.
int GetThemeFrameImageId() const;
// Returns the id of the header frame overlay image based on the activation
// state and incognito mode.
// Returns 0 if no overlay image should be used.
int GetThemeFrameOverlayImageId() const;
// View which contains the window controls.
ash::FrameCaptionButtonContainerView* caption_button_container_;
// For popups, the window icon.
TabIconView* window_icon_;
// Helper class for painting the header.
scoped_ptr<ash::HeaderPainter> header_painter_;
// Updates the hittest bounds overrides based on the window show type.
scoped_ptr<ash::FrameBorderHitTestController>
frame_border_hit_test_controller_;
DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAsh);
};
#endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_