mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
50e243adf6
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4229 b45a01b8-16f6-495d-af2f-9b41ad6348cc
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <QPoint>
|
|
#include <retroshare/rsturtle.h>
|
|
#include "ui_TurtleRouterDialog.h"
|
|
#include "RsAutoUpdatePage.h"
|
|
|
|
|
|
class TurtleRouterDialog: public RsAutoUpdatePage, public Ui::TurtleRouterDialogForm
|
|
{
|
|
public:
|
|
TurtleRouterDialog(QWidget *parent = NULL) ;
|
|
~TurtleRouterDialog();
|
|
|
|
// Cache for peer names.
|
|
static QString getPeerName(const std::string& peer_id) ;
|
|
|
|
private:
|
|
void updateTunnelRequests( const std::vector<std::vector<std::basic_string<char> > >&,
|
|
const std::vector<std::vector<std::basic_string<char> > >&,
|
|
const std::vector<TurtleRequestDisplayInfo >&,
|
|
const std::vector<TurtleRequestDisplayInfo >&) ;
|
|
|
|
void processSettings(bool bLoad);
|
|
bool m_bProcessSettings;
|
|
|
|
virtual void updateDisplay() ;
|
|
QTreeWidgetItem *findParentHashItem(const std::string& hash) ;
|
|
|
|
std::map<std::string,QTreeWidgetItem*> top_level_hashes ;
|
|
QTreeWidgetItem *top_level_unknown_hashes ;
|
|
QTreeWidgetItem *top_level_s_requests ;
|
|
QTreeWidgetItem *top_level_t_requests ;
|
|
|
|
} ;
|
|
|
|
|
|
|