/* * Copyright 2007 by Kevin Ottens * Copyright 2009-2010 by Giulio Camuffo * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2, or * (at your option) any later version. * * 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 Library 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 FREEHANDLE_P_H #define FREEHANDLE_P_H #include #include #include #include #include #include #include "handle.h" namespace Plasma { class Applet; class FrameSvg; } class AbstractGroup; class GroupingContainment; class FreeHandle : public Handle { Q_OBJECT Q_PROPERTY(qreal fadeAnimation READ fadeAnimation WRITE setFadeAnimation) public: enum FadeType { FadeIn, FadeOut }; FreeHandle(GroupingContainment *parent, Plasma::Applet *applet); FreeHandle(GroupingContainment *parent, AbstractGroup *group); virtual ~FreeHandle(); QRectF boundingRect() const; QPainterPath shape() const; void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); void startFading(FadeType anim, const QPointF &hoverPos, bool preserveSide = false); void setHoverPos(const QPointF &hoverPos); protected: void mousePressEvent(QGraphicsSceneMouseEvent *event); void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); void mouseMoveEvent(QGraphicsSceneMouseEvent *event); void hoverEnterEvent(QGraphicsSceneHoverEvent *event); void hoverMoveEvent(QGraphicsSceneHoverEvent *event); void hoverLeaveEvent(QGraphicsSceneHoverEvent *event); bool sceneEventFilter(QGraphicsItem *watched, QEvent *event); private Q_SLOTS: void setFadeAnimation(qreal progress); qreal fadeAnimation() const; void widgetResized(); void hoverTimeout(); void leaveTimeout(); void emitDisappear(); private: static const int HANDLE_MARGIN = 3; void init(); void calculateSize(); ButtonType mapToButton(const QPointF &point) const; void forceDisappear(); int minimumHeight(); QRectF m_rect; QRectF m_decorationRect; QRectF m_totalRect; ButtonType m_pressedButton; int m_iconSize; qreal m_opacity; FadeType m_animType; QWeakPointer m_anim; qreal m_angle; QColor m_gradientColor; QTimer *m_hoverTimer; QTimer *m_leaveTimer; QPixmap *m_backgroundBuffer; Plasma::Svg *m_configureIcons; Plasma::FrameSvg *m_background; QPoint m_mousePos; //mousepos relative to applet QPointF m_entryPos; //where the hover in event occurred qreal m_zValue; //current zValue of the applet, so it can be restored after drag. QRectF m_originalGeom; QTransform m_originalTransform; // used for both resize and rotate QPointF m_origWidgetCenter; QPointF m_origWidgetSize; // used for resize QPointF m_resizeStaticPoint; QPointF m_resizeGrabPoint; // used for rotate qreal m_rotateAngleOffset; // applet angle minus cursor angle bool m_buttonsOnRight : 1; bool m_pendingFade : 1; }; #endif // multiple inclusion guard