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
ash / system / palette / common_palette_tool.h [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SYSTEM_PALETTE_COMMON_PALETTE_TOOL_H_
#define ASH_SYSTEM_PALETTE_COMMON_PALETTE_TOOL_H_
#include <string>
#include "ash/system/palette/palette_tool.h"
#include "ash/system/tray/view_click_listener.h"
#include "base/memory/raw_ptr.h"
namespace gfx {
struct VectorIcon;
} // namespace gfx
namespace ash {
class HoverHighlightView;
// A PaletteTool implementation with a standard view support.
class CommonPaletteTool : public PaletteTool, public ViewClickListener {
protected:
explicit CommonPaletteTool(Delegate* delegate);
CommonPaletteTool(const CommonPaletteTool&) = delete;
CommonPaletteTool& operator=(const CommonPaletteTool&) = delete;
~CommonPaletteTool() override;
// PaletteTool:
void OnViewDestroyed() override;
void OnEnable() override;
// ViewClickListener:
void OnViewClicked(views::View* sender) override;
// Returns the icon used in the palette tray on the left-most edge of the
// tool. The icon will be the same as that used in the status area i.e.
// PaletteTool::GetActiveTrayIcon().
virtual const gfx::VectorIcon& GetPaletteIcon() const = 0;
// Creates a default view implementation to be returned by CreateView.
views::View* CreateDefaultView(const std::u16string& name);
raw_ptr<HoverHighlightView, DanglingUntriaged> highlight_view_ = nullptr;
};
} // namespace ash
#endif // ASH_SYSTEM_PALETTE_COMMON_PALETTE_TOOL_H_