gta5view/PictureDialog.cpp

341 lines
10 KiB
C++
Raw 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
#include <QDesktopWidget>
2016-03-21 20:44:07 +01:00
#include <QJsonDocument>
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 <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>
2016-03-23 03:33:46 +01:00
#include <QUrl>
#include <QDir>
2016-03-22 05:20:42 +01:00
PictureDialog::PictureDialog(ProfileDatabase *profileDB, QWidget *parent) :
QDialog(parent), profileDB(profileDB),
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;
indexed = 0;
picArea = "";
picTitl = "";
picPath = "";
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
// Export menu
exportMenu = new QMenu(this);
2016-04-08 19:46:27 +02:00
exportMenu->addAction(tr("Export as &JPG picture..."), this, SLOT(exportSnapmaticPicture()));
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();
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-08 16:55:28 +02:00
delete exportMenu;
2016-03-20 21:57:18 +01:00
delete ui;
}
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;
2016-04-18 07:23:19 +02:00
#if QT_VERSION >= 0x050000
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;
}
void PictureDialog::exportCustomContextMenuRequestedPrivate(const QPoint &pos, bool fullscreen)
{
rqfullscreen = fullscreen;
exportMenu->exec(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();
}
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();
ui->labPicture->setPixmap(QPixmap::fromImage(snapmaticPicture, Qt::AutoColor));
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-03-22 05:59:17 +01:00
locX = QString::number(picture->getLocationX());
locY = QString::number(picture->getLocationY());
locZ = QString::number(picture->getLocationZ());
crewID = QString::number(picture->getCrewNumber());
plyrsList = picture->getPlayers();
picTitl = picture->getPictureTitl();
picArea = picture->getArea();
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
2016-03-21 22:14:32 +01:00
this->setWindowTitle(windowTitleStr.arg(picture->getPictureStr()));
ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID, picTitl, picAreaStr));
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::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);
2016-04-23 20:28:55 +02:00
ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID, picTitl, picAreaStr));
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 != 0)
{
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 != 0)
{
PictureCopy::copyPicture(fullscreenWidget, picPath);
}
else
{
PictureCopy::copyPicture(this, picPath);
}
}
void PictureDialog::on_labPicture_mouseDoubleClicked(Qt::MouseButton button)
{
if (button == Qt::LeftButton)
{
QRect desktopRect = QApplication::desktop()->screenGeometry();
PictureWidget *pictureWidget = new PictureWidget(this);
pictureWidget->setWindowFlags(pictureWidget->windowFlags()^Qt::WindowContextHelpButtonHint);
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->showFullScreen();
pictureWidget->setFocus();
pictureWidget->exec();
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;
}