/*************************************************************************** * main.cpp * This file is part of the KDE project * copyright (C)2004-2007 by Tomaz Canabrava (tomaz.canabrava@gmail.com) * * 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 of the License, 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 FITNGraphScene::ESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * You should have received a copy of the GNU Library General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. ***************************************************************************/ #ifndef SUI_GRAPHSCENE_H #define SUI_GRAPHSCENE_H #include #include class AbstractAction; class QAction; class Node; class Edge; class QGraphicsItem; class GraphDocument; class Graph; class QGraphicsSceneMouseEvent; class QGraphicsSceneWheelEvent; class QKeyEvent; class NodePropertiesWidget; class EdgePropertiesWidget; class GraphScene : public QGraphicsScene { Q_OBJECT public: GraphScene(QObject *parent); void setAction(QAction *action); void updateGraph(Graph *g); void updateDocument(); void setActiveGraph(Graph *g); void setActiveGraphDocument(GraphDocument *gd); void insertGraphItem(Graph *g, QGraphicsItem *item); void clearGraph(); void setHideEdges(bool h); bool hideEdges(); void updateAfter(QGraphicsItem *item); public slots: void removeGItem(QGraphicsItem *i); QGraphicsItem* createNode( Node *n, bool f = true); QGraphicsItem* createEdge( Edge *e); void connectGraphSignals(Graph *g); protected: void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent); void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent); void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent); void wheelEvent(QGraphicsSceneWheelEvent *wheelEvent); void keyPressEvent(QKeyEvent *keyEvent); private: GraphDocument *_graphDocument; Graph *_graph; AbstractAction *_action; QMultiHash _hashGraphs; QList _hidedEdges; bool _hideEdges; NodePropertiesWidget *_nodePropertiesWidget; EdgePropertiesWidget *_edgePropertiesWidget; }; #endif