mirror of
https://github.com/transmission/transmission
synced 2024-12-30 19:46:56 +00:00
971cc6d2d9
We don't currently (if ever) provide context help, so the button is useless. Moreover, on Windows 10 it's even larger than before and sometimes title text doesn't fit because of it.
106 lines
2.4 KiB
C++
106 lines
2.4 KiB
C++
/*
|
|
* 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.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef QTR_DETAILS_DIALOG_H
|
|
#define QTR_DETAILS_DIALOG_H
|
|
|
|
#include <QString>
|
|
#include <QMap>
|
|
#include <QSet>
|
|
#include <QTimer>
|
|
|
|
#include "BaseDialog.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
|
|
|
|
public:
|
|
DetailsDialog (Session&, Prefs&, const TorrentModel&, QWidget * parent = nullptr);
|
|
virtual ~DetailsDialog ();
|
|
|
|
void setIds (const QSet<int>& ids);
|
|
|
|
// QWidget
|
|
virtual QSize sizeHint () const { return QSize (440, 460); }
|
|
|
|
private:
|
|
void initPeersTab ();
|
|
void initTrackerTab ();
|
|
void initInfoTab ();
|
|
void initFilesTab ();
|
|
void initOptionsTab ();
|
|
|
|
void getNewData ();
|
|
|
|
QIcon getStockIcon (const QString& freedesktop_name, int fallback);
|
|
|
|
private slots:
|
|
void refresh ();
|
|
void refreshPref (int key);
|
|
|
|
void onTorrentChanged ();
|
|
void onTimer ();
|
|
|
|
// Tracker tab
|
|
void onTrackerSelectionChanged ();
|
|
void onAddTrackerClicked ();
|
|
void onEditTrackerClicked ();
|
|
void onRemoveTrackerClicked ();
|
|
void onShowTrackerScrapesToggled (bool);
|
|
void onShowBackupTrackersToggled (bool);
|
|
|
|
// Files tab
|
|
void onFilePriorityChanged (const QSet<int>& fileIndices, int);
|
|
void onFileWantedChanged (const QSet<int>& fileIndices, bool);
|
|
void onPathEdited (const QString& oldpath, const QString& newname);
|
|
void onOpenRequested (const QString& path);
|
|
|
|
// 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:
|
|
Session& mySession;
|
|
Prefs& myPrefs;
|
|
const TorrentModel& myModel;
|
|
|
|
Ui::DetailsDialog ui;
|
|
|
|
QSet<int> myIds;
|
|
QTimer myTimer;
|
|
bool myChangedTorrents;
|
|
bool myHavePendingRefresh;
|
|
|
|
TrackerModel * myTrackerModel;
|
|
TrackerModelFilter * myTrackerFilter;
|
|
TrackerDelegate * myTrackerDelegate;
|
|
|
|
QMap<QString, QTreeWidgetItem*> myPeers;
|
|
};
|
|
|
|
#endif // QTR_DETAILS_DIALOG_H
|