CMindView.cpp 341 B

123456789101112131415161718
  1. #include "CMindView.h"
  2. CMindView::CMindView(QWidget *parent) : QGraphicsView(new QGraphicsScene(), parent) { }
  3. QList<CNodeData> CMindView::nodeList() const
  4. {
  5. return m_nodeList;
  6. }
  7. void CMindView::setNodeList(QList<CNodeData> list)
  8. {
  9. m_nodeList = list;
  10. }
  11. void CMindView::addNode(CNodeData node)
  12. {
  13. m_nodeList.append(node);
  14. }