2017-04-27 18:26:05 +00:00
// SPDX-License-Identifier: GPL-2.0
2017-04-04 17:21:30 +00:00
# include "TabDivePhotos.h"
# include "ui_TabDivePhotos.h"
2018-03-10 15:36:20 +00:00
# include "core/imagedownloader.h"
2017-04-04 17:21:30 +00:00
# include <qt-models/divepicturemodel.h>
# include <QDesktopServices>
# include <QContextMenuEvent>
# include <QMenu>
# include <QUrl>
# include <QMessageBox>
2018-07-18 21:09:31 +00:00
# include <QFileInfo>
2019-04-14 14:19:23 +00:00
# include "core/save-profiledata.h"
# include "core/membuffer.h"
2017-04-04 17:21:30 +00:00
//TODO: Remove those in the future.
# include "../mainwindow.h"
# include "../divelistview.h"
TabDivePhotos : : TabDivePhotos ( QWidget * parent )
: TabBase ( parent ) ,
ui ( new Ui : : TabDivePhotos ( ) ) ,
divePictureModel ( DivePictureModel : : instance ( ) )
{
ui - > setupUi ( this ) ;
ui - > photosView - > setModel ( divePictureModel ) ;
2017-11-29 13:03:16 +00:00
ui - > photosView - > setSelectionMode ( QAbstractItemView : : ExtendedSelection ) ;
2017-12-01 00:38:55 +00:00
ui - > photosView - > setResizeMode ( QListView : : Adjust ) ;
2017-04-04 17:21:30 +00:00
connect ( ui - > photosView , & DivePictureWidget : : photoDoubleClicked ,
[ ] ( const QString & path ) {
QDesktopServices : : openUrl ( QUrl : : fromLocalFile ( path ) ) ;
}
) ;
2017-12-17 15:17:38 +00:00
connect ( ui - > photosView , & DivePictureWidget : : zoomLevelChanged ,
this , & TabDivePhotos : : changeZoomLevel ) ;
connect ( ui - > zoomSlider , & QAbstractSlider : : valueChanged ,
DivePictureModel : : instance ( ) , & DivePictureModel : : setZoomLevel ) ;
2017-04-04 17:21:30 +00:00
}
TabDivePhotos : : ~ TabDivePhotos ( )
{
delete ui ;
}
void TabDivePhotos : : clear ( )
{
updateData ( ) ;
}
void TabDivePhotos : : contextMenuEvent ( QContextMenuEvent * event )
{
QMenu popup ( this ) ;
2019-10-14 18:57:13 +00:00
popup . addAction ( tr ( " Load media from file(s) " ) , this , & TabDivePhotos : : addPhotosFromFile ) ;
popup . addAction ( tr ( " Load media file(s) from web " ) , this , & TabDivePhotos : : addPhotosFromURL ) ;
2017-04-04 17:21:30 +00:00
popup . addSeparator ( ) ;
2019-10-14 18:57:13 +00:00
popup . addAction ( tr ( " Delete selected media files " ) , this , & TabDivePhotos : : removeSelectedPhotos ) ;
popup . addAction ( tr ( " Delete all media files " ) , this , & TabDivePhotos : : removeAllPhotos ) ;
popup . addAction ( tr ( " Open folder of selected media files " ) , this , & TabDivePhotos : : openFolderOfSelectedFiles ) ;
popup . addAction ( tr ( " Recalculate selected thumbnails " ) , this , & TabDivePhotos : : recalculateSelectedThumbnails ) ;
popup . addAction ( tr ( " Save dive data as subtitles " ) , this , & TabDivePhotos : : saveSubtitles ) ;
2017-04-04 17:21:30 +00:00
popup . exec ( event - > globalPos ( ) ) ;
event - > accept ( ) ;
}
2018-05-27 12:03:29 +00:00
QVector < QString > TabDivePhotos : : getSelectedFilenames ( ) const
2017-04-04 17:21:30 +00:00
{
2018-05-27 12:03:29 +00:00
QVector < QString > selectedPhotos ;
2017-04-04 17:21:30 +00:00
if ( ! ui - > photosView - > selectionModel ( ) - > hasSelection ( ) )
2018-05-27 12:03:29 +00:00
return selectedPhotos ;
QModelIndexList indexes = ui - > photosView - > selectionModel ( ) - > selectedRows ( ) ;
2017-04-04 17:21:30 +00:00
if ( indexes . count ( ) = = 0 )
indexes = ui - > photosView - > selectionModel ( ) - > selectedIndexes ( ) ;
2018-05-27 12:03:29 +00:00
selectedPhotos . reserve ( indexes . count ( ) ) ;
2018-05-18 19:57:18 +00:00
for ( const auto & photo : indexes ) {
2017-04-04 17:21:30 +00:00
if ( photo . isValid ( ) ) {
QString fileUrl = photo . data ( Qt : : DisplayPropertyRole ) . toString ( ) ;
2018-05-18 19:57:18 +00:00
if ( ! fileUrl . isEmpty ( ) )
2018-05-27 12:03:29 +00:00
selectedPhotos . push_back ( fileUrl ) ;
2017-04-04 17:21:30 +00:00
}
2018-05-18 19:57:18 +00:00
}
2018-05-27 12:03:29 +00:00
return selectedPhotos ;
}
void TabDivePhotos : : removeSelectedPhotos ( )
{
DivePictureModel : : instance ( ) - > removePictures ( getSelectedFilenames ( ) ) ;
}
2018-07-18 21:09:31 +00:00
void TabDivePhotos : : openFolderOfSelectedFiles ( )
{
QVector < QString > directories ;
for ( const QString & filename : getSelectedFilenames ( ) ) {
QFileInfo info ( filename ) ;
if ( ! info . exists ( ) )
continue ;
QString path = info . absolutePath ( ) ;
if ( path . isEmpty ( ) | | directories . contains ( path ) )
continue ;
directories . append ( path ) ;
}
for ( const QString & dir : directories )
QDesktopServices : : openUrl ( QUrl : : fromLocalFile ( dir ) ) ;
}
2018-05-27 12:03:29 +00:00
void TabDivePhotos : : recalculateSelectedThumbnails ( )
{
Thumbnailer : : instance ( ) - > calculateThumbnails ( getSelectedFilenames ( ) ) ;
2017-04-04 17:21:30 +00:00
}
2019-04-14 14:19:23 +00:00
void TabDivePhotos : : saveSubtitles ( )
{
QVector < QString > selectedPhotos ;
if ( ! ui - > photosView - > selectionModel ( ) - > hasSelection ( ) )
return ;
QModelIndexList indexes = ui - > photosView - > selectionModel ( ) - > selectedRows ( ) ;
if ( indexes . count ( ) = = 0 )
indexes = ui - > photosView - > selectionModel ( ) - > selectedIndexes ( ) ;
selectedPhotos . reserve ( indexes . count ( ) ) ;
for ( const auto & photo : indexes ) {
if ( photo . isValid ( ) ) {
QString fileUrl = photo . data ( Qt : : DisplayPropertyRole ) . toString ( ) ;
if ( ! fileUrl . isEmpty ( ) ) {
QFileInfo fi = QFileInfo ( fileUrl ) ;
QFile subtitlefile ;
subtitlefile . setFileName ( QString ( fi . path ( ) ) + " / " + fi . completeBaseName ( ) + " .ass " ) ;
int offset = photo . data ( Qt : : UserRole + 1 ) . toInt ( ) ;
int duration = photo . data ( Qt : : UserRole + 2 ) . toInt ( ) ;
// Only videos have non-zero duration
if ( ! duration )
continue ;
struct membuffer b = { 0 } ;
save_subtitles_buffer ( & b , & displayed_dive , offset , duration ) ;
2019-10-27 18:24:10 +00:00
char * data = detach_cstring ( & b ) ;
2019-04-14 14:19:23 +00:00
subtitlefile . open ( QIODevice : : WriteOnly ) ;
subtitlefile . write ( data , strlen ( data ) ) ;
subtitlefile . close ( ) ;
free ( data ) ;
}
}
}
}
2017-04-04 17:21:30 +00:00
//TODO: This looks overly wrong. We shouldn't call MainWindow to retrieve the DiveList to add Images.
void TabDivePhotos : : addPhotosFromFile ( )
{
2018-10-12 14:13:42 +00:00
MainWindow : : instance ( ) - > diveList - > loadImages ( ) ;
2017-04-04 17:21:30 +00:00
}
void TabDivePhotos : : addPhotosFromURL ( )
{
2018-10-12 14:13:42 +00:00
MainWindow : : instance ( ) - > diveList - > loadWebImages ( ) ;
2017-04-04 17:21:30 +00:00
}
void TabDivePhotos : : removeAllPhotos ( )
{
2018-07-13 18:46:45 +00:00
if ( QMessageBox : : warning ( this , tr ( " Deleting media files " ) , tr ( " Are you sure you want to delete all media files? " ) , QMessageBox : : Cancel | QMessageBox : : Ok , QMessageBox : : Cancel ) ! = QMessageBox : : Cancel ) {
2017-04-04 17:21:30 +00:00
ui - > photosView - > selectAll ( ) ;
removeSelectedPhotos ( ) ;
}
}
void TabDivePhotos : : updateData ( )
{
divePictureModel - > updateDivePictures ( ) ;
}
2017-12-17 15:17:38 +00:00
void TabDivePhotos : : changeZoomLevel ( int delta )
{
// We count on QSlider doing bound checks
ui - > zoomSlider - > setValue ( ui - > zoomSlider - > value ( ) + delta ) ;
}