/* * This file Copyright (C) 2009 Charles Kerr * * This file is licensed by the GPL version 2. Works owned by the * Transmission project are granted a special exemption to clause 2(b) * so that the bulk of its code can remain under the MIT license. * This exemption does not extend to derived works not owned by * the Transmission project. * * $Id$ */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "details.h" #include "file-tree.h" #include "hig.h" #include "session.h" #include "squeezelabel.h" #include "torrent.h" #include "torrent-model.h" #include "utils.h" class Prefs; class Session; /**** ***** ****/ namespace { const int REFRESH_INTERVAL_MSEC = 4000; enum // peer columns { COL_LOCK, COL_UP, COL_DOWN, COL_PERCENT, COL_STATUS, COL_ADDRESS, COL_CLIENT, N_COLUMNS }; } /*** **** ***/ class PeerItem: public QTreeWidgetItem { Peer peer; QString collatedAddress; QString status; public: virtual ~PeerItem( ) { } PeerItem( const Peer& p ) { peer = p; int q[4]; if( sscanf( p.address.toUtf8().constData(), "%d.%d.%d.%d", q+0, q+1, q+2, q+3 ) == 4 ) collatedAddress.sprintf( "%03d.%03d.%03d.%03d", q[0], q[1], q[2], q[3] ); else collatedAddress = p.address; } public: void refresh( const Peer& p ) { peer = p; } void setStatus( const QString& s ) { status = s; } virtual bool operator< ( const QTreeWidgetItem & other ) const { const PeerItem * i = dynamic_cast(&other); QTreeWidget * tw( treeWidget( ) ); const int column = tw ? tw->sortColumn() : 0; switch( column ) { case COL_UP: return peer.rateToPeer < i->peer.rateToPeer; case COL_DOWN: return peer.rateToClient < i->peer.rateToClient; case COL_PERCENT: return peer.progress < i->peer.progress; case COL_STATUS: return status < i->status; case COL_CLIENT: return peer.clientName < i->peer.clientName; case COL_LOCK: return peer.isEncrypted && !i->peer.isEncrypted; default: return collatedAddress < i->collatedAddress; } } }; /*** **** ***/ Details :: Details( Session& session, TorrentModel& model, QWidget * parent ): QDialog( parent, Qt::Dialog ), mySession( session ), myModel( model ), myHavePendingRefresh( false ) { QVBoxLayout * layout = new QVBoxLayout( this ); setWindowTitle( tr( "Torrent Properties" ) ); QTabWidget * t = new QTabWidget( this ); QWidget * w; t->addTab( w = createActivityTab( ), tr( "Activity" ) ); myWidgets << w; t->addTab( w = createPeersTab( ), tr( "Peers" ) ); myWidgets << w; t->addTab( w = createTrackerTab( ), tr( "Tracker" ) ); myWidgets << w; t->addTab( w = createInfoTab( ), tr( "Information" ) ); myWidgets << w; t->addTab( w = createFilesTab( ), tr( "Files" ) ); myWidgets << w; t->addTab( w = createOptionsTab( ), tr( "Options" ) ); myWidgets << w; layout->addWidget( t ); QDialogButtonBox * buttons = new QDialogButtonBox( QDialogButtonBox::Close, Qt::Horizontal, this ); connect( buttons, SIGNAL(rejected()), this, SLOT(deleteLater())); layout->addWidget( buttons ); connect( &myTimer, SIGNAL(timeout()), this, SLOT(onTimer())); onTimer( ); myTimer.setSingleShot( false ); myTimer.start( REFRESH_INTERVAL_MSEC ); } Details :: ~Details( ) { } void Details :: setIds( const QSet& ids ) { if( ids == myIds ) return; // stop listening to the old torrents foreach( int id, myIds ) { const Torrent * tor = myModel.getTorrentFromId( id ); if( tor ) disconnect( tor, SIGNAL(torrentChanged(int)), this, SLOT(onTorrentChanged()) ); } myFileTreeView->clear( ); myIds = ids; // listen to the new torrents foreach( int id, myIds ) { const Torrent * tor = myModel.getTorrentFromId( id ); if( tor ) connect( tor, SIGNAL(torrentChanged(int)), this, SLOT(onTorrentChanged()) ); } foreach( QWidget * w, myWidgets ) w->setEnabled( false ); onTimer( ); } /*** **** ***/ void Details :: onTimer( ) { if( !myIds.empty( ) ) mySession.refreshExtraStats( myIds ); } void Details :: onTorrentChanged( ) { if( !myHavePendingRefresh ) { myHavePendingRefresh = true; QTimer::singleShot( 100, this, SLOT(refresh())); } } void Details :: refresh( ) { int i; QLocale locale; const int n = myIds.size( ); const bool single = n == 1; const QString blank; const QFontMetrics fm( fontMetrics( ) ); QList torrents; QString string; const QString none = tr( "None" ); const QString mixed = tr( "Mixed" ); const QString unknown = tr( "Unknown" ); // build a list of torrents foreach( int id, myIds ) { const Torrent * tor = myModel.getTorrentFromId( id ); if( tor ) torrents << tor; } /// /// activity tab /// // myStateLabel if( torrents.empty( ) ) string = none; else { string = torrents[0]->activityString( ); foreach( const Torrent* t, torrents ) { if( string != t->activityString( ) ) { string = mixed; break; } } } myStateLabel->setText( string ); // myProgressLabel if( torrents.empty( ) ) string = tr( "None" ); else { double sizeWhenDone = 0; double leftUntilDone = 0; foreach( const Torrent * t, torrents ) { sizeWhenDone += t->sizeWhenDone( ); leftUntilDone += t->leftUntilDone( ); } string = locale.toString( 100.0*((sizeWhenDone-leftUntilDone)/sizeWhenDone), 'f', 2 ); } myProgressLabel->setText( string ); // myHaveLabel int64_t haveTotal = 0; int64_t haveVerified = 0; int64_t verifiedPieces = 0; foreach( const Torrent * t, torrents ) { haveTotal += t->haveTotal( ); const uint64_t v = t->haveVerified( ); haveVerified += v; verifiedPieces += v / t->pieceSize( ); } myHaveLabel->setText( tr( "%1 (%2 verified in %L3 pieces)" ) .arg( Utils::sizeToString( haveTotal ) ) .arg( Utils::sizeToString( haveVerified ) ) .arg( verifiedPieces ) ); int64_t sum = 0; foreach( const Torrent * t, torrents ) sum += t->downloadedEver( ); myDownloadedLabel->setText( Utils::sizeToString( sum ) ); sum = 0; foreach( const Torrent * t, torrents ) sum += t->uploadedEver( ); myUploadedLabel->setText( Utils::sizeToString( sum ) ); sum = 0; foreach( const Torrent *t, torrents ) sum += t->failedEver( ); myFailedLabel->setText( Utils::sizeToString( sum ) ); double d = 0; foreach( const Torrent *t, torrents ) d += t->ratio( ); myRatioLabel->setText( Utils :: ratioToString( d / n ) ); Speed speed; foreach( const Torrent *t, torrents ) speed += t->swarmSpeed( ); mySwarmSpeedLabel->setText( Utils::speedToString( speed ) ); if( torrents.empty( ) ) string = none; else { string = torrents[0]->dateAdded().toString(); foreach( const Torrent * t, torrents ) { if( string != t->dateAdded().toString() ) { string = mixed; break; } } } myAddedDateLabel->setText( string ); if( torrents.empty( ) ) string = none; else { QDateTime latest = torrents[0]->lastActivity( ); foreach( const Torrent * t, torrents ) { const QDateTime dt = t->lastActivity( ); if( latest < dt ) latest = dt; } string = latest.toString( ); } myActivityLabel->setText( string ); if( torrents.empty( ) ) string = none; else { string = torrents[0]->getError( ); foreach( const Torrent * t, torrents ) { if( string != t->getError( ) ) { string = mixed; break; } } } myErrorLabel->setText( string ); /// /// information tab /// // myPiecesLabel if( torrents.empty( ) ) string = none; else { int64_t pieceCount = 0; uint64_t baseSize = torrents[0]->pieceSize( ); foreach( const Torrent * t, torrents ) { pieceCount += t->pieceCount( ); if( baseSize != t->pieceSize( ) ) baseSize = 0; } if( !baseSize ) // mixed piece size string = tr( "%L1 Pieces" ).arg( pieceCount ); else string = tr( "%L1 Pieces @ %2" ).arg( pieceCount ) .arg( Utils::sizeToString( baseSize ) ); } myPiecesLabel->setText( string ); // myHashLabel if( torrents.empty( ) ) string = none; else { string = torrents[0]->hashString( ); foreach( const Torrent * t, torrents ) { if( string != t->hashString( ) ) { string = mixed; break; } } } myHashLabel->setText( string ); // myPrivacyLabel if( torrents.empty( ) ) string = none; else { bool b = torrents[0]->isPrivate( ); string = b ? tr( "Private to this tracker -- PEX disabled" ) : tr( "Public torrent" ); foreach( const Torrent * t, torrents ) { if( b != t->isPrivate( ) ) { string = mixed; break; } } } myPrivacyLabel->setText( string ); // myCommentBrowser if( torrents.empty( ) ) string = none; else { string = torrents[0]->comment( ); foreach( const Torrent * t, torrents ) { if( string != t->comment( ) ) { string = mixed; break; } } } myCommentBrowser->setText( string ); // myCreatorLabel if( torrents.empty( ) ) string = none; else { string = torrents[0]->creator( ); foreach( const Torrent * t, torrents ) { if( string != t->creator( ) ) { string = mixed; break; } } } myCreatorLabel->setText( string.isEmpty() ? unknown : string ); // myDateCreatedLabel if( torrents.empty( ) ) string = none; else { string = torrents[0]->dateCreated().toString(); foreach( const Torrent * t, torrents ) { if( string != t->dateCreated().toString() ) { string = mixed; break; } } } myDateCreatedLabel->setText( string ); // myDestinationLabel if( torrents.empty( ) ) string = none; else { string = torrents[0]->getPath( ); foreach( const Torrent * t, torrents ) { if( string != t->getPath( ) ) { string = mixed; break; } } } myDestinationLabel->setText( string ); // myTorrentFileLabel if( torrents.empty( ) ) string = none; else { string = torrents[0]->torrentFile( ); foreach( const Torrent * t, torrents ) { if( string != t->torrentFile( ) ) { string = mixed; break; } } } myTorrentFileLabel->setText( string ); /// /// Options Tab /// if( !torrents.empty( ) ) { int i; const Torrent * baseline = *torrents.begin(); const Torrent * tor; bool uniform; bool baselineFlag; int baselineInt; // mySessionLimitCheck uniform = true; baselineFlag = baseline->honorsSessionLimits( ); foreach( tor, torrents ) if( baselineFlag != tor->honorsSessionLimits( ) ) { uniform = false; break; } mySessionLimitCheck->setChecked( uniform && baselineFlag ); // mySingleDownCheck uniform = true; baselineFlag = baseline->downloadIsLimited( ); foreach( tor, torrents ) if( baselineFlag != tor->downloadIsLimited( ) ) { uniform = false; break; } mySingleDownCheck->setChecked( uniform && baselineFlag ); // mySingleUpCheck uniform = true; baselineFlag = baseline->uploadIsLimited( ); foreach( tor, torrents ) if( baselineFlag != tor->uploadIsLimited( ) ) { uniform = false; break; } mySingleUpCheck->setChecked( uniform && baselineFlag ); // myBandwidthPriorityCombo uniform = true; baselineInt = baseline->getBandwidthPriority( ); foreach( tor, torrents ) if ( baselineInt != tor->getBandwidthPriority( ) ) { uniform = false; break; } if( uniform ) i = myBandwidthPriorityCombo->findData( baselineInt ); else i = -1; myBandwidthPriorityCombo->blockSignals( true ); myBandwidthPriorityCombo->setCurrentIndex( i ); myBandwidthPriorityCombo->blockSignals( false ); mySingleDownSpin->blockSignals( true ); mySingleDownSpin->setValue( int(tor->downloadLimit().kbps()) ); mySingleDownSpin->blockSignals( false ); mySingleUpSpin->blockSignals( true ); mySingleUpSpin->setValue( int(tor->uploadLimit().kbps()) ); mySingleUpSpin->blockSignals( false ); myPeerLimitSpin->blockSignals( true ); myPeerLimitSpin->setValue( tor->peerLimit() ); myPeerLimitSpin->blockSignals( false ); // ratio radios uniform = true; baselineInt = tor->seedRatioMode( ); foreach( tor, torrents ) if( baselineInt != tor->seedRatioMode( ) ) { uniform = false; break; } if( !uniform ) { mySeedGlobalRadio->setChecked( false ); mySeedCustomRadio->setChecked( false ); mySeedForeverRadio->setChecked( false ); } else { QRadioButton * rb; switch( baselineInt ) { case TR_RATIOLIMIT_GLOBAL: rb = mySeedGlobalRadio; break; case TR_RATIOLIMIT_SINGLE: rb = mySeedCustomRadio; break; case TR_RATIOLIMIT_UNLIMITED: rb = mySeedForeverRadio; break; } rb->setChecked( true ); } mySeedCustomSpin->blockSignals( true ); mySeedCustomSpin->setValue( tor->seedRatioLimit( ) ); mySeedCustomSpin->blockSignals( false ); } // tracker tab // const time_t now( time( 0 ) ); // myScrapeTimePrevLabel if( torrents.empty( ) ) string = none; else { QDateTime latest = torrents[0]->lastScrapeTime(); foreach( const Torrent * t, torrents ) { const QDateTime e = t->lastScrapeTime(); if( latest < e ) latest = e; } string = latest.toString(); } myScrapeTimePrevLabel->setText( string ); // myScrapeResponseLabel if( torrents.empty( ) ) string = none; else { string = torrents[0]->scrapeResponse( ); foreach( const Torrent * t, torrents ) { if( string != t->scrapeResponse( ) ) { string = mixed; break; } } } myScrapeResponseLabel->setText( string ); // myScrapeTimeNextLabel if( torrents.empty( ) ) string = none; else { QDateTime soonest = torrents[0]->nextScrapeTime( ); foreach( const Torrent * t, torrents ) { const QDateTime e = t->nextScrapeTime( ); if( soonest > e ) soonest = e; } string = Utils::timeToString( soonest.toTime_t() - now ); } myScrapeTimeNextLabel->setText( string ); // myAnnounceTimePrevLabel if( torrents.empty( ) ) string = none; else { QDateTime latest = torrents[0]->lastAnnounceTime(); foreach( const Torrent * t, torrents ) { const QDateTime e = t->lastAnnounceTime(); if( latest < e ) latest = e; } string = latest.toString(); } myAnnounceTimePrevLabel->setText( string ); // myAnnounceTimeNextLabel if( torrents.empty( ) ) string = none; else { QDateTime soonest = torrents[0]->nextAnnounceTime( ); foreach( const Torrent * t, torrents ) { const QDateTime e = t->nextAnnounceTime( ); if( soonest > e ) soonest = e; } string = Utils::timeToString( soonest.toTime_t() - now ); } myAnnounceTimeNextLabel->setText( string ); // myAnnounceManualLabel if( torrents.empty( ) ) string = none; else { QDateTime soonest = torrents[0]->nextAnnounceTime( ); foreach( const Torrent * t, torrents ) { const QDateTime e = t->nextAnnounceTime( ); if( soonest > e ) soonest = e; } if( soonest <= QDateTime::currentDateTime( ) ) string = tr( "Now" ); else string = Utils::timeToString( soonest.toTime_t() - now ); } myAnnounceManualLabel->setText( string ); // myAnnounceResponseLabel if( torrents.empty( ) ) string = none; else { string = torrents[0]->announceResponse( ); foreach( const Torrent * t, torrents ) { if( string != t->announceResponse( ) ) { string = mixed; break; } } } myAnnounceResponseLabel->setText( string ); // myTrackerLabel if( torrents.empty( ) ) string = none; else { string = QUrl(torrents[0]->announceUrl()).host(); foreach( const Torrent * t, torrents ) { if( string != QUrl(t->announceUrl()).host() ) { string = mixed; break; } } } myTrackerLabel->setText( string ); /// /// Peers tab /// i = 0; foreach( const Torrent * t, torrents ) i += t->seeders( ); mySeedersLabel->setText( locale.toString( i ) ); i = 0; foreach( const Torrent * t, torrents ) i += t->leechers( ); myLeechersLabel->setText( locale.toString( i ) ); i = 0; foreach( const Torrent * t, torrents ) i += t->timesCompleted( ); myTimesCompletedLabel->setText( locale.toString( i ) ); QMap peers2; QList newItems; foreach( const Torrent * t, torrents ) { const QString idStr( QString::number( t->id( ) ) ); PeerList peers = t->peers( ); foreach( const Peer& peer, peers ) { const QString key = idStr + ":" + peer.address; PeerItem * item = (PeerItem*) myPeers.value( key, 0 ); if( item == 0 ) // new peer has connected { static const QIcon myEncryptionIcon( ":/icons/encrypted.png" ); static const QIcon myEmptyIcon; item = new PeerItem( peer ); item->setTextAlignment( COL_UP, Qt::AlignRight ); item->setTextAlignment( COL_DOWN, Qt::AlignRight ); item->setTextAlignment( COL_PERCENT, Qt::AlignRight ); item->setIcon( COL_LOCK, peer.isEncrypted ? myEncryptionIcon : myEmptyIcon ); item->setToolTip( COL_LOCK, peer.isEncrypted ? tr( "Encrypted connection" ) : "" ); item->setText( COL_ADDRESS, peer.address ); item->setText( COL_CLIENT, peer.clientName ); newItems << item; } QString code; if( peer.isDownloadingFrom ) { code += 'D'; } else if( peer.clientIsInterested ) { code += 'd'; } if( peer.isUploadingTo ) { code += 'U'; } else if( peer.peerIsInterested ) { code += 'u'; } if( !peer.clientIsChoked && !peer.clientIsInterested ) { code += 'K'; } if( !peer.peerIsChoked && !peer.peerIsInterested ) { code += '?'; } if( peer.isEncrypted ) { code += 'E'; } if( peer.isIncoming ) { code += 'I'; } item->setStatus( code ); item->refresh( peer ); QString codeTip; foreach( QChar ch, code ) { QString txt; switch( ch.toAscii() ) { case 'O': txt = tr( "Optimistic unchoke" ); break; case 'D': txt = tr( "Downloading from this peer" ); break; case 'd': txt = tr( "We would download from this peer if they would let us" ); break; case 'U': txt = tr( "Uploading to peer" ); break; case 'u': txt = tr( "We would upload to this peer if they asked" ); break; case 'K': txt = tr( "Peer has unchoked us, but we're not interested" ); break; case '?': txt = tr( "We unchoked this peer, but they're not interested" ); break; case 'E': txt = tr( "Encrypted connection" ); break; case 'X': txt = tr( "Peer was discovered through Peer Exchange (PEX)" ); break; case 'I': txt = tr( "Peer is an incoming connection" ); break; } if( !txt.isEmpty( ) ) codeTip += QString("%1: %2\n").arg(ch).arg(txt); } if( !codeTip.isEmpty() ) codeTip.resize( codeTip.size()-1 ); // eat the trailing linefeed item->setText( COL_UP, peer.rateToPeer.isZero() ? "" : Utils::speedToString( peer.rateToPeer ) ); item->setText( COL_DOWN, peer.rateToClient.isZero() ? "" : Utils::speedToString( peer.rateToClient ) ); item->setText( COL_PERCENT, peer.progress > 0 ? QString( "%1%" ).arg( locale.toString((int)(peer.progress*100.0))) : "" ); item->setText( COL_STATUS, code ); item->setToolTip( COL_STATUS, codeTip ); peers2.insert( key, item ); } } myPeerTree->addTopLevelItems( newItems ); foreach( QString key, myPeers.keys() ) { if( !peers2.contains( key ) ) { // old peer has disconnected QTreeWidgetItem * item = myPeers.value( key, 0 ); myPeerTree->takeTopLevelItem( myPeerTree->indexOfTopLevelItem( item ) ); delete item; } } myPeers = peers2; if( single ) myFileTreeView->update( torrents[0]->files( ) ); else myFileTreeView->clear( ); myHavePendingRefresh = false; foreach( QWidget * w, myWidgets ) w->setEnabled( true ); } void Details :: enableWhenChecked( QCheckBox * box, QWidget * w ) { connect( box, SIGNAL(toggled(bool)), w, SLOT(setEnabled(bool)) ); w->setEnabled( box->isChecked( ) ); } /*** **** ***/ QWidget * Details :: createActivityTab( ) { HIG * hig = new HIG( this ); hig->addSectionTitle( tr( "Transfer" ) ); hig->addRow( tr( "State:" ), myStateLabel = new SqueezeLabel ); hig->addRow( tr( "Progress:" ), myProgressLabel = new SqueezeLabel ); hig->addRow( tr( "Have:" ), myHaveLabel = new SqueezeLabel ); hig->addRow( tr( "Downloaded:" ), myDownloadedLabel = new SqueezeLabel ); hig->addRow( tr( "Uploaded:" ), myUploadedLabel = new SqueezeLabel ); hig->addRow( tr( "Failed DL:" ), myFailedLabel = new SqueezeLabel ); hig->addRow( tr( "Ratio:" ), myRatioLabel = new SqueezeLabel ); hig->addRow( tr( "Swarm Rate:" ), mySwarmSpeedLabel = new SqueezeLabel ); hig->addRow( tr( "Error:" ), myErrorLabel = new SqueezeLabel ); hig->addSectionDivider( ); hig->addSectionTitle( tr( "Dates" ) ); hig->addRow( tr( "Added on:" ), myAddedDateLabel = new SqueezeLabel ); hig->addRow( tr( "Last activity on:" ), myActivityLabel = new SqueezeLabel ); hig->finish( ); return hig; } /*** **** ***/ void Details :: onHonorsSessionLimitsToggled( bool val ) { mySession.torrentSet( myIds, "honorsSessionLimits", val ); } void Details :: onDownloadLimitedToggled( bool val ) { mySession.torrentSet( myIds, "downloadLimited", val ); } void Details :: onDownloadLimitChanged( int val ) { mySession.torrentSet( myIds, "downloadLimit", val ); } void Details :: onUploadLimitedToggled( bool val ) { mySession.torrentSet( myIds, "uploadLimited", val ); } void Details :: onUploadLimitChanged( int val ) { mySession.torrentSet( myIds, "uploadLimit", val ); } #define RATIO_KEY "seedRatioMode" void Details :: onSeedUntilChanged( bool b ) { if( b ) mySession.torrentSet( myIds, RATIO_KEY, sender()->property(RATIO_KEY).toInt() ); } void Details :: onSeedRatioLimitChanged( double val ) { QSet ids; foreach( int id, myIds ) { const Torrent * tor = myModel.getTorrentFromId( id ); if( tor && tor->seedRatioLimit( ) ) ids.insert( id ); } if( !ids.empty( ) ) mySession.torrentSet( ids, "seedRatioLimit", val ); } void Details :: onMaxPeersChanged( int val ) { mySession.torrentSet( myIds, "peer-limit", val ); } void Details :: onBandwidthPriorityChanged( int index ) { if( index != -1 ) { const int priority = myBandwidthPriorityCombo->itemData(index).toInt( ); mySession.torrentSet( myIds, "bandwidthPriority", priority ); } } QWidget * Details :: createOptionsTab( ) { //QWidget * l; QSpinBox * s; QCheckBox * c; QComboBox * m; QHBoxLayout * h; QRadioButton * r; QDoubleSpinBox * ds; HIG * hig = new HIG( this ); hig->addSectionTitle( tr( "Speed" ) ); c = new QCheckBox( tr( "Honor global &limits" ) ); mySessionLimitCheck = c; hig->addWideControl( c ); connect( c, SIGNAL(clicked(bool)), this, SLOT(onHonorsSessionLimitsToggled(bool)) ); c = new QCheckBox( tr( "Limit &download speed (KB/s)" ) ); mySingleDownCheck = c; s = new QSpinBox( ); mySingleDownSpin = s; s->setRange( 0, INT_MAX ); hig->addRow( c, s ); enableWhenChecked( c, s ); connect( c, SIGNAL(clicked(bool)), this, SLOT(onDownloadLimitedToggled(bool)) ); connect( s, SIGNAL(valueChanged(int)), this, SLOT(onDownloadLimitChanged(int))); c = new QCheckBox( tr( "Limit &upload speed (KB/s)" ) ); mySingleUpCheck = c; s = new QSpinBox( ); mySingleUpSpin = s; s->setRange( 0, INT_MAX ); hig->addRow( c, s ); enableWhenChecked( c, s ); connect( c, SIGNAL(clicked(bool)), this, SLOT(onUploadLimitedToggled(bool)) ); connect( s, SIGNAL(valueChanged(int)), this, SLOT(onUploadLimitChanged(int))); m = new QComboBox; m->addItem( tr( "Low" ), TR_PRI_LOW ); m->addItem( tr( "Normal" ), TR_PRI_NORMAL ); m->addItem( tr( "High" ), TR_PRI_HIGH ); connect( m, SIGNAL(currentIndexChanged(int)), this, SLOT(onBandwidthPriorityChanged(int))); hig->addRow( tr( "&Bandwidth priority:" ), m ); myBandwidthPriorityCombo = m; hig->addSectionDivider( ); hig->addSectionTitle( tr( "Seed-Until Ratio" ) ); r = new QRadioButton( tr( "Use &global setting" ) ); r->setProperty( RATIO_KEY, TR_RATIOLIMIT_GLOBAL ); connect( r, SIGNAL(clicked(bool)), this, SLOT(onSeedUntilChanged(bool))); mySeedGlobalRadio = r; hig->addWideControl( r ); r = new QRadioButton( tr( "Seed ®ardless of ratio" ) ); r->setProperty( RATIO_KEY, TR_RATIOLIMIT_UNLIMITED ); connect( r, SIGNAL(clicked(bool)), this, SLOT(onSeedUntilChanged(bool))); mySeedForeverRadio = r; hig->addWideControl( r ); h = new QHBoxLayout( ); h->setSpacing( HIG :: PAD ); r = new QRadioButton( tr( "&Stop seeding when a torrent's ratio reaches" ) ); r->setProperty( RATIO_KEY, TR_RATIOLIMIT_SINGLE ); connect( r, SIGNAL(clicked(bool)), this, SLOT(onSeedUntilChanged(bool))); mySeedCustomRadio = r; h->addWidget( r ); ds = new QDoubleSpinBox( ); ds->setRange( 0.5, INT_MAX ); connect( ds, SIGNAL(valueChanged(double)), this, SLOT(onSeedRatioLimitChanged(double))); mySeedCustomSpin = ds; h->addWidget( ds ); hig->addWideControl( h ); hig->addSectionDivider( ); hig->addSectionTitle( tr( "Peer Connections" ) ); s = new QSpinBox( ); s->setRange( 1, 300 ); connect( s, SIGNAL(valueChanged(int)), this, SLOT(onMaxPeersChanged(int))); myPeerLimitSpin = s; hig->addRow( tr( "&Maximum Peers" ), s ); hig->finish( ); return hig; } /*** **** ***/ QWidget * Details :: createInfoTab( ) { HIG * hig = new HIG( ); hig->addSectionTitle( tr( "Details" ) ); hig->addRow( tr( "Pieces:" ), myPiecesLabel = new SqueezeLabel ); hig->addRow( tr( "Hash:" ), myHashLabel = new SqueezeLabel ); hig->addRow( tr( "Privacy:" ), myPrivacyLabel = new SqueezeLabel ); hig->addRow( tr( "Comment:" ), myCommentBrowser = new QTextBrowser ); hig->addSectionDivider( ); hig->addSectionTitle( tr( "Origins" ) ); hig->addRow( tr( "Creator:" ), myCreatorLabel = new SqueezeLabel ); hig->addRow( tr( "Date:" ), myDateCreatedLabel = new SqueezeLabel ); hig->addSectionDivider( ); hig->addSectionTitle( tr( "Origins" ) ); hig->addRow( tr( "Destination folder:" ), myDestinationLabel = new SqueezeLabel ); hig->addRow( tr( "Torrent file:" ), myTorrentFileLabel = new SqueezeLabel ); const int h = QFontMetrics(myCommentBrowser->font()).lineSpacing() * 4; myTorrentFileLabel->setMinimumWidth( 300 ); myTorrentFileLabel->setSizePolicy ( QSizePolicy::Expanding, QSizePolicy::Preferred ); myCommentBrowser->setMinimumHeight( h ); myCommentBrowser->setMaximumHeight( h ); hig->finish( ); return hig; } /*** **** ***/ QWidget * Details :: createTrackerTab( ) { HIG * hig = new HIG( ); hig->addSectionTitle( tr( "Scrape" ) ); hig->addRow( tr( "Last scrape at:" ), myScrapeTimePrevLabel = new SqueezeLabel ); hig->addRow( tr( "Tracker responded:" ), myScrapeResponseLabel = new SqueezeLabel ); hig->addRow( tr( "Next scrape in:" ), myScrapeTimeNextLabel = new SqueezeLabel ); hig->addSectionDivider( ); hig->addSectionTitle( tr( "Announce" ) ); hig->addRow( tr( "Tracker:" ), myTrackerLabel = new SqueezeLabel ); hig->addRow( tr( "Last announce at:" ), myAnnounceTimePrevLabel = new SqueezeLabel ); hig->addRow( tr( "Tracker responded:" ), myAnnounceResponseLabel = new SqueezeLabel ); hig->addRow( tr( "Next announce in:" ), myAnnounceTimeNextLabel = new SqueezeLabel ); hig->addRow( tr( "Manual announce allowed in:" ), myAnnounceManualLabel = new SqueezeLabel ); hig->finish( ); myTrackerLabel->setScaledContents( true ); return hig; } /*** **** ***/ QWidget * Details :: createPeersTab( ) { QWidget * top = new QWidget; QVBoxLayout * v = new QVBoxLayout( top ); v->setSpacing( HIG :: PAD_BIG ); v->setContentsMargins( HIG::PAD_BIG, HIG::PAD_BIG, HIG::PAD_BIG, HIG::PAD_BIG ); QStringList headers; headers << QString() << tr("Up") << tr("Down") << tr("%") << tr("Status") << tr("Address") << tr("Client"); myPeerTree = new QTreeWidget; myPeerTree->setUniformRowHeights( true ); myPeerTree->setHeaderLabels( headers ); myPeerTree->setColumnWidth( 0, 20 ); myPeerTree->setSortingEnabled( true ); myPeerTree->setRootIsDecorated( false ); myPeerTree->setTextElideMode( Qt::ElideRight ); v->addWidget( myPeerTree, 1 ); const QFontMetrics m( font( ) ); QSize size = m.size( 0, "1024 MB/s" ); myPeerTree->setColumnWidth( COL_UP, size.width( ) ); myPeerTree->setColumnWidth( COL_DOWN, size.width( ) ); size = m.size( 0, " 100% " ); myPeerTree->setColumnWidth( COL_PERCENT, size.width( ) ); size = m.size( 0, "ODUK?EXI" ); myPeerTree->setColumnWidth( COL_STATUS, size.width( ) ); size = m.size( 0, "888.888.888.888" ); myPeerTree->setColumnWidth( COL_ADDRESS, size.width( ) ); size = m.size( 0, "Some BitTorrent Client" ); myPeerTree->setColumnWidth( COL_CLIENT, size.width( ) ); myPeerTree->setAlternatingRowColors( true ); QHBoxLayout * h = new QHBoxLayout; h->setSpacing( HIG :: PAD ); v->addLayout( h ); QLabel * l = new QLabel( "Seeders:" ); l->setStyleSheet( "font: bold" ); h->addWidget( l ); l = mySeedersLabel = new QLabel( "a" ); h->addWidget( l ); h->addStretch( 1 ); l = new QLabel( "Leechers:" ); l->setStyleSheet( "font: bold" ); h->addWidget( l ); l = myLeechersLabel = new QLabel( "b" ); h->addWidget( l ); h->addStretch( 1 ); l = new QLabel( "Times Completed:" ); l->setStyleSheet( "font: bold" ); h->addWidget( l ); l = myTimesCompletedLabel = new QLabel( "c" ); h->addWidget( l ); return top; } /*** **** ***/ QWidget * Details :: createFilesTab( ) { myFileTreeView = new FileTreeView( ); connect( myFileTreeView, SIGNAL( priorityChanged(const QSet&, int)), this, SLOT( onFilePriorityChanged(const QSet&, int))); connect( myFileTreeView, SIGNAL( wantedChanged(const QSet&, bool)), this, SLOT( onFileWantedChanged(const QSet&, bool))); return myFileTreeView; } void Details :: onFilePriorityChanged( const QSet& indices, int priority ) { QString key; switch( priority ) { case TR_PRI_LOW: key = "priority-low"; break; case TR_PRI_HIGH: key = "priority-high"; break; default: key = "priority-normal"; break; } mySession.torrentSet( myIds, key, indices.toList( ) ); } void Details :: onFileWantedChanged( const QSet& indices, bool wanted ) { QString key( wanted ? "files-wanted" : "files-unwanted" ); mySession.torrentSet( myIds, key, indices.toList( ) ); }