2007-11-14 22:18:48 -05:00
/****************************************************************
* RetroShare is distributed under the following license :
*
* Copyright ( C ) 2006 , crypton
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation ; either version 2
* of the License , or ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 51 Franklin Street , Fifth Floor ,
* Boston , MA 02110 - 1301 , USA .
2008-08-31 12:52:35 -04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# include <QFile>
2007-11-14 22:18:48 -05:00
# include <QFileInfo>
2008-08-31 12:52:35 -04:00
2007-11-14 22:18:48 -05:00
# include "rshare.h"
2008-03-21 19:31:00 -04:00
# include "common/vmessagebox.h"
2008-08-31 12:52:35 -04:00
# include "util/rsversion.h"
2007-11-14 22:18:48 -05:00
# include "NetworkDialog.h"
2008-03-17 09:14:17 -04:00
# include "NetworkView.h"
2008-11-15 09:29:34 -05:00
# include "TrustView.h"
2007-11-14 22:18:48 -05:00
# include "connect/ConnectDialog.h"
# include "rsiface/rsiface.h"
2008-01-25 03:49:40 -05:00
# include "rsiface/rspeers.h"
2007-11-14 22:18:48 -05:00
# include <sstream>
2008-03-21 19:31:00 -04:00
# include <QTime>
2007-11-14 22:18:48 -05:00
# include <QContextMenuEvent>
# include <QMenu>
# include <QCursor>
# include <QPoint>
# include <QMouseEvent>
# include <QPixmap>
2008-08-31 12:52:35 -04:00
# include <QHeaderView>
/* Images for context menu icons */
2007-11-14 22:18:48 -05:00
# define IMAGE_LOADCERT ": / images / loadcert16.png"
# define IMAGE_PEERDETAILS ": / images / peerdetails_16x16.png"
# define IMAGE_AUTH ": / images / encrypted16.png"
/* Images for Status icons */
2008-08-08 10:32:13 -04:00
# define IMAGE_AUTHED ": / images / accepted16.png"
# define IMAGE_DENIED ": / images / denied16.png"
2008-12-23 12:59:58 -05:00
# define IMAGE_TRUSTED ": / images / rs-2.png"
2008-08-31 12:52:35 -04:00
2007-11-14 22:18:48 -05:00
RsCertId getNeighRsCertId ( QTreeWidgetItem * i ) ;
2008-07-09 05:53:47 -04:00
/******
* # define NET_DEBUG 1
* * * * */
2008-08-31 12:52:35 -04:00
/** Constructor */
NetworkDialog : : NetworkDialog ( QWidget * parent )
2007-11-14 22:18:48 -05:00
: MainPage ( parent ) , connectdialog ( NULL )
2008-08-31 12:52:35 -04:00
{
/* Invoke the Qt Designer generated object setup routine */
ui . setupUi ( this ) ;
connect ( ui . connecttreeWidget , SIGNAL ( customContextMenuRequested ( QPoint ) ) , this , SLOT ( connecttreeWidgetCostumPopupMenu ( QPoint ) ) ) ;
2007-11-14 22:18:48 -05:00
/* create a single connect dialog */
connectdialog = new ConnectDialog ( ) ;
2008-03-21 19:31:00 -04:00
connect ( ui . infoLog , SIGNAL ( customContextMenuRequested ( const QPoint & ) ) , this , SLOT ( displayInfoLogMenu ( const QPoint & ) ) ) ;
2007-11-14 22:18:48 -05:00
/* hide the Tree +/- */
ui . connecttreeWidget - > setRootIsDecorated ( false ) ;
/* Set header resize modes and initial section sizes */
2008-08-31 12:52:35 -04:00
QHeaderView * _header = ui . connecttreeWidget - > header ( ) ;
_header - > setResizeMode ( 0 , QHeaderView : : Custom ) ;
_header - > setResizeMode ( 1 , QHeaderView : : Interactive ) ;
2007-11-14 22:18:48 -05:00
_header - > setResizeMode ( 2 , QHeaderView : : Interactive ) ;
2008-08-31 12:52:35 -04:00
_header - > setResizeMode ( 3 , QHeaderView : : Interactive ) ;
2007-11-14 22:18:48 -05:00
_header - > setResizeMode ( 4 , QHeaderView : : Interactive ) ;
2008-08-31 12:52:35 -04:00
_header - > setResizeMode ( 5 , QHeaderView : : Interactive ) ;
2007-11-14 22:18:48 -05:00
_header - > setResizeMode ( 6 , QHeaderView : : Interactive ) ;
2008-08-31 12:52:35 -04:00
_header - > setResizeMode ( 7 , QHeaderView : : Interactive ) ;
2007-11-14 22:18:48 -05:00
_header - > setResizeMode ( 8 , QHeaderView : : Interactive ) ;
2008-08-31 12:52:35 -04:00
_header - > setResizeMode ( 9 , QHeaderView : : Interactive ) ;
2007-11-14 22:18:48 -05:00
_header - > resizeSection ( 0 , 25 ) ;
_header - > resizeSection ( 1 , 100 ) ;
_header - > resizeSection ( 2 , 100 ) ;
_header - > resizeSection ( 3 , 100 ) ;
_header - > resizeSection ( 4 , 100 ) ;
_header - > resizeSection ( 5 , 200 ) ;
_header - > resizeSection ( 6 , 100 ) ;
_header - > resizeSection ( 7 , 100 ) ;
_header - > resizeSection ( 8 , 100 ) ;
_header - > resizeSection ( 9 , 100 ) ;
2008-03-17 09:14:17 -04:00
2008-08-08 10:32:13 -04:00
// set header text aligment
QTreeWidgetItem * headerItem = ui . connecttreeWidget - > headerItem ( ) ;
headerItem - > setTextAlignment ( 0 , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
headerItem - > setTextAlignment ( 1 , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
headerItem - > setTextAlignment ( 2 , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
headerItem - > setTextAlignment ( 3 , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
headerItem - > setTextAlignment ( 4 , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
headerItem - > setTextAlignment ( 5 , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
headerItem - > setTextAlignment ( 6 , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
headerItem - > setTextAlignment ( 7 , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
headerItem - > setTextAlignment ( 8 , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
headerItem - > setTextAlignment ( 9 , Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
2008-11-15 09:29:34 -05:00
networkview = new NetworkView ( ui . networkviewTab ) ;
QVBoxLayout * layout = new QVBoxLayout ;
layout - > addWidget ( networkview ) ;
ui . networkviewTab - > setLayout ( layout ) ;
layout - > setSpacing ( 0 ) ;
layout - > setMargin ( 0 ) ;
2008-11-29 12:57:33 -05:00
ui . networkTab - > addTab ( new TrustView ( ) , QString ( " Trust matrix " ) ) ;
2007-11-14 22:18:48 -05:00
2008-08-31 12:52:35 -04:00
// Set Log infos
setLogInfo ( tr ( " RetroShare %1 started. " , " e.g: RetroShare v0.x started. " ) . arg ( retroshareVersion ( ) ) ) ;
2008-03-21 19:31:00 -04:00
setLogInfo ( tr ( " Welcome to RetroShare. " ) , QString : : fromUtf8 ( " blue " ) ) ;
2007-11-14 22:18:48 -05:00
2008-08-31 12:52:35 -04:00
/* Hide platform specific features */
# ifdef Q_WS_WIN
# endif
}
void NetworkDialog : : connecttreeWidgetCostumPopupMenu ( QPoint point )
{
QTreeWidgetItem * wi = getCurrentNeighbour ( ) ;
if ( ! wi )
return ;
// return ;
QMenu contextMnu ( this ) ;
QMouseEvent * mevent = new QMouseEvent ( QEvent : : MouseButtonPress , point , Qt : : RightButton , Qt : : RightButton , Qt : : NoModifier ) ;
contextMnu . clear ( ) ;
if ( wi - > text ( 9 ) . toStdString ( ) = = rsPeers - > getOwnId ( ) )
{
peerdetailsAct = new QAction ( QIcon ( IMAGE_PEERDETAILS ) , tr ( " Peer Details " ) , this ) ;
connect ( peerdetailsAct , SIGNAL ( triggered ( ) ) , this , SLOT ( peerdetails ( ) ) ) ;
contextMnu . addAction ( peerdetailsAct ) ;
}
else
{
peerdetailsAct = new QAction ( QIcon ( IMAGE_PEERDETAILS ) , tr ( " Make Friend / Peer Details " ) , this ) ;
connect ( peerdetailsAct , SIGNAL ( triggered ( ) ) , this , SLOT ( peerdetails ( ) ) ) ;
contextMnu . addAction ( peerdetailsAct ) ;
loadcertAct = new QAction ( QIcon ( IMAGE_LOADCERT ) , tr ( " Load Certificate " ) , this ) ;
connect ( loadcertAct , SIGNAL ( triggered ( ) ) , this , SLOT ( loadneighbour ( ) ) ) ;
contextMnu . addAction ( loadcertAct ) ;
}
contextMnu . exec ( mevent - > globalPos ( ) ) ;
}
/** Shows Peer Information/Auth Dialog */
void NetworkDialog : : peerdetails ( )
2008-07-09 05:53:47 -04:00
{
# ifdef NET_DEBUG
2007-11-14 22:18:48 -05:00
std : : cerr < < " ConnectionsDialog::peerdetails() " < < std : : endl ;
2008-07-09 05:53:47 -04:00
# endif
2007-11-14 22:18:48 -05:00
QTreeWidgetItem * wi = getCurrentNeighbour ( ) ;
if ( ! wi )
return ;
RsCertId id = getNeighRsCertId ( wi ) ;
std : : ostringstream out ;
out < < id ;
showpeerdetails ( out . str ( ) ) ;
}
/** Shows Peer Information/Auth Dialog */
void NetworkDialog : : showpeerdetails ( std : : string id )
{
2008-07-09 05:53:47 -04:00
# ifdef NET_DEBUG
2007-11-14 22:18:48 -05:00
std : : cerr < < " ConnectionsDialog::showpeerdetails() " < < std : : endl ;
2008-07-09 05:53:47 -04:00
# endif
2007-11-14 22:18:48 -05:00
if ( ( connectdialog ) & & ( connectdialog - > loadPeer ( id ) ) )
{
connectdialog - > show ( ) ;
}
}
2008-08-31 12:52:35 -04:00
/** Open a QFileDialog to browse for a pem/pqi file. */
void NetworkDialog : : loadcert ( )
{
/* Create a new input dialog, which allows users to create files, too */
QFileDialog * dialog = new QFileDialog ( this , tr ( " Select a pem/pqi File " ) ) ;
//dialog->setDirectory(QFileInfo(ui.lineTorConfig->text()).absoluteDir());
//dialog->selectFile(QFileInfo(ui.lineTorConfig->text()).fileName());
dialog - > setFileMode ( QFileDialog : : AnyFile ) ;
dialog - > setReadOnly ( false ) ;
/* Prompt the user to select a file or create a new one */
if ( ! dialog - > exec ( ) | | dialog - > selectedFiles ( ) . isEmpty ( ) ) {
return ;
}
QString filename = QDir : : convertSeparators ( dialog - > selectedFiles ( ) . at ( 0 ) ) ;
/* Check if the file exists */
QFile torrcFile ( filename ) ;
if ( ! QFileInfo ( filename ) . exists ( ) ) {
/* The given file does not exist. Should we create it? */
int response = VMessageBox : : question ( this ,
tr ( " File Not Found " ) ,
tr ( " %1 does not exist. Would you like to create it? " )
. arg ( filename ) ,
VMessageBox : : Yes , VMessageBox : : No ) ;
if ( response = = VMessageBox : : No ) {
/* Don't create it. Just bail. */
return ;
}
/* Attempt to create the specified file */
if ( ! torrcFile . open ( QIODevice : : WriteOnly ) ) {
VMessageBox : : warning ( this ,
tr ( " Failed to Create File " ) ,
tr ( " Unable to create %1 [%2] " ) . arg ( filename )
. arg ( torrcFile . errorString ( ) ) ,
VMessageBox : : Ok ) ;
return ;
}
}
//ui.lineTorConfig->setText(filename);
}
2007-11-14 22:18:48 -05:00
# include <sstream>
/* get the list of Neighbours from the RsIface. */
void NetworkDialog : : insertConnect ( )
{
2008-01-25 03:49:40 -05:00
if ( ! rsPeers )
{
return ;
}
2007-11-14 22:18:48 -05:00
2008-01-25 03:49:40 -05:00
std : : list < std : : string > neighs ;
std : : list < std : : string > : : iterator it ;
rsPeers - > getOthersList ( neighs ) ;
2007-11-14 22:18:48 -05:00
/* get a link to the table */
QTreeWidget * connectWidget = ui . connecttreeWidget ;
QTreeWidgetItem * oldSelect = getCurrentNeighbour ( ) ;
QTreeWidgetItem * newSelect = NULL ;
std : : string oldId ;
if ( oldSelect )
{
oldId = ( oldSelect - > text ( 9 ) ) . toStdString ( ) ;
}
QList < QTreeWidgetItem * > items ;
for ( it = neighs . begin ( ) ; it ! = neighs . end ( ) ; it + + )
{
2008-01-25 03:49:40 -05:00
RsPeerDetails detail ;
if ( ! rsPeers - > getPeerDetails ( * it , detail ) )
{
continue ; /* BAD */
}
2007-11-14 22:18:48 -05:00
/* make a widget per friend */
QTreeWidgetItem * item = new QTreeWidgetItem ( ( QTreeWidget * ) 0 ) ;
/* add all the labels */
2008-01-25 03:49:40 -05:00
/* (0) Status Icon */
item - > setText ( 0 , " " ) ;
2007-11-14 22:18:48 -05:00
/* (1) Accept/Deny */
2008-01-25 03:49:40 -05:00
if ( detail . state & RS_PEER_STATE_FRIEND )
{
item - > setText ( 1 , tr ( " Accept " ) ) ;
}
else
{
item - > setText ( 1 , tr ( " Deny " ) ) ;
}
2008-12-24 12:09:41 -05:00
item - > setText ( 2 , QString : : fromStdString ( RsPeerTrustString ( detail . trustLvl ) ) ) ;
2008-01-25 03:49:40 -05:00
2007-11-14 22:18:48 -05:00
/* (3) Last Connect */
2008-01-25 03:49:40 -05:00
{
std : : ostringstream out ;
2008-09-21 18:04:49 -04:00
// Show anouncement if a friend never was connected.
if ( detail . lastConnect = = 0 ) {
if ( detail . state & RS_PEER_STATE_FRIEND ) {
out < < " Friend never seen " ;
2008-09-27 10:48:57 -04:00
item - > setText ( 3 , QString : : fromStdString ( out . str ( ) ) ) ;
2008-09-21 18:04:49 -04:00
} else {
2008-09-27 10:48:57 -04:00
// Show that there is no Trust
item - > setText ( 3 , QString : : fromStdString ( RsPeerTrustString ( detail . trustLvl ) ) ) ;
2008-09-21 18:04:49 -04:00
}
} else {
// Dont Show a timestamp in RS calculate the day
2008-09-22 16:01:01 -04:00
QDateTime datum = QDateTime : : fromTime_t ( detail . lastConnect ) ;
// out << datum.toString(Qt::LocalDate);
QString stime = datum . toString ( Qt : : LocalDate ) ;
item - > setText ( 3 , stime ) ;
2008-09-21 18:04:49 -04:00
}
2008-01-25 03:49:40 -05:00
}
2008-09-27 10:48:57 -04:00
2008-01-25 03:49:40 -05:00
/* (4) Person */
item - > setText ( 4 , QString : : fromStdString ( detail . name ) ) ;
2007-11-14 22:18:48 -05:00
/* (5) Peer Address */
2008-01-25 03:49:40 -05:00
{
std : : ostringstream out ;
2008-09-27 10:48:57 -04:00
if ( detail . state & RS_PEER_STATE_FRIEND ) {
out < < detail . localAddr < < " : " ;
out < < detail . localPort < < " / " ;
out < < detail . extAddr < < " : " ;
out < < detail . extPort ;
} else {
// No Trust => no IP Information
2008-09-27 11:10:55 -04:00
out < < " 0.0.0.0:0/0.0.0.0:0 " ;
2008-09-27 10:48:57 -04:00
}
2008-01-25 03:49:40 -05:00
item - > setText ( 5 , QString : : fromStdString ( out . str ( ) ) ) ;
}
2007-11-14 22:18:48 -05:00
/* Others */
2008-01-25 03:49:40 -05:00
item - > setText ( 6 , QString : : fromStdString ( detail . org ) ) ;
item - > setText ( 7 , QString : : fromStdString ( detail . location ) ) ;
item - > setText ( 8 , QString : : fromStdString ( detail . email ) ) ;
2007-11-14 22:18:48 -05:00
{
2008-01-25 03:49:40 -05:00
item - > setText ( 9 , QString : : fromStdString ( detail . id ) ) ;
if ( ( oldSelect ) & & ( oldId = = detail . id ) )
2007-11-14 22:18:48 -05:00
{
newSelect = item ;
}
}
2008-08-08 10:32:13 -04:00
//item -> setText(10, QString::fromStdString(detail.authcode));
2007-11-14 22:18:48 -05:00
2008-09-27 11:10:55 -04:00
/**
* Determinated the Background Color
*/
QColor backgrndcolor ;
2008-09-21 18:04:49 -04:00
2008-09-27 11:10:55 -04:00
if ( detail . state & RS_PEER_STATE_FRIEND )
2007-11-14 22:18:48 -05:00
{
2008-09-27 11:10:55 -04:00
if ( detail . lastConnect < 10000 ) /* 3 hours? */
2007-11-14 22:18:48 -05:00
{
2008-09-27 11:10:55 -04:00
/* bright green */
backgrndcolor = Qt : : darkGreen ;
item - > setIcon ( 0 , ( QIcon ( IMAGE_AUTHED ) ) ) ;
2007-11-14 22:18:48 -05:00
}
2008-09-21 18:04:49 -04:00
else
2007-11-14 22:18:48 -05:00
{
2008-09-27 11:10:55 -04:00
backgrndcolor = Qt : : darkGreen ;
item - > setIcon ( 0 , ( QIcon ( IMAGE_AUTHED ) ) ) ;
}
}
else
{
2008-12-23 11:25:32 -05:00
if ( rsPeers - > isTrustingMe ( detail . id ) )
{
backgrndcolor = Qt : : magenta ;
2008-12-23 12:59:58 -05:00
item - > setIcon ( 0 , ( QIcon ( IMAGE_TRUSTED ) ) ) ;
2009-01-25 14:05:53 -05:00
item - > setText ( 2 , QString ( " Is trusting you " ) ) ;
2008-12-24 12:09:41 -05:00
for ( int k = 0 ; k < 8 ; + + k )
item - > setToolTip ( k , QString : : fromStdString ( detail . name ) + QString ( tr ( " is trusting you. \n Right-click and select 'make friend' to be able to connect. " ) ) ) ;
2008-12-23 11:25:32 -05:00
}
else if ( detail . trustLvl > RS_TRUST_LVL_MARGINAL )
2008-09-27 11:10:55 -04:00
{
backgrndcolor = Qt : : cyan ;
item - > setIcon ( 0 , ( QIcon ( IMAGE_DENIED ) ) ) ;
}
else if ( detail . lastConnect < 10000 ) /* 3 hours? */
{
backgrndcolor = Qt : : yellow ;
item - > setIcon ( 0 , ( QIcon ( IMAGE_DENIED ) ) ) ;
}
else
{
backgrndcolor = Qt : : gray ;
item - > setIcon ( 0 , ( QIcon ( IMAGE_DENIED ) ) ) ;
}
}
// Color each Background column in the Network Tab except the first one => 1-9
// whith the determinated color
for ( int i = 1 ; i < 10 ; i + + )
{
item - > setBackground ( i , QBrush ( backgrndcolor ) ) ;
2007-11-14 22:18:48 -05:00
}
/* add to the list */
items . append ( item ) ;
}
2008-08-31 12:52:35 -04:00
// add self to network.
RsPeerDetails pd ;
if ( rsPeers - > getPeerDetails ( rsPeers - > getOwnId ( ) , pd ) )
{
QTreeWidgetItem * self_item = new QTreeWidgetItem ( ( QTreeWidget * ) 0 ) ;
self_item - > setText ( 1 , " Accept " ) ;
self_item - > setText ( 2 , " Good " ) ;
self_item - > setText ( 3 , " 0 " ) ;
self_item - > setText ( 4 , QString : : fromStdString ( pd . name ) ) ;
std : : ostringstream out ;
out < < pd . localAddr < < " : " < < pd . localPort < < " / " < < pd . extAddr < < " : " < < pd . extPort ;
self_item - > setText ( 5 , QString : : fromStdString ( out . str ( ) ) ) ;
self_item - > setText ( 6 , QString : : fromStdString ( pd . org ) ) ;
self_item - > setText ( 7 , QString : : fromStdString ( pd . location ) ) ;
self_item - > setText ( 8 , QString : : fromStdString ( pd . email ) ) ;
self_item - > setText ( 9 , QString : : fromStdString ( pd . id ) ) ;
2008-09-27 11:10:55 -04:00
// Color each Background column in the Network Tab except the first one => 1-9
2008-08-31 12:52:35 -04:00
for ( int i = 1 ; i < 10 ; + + i )
{
self_item - > setBackground ( i , QBrush ( Qt : : darkGreen ) ) ;
}
self_item - > setIcon ( 0 , ( QIcon ( IMAGE_AUTHED ) ) ) ;
items . append ( self_item ) ;
}
2008-01-25 03:49:40 -05:00
/* remove old items ??? */
connectWidget - > clear ( ) ;
2008-08-08 10:32:13 -04:00
connectWidget - > setColumnCount ( 10 ) ;
2008-01-25 03:49:40 -05:00
2007-11-14 22:18:48 -05:00
/* add the items in! */
connectWidget - > insertTopLevelItems ( 0 , items ) ;
if ( newSelect )
{
connectWidget - > setCurrentItem ( newSelect ) ;
}
connectWidget - > update ( ) ; /* update display */
}
QTreeWidgetItem * NetworkDialog : : getCurrentNeighbour ( )
{
/* get the current, and extract the Id */
/* get a link to the table */
QTreeWidget * connectWidget = ui . connecttreeWidget ;
QTreeWidgetItem * item = connectWidget - > currentItem ( ) ;
if ( ! item )
{
2008-07-09 05:53:47 -04:00
# ifdef NET_DEBUG
2007-11-14 22:18:48 -05:00
std : : cerr < < " Invalid Current Item " < < std : : endl ;
2008-07-09 05:53:47 -04:00
# endif
2007-11-14 22:18:48 -05:00
return NULL ;
}
/* Display the columns of this item. */
return item ;
}
/* Utility Fns */
RsCertId getNeighRsCertId ( QTreeWidgetItem * i )
{
RsCertId id = ( i - > text ( 9 ) ) . toStdString ( ) ;
return id ;
}
/* So from the Neighbours Dialog we can call the following control Functions:
* ( 1 ) Load Certificate NeighLoadCertificate ( std : : string file )
* ( 2 ) Neigh Auth NeighAuthFriend ( id , code )
* ( 3 ) Neigh Add NeighAddFriend ( id )
*
* All of these rely on the finding of the current Id .
*/
std : : string NetworkDialog : : loadneighbour ( )
{
2008-07-09 05:53:47 -04:00
# ifdef NET_DEBUG
2007-11-14 22:18:48 -05:00
std : : cerr < < " ConnectionsDialog::loadneighbour() " < < std : : endl ;
2008-07-09 05:53:47 -04:00
# endif
2007-11-14 22:18:48 -05:00
QString fileName = QFileDialog : : getOpenFileName ( this , tr ( " Select Certificate " ) , " " ,
tr ( " Certificates (*.pqi *.pem) " ) ) ;
std : : string file = fileName . toStdString ( ) ;
std : : string id ;
if ( file ! = " " )
{
2008-01-25 03:49:40 -05:00
rsPeers - > LoadCertificateFromFile ( file , id ) ;
2007-11-14 22:18:48 -05:00
}
return id ;
}
void NetworkDialog : : addneighbour ( )
{
QTreeWidgetItem * c = getCurrentNeighbour ( ) ;
2008-07-09 05:53:47 -04:00
# ifdef NET_DEBUG
2007-11-14 22:18:48 -05:00
std : : cerr < < " ConnectionsDialog::addneighbour() " < < std : : endl ;
2008-07-09 05:53:47 -04:00
# endif
2007-11-14 22:18:48 -05:00
/*
rsServer - > NeighAddFriend ( getNeighRsCertId ( c ) ) ;
*/
}
void NetworkDialog : : authneighbour ( )
{
QTreeWidgetItem * c = getCurrentNeighbour ( ) ;
2008-07-09 05:53:47 -04:00
# ifdef NET_DEBUG
2007-11-14 22:18:48 -05:00
std : : cerr < < " ConnectionsDialog::authneighbour() " < < std : : endl ;
2008-07-09 05:53:47 -04:00
# endif
2007-11-14 22:18:48 -05:00
/*
RsAuthId code ;
rsServer - > NeighAuthFriend ( getNeighRsCertId ( c ) , code ) ;
*/
}
2008-08-31 12:52:35 -04:00
// Update Log Info information
void NetworkDialog : : setLogInfo ( QString info , QColor color ) {
static unsigned int nbLines = 0 ;
+ + nbLines ;
// Check log size, clear it if too big
if ( nbLines > 200 ) {
ui . infoLog - > clear ( ) ;
nbLines = 1 ;
}
ui . infoLog - > append ( QString : : fromUtf8 ( " <font color='grey'> " ) + QTime : : currentTime ( ) . toString ( QString : : fromUtf8 ( " hh:mm:ss " ) ) + QString : : fromUtf8 ( " </font> - <font color=' " ) + color . name ( ) + QString : : fromUtf8 ( " '><i> " ) + info + QString : : fromUtf8 ( " </i></font> " ) ) ;
}
void NetworkDialog : : on_actionClearLog_triggered ( ) {
ui . infoLog - > clear ( ) ;
}
void NetworkDialog : : displayInfoLogMenu ( const QPoint & pos ) {
// Log Menu
QMenu myLogMenu ( this ) ;
myLogMenu . addAction ( ui . actionClearLog ) ;
// XXX: Why mapToGlobal() is not enough?
myLogMenu . exec ( mapToGlobal ( pos ) + QPoint ( 0 , 320 ) ) ;
2008-03-31 14:37:50 -04:00
}