2011-09-06 16:44:22 -04: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 .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# include <QTreeWidget>
# include <QDebug>
# include <QTimer>
# include <QTime>
# include <QMenu>
2017-03-01 16:25:57 -05:00
# include <QSortFilterProxyModel>
2011-09-06 16:44:22 -04:00
# include <retroshare/rsiface.h>
# include <retroshare/rspeers.h>
# include <retroshare/rsdisc.h>
2013-04-10 17:21:52 -04:00
# include <retroshare/rsmsgs.h>
2011-09-06 16:44:22 -04:00
# include "common/vmessagebox.h"
# include "common/RSTreeWidgetItem.h"
2013-05-29 17:32:02 -04:00
# include <gui/common/FriendSelectionDialog.h>
2013-08-28 11:37:11 -04:00
# include "gui/msgs/MessageComposer.h"
2014-09-25 16:14:21 -04:00
# include "gui/profile/ProfileManager.h"
2011-09-06 16:44:22 -04:00
# include "NetworkDialog.h"
2012-07-17 16:40:51 -04:00
//#include "TrustView.h"
2011-09-06 16:44:22 -04:00
# include "NetworkView.h"
# include "GenCertDialog.h"
2015-05-12 16:30:44 -04:00
# include "connect/PGPKeyDialog.h"
2011-09-06 16:44:22 -04:00
# include "settings/rsharesettings.h"
# include "RetroShareLink.h"
2013-10-19 09:25:06 -04:00
# include "util/QtVersion.h"
2011-09-06 16:44:22 -04:00
# include <time.h>
/* Images for context menu icons */
# define IMAGE_LOADCERT ": / images / loadcert16.png"
2013-08-28 11:37:11 -04:00
# define IMAGE_PEERDETAILS ": / images / info16.png"
2011-09-06 16:44:22 -04:00
# define IMAGE_AUTH ": / images / encrypted16.png"
2013-05-29 17:32:02 -04:00
# define IMAGE_CLEAN_UNUSED ": / images / deletemail24.png"
2011-09-06 16:44:22 -04:00
# define IMAGE_MAKEFRIEND ": / images / user / add_user16.png"
# define IMAGE_EXPORT ": / images / exportpeers_16x16.png"
# define IMAGE_COPYLINK ": / images / copyrslink.png"
2013-08-28 11:37:11 -04:00
# define IMAGE_MESSAGE ": / images / mail_new.png"
2011-09-06 16:44:22 -04:00
/* Images for Status icons */
# define IMAGE_AUTHED ": / images / accepted16.png"
# define IMAGE_DENIED ": / images / denied16.png"
# define IMAGE_TRUSTED ": / images / rs-2.png"
2013-09-07 10:06:08 -04:00
// Defines for key list columns
# define COLUMN_CHECK 0
2011-09-06 16:44:22 -04:00
# define COLUMN_PEERNAME 1
2013-09-07 10:06:08 -04:00
# define COLUMN_I_AUTH_PEER 2
# define COLUMN_PEER_AUTH_ME 3
2013-05-27 06:43:34 -04:00
# define COLUMN_PEERID 4
# define COLUMN_LAST_USED 5
2013-09-07 10:06:08 -04:00
# define COLUMN_COUNT 6
2011-09-06 16:44:22 -04:00
2017-10-12 15:33:39 -04:00
//RsPeerId getNeighRsCertId(QTreeWidgetItem *i);
2011-09-06 16:44:22 -04:00
/******
* # define NET_DEBUG 1
* * * * */
2017-03-01 16:25:57 -05:00
static const unsigned int ROLE_SORT = Qt : : UserRole + 1 ;
2011-09-06 16:44:22 -04:00
/** Constructor */
NetworkDialog : : NetworkDialog ( QWidget * parent )
{
/* Invoke the Qt Designer generated object setup routine */
ui . setupUi ( this ) ;
2012-04-05 17:03:03 -04:00
connect ( ui . filterLineEdit , SIGNAL ( textChanged ( const QString & ) ) , this , SLOT ( filterItems ( QString ) ) ) ;
2012-10-29 06:59:26 -04:00
connect ( ui . filterLineEdit , SIGNAL ( filterChanged ( int ) ) , this , SLOT ( filterColumnChanged ( int ) ) ) ;
2011-09-06 16:44:22 -04:00
2017-10-08 15:00:15 -04:00
//list data model
float f = QFontMetricsF ( font ( ) ) . height ( ) / 14.0 ;
PGPIdItemModel = new pgpid_item_model ( neighs , f , this ) ;
PGPIdItemProxy = new pgpid_item_proxy ( this ) ;
2017-10-12 15:33:39 -04:00
connect ( ui . onlyTrustedKeys , SIGNAL ( toggled ( bool ) ) , PGPIdItemProxy , SLOT ( use_only_trusted_keys ( bool ) ) ) ;
2017-10-08 15:00:15 -04:00
PGPIdItemProxy - > setSourceModel ( PGPIdItemModel ) ;
PGPIdItemProxy - > setFilterKeyColumn ( COLUMN_PEERNAME ) ;
PGPIdItemProxy - > setFilterCaseSensitivity ( Qt : : CaseInsensitive ) ;
2017-10-12 15:33:39 -04:00
PGPIdItemProxy - > setSortRole ( Qt : : EditRole ) ; //use edit role to get raw data since we do not have edit for this model.
2017-10-08 15:00:15 -04:00
ui . connectTreeWidget - > setModel ( PGPIdItemProxy ) ;
ui . connectTreeWidget - > setContextMenuPolicy ( Qt : : CustomContextMenu ) ;
ui . connectTreeWidget - > verticalHeader ( ) - > hide ( ) ;
ui . connectTreeWidget - > setShowGrid ( false ) ;
ui . connectTreeWidget - > setUpdatesEnabled ( true ) ;
ui . connectTreeWidget - > setSortingEnabled ( true ) ;
ui . connectTreeWidget - > setSelectionBehavior ( QAbstractItemView : : SelectRows ) ;
connect ( ui . connectTreeWidget , SIGNAL ( customContextMenuRequested ( QPoint ) ) , this , SLOT ( connectTreeWidgetCostumPopupMenu ( QPoint ) ) ) ;
connect ( ui . connectTreeWidget , SIGNAL ( doubleClicked ( QModelIndex ) ) , this , SLOT ( peerdetails ( ) ) ) ;
2017-03-01 16:25:57 -05:00
2011-09-06 16:44:22 -04:00
/* Set header resize modes and initial section sizes */
2017-10-08 15:00:15 -04:00
/* QHeaderView * _header = ui.connectTreeWidget->header () ;
2015-06-26 04:14:09 -04:00
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_CHECK , QHeaderView : : Custom ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_PEERNAME , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_I_AUTH_PEER , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_PEER_AUTH_ME , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_PEERID , QHeaderView : : Interactive ) ;
2017-10-08 15:00:15 -04:00
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_LAST_USED , QHeaderView : : Interactive ) ; */
2013-09-07 10:06:08 -04:00
2011-09-06 16:44:22 -04:00
2017-10-08 15:00:15 -04:00
ui . onlyTrustedKeys - > setMinimumWidth ( 20 * f ) ;
2011-09-06 16:44:22 -04:00
2015-03-08 09:31:44 -04:00
2017-10-08 15:00:15 -04:00
/* QMenu *menu = new QMenu();
2011-09-06 16:44:22 -04:00
menu - > addAction ( ui . actionTabsright ) ;
menu - > addAction ( ui . actionTabswest ) ;
menu - > addAction ( ui . actionTabssouth ) ;
menu - > addAction ( ui . actionTabsnorth ) ;
menu - > addSeparator ( ) ;
menu - > addAction ( ui . actionTabsTriangular ) ;
2017-10-08 15:00:15 -04:00
menu - > addAction ( ui . actionTabsRounded ) ; */
2011-09-06 16:44:22 -04:00
2012-10-29 06:59:26 -04:00
/* add filter actions */
2015-06-01 14:46:33 -04:00
ui . filterLineEdit - > addFilter ( QIcon ( ) , tr ( " Name " ) , COLUMN_PEERNAME , tr ( " Search name " ) ) ;
ui . filterLineEdit - > addFilter ( QIcon ( ) , tr ( " Peer ID " ) , COLUMN_PEERID , tr ( " Search peer ID " ) ) ;
2012-10-29 06:59:26 -04:00
ui . filterLineEdit - > setCurrentFilter ( COLUMN_PEERNAME ) ;
2017-10-08 15:00:15 -04:00
connect ( ui . filterLineEdit , SIGNAL ( textChanged ( QString ) ) , PGPIdItemProxy , SLOT ( setFilterWildcard ( QString ) ) ) ;
2011-09-06 16:44:22 -04:00
}
2012-11-19 11:01:21 -05:00
void NetworkDialog : : changeEvent ( QEvent * e )
{
QWidget : : changeEvent ( e ) ;
switch ( e - > type ( ) ) {
case QEvent : : StyleChange :
2013-05-21 08:55:03 -04:00
securedUpdateDisplay ( ) ;
2012-11-19 11:01:21 -05:00
break ;
default :
// remove compiler warnings
break ;
}
}
2013-07-04 16:09:46 -04:00
void NetworkDialog : : connectTreeWidgetCostumPopupMenu ( QPoint /*point*/ )
2011-09-06 16:44:22 -04:00
{
2017-10-08 15:00:15 -04:00
QModelIndexList l = ui . connectTreeWidget - > selectionModel ( ) - > selection ( ) . indexes ( ) ;
if ( l . empty ( ) )
return ;
2011-09-06 16:44:22 -04:00
2012-08-15 16:08:18 -04:00
QMenu * contextMnu = new QMenu ;
2011-09-06 16:44:22 -04:00
2017-10-08 15:00:15 -04:00
RsPgpId peer_id ( ui . connectTreeWidget - > model ( ) - > data ( ui . connectTreeWidget - > model ( ) - > index ( l . begin ( ) - > row ( ) , COLUMN_PEERID ) ) . toString ( ) . toStdString ( ) ) ;
2011-09-06 16:44:22 -04:00
2012-08-15 16:08:18 -04:00
// That's what context menus are made for
RsPeerDetails detail ;
if ( ! rsPeers - > getGPGDetails ( peer_id , detail ) ) // that is not suppose to fail.
return ;
2011-09-06 16:44:22 -04:00
2017-03-01 16:25:57 -05:00
// if(peer_id != rsPeers->getGPGOwnId())
// {
// if(detail.accept_connection)
// contextMnu->addAction(QIcon(IMAGE_DENIED), tr("Deny friend"), this, SLOT(denyFriend()));
// else // not a friend
// contextMnu->addAction(QIcon(IMAGE_MAKEFRIEND), tr("Make friend..."), this, SLOT(makeFriend()));
// }
2012-08-15 16:08:18 -04:00
if ( peer_id = = rsPeers - > getGPGOwnId ( ) )
2014-12-30 06:11:08 -05:00
contextMnu - > addAction ( QIcon ( IMAGE_EXPORT ) , tr ( " Export/create a new node " ) , this , SLOT ( on_actionExportKey_activated ( ) ) ) ;
2013-05-29 17:32:02 -04:00
2017-03-01 16:25:57 -05:00
contextMnu - > addAction ( QIcon ( IMAGE_PEERDETAILS ) , tr ( " Profile details... " ) , this , SLOT ( peerdetails ( ) ) ) ;
2013-05-29 17:32:02 -04:00
contextMnu - > addSeparator ( ) ;
contextMnu - > addAction ( QIcon ( IMAGE_CLEAN_UNUSED ) , tr ( " Remove unused keys... " ) , this , SLOT ( removeUnusedKeys ( ) ) ) ;
contextMnu - > exec ( QCursor : : pos ( ) ) ;
}
void NetworkDialog : : removeUnusedKeys ( )
{
2015-04-17 17:36:22 -04:00
std : : set < RsPgpId > pre_selected ;
2014-03-17 16:56:06 -04:00
std : : list < RsPgpId > ids ;
2013-05-29 17:32:02 -04:00
rsPeers - > getGPGAllList ( ids ) ;
RsPeerDetails details ;
time_t now = time ( NULL ) ;
2013-09-07 10:06:08 -04:00
time_t THREE_MONTHS = 3 * 31 * 24 * 60 * 60 ; //3*DayPerMonth*HoursPerDay*MinPerHour*SecPerMin
2013-05-29 17:32:02 -04:00
2014-03-17 16:56:06 -04:00
for ( std : : list < RsPgpId > : : const_iterator it ( ids . begin ( ) ) ; it ! = ids . end ( ) ; + + it )
2012-08-15 16:08:18 -04:00
{
2014-03-17 16:56:06 -04:00
rsPeers - > getGPGDetails ( * it , details ) ;
2013-05-29 17:32:02 -04:00
2013-05-31 15:16:04 -04:00
if ( rsPeers - > haveSecretKey ( * it ) )
{
std : : cerr < < " Skipping public/secret key pair " < < * it < < std : : endl ;
continue ;
}
2017-07-27 14:43:08 -04:00
if ( now > ( time_t ) ( THREE_MONTHS + details . lastUsed ) & & ! details . accept_connection )
2013-05-29 17:32:02 -04:00
{
std : : cerr < < " Adding " < < * it < < " to pre-selection. " < < std : : endl ;
2015-04-17 17:36:22 -04:00
pre_selected . insert ( * it ) ;
2013-05-29 17:32:02 -04:00
}
2012-08-15 16:08:18 -04:00
}
2011-09-06 16:44:22 -04:00
2015-04-17 17:36:22 -04:00
std : : set < RsPgpId > selected = FriendSelectionDialog : : selectFriends_PGP ( NULL ,
2013-05-29 17:32:02 -04:00
tr ( " Clean keyring " ) ,
tr ( " The selected keys below haven't been used in the last 3 months. \n Do you want to delete them permanently ? \n \n Notes: Your old keyring will be backed up. \n The removal may fail when running multiple Retroshare instances on the same machine. " ) , FriendSelectionWidget : : MODUS_CHECK , FriendSelectionWidget : : SHOW_GPG | FriendSelectionWidget : : SHOW_NON_FRIEND_GPG ,
2014-03-17 16:56:06 -04:00
pre_selected ) ;
2013-05-29 17:32:02 -04:00
std : : cerr < < " Removing these keys from the keyring: " < < std : : endl ;
2015-04-17 17:36:22 -04:00
for ( std : : set < RsPgpId > : : const_iterator it ( selected . begin ( ) ) ; it ! = selected . end ( ) ; + + it )
2013-05-29 17:32:02 -04:00
std : : cerr < < " " < < * it < < std : : endl ;
std : : string backup_file ;
uint32_t error_code ;
2013-05-31 15:16:04 -04:00
if ( selected . empty ( ) )
return ;
2013-05-29 17:32:02 -04:00
if ( rsPeers - > removeKeysFromPGPKeyring ( selected , backup_file , error_code ) )
QMessageBox : : information ( NULL , tr ( " Keyring info " ) , tr ( " %1 keys have been deleted from your keyring. \n For security, your keyring was previously backed-up to file \n \n " ) . arg ( selected . size ( ) ) + QString : : fromStdString ( backup_file ) ) ;
else
{
QString error_string ;
2011-09-06 16:44:22 -04:00
2013-05-29 17:32:02 -04:00
switch ( error_code )
{
default :
case PGP_KEYRING_REMOVAL_ERROR_NO_ERROR : error_string = tr ( " Unknown error " ) ;
break ;
case PGP_KEYRING_REMOVAL_ERROR_CANT_REMOVE_SECRET_KEYS : error_string = tr ( " Cannot delete secret keys " ) ;
break ;
case PGP_KEYRING_REMOVAL_ERROR_CANNOT_WRITE_BACKUP :
case PGP_KEYRING_REMOVAL_ERROR_CANNOT_CREATE_BACKUP : error_string = tr ( " Cannot create backup file. Check for permissions in pgp directory, disk space, etc. " ) ;
break ;
2013-06-10 13:18:51 -04:00
case PGP_KEYRING_REMOVAL_ERROR_DATA_INCONSISTENCY : error_string = tr ( " Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. " ) ;
2013-05-31 15:16:04 -04:00
break ;
2011-09-06 16:44:22 -04:00
2013-05-29 17:32:02 -04:00
}
2015-06-12 04:27:26 -04:00
QMessageBox : : warning ( NULL , tr ( " Keyring info " ) , tr ( " Key removal has failed. Your keyring remains intact. \n \n Reported error: " ) + " " + error_string ) ;
2013-05-29 17:32:02 -04:00
}
2017-10-12 15:33:39 -04:00
updateDisplay ( ) ;
// insertConnect() ;
2011-09-06 16:44:22 -04:00
}
void NetworkDialog : : denyFriend ( )
{
2017-10-08 15:00:15 -04:00
QModelIndexList l = ui . connectTreeWidget - > selectionModel ( ) - > selection ( ) . indexes ( ) ;
if ( l . empty ( ) )
return ;
RsPgpId peer_id ( ui . connectTreeWidget - > model ( ) - > data ( ui . connectTreeWidget - > model ( ) - > index ( l . begin ( ) - > row ( ) , COLUMN_PEERID ) ) . toString ( ) . toStdString ( ) ) ;
2011-09-06 16:44:22 -04:00
rsPeers - > removeFriend ( peer_id ) ;
2013-05-21 08:55:03 -04:00
securedUpdateDisplay ( ) ;
2011-09-06 16:44:22 -04:00
}
2013-09-07 10:06:08 -04:00
/*void NetworkDialog::deleteCert()
2011-09-06 16:44:22 -04:00
{
# ifdef TODO
// do whatever is needed to remove the certificate completely, hopping this
// will eventually remove the signature we've stamped on it.
std : : cout < < " Deleting friend ! " < < std : : endl ;
QTreeWidgetItem * wi = getCurrentNeighbour ( ) ;
std : : string peer_id = wi - > text ( 9 ) . toStdString ( ) ;
rsPeers - > deleteCertificate ( peer_id ) ;
2013-05-21 08:55:03 -04:00
securedUpdateDisplay ( ) ;
2011-09-06 16:44:22 -04:00
# endif
2013-09-07 10:06:08 -04:00
} */
2011-09-06 16:44:22 -04:00
void NetworkDialog : : makeFriend ( )
{
2017-10-08 15:00:15 -04:00
QModelIndexList l = ui . connectTreeWidget - > selectionModel ( ) - > selection ( ) . indexes ( ) ;
if ( l . empty ( ) )
return ;
PGPKeyDialog : : showIt ( RsPgpId ( ui . connectTreeWidget - > model ( ) - > data ( ui . connectTreeWidget - > model ( ) - > index ( l . begin ( ) - > row ( ) , COLUMN_PEERID ) ) . toString ( ) . toStdString ( ) ) , PGPKeyDialog : : PageDetails ) ;
2011-09-06 16:44:22 -04:00
}
/** Shows Peer Information/Auth Dialog */
void NetworkDialog : : peerdetails ( )
{
2017-10-08 15:00:15 -04:00
QModelIndexList l = ui . connectTreeWidget - > selectionModel ( ) - > selection ( ) . indexes ( ) ;
if ( l . empty ( ) )
return ;
PGPKeyDialog : : showIt ( RsPgpId ( ui . connectTreeWidget - > model ( ) - > data ( ui . connectTreeWidget - > model ( ) - > index ( l . begin ( ) - > row ( ) , COLUMN_PEERID ) ) . toString ( ) . toStdString ( ) ) , PGPKeyDialog : : PageDetails ) ;
2011-09-06 16:44:22 -04:00
}
void NetworkDialog : : copyLink ( )
{
2017-10-08 15:00:15 -04:00
QModelIndexList l = ui . connectTreeWidget - > selectionModel ( ) - > selection ( ) . indexes ( ) ;
if ( l . empty ( ) )
return ;
2011-09-06 16:44:22 -04:00
2017-10-08 15:00:15 -04:00
RsPgpId peer_id ( ui . connectTreeWidget - > model ( ) - > data ( ui . connectTreeWidget - > model ( ) - > index ( l . begin ( ) - > row ( ) , COLUMN_PEERID ) ) . toString ( ) . toStdString ( ) ) ;
2011-09-06 16:44:22 -04:00
2011-09-11 18:07:24 -04:00
QList < RetroShareLink > urls ;
2017-07-16 07:11:47 -04:00
RetroShareLink link = RetroShareLink : : createPerson ( peer_id ) ;
if ( link . valid ( ) ) {
2011-09-06 16:44:22 -04:00
urls . push_back ( link ) ;
}
RSLinkClipboard : : copyLinks ( urls ) ;
}
2014-03-29 10:18:05 -04:00
//void NetworkDialog::sendDistantMessage()
//{
// QTreeWidgetItem *wi = getCurrentNeighbour();
// if (wi == NULL) {
// return;
// }
//
// MessageComposer *nMsgDialog = MessageComposer::newMsg();
// if (nMsgDialog == NULL) {
// return;
// }
//
// DistantMsgPeerId pid ;
// RsPgpId mGpgId(wi->text(COLUMN_PEERID).toStdString()) ;
//
// if(rsMsgs->getDistantMessagePeerId(mGpgId,pid))
// {
// nMsgDialog->addRecipient(MessageComposer::TO, pid, mGpgId);
// nMsgDialog->show();
// nMsgDialog->activateWindow();
// }
//
// /* window will destroy itself! */
//}
2013-08-28 11:37:11 -04:00
2011-09-06 16:44:22 -04:00
/* Utility Fns */
2017-10-12 15:33:39 -04:00
/*RsPeerId getNeighRsCertId(QTreeWidgetItem *i)
2011-09-06 16:44:22 -04:00
{
2014-03-17 16:56:06 -04:00
RsPeerId id ( ( i - > text ( COLUMN_PEERID ) ) . toStdString ( ) ) ;
2011-09-06 16:44:22 -04:00
return id ;
2017-10-12 15:33:39 -04:00
} */
2011-09-06 16:44:22 -04:00
void NetworkDialog : : on_actionAddFriend_activated ( )
{
// /* Create a new input dialog, which allows users to create files, too */
// use misc::getOpenFileName
// QFileDialog dialog (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);
}
void NetworkDialog : : on_actionExportKey_activated ( )
{
2014-09-25 16:14:21 -04:00
ProfileManager prof ;
prof . exec ( ) ;
2011-09-06 16:44:22 -04:00
}
void NetworkDialog : : on_actionCreate_New_Profile_activated ( )
{
// GenCertDialog gencertdialog (this);
// gencertdialog.exec ();
}
2013-02-22 16:42:27 -05:00
// void NetworkDialog::on_actionTabsnorth_activated()
// {
// ui.networkTab->setTabPosition(QTabWidget::North);
//
// Settings->setValueToGroup("NetworkDialog", "TabWidget_Position",ui.networkTab->tabPosition());
// }
//
// void NetworkDialog::on_actionTabssouth_activated()
// {
// ui.networkTab->setTabPosition(QTabWidget::South);
//
// Settings->setValueToGroup("NetworkDialog", "TabWidget_Position",ui.networkTab->tabPosition());
//
// }
//
// void NetworkDialog::on_actionTabswest_activated()
// {
// ui.networkTab->setTabPosition(QTabWidget::West);
//
// Settings->setValueToGroup("NetworkDialog", "TabWidget_Position",ui.networkTab->tabPosition());
// }
//
// void NetworkDialog::on_actionTabsright_activated()
// {
// ui.networkTab->setTabPosition(QTabWidget::East);
//
// Settings->setValueToGroup("NetworkDialog", "TabWidget_Position",ui.networkTab->tabPosition());
// }
//
// void NetworkDialog::on_actionTabsTriangular_activated()
// {
// ui.networkTab->setTabShape(QTabWidget::Triangular);
// ui.tabBottom->setTabShape(QTabWidget::Triangular);
// }
//
// void NetworkDialog::on_actionTabsRounded_activated()
// {
// ui.networkTab->setTabShape(QTabWidget::Rounded);
// ui.tabBottom->setTabShape(QTabWidget::Rounded);
// }
//
// void NetworkDialog::loadtabsettings()
// {
// Settings->beginGroup("NetworkDialog");
//
// if(Settings->value("TabWidget_Position","0").toInt() == 0)
// {
// qDebug() << "Tab North";
// ui.networkTab->setTabPosition(QTabWidget::North);
// }
// else if (Settings->value("TabWidget_Position","1").toInt() == 1)
// {
// qDebug() << "Tab South";
// ui.networkTab->setTabPosition(QTabWidget::South);
// }
// else if (Settings->value("TabWidget_Position","2").toInt() ==2)
// {
// qDebug() << "Tab West";
// ui.networkTab->setTabPosition(QTabWidget::West);
// }
// else if(Settings->value("TabWidget_Position","3").toInt() ==3)
// {
// qDebug() << "Tab East";
// ui.networkTab->setTabPosition(QTabWidget::East);
// }
//
// Settings->endGroup();
// }
2011-09-06 16:44:22 -04:00
2017-10-08 15:00:15 -04:00
void NetworkDialog : : filterColumnChanged ( int col )
2011-09-06 16:44:22 -04:00
{
2017-10-08 15:00:15 -04:00
if ( PGPIdItemProxy )
PGPIdItemProxy - > setFilterKeyColumn ( col ) ;
//filterItems(ui.filterLineEdit->text());
2011-09-06 16:44:22 -04:00
}
2017-10-08 15:00:15 -04:00
void NetworkDialog : : updateDisplay ( )
{
if ( ! rsPeers )
return ;
//update ids list
std : : list < RsPgpId > new_neighs ;
rsPeers - > getGPGAllList ( new_neighs ) ;
//refresh model
PGPIdItemModel - > data_updated ( new_neighs ) ;
}