|
|
|
@ -492,39 +492,39 @@ namespace BitTorrent
@@ -492,39 +492,39 @@ namespace BitTorrent
|
|
|
|
|
void categoryRemoved(const QString &categoryName); |
|
|
|
|
void downloadFromUrlFailed(const QString &url, const QString &reason); |
|
|
|
|
void downloadFromUrlFinished(const QString &url); |
|
|
|
|
void fullDiskError(BitTorrent::TorrentHandle *const torrent, const QString &msg); |
|
|
|
|
void fullDiskError(TorrentHandle *torrent, const QString &msg); |
|
|
|
|
void IPFilterParsed(bool error, int ruleCount); |
|
|
|
|
void loadTorrentFailed(const QString &error); |
|
|
|
|
void metadataLoaded(const BitTorrent::TorrentInfo &info); |
|
|
|
|
void recursiveTorrentDownloadPossible(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void metadataLoaded(const TorrentInfo &info); |
|
|
|
|
void recursiveTorrentDownloadPossible(TorrentHandle *torrent); |
|
|
|
|
void speedLimitModeChanged(bool alternative); |
|
|
|
|
void statsUpdated(); |
|
|
|
|
void subcategoriesSupportChanged(); |
|
|
|
|
void tagAdded(const QString &tag); |
|
|
|
|
void tagRemoved(const QString &tag); |
|
|
|
|
void torrentAboutToBeRemoved(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void torrentAdded(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void torrentCategoryChanged(BitTorrent::TorrentHandle *const torrent, const QString &oldCategory); |
|
|
|
|
void torrentFinished(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void torrentFinishedChecking(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void torrentLoaded(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void torrentMetadataLoaded(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void torrentPaused(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void torrentResumed(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void torrentSavePathChanged(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void torrentSavingModeChanged(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void torrentStorageMoveFailed(BitTorrent::TorrentHandle *const torrent, const QString &targetPath, const QString &error); |
|
|
|
|
void torrentStorageMoveFinished(BitTorrent::TorrentHandle *const torrent, const QString &newPath); |
|
|
|
|
void torrentsUpdated(const QVector<BitTorrent::TorrentHandle *> &torrents); |
|
|
|
|
void torrentTagAdded(BitTorrent::TorrentHandle *const torrent, const QString &tag); |
|
|
|
|
void torrentTagRemoved(BitTorrent::TorrentHandle *const torrent, const QString &tag); |
|
|
|
|
void trackerError(BitTorrent::TorrentHandle *const torrent, const QString &tracker); |
|
|
|
|
void trackerlessStateChanged(BitTorrent::TorrentHandle *const torrent, bool trackerless); |
|
|
|
|
void trackersAdded(BitTorrent::TorrentHandle *const torrent, const QVector<BitTorrent::TrackerEntry> &trackers); |
|
|
|
|
void trackersChanged(BitTorrent::TorrentHandle *const torrent); |
|
|
|
|
void trackersRemoved(BitTorrent::TorrentHandle *const torrent, const QVector<BitTorrent::TrackerEntry> &trackers); |
|
|
|
|
void trackerSuccess(BitTorrent::TorrentHandle *const torrent, const QString &tracker); |
|
|
|
|
void trackerWarning(BitTorrent::TorrentHandle *const torrent, const QString &tracker); |
|
|
|
|
void torrentAboutToBeRemoved(TorrentHandle *torrent); |
|
|
|
|
void torrentAdded(TorrentHandle *torrent); |
|
|
|
|
void torrentCategoryChanged(TorrentHandle *torrent, const QString &oldCategory); |
|
|
|
|
void torrentFinished(TorrentHandle *torrent); |
|
|
|
|
void torrentFinishedChecking(TorrentHandle *torrent); |
|
|
|
|
void torrentLoaded(TorrentHandle *torrent); |
|
|
|
|
void torrentMetadataLoaded(TorrentHandle *torrent); |
|
|
|
|
void torrentPaused(TorrentHandle *torrent); |
|
|
|
|
void torrentResumed(TorrentHandle *torrent); |
|
|
|
|
void torrentSavePathChanged(TorrentHandle *torrent); |
|
|
|
|
void torrentSavingModeChanged(TorrentHandle *torrent); |
|
|
|
|
void torrentStorageMoveFailed(TorrentHandle *torrent, const QString &targetPath, const QString &error); |
|
|
|
|
void torrentStorageMoveFinished(TorrentHandle *torrent, const QString &newPath); |
|
|
|
|
void torrentsUpdated(const QVector<TorrentHandle *> &torrents); |
|
|
|
|
void torrentTagAdded(TorrentHandle *torrent, const QString &tag); |
|
|
|
|
void torrentTagRemoved(TorrentHandle *torrent, const QString &tag); |
|
|
|
|
void trackerError(TorrentHandle *torrent, const QString &tracker); |
|
|
|
|
void trackerlessStateChanged(TorrentHandle *torrent, bool trackerless); |
|
|
|
|
void trackersAdded(TorrentHandle *torrent, const QVector<TrackerEntry> &trackers); |
|
|
|
|
void trackersChanged(TorrentHandle *torrent); |
|
|
|
|
void trackersRemoved(TorrentHandle *torrent, const QVector<TrackerEntry> &trackers); |
|
|
|
|
void trackerSuccess(TorrentHandle *torrent, const QString &tracker); |
|
|
|
|
void trackerWarning(TorrentHandle *torrent, const QString &tracker); |
|
|
|
|
|
|
|
|
|
private slots: |
|
|
|
|
void configureDeferred(); |
|
|
|
@ -744,7 +744,7 @@ namespace BitTorrent
@@ -744,7 +744,7 @@ namespace BitTorrent
|
|
|
|
|
|
|
|
|
|
int m_numResumeData = 0; |
|
|
|
|
int m_extraLimit = 0; |
|
|
|
|
QVector<BitTorrent::TrackerEntry> m_additionalTrackerList; |
|
|
|
|
QVector<TrackerEntry> m_additionalTrackerList; |
|
|
|
|
QString m_resumeFolderPath; |
|
|
|
|
QFile *m_resumeFolderLock = nullptr; |
|
|
|
|
|
|
|
|
|