2016-04-03 02:27:24 +02:00
/*****************************************************************************
* gta5sync GRAND THEFT AUTO V SYNC
* Copyright ( C ) 2016 Syping
*
* 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/>.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2016-04-24 13:34:03 +02:00
# include "config.h"
2016-04-03 02:27:24 +02:00
# include "PictureExport.h"
# include "PictureDialog.h"
2016-04-24 13:34:03 +02:00
# include "StandardPaths.h"
2016-04-03 02:27:24 +02:00
# include "SidebarGenerator.h"
2016-04-26 23:12:17 +02:00
# include <QDesktopWidget>
# include <QApplication>
2016-04-03 02:27:24 +02:00
# include <QMessageBox>
# include <QFileDialog>
# include <QSettings>
2016-04-24 13:34:03 +02:00
# include <QDebug>
2016-04-03 02:27:24 +02:00
PictureExport : : PictureExport ( )
{
}
2016-04-03 10:17:01 +02:00
void PictureExport : : exportPicture ( QWidget * parent , SnapmaticPicture * picture )
2016-04-03 02:27:24 +02:00
{
2016-04-14 01:27:29 +02:00
QSettings settings ( GTA5SYNC_APPVENDOR , GTA5SYNC_APPSTR ) ;
2016-04-26 23:12:17 +02:00
// Picture Settings
// Quality Settings
settings . beginGroup ( " Pictures " ) ;
int defaultQuality = 100 ;
QSize defExportSize = QSize ( 960 , 536 ) ;
int customQuality = settings . value ( " CustomQuality " , defaultQuality ) . toInt ( ) ;
if ( customQuality < 1 | | customQuality > 100 )
{
customQuality = 100 ;
}
bool useCustomQuality = settings . value ( " CustomQualityEnabled " , false ) . toBool ( ) ;
// Size Settings
QSize cusExportSize = settings . value ( " CustomSize " , defExportSize ) . toSize ( ) ;
if ( cusExportSize . width ( ) > 3840 )
{
cusExportSize . setWidth ( 3840 ) ;
}
else if ( cusExportSize . height ( ) > 2160 )
{
cusExportSize . setHeight ( 2160 ) ;
}
if ( cusExportSize . width ( ) < 1 )
{
cusExportSize . setWidth ( 1 ) ;
}
else if ( cusExportSize . height ( ) < 1 )
{
cusExportSize . setHeight ( 1 ) ;
}
QString sizeMode = settings . value ( " ExportSizeMode " , " Default " ) . toString ( ) ;
2016-04-28 00:21:25 +02:00
Qt : : AspectRatioMode aspectRatio = ( Qt : : AspectRatioMode ) settings . value ( " AspectRatio " , Qt : : KeepAspectRatio ) . toInt ( ) ;
2016-04-26 23:12:17 +02:00
settings . endGroup ( ) ;
// End Picture Settings
2016-04-03 02:27:24 +02:00
settings . beginGroup ( " FileDialogs " ) ;
2016-04-24 13:34:03 +02:00
settings . beginGroup ( " ExportPicture " ) ;
2016-04-03 02:27:24 +02:00
fileDialogPreSave :
QFileDialog fileDialog ( parent ) ;
fileDialog . setFileMode ( QFileDialog : : AnyFile ) ;
fileDialog . setViewMode ( QFileDialog : : Detail ) ;
fileDialog . setAcceptMode ( QFileDialog : : AcceptSave ) ;
2016-04-14 04:24:51 +02:00
fileDialog . setOption ( QFileDialog : : DontUseNativeDialog , false ) ;
2016-04-03 02:27:24 +02:00
fileDialog . setOption ( QFileDialog : : DontConfirmOverwrite , true ) ;
fileDialog . setDefaultSuffix ( " suffix " ) ;
fileDialog . setWindowFlags ( fileDialog . windowFlags ( ) ^ Qt : : WindowContextHelpButtonHint ) ;
2016-04-08 19:57:51 +02:00
fileDialog . setWindowTitle ( PictureDialog : : tr ( " Export as JPG picture... " ) ) ;
2016-04-08 16:55:28 +02:00
fileDialog . setLabelText ( QFileDialog : : Accept , PictureDialog : : tr ( " &Export " ) ) ;
2016-04-03 02:27:24 +02:00
QStringList filters ;
filters < < PictureDialog : : tr ( " JPEG picture (*.jpg) " ) ;
filters < < PictureDialog : : tr ( " Portable Network Graphics (*.png) " ) ;
fileDialog . setNameFilters ( filters ) ;
QList < QUrl > sidebarUrls = SidebarGenerator : : generateSidebarUrls ( fileDialog . sidebarUrls ( ) ) ;
fileDialog . setSidebarUrls ( sidebarUrls ) ;
2016-04-24 13:34:03 +02:00
fileDialog . setDirectory ( settings . value ( " Directory " , StandardPaths : : picturesLocation ( ) ) . toString ( ) ) ;
fileDialog . restoreGeometry ( settings . value ( parent - > objectName ( ) + " +Geomtery " , " " ) . toByteArray ( ) ) ;
2016-04-03 02:27:24 +02:00
2016-04-26 23:12:17 +02:00
QString newPictureFileName = getPictureFileName ( picture ) ;
fileDialog . selectFile ( newPictureFileName ) ;
2016-04-03 02:27:24 +02:00
if ( fileDialog . exec ( ) )
{
QStringList selectedFiles = fileDialog . selectedFiles ( ) ;
if ( selectedFiles . length ( ) = = 1 )
{
QString saveFileFormat ;
QString selectedFile = selectedFiles . at ( 0 ) ;
if ( selectedFile . right ( 4 ) = = " .jpg " )
{
saveFileFormat = " JPEG " ;
}
else if ( selectedFile . right ( 4 ) = = " .jpeg " )
{
saveFileFormat = " JPEG " ;
}
else if ( selectedFile . right ( 4 ) = = " .png " )
{
saveFileFormat = " PNG " ;
}
else if ( selectedFile . right ( 7 ) = = " .suffix " )
{
if ( fileDialog . selectedNameFilter ( ) = = " JPEG picture (*.jpg) " )
{
selectedFile . replace ( " .suffix " , " .jpg " ) ;
}
else if ( fileDialog . selectedNameFilter ( ) = = " Portable Network Graphics (*.png) " )
{
selectedFile . replace ( " .suffix " , " .png " ) ;
}
else
{
selectedFile . replace ( " .suffix " , " .jpg " ) ;
}
}
if ( QFile : : exists ( selectedFile ) )
{
2016-04-08 19:57:51 +02:00
if ( QMessageBox : : Yes = = QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as JPG picture " ) , PictureDialog : : tr ( " Overwrite %1 with current Snapmatic picture? " ) . arg ( " \" " + selectedFile + " \" " ) , QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : Yes ) )
2016-04-03 02:27:24 +02:00
{
if ( ! QFile : : remove ( selectedFile ) )
{
2016-04-08 19:57:51 +02:00
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as JPG picture " ) , PictureDialog : : tr ( " Failed to overwrite %1 with current Snapmatic picture " ) . arg ( " \" " + selectedFile + " \" " ) ) ;
2016-04-03 02:27:24 +02:00
goto fileDialogPreSave ;
}
}
else
{
goto fileDialogPreSave ;
}
}
2016-04-26 23:12:17 +02:00
// Scale Picture
QImage exportPicture = picture - > getPicture ( ) ;
if ( sizeMode = = " Desktop " )
{
QRect desktopResolution = QApplication : : desktop ( ) - > screenGeometry ( ) ;
2016-04-28 00:21:25 +02:00
exportPicture = exportPicture . scaled ( desktopResolution . width ( ) , desktopResolution . height ( ) , aspectRatio , Qt : : SmoothTransformation ) ;
2016-04-26 23:12:17 +02:00
}
else if ( sizeMode = = " Custom " )
{
2016-04-28 00:21:25 +02:00
exportPicture = exportPicture . scaled ( cusExportSize , aspectRatio , Qt : : SmoothTransformation ) ;
2016-04-26 23:12:17 +02:00
}
bool isSaved ;
if ( useCustomQuality )
{
isSaved = exportPicture . save ( selectedFile , saveFileFormat . toStdString ( ) . c_str ( ) , customQuality ) ;
}
else
{
isSaved = exportPicture . save ( selectedFile , saveFileFormat . toStdString ( ) . c_str ( ) , 100 ) ;
}
2016-04-03 02:27:24 +02:00
if ( ! isSaved )
{
2016-04-08 19:57:51 +02:00
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as JPG picture " ) , PictureDialog : : tr ( " Failed to export current Snapmatic picture " ) ) ;
2016-04-03 02:27:24 +02:00
goto fileDialogPreSave ;
}
}
else
{
2016-04-08 19:57:51 +02:00
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as JPG picture " ) , PictureDialog : : tr ( " No valid file is selected " ) ) ;
2016-04-03 02:27:24 +02:00
goto fileDialogPreSave ;
}
}
2016-04-24 13:34:03 +02:00
settings . setValue ( parent - > objectName ( ) + " +Geometry " , fileDialog . saveGeometry ( ) ) ;
settings . setValue ( " Directory " , fileDialog . directory ( ) . absolutePath ( ) ) ;
settings . endGroup ( ) ;
2016-04-03 02:27:24 +02:00
settings . endGroup ( ) ;
}
2016-04-03 10:17:01 +02:00
QString PictureExport : : getPictureFileName ( SnapmaticPicture * picture )
{
2016-04-06 05:00:31 +02:00
return picture - > getExportPictureFileName ( ) ;
2016-04-03 10:17:01 +02:00
}