aerothemeplasma/kwin/decoration/breeze-v5.93.0/kstyle/animations/breezewidgetstatedata.h

44 lines
788 B
C
Raw Normal View History

/*
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
2024-08-09 01:20:25 +00:00
#pragma once
#include "breezegenericdata.h"
namespace Breeze
{
//* handle widget state (hover/focus/enable) changes
class WidgetStateData : public GenericData
{
Q_OBJECT
public:
//* constructor
2024-08-09 01:20:25 +00:00
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;
};
}