gta5view/PictureDialog.h

65 lines
1.9 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
#ifndef PICTUREDIALOG_H
#define PICTUREDIALOG_H
#include "SnapmaticPicture.h"
2016-03-22 05:20:42 +01:00
#include "ProfileDatabase.h"
2016-03-20 21:57:18 +01:00
#include <QDialog>
2016-04-08 16:55:28 +02:00
#include <QMenu>
2016-03-20 21:57:18 +01:00
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);
void setSnapmaticPicture(SnapmaticPicture *picture, QString picPath, bool readOk);
2016-03-20 21:57:18 +01:00
~PictureDialog();
2016-03-22 05:59:17 +01:00
public slots:
void playerNameUpdated();
2016-03-22 05:59:17 +01:00
2016-03-21 21:54:46 +01:00
private slots:
2016-04-08 16:55:28 +02:00
void copySnapmaticPicture();
void exportSnapmaticPicture();
2016-03-21 21:54:46 +01:00
void on_cmdClose_clicked();
void on_labPicture_mouseDoubleClicked();
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-29 12:23:21 +02:00
SnapmaticPicture *smpic;
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 picTitl;
QString picPath;
2016-03-22 05:59:17 +01:00
QString crewID;
QString locX;
QString locY;
QString locZ;
2016-04-08 16:55:28 +02:00
QMenu *exportMenu;
2016-03-20 21:57:18 +01:00
};
#endif // PICTUREDIALOG_H