2018-06-26 14:09:39 +02:00
|
|
|
#include "widgets/Scrollbar.hpp"
|
2018-04-27 22:11:19 +02:00
|
|
|
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "Application.hpp"
|
2018-06-28 20:03:04 +02:00
|
|
|
#include "singletons/Theme.hpp"
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "widgets/helper/ChannelView.hpp"
|
2017-01-03 21:19:33 +01:00
|
|
|
|
2017-06-06 17:18:23 +02:00
|
|
|
#include <QDebug>
|
2017-01-26 04:26:40 +01:00
|
|
|
#include <QMouseEvent>
|
2017-01-18 04:52:47 +01:00
|
|
|
#include <QPainter>
|
2017-12-26 19:14:36 +01:00
|
|
|
#include <QTimer>
|
2018-04-27 22:11:19 +02:00
|
|
|
|
2017-12-27 23:18:42 +01:00
|
|
|
#include <cmath>
|
2017-01-18 04:52:47 +01:00
|
|
|
|
2017-01-18 04:33:30 +01:00
|
|
|
#define MIN_THUMB_HEIGHT 10
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
2017-01-18 21:30:23 +01:00
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
Scrollbar::Scrollbar(ChannelView *parent)
|
2017-06-26 16:41:20 +02:00
|
|
|
: BaseWidget(parent)
|
2018-06-19 20:34:50 +02:00
|
|
|
, currentValueAnimation_(this, "currentValue_")
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-05-26 17:11:09 +02:00
|
|
|
resize(int(16 * this->getScale()), 100);
|
2018-06-13 13:27:10 +02:00
|
|
|
this->currentValueAnimation_.setDuration(150);
|
|
|
|
this->currentValueAnimation_.setEasingCurve(QEasingCurve(QEasingCurve::OutCubic));
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
setMouseTracking(true);
|
2017-01-03 21:19:33 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::addHighlight(ScrollbarHighlight highlight)
|
2017-01-03 21:19:33 +01:00
|
|
|
{
|
2018-01-06 03:48:56 +01:00
|
|
|
ScrollbarHighlight deleted;
|
2018-06-13 13:27:10 +02:00
|
|
|
this->highlights_.pushBack(highlight, deleted);
|
2017-01-03 21:19:33 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::addHighlightsAtStart(const std::vector<ScrollbarHighlight> &_highlights)
|
2017-01-03 21:19:33 +01:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
this->highlights_.pushFront(_highlights);
|
2017-01-03 21:19:33 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::replaceHighlight(size_t index, ScrollbarHighlight replacement)
|
2017-01-03 21:19:33 +01:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
this->highlights_.replaceItem(index, replacement);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Scrollbar::pauseHighlights()
|
|
|
|
{
|
|
|
|
this->highlightsPaused_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Scrollbar::unpauseHighlights()
|
|
|
|
{
|
|
|
|
this->highlightsPaused_ = false;
|
|
|
|
}
|
|
|
|
|
2018-06-28 19:38:57 +02:00
|
|
|
LimitedQueueSnapshot<ScrollbarHighlight> Scrollbar::getHighlightSnapshot()
|
2018-06-13 13:27:10 +02:00
|
|
|
{
|
|
|
|
if (!this->highlightsPaused_) {
|
|
|
|
this->highlightSnapshot_ = this->highlights_.getSnapshot();
|
|
|
|
}
|
|
|
|
|
|
|
|
return this->highlightSnapshot_;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::scrollToBottom(bool animate)
|
2017-06-06 17:18:23 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
this->setDesiredValue(this->maximum_ - this->getLargeChange(), animate);
|
2017-06-06 17:18:23 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
bool Scrollbar::isAtBottom() const
|
2017-06-06 17:18:23 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
return this->atBottom_;
|
2017-06-06 17:18:23 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::setMaximum(qreal value)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
this->maximum_ = value;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
updateScroll();
|
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::setMinimum(qreal value)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
this->minimum_ = value;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
updateScroll();
|
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::setLargeChange(qreal value)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
this->largeChange_ = value;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
updateScroll();
|
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::setSmallChange(qreal value)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
this->smallChange_ = value;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
updateScroll();
|
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::setDesiredValue(qreal value, bool animated)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
animated &= app->settings->enableSmoothScrolling.getValue();
|
2018-06-13 13:27:10 +02:00
|
|
|
value = std::max(this->minimum_, std::min(this->maximum_ - this->largeChange_, value));
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
if (std::abs(this->desiredValue_ + this->smoothScrollingOffset_ - value) > 0.0001) {
|
2017-04-12 17:46:44 +02:00
|
|
|
if (animated) {
|
2018-06-13 13:27:10 +02:00
|
|
|
this->currentValueAnimation_.stop();
|
|
|
|
this->currentValueAnimation_.setStartValue(this->currentValue_ +
|
|
|
|
this->smoothScrollingOffset_);
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-12-18 22:13:46 +01:00
|
|
|
// if (((this->getMaximum() - this->getLargeChange()) - value) <= 0.01) {
|
|
|
|
// value += 1;
|
|
|
|
// }
|
2018-06-19 20:34:50 +02:00
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
this->currentValueAnimation_.setEndValue(value);
|
|
|
|
this->smoothScrollingOffset_ = 0;
|
|
|
|
this->atBottom_ = ((this->getMaximum() - this->getLargeChange()) - value) <= 0.0001;
|
|
|
|
this->currentValueAnimation_.start();
|
2017-04-12 17:46:44 +02:00
|
|
|
} else {
|
2018-06-13 13:27:10 +02:00
|
|
|
if (this->currentValueAnimation_.state() != QPropertyAnimation::Running) {
|
|
|
|
this->smoothScrollingOffset_ = 0;
|
|
|
|
this->desiredValue_ = value;
|
|
|
|
this->currentValueAnimation_.stop();
|
|
|
|
this->atBottom_ = ((this->getMaximum() - this->getLargeChange()) - value) <= 0.0001;
|
2017-04-12 17:46:44 +02:00
|
|
|
setCurrentValue(value);
|
|
|
|
}
|
|
|
|
}
|
2017-01-03 21:19:33 +01:00
|
|
|
}
|
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
this->smoothScrollingOffset_ = 0;
|
|
|
|
this->desiredValue_ = value;
|
|
|
|
|
|
|
|
this->desiredValueChanged_.invoke();
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
qreal Scrollbar::getMaximum() const
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
return this->maximum_;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
qreal Scrollbar::getMinimum() const
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
return this->minimum_;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
qreal Scrollbar::getLargeChange() const
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
return this->largeChange_;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
qreal Scrollbar::getSmallChange() const
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
return this->smallChange_;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
qreal Scrollbar::getDesiredValue() const
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
return this->desiredValue_ + this->smoothScrollingOffset_;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
qreal Scrollbar::getCurrentValue() const
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
return this->currentValue_;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::offset(qreal value)
|
2017-12-18 18:55:09 +01:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
if (this->currentValueAnimation_.state() == QPropertyAnimation::Running) {
|
|
|
|
this->smoothScrollingOffset_ += value;
|
2017-12-18 18:55:09 +01:00
|
|
|
} else {
|
|
|
|
this->setDesiredValue(this->getDesiredValue() + value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-03 02:55:32 +02:00
|
|
|
pajlada::Signals::NoArgSignal &Scrollbar::getCurrentValueChanged()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
return this->currentValueChanged_;
|
|
|
|
}
|
|
|
|
|
|
|
|
pajlada::Signals::NoArgSignal &Scrollbar::getDesiredValueChanged()
|
|
|
|
{
|
|
|
|
return this->desiredValueChanged_;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::setCurrentValue(qreal value)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
value = std::max(this->minimum_, std::min(this->maximum_ - this->largeChange_,
|
|
|
|
value + this->smoothScrollingOffset_));
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-06-19 20:14:13 +02:00
|
|
|
if (std::abs(this->currentValue_ - value) > 0.0001) {
|
2018-06-13 13:27:10 +02:00
|
|
|
this->currentValue_ = value;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-12-27 23:18:42 +01:00
|
|
|
this->updateScroll();
|
2018-06-13 13:27:10 +02:00
|
|
|
this->currentValueChanged_.invoke();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-12-27 23:18:42 +01:00
|
|
|
this->update();
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
2017-01-03 21:19:33 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::printCurrentState(const QString &prefix) const
|
2017-06-06 17:18:23 +02:00
|
|
|
{
|
|
|
|
qDebug() << prefix //
|
|
|
|
<< "Current value: " << this->getCurrentValue() //
|
|
|
|
<< ". Maximum: " << this->getMaximum() //
|
|
|
|
<< ". Minimum: " << this->getMinimum() //
|
|
|
|
<< ". Large change: " << this->getLargeChange(); //
|
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::paintEvent(QPaintEvent *)
|
2017-01-03 21:19:33 +01:00
|
|
|
{
|
2018-05-26 17:11:09 +02:00
|
|
|
auto *app = getApp();
|
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
bool mouseOver = this->mouseOverIndex_ != -1;
|
2018-05-26 17:11:09 +02:00
|
|
|
int xOffset = mouseOver ? 0 : width() - int(4 * this->getScale());
|
2017-12-26 19:14:36 +01:00
|
|
|
|
2017-01-03 21:19:33 +01:00
|
|
|
QPainter painter(this);
|
2018-05-31 12:59:43 +02:00
|
|
|
painter.fillRect(rect(), this->themeManager->scrollbars.background);
|
2017-01-03 21:19:33 +01:00
|
|
|
|
2018-01-02 02:15:11 +01:00
|
|
|
// painter.fillRect(QRect(xOffset, 0, width(), this->buttonHeight),
|
2018-04-27 22:11:19 +02:00
|
|
|
// this->themeManager->ScrollbarArrow);
|
2018-01-02 02:15:11 +01:00
|
|
|
// painter.fillRect(QRect(xOffset, height() - this->buttonHeight, width(),
|
|
|
|
// this->buttonHeight),
|
2018-04-27 22:11:19 +02:00
|
|
|
// this->themeManager->ScrollbarArrow);
|
2017-08-12 12:09:26 +02:00
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
this->thumbRect_.setX(xOffset);
|
2017-12-26 19:14:36 +01:00
|
|
|
|
2017-08-12 12:09:26 +02:00
|
|
|
// mouse over thumb
|
2018-06-13 13:27:10 +02:00
|
|
|
if (this->mouseDownIndex_ == 2) {
|
|
|
|
painter.fillRect(this->thumbRect_, this->themeManager->scrollbars.thumbSelected);
|
2017-08-12 12:09:26 +02:00
|
|
|
}
|
|
|
|
// mouse not over thumb
|
|
|
|
else {
|
2018-06-13 13:27:10 +02:00
|
|
|
painter.fillRect(this->thumbRect_, this->themeManager->scrollbars.thumb);
|
2017-08-12 12:09:26 +02:00
|
|
|
}
|
2017-01-26 04:26:40 +01:00
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
// draw highlights
|
2018-06-13 13:27:10 +02:00
|
|
|
auto snapshot = this->getHighlightSnapshot();
|
2018-05-26 17:11:09 +02:00
|
|
|
size_t snapshotLength = snapshot.getLength();
|
2018-01-06 20:57:01 +01:00
|
|
|
|
|
|
|
if (snapshotLength == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
int w = this->width();
|
|
|
|
float y = 0;
|
2018-05-26 17:11:09 +02:00
|
|
|
float dY = float(this->height()) / float(snapshotLength);
|
|
|
|
int highlightHeight = int(std::ceil(dY));
|
2018-01-06 03:48:56 +01:00
|
|
|
|
2018-05-26 17:11:09 +02:00
|
|
|
for (size_t i = 0; i < snapshotLength; i++) {
|
2018-01-06 03:48:56 +01:00
|
|
|
ScrollbarHighlight const &highlight = snapshot[i];
|
|
|
|
|
|
|
|
if (!highlight.isNull()) {
|
2018-05-26 17:11:09 +02:00
|
|
|
QColor color = [&] {
|
|
|
|
switch (highlight.getColor()) {
|
|
|
|
case ScrollbarHighlight::Highlight:
|
|
|
|
return app->themes->scrollbars.highlights.highlight;
|
2018-06-04 12:23:23 +02:00
|
|
|
case ScrollbarHighlight::Subscription:
|
|
|
|
return app->themes->scrollbars.highlights.subscription;
|
2018-05-26 17:11:09 +02:00
|
|
|
}
|
|
|
|
return QColor();
|
|
|
|
}();
|
|
|
|
|
|
|
|
switch (highlight.getStyle()) {
|
|
|
|
case ScrollbarHighlight::Default: {
|
|
|
|
painter.fillRect(w / 8 * 3, int(y), w / 4, highlightHeight, color);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case ScrollbarHighlight::Line: {
|
|
|
|
painter.fillRect(0, int(y), w, 1, color);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case ScrollbarHighlight::None:;
|
2018-01-06 03:48:56 +01:00
|
|
|
}
|
|
|
|
}
|
2017-01-03 21:19:33 +01:00
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
y += dY;
|
|
|
|
}
|
2017-01-18 04:33:30 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::resizeEvent(QResizeEvent *)
|
2017-12-26 16:54:39 +01:00
|
|
|
{
|
2018-05-26 17:11:09 +02:00
|
|
|
this->resize(int(16 * this->getScale()), this->height());
|
2017-12-26 16:54:39 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::mouseMoveEvent(QMouseEvent *event)
|
2017-01-26 04:26:40 +01:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
if (this->mouseDownIndex_ == -1) {
|
2017-01-26 04:26:40 +01:00
|
|
|
int y = event->pos().y();
|
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
auto oldIndex = this->mouseOverIndex_;
|
2017-01-26 04:26:40 +01:00
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
if (y < this->buttonHeight_) {
|
|
|
|
this->mouseOverIndex_ = 0;
|
|
|
|
} else if (y < this->thumbRect_.y()) {
|
|
|
|
this->mouseOverIndex_ = 1;
|
|
|
|
} else if (this->thumbRect_.contains(2, y)) {
|
|
|
|
this->mouseOverIndex_ = 2;
|
|
|
|
} else if (y < height() - this->buttonHeight_) {
|
|
|
|
this->mouseOverIndex_ = 3;
|
2017-01-26 04:26:40 +01:00
|
|
|
} else {
|
2018-06-13 13:27:10 +02:00
|
|
|
this->mouseOverIndex_ = 4;
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
if (oldIndex != this->mouseOverIndex_) {
|
2017-04-12 17:46:44 +02:00
|
|
|
update();
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
2018-06-13 13:27:10 +02:00
|
|
|
} else if (this->mouseDownIndex_ == 2) {
|
|
|
|
int delta = event->pos().y() - this->lastMousePosition_.y();
|
2017-01-26 04:26:40 +01:00
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
setDesiredValue(this->desiredValue_ + qreal(delta) / this->trackHeight_ * this->maximum_);
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
this->lastMousePosition_ = event->pos();
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::mousePressEvent(QMouseEvent *event)
|
2017-01-26 04:26:40 +01:00
|
|
|
{
|
|
|
|
int y = event->pos().y();
|
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
if (y < this->buttonHeight_) {
|
|
|
|
this->mouseDownIndex_ = 0;
|
|
|
|
} else if (y < this->thumbRect_.y()) {
|
|
|
|
this->mouseDownIndex_ = 1;
|
|
|
|
} else if (this->thumbRect_.contains(2, y)) {
|
|
|
|
this->mouseDownIndex_ = 2;
|
|
|
|
} else if (y < height() - this->buttonHeight_) {
|
|
|
|
this->mouseDownIndex_ = 3;
|
2017-01-26 04:26:40 +01:00
|
|
|
} else {
|
2018-06-13 13:27:10 +02:00
|
|
|
this->mouseDownIndex_ = 4;
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::mouseReleaseEvent(QMouseEvent *event)
|
2017-01-26 04:26:40 +01:00
|
|
|
{
|
|
|
|
int y = event->pos().y();
|
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
if (y < this->buttonHeight_) {
|
|
|
|
if (this->mouseDownIndex_ == 0) {
|
|
|
|
setDesiredValue(this->desiredValue_ - this->smallChange_, true);
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
2018-06-13 13:27:10 +02:00
|
|
|
} else if (y < this->thumbRect_.y()) {
|
|
|
|
if (this->mouseDownIndex_ == 1) {
|
|
|
|
setDesiredValue(this->desiredValue_ - this->smallChange_, true);
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
2018-06-13 13:27:10 +02:00
|
|
|
} else if (this->thumbRect_.contains(2, y)) {
|
2017-01-26 04:26:40 +01:00
|
|
|
// do nothing
|
2018-06-13 13:27:10 +02:00
|
|
|
} else if (y < height() - this->buttonHeight_) {
|
|
|
|
if (this->mouseDownIndex_ == 3) {
|
|
|
|
setDesiredValue(this->desiredValue_ + this->smallChange_, true);
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
|
|
|
} else {
|
2018-06-13 13:27:10 +02:00
|
|
|
if (this->mouseDownIndex_ == 4) {
|
|
|
|
setDesiredValue(this->desiredValue_ + this->smallChange_, true);
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
this->mouseDownIndex_ = -1;
|
2017-01-26 07:10:46 +01:00
|
|
|
update();
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::leaveEvent(QEvent *)
|
2017-01-26 04:26:40 +01:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
this->mouseOverIndex_ = -1;
|
2017-01-26 04:26:40 +01:00
|
|
|
|
2017-01-26 07:10:46 +01:00
|
|
|
update();
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
void Scrollbar::updateScroll()
|
2017-01-18 04:33:30 +01:00
|
|
|
{
|
2018-06-13 13:27:10 +02:00
|
|
|
this->trackHeight_ =
|
|
|
|
this->height() - this->buttonHeight_ - this->buttonHeight_ - MIN_THUMB_HEIGHT - 1;
|
2017-01-18 04:33:30 +01:00
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
this->thumbRect_ = QRect(
|
|
|
|
0, int(this->currentValue_ / this->maximum_ * this->trackHeight_) + 1 + this->buttonHeight_,
|
|
|
|
this->width(),
|
|
|
|
int(this->largeChange_ / this->maximum_ * this->trackHeight_) + MIN_THUMB_HEIGHT);
|
2017-01-18 04:33:30 +01:00
|
|
|
|
2018-06-13 13:27:10 +02:00
|
|
|
this->update();
|
2017-01-03 21:19:33 +01:00
|
|
|
}
|
2017-06-06 17:18:23 +02:00
|
|
|
|
|
|
|
} // namespace chatterino
|