forked from qt-creator/qt-creator
QmlDesigner: Refactor adding resources
We show now a dialog that allows to optional change the target direcotory and gives an overview of the operations. Change-Id: I3f3337be1049b1c35bfa783c5840fd49d1952806 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -0,0 +1,158 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2016 The Qt Company Ltd.
|
||||||
|
** Contact: https://www.qt.io/licensing/
|
||||||
|
**
|
||||||
|
** This file is part of Qt Creator.
|
||||||
|
**
|
||||||
|
** Commercial License Usage
|
||||||
|
** Licensees holding valid commercial Qt licenses may use this file in
|
||||||
|
** accordance with the commercial license agreement provided with the
|
||||||
|
** Software or, alternatively, in accordance with the terms contained in
|
||||||
|
** a written agreement between you and The Qt Company. For licensing terms
|
||||||
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
||||||
|
** information use the contact form at https://www.qt.io/contact-us.
|
||||||
|
**
|
||||||
|
** GNU General Public License Usage
|
||||||
|
** Alternatively, this file may be used under the terms of the GNU
|
||||||
|
** General Public License version 3 as published by the Free Software
|
||||||
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
||||||
|
** included in the packaging of this file. Please review the following
|
||||||
|
** information to ensure the GNU General Public License requirements will
|
||||||
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include "addimagesdialog.h"
|
||||||
|
|
||||||
|
#include <coreplugin/icore.h>
|
||||||
|
|
||||||
|
#include <QComboBox>
|
||||||
|
#include <QCoreApplication>
|
||||||
|
#include <QDialogButtonBox>
|
||||||
|
#include <QFileDialog>
|
||||||
|
#include <QGridLayout>
|
||||||
|
#include <QHeaderView>
|
||||||
|
#include <QLabel>
|
||||||
|
#include <QPushButton>
|
||||||
|
#include <QTableWidget>
|
||||||
|
|
||||||
|
static QTableWidget* createFilesTable(const QStringList &fileNames)
|
||||||
|
{
|
||||||
|
QTableWidget *table = new QTableWidget(0, 2);
|
||||||
|
table->setSelectionMode(QAbstractItemView::NoSelection);
|
||||||
|
|
||||||
|
QStringList labels({
|
||||||
|
QCoreApplication::translate("AddImageToResources","Filename"),
|
||||||
|
QCoreApplication::translate("AddImageToResources","Size")
|
||||||
|
});
|
||||||
|
table->setHorizontalHeaderLabels(labels);
|
||||||
|
table->horizontalHeader()->setSectionResizeMode(0, QHeaderView::Stretch);
|
||||||
|
table->verticalHeader()->hide();
|
||||||
|
table->setShowGrid(false);
|
||||||
|
|
||||||
|
for (const QString &filePath : fileNames) {
|
||||||
|
const QString toolTip = QDir::toNativeSeparators(filePath);
|
||||||
|
const QString fileName = QFileInfo(filePath).fileName();
|
||||||
|
const qint64 size = QFileInfo(filePath).size();
|
||||||
|
QTableWidgetItem *fileNameItem = new QTableWidgetItem(fileName);
|
||||||
|
fileNameItem->setToolTip(toolTip);
|
||||||
|
fileNameItem->setFlags(fileNameItem->flags() ^ Qt::ItemIsEditable);
|
||||||
|
QTableWidgetItem *sizeItem = new QTableWidgetItem(QLocale().formattedDataSize(size));
|
||||||
|
sizeItem->setToolTip(toolTip);
|
||||||
|
sizeItem->setTextAlignment(Qt::AlignRight | Qt::AlignVCenter);
|
||||||
|
sizeItem->setFlags(sizeItem->flags() ^ Qt::ItemIsEditable);
|
||||||
|
|
||||||
|
int row = table->rowCount();
|
||||||
|
table->insertRow(row);
|
||||||
|
table->setItem(row, 0, fileNameItem);
|
||||||
|
table->setItem(row, 1, sizeItem);
|
||||||
|
}
|
||||||
|
|
||||||
|
return table;
|
||||||
|
}
|
||||||
|
|
||||||
|
QComboBox *createDirectoryComboBox(const QString &defaultDirectory)
|
||||||
|
{
|
||||||
|
QComboBox *comboBox = new QComboBox;
|
||||||
|
comboBox->addItem(defaultDirectory);
|
||||||
|
comboBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
|
||||||
|
|
||||||
|
for (const QString &dir : QDir(defaultDirectory).entryList(QDir::AllDirs | QDir::NoDotAndDotDot))
|
||||||
|
comboBox->addItem(defaultDirectory + "/" +dir);
|
||||||
|
|
||||||
|
return comboBox;
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace QmlDesigner {
|
||||||
|
|
||||||
|
QString AddImagesDialog::getDirectory(const QStringList &fileNames, const QString &defaultDirectory)
|
||||||
|
{
|
||||||
|
QDialog *dialog = new QDialog(Core::ICore::dialogParent());
|
||||||
|
dialog->setMinimumWidth(480);
|
||||||
|
|
||||||
|
QString result;
|
||||||
|
QString directory = defaultDirectory;
|
||||||
|
|
||||||
|
dialog->setModal(true);
|
||||||
|
dialog->setWindowFlags(dialog->windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
||||||
|
dialog->setWindowTitle(QCoreApplication::translate("AddImageToResources","Add Resources"));
|
||||||
|
QTableWidget *table = createFilesTable(fileNames);
|
||||||
|
table->setParent(dialog);
|
||||||
|
QGridLayout *mainLayout = new QGridLayout(dialog);
|
||||||
|
mainLayout->addWidget(table, 0, 0, 1, 4);
|
||||||
|
|
||||||
|
QComboBox *directoryComboBox = createDirectoryComboBox(defaultDirectory);
|
||||||
|
|
||||||
|
auto setDirectoryForComboBox = [directoryComboBox, &directory](const QString &newDir) {
|
||||||
|
if (directoryComboBox->findText(newDir) < 0)
|
||||||
|
directoryComboBox->addItem(newDir);
|
||||||
|
|
||||||
|
directoryComboBox->setCurrentText(newDir);
|
||||||
|
directory = newDir;
|
||||||
|
};
|
||||||
|
|
||||||
|
QObject::connect(directoryComboBox, &QComboBox::currentTextChanged, dialog, [&directory](const QString &text){
|
||||||
|
directory = text;
|
||||||
|
});
|
||||||
|
|
||||||
|
QPushButton *browseButton = new QPushButton(QCoreApplication::translate("AddImageToResources", "&Browse..."), dialog);
|
||||||
|
|
||||||
|
QObject::connect(browseButton, &QPushButton::clicked, dialog, [setDirectoryForComboBox, &directory]() {
|
||||||
|
const QString newDir = QFileDialog::getExistingDirectory(Core::ICore::dialogParent(),
|
||||||
|
QCoreApplication::translate("AddImageToResources", "Target Directory"),
|
||||||
|
directory);
|
||||||
|
if (!newDir.isEmpty())
|
||||||
|
setDirectoryForComboBox(newDir);
|
||||||
|
});
|
||||||
|
|
||||||
|
mainLayout->addWidget(new QLabel(QCoreApplication::translate("AddImageToResources", "In directory:")), 1, 0);
|
||||||
|
mainLayout->addWidget(directoryComboBox, 1, 0, 1, 3);
|
||||||
|
mainLayout->addWidget(browseButton, 1, 3, 1 , 1);
|
||||||
|
|
||||||
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok
|
||||||
|
| QDialogButtonBox::Cancel);
|
||||||
|
|
||||||
|
mainLayout->addWidget(buttonBox, 3, 2, 1, 2);
|
||||||
|
|
||||||
|
QObject::connect(buttonBox, &QDialogButtonBox::accepted, dialog, [dialog](){
|
||||||
|
dialog->accept();
|
||||||
|
dialog->deleteLater();
|
||||||
|
});
|
||||||
|
|
||||||
|
QObject::connect(buttonBox, &QDialogButtonBox::rejected, dialog, [dialog, &directory](){
|
||||||
|
dialog->reject();
|
||||||
|
dialog->deleteLater();
|
||||||
|
directory = QString();
|
||||||
|
});
|
||||||
|
|
||||||
|
QObject::connect(dialog, &QDialog::accepted, [&directory, &result](){
|
||||||
|
result = directory;
|
||||||
|
});
|
||||||
|
|
||||||
|
dialog->exec();
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
} //QmlDesigner
|
@@ -0,0 +1,38 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2016 The Qt Company Ltd.
|
||||||
|
** Contact: https://www.qt.io/licensing/
|
||||||
|
**
|
||||||
|
** This file is part of Qt Creator.
|
||||||
|
**
|
||||||
|
** Commercial License Usage
|
||||||
|
** Licensees holding valid commercial Qt licenses may use this file in
|
||||||
|
** accordance with the commercial license agreement provided with the
|
||||||
|
** Software or, alternatively, in accordance with the terms contained in
|
||||||
|
** a written agreement between you and The Qt Company. For licensing terms
|
||||||
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
||||||
|
** information use the contact form at https://www.qt.io/contact-us.
|
||||||
|
**
|
||||||
|
** GNU General Public License Usage
|
||||||
|
** Alternatively, this file may be used under the terms of the GNU
|
||||||
|
** General Public License version 3 as published by the Free Software
|
||||||
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
||||||
|
** included in the packaging of this file. Please review the following
|
||||||
|
** information to ensure the GNU General Public License requirements will
|
||||||
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <QStringList>
|
||||||
|
|
||||||
|
namespace QmlDesigner {
|
||||||
|
|
||||||
|
class AddImagesDialog
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
static QString getDirectory(const QStringList &fileNames, const QString &defaultDirectory);
|
||||||
|
};
|
||||||
|
|
||||||
|
} //QmlDesigner
|
@@ -1,6 +1,7 @@
|
|||||||
VPATH += $$PWD
|
VPATH += $$PWD
|
||||||
|
|
||||||
SOURCES += modelnodecontextmenu.cpp
|
SOURCES += modelnodecontextmenu.cpp
|
||||||
|
SOURCES += addimagesdialog.cpp
|
||||||
SOURCES += changestyleaction.cpp
|
SOURCES += changestyleaction.cpp
|
||||||
SOURCES += theme.cpp
|
SOURCES += theme.cpp
|
||||||
SOURCES += findimplementation.cpp
|
SOURCES += findimplementation.cpp
|
||||||
@@ -17,6 +18,7 @@ SOURCES += crumblebar.cpp
|
|||||||
SOURCES += qmldesignericonprovider.cpp
|
SOURCES += qmldesignericonprovider.cpp
|
||||||
|
|
||||||
HEADERS += modelnodecontextmenu.h
|
HEADERS += modelnodecontextmenu.h
|
||||||
|
HEADERS += addimagesdialog.h
|
||||||
HEADERS += changestyleaction.h
|
HEADERS += changestyleaction.h
|
||||||
HEADERS += theme.h
|
HEADERS += theme.h
|
||||||
HEADERS += findimplementation.h
|
HEADERS += findimplementation.h
|
||||||
|
@@ -42,7 +42,7 @@ namespace QmlDesigner {
|
|||||||
|
|
||||||
class DesignerActionManagerView;
|
class DesignerActionManagerView;
|
||||||
|
|
||||||
typedef std::function<bool (const QString &filename, const QString &targetDirectory)> AddResourceOperation;
|
typedef std::function<bool (const QStringList &filenames, const QString &defaulTargetDirectory)> AddResourceOperation;
|
||||||
|
|
||||||
struct AddResourceHandler
|
struct AddResourceHandler
|
||||||
{
|
{
|
||||||
|
@@ -25,9 +25,11 @@
|
|||||||
|
|
||||||
#include "modelnodeoperations.h"
|
#include "modelnodeoperations.h"
|
||||||
#include "modelnodecontextmenu_helper.h"
|
#include "modelnodecontextmenu_helper.h"
|
||||||
|
#include "addimagesdialog.h"
|
||||||
#include "layoutingridlayout.h"
|
#include "layoutingridlayout.h"
|
||||||
#include "findimplementation.h"
|
#include "findimplementation.h"
|
||||||
|
|
||||||
|
|
||||||
#include "addsignalhandlerdialog.h"
|
#include "addsignalhandlerdialog.h"
|
||||||
|
|
||||||
#include <bindingproperty.h>
|
#include <bindingproperty.h>
|
||||||
@@ -1008,25 +1010,35 @@ void addTabBarToStackedContainer(const SelectionContext &selectionContext)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool addImageToProject(const QString &fileName, const QString &directory)
|
bool addImageToProject(const QStringList &fileNames, const QString &defaultDirectory)
|
||||||
{
|
{
|
||||||
const QString targetFile = directory + "/" + QFileInfo(fileName).fileName();
|
QString directory = AddImagesDialog::getDirectory(fileNames, defaultDirectory);
|
||||||
const bool success = QFile::copy(fileName, targetFile);
|
|
||||||
|
|
||||||
auto document = QmlDesignerPlugin::instance()->currentDesignDocument();
|
if (directory.isEmpty())
|
||||||
|
return true;
|
||||||
|
|
||||||
QTC_ASSERT(document, return false);
|
bool allSuccessful = true;
|
||||||
|
for (const QString &fileName : fileNames) {
|
||||||
|
const QString targetFile = directory + "/" + QFileInfo(fileName).fileName();
|
||||||
|
const bool success = QFile::copy(fileName, targetFile);
|
||||||
|
|
||||||
if (success) {
|
auto document = QmlDesignerPlugin::instance()->currentDesignDocument();
|
||||||
ProjectExplorer::Node *node = ProjectExplorer::ProjectTree::nodeForFile(document->fileName());
|
|
||||||
if (node) {
|
QTC_ASSERT(document, return false);
|
||||||
ProjectExplorer::FolderNode *containingFolder = node->parentFolderNode();
|
|
||||||
if (containingFolder)
|
if (success) {
|
||||||
containingFolder->addFiles(QStringList(targetFile));
|
ProjectExplorer::Node *node = ProjectExplorer::ProjectTree::nodeForFile(document->fileName());
|
||||||
|
if (node) {
|
||||||
|
ProjectExplorer::FolderNode *containingFolder = node->parentFolderNode();
|
||||||
|
if (containingFolder)
|
||||||
|
containingFolder->addFiles(QStringList(targetFile));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
allSuccessful = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return success;
|
return allSuccessful;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Mode
|
} // namespace Mode
|
||||||
|
@@ -72,7 +72,7 @@ void addItemToStackedContainer(const SelectionContext &selectionContext);
|
|||||||
void increaseIndexOfStackedContainer(const SelectionContext &selectionContext);
|
void increaseIndexOfStackedContainer(const SelectionContext &selectionContext);
|
||||||
void decreaseIndexOfStackedContainer(const SelectionContext &selectionContext);
|
void decreaseIndexOfStackedContainer(const SelectionContext &selectionContext);
|
||||||
void addTabBarToStackedContainer(const SelectionContext &selectionContext);
|
void addTabBarToStackedContainer(const SelectionContext &selectionContext);
|
||||||
bool addImageToProject(const QString &fileName, const QString &directory);
|
bool addImageToProject(const QStringList &fileNames, const QString &directory);
|
||||||
|
|
||||||
} // namespace ModelNodeOperationso
|
} // namespace ModelNodeOperationso
|
||||||
} //QmlDesigner
|
} //QmlDesigner
|
||||||
|
@@ -402,6 +402,11 @@ void ItemLibraryWidget::addResources()
|
|||||||
map.insert(handler.category, handler.filter);
|
map.insert(handler.category, handler.filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QMap<QString, QString> reverseMap;
|
||||||
|
for (const AddResourceHandler &handler : handlers) {
|
||||||
|
reverseMap.insert(handler.filter, handler.category);
|
||||||
|
}
|
||||||
|
|
||||||
QMap<QString, int> priorities;
|
QMap<QString, int> priorities;
|
||||||
for (const AddResourceHandler &handler : handlers) {
|
for (const AddResourceHandler &handler : handlers) {
|
||||||
priorities.insert(handler.category, handler.piority);
|
priorities.insert(handler.category, handler.piority);
|
||||||
@@ -422,25 +427,30 @@ void ItemLibraryWidget::addResources()
|
|||||||
filters.append(str);
|
filters.append(str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
filters.prepend(tr("All Files (%1)").arg(map.values().join(" ")));
|
||||||
|
|
||||||
const auto fileNames = QFileDialog::getOpenFileNames(this,
|
const auto fileNames = QFileDialog::getOpenFileNames(this,
|
||||||
tr("Add Resources"),
|
tr("Add Resources"),
|
||||||
document->fileName().parentDir().toString(),
|
document->fileName().parentDir().toString(),
|
||||||
filters.join(";;"));
|
filters.join(";;"));
|
||||||
|
|
||||||
if (!fileNames.isEmpty()) {
|
QMultiMap<QString, QString> partitionedFileNames;
|
||||||
const auto directory = QFileDialog::getExistingDirectory(this,
|
|
||||||
tr("Target Directory"),
|
|
||||||
document->fileName().parentDir().toString());
|
|
||||||
|
|
||||||
for (const QString &fileName : fileNames) {
|
for (const QString &fileName : fileNames) {
|
||||||
for (const AddResourceHandler &handler : handlers) {
|
const QString suffix = "*." + QFileInfo(fileName).completeSuffix();
|
||||||
QString postfix = handler.filter;
|
const QString category = reverseMap.value(suffix);
|
||||||
postfix.remove(0, 1);
|
partitionedFileNames.insert(category, fileName);
|
||||||
if (fileName.endsWith(postfix))
|
}
|
||||||
if (!handler.operation(fileName, directory))
|
|
||||||
Core::AsynchronousMessageBox::warning(tr("Failed to Add File"), tr("Could not add %1 to project.").arg(fileName));
|
for (const QString &category : partitionedFileNames.uniqueKeys()) {
|
||||||
}
|
for (const AddResourceHandler &handler : handlers) {
|
||||||
}
|
QStringList fileNames = partitionedFileNames.values(category);
|
||||||
|
if (handler.category == category) {
|
||||||
|
if (!handler.operation(fileNames, document->fileName().parentDir().toString()))
|
||||||
|
Core::AsynchronousMessageBox::warning(tr("Failed to Add Files"), tr("Could not add %1 to project.").arg(fileNames.join(" ")));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -371,6 +371,8 @@ Project {
|
|||||||
Group {
|
Group {
|
||||||
prefix: "components/"
|
prefix: "components/"
|
||||||
files: [
|
files: [
|
||||||
|
"componentcore/addimagesdialog.cpp",
|
||||||
|
"componentcore/addimagesdialog.h",
|
||||||
"componentcore/abstractaction.cpp",
|
"componentcore/abstractaction.cpp",
|
||||||
"componentcore/abstractaction.h",
|
"componentcore/abstractaction.h",
|
||||||
"componentcore/abstractactiongroup.cpp",
|
"componentcore/abstractactiongroup.cpp",
|
||||||
|
Reference in New Issue
Block a user