Re: [Interest] Best way to invoke a slot after some time with QObject::sender

2012-08-28 Thread BRM
> From: Bo Thorsen >Den 28-08-2012 04:10, Preet skrev: >> Hiya, >> >> I have a project where I'm trying to asynchronously reply to a signal. >> So if ObjectA sends ObjectB a signal, ObjectB will send ObjectA a >> reply signal at some later point in time. ObjectA is guaranteed to be >> alive when

Re: [Interest] Best way to invoke a slot after some time with QObject::sender

2012-08-28 Thread Till Oliver Knoll
Am 28.08.2012 um 10:22 schrieb Preet : > I couldn't come up > with a way to tell a potential plugin dev how to 'talk' to my ObjectB > plugin without directly saying "give your plugin a slot called > "onSomeSignal()" if you want me to talk to you!" That's easy: simply *make* the plugins implement

[Interest] “permission denied, Path not found” error and unable to create QML project using Creator

2012-08-28 Thread Kk_Kishore
Hi, http://releases.qt-project.org/qt5.0-beta-snapshots/_release Please let me know if this is the path to download Qt5 beta installer. My trials to build Qt5 beta on ubuntu 12.4 was fruitful but I’ve end up with “permiss

Re: [Interest] Best way to invoke a slot after some time with QObject::sender

2012-08-28 Thread Preet
>> I have a project where I'm trying to asynchronously reply to a signal. >> So if ObjectA sends ObjectB a signal, ObjectB will send ObjectA a >> reply signal at some later point in time. > > That sounds like "broken by design" to me: you'd have a dependency circle > here! In order to *connect* to

Re: [Interest] Best way to invoke a slot after some time with QObject::sender

2012-08-28 Thread Preet
Hi Bo, > The first actually uses the second, because those are cross thread > signal slot connections. But by using the connect, you will > automatically get the call moved across to the other thread. If you use > invoke, you don't get this. If it's okay to call across threads, invoke > is the fas

[Interest] Problems with QmlEngine and importPath

2012-08-28 Thread Wehmer, Matthias
Hi everybody, we are currently suffering from the following problem: We fail to change the default directory for our custom qml plugins, that we have written in C++, and that we want to import (e.g. via import custom_plugin 1.0). That is the only directory our QML applications find the plugins

Re: [Interest] Best way to invoke a slot after some time with QObject::sender

2012-08-28 Thread André Somers
Op 28-8-2012 8:36, Till Oliver Knoll schreef: > Am 28.08.2012 um 04:10 schrieb Preet : > >> Hiya, >> >> I have a project where I'm trying to asynchronously reply to a signal. >> So if ObjectA sends ObjectB a signal, ObjectB will send ObjectA a >> reply signal at some later point in time. > That sou