highlight peers in network graph according to friendship distance from selected node

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6765 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-09-25 20:13:57 +00:00
parent 027b9ba017
commit 1d0c7b2e2f
4 changed files with 38 additions and 3 deletions

View file

@ -83,6 +83,7 @@ public:
void setEdgeLength(uint32_t l) ;
uint32_t edgeLength() const { return _edge_length ; }
void forceRedraw() ;
protected:
void keyPressEvent(QKeyEvent *event);
void timerEvent(QTimerEvent *event);
@ -102,6 +103,7 @@ private:
uint32_t _edge_length ;
float _friction_factor ;
NodeId _current_node ;
};
#endif