transmission/qt/details.h

163 lines
4.5 KiB
C
Raw Normal View History

2009-04-09 18:55:47 +00:00
/*
* This file Copyright (C) Mnemosyne LLC
2009-04-09 18:55:47 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2009-04-09 18:55:47 +00:00
*
* $Id$
2009-04-09 18:55:47 +00:00
*/
#ifndef DETAILS_DIALOG_H
#define DETAILS_DIALOG_H
#include <QDialog>
#include <QString>
#include <QMap>
#include <QSet>
#include <QTimer>
#include <QWidgetList>
2009-04-09 18:55:47 +00:00
#include "prefs.h"
class FileTreeView;
class QTreeView;
class QComboBox;
2009-04-09 18:55:47 +00:00
class QCheckBox;
class QDoubleSpinBox;
class QLabel;
class QRadioButton;
class QSpinBox;
class QTextBrowser;
class QTreeWidget;
class QTreeWidgetItem;
class Session;
class Torrent;
class TorrentModel;
class TrackerDelegate;
class TrackerModel;
class TrackerModelFilter;
2009-04-09 18:55:47 +00:00
class Details: public QDialog
{
Q_OBJECT
private:
void getNewData( );
2009-04-09 18:55:47 +00:00
private slots:
void onTorrentChanged( );
void onTorrentFileListRebuilt( );
2009-04-09 18:55:47 +00:00
void onTimer( );
public:
Details( Session&, Prefs&, TorrentModel&, QWidget * parent = 0 );
2009-04-09 18:55:47 +00:00
~Details( );
void setIds( const QSet<int>& ids );
2009-04-09 18:55:47 +00:00
private:
QWidget * createPeersTab( );
QWidget * createTrackerTab( );
QWidget * createInfoTab( );
QWidget * createFilesTab( );
QWidget * createOptionsTab( );
private:
QIcon getStockIcon( const QString& freedesktop_name, int fallback );
QString timeToStringRounded( int seconds );
2009-04-09 18:55:47 +00:00
QString trimToDesiredWidth( const QString& str );
void enableWhenChecked( QCheckBox *, QWidget * );
private:
Session& mySession;
Prefs& myPrefs;
TorrentModel& myModel;
QSet<int> myIds;
2009-04-09 18:55:47 +00:00
QTimer myTimer;
bool myChangedTorrents;
bool myHavePendingRefresh;
2009-04-09 18:55:47 +00:00
QLabel * myStateLabel;
QLabel * myHaveLabel;
QLabel * myAvailabilityLabel;
2009-04-09 18:55:47 +00:00
QLabel * myDownloadedLabel;
QLabel * myUploadedLabel;
QLabel * myErrorLabel;
QLabel * myRunTimeLabel;
QLabel * myETALabel;
QLabel * myLastActivityLabel;
2009-04-09 18:55:47 +00:00
QCheckBox * mySessionLimitCheck;
QCheckBox * mySingleDownCheck;
QCheckBox * mySingleUpCheck;
QCheckBox * myShowTrackerScrapesCheck;
QCheckBox * myShowBackupTrackersCheck;
QPushButton * myAddTrackerButton;
QPushButton * myEditTrackerButton;
QPushButton * myRemoveTrackerButton;
2009-04-09 18:55:47 +00:00
QSpinBox * mySingleDownSpin;
QSpinBox * mySingleUpSpin;
QComboBox * myRatioCombo;
QDoubleSpinBox * myRatioSpin;
QComboBox * myIdleCombo;
QSpinBox * myIdleSpin;
2009-04-09 18:55:47 +00:00
QSpinBox * myPeerLimitSpin;
QComboBox * myBandwidthPriorityCombo;
2009-04-09 18:55:47 +00:00
QLabel * mySizeLabel;
2009-04-09 18:55:47 +00:00
QLabel * myHashLabel;
QLabel * myPrivacyLabel;
QLabel * myOriginLabel;
QLabel * myLocationLabel;
2009-04-09 18:55:47 +00:00
QTextBrowser * myCommentBrowser;
QLabel * myTrackerLabel;
QLabel * myScrapeTimePrevLabel;
QLabel * myScrapeTimeNextLabel;
QLabel * myScrapeResponseLabel;
QLabel * myAnnounceTimePrevLabel;
QLabel * myAnnounceTimeNextLabel;
QLabel * myAnnounceResponseLabel;
QLabel * myAnnounceManualLabel;
TrackerModel * myTrackerModel;
TrackerModelFilter * myTrackerFilter;
TrackerDelegate * myTrackerDelegate;
QTreeView * myTrackerView;
//QMap<QString,QTreeWidgetItem*> myTrackerTiers;
//QMap<QString,QTreeWidgetItem*> myTrackerItems;
2009-04-09 18:55:47 +00:00
QTreeWidget * myPeerTree;
QMap<QString,QTreeWidgetItem*> myPeers;
QWidgetList myWidgets;
2009-04-09 18:55:47 +00:00
FileTreeView * myFileTreeView;
bool myFilesDirty;
2009-04-09 18:55:47 +00:00
private slots:
void refreshPref( int key );
void onBandwidthPriorityChanged( int );
2009-04-09 18:55:47 +00:00
void onFilePriorityChanged( const QSet<int>& fileIndices, int );
void onFileWantedChanged( const QSet<int>& fileIndices, bool );
void onPathEdited (const QString& oldpath, const QString& newname);
void onHonorsSessionLimitsToggled( bool );
void onDownloadLimitedToggled( bool );
void onSpinBoxEditingFinished( );
void onUploadLimitedToggled( bool );
void onRatioModeChanged( int );
void onIdleModeChanged( int );
void onShowTrackerScrapesToggled( bool );
void onShowBackupTrackersToggled( bool );
void onTrackerSelectionChanged( );
void onAddTrackerClicked( );
void onEditTrackerClicked( );
void onRemoveTrackerClicked( );
void refresh( );
2009-04-09 18:55:47 +00:00
};
#endif