47 lines
944 B
C++
47 lines
944 B
C++
/**
|
|
* SPDX-FileCopyrightText: Black Hat <bhat@encom.eu.org>
|
|
*
|
|
* SPDX-LicenseIdentifier: GPL-3.0-only
|
|
*/
|
|
#include "imageclipboard.h"
|
|
|
|
#include <QDir>
|
|
#include <QFileInfo>
|
|
#include <QGuiApplication>
|
|
#include <QUrl>
|
|
#include <QtDebug>
|
|
|
|
ImageClipboard::ImageClipboard(QObject* parent)
|
|
: QObject(parent), m_clipboard(QGuiApplication::clipboard()) {
|
|
connect(m_clipboard, &QClipboard::changed, this,
|
|
&ImageClipboard::imageChanged);
|
|
}
|
|
|
|
bool ImageClipboard::hasImage() const {
|
|
return !image().isNull();
|
|
}
|
|
|
|
QImage ImageClipboard::image() const {
|
|
return m_clipboard->image();
|
|
}
|
|
|
|
bool ImageClipboard::saveImage(const QUrl& localPath) {
|
|
if (!localPath.isLocalFile())
|
|
return false;
|
|
|
|
auto i = image();
|
|
|
|
if (i.isNull())
|
|
return false;
|
|
|
|
QString path = QFileInfo(localPath.toLocalFile()).absolutePath();
|
|
QDir dir;
|
|
if (!dir.exists(path)) {
|
|
dir.mkpath(path);
|
|
}
|
|
|
|
i.save(localPath.toLocalFile());
|
|
|
|
return true;
|
|
}
|