transmission/qt/Utils.h

75 lines
1.6 KiB
C
Raw Normal View History

2009-04-09 18:55:47 +00:00
/*
* This file Copyright (C) 2009-2015 Mnemosyne LLC
2009-04-09 18:55:47 +00:00
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
2009-04-09 18:55:47 +00:00
*
* $Id$
2009-04-09 18:55:47 +00:00
*/
#ifndef QTR_UTILS_H
#define QTR_UTILS_H
#include <cctype> // isxdigit()
2009-04-09 18:55:47 +00:00
#include <QIcon>
#include <QObject>
#include <QRect>
#include <QString>
2009-04-09 18:55:47 +00:00
#include "Speed.h"
class QColor;
2009-04-09 18:55:47 +00:00
class Utils: public QObject
{
2013-09-14 22:45:04 +00:00
Q_OBJECT
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
public:
Utils () {}
virtual ~Utils () {}
2013-09-14 22:45:04 +00:00
public:
static QIcon guessMimeIcon (const QString& filename);
// Test if string is UTF-8 or not
static bool isValidUtf8 (const char *s);
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
static QString removeTrailingDirSeparator (const QString& path);
static void narrowRect (QRect& rect, int dx1, int dx2, Qt::LayoutDirection direction)
{
if (direction == Qt::RightToLeft)
qSwap (dx1, dx2);
rect.adjust (dx1, 0, -dx2, 0);
}
static QColor getFadedColor (const QColor& color);
2013-09-14 22:45:04 +00:00
///
/// URLs
///
2013-09-14 22:45:04 +00:00
static bool isMagnetLink (const QString& s)
{
return s.startsWith (QString::fromUtf8 ("magnet:?"));
}
2013-09-14 22:45:04 +00:00
static bool isHexHashcode (const QString& s)
{
if (s.length() != 40)
return false;
for (const QChar ch: s) if (!isxdigit (ch.unicode())) return false;
2013-09-14 22:45:04 +00:00
return true;
}
2013-09-14 22:45:04 +00:00
static bool isUriWithSupportedScheme (const QString& s)
{
static const QString ftp = QString::fromUtf8 ("ftp://");
static const QString http = QString::fromUtf8 ("http://");
static const QString https = QString::fromUtf8 ("https://");
return s.startsWith(http) || s.startsWith(https) || s.startsWith(ftp);
}
2009-04-09 18:55:47 +00:00
};
#endif // QTR_UTILS_H