mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
67e9aeec63
The qTox Project is not associated with the Tox Project in any way, with the exception of "qTox" using the Tox Projet's "toxcore" collection of libraries. In particular, the Tox Projet does not own copyright over the qTox Project's "qTox" collection of software, source code, and assets. The qTox Project's assets are under the sole copyright of the qTox contributors, and no partiular rights are granted to the Tox Project.
201 lines
6.2 KiB
C++
201 lines
6.2 KiB
C++
/*
|
|
Copyright © 2015 by The qTox Project
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "screenshotgrabber.h"
|
|
|
|
#include <QGraphicsSceneMouseEvent>
|
|
#include <QGraphicsPixmapItem>
|
|
#include <QGraphicsRectItem>
|
|
#include <QDesktopWidget>
|
|
#include <QGraphicsView>
|
|
#include <QApplication>
|
|
#include <QMouseEvent>
|
|
#include <QScreen>
|
|
#include <QDebug>
|
|
|
|
#include "screengrabberchooserrectitem.h"
|
|
#include "screengrabberoverlayitem.h"
|
|
#include "toolboxgraphicsitem.h"
|
|
|
|
ScreenshotGrabber::ScreenshotGrabber(QWidget* parent)
|
|
: QWidget(parent)
|
|
{
|
|
|
|
scene = new QGraphicsScene;
|
|
window = new QGraphicsView (scene); // Top-level widget
|
|
setupWindow();
|
|
setupScene(scene);
|
|
|
|
installEventFilter(this);
|
|
|
|
}
|
|
|
|
ScreenshotGrabber::~ScreenshotGrabber()
|
|
{
|
|
delete scene;
|
|
}
|
|
|
|
bool ScreenshotGrabber::eventFilter(QObject* object, QEvent* event)
|
|
{
|
|
if (event->type() == QEvent::KeyPress)
|
|
return handleKeyPress(static_cast<QKeyEvent*>(event));
|
|
|
|
return QWidget::eventFilter(object, event);
|
|
}
|
|
|
|
void ScreenshotGrabber::showGrabber()
|
|
{
|
|
this->screenGrab = grabScreen();
|
|
this->screenGrabDisplay->setPixmap(this->screenGrab);
|
|
this->window->show();
|
|
this->window->setFocus();
|
|
this->window->grabKeyboard();
|
|
adjustWindowSize();
|
|
adjustTooltipPosition();
|
|
}
|
|
|
|
bool ScreenshotGrabber::handleKeyPress(QKeyEvent* event)
|
|
{
|
|
if (event->key() == Qt::Key_Escape)
|
|
reject();
|
|
else if (event->key() == Qt::Key_Return || event->key() == Qt::Key_Enter)
|
|
acceptRegion();
|
|
else
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
void ScreenshotGrabber::acceptRegion()
|
|
{
|
|
QRect rect = this->chooserRect->chosenRect();
|
|
if (rect.width() < 1 || rect.height() < 1)
|
|
return;
|
|
|
|
//
|
|
qDebug() << "Screenshot accepted, chosen region" << rect;
|
|
emit screenshotTaken(this->screenGrab.copy(rect));
|
|
this->window->close();
|
|
}
|
|
|
|
void ScreenshotGrabber::setupWindow()
|
|
{
|
|
this->window->setWindowFlags(Qt::FramelessWindowHint | Qt::X11BypassWindowManagerHint);
|
|
this->window->setAttribute(Qt::WA_DeleteOnClose);
|
|
this->window->setContentsMargins(0, 0, 0, 0);
|
|
this->window->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
this->window->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
this->window->setFrameShape(QFrame::NoFrame);
|
|
|
|
connect(this->window, &QObject::destroyed, this, &QObject::deleteLater);
|
|
this->window->installEventFilter(this);
|
|
}
|
|
|
|
void ScreenshotGrabber::setupScene(QGraphicsScene* scene)
|
|
{
|
|
this->overlay = new ScreenGrabberOverlayItem(this);
|
|
this->helperToolbox = new ToolBoxGraphicsItem;
|
|
|
|
this->screenGrabDisplay = scene->addPixmap(this->screenGrab);
|
|
this->helperTooltip = scene->addText(QString());
|
|
scene->addItem(this->overlay);
|
|
this->chooserRect = new ScreenGrabberChooserRectItem(scene);
|
|
scene->addItem(this->helperToolbox);
|
|
|
|
this->helperToolbox->addToGroup(this->helperTooltip);
|
|
this->helperTooltip->setDefaultTextColor(Qt::black);
|
|
useNothingSelectedTooltip();
|
|
|
|
connect(this->chooserRect, &ScreenGrabberChooserRectItem::doubleClicked, this, &ScreenshotGrabber::acceptRegion);
|
|
connect(this->chooserRect, &ScreenGrabberChooserRectItem::regionChosen, this, &ScreenshotGrabber::chooseHelperTooltipText);
|
|
connect(this->chooserRect, &ScreenGrabberChooserRectItem::regionChosen, this->overlay, &ScreenGrabberOverlayItem::setChosenRect);
|
|
}
|
|
|
|
void ScreenshotGrabber::useNothingSelectedTooltip()
|
|
{
|
|
helperTooltip->setHtml(tr("Click and drag to select a region. Press <b>Escape</b> to cancel.",
|
|
"Help text shown when no region has been selected yet"));
|
|
adjustTooltipPosition();
|
|
}
|
|
|
|
void ScreenshotGrabber::useRegionSelectedTooltip()
|
|
{
|
|
helperTooltip->setHtml(tr("Press <b>Enter</b> to send a screenshot of the selected region or select a new region. Press <b>Escape</b> to cancel.",
|
|
"Help text shown when a region has been selected"));
|
|
adjustTooltipPosition();
|
|
}
|
|
|
|
void ScreenshotGrabber::chooseHelperTooltipText(QRect rect)
|
|
{
|
|
if (rect.size().isNull())
|
|
useNothingSelectedTooltip();
|
|
else
|
|
useRegionSelectedTooltip();
|
|
|
|
}
|
|
|
|
void ScreenshotGrabber::adjustTooltipPosition()
|
|
{
|
|
QRectF size = this->helperToolbox->childrenBoundingRect();
|
|
QRect screenRect = QApplication::desktop()->screen()->rect();
|
|
|
|
// Align the toolbox center-top.
|
|
helperToolbox->setX(screenRect.x() + (screenRect.width() - size.width() + size.x()) / 2);
|
|
helperToolbox->setY(screenRect.y());
|
|
|
|
}
|
|
|
|
void ScreenshotGrabber::reject()
|
|
{
|
|
qDebug() << "Rejected screenshot";
|
|
this->window->close();
|
|
|
|
}
|
|
|
|
QRect ScreenshotGrabber::getSystemScreenRect()
|
|
{
|
|
return QApplication::primaryScreen()->virtualGeometry();
|
|
}
|
|
|
|
void ScreenshotGrabber::adjustWindowSize()
|
|
{
|
|
QRect systemScreenRect = getSystemScreenRect();
|
|
qDebug() << "adjusting grabber size to" << systemScreenRect;
|
|
|
|
this->window->setGeometry(systemScreenRect);
|
|
this->window->scene()->setSceneRect(systemScreenRect);
|
|
this->overlay->setRect(systemScreenRect);
|
|
}
|
|
|
|
QPixmap ScreenshotGrabber::grabScreen()
|
|
{
|
|
QRect systemScreenRect = getSystemScreenRect();
|
|
return QApplication::primaryScreen()->grabWindow(QApplication::desktop()->winId(),0,0,
|
|
systemScreenRect.width(),
|
|
systemScreenRect.height());
|
|
}
|
|
|
|
void ScreenshotGrabber::beginRectChooser(QGraphicsSceneMouseEvent* event)
|
|
{
|
|
QPointF pos = event->scenePos();
|
|
this->chooserRect->setX(pos.x());
|
|
this->chooserRect->setY(pos.y());
|
|
this->chooserRect->beginResize(event->scenePos());
|
|
}
|