2016-03-21 07:54:14 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* gta5sync GRAND THEFT AUTO V SYNC
|
2016-03-27 09:52:23 +02:00
|
|
|
* 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
|
|
|
#ifndef PICTUREDIALOG_H
|
|
|
|
#define PICTUREDIALOG_H
|
|
|
|
|
2016-03-21 21:33:22 +01:00
|
|
|
#include "SnapmaticPicture.h"
|
2016-03-22 05:20:42 +01:00
|
|
|
#include "ProfileDatabase.h"
|
2016-03-20 21:57:18 +01:00
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class PictureDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class PictureDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-03-22 05:20:42 +01:00
|
|
|
explicit PictureDialog(ProfileDatabase *profileDB, QWidget *parent = 0);
|
2016-03-21 22:14:32 +01:00
|
|
|
void setSnapmaticPicture(SnapmaticPicture *picture, bool readOk);
|
2016-03-20 21:57:18 +01:00
|
|
|
~PictureDialog();
|
|
|
|
|
2016-03-22 05:59:17 +01:00
|
|
|
public slots:
|
|
|
|
void on_playerNameUpdated();
|
|
|
|
|
2016-03-21 21:54:46 +01:00
|
|
|
private slots:
|
|
|
|
void on_cmdClose_clicked();
|
2016-03-22 05:20:42 +01:00
|
|
|
void on_cmdExport_clicked();
|
2016-03-21 21:54:46 +01:00
|
|
|
|
2016-03-20 21:57:18 +01:00
|
|
|
private:
|
2016-03-22 05:59:17 +01:00
|
|
|
ProfileDatabase *profileDB;
|
2016-03-22 22:35:44 +01:00
|
|
|
Ui::PictureDialog *ui;
|
2016-03-21 20:44:07 +01:00
|
|
|
QString jsonDrawString;
|
2016-03-21 22:06:17 +01:00
|
|
|
QString windowTitleStr;
|
2016-03-22 05:59:17 +01:00
|
|
|
QStringList plyrsList;
|
|
|
|
QString crewID;
|
|
|
|
QString locX;
|
|
|
|
QString locY;
|
|
|
|
QString locZ;
|
2016-03-20 21:57:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PICTUREDIALOG_H
|