/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** 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 Digia. For licensing terms and ** conditions see http://www.qt.io/licensing. For further information ** use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include "remotelinuxrunconfigurationwidget.h" #include "remotelinuxrunconfiguration.h" #include #include #include #include #include #include #include #include #include #include #include #include namespace RemoteLinux { namespace Internal { class RemoteLinuxRunConfigurationWidgetPrivate { public: RemoteLinuxRunConfigurationWidgetPrivate(RemoteLinuxRunConfiguration *runConfig) : runConfiguration(runConfig), ignoreChange(false) { } RemoteLinuxRunConfiguration * const runConfiguration; bool ignoreChange; QWidget topWidget; QLabel disabledIcon; QLabel disabledReason; QLineEdit argsLineEdit; QLineEdit workingDirLineEdit; QLabel localExecutableLabel; QLabel remoteExecutableLabel; QCheckBox useAlternateCommandBox; QLineEdit alternateCommand; QLabel devConfLabel; QFormLayout genericWidgetsLayout; }; } // namespace Internal using namespace Internal; RemoteLinuxRunConfigurationWidget::RemoteLinuxRunConfigurationWidget(RemoteLinuxRunConfiguration *runConfiguration, QWidget *parent) : QWidget(parent), d(new RemoteLinuxRunConfigurationWidgetPrivate(runConfiguration)) { QVBoxLayout *topLayout = new QVBoxLayout(this); topLayout->setMargin(0); addDisabledLabel(topLayout); topLayout->addWidget(&d->topWidget); QVBoxLayout *mainLayout = new QVBoxLayout(&d->topWidget); mainLayout->setMargin(0); addGenericWidgets(mainLayout); connect(d->runConfiguration, SIGNAL(enabledChanged()), SLOT(runConfigurationEnabledChange())); runConfigurationEnabledChange(); } RemoteLinuxRunConfigurationWidget::~RemoteLinuxRunConfigurationWidget() { delete d; } void RemoteLinuxRunConfigurationWidget::addFormLayoutRow(QWidget *label, QWidget *field) { d->genericWidgetsLayout.addRow(label, field); } void RemoteLinuxRunConfigurationWidget::addDisabledLabel(QVBoxLayout *topLayout) { QHBoxLayout * const hl = new QHBoxLayout; hl->addStretch(); d->disabledIcon.setPixmap(QPixmap(QLatin1String(Core::Constants::ICON_WARNING))); hl->addWidget(&d->disabledIcon); d->disabledReason.setVisible(false); hl->addWidget(&d->disabledReason); hl->addStretch(); topLayout->addLayout(hl); } void RemoteLinuxRunConfigurationWidget::runConfigurationEnabledChange() { bool enabled = d->runConfiguration->isEnabled(); d->topWidget.setEnabled(enabled); d->disabledIcon.setVisible(!enabled); d->disabledReason.setVisible(!enabled); d->disabledReason.setText(d->runConfiguration->disabledReason()); } void RemoteLinuxRunConfigurationWidget::addGenericWidgets(QVBoxLayout *mainLayout) { Utils::DetailsWidget *detailsContainer = new Utils::DetailsWidget(this); detailsContainer->setState(Utils::DetailsWidget::NoSummary); QWidget *details = new QWidget(this); details->setLayout(&d->genericWidgetsLayout); detailsContainer->setWidget(details); mainLayout->addWidget(detailsContainer); d->genericWidgetsLayout.setFormAlignment(Qt::AlignLeft | Qt::AlignVCenter); d->localExecutableLabel.setText(d->runConfiguration->localExecutableFilePath()); d->genericWidgetsLayout.addRow(tr("Executable on host:"), &d->localExecutableLabel); d->genericWidgetsLayout.addRow(tr("Executable on device:"), &d->remoteExecutableLabel); QWidget * const altRemoteExeWidget = new QWidget; QHBoxLayout * const altRemoteExeLayout = new QHBoxLayout(altRemoteExeWidget); altRemoteExeLayout->setContentsMargins(0, 0, 0, 0); d->alternateCommand.setText(d->runConfiguration->alternateRemoteExecutable()); altRemoteExeLayout->addWidget(&d->alternateCommand); d->useAlternateCommandBox.setText(tr("Use this command instead")); d->useAlternateCommandBox.setChecked(d->runConfiguration->useAlternateExecutable()); altRemoteExeLayout->addWidget(&d->useAlternateCommandBox); d->genericWidgetsLayout.addRow(tr("Alternate executable on device:"), altRemoteExeWidget); d->argsLineEdit.setText(d->runConfiguration->arguments().join(QLatin1Char(' '))); d->genericWidgetsLayout.addRow(tr("Arguments:"), &d->argsLineEdit); d->workingDirLineEdit.setPlaceholderText(tr("")); d->workingDirLineEdit.setText(d->runConfiguration->workingDirectory()); d->genericWidgetsLayout.addRow(tr("Working directory:"), &d->workingDirLineEdit); connect(&d->argsLineEdit, SIGNAL(textEdited(QString)), SLOT(argumentsEdited(QString))); connect(d->runConfiguration, SIGNAL(targetInformationChanged()), this, SLOT(updateTargetInformation())); connect(d->runConfiguration, SIGNAL(deploySpecsChanged()), SLOT(handleDeploySpecsChanged())); connect(&d->useAlternateCommandBox, SIGNAL(toggled(bool)), SLOT(handleUseAlternateCommandChanged())); connect(&d->alternateCommand, SIGNAL(textEdited(QString)), SLOT(handleAlternateCommandChanged())); connect(&d->workingDirLineEdit, SIGNAL(textEdited(QString)), SLOT(handleWorkingDirectoryChanged())); handleDeploySpecsChanged(); handleUseAlternateCommandChanged(); } void RemoteLinuxRunConfigurationWidget::argumentsEdited(const QString &text) { d->runConfiguration->setArguments(text); } void RemoteLinuxRunConfigurationWidget::updateTargetInformation() { setLabelText(d->localExecutableLabel, QDir::toNativeSeparators(d->runConfiguration->localExecutableFilePath()), tr("Unknown")); } void RemoteLinuxRunConfigurationWidget::handleDeploySpecsChanged() { setLabelText(d->remoteExecutableLabel, d->runConfiguration->defaultRemoteExecutableFilePath(), tr("Remote path not set")); } void RemoteLinuxRunConfigurationWidget::setLabelText(QLabel &label, const QString ®ularText, const QString &errorText) { const QString errorMessage = QLatin1String("") + errorText + QLatin1String(""); label.setText(regularText.isEmpty() ? errorMessage : regularText); } void RemoteLinuxRunConfigurationWidget::handleUseAlternateCommandChanged() { const bool useAltExe = d->useAlternateCommandBox.isChecked(); d->remoteExecutableLabel.setEnabled(!useAltExe); d->alternateCommand.setEnabled(useAltExe); d->runConfiguration->setUseAlternateExecutable(useAltExe); } void RemoteLinuxRunConfigurationWidget::handleAlternateCommandChanged() { d->runConfiguration->setAlternateRemoteExecutable(d->alternateCommand.text().trimmed()); } void RemoteLinuxRunConfigurationWidget::handleWorkingDirectoryChanged() { d->runConfiguration->setWorkingDirectory(d->workingDirLineEdit.text().trimmed()); } } // namespace RemoteLinux