forked from qt-creator/qt-creator
Added preview menu and shortcuts for qt quick (Ctrl+Alt+R)
This was needed since we cannot start stuff otherwise without a project Task-number: BAUHAUS-450 Reviewed-by: kkoehne
This commit is contained in:
@@ -16,5 +16,6 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General
|
||||
<dependencyList>
|
||||
<dependency name="Core" version="1.3.84"/>
|
||||
<dependency name="TextEditor" version="1.3.84"/>
|
||||
<dependency name="ProjectExplorer" version="1.3.84"/>
|
||||
</dependencyList>
|
||||
</plugin>
|
||||
|
||||
@@ -577,6 +577,7 @@ QmlJSEditorEditable::QmlJSEditorEditable(QmlJSTextEditor *editor)
|
||||
Core::UniqueIDManager *uidm = Core::UniqueIDManager::instance();
|
||||
m_context << uidm->uniqueIdentifier(QmlJSEditor::Constants::C_QMLJSEDITOR_ID);
|
||||
m_context << uidm->uniqueIdentifier(TextEditor::Constants::C_TEXTEDITOR);
|
||||
m_context << uidm->uniqueIdentifier(QmlDesigner::Constants::C_QT_QUICK_TOOLS_MENU);
|
||||
}
|
||||
|
||||
// Use preferred mode from Bauhaus settings
|
||||
|
||||
@@ -215,6 +215,7 @@ public:
|
||||
public slots:
|
||||
void followSymbolUnderCursor();
|
||||
virtual void setFontSettings(const TextEditor::FontSettings &);
|
||||
void openPreview();
|
||||
|
||||
private slots:
|
||||
void onDocumentUpdated(QmlJS::Document::Ptr doc);
|
||||
|
||||
@@ -21,7 +21,8 @@ HEADERS += \
|
||||
qmljshighlighter.h \
|
||||
qmljshoverhandler.h \
|
||||
qmljsmodelmanager.h \
|
||||
qmljsmodelmanagerinterface.h
|
||||
qmljsmodelmanagerinterface.h \
|
||||
qmljspreviewrunner.h
|
||||
|
||||
SOURCES += \
|
||||
qmljscodecompletion.cpp \
|
||||
@@ -34,7 +35,8 @@ SOURCES += \
|
||||
qmljshighlighter.cpp \
|
||||
qmljshoverhandler.cpp \
|
||||
qmljsmodelmanager.cpp \
|
||||
qmljsmodelmanagerinterface.cpp
|
||||
qmljsmodelmanagerinterface.cpp \
|
||||
qmljspreviewrunner.cpp
|
||||
|
||||
RESOURCES += qmljseditor.qrc
|
||||
OTHER_FILES += QmlJSEditor.pluginspec QmlJSEditor.mimetypes.xml
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
include(../../plugins/coreplugin/coreplugin.pri)
|
||||
include(../../plugins/texteditor/texteditor.pri)
|
||||
include(../../plugins/projectexplorer/projectexplorer.pri)
|
||||
include(../../shared/indenter/indenter.pri)
|
||||
include(../../libs/qmljs/qmljs.pri)
|
||||
include(../../libs/utils/utils.pri)
|
||||
|
||||
@@ -35,7 +35,10 @@
|
||||
namespace QmlJSEditor {
|
||||
namespace Constants {
|
||||
|
||||
// menus
|
||||
const char * const M_QTQUICK = "QtQuickDesigner.Menu";
|
||||
const char * const M_CONTEXT = "QML JS Editor.ContextMenu";
|
||||
|
||||
const char * const RUN_SEP = "QmlJSEditor.Run.Separator";
|
||||
const char * const C_QMLJSEDITOR_ID = "QMLProjectManager.QMLJSEditor";
|
||||
const char * const C_QMLJSEDITOR_DISPLAY_NAME = QT_TRANSLATE_NOOP("OpenWith::Editors", "QMLJS Editor");
|
||||
@@ -46,6 +49,8 @@ const char * const FOLLOW_SYMBOL_UNDER_CURSOR = "QmlJSEditor.FollowSymbolUnderCu
|
||||
const char * const QML_MIMETYPE = "application/x-qml";
|
||||
const char * const JS_MIMETYPE = "application/javascript";
|
||||
|
||||
|
||||
|
||||
} // namespace Constants
|
||||
} // namespace QmlJSEditor
|
||||
|
||||
|
||||
@@ -36,6 +36,9 @@
|
||||
#include "qmljshoverhandler.h"
|
||||
#include "qmljsmodelmanager.h"
|
||||
#include "qmlfilewizard.h"
|
||||
#include "qmljspreviewrunner.h"
|
||||
|
||||
#include <qmldesigner/qmldesignerconstants.h>
|
||||
|
||||
#include <coreplugin/icore.h>
|
||||
#include <coreplugin/coreconstants.h>
|
||||
@@ -61,6 +64,7 @@
|
||||
#include <QtCore/QSettings>
|
||||
#include <QtCore/QDir>
|
||||
#include <QtCore/QCoreApplication>
|
||||
#include <QtGui/QMenu>
|
||||
#include <QtGui/QAction>
|
||||
|
||||
using namespace QmlJSEditor;
|
||||
@@ -96,7 +100,8 @@ bool QmlJSEditorPlugin::initialize(const QStringList & /*arguments*/, QString *e
|
||||
addAutoReleasedObject(m_modelManager);
|
||||
|
||||
QList<int> context;
|
||||
context<< core->uniqueIDManager()->uniqueIdentifier(QmlJSEditor::Constants::C_QMLJSEDITOR_ID);
|
||||
context << core->uniqueIDManager()->uniqueIdentifier(QmlJSEditor::Constants::C_QMLJSEDITOR_ID)
|
||||
<< core->uniqueIDManager()->uniqueIdentifier(QmlDesigner::Constants::C_QT_QUICK_TOOLS_MENU);
|
||||
|
||||
m_editor = new QmlJSEditorFactory(this);
|
||||
addObject(m_editor);
|
||||
@@ -118,7 +123,18 @@ bool QmlJSEditorPlugin::initialize(const QStringList & /*arguments*/, QString *e
|
||||
Core::ActionManager *am = core->actionManager();
|
||||
Core::ActionContainer *contextMenu = am->createMenu(QmlJSEditor::Constants::M_CONTEXT);
|
||||
|
||||
Core::Command *cmd = 0;
|
||||
Core::ActionContainer *mtools = am->actionContainer(Core::Constants::M_TOOLS);
|
||||
Core::ActionContainer *menuQtQuick = am->createMenu(Constants::M_QTQUICK);
|
||||
menuQtQuick->menu()->setTitle(tr("Qt Quick"));
|
||||
mtools->addMenu(menuQtQuick);
|
||||
m_actionPreview = new QAction("&Preview", this);
|
||||
|
||||
QList<int> toolsMenuContext = QList<int>()
|
||||
<< core->uniqueIDManager()->uniqueIdentifier(QmlDesigner::Constants::C_QT_QUICK_TOOLS_MENU);
|
||||
Core::Command *cmd = addToolAction(m_actionPreview, am, toolsMenuContext,
|
||||
QLatin1String("QtQuick.Preview"), menuQtQuick, tr("Ctrl+Alt+R"));
|
||||
connect(cmd->action(), SIGNAL(triggered()), SLOT(openPreview()));
|
||||
m_previewRunner = new QmlJSPreviewRunner(this);
|
||||
|
||||
QAction *followSymbolUnderCursorAction = new QAction(tr("Follow Symbol Under Cursor"), this);
|
||||
cmd = am->registerAction(followSymbolUnderCursorAction, Constants::FOLLOW_SYMBOL_UNDER_CURSOR, context);
|
||||
@@ -158,6 +174,15 @@ void QmlJSEditorPlugin::extensionsInitialized()
|
||||
{
|
||||
}
|
||||
|
||||
void QmlJSEditorPlugin::openPreview()
|
||||
{
|
||||
Core::EditorManager *em = Core::EditorManager::instance();
|
||||
|
||||
if (em->currentEditor() && em->currentEditor()->id() == Constants::C_QMLJSEDITOR_ID)
|
||||
m_previewRunner->run(em->currentEditor()->file()->fileName());
|
||||
|
||||
}
|
||||
|
||||
void QmlJSEditorPlugin::initializeEditor(QmlJSEditor::Internal::QmlJSTextEditor *editor)
|
||||
{
|
||||
QTC_ASSERT(m_instance, /**/);
|
||||
@@ -179,4 +204,16 @@ void QmlJSEditorPlugin::followSymbolUnderCursor()
|
||||
editor->followSymbolUnderCursor();
|
||||
}
|
||||
|
||||
Core::Command *QmlJSEditorPlugin::addToolAction(QAction *a, Core::ActionManager *am,
|
||||
const QList<int> &context, const QString &name,
|
||||
Core::ActionContainer *c1, const QString &keySequence)
|
||||
{
|
||||
Core::Command *command = am->registerAction(a, name, context);
|
||||
if (!keySequence.isEmpty())
|
||||
command->setDefaultKeySequence(QKeySequence(keySequence));
|
||||
c1->addAction(command);
|
||||
return command;
|
||||
}
|
||||
|
||||
|
||||
Q_EXPORT_PLUGIN(QmlJSEditorPlugin)
|
||||
|
||||
@@ -32,10 +32,18 @@
|
||||
|
||||
#include <extensionsystem/iplugin.h>
|
||||
|
||||
QT_FORWARD_DECLARE_CLASS(QAction)
|
||||
|
||||
namespace TextEditor {
|
||||
class TextEditorActionHandler;
|
||||
} // namespace TextEditor
|
||||
|
||||
namespace Core {
|
||||
class Command;
|
||||
class ActionContainer;
|
||||
class ActionManager;
|
||||
}
|
||||
|
||||
namespace QmlJSEditor {
|
||||
|
||||
class ModelManagerInterface;
|
||||
@@ -46,6 +54,7 @@ namespace Internal {
|
||||
class QmlJSEditorFactory;
|
||||
class CodeCompletion;
|
||||
class QmlJSTextEditor;
|
||||
class QmlJSPreviewRunner;
|
||||
|
||||
class QmlJSEditorPlugin : public ExtensionSystem::IPlugin
|
||||
{
|
||||
@@ -67,9 +76,18 @@ public:
|
||||
public Q_SLOTS:
|
||||
void followSymbolUnderCursor();
|
||||
|
||||
private Q_SLOTS:
|
||||
void openPreview();
|
||||
|
||||
private:
|
||||
Core::Command *addToolAction(QAction *a, Core::ActionManager *am, const QList<int> &context, const QString &name,
|
||||
Core::ActionContainer *c1, const QString &keySequence);
|
||||
|
||||
static QmlJSEditorPlugin *m_instance;
|
||||
|
||||
QAction *m_actionPreview;
|
||||
QmlJSPreviewRunner *m_previewRunner;
|
||||
|
||||
ModelManagerInterface *m_modelManager;
|
||||
QmlFileWizard *m_wizard;
|
||||
QmlJSEditorFactory *m_editor;
|
||||
|
||||
46
src/plugins/qmljseditor/qmljspreviewrunner.cpp
Normal file
46
src/plugins/qmljseditor/qmljspreviewrunner.cpp
Normal file
@@ -0,0 +1,46 @@
|
||||
#include "qmljspreviewrunner.h"
|
||||
|
||||
#include <projectexplorer/environment.h>
|
||||
#include <utils/synchronousprocess.h>
|
||||
|
||||
#include <QtGui/QMessageBox>
|
||||
#include <QtGui/QApplication>
|
||||
|
||||
#include <QDebug>
|
||||
|
||||
namespace QmlJSEditor {
|
||||
namespace Internal {
|
||||
|
||||
QmlJSPreviewRunner::QmlJSPreviewRunner(QObject *parent) :
|
||||
QObject(parent)
|
||||
{
|
||||
// prepend creator/bin dir to search path (only useful for special creator-qml package)
|
||||
const QString searchPath = QCoreApplication::applicationDirPath()
|
||||
+ Utils::SynchronousProcess::pathSeparator()
|
||||
+ QString(qgetenv("PATH"));
|
||||
m_qmlViewerDefaultPath = Utils::SynchronousProcess::locateBinary(searchPath, QLatin1String("qml"));
|
||||
|
||||
ProjectExplorer::Environment environment = ProjectExplorer::Environment::systemEnvironment();
|
||||
m_applicationLauncher.setEnvironment(environment.toStringList());
|
||||
}
|
||||
|
||||
|
||||
void QmlJSPreviewRunner::run(const QString &filename)
|
||||
{
|
||||
QString errorMessage;
|
||||
if (!filename.isEmpty()) {
|
||||
m_applicationLauncher.start(ProjectExplorer::ApplicationLauncher::Gui, m_qmlViewerDefaultPath,
|
||||
QStringList() << filename);
|
||||
|
||||
} else {
|
||||
errorMessage = "No file specified.";
|
||||
}
|
||||
|
||||
if (!errorMessage.isEmpty())
|
||||
QMessageBox::warning(0, tr("Failed to preview Qt Quick file"),
|
||||
tr("Could not preview Qt Quick (QML) file. Reason: \n%1").arg(errorMessage));
|
||||
}
|
||||
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace QmlJSEditor
|
||||
34
src/plugins/qmljseditor/qmljspreviewrunner.h
Normal file
34
src/plugins/qmljseditor/qmljspreviewrunner.h
Normal file
@@ -0,0 +1,34 @@
|
||||
#ifndef QMLJSPREVIEWRUNNER_H
|
||||
#define QMLJSPREVIEWRUNNER_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
#include <projectexplorer/applicationlauncher.h>
|
||||
|
||||
namespace QmlJSEditor {
|
||||
namespace Internal {
|
||||
|
||||
class QmlJSPreviewRunner : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit QmlJSPreviewRunner(QObject *parent = 0);
|
||||
void run(const QString &filename);
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
private:
|
||||
QString m_qmlViewerDefaultPath;
|
||||
|
||||
ProjectExplorer::ApplicationLauncher m_applicationLauncher;
|
||||
|
||||
};
|
||||
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace QmlJSEditor
|
||||
|
||||
|
||||
#endif // QMLJSPREVIEWRUNNER_H
|
||||
Reference in New Issue
Block a user