forked from qt-creator/qt-creator
It's returning a FilePath, so it's a better fit. Keep the old versions as inline function now to ease downstream migration. Change-Id: I535887928018f42b92895c8b0c82527f0d55e5ca Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: André Hartmann <aha_1980@gmx.de>
101 lines
3.4 KiB
C++
101 lines
3.4 KiB
C++
/****************************************************************************
|
|
**
|
|
** 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 "importwidget.h"
|
|
|
|
#include <utils/detailswidget.h>
|
|
#include <utils/pathchooser.h>
|
|
|
|
#include <QPushButton>
|
|
#include <QTimer>
|
|
#include <QVBoxLayout>
|
|
|
|
namespace ProjectExplorer {
|
|
namespace Internal {
|
|
|
|
ImportWidget::ImportWidget(QWidget *parent) :
|
|
QWidget(parent),
|
|
m_pathChooser(new Utils::PathChooser)
|
|
{
|
|
setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);
|
|
auto vboxLayout = new QVBoxLayout();
|
|
setLayout(vboxLayout);
|
|
vboxLayout->setContentsMargins(0, 0, 0, 0);
|
|
auto detailsWidget = new Utils::DetailsWidget(this);
|
|
detailsWidget->setUseCheckBox(false);
|
|
detailsWidget->setSummaryText(tr("Import Build From..."));
|
|
detailsWidget->setSummaryFontBold(true);
|
|
// m_detailsWidget->setIcon(); // FIXME: Set icon!
|
|
vboxLayout->addWidget(detailsWidget);
|
|
|
|
auto widget = new QWidget;
|
|
auto layout = new QVBoxLayout(widget);
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
layout->addWidget(m_pathChooser);
|
|
|
|
m_pathChooser->setExpectedKind(Utils::PathChooser::ExistingDirectory);
|
|
m_pathChooser->setHistoryCompleter(QLatin1String("Import.SourceDir.History"));
|
|
auto importButton = new QPushButton(tr("Import"), widget);
|
|
layout->addWidget(importButton);
|
|
|
|
connect(importButton, &QAbstractButton::clicked, this, &ImportWidget::handleImportRequest);
|
|
connect(m_pathChooser->lineEdit(), &QLineEdit::returnPressed, this, [this] {
|
|
if (m_pathChooser->isValid()) {
|
|
m_ownsReturnKey = true;
|
|
handleImportRequest();
|
|
|
|
// The next return should trigger the "Configure" button.
|
|
QTimer::singleShot(0, this, [this] {
|
|
setFocus();
|
|
m_ownsReturnKey = false;
|
|
});
|
|
}
|
|
});
|
|
|
|
detailsWidget->setWidget(widget);
|
|
}
|
|
|
|
void ImportWidget::setCurrentDirectory(const Utils::FilePath &dir)
|
|
{
|
|
m_pathChooser->setBaseDirectory(dir);
|
|
m_pathChooser->setFilePath(dir);
|
|
}
|
|
|
|
bool ImportWidget::ownsReturnKey() const
|
|
{
|
|
return m_ownsReturnKey;
|
|
}
|
|
|
|
void ImportWidget::handleImportRequest()
|
|
{
|
|
Utils::FilePath dir = m_pathChooser->filePath();
|
|
emit importFrom(dir);
|
|
|
|
m_pathChooser->setFilePath(m_pathChooser->baseDirectory());
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace ProjectExplorer
|