mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Multi Directory import support. This may cause delays starting the import dialog on windows (again).
This commit is contained in:
parent
a5a6bbf90f
commit
54fd38bf96
@ -16,6 +16,7 @@
|
|||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
#include <QPixmap>
|
#include <QPixmap>
|
||||||
#include <QDesktopWidget>
|
#include <QDesktopWidget>
|
||||||
|
#include <QListView>
|
||||||
|
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include "ui_mainwindow.h"
|
#include "ui_mainwindow.h"
|
||||||
@ -246,15 +247,33 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (asknew) {
|
if (asknew) {
|
||||||
newdir=QFileDialog::getExistingDirectory(this,"Select a folder to import","",QFileDialog::ShowDirsOnly);
|
QFileDialog w;
|
||||||
|
w.setFileMode(QFileDialog::DirectoryOnly);
|
||||||
|
w.setOption(QFileDialog::DontUseNativeDialog,false);
|
||||||
|
|
||||||
|
QListView *l = w.findChild<QListView*>("listView");
|
||||||
|
if (l) {
|
||||||
|
l->setSelectionMode(QAbstractItemView::MultiSelection);
|
||||||
|
}
|
||||||
|
QTreeView *t = w.findChild<QTreeView*>();
|
||||||
|
if (t) {
|
||||||
|
t->setSelectionMode(QAbstractItemView::MultiSelection);
|
||||||
|
}
|
||||||
|
if (w.exec()!=QDialog::Accepted) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for (int i=0;i<w.selectedFiles().size();i++) {
|
||||||
|
QString newdir=w.selectedFiles().at(i);
|
||||||
|
if (!importLocations.contains(newdir)) {
|
||||||
|
importLocations.append(newdir);
|
||||||
|
addnew=true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*newdir=QFileDialog::getExistingDirectory(this,"Select a folder to import","",QFileDialog::ShowDirsOnly);
|
||||||
if (newdir.isEmpty()) {
|
if (newdir.isEmpty()) {
|
||||||
// inform the user or just abort?
|
// inform the user or just abort?
|
||||||
return;
|
return;
|
||||||
}
|
} */
|
||||||
if (!importLocations.contains(newdir)) {
|
|
||||||
importLocations.append(newdir);
|
|
||||||
addnew=true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int successful=false;
|
int successful=false;
|
||||||
|
Loading…
Reference in New Issue
Block a user