Hi,
I have three Objects A,B,C. A has access to B and B has access to C. This is not(!) vice versa, so C does not now anything from B and B does not know A.
Now C emits "signal_C" and I want A to call a slot. Currently I connect "signal_C" with "slot_B". "slot_B" emits "signal_B", which is conected with "slot_A".
Is there a possibility to make this a bit easier? Can B "forward" "signal_C" somehow? Like "on receiving signal_C emit signal_B"? Or is it already best practice wih "slot_B" emitting "signal_B"?
I hope, this was not too confusing ;)
Felix