PDA

View Full Version : Connect forms



renia
16th March 2009, 15:50
As I am new in qt I need some help.

Is it possible using the qt3 or qt4 designer user interface to connect two forms,Without writing a single line of C-code??

Thank you
R.

Boron
16th March 2009, 17:31
You mean to connect e.g. a button in form A with a widget in form B?
And with "forms" you mean two different windows/dialogs?

I am not sure, but when both form objects exist at the same time you could connect a signal from form A with a slot in form B. Maybe a "queued connection" should be used.
I never tried something like this. Sounds very weird; interaction of different windows/dialogs with their own event loop.

And it cannot be done without writing code manually.
That's for sure!