nheko/include/SlidingStackWidget.h

89 lines
2.5 KiB
C
Raw Normal View History

2017-04-06 01:06:42 +02:00
/*
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
*
* 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/>.
*/
#pragma once
2017-04-06 01:06:42 +02:00
#include <QDebug>
#include <QEasingCurve>
#include <QParallelAnimationGroup>
#include <QPropertyAnimation>
#include <QStackedWidget>
#include <QWidget>
/*
* SlidingStackWidget allows smooth side shifting of widgets,
* in addition to the hard switching from one to another offered
* by QStackedWidget.
*/
class SlidingStackWidget : public QStackedWidget
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
2017-04-06 01:06:42 +02:00
public:
2017-09-10 11:59:21 +02:00
// Defines the animation direction.
enum class AnimationDirection { LEFT_TO_RIGHT, RIGHT_TO_LEFT, AUTOMATIC };
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
SlidingStackWidget(QWidget *parent);
~SlidingStackWidget();
2017-04-06 01:06:42 +02:00
public slots:
2017-09-10 11:59:21 +02:00
// Move to the next widget.
void slideInNext();
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
// Move to the previous widget.
void slideInPrevious();
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
// Move to a widget by index.
void slideInIndex(int index, AnimationDirection direction = AnimationDirection::AUTOMATIC);
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
int getWidgetIndex(QWidget *widget);
2017-04-06 01:06:42 +02:00
signals:
2017-09-10 11:59:21 +02:00
// Internal signal to alert the engine for the animation's end.
void animationFinished();
2017-04-06 01:06:42 +02:00
protected slots:
2017-09-10 11:59:21 +02:00
// Internal slot to handle the end of the animation.
void onAnimationFinished();
2017-04-06 01:06:42 +02:00
protected:
2017-09-10 11:59:21 +02:00
// The method that does the main work for the widget transition.
void slideInWidget(QWidget *widget,
AnimationDirection direction = AnimationDirection::AUTOMATIC);
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
// Indicates whether or not the animation is active.
bool active_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
// The widget currently displayed.
QWidget *window_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
// The speed of the animation in milliseconds.
int speed_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
// The animation type.
QEasingCurve::Type animation_type_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
// Current widget's index.
int now_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
// Reference point.
QPoint current_position_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
// Next widget's to show index.
int next_;
2017-04-06 01:06:42 +02:00
};