gta5view/PictureDialog.cpp

580 lines
18 KiB
C++
Raw Permalink Normal View History

2016-03-21 07:54:14 +01:00
/*****************************************************************************
* gta5sync GRAND THEFT AUTO V SYNC
* Copyright (C) 2016 Syping
2016-03-21 07:54:14 +01:00
*
* This program is free 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
2016-03-20 21:57:18 +01:00
#include "PictureDialog.h"
2016-04-12 21:53:21 +02:00
#include "PictureWidget.h"
2016-03-22 05:20:42 +01:00
#include "ProfileDatabase.h"
2016-03-20 21:57:18 +01:00
#include "ui_PictureDialog.h"
#include "SidebarGenerator.h"
#include "StandardPaths.h"
#include "PictureExport.h"
#include "GlobalString.h"
#include "PictureCopy.h"
#include "UiModLabel.h"
2016-03-20 21:57:18 +01:00
#ifdef GTA5SYNC_WIN
2016-11-02 07:43:59 +01:00
#if QT_VERSION >= 0x050200
#include <QtWinExtras/QtWin>
2016-11-02 07:43:59 +01:00
#include <QtWinExtras/QWinEvent>
#endif
#endif
#include <QDesktopWidget>
2016-03-21 20:44:07 +01:00
#include <QJsonDocument>
2016-04-26 14:59:14 +02:00
#include <QApplication>
#include <QStaticText>
2016-03-22 05:20:42 +01:00
#include <QFileDialog>
2016-03-21 22:14:32 +01:00
#include <QMessageBox>
2016-03-21 20:44:07 +01:00
#include <QJsonObject>
#include <QVariantMap>
#include <QJsonArray>
#include <QKeyEvent>
2016-04-14 03:44:38 +02:00
#include <QMimeData>
#include <QToolBar>
#include <QPainter>
2016-12-02 13:55:27 +01:00
#include <QPicture>
#include <QBitmap>
2016-04-14 03:44:38 +02:00
#include <QBuffer>
2016-03-21 20:44:07 +01:00
#include <QDebug>
2016-03-23 03:33:46 +01:00
#include <QList>
2016-04-14 03:44:38 +02:00
#include <QDrag>
#include <QIcon>
2016-03-23 03:33:46 +01:00
#include <QUrl>
#include <QDir>
PictureDialog::PictureDialog(ProfileDatabase *profileDB, CrewDatabase *crewDB, QWidget *parent) :
QDialog(parent), profileDB(profileDB), crewDB(crewDB),
2016-03-20 21:57:18 +01:00
ui(new Ui::PictureDialog)
{
ui->setupUi(this);
2016-03-21 22:06:17 +01:00
windowTitleStr = this->windowTitle();
2016-03-21 20:44:07 +01:00
jsonDrawString = ui->labJSON->text();
2016-03-22 05:20:42 +01:00
ui->cmdExport->setEnabled(0);
2016-03-22 05:59:17 +01:00
plyrsList = QStringList();
fullscreenWidget = 0;
rqfullscreen = 0;
previewmode = 0;
navienabled = 0;
indexed = 0;
picArea = "";
picTitl = "";
picPath = "";
created = "";
2016-03-22 05:59:17 +01:00
crewID = "";
locX = "";
locY = "";
locZ = "";
2016-03-29 12:23:21 +02:00
smpic = 0;
2016-04-08 16:55:28 +02:00
// Avatar area
avatarAreaPicture = QImage(":/img/avatararea.png");
avatarLocX = 145;
avatarLocY = 66;
avatarSize = 470;
2017-01-27 01:48:47 +01:00
// Overlay area
renderOverlayPicture();
overlayenabled = 1;
2016-04-08 16:55:28 +02:00
// Export menu
exportMenu = new QMenu(this);
2016-04-24 14:44:41 +02:00
jpegExportAction = exportMenu->addAction(tr("Export as &JPG picture..."), this, SLOT(exportSnapmaticPicture()));
pgtaExportAction = exportMenu->addAction(tr("Export as &GTA Snapmatic..."), this, SLOT(copySnapmaticPicture()));
2016-04-08 16:55:28 +02:00
ui->cmdExport->setMenu(exportMenu);
2016-04-23 21:01:00 +02:00
// Global map
globalMap = GlobalString::getGlobalMap();
2016-12-02 13:55:27 +01:00
// Event connects
connect(ui->labJSON, SIGNAL(resized(QSize)), this, SLOT(adaptNewDialogSize(QSize)));
installEventFilter(this);
2016-04-14 03:51:48 +02:00
installEventFilter(ui->labPicture);
ui->labPicture->setFocusPolicy(Qt::StrongFocus);
2016-03-20 21:57:18 +01:00
}
PictureDialog::~PictureDialog()
{
2016-04-24 14:44:41 +02:00
delete jpegExportAction;
delete pgtaExportAction;
2016-04-08 16:55:28 +02:00
delete exportMenu;
2016-03-20 21:57:18 +01:00
delete ui;
}
void PictureDialog::addPreviousNextButtons()
{
// Windows Vista additions
#ifdef GTA5SYNC_WIN
2016-11-02 07:43:59 +01:00
#if QT_VERSION >= 0x050200
QPalette palette;
QToolBar *uiToolbar = new QToolBar("Picture Toolbar", this);
layout()->setMenuBar(uiToolbar);
uiToolbar->addAction(QIcon(":/img/back.png"), "", this, SLOT(previousPictureRequestedSlot()));
uiToolbar->addAction(QIcon(":/img/next.png"), "", this, SLOT(nextPictureRequestedSlot()));
ui->jsonFrame->setStyleSheet(QString("QFrame { background: %1; }").arg(palette.window().color().name()));
navienabled = true;
#endif
#endif
}
2016-12-02 13:55:27 +01:00
void PictureDialog::adaptNewDialogSize(QSize newLabelSize)
{
Q_UNUSED(newLabelSize)
int newDialogHeight = ui->labPicture->pixmap()->height();
newDialogHeight = newDialogHeight + ui->jsonFrame->height();
if (navienabled) newDialogHeight = newDialogHeight + layout()->menuBar()->height();
2016-12-02 13:55:27 +01:00
setMinimumSize(width(), newDialogHeight);
setMaximumSize(width(), newDialogHeight);
2017-01-22 19:52:39 +01:00
setFixedHeight(newDialogHeight);
2016-12-02 13:55:27 +01:00
ui->labPicture->updateGeometry();
ui->jsonFrame->updateGeometry();
2017-01-22 19:52:39 +01:00
updateGeometry();
2016-12-02 13:55:27 +01:00
}
2016-11-01 18:49:44 +01:00
void PictureDialog::stylizeDialog()
{
2016-11-02 07:33:47 +01:00
#ifdef GTA5SYNC_WIN
2016-11-02 07:43:59 +01:00
#if QT_VERSION >= 0x050200
if (QtWin::isCompositionEnabled())
{
2016-11-01 18:49:44 +01:00
QtWin::extendFrameIntoClientArea(this, 0, this->layout()->menuBar()->height(), 0, 0);
setAttribute(Qt::WA_TranslucentBackground, true);
setAttribute(Qt::WA_NoSystemBackground, false);
setStyleSheet("PictureDialog { background: transparent; }");
}
else
{
QtWin::resetExtendedFrame(this);
setAttribute(Qt::WA_TranslucentBackground, false);
2016-11-01 18:43:54 +01:00
setStyleSheet(QString("PictureDialog { background: %1; }").arg(QtWin::realColorizationColor().name()));
}
2016-11-02 07:33:47 +01:00
#endif
#endif
}
bool PictureDialog::event(QEvent *event)
{
#ifdef GTA5SYNC_WIN
2016-11-02 07:43:59 +01:00
#if QT_VERSION >= 0x050200
if (navienabled)
{
if (event->type() == QWinEvent::CompositionChange || event->type() == QWinEvent::ColorizationChange)
{
stylizeDialog();
}
}
#endif
#endif
return QDialog::event(event);
}
void PictureDialog::nextPictureRequestedSlot()
{
emit nextPictureRequested();
}
void PictureDialog::previousPictureRequestedSlot()
{
emit previousPictureRequested();
}
bool PictureDialog::eventFilter(QObject *obj, QEvent *ev)
{
2016-04-14 03:44:38 +02:00
bool returnValue = false;
2016-04-14 03:51:48 +02:00
if (obj == this || obj == ui->labPicture)
{
if (ev->type() == QEvent::KeyPress)
{
QKeyEvent *keyEvent = (QKeyEvent*)ev;
switch (keyEvent->key()){
case Qt::Key_Left:
emit previousPictureRequested();
2016-04-14 03:44:38 +02:00
returnValue = true;
break;
case Qt::Key_Right:
emit nextPictureRequested();
2016-04-14 03:44:38 +02:00
returnValue = true;
break;
case Qt::Key_E: case Qt::Key_S: case Qt::Key_Save:
ui->cmdExport->click();
returnValue = true;
break;
2017-01-27 01:48:47 +01:00
case Qt::Key_1:
if (previewmode)
{
previewmode = false;
renderPicture();
}
else
{
previewmode = true;
renderPicture();
}
break;
2017-01-27 01:48:47 +01:00
case Qt::Key_2:
if (overlayenabled)
{
overlayenabled = false;
if (!previewmode) renderPicture();
}
else
{
overlayenabled = true;
if (!previewmode) renderPicture();
}
break;
#if QT_VERSION >= 0x050300
case Qt::Key_Exit:
2016-04-14 03:44:38 +02:00
ui->cmdClose->click();
returnValue = true;
break;
2016-04-18 07:23:19 +02:00
#endif
2016-04-14 03:44:38 +02:00
case Qt::Key_Enter: case Qt::Key_Return:
on_labPicture_mouseDoubleClicked(Qt::LeftButton);
2016-04-14 03:44:38 +02:00
returnValue = true;
break;
}
}
}
2016-04-14 03:44:38 +02:00
return returnValue;
}
2016-04-24 14:44:41 +02:00
void PictureDialog::triggerFullscreenDoubeClick()
{
on_labPicture_mouseDoubleClicked(Qt::LeftButton);
}
void PictureDialog::exportCustomContextMenuRequestedPrivate(const QPoint &pos, bool fullscreen)
{
rqfullscreen = fullscreen;
2016-04-24 14:44:41 +02:00
exportMenu->popup(pos);
}
void PictureDialog::exportCustomContextMenuRequested(const QPoint &pos)
{
exportCustomContextMenuRequestedPrivate(pos, true);
}
2016-04-14 03:44:38 +02:00
void PictureDialog::mousePressEvent(QMouseEvent *ev)
{
QDialog::mousePressEvent(ev);
}
2016-04-12 21:53:21 +02:00
void PictureDialog::dialogNextPictureRequested()
{
emit nextPictureRequested();
}
void PictureDialog::dialogPreviousPictureRequested()
{
emit previousPictureRequested();
}
2017-01-27 01:48:47 +01:00
void PictureDialog::renderOverlayPicture()
{
// Generating Overlay Preview
QRect preferedRect = QRect(0, 0, 200, 160);
QString overlayText = tr("Key 1 - Avatar Preview Mode\nKey 2 - Toggle Overlay\nArrow Keys - Navigate");
QPixmap overlayPixmap(1, 1);
overlayPixmap.fill(Qt::transparent);
QPainter overlayPainter(&overlayPixmap);
QFont overlayPainterFont;
overlayPainterFont.setPixelSize(12);
overlayPainter.setFont(overlayPainterFont);
QRect overlaySpace = overlayPainter.boundingRect(preferedRect, Qt::AlignLeft | Qt::AlignTop | Qt::TextDontClip | Qt::TextWordWrap, overlayText);
overlayPainter.end();
int hOverlay = Qt::AlignTop;
if (overlaySpace.height() < 74)
{
hOverlay = Qt::AlignVCenter;
preferedRect.setHeight(71);
overlaySpace.setHeight(80);
}
else
{
overlaySpace.setHeight(overlaySpace.height() + 6);
}
overlayPixmap = overlayPixmap.scaled(overlaySpace.size());
overlayPainter.begin(&overlayPixmap);
overlayPainter.setPen(QColor::fromRgb(255, 255, 255, 255));
overlayPainter.setFont(overlayPainterFont);
overlayPainter.drawText(preferedRect, Qt::AlignLeft | hOverlay | Qt::TextDontClip | Qt::TextWordWrap, overlayText);
overlayPainter.end();
if (overlaySpace.width() < 194)
{
overlaySpace.setWidth(200);
}
else
{
overlaySpace.setWidth(overlaySpace.width() + 6);
}
QPixmap overlayBorderImage(overlaySpace.width(), overlaySpace.height());
overlayBorderImage.fill(QColor(15, 15, 15, 162));
QPixmap overlayTempPixmap(overlaySpace.size());
overlayTempPixmap.fill(Qt::transparent);
QPainter overlayTempPainter(&overlayTempPixmap);
overlayTempPainter.drawPixmap(0, 0, overlayBorderImage);
overlayTempPainter.drawPixmap(3, 3, overlayPixmap);
overlayTempPainter.end();
overlayTempImage = overlayTempPixmap.toImage();
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, QString picturePath, bool readOk, bool _indexed, int _index)
2016-03-21 20:44:07 +01:00
{
2016-04-12 21:53:21 +02:00
snapmaticPicture = QImage();
indexed = _indexed;
index = _index;
picPath = picturePath;
2016-03-29 12:23:21 +02:00
smpic = picture;
2016-03-21 22:40:03 +01:00
if (!readOk)
{
2016-03-23 02:08:16 +01:00
QMessageBox::warning(this, tr("Snapmatic Picture Viewer"), tr("Failed at %1").arg(picture->getLastStep()));
return;
2016-03-21 22:40:03 +01:00
}
if (picture->isPicOk())
{
snapmaticPicture = picture->getPicture();
renderPicture();
2016-03-22 05:20:42 +01:00
ui->cmdExport->setEnabled(true);
2016-03-21 22:40:03 +01:00
}
if (picture->isJsonOk())
2016-03-21 22:14:32 +01:00
{
2016-12-10 04:35:24 +01:00
locX = QString::number(picture->getSnapmaticProperties().location.x);
locY = QString::number(picture->getSnapmaticProperties().location.y);
locZ = QString::number(picture->getSnapmaticProperties().location.z);
crewID = crewDB->getCrewName(picture->getSnapmaticProperties().crewID);
created = picture->getSnapmaticProperties().createdDateTime.toString(Qt::DefaultLocaleShortDate);
plyrsList = picture->getSnapmaticProperties().playersList;
picTitl = picture->getPictureTitl();
2016-12-10 04:35:24 +01:00
picArea = picture->getSnapmaticProperties().area;
2016-04-23 21:01:00 +02:00
if (globalMap.contains(picArea))
{
picAreaStr = globalMap[picArea];
}
2016-04-23 21:01:41 +02:00
else
{
picAreaStr = picArea;
}
2016-03-21 22:14:32 +01:00
QString plyrsStr;
2016-03-21 22:40:03 +01:00
if (plyrsList.length() >= 1)
{
foreach (const QString &player, plyrsList)
{
QString playerName = profileDB->getPlayerName(player.toInt());
2016-04-07 17:36:15 +02:00
plyrsStr.append(", <a href=\"https://socialclub.rockstargames.com/member/");
plyrsStr.append(playerName);
plyrsStr.append("/");
plyrsStr.append(player);
plyrsStr.append("\">");
plyrsStr.append(playerName);
plyrsStr.append("</a>");
2016-03-21 22:40:03 +01:00
}
plyrsStr.remove(0,2);
}
else
2016-03-21 22:14:32 +01:00
{
2016-03-21 22:40:03 +01:00
plyrsStr = tr("No player");
2016-03-21 22:14:32 +01:00
}
2016-03-21 22:40:03 +01:00
if (crewID == "") { crewID = tr("No crew"); }
2016-03-21 20:44:07 +01:00
this->setWindowTitle(windowTitleStr.arg(picture->getPictureStr()));
ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID, picTitl, picAreaStr, created));
2016-03-21 22:14:32 +01:00
}
else
2016-03-21 20:44:07 +01:00
{
2016-04-23 20:28:55 +02:00
ui->labJSON->setText(jsonDrawString.arg("0.0", "0.0", "0.0", tr("No player"), tr("No crew"), tr("Unknown Location")));
2016-03-21 22:14:32 +01:00
QMessageBox::warning(this,tr("Snapmatic Picture Viewer"),tr("Failed at %1").arg(picture->getLastStep()));
2016-03-21 20:44:07 +01:00
}
2016-04-12 21:53:21 +02:00
emit newPictureCommited(snapmaticPicture);
2016-03-21 20:44:07 +01:00
}
2016-03-21 21:54:46 +01:00
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, QString picPath, bool readOk)
{
setSnapmaticPicture(picture, picPath, readOk, false, 0);
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, QString picPath)
{
setSnapmaticPicture(picture, picPath, true);
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, bool readOk, int index)
{
setSnapmaticPicture(picture, picture->getPictureFileName(), readOk, true, index);
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, bool readOk)
{
setSnapmaticPicture(picture, picture->getPictureFileName(), readOk);
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, int index)
{
setSnapmaticPicture(picture, true, index);
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture)
{
setSnapmaticPicture(picture, true);
}
void PictureDialog::renderPicture()
{
if (!previewmode)
{
2017-01-27 01:48:47 +01:00
if (overlayenabled)
{
QPixmap overlayAreaPixmap(960, 536);
overlayAreaPixmap.fill(Qt::transparent);
QPainter overlayAreaPainter(&overlayAreaPixmap);
overlayAreaPainter.drawImage(0, 0, snapmaticPicture);
overlayAreaPainter.drawImage(3, 3, overlayTempImage);
overlayAreaPainter.end();
ui->labPicture->setPixmap(overlayAreaPixmap);
}
else
{
ui->labPicture->setPixmap(QPixmap::fromImage(snapmaticPicture));
}
}
else
{
2017-01-27 01:48:47 +01:00
// Generating Avatar Preview
QPixmap avatarPixmap(960, 536);
QPainter snapPainter(&avatarPixmap);
QFont snapPainterFont;
snapPainterFont.setPixelSize(12);
snapPainter.drawImage(0, 0, snapmaticPicture);
snapPainter.drawImage(0, 0, avatarAreaPicture);
snapPainter.setPen(QColor::fromRgb(255, 255, 255, 255));
snapPainter.setFont(snapPainterFont);
snapPainter.drawText(QRect(3, 3, 140, 60), Qt::AlignLeft | Qt::TextWordWrap, tr("Avatar Preview Mode\nPress 1 for Default View"));
snapPainter.end();
ui->labPicture->setPixmap(avatarPixmap);
}
}
void PictureDialog::playerNameUpdated()
2016-03-22 05:59:17 +01:00
{
if (plyrsList.count() >= 1)
{
QString plyrsStr;
foreach (const QString &player, plyrsList)
{
QString playerName = profileDB->getPlayerName(player.toInt());
2016-04-07 17:36:15 +02:00
plyrsStr.append(", <a href=\"https://socialclub.rockstargames.com/member/");
if (playerName != player)
{
plyrsStr.append(playerName);
}
else
{
plyrsStr.append("id");
}
plyrsStr.append("/");
plyrsStr.append(player);
plyrsStr.append("\">");
plyrsStr.append(playerName);
plyrsStr.append("</a>");
2016-03-22 05:59:17 +01:00
}
plyrsStr.remove(0,2);
ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID, picTitl, picAreaStr, created));
2016-03-22 05:59:17 +01:00
}
}
2016-04-08 16:55:28 +02:00
void PictureDialog::exportSnapmaticPicture()
2016-03-22 05:20:42 +01:00
{
if (rqfullscreen && fullscreenWidget)
{
PictureExport::exportPicture(fullscreenWidget, smpic);
}
else
{
PictureExport::exportPicture(this, smpic);
}
2016-03-22 05:20:42 +01:00
}
2016-04-08 16:55:28 +02:00
void PictureDialog::copySnapmaticPicture()
{
if (rqfullscreen && fullscreenWidget)
{
2017-01-27 04:33:27 +01:00
PictureCopy::copyPicture(fullscreenWidget, picPath, smpic);
}
else
{
2017-01-27 04:33:27 +01:00
PictureCopy::copyPicture(this, picPath, smpic);
}
}
void PictureDialog::on_labPicture_mouseDoubleClicked(Qt::MouseButton button)
{
if (button == Qt::LeftButton)
{
2016-11-20 10:08:07 +01:00
QRect desktopRect = QApplication::desktop()->screenGeometry(this);
PictureWidget *pictureWidget = new PictureWidget(this);
2016-04-24 13:34:03 +02:00
pictureWidget->setObjectName("PictureWidget");
#if QT_VERSION >= 0x050600
pictureWidget->setWindowFlags(pictureWidget->windowFlags()^Qt::FramelessWindowHint^Qt::MaximizeUsingFullscreenGeometryHint);
2016-11-28 08:03:32 +01:00
#else
pictureWidget->setWindowFlags(pictureWidget->windowFlags()^Qt::FramelessWindowHint);
#endif
pictureWidget->setWindowTitle(this->windowTitle());
pictureWidget->setStyleSheet("QLabel#pictureLabel{background-color: black;}");
pictureWidget->setImage(snapmaticPicture, desktopRect);
pictureWidget->setModal(true);
fullscreenWidget = pictureWidget;
QObject::connect(this, SIGNAL(newPictureCommited(QImage)), pictureWidget, SLOT(setImage(QImage)));
QObject::connect(pictureWidget, SIGNAL(nextPictureRequested()), this, SLOT(dialogNextPictureRequested()));
QObject::connect(pictureWidget, SIGNAL(previousPictureRequested()), this, SLOT(dialogPreviousPictureRequested()));
pictureWidget->move(desktopRect.x(), desktopRect.y());
pictureWidget->resize(desktopRect.width(), desktopRect.height());
pictureWidget->showFullScreen();
pictureWidget->setFocus();
2016-11-20 10:08:07 +01:00
pictureWidget->raise();
pictureWidget->exec();
fullscreenWidget = 0;
delete pictureWidget;
}
}
void PictureDialog::on_labPicture_customContextMenuRequested(const QPoint &pos)
{
exportCustomContextMenuRequestedPrivate(ui->labPicture->mapToGlobal(pos), false);
}
bool PictureDialog::isIndexed()
{
return indexed;
}
int PictureDialog::getIndex()
{
return index;
}