blob: c8c21c6e57d27781d268dc059b6b1b53fb2ed39e [file] [log] [blame]
Yingdi Yu0b0a7362014-08-05 16:31:30 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013, Regents of the University of California
4 * Yingdi Yu
5 *
6 * BSD license, See the LICENSE file for more information
7 *
8 * Author: Yingdi Yu <yingdi@cs.ucla.edu>
9 */
10
Yingdi Yueb692ac2015-02-10 18:46:18 -080011#ifndef CHRONOCHAT_TRUST_TREE_SCENE_HPP
12#define CHRONOCHAT_TRUST_TREE_SCENE_HPP
Yingdi Yu0b0a7362014-08-05 16:31:30 -070013
14#include <QtGui/QGraphicsScene>
15#include <QColor>
16#include <QMap>
17
18#ifndef Q_MOC_RUN
19#include "trust-tree-node.hpp"
20#include "tree-layout.hpp"
21#endif
22
23class QGraphicsTextItem;
24
Yingdi Yueb692ac2015-02-10 18:46:18 -080025namespace chronochat {
Yingdi Yu0b0a7362014-08-05 16:31:30 -070026
27class TrustTreeScene : public QGraphicsScene
28{
29 Q_OBJECT
30
31public:
32 TrustTreeScene(QWidget* parent = 0);
33
34 void
Yingdi Yueb692ac2015-02-10 18:46:18 -080035 plotTrustTree(chronochat::TrustTreeNodeList& nodeList);
Yingdi Yu0b0a7362014-08-05 16:31:30 -070036
37private:
38 void
Yingdi Yueb692ac2015-02-10 18:46:18 -080039 plotEdge(const chronochat::TrustTreeNodeList& nodeList, int nodeSize);
Yingdi Yu0b0a7362014-08-05 16:31:30 -070040
41 void
Yingdi Yueb692ac2015-02-10 18:46:18 -080042 plotNode(const chronochat::TrustTreeNodeList& nodeList, int nodeSize);
Yingdi Yu0b0a7362014-08-05 16:31:30 -070043};
44
Yingdi Yueb692ac2015-02-10 18:46:18 -080045} // namespace chronochat
Yingdi Yu0b0a7362014-08-05 16:31:30 -070046
Yingdi Yueb692ac2015-02-10 18:46:18 -080047#endif // CHRONOCHAT_TRUST_TREE_SCENE_HPP