Ref T180, dot commands to set rendering setup

* enable parts/debug messages via dot command
* allow to log to console via application context
This commit is contained in:
Klaus Basan
2017-11-05 20:15:01 +01:00
parent 1bf2f63589
commit 482023b2c0
7 changed files with 64 additions and 5 deletions

View File

@@ -62,6 +62,9 @@ namespace BlackCore
Q_ASSERT(s);
s = connection.connect(serviceName, IContextApplication::ObjectPath(), IContextApplication::InterfaceName(),
"hotkeyActionsRegistered", this, SIGNAL(hotkeyActionsRegistered(QStringList, BlackMisc::CIdentifier)));
Q_ASSERT(s);
s = connection.connect(serviceName, IContextApplication::ObjectPath(), IContextApplication::InterfaceName(),
"requestDisplayOnConsole", this, SIGNAL(requestDisplayOnConsole(QString)));
Q_UNUSED(s);
this->relayBaseClassSignals(serviceName, connection, IContextApplication::ObjectPath(), IContextApplication::InterfaceName());
}