mirror of
https://github.com/fergalmoran/flameshot.git
synced 2026-01-24 04:07:09 +00:00
# Conflicts: # .travis.yml # appveyor.yml # data/graphics.qrc # data/img/app/keyboard.svg # data/img/material/black/delete.png # data/img/material/black/delete.svg # data/img/material/black/filepath.svg # data/img/material/black/shortcut.svg # data/img/material/white/filepath.svg # data/img/material/white/shortcut.svg # data/translations/Internationalization_hu.ts # data/translations/Internationalization_ka.ts # external/Qt-Color-Widgets/src/color_wheel.cpp # external/singleapplication/singleapplication.cpp # flameshot.pro # src/cli/commandlineparser.cpp # src/config/buttonlistview.cpp # src/config/configwindow.cpp # src/config/configwindow.h # src/config/geneneralconf.cpp # src/config/geneneralconf.h # src/config/uicoloreditor.cpp # src/config/uicoloreditor.h # src/core/controller.cpp # src/core/globalshortcutfilter.cpp # src/main.cpp # src/third-party/Qt-Color-Widgets/src/color_utils.cpp # src/tools/abstractactiontool.h # src/tools/abstractpathtool.h # src/tools/arrow/arrowtool.cpp # src/tools/arrow/arrowtool.h # src/tools/blur/blurtool.cpp # src/tools/capturetool.h # src/tools/circle/circletool.cpp # src/tools/circle/circletool.h # src/tools/copy/copytool.cpp # src/tools/copy/copytool.h # src/tools/exit/exittool.cpp # src/tools/exit/exittool.h # src/tools/imgur/imguruploader.cpp # src/tools/launcher/applaunchertool.cpp # src/tools/launcher/applaunchertool.h # src/tools/launcher/applauncherwidget.cpp # src/tools/launcher/openwithprogram.cpp # src/tools/line/linetool.cpp # src/tools/line/linetool.h # src/tools/marker/markertool.cpp # src/tools/marker/markertool.h # src/tools/move/movetool.cpp # src/tools/pencil/penciltool.cpp # src/tools/pencil/penciltool.h # src/tools/pin/pintool.cpp # src/tools/pin/pintool.h # src/tools/pin/pinwidget.cpp # src/tools/pixelate/pixelatetool.h # src/tools/rectangle/rectangletool.cpp # src/tools/rectangle/rectangletool.h # src/tools/redo/redotool.cpp # src/tools/redo/redotool.h # src/tools/save/savetool.cpp # src/tools/save/savetool.h # src/tools/selection/selectiontool.cpp # src/tools/selection/selectiontool.h # src/tools/sizeindicator/sizeindicatortool.cpp # src/tools/sizeindicator/sizeindicatortool.h # src/tools/storage/imgur/imguruploader.h # src/tools/storage/imgur/imguruploadertool.cpp # src/tools/storage/imgur/imguruploadertool.h # src/tools/text/textconfig.cpp # src/tools/text/texttool.cpp # src/tools/text/texttool.h # src/tools/toolfactory.cpp # src/tools/toolfactory.h # src/tools/undo/undotool.cpp # src/tools/undo/undotool.h # src/utils/confighandler.cpp # src/utils/confighandler.h # src/utils/dbusutils.cpp # src/utils/screenshotsaver.cpp # src/utils/screenshotsaver.h # src/widgets/capture/buttonhandler.cpp # src/widgets/capture/buttonhandler.h # src/widgets/capture/capturebutton.cpp # src/widgets/capture/capturebutton.h # src/widgets/capture/capturewidget.cpp # src/widgets/capture/capturewidget.h # src/widgets/capture/colorpicker.cpp # src/widgets/capturelauncher.cpp # src/widgets/infowindow.cpp # src/widgets/infowindow.h # src/widgets/panel/sidepanelwidget.cpp # src/widgets/panel/utilitypanel.cpp # src/widgets/panel/utilitypanel.h # translations/Internationalization_ca.ts # translations/Internationalization_de_DE.ts # translations/Internationalization_es.ts # translations/Internationalization_fr.ts # translations/Internationalization_ja.ts # translations/Internationalization_nl.ts # translations/Internationalization_pl.ts # translations/Internationalization_pt_br.ts # translations/Internationalization_ru.ts # translations/Internationalization_sk.ts # translations/Internationalization_sr.ts # translations/Internationalization_tr.ts # translations/Internationalization_uk.ts # translations/Internationalization_zh_CN.ts # translations/Internationalization_zh_TW.ts
126 lines
4.5 KiB
C++
126 lines
4.5 KiB
C++
// Copyright(c) 2017-2019 Alejandro Sirgo Rica & Contributors
|
|
//
|
|
// This file is part of Flameshot.
|
|
//
|
|
// Flameshot 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.
|
|
//
|
|
// Flameshot 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 Flameshot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include "screenshotsaver.h"
|
|
#include "src/utils/confighandler.h"
|
|
#include "src/utils/filenamehandler.h"
|
|
#include "src/utils/systemnotification.h"
|
|
#include <QApplication>
|
|
#include <QClipboard>
|
|
#include <QFileDialog>
|
|
#include <QImageWriter>
|
|
#include <QMessageBox>
|
|
|
|
ScreenshotSaver::ScreenshotSaver() {}
|
|
|
|
// TODO: If data is saved to the clipboard before the notification is sent via
|
|
// dbus, the application freezes.
|
|
void ScreenshotSaver::saveToClipboard(const QPixmap& capture)
|
|
{
|
|
|
|
// If we are able to properly save the file, save the file and copy to
|
|
// clipboard.
|
|
if ((ConfigHandler().saveAfterCopyValue()) &&
|
|
(!ConfigHandler().saveAfterCopyPathValue().isEmpty())) {
|
|
saveToFilesystem(capture,
|
|
ConfigHandler().saveAfterCopyPathValue(),
|
|
QObject::tr("Capture saved to clipboard."));
|
|
QApplication::clipboard()->setPixmap(capture);
|
|
}
|
|
// Otherwise only save to clipboard
|
|
else {
|
|
SystemNotification().sendMessage(
|
|
QObject::tr("Capture saved to clipboard"));
|
|
QApplication::clipboard()->setPixmap(capture);
|
|
}
|
|
}
|
|
|
|
bool ScreenshotSaver::saveToFilesystem(const QPixmap& capture,
|
|
const QString& path,
|
|
const QString& messagePrefix)
|
|
{
|
|
QString completePath = FileNameHandler().generateAbsolutePath(path);
|
|
completePath += QLatin1String(".png");
|
|
bool ok = capture.save(completePath);
|
|
QString saveMessage;
|
|
QString notificationPath = completePath;
|
|
|
|
if (ok) {
|
|
ConfigHandler().setSavePath(path);
|
|
saveMessage =
|
|
messagePrefix + QObject::tr("Capture saved as ") + completePath;
|
|
} else {
|
|
saveMessage = messagePrefix + QObject::tr("Error trying to save as ") +
|
|
completePath;
|
|
notificationPath = "";
|
|
}
|
|
|
|
SystemNotification().sendMessage(saveMessage, notificationPath);
|
|
return ok;
|
|
}
|
|
|
|
bool ScreenshotSaver::saveToFilesystemGUI(const QPixmap& capture)
|
|
{
|
|
bool ok = false;
|
|
while (!ok) {
|
|
ConfigHandler config;
|
|
QString savePath = FileNameHandler().absoluteSavePath();
|
|
if (config.savePathFixed().size() == 0) {
|
|
savePath = QFileDialog::getSaveFileName(
|
|
nullptr,
|
|
QObject::tr("Save screenshot"),
|
|
FileNameHandler().absoluteSavePath(),
|
|
QLatin1String("Portable Network Graphic file (PNG) (*.png);;BMP "
|
|
"file (*.bmp);;JPEG file (*.jpg)"));
|
|
}
|
|
|
|
if (savePath.isNull()) {
|
|
break;
|
|
}
|
|
|
|
if (!savePath.endsWith(QLatin1String(".png"), Qt::CaseInsensitive) &&
|
|
!savePath.endsWith(QLatin1String(".bmp"), Qt::CaseInsensitive) &&
|
|
!savePath.endsWith(QLatin1String(".jpg"), Qt::CaseInsensitive)) {
|
|
|
|
savePath += QLatin1String(".png");
|
|
}
|
|
|
|
ok = capture.save(savePath);
|
|
|
|
if (ok) {
|
|
QString pathNoFile =
|
|
savePath.left(savePath.lastIndexOf(QLatin1String("/")));
|
|
ConfigHandler().setSavePath(pathNoFile);
|
|
QString msg = QObject::tr("Capture saved as ") + savePath;
|
|
if (config.copyPathAfterSaveEnabled()) {
|
|
QApplication::clipboard()->setText(savePath);
|
|
msg =
|
|
QObject::tr("Capture saved and copied to the clipboard as ") +
|
|
savePath;
|
|
}
|
|
SystemNotification().sendMessage(msg, savePath);
|
|
} else {
|
|
QString msg = QObject::tr("Error trying to save as ") + savePath;
|
|
QMessageBox saveErrBox(
|
|
QMessageBox::Warning, QObject::tr("Save Error"), msg);
|
|
saveErrBox.setWindowIcon(QIcon(":img/app/flameshot.svg"));
|
|
saveErrBox.exec();
|
|
}
|
|
}
|
|
return ok;
|
|
}
|