aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h')
-rw-r--r--share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h b/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h
index 0c6009e477..10c2d1fdbb 100644
--- a/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h
+++ b/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h
@@ -53,6 +53,8 @@ class RemoveSharedMemoryCommand;
class ChangeSelectionCommand;
class InputEventCommand;
class View3DActionCommand;
+class ChangeLanguageCommand;
+class ChangePreviewImageSizeCommand;
class NodeInstanceServerInterface : public QObject
{
@@ -85,9 +87,10 @@ public:
virtual void changeSelection(const ChangeSelectionCommand &command) = 0;
virtual void inputEvent(const InputEventCommand &command) = 0;
virtual void view3DAction(const View3DActionCommand &command) = 0;
+ virtual void changeLanguage(const ChangeLanguageCommand &command) = 0;
+ virtual void changePreviewImageSize(const ChangePreviewImageSizeCommand &command) = 0;
- virtual void benchmark(const QString &)
- {}
+ virtual void benchmark(const QString &) {}
static void registerCommands();
};