This commit is contained in:
fourtf
2018-06-26 13:24:55 +02:00
parent ec04f10895
commit c9722b9780
301 changed files with 0 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#pragma once
#include <QString>
namespace chatterino {
namespace widgets {
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 widgets
} // namespace chatterino