mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-13 11:32:48 -04:00
added these missign files
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1541 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
a293a39d1b
commit
53dd3019fb
3 changed files with 320 additions and 0 deletions
96
retroshare-gui/src/gui/TurtleRouterDialog.cpp
Normal file
96
retroshare-gui/src/gui/TurtleRouterDialog.cpp
Normal file
|
@ -0,0 +1,96 @@
|
|||
#include <iostream>
|
||||
#include <QTimer>
|
||||
#include <QMenu>
|
||||
#include <QMouseEvent>
|
||||
#include <rsiface/rsturtle.h>
|
||||
#include "TurtleRouterDialog.h"
|
||||
|
||||
TurtleRouterDialog *TurtleRouterDialog::_instance = NULL ;
|
||||
|
||||
TurtleRouterDialog::TurtleRouterDialog(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
setupUi(this) ;
|
||||
|
||||
_timer = new QTimer ;
|
||||
|
||||
connect(_timer,SIGNAL(timeout()),this,SLOT(update())) ;
|
||||
|
||||
_timer->start(2000) ;
|
||||
|
||||
connect( _hashes_TW, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showCtxMenu(const QPoint&)));
|
||||
}
|
||||
|
||||
void TurtleRouterDialog::showCtxMenu(const QPoint& point)
|
||||
{
|
||||
std::cerr << "execing context menu" << std::endl ;
|
||||
// create context menus.
|
||||
QMenu contextMnu( this );
|
||||
QAction *removeHashAction = new QAction(QIcon(":/images/delete.png"), tr("Stop handling this hash"), this);
|
||||
connect(removeHashAction , SIGNAL(triggered()), this, SLOT(removeFileHash()));
|
||||
contextMnu.addAction(removeHashAction);
|
||||
|
||||
QMouseEvent *mevent = new QMouseEvent(QEvent::MouseButtonPress, point, Qt::RightButton, Qt::RightButton, Qt::NoModifier ) ;
|
||||
contextMnu.exec( mevent->globalPos() );
|
||||
}
|
||||
|
||||
void TurtleRouterDialog::showUp()
|
||||
{
|
||||
if(_instance == NULL)
|
||||
_instance = new TurtleRouterDialog ;
|
||||
|
||||
_instance->show() ;
|
||||
}
|
||||
|
||||
void TurtleRouterDialog::removeFileHash()
|
||||
{
|
||||
QTableWidgetItem *item = _hashes_TW->currentItem();
|
||||
|
||||
std::cout << "in remove hash " << std::endl ;
|
||||
if(item == NULL)
|
||||
return ;
|
||||
|
||||
std::cout << "item->row = " << item->row() << std::endl ;
|
||||
std::string hash = _hashes_TW->item(item->row(),0)->text().toStdString() ;
|
||||
|
||||
std::cout << "remove ing hash: " << hash << std::endl ;
|
||||
|
||||
rsTurtle->stopMonitoringFileTunnels(hash) ;
|
||||
}
|
||||
|
||||
void TurtleRouterDialog::update()
|
||||
{
|
||||
std::cout << "updatign turtle router console."<< std::endl ;
|
||||
|
||||
std::vector<std::vector<std::string> > hashes_info ;
|
||||
std::vector<std::vector<std::string> > tunnels_info ;
|
||||
std::vector<std::vector<std::string> > search_reqs_info ;
|
||||
std::vector<std::vector<std::string> > tunnel_reqs_info ;
|
||||
|
||||
rsTurtle->getInfo(hashes_info,tunnels_info,search_reqs_info,tunnel_reqs_info) ;
|
||||
|
||||
// now display this in the QTableWidgets
|
||||
|
||||
fillTable( _hashes_TW, hashes_info) ;
|
||||
fillTable( _tunnels_TW, tunnels_info) ;
|
||||
fillTable( _tunnel_reqs_TW, tunnel_reqs_info) ;
|
||||
fillTable( _search_reqs_TW, search_reqs_info) ;
|
||||
}
|
||||
|
||||
void TurtleRouterDialog::fillTable(QTableWidget *table,const std::vector<std::vector<std::string> >& data)
|
||||
{
|
||||
// table->clearContents() ;
|
||||
|
||||
for(uint i=0;i<data.size();++i)
|
||||
{
|
||||
if(table->rowCount() <= i)
|
||||
table->insertRow(i) ;
|
||||
|
||||
for(uint j=0;j<data[i].size();++j)
|
||||
table->setItem(i,j,new QTableWidgetItem(QString::fromStdString(data[i][j]))) ;
|
||||
}
|
||||
|
||||
for(uint i=data.size();i<table->rowCount();)
|
||||
table->removeRow(i) ;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue