5957551d06
* Support for user-defined sounds and colors * Make color & sound columns selectable * Add custom row for subscription highlights * Add subscriptions to custom highlights and centrally manage highlight colors * Dynamically update message highlight colors
32 lines
706 B
C++
32 lines
706 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);
|
|
|
|
QColor getColor() const;
|
|
Style getStyle() const;
|
|
bool isNull() const;
|
|
|
|
private:
|
|
std::shared_ptr<QColor> color_;
|
|
Style style_;
|
|
};
|
|
|
|
} // namespace chatterino
|