mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
24 lines
417 B
C++
24 lines
417 B
C++
#pragma once
|
|
|
|
namespace chatterino {
|
|
|
|
class ScrollbarHighlight
|
|
{
|
|
public:
|
|
enum Style : char { None, Default, Line };
|
|
enum Color : char { Highlight, Subscription };
|
|
|
|
ScrollbarHighlight();
|
|
ScrollbarHighlight(Color color, Style style = Default);
|
|
|
|
Color getColor() const;
|
|
Style getStyle() const;
|
|
bool isNull() const;
|
|
|
|
private:
|
|
Color color_;
|
|
Style style_;
|
|
};
|
|
|
|
} // namespace chatterino
|