فهرست منبع

Add hostMessage signal + "message" user command

Vincent Lang 9 سال پیش
والد
کامیت
da1dda847b
2فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 1 0
      src/system/SystemComponent.cpp
  2. 3 0
      src/system/SystemComponent.h

+ 1 - 0
src/system/SystemComponent.cpp

@@ -85,6 +85,7 @@ void SystemComponent::componentPostInitialize()
 {
   InputComponent::Get().registerHostCommand("crash!", this, "crashApp");
   InputComponent::Get().registerHostCommand("script", this, "runUserScript");
+  InputComponent::Get().registerHostCommand("message", this, "hostMessage");
 }
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////

+ 3 - 0
src/system/SystemComponent.h

@@ -73,6 +73,9 @@ public:
 
   Q_INVOKABLE void crashApp();
 
+signals:
+  void hostMessage(const QString& message);
+
 private:
   SystemComponent(QObject* parent = 0);
   static QMap<QString, QString> networkInterfaces();