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/>.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# include "PictureCopy.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"
# include <QMessageBox>
# include <QFileDialog>
# include <QSettings>
PictureCopy : : PictureCopy ( )
{
}
2016-04-03 10:17:01 +02:00
void PictureCopy : : copyPicture ( QWidget * parent , QString picPath )
2016-04-03 02:27:24 +02:00
{
QSettings settings ( " Syping " , " gta5sync " ) ;
settings . beginGroup ( " FileDialogs " ) ;
2016-04-24 13:34:03 +02:00
settings . beginGroup ( " PictureCopy " ) ;
2016-04-03 02:27:24 +02:00
2016-10-27 06:58:56 +02:00
QString adjustedPicPath = picPath ;
if ( adjustedPicPath . right ( 7 ) = = " .hidden " ) // for the hidden file system
{
adjustedPicPath . remove ( adjustedPicPath . length ( ) - 7 , 7 ) ;
}
2016-04-03 02:27:24 +02:00
fileDialogPreSave :
2016-10-27 06:58:56 +02:00
QFileInfo sgdFileInfo ( adjustedPicPath ) ;
2016-04-03 02:27:24 +02:00
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 ( " " ) ;
fileDialog . setWindowFlags ( fileDialog . windowFlags ( ) ^ Qt : : WindowContextHelpButtonHint ) ;
2016-04-08 19:57:51 +02:00
fileDialog . setWindowTitle ( PictureDialog : : tr ( " Export as GTA Snapmatic... " ) ) ;
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 ( " Snapmatic pictures (PGTA*) " ) ;
filters < < PictureDialog : : tr ( " All files (**) " ) ;
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 : : documentsLocation ( ) ) . toString ( ) ) ;
2016-04-03 02:27:24 +02:00
fileDialog . selectFile ( sgdFileInfo . fileName ( ) ) ;
2016-04-24 13:34:03 +02:00
fileDialog . restoreGeometry ( settings . value ( parent - > objectName ( ) + " +Geomtery " , " " ) . toByteArray ( ) ) ;
2016-04-03 02:27:24 +02:00
if ( fileDialog . exec ( ) )
{
QStringList selectedFiles = fileDialog . selectedFiles ( ) ;
if ( selectedFiles . length ( ) = = 1 )
{
QString selectedFile = selectedFiles . at ( 0 ) ;
if ( QFile : : exists ( selectedFile ) )
{
2016-04-08 19:57:51 +02:00
if ( QMessageBox : : Yes = = QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as GTA Snapmatic " ) , 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 GTA Snapmatic " ) , 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 ;
}
}
bool isCopied = QFile : : copy ( picPath , selectedFile ) ;
if ( ! isCopied )
{
2016-04-08 19:57:51 +02:00
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as GTA Snapmatic " ) , PictureDialog : : tr ( " Failed to copy 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 GTA Snapmatic " ) , 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 ( ) ) ;
2016-04-03 02:27:24 +02:00
settings . endGroup ( ) ;
}