193 lines
4.7 KiB
C++
193 lines
4.7 KiB
C++
/*
|
|
* This file Copyright (C) 2009-2014 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef MAIN_WINDOW_H
|
|
#define MAIN_WINDOW_H
|
|
|
|
#include <ctime>
|
|
#include <QLineEdit>
|
|
#include <QIcon>
|
|
#include <QMainWindow>
|
|
#include <QMap>
|
|
#include <QPushButton>
|
|
#include <QSet>
|
|
#include <QSystemTrayIcon>
|
|
#include <QTimer>
|
|
#include <QWidgetList>
|
|
#include <QNetworkReply>
|
|
|
|
extern "C"
|
|
{
|
|
struct tr_variant;
|
|
}
|
|
|
|
#include "filters.h"
|
|
#include "torrent-filter.h"
|
|
#include "ui_mainwin.h"
|
|
|
|
class AddData;
|
|
class ActionDelegator;
|
|
class Prefs;
|
|
class Details;
|
|
class Session;
|
|
class TorrentDelegate;
|
|
class TorrentDelegateMin;
|
|
class TorrentModel;
|
|
class QAction;
|
|
class QLabel;
|
|
class QMenu;
|
|
class QModelIndex;
|
|
class QSortFilterProxyModel;
|
|
class Filterbar;
|
|
|
|
class TrMainWindow: public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
virtual void hideEvent (QHideEvent * event);
|
|
virtual void showEvent (QShowEvent * event);
|
|
|
|
private:
|
|
time_t myLastFullUpdateTime;
|
|
QDialog * mySessionDialog;
|
|
QDialog * myPrefsDialog;
|
|
QDialog * myAboutDialog;
|
|
QDialog * myStatsDialog;
|
|
Details * myDetailsDialog;
|
|
QSystemTrayIcon myTrayIcon;
|
|
TorrentFilter myFilterModel;
|
|
TorrentDelegate * myTorrentDelegate;
|
|
TorrentDelegateMin * myTorrentDelegateMin;
|
|
Session& mySession;
|
|
Prefs& myPrefs;
|
|
TorrentModel& myModel;
|
|
Ui_MainWindow ui;
|
|
time_t myLastSendTime;
|
|
time_t myLastReadTime;
|
|
QTimer myNetworkTimer;
|
|
bool myNetworkError;
|
|
QTimer myRefreshTrayIconTimer;
|
|
QTimer myRefreshActionSensitivityTimer;
|
|
QAction * myDlimitOffAction;
|
|
QAction * myDlimitOnAction;
|
|
QAction * myUlimitOffAction;
|
|
QAction * myUlimitOnAction;
|
|
QAction * myRatioOffAction;
|
|
QAction * myRatioOnAction;
|
|
|
|
private:
|
|
QIcon getStockIcon (const QString&, int fallback=-1);
|
|
|
|
private:
|
|
QSet<int> getSelectedTorrents () const;
|
|
void updateNetworkIcon ();
|
|
QWidgetList myHidden;
|
|
|
|
private slots:
|
|
void onPrefsDestroyed ();
|
|
void openPreferences ();
|
|
void onDetailsDestroyed ();
|
|
void showTotalRatio ();
|
|
void showTotalTransfer ();
|
|
void showSessionRatio ();
|
|
void showSessionTransfer ();
|
|
void refreshTitle ();
|
|
void refreshStatusBar ();
|
|
void refreshTrayIcon ();
|
|
void refreshTrayIconSoon ();
|
|
void openTorrent ();
|
|
void openURL ();
|
|
void newTorrent ();
|
|
void trayActivated (QSystemTrayIcon::ActivationReason);
|
|
void refreshPref (int key);
|
|
void addTorrents (const QStringList& filenames);
|
|
void removeTorrents (const bool deleteFiles);
|
|
void openDonate ();
|
|
void openHelp ();
|
|
void openFolder ();
|
|
void copyMagnetLinkToClipboard ();
|
|
void setLocation ();
|
|
void openProperties ();
|
|
void toggleSpeedMode ();
|
|
void dataReadProgress ();
|
|
void dataSendProgress ();
|
|
void onError (QNetworkReply::NetworkError);
|
|
void errorMessage (const QString&);
|
|
void toggleWindows (bool doShow);
|
|
void onSetPrefs ();
|
|
void onSetPrefs (bool);
|
|
void onSessionSourceChanged ();
|
|
void onModelReset ();
|
|
|
|
private slots:
|
|
void setSortPref (int);
|
|
void setSortAscendingPref (bool);
|
|
void onSortByActivityToggled (bool);
|
|
void onSortByAgeToggled (bool);
|
|
void onSortByETAToggled (bool);
|
|
void onSortByNameToggled (bool);
|
|
void onSortByProgressToggled (bool);
|
|
void onSortByQueueToggled (bool);
|
|
void onSortByRatioToggled (bool);
|
|
void onSortBySizeToggled (bool);
|
|
void onSortByStateToggled (bool);
|
|
|
|
private:
|
|
QWidget * myFilterBar;
|
|
|
|
private:
|
|
QMenu * createOptionsMenu ();
|
|
QMenu * createStatsModeMenu ();
|
|
void initStatusBar ();
|
|
|
|
QAction * myAltSpeedAction;
|
|
QString myErrorMessage;
|
|
|
|
public slots:
|
|
void startAll ();
|
|
void startSelected ();
|
|
void startSelectedNow ();
|
|
void pauseAll ();
|
|
void pauseSelected ();
|
|
void removeSelected ();
|
|
void deleteSelected ();
|
|
void verifySelected ();
|
|
void queueMoveTop ();
|
|
void queueMoveUp ();
|
|
void queueMoveDown ();
|
|
void queueMoveBottom ();
|
|
void reannounceSelected ();
|
|
void onNetworkTimer ();
|
|
|
|
private:
|
|
void clearSelection ();
|
|
void addTorrent (const AddData& addMe, bool showOptions);
|
|
|
|
public slots:
|
|
void setToolbarVisible (bool);
|
|
void setFilterbarVisible (bool);
|
|
void setStatusbarVisible (bool);
|
|
void setCompactView (bool);
|
|
void refreshActionSensitivity ();
|
|
void refreshActionSensitivitySoon ();
|
|
void wrongAuthentication ();
|
|
|
|
public:
|
|
TrMainWindow (Session&, Prefs&, TorrentModel&, bool minized);
|
|
virtual ~TrMainWindow ();
|
|
|
|
protected:
|
|
virtual void contextMenuEvent (QContextMenuEvent *);
|
|
virtual void dragEnterEvent (QDragEnterEvent *);
|
|
virtual void dropEvent (QDropEvent *);
|
|
};
|
|
|
|
#endif
|