am new to Qt and Qtcreator.
Am working on a multi-widget application. My question is, is it possible to connect a signal in one Qwidget (say a submit button in edit contacts Qwidget) to a slot in another Qwidget(one showing the edited contacts) using the graphical signal-slot editor in Qtcreator.
From my interaction with the signal-slot editor, i can only drag the signal to another component withing the same widget, but not one outside of the widget.
Thanks
AFAIK that’s only possible for widgets in the same .ui file. You will need to do this in the generated code with
connect(widgetA, SIGNAL(signal()), widgetB, SLOT(slot());