KShare/src/screenshotter.cpp

50 lines
1.9 KiB
C++

#include "screenshotter.hpp"
#include "cropeditor/cropeditor.hpp"
#include "mainwindow.hpp"
#include "uploaders/uploadersingleton.hpp"
#include "utils.hpp"
#include <QDoubleSpinBox>
#include <QTimer>
#include <platformbackend.hpp>
#include <settings.hpp>
void areaScreenshotCallback(QPixmap p) {
CropEditor *editor = new CropEditor(p);
QObject::connect(editor, &CropEditor::cropped, [&](QPixmap pixmap) { UploaderSingleton::inst().upload(pixmap); });
}
void screenshotter::area() {
if (!settings::settings().value("command/fullscreenCommand", "").toString().isEmpty())
utils::externalScreenshot(areaScreenshotCallback);
else
areaScreenshotCallback(utils::fullscreen(settings::settings().value("captureCursor", true).toBool()));
}
void screenshotter::fullscreen() {
if (!settings::settings().value("command/fullscreenCommand", "").toString().isEmpty())
utils::externalScreenshot([](QPixmap p) { UploaderSingleton::inst().upload(p); });
else
UploaderSingleton::inst().upload(utils::fullscreen(settings::settings().value("captureCursor", true).toBool()));
}
void screenshotter::areaDelayed() {
QTimer::singleShot(settings::settings().value("delay", 0.5).toFloat() * 1000, &screenshotter::area);
}
void screenshotter::fullscreenDelayed() {
QTimer::singleShot(settings::settings().value("delay", 0.5).toFloat() * 1000, &screenshotter::fullscreen);
}
void screenshotter::activeDelayed() {
QTimer::singleShot(settings::settings().value("delay", 0.5).toFloat() * 1000, &screenshotter::active);
}
void screenshotter::active() {
#ifdef PLATFORM_CAPABILITY_ACTIVEWINDOW
if (!settings::settings().value("command/activeCommand", "").toString().isEmpty())
utils::externalScreenshotActive([](QPixmap p) { UploaderSingleton::inst().upload(p); });
else
UploaderSingleton::inst().upload(utils::window(PlatformBackend::inst().getActiveWID()));
#endif
}