mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
65 lines
1.1 KiB
C++
65 lines
1.1 KiB
C++
/*
|
|
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "breeze.h"
|
|
|
|
#include <QObject>
|
|
|
|
namespace Breeze
|
|
{
|
|
//* base class for all animation engines
|
|
/** it is used to store configuration values used by all animations stored in the engine */
|
|
class BaseEngine : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
using Pointer = WeakPointer<BaseEngine>;
|
|
|
|
//* constructor
|
|
explicit BaseEngine(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
}
|
|
|
|
//* enability
|
|
virtual void setEnabled(bool value)
|
|
{
|
|
_enabled = value;
|
|
}
|
|
|
|
//* enability
|
|
virtual bool enabled() const
|
|
{
|
|
return _enabled;
|
|
}
|
|
|
|
//* duration
|
|
virtual void setDuration(int value)
|
|
{
|
|
_duration = value;
|
|
}
|
|
|
|
//* duration
|
|
virtual int duration() const
|
|
{
|
|
return _duration;
|
|
}
|
|
|
|
//* unregister widget
|
|
virtual bool unregisterWidget(QObject *object) = 0;
|
|
|
|
private:
|
|
//* engine enability
|
|
bool _enabled = true;
|
|
|
|
//* animation duration
|
|
int _duration = 200;
|
|
};
|
|
|
|
}
|