New QmlDesigner plugin & Design mode

This adds a new "Design" mode that can be used to manipulate qml files
in a visual way. It will only get build if you have the declarativeui
module in Qt.

This is a squashed import from the Bauhaus project. Share & enjoy :)
This commit is contained in:
Kai Koehne
2010-01-07 12:14:35 +01:00
parent ae535daa20
commit 818a7b226b
743 changed files with 102919 additions and 23 deletions

View File

@@ -50,6 +50,7 @@ void QmlTaskManager::setTaskWindow(ProjectExplorer::TaskWindow *taskWindow)
void QmlTaskManager::documentUpdated(QmlEditor::QmlDocument::Ptr doc)
{
#if 0 // This will give way too many flickering errors in the build-results pane *when you're typing*
m_taskWindow->clearTasks(Constants::TASK_CATEGORY_QML);
foreach (const QmlJS::DiagnosticMessage &msg, doc->diagnosticMessages()) {
@@ -61,6 +62,7 @@ void QmlTaskManager::documentUpdated(QmlEditor::QmlDocument::Ptr doc)
Constants::TASK_CATEGORY_QML);
m_taskWindow->addTask(task);
}
#endif
}
} // Internal