gta5view/PictureDialog.cpp

107 lines
3.3 KiB
C++
Raw Normal View History

2016-03-21 07:54:14 +01:00
/*****************************************************************************
* gta5sync GRAND THEFT AUTO V SYNC
* Copyright (C) 2016 Syping Gaming Team
*
* 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"
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>
2016-03-22 05:20:42 +01:00
#include <QTimer>
2016-03-21 20:44:07 +01:00
#include <QDebug>
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);
ui->cmdExport->setDefault(0);
ui->cmdClose->setDefault(1);
ui->cmdClose->setFocus();
2016-03-20 21:57:18 +01:00
}
PictureDialog::~PictureDialog()
{
delete ui;
}
2016-03-21 22:14:32 +01:00
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, bool readOk)
2016-03-21 20:44:07 +01:00
{
2016-03-21 22:40:03 +01:00
// Showing error if reading error
if (!readOk)
{
QMessageBox::warning(this,tr("Snapmatic Picture Viewer"),tr("Failed at %1").arg(picture->getLastStep())); return;
}
if (picture->isPicOk())
{
ui->labPicture->setPixmap(picture->getPixmap());
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
{
QString locX = QString::number(picture->getLocationX());
QString locY = QString::number(picture->getLocationY());
QString locZ = QString::number(picture->getLocationZ());
QString crewID = QString::number(picture->getCrewNumber());
QStringList plyrsList = picture->getPlayers();
QString plyrsStr;
2016-03-21 22:40:03 +01:00
if (plyrsList.length() >= 1)
{
foreach (const QString &player, plyrsList)
{
plyrsStr.append(", ");
2016-03-22 05:20:42 +01:00
plyrsStr.append(profileDB->getPlayerName(player.toInt()));
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));
}
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
}
}
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()
{
}