qBittorrent/src/properties/propertieswidget.h

114 lines
3.6 KiB
C
Raw Normal View History

2009-11-08 17:20:58 +03:00
/*
* Bittorrent Client using Qt4 and libtorrent.
* Copyright (C) 2006 Christophe Dumez
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* In addition, as a special exception, the copyright holders give permission to
* link this program with the OpenSSL project's "OpenSSL" library (or with
* modified versions of it that use the same license as the "OpenSSL" library),
* and distribute the linked executables. You must obey the GNU General Public
* License in all respects for all of the code used other than "OpenSSL". If you
* modify file(s), you may extend this exception to your version of the file(s),
* but you are not obligated to do so. If you do not wish to do so, delete this
* exception statement from your version.
*
* Contact : chris@qbittorrent.org
*/
#ifndef PROPERTIESWIDGET_H
#define PROPERTIESWIDGET_H
#include <QWidget>
2009-11-20 11:20:05 +03:00
#include "ui_propertieswidget.h"
#include "qtorrenthandle.h"
class TransferListWidget;
class QTimer;
2010-10-17 18:46:01 +04:00
class QBtSession;
class TorrentFilesModel;
class PropListDelegate;
class QAction;
class torrent_file;
2009-11-14 13:37:45 +03:00
class PeerListWidget;
class TrackerList;
class GUI;
class DownloadedPiecesBar;
class PieceAvailabilityBar;
2010-10-22 22:59:18 +04:00
class PropTabBar;
2009-11-08 17:20:58 +03:00
class PropertiesWidget : public QWidget, private Ui::PropertiesWidget {
Q_OBJECT
2010-10-22 22:59:18 +04:00
public:
enum SlideState {REDUCED, VISIBLE};
public:
2010-10-17 18:46:01 +04:00
PropertiesWidget(QWidget *parent, GUI* main_window, TransferListWidget *transferList, QBtSession* BTSession);
~PropertiesWidget();
QTorrentHandle getCurrentTorrent() const;
2010-10-17 18:46:01 +04:00
QBtSession* getBTSession() const;
TrackerList* getTrackerList() const { return trackerList; }
PeerListWidget* getPeerList() const { return peersList; }
QTreeView* getFilesList() const { return filesList; }
2009-11-08 19:39:17 +03:00
protected:
QPushButton* getButtonFromIndex(int index);
bool applyPriorities();
2009-11-08 19:39:17 +03:00
protected slots:
void loadTorrentInfos(QTorrentHandle &h);
2010-07-19 22:17:37 +04:00
void updateTorrentInfos(QTorrentHandle &h);
void loadUrlSeeds();
void askWebSeed();
void deleteSelectedUrlSeeds();
void displayFilesListMenu(const QPoint& pos);
void on_changeSavePathButton_clicked();
void filteredFilesChanged();
void showPiecesDownloaded(bool show);
void showPiecesAvailability(bool show);
2009-12-19 17:59:38 +03:00
void renameSelectedFile();
void selectAllFiles();
void selectNoneFiles();
public slots:
2010-10-22 22:59:18 +04:00
void setVisibility(bool visible);
void loadDynamicData();
void clear();
2009-11-09 22:30:13 +03:00
void readSettings();
void saveSettings();
void reloadPreferences();
void openDoubleClickedFile(QModelIndex);
2010-08-18 12:46:04 +04:00
void updateSavePath(QTorrentHandle& h);
2010-10-22 22:59:18 +04:00
private:
TransferListWidget *transferList;
GUI *main_window;
QTorrentHandle h;
QTimer *refreshTimer;
QBtSession* BTSession;
SlideState state;
TorrentFilesModel *PropListModel;
PropListDelegate *PropDelegate;
PeerListWidget *peersList;
TrackerList *trackerList;
QList<int> slideSizes;
DownloadedPiecesBar *downloaded_pieces;
PieceAvailabilityBar *pieces_availability;
PropTabBar *m_tabBar;
2009-11-08 17:20:58 +03:00
};
#endif // PROPERTIESWIDGET_H