mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
44 lines
897 B
C++
44 lines
897 B
C++
#include "widgets/helper/ScrollbarHighlight.hpp"
|
|
|
|
#include "Application.hpp"
|
|
#include "singletons/Theme.hpp"
|
|
#include "widgets/Scrollbar.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
ScrollbarHighlight::ScrollbarHighlight()
|
|
: color_(std::make_shared<QColor>())
|
|
, style_(Style::None)
|
|
{
|
|
}
|
|
|
|
ScrollbarHighlight::ScrollbarHighlight(const std::shared_ptr<QColor> color,
|
|
Style style, bool isRedeemedHighlight)
|
|
: color_(color)
|
|
, style_(style)
|
|
, isRedeemedHighlight_(isRedeemedHighlight)
|
|
{
|
|
}
|
|
|
|
QColor ScrollbarHighlight::getColor() const
|
|
{
|
|
return *this->color_;
|
|
}
|
|
|
|
ScrollbarHighlight::Style ScrollbarHighlight::getStyle() const
|
|
{
|
|
return this->style_;
|
|
}
|
|
|
|
bool ScrollbarHighlight::isRedeemedHighlight() const
|
|
{
|
|
return this->isRedeemedHighlight_;
|
|
}
|
|
|
|
bool ScrollbarHighlight::isNull() const
|
|
{
|
|
return this->style_ == None;
|
|
}
|
|
|
|
} // namespace chatterino
|