QGVNode.h
Go to the documentation of this file.
1 /***************************************************************
2 QGVCore
3 Copyright (c) 2014, Bergont Nicolas, All rights reserved.
4 
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 3.0 of the License, or (at your option) any later version.
9 
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14 
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library.
17 ***************************************************************/
18 #ifndef QGVNODE_H
19 #define QGVNODE_H
20 
21 #include <qgv.h>
22 #include <QGraphicsItem>
23 #include <QPen>
24 
25 class QGVEdge;
26 class QGVScene;
27 class QGVNodePrivate;
28 
33 class QGVCORE_EXPORT QGVNode : public QGraphicsItem
34 {
35  public:
36  ~QGVNode();
37 
38  QString label() const;
39  void setLabel(const QString &label);
40 
41  QRectF boundingRect() const;
42  void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
43  QWidget *widget = 0);
44  void setAttribute(const QString &label, const QString &value);
45  QString getAttribute(const QString &name) const;
46 
47  void setIcon(const QImage &icon);
48 
49  enum { Type = UserType + 2 };
50  int type() const
51  {
52  return Type;
53  }
54 
55  private:
56  friend class QGVScene;
57  friend class QGVSubGraph;
58  void updateLayout();
59  QGVNode(QGVNodePrivate* node, QGVScene *scene);
60 
61  // Not implemented in QGVNode.cpp
62 // QPainterPath makeShape(Agnode_t* node) const;
63 // QPolygonF makeShapeHelper(Agnode_t* node) const;
64 
65  QPainterPath _path;
66  QPen _pen;
67  QBrush _brush;
68  QImage _icon;
69 
70  QGVScene *_scene;
71  QGVNodePrivate* _node;
72 };
73 
74 
75 #endif
Node item.
Definition: QGVNode.h:33
Edge item.
Definition: QGVEdge.h:34
SubGraph item.
Definition: QGVSubGraph.h:35
int type() const
Definition: QGVNode.h:50
GraphViz interactive scene.
Definition: QGVScene.h:40
#define QGVCORE_EXPORT
Definition: qgv.h:33
void updateLayout()
Definition: QGVNodePrivate.h:24