2016-03-23 06:29:49 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* gta5sync GRAND THEFT AUTO V SYNC
|
2016-03-27 09:52:23 +02:00
|
|
|
* Copyright (C) 2016 Syping
|
2016-03-23 06:29:49 +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/>.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef PROFILEINTERFACE_H
|
|
|
|
#define PROFILEINTERFACE_H
|
|
|
|
|
2016-03-27 09:52:23 +02:00
|
|
|
#include "SnapmaticPicture.h"
|
2016-03-28 15:24:09 +02:00
|
|
|
#include "SnapmaticWidget.h"
|
2016-03-26 10:46:25 +01:00
|
|
|
#include "ProfileDatabase.h"
|
2016-03-27 15:53:32 +02:00
|
|
|
#include "DatabaseThread.h"
|
2016-04-03 12:54:55 +02:00
|
|
|
#include "SavegameWidget.h"
|
2016-03-27 15:53:32 +02:00
|
|
|
#include "ProfileLoader.h"
|
2016-04-03 01:18:48 +02:00
|
|
|
#include "ProfileWidget.h"
|
2016-04-03 12:27:40 +02:00
|
|
|
#include "ExportThread.h"
|
2016-03-27 09:52:23 +02:00
|
|
|
#include "SavegameData.h"
|
2016-03-26 10:46:25 +01:00
|
|
|
#include "CrewDatabase.h"
|
2016-04-03 12:27:40 +02:00
|
|
|
#include <QProgressDialog>
|
2016-03-29 01:13:34 +02:00
|
|
|
#include <QSpacerItem>
|
2016-03-23 06:29:49 +01:00
|
|
|
#include <QWidget>
|
2016-03-27 13:19:50 +02:00
|
|
|
#include <QList>
|
2016-04-01 19:32:16 +02:00
|
|
|
#include <QMap>
|
2016-03-23 06:29:49 +01:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ProfileInterface;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ProfileInterface : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-03-27 15:53:32 +02:00
|
|
|
explicit ProfileInterface(ProfileDatabase *profileDB, CrewDatabase *crewDB, DatabaseThread *threadDB, QWidget *parent = 0);
|
2016-03-26 08:53:37 +01:00
|
|
|
void setProfileFolder(QString folder, QString profile);
|
2016-04-14 06:33:15 +02:00
|
|
|
void settingsApplied(int contentMode, QString language);
|
2016-03-26 08:53:37 +01:00
|
|
|
void setupProfileInterface();
|
2016-10-27 11:24:26 +02:00
|
|
|
void disableSelected();
|
|
|
|
void enableSelected();
|
2016-10-27 10:35:20 +02:00
|
|
|
int selectedWidgets();
|
2016-03-23 06:29:49 +01:00
|
|
|
~ProfileInterface();
|
|
|
|
|
2016-04-03 08:39:31 +02:00
|
|
|
public slots:
|
|
|
|
void selectAllWidgets();
|
|
|
|
void deselectAllWidgets();
|
2016-04-03 10:17:01 +02:00
|
|
|
void exportSelected();
|
|
|
|
void deleteSelected();
|
2016-04-13 00:47:07 +02:00
|
|
|
void importFiles();
|
2016-04-03 08:39:31 +02:00
|
|
|
|
2016-03-26 10:46:25 +01:00
|
|
|
private slots:
|
|
|
|
void on_cmdCloseProfile_clicked();
|
2016-03-29 01:13:34 +02:00
|
|
|
void on_cmdImport_clicked();
|
2016-04-03 06:12:12 +02:00
|
|
|
void pictureLoaded(SnapmaticPicture *picture, QString picturePath);
|
|
|
|
void savegameLoaded(SavegameData *savegame, QString savegamePath);
|
|
|
|
void loadingProgress(int value, int maximum);
|
|
|
|
void pictureDeleted();
|
2016-04-03 08:39:31 +02:00
|
|
|
void savegameDeleted();
|
|
|
|
void profileLoaded_p();
|
2016-04-03 06:12:12 +02:00
|
|
|
void profileWidgetSelected();
|
|
|
|
void profileWidgetDeselected();
|
2016-04-12 20:56:58 +02:00
|
|
|
void dialogNextPictureRequested(QWidget *dialog);
|
|
|
|
void dialogPreviousPictureRequested(QWidget *dialog);
|
2016-03-26 10:46:25 +01:00
|
|
|
|
2016-03-23 06:29:49 +01:00
|
|
|
private:
|
2016-03-26 10:46:25 +01:00
|
|
|
ProfileDatabase *profileDB;
|
|
|
|
CrewDatabase *crewDB;
|
2016-03-27 15:53:32 +02:00
|
|
|
DatabaseThread *threadDB;
|
2016-03-23 06:29:49 +01:00
|
|
|
Ui::ProfileInterface *ui;
|
2016-03-27 15:53:32 +02:00
|
|
|
|
|
|
|
ProfileLoader *profileLoader;
|
|
|
|
QList<SavegameData*> savegames;
|
|
|
|
QList<SnapmaticPicture*> pictures;
|
2016-04-03 01:18:48 +02:00
|
|
|
QMap<ProfileWidget*,QString> widgets;
|
2016-03-29 01:13:34 +02:00
|
|
|
QSpacerItem *saSpacerItem;
|
2016-10-27 08:12:59 +02:00
|
|
|
QString enabledPicStr;
|
2016-03-23 06:29:49 +01:00
|
|
|
QString profileFolder;
|
2016-03-26 08:53:37 +01:00
|
|
|
QString profileName;
|
2016-03-27 12:22:21 +02:00
|
|
|
QString loadingStr;
|
2016-04-03 01:18:48 +02:00
|
|
|
int selectedWidgts;
|
2016-04-14 06:33:15 +02:00
|
|
|
int contentMode;
|
2016-03-27 13:19:50 +02:00
|
|
|
|
2016-04-13 00:11:20 +02:00
|
|
|
bool importFile(QString selectedFile, bool warn);
|
|
|
|
bool importSnapmaticPicture(SnapmaticPicture *picture, QString picPath, bool warn = true);
|
|
|
|
bool importSavegameData(SavegameData *savegame, QString sgdPath, bool warn = true);
|
2016-04-06 06:38:43 +02:00
|
|
|
void pictureLoaded_f(SnapmaticPicture *picture, QString picturePath, bool inserted);
|
|
|
|
void savegameLoaded_f(SavegameData *savegame, QString savegamePath, bool inserted);
|
2016-04-03 12:54:55 +02:00
|
|
|
void savegameDeleted_f(QWidget *sgdWidget);
|
|
|
|
void pictureDeleted_f(QWidget *picWidget);
|
2016-04-06 06:38:43 +02:00
|
|
|
void insertSnapmaticIPI(QWidget *widget);
|
|
|
|
void insertSavegameIPI(QWidget *widget);
|
|
|
|
void sortingProfileInterface();
|
2016-03-29 01:13:34 +02:00
|
|
|
|
2016-03-27 13:19:50 +02:00
|
|
|
signals:
|
2016-04-03 08:39:31 +02:00
|
|
|
void profileLoaded();
|
2016-03-27 13:19:50 +02:00
|
|
|
void profileClosed();
|
2016-03-23 06:29:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PROFILEINTERFACE_H
|