gta5view/PictureDialog.cpp

205 lines
6.6 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-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 "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 <QDebug>
2016-03-23 03:33:46 +01:00
#include <QList>
#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();
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-03-20 21:57:18 +01:00
}
PictureDialog::~PictureDialog()
{
delete ui;
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, QString picturePath, bool readOk)
2016-03-21 20:44:07 +01:00
{
2016-03-21 22:40:03 +01:00
// Showing error if reading error
QImage snapmaticPicture;
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();
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());
plyrsStr.append(", <a href=\"http://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));
2016-03-21 22:14:32 +01:00
}
else
2016-03-21 20:44:07 +01:00
{
2016-03-21 22:40:03 +01:00
ui->labJSON->setText(jsonDrawString.arg("0.0", "0.0", "0.0", tr("No player"), tr("No crew")));
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
}
int jsn_h = ui->jsonFrame->height();
int spc_h = layout()->spacing();
int pix_h = snapmaticPicture.height();
int frm_h = jsn_h+spc_h+pix_h;
this->setMinimumSize(960, frm_h);
this->setMaximumSize(960, frm_h);
2016-03-21 20:44:07 +01:00
}
2016-03-21 21:54:46 +01:00
2016-03-22 05:59:17 +01:00
void PictureDialog::on_playerNameUpdated()
{
if (plyrsList.count() >= 1)
{
QString plyrsStr;
foreach (const QString &player, plyrsList)
{
QString playerName = profileDB->getPlayerName(player.toInt());
plyrsStr.append(", <a href=\"http://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));
2016-03-22 05:59:17 +01:00
}
}
2016-03-21 21:54:46 +01:00
void PictureDialog::on_cmdClose_clicked()
{
this->close();
}
2016-03-22 05:20:42 +01:00
void PictureDialog::on_cmdExport_clicked()
{
PictureExport::ExportPicture(this, smpic);
2016-03-22 05:20:42 +01:00
}
void PictureDialog::on_cmdCopy_clicked()
{
PictureCopy::CopyPicture(this, picPath);
}
void PictureDialog::on_labPicture_mouseDoubleClicked()
{
QDialog *pictureWidget = new QDialog(this);
QRect rec = QApplication::desktop()->screenGeometry();
2016-04-01 22:04:17 +02:00
QHBoxLayout *widgetLayout = new QHBoxLayout(pictureWidget);
widgetLayout->setSpacing(0);
widgetLayout->setContentsMargins(0, 0, 0, 0);
UiModLabel *pictureLabel = new UiModLabel(pictureWidget);
pictureLabel->setPixmap(ui->labPicture->pixmap()->scaled(rec.width(), rec.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation));
2016-04-01 22:04:17 +02:00
pictureLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
pictureLabel->setAlignment(Qt::AlignCenter);
widgetLayout->addWidget(pictureLabel);
QObject::connect(pictureLabel, SIGNAL(mouseDoubleClicked()), pictureWidget, SLOT(close()));
2016-04-01 22:04:17 +02:00
pictureWidget->setLayout(widgetLayout);
pictureWidget->setWindowFlags(pictureWidget->windowFlags()^Qt::WindowContextHelpButtonHint);
2016-04-01 22:05:38 +02:00
pictureWidget->setWindowTitle(this->windowTitle());
pictureWidget->setStyleSheet("background-color: black;");
pictureWidget->showFullScreen();
pictureWidget->setModal(true);
pictureWidget->exec();
2016-04-01 22:04:17 +02:00
widgetLayout->deleteLater();
delete widgetLayout;
pictureLabel->deleteLater();
delete pictureLabel;
pictureWidget->deleteLater();
delete pictureWidget;
}