2017-06-07 10:09:24 +02:00
|
|
|
#pragma once
|
2017-01-03 21:19:33 +01:00
|
|
|
|
2021-05-08 15:57:00 +02:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <QColor>
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
class ScrollbarHighlight
|
2017-01-03 21:19:33 +01:00
|
|
|
{
|
|
|
|
public:
|
2018-01-06 03:48:56 +01:00
|
|
|
enum Style : char { None, Default, Line };
|
2017-01-03 21:19:33 +01:00
|
|
|
|
2020-01-25 11:03:10 +01:00
|
|
|
/**
|
|
|
|
* @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.
|
|
|
|
*/
|
2018-01-06 03:48:56 +01:00
|
|
|
ScrollbarHighlight();
|
2017-01-03 21:19:33 +01:00
|
|
|
|
2020-01-25 11:03:10 +01:00
|
|
|
ScrollbarHighlight(const std::shared_ptr<QColor> color,
|
2020-04-15 23:15:45 +02:00
|
|
|
Style style = Default, bool isRedeemedHighlight = false);
|
2020-01-25 11:03:10 +01:00
|
|
|
|
|
|
|
QColor getColor() const;
|
2018-01-06 03:48:56 +01:00
|
|
|
Style getStyle() const;
|
2020-04-15 23:15:45 +02:00
|
|
|
bool isRedeemedHighlight() const;
|
2018-01-06 03:48:56 +01:00
|
|
|
bool isNull() const;
|
2017-01-03 21:19:33 +01:00
|
|
|
|
|
|
|
private:
|
2020-01-25 11:03:10 +01:00
|
|
|
std::shared_ptr<QColor> color_;
|
2018-07-06 19:23:47 +02:00
|
|
|
Style style_;
|
2020-04-15 23:15:45 +02:00
|
|
|
bool isRedeemedHighlight_;
|
2017-01-03 21:19:33 +01:00
|
|
|
};
|
2017-05-27 16:16:39 +02:00
|
|
|
|
|
|
|
} // namespace chatterino
|