mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
34 lines
809 B
C++
34 lines
809 B
C++
#pragma once
|
|
|
|
namespace chatterino {
|
|
|
|
class ScrollbarHighlight
|
|
{
|
|
public:
|
|
enum Style : char { None, Default, Line };
|
|
|
|
/**
|
|
* @brief Constructs an invalid ScrollbarHighlight.
|
|
*
|
|
* A highlight constructed this way will not show on the scrollbar.
|
|
* For these, use the static ScrollbarHighlight::newSubscription and
|
|
* ScrollbarHighlight::newHighlight methods.
|
|
*/
|
|
ScrollbarHighlight();
|
|
|
|
ScrollbarHighlight(const std::shared_ptr<QColor> color,
|
|
Style style = Default, bool isRedeemedHighlight = false);
|
|
|
|
QColor getColor() const;
|
|
Style getStyle() const;
|
|
bool isRedeemedHighlight() const;
|
|
bool isNull() const;
|
|
|
|
private:
|
|
std::shared_ptr<QColor> color_;
|
|
Style style_;
|
|
bool isRedeemedHighlight_;
|
|
};
|
|
|
|
} // namespace chatterino
|