Slate: Passing data between SCompoundWidget and/or IModuleInterface

Hey,

I’m really lost right now in Slate. I’m trying to pass FText from a SCompoundWidget class, called SScanner to another SCompoundWidget, called SLogOutput. Both are part of an editor tool, which inherits from IModuleInterface. Now I’m totally confused by how this should be done. I read about the macros SLATE_EVENT, SLATE_ARGUMENT and SLAT_ATTRIBUTE. However, I do not yet fully understand them.
What should happen is that everytime SScanner creates a Text, I want to push it to SLogOutput so that it automatically updates in the tool window. I shouldn’t need to manually refresh something.
But is this the right way? Or is the IModuleInterface class also involved in the process?