blob: f500cbd78c5a44bdefa6b59833e54403f9edb862 [file] [log] [blame]
// Copyright 2019 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_TABS_TAB_GROUP_HIGHLIGHT_H_
#define CHROME_BROWSER_UI_VIEWS_TABS_TAB_GROUP_HIGHLIGHT_H_
#include "components/tab_groups/tab_group_id.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/view.h"
class TabGroupViews;
// View for tab group highlights in the tab strip, which indicate that a group
// is in a selected state. There is one highlight for each group, which is
// positioned across all tabs in the group and painted by the tab strip.
class TabGroupHighlight : public views::View {
public:
METADATA_HEADER(TabGroupHighlight);
TabGroupHighlight(TabGroupViews* tab_group_views,
const tab_groups::TabGroupId& group);
TabGroupHighlight(const TabGroupHighlight&) = delete;
TabGroupHighlight& operator=(const TabGroupHighlight&) = delete;
// views::View:
void OnPaint(gfx::Canvas* canvas) override;
bool GetCanProcessEventsWithinSubtree() const override;
private:
// Returns the highlight shape, which immitates the tab highlight shape.
SkPath GetPath() const;
TabGroupViews* const tab_group_views_;
const tab_groups::TabGroupId group_;
};
#endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_GROUP_HIGHLIGHT_H_