/**************************************************************************** ** ** 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 "environmentitemswidget.h" #include #include #include #include #include #include namespace ProjectExplorer { class EnvironmentItemsWidgetPrivate { public: QList cleanUp( const QList &items) const; TextEditor::TextEditorWidget *m_editor; }; QList EnvironmentItemsWidgetPrivate::cleanUp( const QList &items) const { QList uniqueItems; QSet uniqueSet; for (int i = items.count() - 1; i >= 0; i--) { Utils::EnvironmentItem item = items.at(i); if (Utils::HostOsInfo::isWindowsHost()) item.name = item.name.toUpper(); const QString &itemName = item.name; QString emptyName = itemName; emptyName.remove(QLatin1Char(' ')); if (!emptyName.isEmpty() && !uniqueSet.contains(itemName)) { uniqueItems.prepend(item); uniqueSet.insert(itemName); } } return uniqueItems; } EnvironmentItemsWidget::EnvironmentItemsWidget(QWidget *parent) : QWidget(parent), d(new EnvironmentItemsWidgetPrivate) { d->m_editor = new TextEditor::SnippetEditorWidget(this); QVBoxLayout *layout = new QVBoxLayout(this); layout->addWidget(d->m_editor); } EnvironmentItemsWidget::~EnvironmentItemsWidget() { delete d; } void EnvironmentItemsWidget::setEnvironmentItems(const QList &items) { QList sortedItems = items; Utils::EnvironmentItem::sort(&sortedItems); QStringList list = Utils::EnvironmentItem::toStringList(sortedItems); d->m_editor->document()->setPlainText(list.join(QLatin1Char('\n'))); } QList EnvironmentItemsWidget::environmentItems() const { const QStringList list = d->m_editor->document()->toPlainText().split(QLatin1String("\n")); QList items = Utils::EnvironmentItem::fromStringList(list); return d->cleanUp(items); } class EnvironmentItemsDialogPrivate { public: EnvironmentItemsWidget *m_editor; }; EnvironmentItemsDialog::EnvironmentItemsDialog(QWidget *parent) : QDialog(parent), d(new EnvironmentItemsDialogPrivate) { resize(640, 480); d->m_editor = new EnvironmentItemsWidget(this); QDialogButtonBox *box = new QDialogButtonBox( QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, this); connect(box, &QDialogButtonBox::accepted, this, &QDialog::accept); connect(box, &QDialogButtonBox::rejected, this, &QDialog::reject); QVBoxLayout *layout = new QVBoxLayout(this); layout->addWidget(d->m_editor); layout->addWidget(box); setWindowTitle(tr("Edit Environment")); } EnvironmentItemsDialog::~EnvironmentItemsDialog() { delete d; } void EnvironmentItemsDialog::setEnvironmentItems(const QList &items) { d->m_editor->setEnvironmentItems(items); } QList EnvironmentItemsDialog::environmentItems() const { return d->m_editor->environmentItems(); } QList EnvironmentItemsDialog::getEnvironmentItems(QWidget *parent, const QList &initial, bool *ok) { EnvironmentItemsDialog dlg(parent); dlg.setEnvironmentItems(initial); bool result = dlg.exec() == QDialog::Accepted; if (ok) *ok = result; if (result) return dlg.environmentItems(); return QList(); } } // namespace ProjectExplorer