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 USERINTERFACE_H
|
|
|
|
#define USERINTERFACE_H
|
|
|
|
|
2016-04-14 04:18:22 +02:00
|
|
|
#include "SnapmaticPicture.h"
|
2016-03-27 13:19:50 +02:00
|
|
|
#include "ProfileInterface.h"
|
2016-03-26 10:46:25 +01:00
|
|
|
#include "ProfileDatabase.h"
|
2016-03-27 15:53:32 +02:00
|
|
|
#include "DatabaseThread.h"
|
2016-03-26 10:46:25 +01:00
|
|
|
#include "CrewDatabase.h"
|
2016-04-14 04:18:22 +02:00
|
|
|
#include "SavegameData.h"
|
2016-03-23 06:29:49 +01:00
|
|
|
#include <QMainWindow>
|
2016-03-25 07:07:58 +01:00
|
|
|
#include <QString>
|
|
|
|
#include <QMap>
|
2016-03-23 06:29:49 +01:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class UserInterface;
|
|
|
|
}
|
|
|
|
|
|
|
|
class UserInterface : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-03-27 15:53:32 +02:00
|
|
|
explicit UserInterface(ProfileDatabase *profileDB, CrewDatabase *crewDB, DatabaseThread *threadDB, QWidget *parent = 0);
|
2016-04-11 16:51:32 +02:00
|
|
|
void setupDirEnv();
|
2016-03-23 06:29:49 +01:00
|
|
|
~UserInterface();
|
|
|
|
|
|
|
|
private slots:
|
2016-03-27 13:19:50 +02:00
|
|
|
void closeProfile();
|
2016-04-03 08:39:31 +02:00
|
|
|
void profileLoaded();
|
2016-04-11 16:51:32 +02:00
|
|
|
void changeFolder_clicked();
|
2016-04-03 06:12:12 +02:00
|
|
|
void profileButton_clicked();
|
2016-04-11 17:18:16 +02:00
|
|
|
void on_cmdReload_clicked();
|
2016-03-27 15:53:32 +02:00
|
|
|
void on_actionExit_triggered();
|
|
|
|
void on_actionSelect_profile_triggered();
|
2016-03-27 18:22:22 +02:00
|
|
|
void on_actionAbout_gta5sync_triggered();
|
2016-04-03 08:39:31 +02:00
|
|
|
void on_actionSelect_all_triggered();
|
|
|
|
void on_actionDeselect_all_triggered();
|
2016-04-03 10:17:01 +02:00
|
|
|
void on_actionExport_selected_triggered();
|
|
|
|
void on_actionDelete_selected_triggered();
|
2016-04-12 16:42:04 +02:00
|
|
|
void on_actionOptions_triggered();
|
2016-04-13 00:47:07 +02:00
|
|
|
void on_action_Import_triggered();
|
2016-04-14 04:18:22 +02:00
|
|
|
void on_actionOpen_File_triggered();
|
2016-07-26 08:00:56 +02:00
|
|
|
void on_actionSelect_GTA_Folder_triggered();
|
2016-10-27 11:24:26 +02:00
|
|
|
void on_action_Enable_In_game_triggered();
|
|
|
|
void on_action_Disable_In_game_triggered();
|
2016-04-14 06:33:15 +02:00
|
|
|
void settingsApplied(int contentMode, QString language);
|
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::UserInterface *ui;
|
2016-03-27 13:19:50 +02:00
|
|
|
ProfileInterface *profileUI;
|
2016-04-11 16:51:32 +02:00
|
|
|
QList<QPushButton*> profileBtns;
|
2016-03-27 13:19:50 +02:00
|
|
|
bool profileOpen;
|
2016-04-14 06:33:15 +02:00
|
|
|
int contentMode;
|
|
|
|
QString language;
|
2016-03-28 14:10:59 +02:00
|
|
|
QString defaultWindowTitle;
|
2016-03-25 07:07:58 +01:00
|
|
|
QString GTAV_Folder;
|
|
|
|
QString GTAV_ProfilesFolder;
|
2016-04-14 06:33:15 +02:00
|
|
|
QStringList GTAV_Profiles;
|
|
|
|
void setupProfileUi();
|
2016-03-27 13:19:50 +02:00
|
|
|
void openProfile(QString profileName);
|
2016-03-27 15:53:32 +02:00
|
|
|
void openSelectProfile();
|
2016-04-14 04:18:22 +02:00
|
|
|
|
|
|
|
// Open File
|
|
|
|
bool openFile(QString selectedFile, bool warn = true);
|
|
|
|
void openSavegameFile(SavegameData *savegame);
|
|
|
|
void openSnapmaticFile(SnapmaticPicture *picture);
|
2016-03-23 06:29:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // USERINTERFACE_H
|