2017-10-09 08:35:48 +02:00
|
|
|
/*****************************************************************************
|
2018-05-24 22:32:00 +02:00
|
|
|
* gta5view Grand Theft Auto V Profile Viewer
|
2021-02-03 20:22:00 +01:00
|
|
|
* Copyright (C) 2017-2021 Syping
|
2017-10-09 08:35:48 +02: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 IMPORTDIALOG_H
|
|
|
|
#define IMPORTDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2018-07-17 16:41:38 +02:00
|
|
|
#include <QMenu>
|
2017-10-09 08:35:48 +02:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ImportDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ImportDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-07-17 16:41:38 +02:00
|
|
|
explicit ImportDialog(QString profileName, QWidget *parent = 0);
|
2017-10-09 08:35:48 +02:00
|
|
|
~ImportDialog();
|
|
|
|
QImage image();
|
|
|
|
QString getImageTitle();
|
2017-11-12 15:58:59 +01:00
|
|
|
void setImage(QImage *image);
|
2018-07-21 18:33:08 +02:00
|
|
|
void lockSettings(bool lock);
|
|
|
|
void enableOverwriteMode();
|
2017-10-09 08:35:48 +02:00
|
|
|
bool isImportAgreed();
|
2020-11-16 15:29:31 +01:00
|
|
|
bool isUnlimitedBuffer();
|
2018-07-21 18:33:08 +02:00
|
|
|
bool areSettingsLocked();
|
2017-10-09 08:35:48 +02:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void processImage();
|
2020-11-16 15:29:31 +01:00
|
|
|
void reworkImage();
|
2018-07-20 15:58:51 +02:00
|
|
|
void cropPicture();
|
2018-07-17 16:41:38 +02:00
|
|
|
void importNewPicture();
|
2018-07-25 20:52:30 +02:00
|
|
|
void loadImportSettings();
|
|
|
|
void saveImportSettings();
|
2017-10-09 08:35:48 +02:00
|
|
|
void on_cbIgnore_toggled(bool checked);
|
|
|
|
void on_cbAvatar_toggled(bool checked);
|
|
|
|
void on_cmdCancel_clicked();
|
|
|
|
void on_cmdOK_clicked();
|
|
|
|
void on_labPicture_labelPainted();
|
|
|
|
void on_cmdColourChange_clicked();
|
2017-12-17 13:03:43 +01:00
|
|
|
void on_cmdBackgroundChange_clicked();
|
|
|
|
void on_cmdBackgroundWipe_clicked();
|
|
|
|
void on_cbStretch_toggled(bool checked);
|
|
|
|
void on_cbForceAvatarColour_toggled(bool checked);
|
2018-07-09 20:39:27 +02:00
|
|
|
void on_cbWatermark_toggled(bool checked);
|
2021-02-03 20:22:00 +01:00
|
|
|
void on_cbBorderless_toggled(bool checked);
|
2020-11-16 15:29:31 +01:00
|
|
|
void on_cbImportAsIs_toggled(bool checked);
|
|
|
|
void on_cbResolution_currentIndexChanged(int index);
|
2017-10-09 08:35:48 +02:00
|
|
|
|
|
|
|
private:
|
2018-07-17 16:41:38 +02:00
|
|
|
QString profileName;
|
2017-10-09 08:35:48 +02:00
|
|
|
Ui::ImportDialog *ui;
|
|
|
|
QImage avatarAreaImage;
|
2017-12-17 13:03:43 +01:00
|
|
|
QString backgroundPath;
|
2017-10-09 08:35:48 +02:00
|
|
|
QString imageTitle;
|
2017-12-17 13:03:43 +01:00
|
|
|
QImage backImage;
|
2017-10-09 08:35:48 +02:00
|
|
|
QImage workImage;
|
2020-04-24 05:36:11 +02:00
|
|
|
QImage origImage;
|
2017-10-09 08:35:48 +02:00
|
|
|
QImage newImage;
|
|
|
|
QColor selectedColour;
|
2020-11-16 15:29:31 +01:00
|
|
|
QMenu optionsMenu;
|
|
|
|
QSize snapmaticResolution;
|
2017-10-09 08:35:48 +02:00
|
|
|
bool insideAvatarZone;
|
2018-07-09 20:39:27 +02:00
|
|
|
bool watermarkPicture;
|
|
|
|
bool watermarkAvatar;
|
|
|
|
bool watermarkBlock;
|
2018-07-21 18:33:08 +02:00
|
|
|
bool settingsLocked;
|
2017-10-09 08:35:48 +02:00
|
|
|
bool importAgreed;
|
|
|
|
int snapmaticResolutionLW;
|
|
|
|
int snapmaticResolutionLH;
|
2018-07-09 20:39:27 +02:00
|
|
|
void processWatermark(QPainter *snapmaticPainter);
|
2018-07-25 20:52:30 +02:00
|
|
|
void processSettings(QString settingsProfile, bool setDefault = false);
|
|
|
|
void saveSettings(QString settingsProfile);
|
2017-10-09 08:35:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // IMPORTDIALOG_H
|