#ifndef ASH_HUD_DISPLAY_REFERENCE_LINES_H_
#define ASH_HUD_DISPLAY_REFERENCE_LINES_H_
#include <string>
#include "base/memory/raw_ptr.h"
#include "ui/views/controls/label.h"
#include "ui/views/view.h"
namespace gfx {
class Canvas;
}
namespace views {
class View;
class Label;
}
namespace ash {
namespace hud_display {
class ReferenceLines : public views::View {
METADATA_HEADER(ReferenceLines, views::View)
public:
ReferenceLines(float left,
float top,
float right,
float bottom,
const std::u16string& x_unit,
const std::u16string& y_unit,
int horizontal_points_number,
int horizontal_ticks_interval,
float vertical_ticks_interval);
ReferenceLines(const ReferenceLines&) = delete;
ReferenceLines& operator=(const ReferenceLines&) = delete;
~ReferenceLines() override;
void Layout(PassKey) override;
void OnPaint(gfx::Canvas* canvas) override;
void SetTopLabel(float top);
void SetBottomLabel(float bottom);
void SetLeftLabel(float left);
void SetVerticalTicksInterval(float interval);
float top_label() const { return top_; }
private:
const SkColor color_;
float left_ = 0;
float top_ = 0;
[[maybe_unused]] float right_ = 0;
float bottom_ = 0;
std::u16string x_unit_;
std::u16string y_unit_;
int horizontal_points_number_ = 0;
int horizontal_ticks_interval_ = 0;
float vertical_ticks_interval_ = 0;
raw_ptr<views::Label> right_top_label_ = nullptr;
raw_ptr<views::Label> right_middle_label_ = nullptr;
raw_ptr<views::Label> right_bottom_label_ = nullptr;
raw_ptr<views::Label> left_bottom_label_ = nullptr;
};
}
}
#endif