mirror of
https://github.com/theCheeseboard/thedesk.git
synced 2025-01-22 18:32:09 -05:00
93 lines
2.5 KiB
C++
93 lines
2.5 KiB
C++
#include "screenshotmanager.h"
|
|
|
|
#include "dialogs/screenshotwindow.h"
|
|
#include <tapplication.h>
|
|
|
|
struct ScreenshotManagerPrivate {
|
|
QPixmap finalResult;
|
|
QColor clickedColor;
|
|
bool accepted = false;
|
|
QList<ScreenshotWindow*> screenshotWindows;
|
|
ScreenshotWindow::Type type = ScreenshotWindow::Type::ApplicationScreenshot;
|
|
};
|
|
|
|
ScreenshotManager::ScreenshotManager(QObject* parent) :
|
|
QObject{parent} {
|
|
d = new ScreenshotManagerPrivate();
|
|
|
|
for (auto screen : qApp->screens()) {
|
|
auto w = new ScreenshotWindow(screen);
|
|
connect(w, &ScreenshotWindow::screenshotAvailable, this, &ScreenshotManager::acceptPixmap);
|
|
connect(w, &ScreenshotWindow::colourClicked, this, &ScreenshotManager::acceptColor);
|
|
connect(w, &ScreenshotWindow::cancelled, this, &ScreenshotManager::reject);
|
|
d->screenshotWindows.append(w);
|
|
}
|
|
}
|
|
|
|
ScreenshotManager::~ScreenshotManager() {
|
|
for (auto window : d->screenshotWindows) {
|
|
window->deleteLater();
|
|
}
|
|
delete d;
|
|
}
|
|
|
|
void ScreenshotManager::setType(ScreenshotWindow::Type type) {
|
|
d->type = type;
|
|
for (auto window : d->screenshotWindows) {
|
|
window->setType(type);
|
|
}
|
|
}
|
|
|
|
QCoro::Task<> ScreenshotManager::prepareScreenshotWindows() {
|
|
for (auto window : d->screenshotWindows) {
|
|
co_await window->prepareWindow();
|
|
}
|
|
}
|
|
|
|
void ScreenshotManager::showScreenshotWindows() {
|
|
for (auto window : d->screenshotWindows) {
|
|
window->showFullScreen();
|
|
}
|
|
}
|
|
|
|
QPixmap ScreenshotManager::finalPixmap() {
|
|
return d->finalResult;
|
|
}
|
|
|
|
QColor ScreenshotManager::clickedColor() {
|
|
return d->clickedColor;
|
|
}
|
|
|
|
bool ScreenshotManager::accepted() {
|
|
return d->accepted;
|
|
}
|
|
|
|
void ScreenshotManager::acceptPixmap(QPixmap pixmap) {
|
|
d->finalResult = pixmap;
|
|
d->accepted = true;
|
|
|
|
auto w = d->screenshotWindows.constFirst();
|
|
connect(w, &ScreenshotWindow::animationComplete, this, &ScreenshotManager::finished);
|
|
|
|
for (auto window : d->screenshotWindows) {
|
|
window->animateTake();
|
|
}
|
|
}
|
|
|
|
void ScreenshotManager::acceptColor(QColor color) {
|
|
d->clickedColor = color;
|
|
d->accepted = true;
|
|
|
|
// Skip the animation since this is a colour picker
|
|
emit finished();
|
|
}
|
|
|
|
void ScreenshotManager::reject() {
|
|
d->accepted = false;
|
|
auto w = d->screenshotWindows.constFirst();
|
|
connect(w, &ScreenshotWindow::animationComplete, this, &ScreenshotManager::finished);
|
|
|
|
for (auto window : d->screenshotWindows) {
|
|
window->animateDiscard();
|
|
}
|
|
}
|