* minor changes required to get the gui working with PGP,

* improved NetworkView to show signatures, and friends.

I expect these will be cleaned up later - these were purely functional so i could test pgp.

Enable using RS_USE_PGPSSL in rsiface/rsinit.h
   


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1266 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2009-05-23 15:13:01 +00:00
parent 5f28f76b07
commit 100cf75439
19 changed files with 695 additions and 208 deletions

View file

@ -44,6 +44,7 @@
class Node;
class Edge;
class Arrow;
class GraphWidget : public QGraphicsView
{
@ -57,6 +58,7 @@ public:
bool clearGraph();
void addNode(uint32_t type, std::string id, std::string name);
void addEdge(std::string id1, std::string id2);
void addArrow(std::string id1, std::string id2);
protected:
void keyPressEvent(QKeyEvent *event);
@ -72,6 +74,7 @@ private:
std::map<std::string, Node *> nodeMap;
std::list<Edge *> edgeList;
std::list<Arrow *> arrowList;
};
#endif