mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
54 lines
910 B
C++
54 lines
910 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef breezedial_data_h
|
|
#define breezedial_data_h
|
|
|
|
#include "breezewidgetstatedata.h"
|
|
|
|
namespace Breeze
|
|
{
|
|
//* dial data
|
|
class DialData : public WidgetStateData
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//* constructor
|
|
DialData(QObject *parent, QWidget *target, int);
|
|
|
|
//* event filter
|
|
bool eventFilter(QObject *, QEvent *) override;
|
|
|
|
//* subcontrol rect
|
|
void setHandleRect(const QRect &rect)
|
|
{
|
|
_handleRect = rect;
|
|
}
|
|
|
|
//* mouse position
|
|
QPoint position() const
|
|
{
|
|
return _position;
|
|
}
|
|
|
|
private:
|
|
//* hoverMoveEvent
|
|
void hoverMoveEvent(QObject *, QEvent *);
|
|
|
|
//* hoverMoveEvent
|
|
void hoverLeaveEvent(QObject *, QEvent *);
|
|
|
|
//* rect
|
|
QRect _handleRect;
|
|
|
|
//* mouse position
|
|
QPoint _position;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|