Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
4.0 KiB
131 lines
4.0 KiB
/* |
|
* 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 MISC_H |
|
#define MISC_H |
|
|
|
#include <libtorrent/version.hpp> |
|
#include <libtorrent/torrent_info.hpp> |
|
#include <libtorrent/torrent_handle.hpp> |
|
#include <sstream> |
|
#include <QString> |
|
#include <QStringList> |
|
#include <QThread> |
|
#include <ctime> |
|
#include <QPoint> |
|
#include <QFile> |
|
#include <QDir> |
|
#include <QCoreApplication> |
|
#ifndef DISABLE_GUI |
|
#include <QIcon> |
|
#endif |
|
|
|
const qlonglong MAX_ETA = 8640000; |
|
|
|
/* Miscellaneaous functions that can be useful */ |
|
class misc |
|
{ |
|
Q_DECLARE_TR_FUNCTIONS(misc) |
|
|
|
private: |
|
misc(); // Forbidden |
|
|
|
public: |
|
static inline QString toQString(const std::string &str) { |
|
return QString::fromLocal8Bit(str.c_str()); |
|
} |
|
|
|
static inline QString toQString(const char* str) { |
|
return QString::fromLocal8Bit(str); |
|
} |
|
|
|
static inline QString toQStringU(const std::string &str) { |
|
return QString::fromUtf8(str.c_str()); |
|
} |
|
|
|
static inline QString toQStringU(const char* str) { |
|
return QString::fromUtf8(str); |
|
} |
|
|
|
static inline QString toQString(const libtorrent::sha1_hash &hash) { |
|
char out[41]; |
|
to_hex((char const*)&hash[0], libtorrent::sha1_hash::size, out); |
|
return QString(out); |
|
} |
|
|
|
#ifndef DISABLE_GUI |
|
static void shutdownComputer(bool sleep=false); |
|
#endif |
|
|
|
static QString parseHtmlLinks(const QString &raw_text); |
|
|
|
static bool isUrl(const QString &s); |
|
|
|
#ifndef DISABLE_GUI |
|
// Get screen center |
|
static QPoint screenCenter(QWidget *win); |
|
#endif |
|
static int pythonVersion(); |
|
// return best userfriendly storage unit (B, KiB, MiB, GiB, TiB) |
|
// use Binary prefix standards from IEC 60027-2 |
|
// see http://en.wikipedia.org/wiki/Kilobyte |
|
// value must be given in bytes |
|
static QString friendlyUnit(qreal val, bool is_speed = false); |
|
static bool isPreviewable(QString extension); |
|
static QString magnetUriToName(QString magnet_uri); |
|
static QString magnetUriToHash(QString magnet_uri); |
|
static QString bcLinkToMagnet(QString bc_link); |
|
// Take a number of seconds and return an user-friendly |
|
// time duration like "1d 2h 10m". |
|
static QString userFriendlyDuration(qlonglong seconds); |
|
static QString getUserIDString(); |
|
|
|
// Convert functions |
|
static QStringList toStringList(const QList<bool> &l); |
|
static QList<int> intListfromStringList(const QStringList &l); |
|
static QList<bool> boolListfromStringList(const QStringList &l); |
|
|
|
#if LIBTORRENT_VERSION_MINOR < 16 |
|
static QString toQString(const boost::posix_time::ptime& boostDate); |
|
#else |
|
static QString toQString(time_t t); |
|
#endif |
|
}; |
|
|
|
// Trick to get a portable sleep() function |
|
class SleeperThread : public QThread { |
|
public: |
|
static void msleep(unsigned long msecs) |
|
{ |
|
QThread::msleep(msecs); |
|
} |
|
}; |
|
|
|
#endif
|
|
|