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

ash / public / cpp / annotator / annotator_tool.h [blame]

// Copyright 2024 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_PUBLIC_CPP_ANNOTATOR_ANNOTATOR_TOOL_H_
#define ASH_PUBLIC_CPP_ANNOTATOR_ANNOTATOR_TOOL_H_

#include "ash/public/cpp/ash_public_export.h"
#include "third_party/skia/include/core/SkColor.h"

namespace ash {

// The annotator tool type.
enum class ASH_PUBLIC_EXPORT AnnotatorToolType {
  kMarker = 0,
  kPen,
  kHighlighter,
  kEraser,
  kToolNone,
  // TODO(b/196245932) Add support for laser pointer after confirming we are
  // implementing it inside the annotator.
};

// The tool that the annotator will use.
struct ASH_PUBLIC_EXPORT AnnotatorTool {
  // Returns the hex value in RGBA format.
  // For example, SK_ColorGREEN -> "00FF00FF".
  std::string GetColorHexString() const;

  // Returns the tool chosen as a string.
  std::string GetToolString() const;

  bool operator==(const AnnotatorTool& rhs) const;

  // The color of of the annotator.
  SkColor color = SK_ColorBLACK;

  // The size of the annotator stroke tip.
  int size = 4;

  // The type of the annotator tool.
  AnnotatorToolType type = AnnotatorToolType::kMarker;
};

}  // namespace ash

#endif  // ASH_PUBLIC_CPP_ANNOTATOR_ANNOTATOR_TOOL_H_