-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Synchronize source files from linuxdeepin/dtkwidget. Source-pull-request: linuxdeepin/dtkwidget#604
- Loading branch information
1 parent
f18b453
commit 5fee29b
Showing
36 changed files
with
1,012 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#include "dbounceanimation.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#include "dindeterminateprogressbar.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. | ||
// | ||
// SPDX-License-Identifier: LGPL-3.0-or-later | ||
#ifndef DBOUNCEANIMATION_H | ||
#define DBOUNCEANIMATION_H | ||
|
||
#include <DObject> | ||
#include <QObject> | ||
|
||
class QPropertyAnimation; | ||
class QAbstractScrollArea; | ||
class DBounceAnimationPrivate; | ||
class DBounceAnimation : public QObject, public DTK_CORE_NAMESPACE::DObject | ||
{ | ||
Q_OBJECT | ||
public: | ||
explicit DBounceAnimation(QObject *parent = nullptr); | ||
|
||
void setAnimationTarget(QAbstractScrollArea *w); | ||
void setAniMationEnable(bool enable); | ||
|
||
protected: | ||
bool eventFilter(QObject *o, QEvent *e) override; | ||
void bounceBack(Qt::Orientation orientation); | ||
|
||
private: | ||
D_DECLARE_PRIVATE(DBounceAnimation) | ||
|
||
}; | ||
|
||
#endif // DBOUNCEANIMATION_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. | ||
// | ||
// SPDX-License-Identifier: LGPL-3.0-or-later | ||
|
||
#ifndef DINDETERMINATEPROGRESSBAR_H | ||
#define DINDETERMINATEPROGRESSBAR_H | ||
|
||
#include <DObject> | ||
#include <QWidget> | ||
|
||
class DIndeterminateProgressbarPrivate; | ||
class DIndeterminateProgressbar : public QWidget, public DTK_CORE_NAMESPACE::DObject | ||
{ | ||
Q_OBJECT | ||
public: | ||
explicit DIndeterminateProgressbar(QWidget *parent = nullptr); | ||
|
||
protected: | ||
void paintEvent(QPaintEvent *e) override; | ||
void resizeEvent(QResizeEvent *e) override; | ||
|
||
private: | ||
D_DECLARE_PRIVATE(DIndeterminateProgressbar) | ||
}; | ||
|
||
#endif // DINDETERMINATEPROGRESSBAR_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. | ||
// | ||
// SPDX-License-Identifier: LGPL-3.0-or-later | ||
#include "private/dbounceanimation_p.h" | ||
#include <QPropertyAnimation> | ||
#include <QEvent> | ||
#include <QDebug> | ||
#include <QAbstractScrollArea> | ||
#include <QScrollBar> | ||
#include <QWheelEvent> | ||
#include <QTimer> | ||
|
||
DBounceAnimationPrivate::DBounceAnimationPrivate(DBounceAnimation *qq) | ||
: DObjectPrivate (qq) | ||
, m_animation(nullptr) | ||
, m_animationTarget(nullptr) | ||
, m_deltaSum(0) | ||
{ | ||
} | ||
|
||
DBounceAnimation::DBounceAnimation(QObject *parent) | ||
: QObject(parent) | ||
, DObject(*new DBounceAnimationPrivate(this)) | ||
{ | ||
} | ||
|
||
void DBounceAnimation::setAnimationTarget(QAbstractScrollArea *w) | ||
{ | ||
D_D(DBounceAnimation); | ||
if (!w) | ||
return; | ||
|
||
if (d->m_animationTarget == w) | ||
return; | ||
|
||
d->m_animationTarget = w; | ||
} | ||
|
||
void DBounceAnimation::setAniMationEnable(bool enable) | ||
{ | ||
D_D(DBounceAnimation); | ||
enable ? d->m_animationTarget->installEventFilter(this) | ||
: d->m_animationTarget->removeEventFilter(this); | ||
} | ||
|
||
bool DBounceAnimation::eventFilter(QObject *o, QEvent *e) | ||
{ | ||
D_D(DBounceAnimation); | ||
if (e->type() == QEvent::Wheel) { | ||
if (auto absscroll = dynamic_cast<QAbstractScrollArea *>(o)) { | ||
if (auto wheelEvent = dynamic_cast<QWheelEvent *>(e)) { | ||
if (absscroll->verticalScrollBar()->value() <= 0 || absscroll->verticalScrollBar()->value() >= absscroll->verticalScrollBar()->maximum()) { | ||
d->m_deltaSum += wheelEvent->delta(); | ||
bounceBack(wheelEvent->angleDelta().x() == 0 ? Qt::Vertical : Qt::Horizontal); | ||
} | ||
} | ||
} | ||
} | ||
|
||
return false; | ||
} | ||
|
||
void DBounceAnimation::bounceBack(Qt::Orientation orientation) | ||
{ | ||
D_D(DBounceAnimation); | ||
if (d->m_animation) | ||
return; | ||
|
||
if (orientation & Qt::Vertical && d->m_animationTarget->verticalScrollBar()->maximum() == d->m_animationTarget->verticalScrollBar()->minimum()) | ||
return; | ||
|
||
if (orientation & Qt::Horizontal && d->m_animationTarget->horizontalScrollBar()->maximum() == d->m_animationTarget->horizontalScrollBar()->minimum()) | ||
return; | ||
|
||
d->m_animation = new QPropertyAnimation(this); | ||
d->m_animation->setTargetObject(d->m_animationTarget->viewport()); | ||
d->m_animation->setPropertyName("pos"); | ||
d->m_animation->setDuration(100); | ||
d->m_animation->setEasingCurve(QEasingCurve::InQuart); | ||
d->m_animation->setStartValue(QPoint(d->m_animationTarget->viewport()->x(), d->m_animationTarget->viewport()->y())); | ||
|
||
QTimer::singleShot(100, this, [this, d, orientation]() { | ||
|
||
if (orientation & Qt::Vertical) { | ||
d->m_animation->setEndValue( | ||
QPoint(d->m_animationTarget->viewport()->x(), d->m_animationTarget->viewport()->y() + d->m_deltaSum / 16)); | ||
} else { | ||
d->m_animation->setEndValue( | ||
QPoint(d->m_animationTarget->viewport()->x() + d->m_deltaSum / 16, d->m_animationTarget->viewport()->y())); | ||
} | ||
|
||
d->m_animation->start(); | ||
|
||
connect(d->m_animation, &QPropertyAnimation::finished, this, [d]() { | ||
if (d->m_animation->direction() == QPropertyAnimation::Backward) { | ||
delete d->m_animation; | ||
d->m_animation = nullptr; | ||
return; | ||
} | ||
|
||
d->m_animation->setDirection(QPropertyAnimation::Direction::Backward); | ||
d->m_animation->setDuration(1000); | ||
d->m_animation->start(QPropertyAnimation::DeleteWhenStopped); | ||
d->m_deltaSum = 0; | ||
}); | ||
}); | ||
} |
Oops, something went wrong.