/* * This file Copyright (C) 2009-2015 Mnemosyne LLC * * It may be used under the GNU GPL versions 2 or 3 * or any future license endorsed by Mnemosyne LLC. * */ #pragma once #include #include #include #include #include #include "BaseDialog.h" #include "Macros.h" #include "Session.h" #include "Typedefs.h" #include "ui_DetailsDialog.h" class QTreeWidgetItem; class Prefs; class Session; class Torrent; class TorrentModel; class TrackerDelegate; class TrackerModel; class TrackerModelFilter; class DetailsDialog : public BaseDialog { Q_OBJECT TR_DISABLE_COPY_MOVE(DetailsDialog) public: DetailsDialog(Session&, Prefs&, TorrentModel const&, QWidget* parent = nullptr); void setIds(torrent_ids_t const& ids); // QWidget QSize sizeHint() const override { return QSize(440, 460); } private: void initPeersTab(); void initTrackerTab(); void initInfoTab(); void initFilesTab() const; void initOptionsTab(); QIcon getStockIcon(QString const& freedesktop_name, int fallback) const; void setEnabled(bool); private slots: void refreshModel(); void refreshPref(int key); void refreshUI(); void onTorrentsEdited(torrent_ids_t const& ids); void onTorrentsChanged(torrent_ids_t const& ids, Torrent::fields_t const& fields); void onSessionCalled(Session::Tag tag); // Tracker tab void onTrackerSelectionChanged(); void onAddTrackerClicked(); void onEditTrackerClicked(); void onRemoveTrackerClicked(); void onShowTrackerScrapesToggled(bool); void onShowBackupTrackersToggled(bool); // Files tab void onFilePriorityChanged(QSet const& file_indices, int); void onFileWantedChanged(QSet const& file_indices, bool); void onPathEdited(QString const& old_path, QString const& new_name); void onOpenRequested(QString const& path) const; // Options tab void onBandwidthPriorityChanged(int); void onHonorsSessionLimitsToggled(bool); void onDownloadLimitedToggled(bool); void onSpinBoxEditingFinished(); void onUploadLimitedToggled(bool); void onRatioModeChanged(int); void onIdleModeChanged(int); void onIdleLimitChanged(); private: /* When a torrent property is edited in the details dialog (e.g. file priority, speed limits, etc.), don't update those UI fields until we know the server has processed the request. This keeps the UI from appearing to undo the change if we receive a refresh that was already in-flight _before_ the property was edited. */ bool canEdit() const { return std::empty(pending_changes_tags_); } std::unordered_set pending_changes_tags_; QMetaObject::Connection pending_changes_connection_; template void torrentSet(torrent_ids_t const& ids, tr_quark key, T val) { auto const tag = session_.torrentSet(ids, key, val); pending_changes_tags_.insert(tag); if (!pending_changes_connection_) { pending_changes_connection_ = connect(&session_, &Session::sessionCalled, this, &DetailsDialog::onSessionCalled); } } template void torrentSet(tr_quark key, T val) { torrentSet(ids_, key, val); } Session& session_; Prefs& prefs_; TorrentModel const& model_; Ui::DetailsDialog ui_ = {}; torrent_ids_t ids_; QTimer model_timer_; QTimer ui_debounce_timer_; std::shared_ptr tracker_model_; std::shared_ptr tracker_filter_; std::shared_ptr tracker_delegate_; QMap peers_; QIcon const icon_encrypted_ = QIcon(QStringLiteral(":/icons/encrypted.png")); QIcon const icon_unencrypted_ = {}; };