1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/*
Code from Gwenview
SPDX-FileCopyrightText: 2007 Aurélien Gâteau <agateau@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "slidecontainer.h"
using namespace Qt::Literals::StringLiterals;
// Qt
#include <QEvent>
#include <QPropertyAnimation>
#include <QResizeEvent>
using namespace TextAddonsWidgets;
static constexpr int SLIDE_DURATION = 250;
SlideContainer::SlideContainer(QWidget *parent)
: QFrame(parent)
, mContent(nullptr)
{
setFixedHeight(0);
hide();
}
QWidget *SlideContainer::content() const
{
return mContent;
}
void SlideContainer::setContent(QWidget *content)
{
if (mContent) {
mContent->setParent(nullptr);
mContent->removeEventFilter(this);
}
mContent = content;
if (mContent) {
mContent->setParent(this);
mContent->installEventFilter(this);
mContent->hide();
}
}
void SlideContainer::animTo(int newHeight)
{
if (mAnim.data()) {
mAnim.data()->deleteLater();
disconnect(mAnim.data(), &QPropertyAnimation::finished, this, &SlideContainer::slotAnimFinished);
}
auto anim = new QPropertyAnimation(this, "slideHeight", this);
anim->setDuration(SLIDE_DURATION);
anim->setStartValue(slideHeight());
anim->setEndValue(newHeight);
mAnim = anim;
anim->start(QAbstractAnimation::DeleteWhenStopped);
connect(anim, &QPropertyAnimation::finished, this, &SlideContainer::slotAnimFinished);
}
void SlideContainer::slideIn()
{
mSlidingOut = false;
show();
mContent->show();
mContent->adjustSize();
delete mAnim.data();
if (height() == mContent->height()) {
return;
}
animTo(mContent->height());
}
void SlideContainer::slideOut()
{
if (height() == 0) {
return;
}
mSlidingOut = true;
animTo(0);
}
QSize SlideContainer::sizeHint() const
{
if (mContent) {
return mContent->sizeHint();
} else {
return {};
}
}
QSize SlideContainer::minimumSizeHint() const
{
if (mContent) {
return mContent->minimumSizeHint();
} else {
return {};
}
}
void SlideContainer::resizeEvent(QResizeEvent *event)
{
if (mContent) {
if (event->oldSize().width() != width()) {
adjustContentGeometry();
}
}
}
void SlideContainer::adjustContentGeometry()
{
if (mContent) {
mContent->setGeometry(0, height() - mContent->height(), width(), mContent->height());
}
}
bool SlideContainer::eventFilter(QObject *, QEvent *event)
{
if (event->type() == QEvent::Resize) {
if (!mSlidingOut && height() != 0) {
animTo(mContent->height());
}
}
return false;
}
int SlideContainer::slideHeight() const
{
return isVisible() ? height() : 0;
}
void SlideContainer::setSlideHeight(int value)
{
setFixedHeight(value);
adjustContentGeometry();
}
void SlideContainer::slotAnimFinished()
{
if (height() == 0) {
mSlidingOut = false;
hide();
Q_EMIT slidedOut();
} else {
Q_EMIT slidedIn();
}
}
#include "moc_slidecontainer.cpp"
|