2011-09-23 22:06:21 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
|
2011-09-23 22:06:21 +02: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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-09-18 15:35:44 +02:00
|
|
|
#include "globalfunctions.h"
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QBuffer>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QDesktopWidget>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QIcon>
|
|
|
|
|
2011-09-18 15:35:44 +02:00
|
|
|
QByteArray qz_pixmapToByteArray(const QPixmap &pix)
|
|
|
|
{
|
|
|
|
QByteArray bytes;
|
|
|
|
QBuffer buffer(&bytes);
|
|
|
|
buffer.open(QIODevice::WriteOnly);
|
2011-11-06 17:01:23 +01:00
|
|
|
if (pix.save(&buffer, "PNG")) {
|
2011-09-18 15:35:44 +02:00
|
|
|
return buffer.buffer().toBase64();
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-09-18 15:35:44 +02:00
|
|
|
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
|
2011-11-05 11:51:46 +01:00
|
|
|
QPixmap qz_pixmapFromByteArray(const QByteArray &data)
|
|
|
|
{
|
|
|
|
QPixmap image;
|
|
|
|
QByteArray bArray = QByteArray::fromBase64(data);
|
|
|
|
image.loadFromData(bArray);
|
|
|
|
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
2011-09-18 15:35:44 +02:00
|
|
|
QByteArray qz_readAllFileContents(const QString &filename)
|
|
|
|
{
|
|
|
|
QFile file(filename);
|
|
|
|
file.open(QFile::ReadOnly);
|
|
|
|
QByteArray a = file.readAll();
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
2011-09-21 14:20:49 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
void qz_centerWidgetOnScreen(QWidget* w)
|
2011-09-21 14:20:49 +02:00
|
|
|
{
|
|
|
|
const QRect screen = QApplication::desktop()->screenGeometry();
|
|
|
|
const QRect &size = w->geometry();
|
2011-11-06 17:01:23 +01:00
|
|
|
w->move((screen.width() - size.width()) / 2, (screen.height() - size.height()) / 2);
|
2011-09-21 14:20:49 +02:00
|
|
|
}
|
2011-10-07 15:37:49 +02:00
|
|
|
|
2011-10-26 19:23:50 +02:00
|
|
|
// Very, very, very simplified QDialog::adjustPosition from qdialog.cpp
|
|
|
|
void qz_centerWidgetToParent(QWidget* w, QWidget* parent)
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!parent || !w) {
|
2011-10-26 19:23:50 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-26 19:23:50 +02:00
|
|
|
|
|
|
|
QPoint p;
|
|
|
|
parent = parent->window();
|
2011-11-06 17:01:23 +01:00
|
|
|
QPoint pp = parent->mapToGlobal(QPoint(0, 0));
|
|
|
|
p = QPoint(pp.x() + parent->width() / 2, pp.y() + parent->height() / 2);
|
|
|
|
p = QPoint(p.x() - w->width() / 2, p.y() - w->height() / 2 - 20);
|
2011-10-26 19:23:50 +02:00
|
|
|
|
|
|
|
w->move(p);
|
|
|
|
}
|
|
|
|
|
2012-01-26 18:23:35 +01:00
|
|
|
bool qz_removeFile(const QString &fullFileName)
|
|
|
|
{
|
|
|
|
QFile f(fullFileName);
|
|
|
|
if (f.exists()) {
|
|
|
|
return f.remove();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void qz_removeDir(const QString &d)
|
|
|
|
{
|
|
|
|
QDir dir(d);
|
|
|
|
if (dir.exists()) {
|
|
|
|
const QFileInfoList list = dir.entryInfoList();
|
|
|
|
QFileInfo fi;
|
|
|
|
for (int l = 0; l < list.size(); l++) {
|
|
|
|
fi = list.at(l);
|
|
|
|
if (fi.isDir() && fi.fileName() != "." && fi.fileName() != "..") {
|
|
|
|
qz_removeDir(fi.absoluteFilePath());
|
|
|
|
}
|
|
|
|
else if (fi.isFile()) {
|
|
|
|
qz_removeFile(fi.absoluteFilePath());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
dir.rmdir(d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-09 14:51:25 +02:00
|
|
|
QString qz_samePartOfStrings(const QString &one, const QString &other)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
int maxSize = qMin(one.size(), other.size());
|
|
|
|
while (one.at(i) == other.at(i)) {
|
|
|
|
i++;
|
2011-11-06 17:01:23 +01:00
|
|
|
if (i == maxSize) {
|
2011-10-09 14:51:25 +02:00
|
|
|
break;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-09 14:51:25 +02:00
|
|
|
}
|
|
|
|
return one.left(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
QUrl qz_makeRelativeUrl(const QUrl &baseUrl, const QUrl &rUrl)
|
|
|
|
{
|
|
|
|
QString baseUrlPath = baseUrl.path();
|
|
|
|
QString rUrlPath = rUrl.path();
|
|
|
|
|
|
|
|
QString samePart = qz_samePartOfStrings(baseUrlPath, rUrlPath);
|
|
|
|
|
|
|
|
QUrl returnUrl;
|
|
|
|
if (samePart.isEmpty()) {
|
|
|
|
returnUrl = rUrl;
|
|
|
|
}
|
|
|
|
else if (samePart == "/") {
|
|
|
|
returnUrl = QUrl(rUrl.path());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
samePart = samePart.left(samePart.lastIndexOf("/") + 1);
|
|
|
|
int slashCount = samePart.count("/") + 1;
|
2011-11-06 17:01:23 +01:00
|
|
|
if (samePart.startsWith("/")) {
|
2011-10-09 14:51:25 +02:00
|
|
|
slashCount--;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
if (samePart.endsWith("/")) {
|
2011-10-09 14:51:25 +02:00
|
|
|
slashCount--;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-09 14:51:25 +02:00
|
|
|
|
|
|
|
rUrlPath.remove(samePart);
|
2011-10-17 09:57:07 +02:00
|
|
|
rUrlPath.prepend(QString("..""/").repeated(slashCount));
|
2011-10-09 14:51:25 +02:00
|
|
|
returnUrl = QUrl(rUrlPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
return returnUrl;
|
|
|
|
}
|
|
|
|
|
2012-02-21 21:28:19 +01:00
|
|
|
QString qz_urlEncodeQueryString(const QUrl &url)
|
|
|
|
{
|
|
|
|
QString returnString = url.toString(QUrl::RemoveQuery | QUrl::RemoveFragment);
|
2012-02-22 19:12:22 +01:00
|
|
|
|
|
|
|
if (url.hasQuery()) {
|
|
|
|
returnString.append("?");
|
|
|
|
returnString.append(url.encodedQuery());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (url.hasFragment()) {
|
|
|
|
returnString.append("#");
|
|
|
|
returnString.append(url.encodedFragment());
|
|
|
|
}
|
2012-02-21 21:28:19 +01:00
|
|
|
|
2012-03-15 19:35:37 +01:00
|
|
|
returnString.replace(" ", "%20");
|
|
|
|
|
2012-02-21 21:28:19 +01:00
|
|
|
return returnString;
|
|
|
|
}
|
|
|
|
|
2011-10-12 22:28:41 +02:00
|
|
|
QString qz_ensureUniqueFilename(const QString &pathToFile)
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!QFile::exists(pathToFile)) {
|
2011-10-12 22:28:41 +02:00
|
|
|
return pathToFile;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-12 22:28:41 +02:00
|
|
|
|
|
|
|
QString tmpFileName = pathToFile;
|
|
|
|
int i = 1;
|
|
|
|
while (QFile::exists(tmpFileName)) {
|
|
|
|
tmpFileName = pathToFile;
|
|
|
|
int index = tmpFileName.lastIndexOf(".");
|
|
|
|
|
|
|
|
if (index == -1) {
|
2011-11-06 17:01:23 +01:00
|
|
|
tmpFileName.append("(" + QString::number(i) + ")");
|
2011-11-05 11:51:46 +01:00
|
|
|
}
|
|
|
|
else {
|
2011-11-06 17:01:23 +01:00
|
|
|
tmpFileName = tmpFileName.mid(0, index) + "(" + QString::number(i) + ")" + tmpFileName.mid(index);
|
2011-10-12 22:28:41 +02:00
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return tmpFileName;
|
|
|
|
}
|
|
|
|
|
2011-11-05 11:51:46 +01:00
|
|
|
QString qz_getFileNameFromUrl(const QUrl &url)
|
|
|
|
{
|
|
|
|
QString fileName = url.toString(QUrl::RemoveFragment | QUrl::RemoveQuery | QUrl::RemoveScheme | QUrl::RemovePort);
|
|
|
|
if (fileName.indexOf("/") != -1) {
|
|
|
|
int pos = fileName.lastIndexOf("/");
|
|
|
|
fileName = fileName.mid(pos);
|
|
|
|
fileName.remove("/");
|
|
|
|
}
|
2012-03-07 12:19:54 +01:00
|
|
|
|
2012-03-23 13:58:31 +01:00
|
|
|
fileName = qz_filterCharsFromFilename(fileName);
|
|
|
|
|
|
|
|
if (fileName.isEmpty()) {
|
|
|
|
fileName = qz_filterCharsFromFilename(url.host().replace(".", "-"));
|
|
|
|
}
|
|
|
|
|
|
|
|
return fileName;
|
2011-11-05 11:51:46 +01:00
|
|
|
}
|
|
|
|
|
2011-11-28 19:17:48 +01:00
|
|
|
QString qz_filterCharsFromFilename(const QString &name)
|
|
|
|
{
|
|
|
|
QString value = name;
|
2012-03-23 13:58:31 +01:00
|
|
|
value.replace("/", "-");
|
2011-11-28 19:17:48 +01:00
|
|
|
value.remove("\\");
|
|
|
|
value.remove(":");
|
|
|
|
value.remove("*");
|
|
|
|
value.remove("?");
|
|
|
|
value.remove("\"");
|
|
|
|
value.remove("<");
|
|
|
|
value.remove(">");
|
|
|
|
value.remove("|");
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2011-10-07 15:37:49 +02:00
|
|
|
QString qz_buildSystem()
|
|
|
|
{
|
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
return "Linux";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_BSD4
|
|
|
|
return "BSD 4.4";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_BSDI
|
|
|
|
return "BSD/OS";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_FREEBSD
|
|
|
|
return "FreeBSD";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_HPUX
|
|
|
|
return "HP-UX";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_HURD
|
|
|
|
return "GNU Hurd";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_LYNX
|
|
|
|
return "LynxOS";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
return "MAC OS";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_NETBSD
|
|
|
|
return "NetBSD";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_OS2
|
|
|
|
return "OS/2";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_OPENBSD
|
|
|
|
return "OpenBSD";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_OSF
|
|
|
|
return "HP Tru64 UNIX";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_SOLARIS
|
|
|
|
return "Sun Solaris";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_UNIXWARE
|
|
|
|
return "UnixWare 7 / Open UNIX 8";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
return "Windows";
|
|
|
|
#endif
|
2012-02-23 19:18:08 +01:00
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
return "Unix";
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_HAIKU
|
|
|
|
return "Haiku";
|
|
|
|
#endif
|
2011-10-07 15:37:49 +02:00
|
|
|
}
|