mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
43 lines
788 B
C++
43 lines
788 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "breezegenericdata.h"
|
|
|
|
namespace Breeze
|
|
{
|
|
//* handle widget state (hover/focus/enable) changes
|
|
class WidgetStateData : public GenericData
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//* constructor
|
|
WidgetStateData(QObject *parent, QObject *target, int duration, bool state = false)
|
|
: GenericData(parent, target, duration)
|
|
, _initialized(false)
|
|
, _state(state)
|
|
{
|
|
}
|
|
|
|
//* destructor
|
|
virtual ~WidgetStateData()
|
|
{
|
|
}
|
|
|
|
/**
|
|
returns true if hover has Changed
|
|
and starts timer accordingly
|
|
*/
|
|
virtual bool updateState(bool value);
|
|
|
|
private:
|
|
bool _initialized;
|
|
bool _state;
|
|
};
|
|
|
|
}
|