Re: [Interest] Connecting output of an external process to a QML component

2014-12-31 Thread Dmitry Volosnykh
Daniel, as per recognition of signal on the QML side, try making the first letter non-capitalized, i.e. call it executionFinished instead of ExecutionFinished. I guess that should help. If you don't see qDebug's output inside the readyToRead() slot, then it should be your first point of attention

[Interest] Connecting output of an external process to a QML component

2014-12-31 Thread Daniel França
Hi guys, I'm trying to connect the output of an external process to a QML component. The idea would be to have a QProcess instance being called in a singleton C++ class, that connects the readyReadStandardOutput to a slot in the C++ class and this last one emits a signal that I can connect into