2bd01bf181
Not on Mac. I still don't have a way to test there.
40 lines
1.4 KiB
C++
40 lines
1.4 KiB
C++
#include "screenshotter.hpp"
|
|
#include "cropeditor/cropeditor.hpp"
|
|
#include "mainwindow.hpp"
|
|
#include "screenshotutil.hpp"
|
|
#include "uploaders/uploadersingleton.hpp"
|
|
#include <QDoubleSpinBox>
|
|
#include <QTimer>
|
|
#include <platformbackend.hpp>
|
|
#include <settings.hpp>
|
|
|
|
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<CropEditor>(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
|
|
}
|