forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/2.4'
Conflicts: src/libs/qmljs/qmljsinterpreter.cpp src/libs/qmljs/qmljsinterpreter.h src/plugins/madde/maemopackagecreationstep.cpp src/plugins/projectexplorer/buildmanager.cpp src/plugins/qmljstools/qmljsqtstylecodeformatter.cpp src/plugins/qmljstools/qmljsqtstylecodeformatter.h tests/auto/qml/qmleditor/qmlcodeformatter/tst_qmlcodeformatter.cpp Change-Id: I63ab2ba5dac006c37ccfbae55b023396a4676ff7
This commit is contained in:
@@ -53,37 +53,6 @@
|
||||
#include <QtGui/QPushButton>
|
||||
#include <QtGui/QMainWindow>
|
||||
|
||||
namespace {
|
||||
const char * const QMLDESIGNER_INFO_BAR = "QmlJSEditor.QmlDesignerInfoBar";
|
||||
const char * const KEY_QMLGROUP = "QML";
|
||||
const char * const KEY_NAGABOUTDESIGNER = "AskAboutVisualDesigner";
|
||||
|
||||
bool isQmlDesignerExperimentallyDisabled()
|
||||
{
|
||||
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
||||
foreach (const ExtensionSystem::PluginSpec *spec, pm->plugins()) {
|
||||
if (spec->name() == QLatin1String("QmlDesigner")) {
|
||||
if (spec->isExperimental() && !spec->isEnabled())
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
bool isNaggingAboutExperimentalDesignerEnabled()
|
||||
{
|
||||
if (!isQmlDesignerExperimentallyDisabled()) {
|
||||
return false;
|
||||
}
|
||||
QSettings *settings = Core::ICore::instance()->settings();
|
||||
settings->beginGroup(QLatin1String(KEY_QMLGROUP));
|
||||
bool nag = settings->value(QLatin1String(KEY_NAGABOUTDESIGNER), true).toBool();
|
||||
settings->endGroup();
|
||||
return nag;
|
||||
}
|
||||
}
|
||||
|
||||
using namespace QmlJSEditor;
|
||||
using namespace QmlJSEditor::Internal;
|
||||
using namespace QmlJSEditor::Constants;
|
||||
@@ -123,13 +92,6 @@ Core::IEditor *QmlJSEditorFactory::createEditor(QWidget *parent)
|
||||
{
|
||||
QmlJSEditor::QmlJSTextEditorWidget *rc = new QmlJSEditor::QmlJSTextEditorWidget(parent);
|
||||
QmlJSEditorPlugin::instance()->initializeEditor(rc);
|
||||
if (isNaggingAboutExperimentalDesignerEnabled()) {
|
||||
Core::InfoBarEntry info(QMLDESIGNER_INFO_BAR,
|
||||
tr("Do you want to enable the experimental Qt Quick Designer?"));
|
||||
info.setCustomButtonInfo(tr("Enable Qt Quick Designer"), this, SLOT(activateQmlDesigner()));
|
||||
info.setCancelButtonInfo(this, SLOT(neverAskAgainAboutQmlDesigner()));
|
||||
rc->file()->infoBar()->addInfo(info);
|
||||
}
|
||||
return rc->editor();
|
||||
}
|
||||
|
||||
@@ -137,50 +99,3 @@ QStringList QmlJSEditorFactory::mimeTypes() const
|
||||
{
|
||||
return m_mimeTypes;
|
||||
}
|
||||
|
||||
void QmlJSEditorFactory::activateQmlDesigner()
|
||||
{
|
||||
QString menu;
|
||||
#ifdef Q_WS_MAC
|
||||
menu = tr("Qt Creator -> About Plugins...");
|
||||
#else
|
||||
menu = tr("Help -> About Plugins...");
|
||||
#endif
|
||||
QMessageBox message(Core::ICore::instance()->mainWindow());
|
||||
message.setWindowTitle(tr("Enable experimental Qt Quick Designer?"));
|
||||
message.setText(tr("Do you want to enable the experimental Qt Quick Designer? "
|
||||
"After enabling it, you can access the visual design capabilities by switching to Design Mode. "
|
||||
"This can affect the overall stability of Qt Creator. "
|
||||
"To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'.").arg(menu));
|
||||
message.setIcon(QMessageBox::Question);
|
||||
QPushButton *enable = message.addButton(tr("Enable Qt Quick Designer"), QMessageBox::AcceptRole);
|
||||
message.addButton(tr("Cancel"), QMessageBox::RejectRole);
|
||||
message.exec();
|
||||
if (message.clickedButton() == enable) {
|
||||
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
||||
foreach (ExtensionSystem::PluginSpec *spec, pm->plugins()) {
|
||||
if (spec->name() == QLatin1String("QmlDesigner")) {
|
||||
spec->setEnabled(true);
|
||||
pm->writeSettings();
|
||||
QMessageBox::information(Core::ICore::instance()->mainWindow(), tr("Please restart Qt Creator"),
|
||||
tr("Please restart Qt Creator to make the change effective."));
|
||||
foreach (Core::IEditor *editor, Core::EditorManager::instance()->openedEditors())
|
||||
if (qobject_cast<QmlJSEditorEditable *>(editor))
|
||||
editor->file()->infoBar()->removeInfo(QMLDESIGNER_INFO_BAR);
|
||||
neverAskAgainAboutQmlDesigner();
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void QmlJSEditorFactory::neverAskAgainAboutQmlDesigner()
|
||||
{
|
||||
QSettings *settings = Core::ICore::instance()->settings();
|
||||
settings->beginGroup(QLatin1String(KEY_QMLGROUP));
|
||||
settings->setValue(QLatin1String(KEY_NAGABOUTDESIGNER), false);
|
||||
settings->endGroup();
|
||||
settings->sync();
|
||||
disconnect(Core::EditorManager::instance(), SIGNAL(currentEditorChanged(Core::IEditor*)),
|
||||
this, SLOT(updateEditorInfoBar(Core::IEditor*)));
|
||||
}
|
||||
|
||||
@@ -54,10 +54,6 @@ public:
|
||||
Core::IFile *open(const QString &fileName);
|
||||
Core::IEditor *createEditor(QWidget *parent);
|
||||
|
||||
private slots:
|
||||
void activateQmlDesigner();
|
||||
void neverAskAgainAboutQmlDesigner();
|
||||
|
||||
private:
|
||||
QStringList m_mimeTypes;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user