added get member name from Social Club
This commit is contained in:
parent
0f17791e59
commit
49d29aa3ec
11 changed files with 391 additions and 11 deletions
|
|
@ -20,6 +20,7 @@
|
|||
#define PICTUREDIALOG_H
|
||||
|
||||
#include "SnapmaticPicture.h"
|
||||
#include "ProfileDatabase.h"
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
|
|
@ -30,17 +31,19 @@ class PictureDialog : public QDialog
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit PictureDialog(QWidget *parent = 0);
|
||||
explicit PictureDialog(ProfileDatabase *profileDB, QWidget *parent = 0);
|
||||
void setSnapmaticPicture(SnapmaticPicture *picture, bool readOk);
|
||||
~PictureDialog();
|
||||
|
||||
private slots:
|
||||
void on_cmdClose_clicked();
|
||||
void on_cmdExport_clicked();
|
||||
|
||||
private:
|
||||
Ui::PictureDialog *ui;
|
||||
QString jsonDrawString;
|
||||
QString windowTitleStr;
|
||||
ProfileDatabase *profileDB;
|
||||
};
|
||||
|
||||
#endif // PICTUREDIALOG_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue