QML slot to static signal ?
-
I have a static signal in a class, when an invalid data tag is bad or doesn't exist, then the static method that is used to perform the look up emits the signal which is defined in the class as:
signals: void interface(bool blnState_); static void invalid(); void staleStatus(bool blnState_); void toolTip(QString strToolTip_);I want to have a slot in the QML that handles this, is it possible and how would I define it ?
-
I have a static signal in a class, when an invalid data tag is bad or doesn't exist, then the static method that is used to perform the look up emits the signal which is defined in the class as:
signals: void interface(bool blnState_); static void invalid(); void staleStatus(bool blnState_); void toolTip(QString strToolTip_);I want to have a slot in the QML that handles this, is it possible and how would I define it ?