#ifndef ASH_STYLE_ROUNDED_LABEL_H_
#define ASH_STYLE_ROUNDED_LABEL_H_
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/controls/label.h"
namespace ash {
class RoundedLabel : public views::Label {
METADATA_HEADER(RoundedLabel, views::Label)
public:
RoundedLabel(int horizontal_padding,
int vertical_padding,
int rounding_dp,
int preferred_height,
const std::u16string& text);
RoundedLabel(const RoundedLabel&) = delete;
RoundedLabel& operator=(const RoundedLabel&) = delete;
~RoundedLabel() override;
private:
gfx::Size CalculatePreferredSize(
const views::SizeBounds& available_size) const override;
void OnPaintBorder(gfx::Canvas* canvas) override;
const int rounding_dp_;
const int preferred_height_;
};
}
#endif