X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fcolumnhandleitem.h;h=84c84056c504a45d90aacf14c1958eb0633115ac;hp=67377407082ceceb0b22193d12f73d806a70136b;hb=00e1a9c29e792ba4d65dba21b7ba04131bcb13bc;hpb=fdfd62334f728bd05470c5191194d55027fec86e diff --git a/src/qtui/columnhandleitem.h b/src/qtui/columnhandleitem.h index 67377407..84c84056 100644 --- a/src/qtui/columnhandleitem.h +++ b/src/qtui/columnhandleitem.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef COLUMNHANDLEITEM_H_ @@ -27,49 +27,51 @@ #include "chatscene.h" -class ColumnHandleItem : public QGraphicsObject { - Q_OBJECT - Q_PROPERTY(qreal opacity READ opacity WRITE setOpacity) +class ColumnHandleItem : public QGraphicsObject +{ + Q_OBJECT + Q_PROPERTY(qreal opacity READ opacity WRITE setOpacity) -public: - ColumnHandleItem(qreal width, QGraphicsItem *parent = 0); - virtual inline int type() const { return ChatScene::ColumnHandleType; } +public : + ColumnHandleItem(qreal width, QGraphicsItem *parent = 0); + virtual inline int type() const { return ChatScene::ColumnHandleType; } - inline qreal width() const { return _width; } - inline QRectF boundingRect() const { return _boundingRect; } - inline qreal sceneLeft() const { return _sceneLeft; } - inline qreal sceneRight() const { return _sceneRight; } + inline qreal width() const { return _width; } + inline QRectF boundingRect() const { return _boundingRect; } + inline qreal sceneLeft() const { return _sceneLeft; } + inline qreal sceneRight() const { return _sceneRight; } - inline qreal opacity() const { return _opacity; } + inline qreal opacity() const { return _opacity; } - void setXPos(qreal xpos); - void setXLimits(qreal min, qreal max); + void setXPos(qreal xpos); + void setXLimits(qreal min, qreal max); - void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); + void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); public slots: - void sceneRectChanged(const QRectF &); - void setOpacity(qreal opacity); + void sceneRectChanged(const QRectF &); + void setOpacity(qreal opacity); protected: - void hoverEnterEvent(QGraphicsSceneHoverEvent *event); - void hoverLeaveEvent(QGraphicsSceneHoverEvent *event); - void mouseMoveEvent(QGraphicsSceneMouseEvent *event); - void mousePressEvent(QGraphicsSceneMouseEvent *event); - void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); + void hoverEnterEvent(QGraphicsSceneHoverEvent *event); + void hoverLeaveEvent(QGraphicsSceneHoverEvent *event); + void mouseMoveEvent(QGraphicsSceneMouseEvent *event); + void mousePressEvent(QGraphicsSceneMouseEvent *event); + void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); signals: - void positionChanged(qreal x); + void positionChanged(qreal x); private: - qreal _width; - qreal _sceneLeft, _sceneRight; - QRectF _boundingRect; - bool _moving; - qreal _offset; - qreal _minXPos, _maxXPos; - qreal _opacity; - QPropertyAnimation *_animation; + qreal _width; + qreal _sceneLeft, _sceneRight; + QRectF _boundingRect; + bool _moving; + qreal _offset; + qreal _minXPos, _maxXPos; + qreal _opacity; + QPropertyAnimation *_animation; }; + #endif