e61d69a840
It contains licensing information!
29 lines
1.0 KiB
C++
29 lines
1.0 KiB
C++
#include "screenshotter.hpp"
|
|
#include "cropeditor/cropeditor.hpp"
|
|
#include "mainwindow.hpp"
|
|
#include "screenshotutil.hpp"
|
|
#include "uploaders/uploadersingleton.hpp"
|
|
#include <QDoubleSpinBox>
|
|
#include <QTimer>
|
|
#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);
|
|
}
|