QmlJSEditor: Create QuickFixes directly

So far there have been factories instantiated and maintained to get
a list of 'matching' operation by iterating over the factories'
match() functions. The same effect can be achieved more directly
by calling stand-alone functions.

Change-Id: I868489d36f9d8339e0d8855d832df8400501026c
Reviewed-by: Marco Benelli <marco.benelli@qt.io>
This commit is contained in:
hjk
2017-12-18 12:23:28 +01:00
parent e4eb4c3d0f
commit b4faec80ba
9 changed files with 107 additions and 156 deletions

View File

@@ -29,12 +29,10 @@
namespace QmlJSEditor {
class QMLJSEDITOR_EXPORT ComponentFromObjectDef : public QmlJSQuickFixFactory
{
public:
void match(const QmlJSQuickFixInterface &interface, QuickFixOperations &result) override;
QMLJSEDITOR_EXPORT void matchComponentFromObjectDefQuickFix
(const QmlJSQuickFixInterface &interface, QuickFixOperations &result);
static void perform(const QString &fileName, QmlJS::AST::UiObjectDefinition *objDef);
};
QMLJSEDITOR_EXPORT void performComponentFromObjectDef
(const QString &fileName, QmlJS::AST::UiObjectDefinition *objDef);
} // namespace QmlJSEditor