Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Side by Side Diff: ash/common/system/chromeos/palette/common_palette_tool.h

Issue 2147783002: Add common palette tray implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@stylus-tool-structure
Patch Set: Nits Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/ash.gyp ('k') | ash/common/system/chromeos/palette/common_palette_tool.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ASH_COMMON_SYSTEM_CHROMEOS_PALETTE_COMMON_PALETTE_TOOL_H_
6 #define ASH_COMMON_SYSTEM_CHROMEOS_PALETTE_COMMON_PALETTE_TOOL_H_
7
8 #include "ash/common/system/chromeos/palette/palette_tool.h"
9 #include "ash/common/system/tray/hover_highlight_view.h"
10 #include "ash/common/system/tray/view_click_listener.h"
11 #include "base/strings/string16.h"
12 #include "ui/gfx/vector_icons_public.h"
13
14 namespace ash {
15
16 // A PaletteTool implementation with a standard view support.
17 class CommonPaletteTool : public PaletteTool, public ash::ViewClickListener {
18 protected:
19 explicit CommonPaletteTool(Delegate* delegate);
20 ~CommonPaletteTool() override;
21
22 // PaletteTool:
23 views::View* CreateView() override;
24 void OnViewDestroyed() override;
25 void OnEnable() override;
26 void OnDisable() override;
27
28 // ViewClickListener:
29 void OnViewClicked(views::View* sender) override;
30
31 // Returns the icon used in the palette tray on the left-most edge of the
32 // tool.
33 virtual gfx::VectorIconId GetPaletteIconId() = 0;
34
35 // Creates a default view implementation to be returned by CreateView.
36 views::View* CreateDefaultView(const base::string16& name);
37
38 private:
39 HoverHighlightView* highlight_view_ = nullptr;
40
41 DISALLOW_COPY_AND_ASSIGN(CommonPaletteTool);
42 };
43
44 } // namespace ash
45
46 #endif // ASH_COMMON_SYSTEM_CHROMEOS_PALETTE_COMMON_PALETTE_TOOL_H_
OLDNEW
« no previous file with comments | « ash/ash.gyp ('k') | ash/common/system/chromeos/palette/common_palette_tool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698