2006-09-30 20:02:39 +04:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt4 and libtorrent.
|
2007-07-14 18:31:59 +04:00
|
|
|
* Copyright (C) 2006 Christophe Dumez
|
2006-09-30 20:02:39 +04:00
|
|
|
*
|
2007-07-14 18:31:59 +04:00
|
|
|
* 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.
|
2006-09-30 20:02:39 +04:00
|
|
|
*
|
|
|
|
* 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
|
2007-07-14 18:31:59 +04:00
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
2009-04-05 21:00:55 +04:00
|
|
|
* 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.
|
|
|
|
*
|
2007-07-14 18:31:59 +04:00
|
|
|
* Contact : chris@qbittorrent.org
|
2006-09-30 20:02:39 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GUI_H
|
|
|
|
#define GUI_H
|
|
|
|
|
|
|
|
#include <QProcess>
|
2006-10-18 23:53:54 +04:00
|
|
|
#include <QSystemTrayIcon>
|
2008-09-13 11:33:41 +04:00
|
|
|
#include <QPointer>
|
2009-11-20 11:20:05 +03:00
|
|
|
#include "ui_mainwindow.h"
|
2007-08-20 10:29:18 +04:00
|
|
|
#include "qtorrenthandle.h"
|
2007-02-19 19:34:23 +03:00
|
|
|
|
2010-10-17 18:46:01 +04:00
|
|
|
class QBtSession;
|
2006-09-30 20:02:39 +04:00
|
|
|
class downloadFromURL;
|
2007-03-27 22:49:29 +04:00
|
|
|
class SearchEngine;
|
2007-03-29 19:43:08 +04:00
|
|
|
class RSSImp;
|
2007-07-23 16:46:36 +04:00
|
|
|
class about;
|
|
|
|
class options_imp;
|
2009-11-07 22:55:33 +03:00
|
|
|
class TransferListWidget;
|
2009-11-08 15:05:35 +03:00
|
|
|
class TransferListFiltersWidget;
|
2009-11-08 17:20:58 +03:00
|
|
|
class PropertiesWidget;
|
2009-11-18 16:18:55 +03:00
|
|
|
class StatusBar;
|
2010-03-03 16:07:27 +03:00
|
|
|
class consoleDlg;
|
2010-03-03 17:42:57 +03:00
|
|
|
class about;
|
2010-10-23 00:13:22 +04:00
|
|
|
class TorrentCreatorDlg;
|
2010-03-10 23:21:56 +03:00
|
|
|
class downloadFromURL;
|
2010-06-22 18:18:43 +04:00
|
|
|
class HidableTabWidget;
|
2010-08-20 16:27:20 +04:00
|
|
|
class LineEdit;
|
2010-12-20 21:07:36 +03:00
|
|
|
class ExecutionLog;
|
2011-02-06 17:27:34 +03:00
|
|
|
class PowerManagement;
|
2006-09-30 20:02:39 +04:00
|
|
|
|
2011-02-27 18:41:05 +03:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QCloseEvent;
|
|
|
|
class QFileSystemWatcher;
|
|
|
|
class QShortcut;
|
|
|
|
class QSplitter;
|
|
|
|
class QTabWidget;
|
|
|
|
class QTimer;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2010-11-14 00:15:52 +03:00
|
|
|
class MainWindow : public QMainWindow, private Ui::MainWindow{
|
2006-09-30 20:02:39 +04:00
|
|
|
Q_OBJECT
|
|
|
|
|
2010-03-03 17:48:49 +03:00
|
|
|
public:
|
|
|
|
// Construct / Destruct
|
2012-06-10 21:49:50 +04:00
|
|
|
MainWindow(QWidget *parent=0, const QStringList& torrentCmdLine = QStringList());
|
2010-11-14 00:15:52 +03:00
|
|
|
~MainWindow();
|
2010-03-03 17:48:49 +03:00
|
|
|
// Methods
|
2010-07-19 22:49:53 +04:00
|
|
|
QWidget* getCurrentTabWidget() const;
|
2010-03-03 17:48:49 +03:00
|
|
|
TransferListWidget* getTransferList() const { return transferList; }
|
2010-06-09 19:40:55 +04:00
|
|
|
QMenu* getTrayIconMenu();
|
2010-08-18 12:46:04 +04:00
|
|
|
PropertiesWidget *getProperties() const { return properties; }
|
2010-03-03 17:48:49 +03:00
|
|
|
|
|
|
|
public slots:
|
2010-11-24 23:31:14 +03:00
|
|
|
void trackerAuthenticationRequired(const QTorrentHandle& h);
|
2010-03-03 17:48:49 +03:00
|
|
|
void setTabText(int index, QString text) const;
|
|
|
|
void showNotificationBaloon(QString title, QString msg) const;
|
|
|
|
void downloadFromURLList(const QStringList& urls);
|
|
|
|
void updateAltSpeedsBtn(bool alternative);
|
2010-11-14 18:28:22 +03:00
|
|
|
void updateNbTorrents();
|
2010-10-02 00:03:27 +04:00
|
|
|
void deleteBTSession();
|
2006-09-30 20:02:39 +04:00
|
|
|
|
2010-01-06 01:31:06 +03:00
|
|
|
protected slots:
|
|
|
|
// GUI related slots
|
|
|
|
void dropEvent(QDropEvent *event);
|
|
|
|
void dragEnterEvent(QDragEnterEvent *event);
|
2011-09-18 16:54:16 +04:00
|
|
|
void toggleVisibility(QSystemTrayIcon::ActivationReason e = QSystemTrayIcon::Trigger);
|
2010-01-06 01:31:06 +03:00
|
|
|
void on_actionAbout_triggered();
|
|
|
|
void on_actionCreate_torrent_triggered();
|
|
|
|
void on_actionWebsite_triggered() const;
|
|
|
|
void on_actionBugReport_triggered() const;
|
|
|
|
void balloonClicked();
|
|
|
|
void writeSettings();
|
|
|
|
void readSettings();
|
|
|
|
void on_actionExit_triggered();
|
|
|
|
void createTrayIcon();
|
2010-11-24 23:31:14 +03:00
|
|
|
void fullDiskError(const QTorrentHandle& h, QString msg) const;
|
2010-01-06 01:31:06 +03:00
|
|
|
void handleDownloadFromUrlFailure(QString, QString) const;
|
|
|
|
void createSystrayDelayed();
|
|
|
|
void tab_changed(int);
|
2010-08-19 20:30:13 +04:00
|
|
|
void on_actionLock_qBittorrent_triggered();
|
|
|
|
void defineUILockPassword();
|
|
|
|
bool unlockUI();
|
2010-08-23 23:42:15 +04:00
|
|
|
void notifyOfUpdate(QString);
|
2010-11-08 21:17:54 +03:00
|
|
|
void showConnectionSettings();
|
2012-02-07 21:48:25 +04:00
|
|
|
void minimizeWindow();
|
2012-05-20 17:51:32 +04:00
|
|
|
void updateTrayIconMenu();
|
2010-01-06 01:31:06 +03:00
|
|
|
// Keyboard shortcuts
|
|
|
|
void createKeyboardShortcuts();
|
|
|
|
void displayTransferTab() const;
|
|
|
|
void displaySearchTab() const;
|
|
|
|
void displayRSSTab() const;
|
|
|
|
// Torrent actions
|
|
|
|
void on_actionSet_global_upload_limit_triggered();
|
|
|
|
void on_actionSet_global_download_limit_triggered();
|
|
|
|
void on_actionDocumentation_triggered() const;
|
|
|
|
void on_actionOpen_triggered();
|
|
|
|
void updateGUI();
|
|
|
|
void loadPreferences(bool configure_session=true);
|
2010-06-09 13:48:14 +04:00
|
|
|
void processParams(const QString& params);
|
2010-01-06 01:31:06 +03:00
|
|
|
void processParams(const QStringList& params);
|
|
|
|
void addTorrent(QString path);
|
2010-03-03 17:42:57 +03:00
|
|
|
void addUnauthenticatedTracker(const QPair<QTorrentHandle,QString> &tracker);
|
2010-01-06 01:31:06 +03:00
|
|
|
void processDownloadedFiles(QString path, QString url);
|
2010-11-24 23:31:14 +03:00
|
|
|
void finishedTorrent(const QTorrentHandle& h) const;
|
|
|
|
void askRecursiveTorrentDownloadConfirmation(const QTorrentHandle &h);
|
2010-01-06 01:31:06 +03:00
|
|
|
// Options slots
|
|
|
|
void on_actionOptions_triggered();
|
|
|
|
void optionsSaved();
|
|
|
|
// HTTP slots
|
|
|
|
void on_actionDownload_from_URL_triggered();
|
2010-10-24 01:46:05 +04:00
|
|
|
#if defined(Q_WS_WIN) || defined(Q_WS_MAC)
|
|
|
|
void handleUpdateCheckFinished(bool update_available, QString new_version);
|
|
|
|
void handleUpdateInstalled(QString error_msg);
|
|
|
|
#endif
|
2009-03-28 01:25:34 +03:00
|
|
|
|
2010-01-06 01:31:06 +03:00
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent *);
|
|
|
|
void showEvent(QShowEvent *);
|
|
|
|
bool event(QEvent * event);
|
|
|
|
void displayRSSTab(bool enable);
|
2010-06-22 17:58:22 +04:00
|
|
|
void displaySearchTab(bool enable);
|
2006-09-30 20:02:39 +04:00
|
|
|
|
2011-03-12 23:59:44 +03:00
|
|
|
private:
|
|
|
|
QIcon getSystrayIcon() const;
|
|
|
|
|
2010-03-03 17:48:49 +03:00
|
|
|
private:
|
2010-08-23 23:42:15 +04:00
|
|
|
QFileSystemWatcher *executable_watcher;
|
2010-03-03 17:48:49 +03:00
|
|
|
// Bittorrent
|
|
|
|
QList<QPair<QTorrentHandle,QString> > unauthenticated_trackers; // Still needed?
|
|
|
|
// GUI related
|
2011-01-22 22:51:06 +03:00
|
|
|
bool m_posInitialized;
|
2010-03-03 17:48:49 +03:00
|
|
|
QTimer *guiUpdater;
|
2010-06-22 18:18:43 +04:00
|
|
|
HidableTabWidget *tabs;
|
2010-03-03 17:48:49 +03:00
|
|
|
StatusBar *status_bar;
|
|
|
|
QPointer<options_imp> options;
|
|
|
|
QPointer<consoleDlg> console;
|
|
|
|
QPointer<about> aboutDlg;
|
2010-10-23 00:13:22 +04:00
|
|
|
QPointer<TorrentCreatorDlg> createTorrentDlg;
|
2010-03-10 23:21:56 +03:00
|
|
|
QPointer<downloadFromURL> downloadFromURLDialog;
|
2010-03-03 17:48:49 +03:00
|
|
|
QPointer<QSystemTrayIcon> systrayIcon;
|
|
|
|
QPointer<QTimer> systrayCreator;
|
2010-06-09 19:40:55 +04:00
|
|
|
QPointer<QMenu> myTrayIconMenu;
|
2010-03-03 17:48:49 +03:00
|
|
|
TransferListWidget *transferList;
|
|
|
|
TransferListFiltersWidget *transferListFilters;
|
|
|
|
PropertiesWidget *properties;
|
|
|
|
bool displaySpeedInTitle;
|
|
|
|
bool force_exit;
|
2010-08-19 20:30:13 +04:00
|
|
|
bool ui_locked;
|
2010-08-20 16:27:20 +04:00
|
|
|
LineEdit *search_filter;
|
2010-03-03 17:48:49 +03:00
|
|
|
// Keyboard shortcuts
|
|
|
|
QShortcut *switchSearchShortcut;
|
|
|
|
QShortcut *switchSearchShortcut2;
|
|
|
|
QShortcut *switchTransferShortcut;
|
|
|
|
QShortcut *switchRSSShortcut;
|
|
|
|
// Widgets
|
|
|
|
QAction *prioSeparator;
|
2010-12-20 21:22:06 +03:00
|
|
|
QAction *prioSeparatorMenu;
|
2010-03-03 17:48:49 +03:00
|
|
|
QSplitter *hSplitter;
|
|
|
|
QSplitter *vSplitter;
|
|
|
|
// Search
|
2010-06-22 17:58:22 +04:00
|
|
|
QPointer<SearchEngine> searchEngine;
|
2010-03-03 17:48:49 +03:00
|
|
|
// RSS
|
|
|
|
QPointer<RSSImp> rssWidget;
|
2010-12-20 21:07:36 +03:00
|
|
|
// Execution Log
|
|
|
|
QPointer<ExecutionLog> m_executionLog;
|
2011-02-06 17:27:34 +03:00
|
|
|
// Power Management
|
|
|
|
PowerManagement *m_pwr;
|
|
|
|
QTimer *preventTimer;
|
2010-06-21 22:32:01 +04:00
|
|
|
|
|
|
|
private slots:
|
2010-06-22 17:58:22 +04:00
|
|
|
void on_actionSearch_engine_triggered();
|
2010-06-22 17:39:49 +04:00
|
|
|
void on_actionRSS_Reader_triggered();
|
2010-06-21 22:32:01 +04:00
|
|
|
void on_actionSpeed_in_title_bar_triggered();
|
|
|
|
void on_actionTop_tool_bar_triggered();
|
2010-10-23 20:21:56 +04:00
|
|
|
void on_action_Import_Torrent_triggered();
|
2010-10-31 15:03:24 +03:00
|
|
|
void on_actionDonate_money_triggered();
|
2010-12-20 21:07:36 +03:00
|
|
|
void on_actionExecution_Logs_triggered(bool checked);
|
2010-12-31 16:36:32 +03:00
|
|
|
void on_actionAutoExit_qBittorrent_toggled(bool );
|
|
|
|
void on_actionAutoSuspend_system_toggled(bool );
|
|
|
|
void on_actionAutoShutdown_system_toggled(bool );
|
2011-02-06 17:27:34 +03:00
|
|
|
// Check for active torrents and set preventing from suspend state
|
|
|
|
void checkForActiveTorrents();
|
2006-09-30 20:02:39 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|