Large-scale code cleanup. Also adds a license to the top of all files that were missing it.
163 lines
4.2 KiB
C++
163 lines
4.2 KiB
C++
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2019 Olive Team
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
***/
|
|
|
|
#include "resizablescrollbar.h"
|
|
|
|
#include <QDebug>
|
|
#include <QMouseEvent>
|
|
#include <QStyle>
|
|
#include <QStyleOptionSlider>
|
|
|
|
#include "common/range.h"
|
|
|
|
OLIVE_NAMESPACE_ENTER
|
|
|
|
const int ResizableScrollBar::kHandleWidth = 10;
|
|
|
|
ResizableScrollBar::ResizableScrollBar(QWidget *parent) :
|
|
QScrollBar(parent)
|
|
{
|
|
Init();
|
|
}
|
|
|
|
ResizableScrollBar::ResizableScrollBar(Qt::Orientation orientation, QWidget *parent):
|
|
QScrollBar(orientation, parent)
|
|
{
|
|
Init();
|
|
}
|
|
|
|
void ResizableScrollBar::mousePressEvent(QMouseEvent *event)
|
|
{
|
|
if (mouse_handle_state_ == kNotInHandle) {
|
|
QScrollBar::mousePressEvent(event);
|
|
} else {
|
|
mouse_dragging_ = true;
|
|
|
|
mouse_drag_start_ = GetActiveMousePos(event);
|
|
}
|
|
}
|
|
|
|
void ResizableScrollBar::mouseMoveEvent(QMouseEvent *event)
|
|
{
|
|
QStyleOptionSlider opt;
|
|
initStyleOption(&opt);
|
|
|
|
QRect sr = style()->subControlRect(QStyle::CC_ScrollBar, &opt,
|
|
QStyle::SC_ScrollBarSlider, this);
|
|
|
|
if (mouse_dragging_) {
|
|
int new_drag_pos = GetActiveMousePos(event);
|
|
int mouse_movement = new_drag_pos - mouse_drag_start_;
|
|
mouse_drag_start_ = new_drag_pos;
|
|
|
|
if (mouse_handle_state_ == kInTopHandle) {
|
|
mouse_movement = -mouse_movement;
|
|
}
|
|
|
|
double width_adjustment = static_cast<double>(sr.width() + mouse_movement);
|
|
|
|
// Prevent dividing by zero or emitting a negative scale
|
|
if (width_adjustment > 0) {
|
|
double scale_multiplier = static_cast<double>(sr.width()) / width_adjustment;
|
|
emit RequestScale(scale_multiplier);
|
|
|
|
if (mouse_handle_state_ == kInTopHandle) {
|
|
QRect gr = style()->subControlRect(QStyle::CC_ScrollBar, &opt,
|
|
QStyle::SC_ScrollBarGroove, this);
|
|
|
|
int slider_min = gr.x();
|
|
int slider_max = gr.right() - (sr.width() + mouse_movement);
|
|
int val = QStyle::sliderValueFromPosition(minimum(),
|
|
maximum(),
|
|
event->pos().x() - slider_min,
|
|
slider_max - slider_min,
|
|
opt.upsideDown);
|
|
|
|
setValue(val);
|
|
} else {
|
|
setValue(qRound(static_cast<double>(value()) * scale_multiplier));
|
|
}
|
|
}
|
|
|
|
} else {
|
|
|
|
int mouse_pos, top, bottom;
|
|
Qt::CursorShape target_cursor;
|
|
mouse_pos = GetActiveMousePos(event);
|
|
|
|
if (orientation() == Qt::Horizontal) {
|
|
top = sr.left();
|
|
bottom = sr.right();
|
|
target_cursor = Qt::SizeHorCursor;
|
|
} else {
|
|
top = sr.top();
|
|
bottom = sr.bottom();
|
|
target_cursor = Qt::SizeVerCursor;
|
|
}
|
|
|
|
if (InRange(mouse_pos, top, kHandleWidth)) {
|
|
mouse_handle_state_ = kInTopHandle;
|
|
} else if (InRange(mouse_pos, bottom, kHandleWidth)) {
|
|
mouse_handle_state_ = kInBottomHandle;
|
|
} else {
|
|
mouse_handle_state_ = kNotInHandle;
|
|
}
|
|
|
|
if (mouse_handle_state_ == kNotInHandle) {
|
|
unsetCursor();
|
|
} else {
|
|
setCursor(target_cursor);
|
|
}
|
|
|
|
QScrollBar::mouseMoveEvent(event);
|
|
|
|
}
|
|
}
|
|
|
|
void ResizableScrollBar::mouseReleaseEvent(QMouseEvent *event)
|
|
{
|
|
if (mouse_dragging_) {
|
|
mouse_dragging_ = false;
|
|
} else {
|
|
QScrollBar::mouseReleaseEvent(event);
|
|
}
|
|
}
|
|
|
|
void ResizableScrollBar::Init()
|
|
{
|
|
setSingleStep(20);
|
|
setMaximum(0);
|
|
setMouseTracking(true);
|
|
|
|
mouse_handle_state_= kNotInHandle;
|
|
mouse_dragging_ = false;
|
|
}
|
|
|
|
int ResizableScrollBar::GetActiveMousePos(QMouseEvent *event)
|
|
{
|
|
if (orientation() == Qt::Horizontal) {
|
|
return event->pos().x();
|
|
} else {
|
|
return event->pos().y();
|
|
}
|
|
}
|
|
|
|
OLIVE_NAMESPACE_EXIT
|