#include "screenshotter.hpp" #include "cropeditor/cropeditor.hpp" #include "mainwindow.hpp" #include "screenshotutil.hpp" #include "uploaders/uploadersingleton.hpp" #include #include #include #include void screenshotter::area() { CropEditor *editor = new CropEditor(screenshotutil::fullscreen(settings::settings().value("captureCursor", true).toBool())); QObject::connect(editor, &CropEditor::cropped, [&](QPixmap *pixmap) { UploaderSingleton::inst().upload(pixmap); QScopedPointer(editor); }); } void screenshotter::fullscreen() { UploaderSingleton::inst().upload(screenshotutil::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::activeDelayed); } void screenshotter::active() { #ifdef PLATFORM_CAPABILITY_ACTIVEWINDOW UploaderSingleton::inst().upload(screenshotutil::window(PlatformBackend::inst().getActiveWID())); #endif }