Animation slow down for debugging

This commit is contained in:
xmrdsc 2019-04-14 17:12:24 +02:00 committed by dsc
parent e1c429110f
commit baff7f213f
No known key found for this signature in database
GPG key ID: 7BBC83D7A8810AAB
2 changed files with 21 additions and 1 deletions

View file

@ -27,9 +27,14 @@
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "filter.h" #include "filter.h"
#include <QtGlobal>
#include <QKeyEvent> #include <QKeyEvent>
#include <QDebug> #include <QDebug>
#ifdef QT_DEBUG
#include "private/qabstractanimation_p.h"
#endif
filter::filter(QObject *parent) : filter::filter(QObject *parent) :
QObject(parent) QObject(parent)
{ {
@ -79,6 +84,21 @@ bool filter::eventFilter(QObject *obj, QEvent *ev) {
case QEvent::KeyRelease: { case QEvent::KeyRelease: {
QKeyEvent *ke = static_cast<QKeyEvent*>(ev); QKeyEvent *ke = static_cast<QKeyEvent*>(ev);
#ifdef QT_DEBUG
if(ke->key() == Qt::Key_F9){
QUnifiedTimer::instance()->setSlowModeEnabled(true);
QUnifiedTimer::instance()->setSlowdownFactor(10);
qDebug() << "Slow animations enabled";
}
if(ke->key() == Qt::Key_F10){
QUnifiedTimer::instance()->setSlowModeEnabled(false);
QUnifiedTimer::instance()->setSlowdownFactor(1);
qDebug() << "Slow animations disabled";
}
#endif
if(ke->key() == Qt::Key_Backtab) if(ke->key() == Qt::Key_Backtab)
m_backtabPressed = false; m_backtabPressed = false;

View file

@ -5,7 +5,7 @@ lessThan (QT_MAJOR_VERSION, 5) | lessThan (QT_MINOR_VERSION, 7) {
TEMPLATE = app TEMPLATE = app
QT += qml quick widgets QT += qml gui-private quick widgets
WALLET_ROOT=$$PWD/monero WALLET_ROOT=$$PWD/monero