mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-28 08:16:59 -05:00
44 lines
1.1 KiB
C
44 lines
1.1 KiB
C
|
#pragma once
|
||
|
|
||
|
#include <QGraphicsItem>
|
||
|
|
||
|
#include <retroshare/rsidentity.h>
|
||
|
|
||
|
class CircleItem: public QObject, public QGraphicsItem
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
CircleItem(const RsGroupMetaData& gxs_group_info) ;
|
||
|
|
||
|
QRectF boundingRect() const ;
|
||
|
//QPainterPath shape() const ;
|
||
|
|
||
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) ;
|
||
|
|
||
|
//static QImage makeDefaultIcon(const RsGxsGroupId& id) ;
|
||
|
|
||
|
static const int IMG_SIZE = 64;
|
||
|
static CircleItem *_selected_node ;
|
||
|
|
||
|
const RsGroupMetaData& groupInfo() const { return _group_info ; }
|
||
|
signals:
|
||
|
void itemChanged() ;
|
||
|
|
||
|
private:
|
||
|
virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *e);
|
||
|
virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *e);
|
||
|
virtual QVariant itemChange(GraphicsItemChange change,const QVariant& value) ;
|
||
|
virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
|
||
|
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
|
||
|
|
||
|
virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *) ;
|
||
|
|
||
|
RsGroupMetaData _group_info ;
|
||
|
|
||
|
bool mDeterminedBB;
|
||
|
bool mBBWidth;
|
||
|
bool _selected ;
|
||
|
};
|
||
|
|