1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 13:04:23 +00:00

Clean up PreviewSelectDialog class

This commit is contained in:
Chocobo1 2019-10-02 19:19:33 +08:00
parent a9e6ef183b
commit 0607050ecc
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
5 changed files with 11 additions and 12 deletions

View File

@ -2187,7 +2187,7 @@ void TorrentHandle::setSuperSeeding(const bool enable)
#endif
}
void TorrentHandle::flushCache()
void TorrentHandle::flushCache() const
{
m_nativeHandle.flush_cache();
}

View File

@ -324,7 +324,7 @@ namespace BitTorrent
void setUploadLimit(int limit);
void setDownloadLimit(int limit);
void setSuperSeeding(bool enable);
void flushCache();
void flushCache() const;
void addTrackers(const QVector<TrackerEntry> &trackers);
void replaceTrackers(const QVector<TrackerEntry> &trackers);
void addUrlSeeds(const QVector<QUrl> &urlSeeds);

View File

@ -45,7 +45,7 @@
#define SETTINGS_KEY(name) "PreviewSelectDialog/" name
PreviewSelectDialog::PreviewSelectDialog(QWidget *parent, BitTorrent::TorrentHandle *const torrent)
PreviewSelectDialog::PreviewSelectDialog(QWidget *parent, const BitTorrent::TorrentHandle *torrent)
: QDialog(parent)
, m_ui(new Ui::PreviewSelectDialog)
, m_torrent(torrent)
@ -53,13 +53,12 @@ PreviewSelectDialog::PreviewSelectDialog(QWidget *parent, BitTorrent::TorrentHan
, m_storeTreeHeaderState(SETTINGS_KEY("HeaderState"))
{
m_ui->setupUi(this);
setAttribute(Qt::WA_DeleteOnClose);
m_ui->buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Preview"));
connect(m_ui->buttonBox, &QDialogButtonBox::accepted, this, &PreviewSelectDialog::previewButtonClicked);
connect(m_ui->buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
Preferences *const pref = Preferences::instance();
const Preferences *pref = Preferences::instance();
// Preview list
m_previewListModel = new QStandardItemModel(0, NB_COLUMNS, this);
m_previewListModel->setHeaderData(NAME, Qt::Horizontal, tr("Name"));

View File

@ -60,26 +60,25 @@ public:
NB_COLUMNS
};
PreviewSelectDialog(QWidget *parent, BitTorrent::TorrentHandle *const torrent);
PreviewSelectDialog(QWidget *parent, const BitTorrent::TorrentHandle *torrent);
~PreviewSelectDialog();
signals:
void readyToPreviewFile(QString) const;
protected:
void showEvent(QShowEvent *event) override;
private slots:
void previewButtonClicked();
private:
void showEvent(QShowEvent *event) override;
void loadWindowState();
void saveWindowState();
Ui::PreviewSelectDialog *m_ui;
QStandardItemModel *m_previewListModel;
PreviewListDelegate *m_listDelegate;
BitTorrent::TorrentHandle *const m_torrent;
const BitTorrent::TorrentHandle *m_torrent;
bool m_headerStateInitialized = false;
// Settings

View File

@ -501,9 +501,10 @@ void TransferListWidget::openSelectedTorrentsFolder() const
void TransferListWidget::previewSelectedTorrents()
{
for (BitTorrent::TorrentHandle *const torrent : asConst(getSelectedTorrents())) {
for (const BitTorrent::TorrentHandle *torrent : asConst(getSelectedTorrents())) {
if (torrentContainsPreviewableFiles(torrent)) {
const auto *dialog = new PreviewSelectDialog(this, torrent);
auto *dialog = new PreviewSelectDialog(this, torrent);
dialog->setAttribute(Qt::WA_DeleteOnClose);
connect(dialog, &PreviewSelectDialog::readyToPreviewFile, this, &TransferListWidget::previewFile);
}
else {