2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-02-09 11:09:11 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2010-02-09 11:09:11 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-02-09 11:09:11 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2010-02-09 11:09:11 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** 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.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-02-09 11:09:11 +01:00
|
|
|
|
2013-03-12 11:49:56 +01:00
|
|
|
#include "settingspage.h"
|
2010-02-09 11:09:11 +01:00
|
|
|
#include "qmldesignerconstants.h"
|
|
|
|
|
#include "qmldesignerplugin.h"
|
2015-07-16 11:49:50 +02:00
|
|
|
#include "designersettings.h"
|
|
|
|
|
#include "puppetcreator.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2010-02-09 11:09:11 +01:00
|
|
|
|
2011-09-20 16:06:03 +02:00
|
|
|
#include <qmljseditor/qmljseditorconstants.h>
|
2014-06-02 16:50:01 +02:00
|
|
|
#include <qmljstools/qmljstoolsconstants.h>
|
2011-09-20 16:06:03 +02:00
|
|
|
|
2015-07-16 11:49:50 +02:00
|
|
|
#include <QLineEdit>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QTextStream>
|
2015-07-16 11:49:50 +02:00
|
|
|
#include <QMessageBox>
|
2010-02-09 11:09:11 +01:00
|
|
|
|
|
|
|
|
using namespace QmlDesigner;
|
|
|
|
|
using namespace QmlDesigner::Internal;
|
|
|
|
|
|
|
|
|
|
SettingsPageWidget::SettingsPageWidget(QWidget *parent) :
|
|
|
|
|
QWidget(parent)
|
|
|
|
|
{
|
|
|
|
|
m_ui.setupUi(this);
|
2015-01-30 10:19:13 +01:00
|
|
|
connect(m_ui.designerEnableDebuggerCheckBox, &QCheckBox::toggled,
|
|
|
|
|
this, &SettingsPageWidget::debugViewEnabledToggled);
|
2015-07-16 11:49:50 +02:00
|
|
|
m_ui.resetFallbackPuppetPathButton->hide();
|
|
|
|
|
connect(m_ui.resetFallbackPuppetPathButton, &QPushButton::clicked, this, &SettingsPageWidget::resetFallbackPuppetPath);
|
|
|
|
|
connect(m_ui.resetQmlPuppetBuildPathButton, &QPushButton::clicked, this, &SettingsPageWidget::resetQmlPuppetBuildPath);
|
|
|
|
|
connect(m_ui.useDefaultPuppetRadioButton, &QRadioButton::toggled, m_ui.fallbackPuppetPathLineEdit, &QLineEdit::setEnabled);
|
|
|
|
|
connect(m_ui.useQtRelatedPuppetRadioButton, &QRadioButton::toggled, m_ui.puppetBuildPathLineEdit, &QLineEdit::setEnabled);
|
|
|
|
|
connect(m_ui.resetStyle, &QPushButton::clicked, this, &SettingsPageWidget::resetQmlStyle);
|
2010-02-09 11:09:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DesignerSettings SettingsPageWidget::settings() const
|
|
|
|
|
{
|
2013-03-14 16:02:19 +01:00
|
|
|
DesignerSettings designerSettings;
|
|
|
|
|
designerSettings.itemSpacing = m_ui.spinItemSpacing->value();
|
2013-05-23 15:30:43 +02:00
|
|
|
designerSettings.containerPadding = m_ui.spinSnapMargin->value();
|
2013-03-14 16:02:19 +01:00
|
|
|
designerSettings.canvasWidth = m_ui.spinCanvasWidth->value();
|
|
|
|
|
designerSettings.canvasHeight = m_ui.spinCanvasHeight->value();
|
|
|
|
|
designerSettings.warningsInDesigner = m_ui.designerWarningsCheckBox->isChecked();
|
|
|
|
|
designerSettings.designerWarningsInEditor = m_ui.designerWarningsInEditorCheckBox->isChecked();
|
|
|
|
|
designerSettings.showDebugView = m_ui.designerShowDebuggerCheckBox->isChecked();
|
|
|
|
|
designerSettings.enableDebugView = m_ui.designerEnableDebuggerCheckBox->isChecked();
|
2015-07-16 11:49:50 +02:00
|
|
|
designerSettings.useOnlyFallbackPuppet = m_ui.useDefaultPuppetRadioButton->isChecked();
|
|
|
|
|
designerSettings.controlsStyle = m_ui.styleLineEdit->text();
|
|
|
|
|
|
|
|
|
|
if (!m_ui.fallbackPuppetPathLineEdit->path().isEmpty() &&
|
|
|
|
|
m_ui.fallbackPuppetPathLineEdit->path() != PuppetCreator::defaultPuppetFallbackDirectory()) {
|
|
|
|
|
designerSettings.puppetFallbackDirectory = m_ui.fallbackPuppetPathLineEdit->path();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!m_ui.puppetBuildPathLineEdit->path().isEmpty() &&
|
|
|
|
|
m_ui.puppetBuildPathLineEdit->path() != PuppetCreator::defaultPuppetToplevelBuildDirectory()) {
|
|
|
|
|
designerSettings.puppetToplevelBuildDirectory = m_ui.puppetBuildPathLineEdit->path();
|
|
|
|
|
}
|
2012-10-26 13:57:58 +02:00
|
|
|
|
2013-03-14 16:02:19 +01:00
|
|
|
return designerSettings;
|
2010-02-09 11:09:11 +01:00
|
|
|
}
|
|
|
|
|
|
2013-03-14 16:02:19 +01:00
|
|
|
void SettingsPageWidget::setSettings(const DesignerSettings &designerSettings)
|
2010-02-09 11:09:11 +01:00
|
|
|
{
|
2013-03-14 16:02:19 +01:00
|
|
|
m_ui.spinItemSpacing->setValue(designerSettings.itemSpacing);
|
2013-05-23 15:30:43 +02:00
|
|
|
m_ui.spinSnapMargin->setValue(designerSettings.containerPadding);
|
2013-03-14 16:02:19 +01:00
|
|
|
m_ui.spinCanvasWidth->setValue(designerSettings.canvasWidth);
|
|
|
|
|
m_ui.spinCanvasHeight->setValue(designerSettings.canvasHeight);
|
|
|
|
|
m_ui.designerWarningsCheckBox->setChecked(designerSettings.warningsInDesigner);
|
|
|
|
|
m_ui.designerWarningsInEditorCheckBox->setChecked(designerSettings.designerWarningsInEditor);
|
|
|
|
|
m_ui.designerShowDebuggerCheckBox->setChecked(designerSettings.showDebugView);
|
|
|
|
|
m_ui.designerEnableDebuggerCheckBox->setChecked(designerSettings.enableDebugView);
|
2015-07-16 11:49:50 +02:00
|
|
|
m_ui.useDefaultPuppetRadioButton->setChecked(designerSettings.useOnlyFallbackPuppet);
|
|
|
|
|
m_ui.useQtRelatedPuppetRadioButton->setChecked(!designerSettings.useOnlyFallbackPuppet);
|
|
|
|
|
m_ui.styleLineEdit->setText(designerSettings.controlsStyle);
|
|
|
|
|
|
|
|
|
|
if (designerSettings.puppetFallbackDirectory.isEmpty())
|
|
|
|
|
resetFallbackPuppetPath();
|
|
|
|
|
else
|
|
|
|
|
m_ui.fallbackPuppetPathLineEdit->setPath(designerSettings.puppetFallbackDirectory);
|
|
|
|
|
|
|
|
|
|
if (designerSettings.puppetToplevelBuildDirectory.isEmpty())
|
|
|
|
|
resetQmlPuppetBuildPath();
|
|
|
|
|
else
|
|
|
|
|
m_ui.puppetBuildPathLineEdit->setPath(designerSettings.puppetToplevelBuildDirectory);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsPageWidget::resetFallbackPuppetPath()
|
|
|
|
|
{
|
|
|
|
|
m_ui.fallbackPuppetPathLineEdit->setPath(PuppetCreator::defaultPuppetFallbackDirectory());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsPageWidget::resetQmlPuppetBuildPath()
|
|
|
|
|
{
|
|
|
|
|
m_ui.puppetBuildPathLineEdit->setPath(PuppetCreator::defaultPuppetToplevelBuildDirectory());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsPageWidget::resetQmlStyle()
|
|
|
|
|
{
|
|
|
|
|
m_ui.styleLineEdit->setText(QString());
|
2010-02-09 11:09:11 +01:00
|
|
|
}
|
|
|
|
|
|
2013-03-14 16:02:19 +01:00
|
|
|
void SettingsPageWidget::debugViewEnabledToggled(bool b)
|
|
|
|
|
{
|
|
|
|
|
if (b && ! m_ui.designerShowDebuggerCheckBox->isChecked())
|
|
|
|
|
m_ui.designerShowDebuggerCheckBox->setChecked(true);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-09 11:09:11 +01:00
|
|
|
SettingsPage::SettingsPage() :
|
|
|
|
|
m_widget(0)
|
|
|
|
|
{
|
2013-01-16 15:22:58 +01:00
|
|
|
setId("B.QmlDesigner");
|
2012-05-22 11:17:13 +02:00
|
|
|
setDisplayName(tr("Qt Quick Designer"));
|
2012-12-29 03:37:27 +01:00
|
|
|
setCategory(QmlJSEditor::Constants::SETTINGS_CATEGORY_QML);
|
2012-05-22 11:17:13 +02:00
|
|
|
setDisplayCategory(QCoreApplication::translate("QmlJSEditor",
|
|
|
|
|
QmlJSEditor::Constants::SETTINGS_TR_CATEGORY_QML));
|
2014-06-02 16:50:01 +02:00
|
|
|
setCategoryIcon(QLatin1String(QmlJSTools::Constants::SETTINGS_CATEGORY_QML_ICON));
|
2010-03-26 17:34:10 +01:00
|
|
|
}
|
|
|
|
|
|
2013-12-03 14:17:03 +01:00
|
|
|
QWidget *SettingsPage::widget()
|
2010-02-09 11:09:11 +01:00
|
|
|
{
|
2013-12-03 14:17:03 +01:00
|
|
|
if (!m_widget) {
|
|
|
|
|
m_widget = new SettingsPageWidget;
|
|
|
|
|
m_widget->setSettings(QmlDesignerPlugin::instance()->settings());
|
|
|
|
|
}
|
2010-02-09 11:09:11 +01:00
|
|
|
return m_widget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsPage::apply()
|
|
|
|
|
{
|
2010-12-02 18:28:16 +01:00
|
|
|
if (!m_widget) // page was never shown
|
|
|
|
|
return;
|
2015-07-16 11:49:50 +02:00
|
|
|
|
|
|
|
|
DesignerSettings currentDesignerSettings(QmlDesignerPlugin::instance()->settings());
|
|
|
|
|
DesignerSettings newDesignerSettings(m_widget->settings());
|
|
|
|
|
|
|
|
|
|
if (currentDesignerSettings.puppetFallbackDirectory != newDesignerSettings.puppetFallbackDirectory ||
|
|
|
|
|
currentDesignerSettings.puppetToplevelBuildDirectory != newDesignerSettings.puppetToplevelBuildDirectory) {
|
|
|
|
|
QMessageBox::information(Core::ICore::mainWindow(), tr("Restart Required"),
|
|
|
|
|
tr("The QML emulation layer path changes will take effect after a restart of the QML Emulation layer or Qt Creator."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QmlDesignerPlugin::instance()->setSettings(newDesignerSettings);
|
2010-02-09 11:09:11 +01:00
|
|
|
}
|
|
|
|
|
|
2013-12-03 14:17:03 +01:00
|
|
|
void SettingsPage::finish()
|
2010-02-09 11:09:11 +01:00
|
|
|
{
|
2013-12-03 14:17:03 +01:00
|
|
|
delete m_widget;
|
2010-02-09 11:09:11 +01:00
|
|
|
}
|