#ifndef ASH_STYLE_ROUNDED_LABEL_H_
#define ASH_STYLE_ROUNDED_LABEL_H_
#include "ui/views/controls/label.h"
namespace ash {
class RoundedLabel : public 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 override;
int GetHeightForWidth(int width) const override;
void OnThemeChanged() override;
void OnPaintBorder(gfx::Canvas* canvas) override;
const int rounding_dp_;
const int preferred_height_;
};
}
#endif