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-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-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-03-23 06:29:49 +01:00
|
|
|
~UserInterface();
|
|
|
|
|
|
|
|
private slots:
|
2016-03-27 13:19:50 +02:00
|
|
|
void closeProfile();
|
2016-03-27 15:53:32 +02:00
|
|
|
void on_actionExit_triggered();
|
|
|
|
void on_actionSelect_profile_triggered();
|
|
|
|
void on_profileButton_clicked();
|
2016-03-27 18:22:22 +02:00
|
|
|
void on_actionAbout_gta5sync_triggered();
|
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;
|
|
|
|
bool profileOpen;
|
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-03-27 15:53:32 +02:00
|
|
|
void setupProfileUi(QStringList GTAV_Profiles);
|
2016-03-27 13:19:50 +02:00
|
|
|
void openProfile(QString profileName);
|
2016-03-27 15:53:32 +02:00
|
|
|
void openSelectProfile();
|
2016-03-23 06:29:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // USERINTERFACE_H
|