X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fcolumnhandleitem.h;h=b9846577e4d88ee280a236734f1f1187190823f3;hp=9274473f77432ca42258087147f2bed71aecb49c;hb=f04db2cb802b1296ca739c823495930c71d3b4ab;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/qtui/columnhandleitem.h b/src/qtui/columnhandleitem.h index 9274473f..b9846577 100644 --- a/src/qtui/columnhandleitem.h +++ b/src/qtui/columnhandleitem.h @@ -1,76 +1,77 @@ /*************************************************************************** -* Copyright (C) 2005-09 by the Quassel Project * -* devel@quassel-irc.org * -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) version 3. * -* * -* This program is distributed in the hope that it will be useful, * -* but WITHOUT ANY WARRANTY; without even the implied warranty of * -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -* GNU General Public License for more details. * -* * -* 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. * -***************************************************************************/ + * Copyright (C) 2005-2013 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * 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., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ #ifndef COLUMNHANDLEITEM_H_ #define COLUMNHANDLEITEM_H_ -#include #include #include -#include +#include #include "chatscene.h" -class ColumnHandleItem : public QObject, public QGraphicsItem { - Q_OBJECT +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; } - void setXPos(qreal xpos); - void setXLimits(qreal min, qreal max); + inline qreal opacity() const { return _opacity; } - void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); + void setXPos(qreal xpos); + void setXLimits(qreal min, qreal max); + + void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); public slots: - void sceneRectChanged(const QRectF &); - inline void setColor(const QColor &color) { _rulerColor = color; } + 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); - -private slots: - void hoverChanged(qreal value); + void positionChanged(qreal x); private: - qreal _width; - qreal _sceneLeft, _sceneRight; - QRectF _boundingRect; - qreal _hover; - bool _moving; - qreal _minXPos, _maxXPos; - QTimeLine _timeLine; - QColor _rulerColor; + qreal _width; + qreal _sceneLeft, _sceneRight; + QRectF _boundingRect; + bool _moving; + qreal _offset; + qreal _minXPos, _maxXPos; + qreal _opacity; + QPropertyAnimation *_animation; }; + #endif