aerothemeplasma/kwin/decoration/breeze-v5.93.0/kstyle/animations/breezewidgetstatedata.h
2024-08-09 03:20:25 +02:00

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;
};
}