Newer
Older
/***************************************************************
QGVCore
Copyright (c) 2014, Bergont Nicolas, All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3.0 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library.
***************************************************************/
Joachim Langenbach
committed
class QGVNode;
class QGVEdge;
class QGVSubGraph;
class QGVGraphPrivate;
class QGVGvcPrivate;
Joachim Langenbach
committed
class QGVCORE_EXPORT QGVScene : public QGraphicsScene
{
Q_OBJECT
public:
explicit QGVScene(const QString &name, QObject *parent = 0);
~QGVScene();
void setGraphAttribute(const QString &name, const QString &value);
void setNodeAttribute(const QString &name, const QString &value);
void setEdgeAttribute(const QString &name, const QString &value);
QGVNode* addNode(const QString& label);
QGVEdge* addEdge(QGVNode* source, QGVNode* target, const QString& label=QString());
QGVSubGraph* addSubGraph(const QString& name, bool cluster=true);
void setRootNode(QGVNode *node);
void loadLayout(const QString &text);
void applyLayout(const QString &algorithm = "dot");
void render (const QString &algorithm);
void freeLayout();
signals:
void nodeContextMenu(QGVNode* node);
void nodeDoubleClick(QGVNode* node);
void nodeChanged (QGVNode* node);
void nodeMouseRelease (QGVNode* node);
void edgeContextMenu(QGVEdge* edge);
void edgeDoubleClick(QGVEdge* edge);
void subGraphContextMenu(QGVSubGraph* graph);
void subGraphDoubleClick(QGVSubGraph* graph);
void graphContextMenuEvent();
public slots:
protected:
virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent * contextMenuEvent);
virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent * mouseEvent);
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent * mouseEvent);
virtual void drawBackground(QPainter * painter, const QRectF & rect);
private:
friend class QGVNode;
friend class QGVEdge;
friend class QGVSubGraph;
Joachim Langenbach
committed
QGVGvcPrivate *_context;
QGVGraphPrivate *_graph;
//QFont _font;
QList<QGVNode*> _nodes;
QList<QGVEdge*> _edges;
QList<QGVSubGraph*> _subGraphs;