mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
For media file open dialog add different file filters
On top of the file filter for all media files add a file filter for images only, one for videos only and one for all files. Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
This commit is contained in:
parent
669277d490
commit
bb2dfdfe54
3 changed files with 25 additions and 6 deletions
|
@ -922,11 +922,17 @@ void DiveListView::shiftTimes()
|
|||
|
||||
void DiveListView::loadImages()
|
||||
{
|
||||
QStringList filters = imageExtensionFilters();
|
||||
QStringList m_filters = mediaExtensionFilters();
|
||||
QStringList i_filters = imageExtensionFilters();
|
||||
QStringList v_filters = videoExtensionFilters();
|
||||
QStringList fileNames = QFileDialog::getOpenFileNames(this,
|
||||
tr("Open media files"),
|
||||
lastUsedImageDir(),
|
||||
tr("Media files (%1)").arg(filters.join(" ")));
|
||||
QString("%1 (%2);;%3 (%4);;%5 (%6);;%7 (*.*)")
|
||||
.arg(tr("Media files"), m_filters.join(" ")
|
||||
, tr("Image files"), i_filters.join(" ")
|
||||
, tr("Video files"), v_filters.join(" ")
|
||||
, tr("All files")));
|
||||
|
||||
if (fileNames.isEmpty())
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue