diff --git a/src/qtlibtorrent/qtlibtorrent.pri b/src/qtlibtorrent/qtlibtorrent.pri index 4610360a5..72f16b04a 100644 --- a/src/qtlibtorrent/qtlibtorrent.pri +++ b/src/qtlibtorrent/qtlibtorrent.pri @@ -19,5 +19,6 @@ SOURCES += $$PWD/qbtsession.cpp \ HEADERS += $$PWD/torrentmodel.h \ $$PWD/shutdownconfirm.h - SOURCES += $$PWD/torrentmodel.cpp + SOURCES += $$PWD/torrentmodel.cpp \ + $$PWD/shutdownconfirm.cpp } diff --git a/src/qtlibtorrent/shutdownconfirm.cpp b/src/qtlibtorrent/shutdownconfirm.cpp new file mode 100644 index 000000000..c162b22fd --- /dev/null +++ b/src/qtlibtorrent/shutdownconfirm.cpp @@ -0,0 +1,59 @@ +/* + * Bittorrent Client using Qt4 and libtorrent. + * Copyright (C) 2011 Christophe Dumez + * Copyright (C) 2014 sledgehammer999 + * + * 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 + * Contact : hammered999@gmail.com + */ + +#include "shutdownconfirm.h" + + +ShutdownConfirmDlg::ShutdownConfirmDlg(const QString &message) { + // Text + setWindowTitle(tr("Shutdown confirmation")); + setText(message); + // Cancel Button + addButton(QMessageBox::Cancel); + // Icon + setIcon(QMessageBox::Warning); + // Always on top + setWindowFlags(windowFlags()|Qt::WindowStaysOnTopHint); + show(); + // Move to center + move(misc::screenCenter(this)); +} + +bool ShutdownConfirmDlg::askForConfirmation(const QString &message) { + ShutdownConfirmDlg dlg(message); + // Auto shutdown timer + QTimer timer; + connect(&timer, SIGNAL(timeout()), &dlg, SLOT(accept())); + timer.start(15000); // 15sec + dlg.exec(); + return (dlg.result() == QDialog::Accepted); +} diff --git a/src/qtlibtorrent/shutdownconfirm.h b/src/qtlibtorrent/shutdownconfirm.h index afb7ac051..bca560ba6 100644 --- a/src/qtlibtorrent/shutdownconfirm.h +++ b/src/qtlibtorrent/shutdownconfirm.h @@ -39,30 +39,9 @@ class ShutdownConfirmDlg : public QMessageBox { Q_OBJECT public: - ShutdownConfirmDlg(const QString &message) { - // Text - setWindowTitle(tr("Shutdown confirmation")); - setText(message); - // Cancel Button - addButton(QMessageBox::Cancel); - // Icon - setIcon(QMessageBox::Warning); - // Always on top - setWindowFlags(windowFlags()|Qt::WindowStaysOnTopHint); - show(); - // Move to center - move(misc::screenCenter(this)); - } + ShutdownConfirmDlg(const QString &message); - static bool askForConfirmation(const QString &message) { - ShutdownConfirmDlg dlg(message); - // Auto shutdown timer - QTimer timer; - connect(&timer, SIGNAL(timeout()), &dlg, SLOT(accept())); - timer.start(15000); // 15sec - dlg.exec(); - return (dlg.result() == QDialog::Accepted); - } + static bool askForConfirmation(const QString &message); }; #endif // SHUTDOWNCONFIRM_H