Hi all

I created an application using QTabWidget as main control. I have some tabs and I associated to each tab a QWidget derivated object through QT Designer (Selected tab control -> Promote to -> Name of my QWidget derivated class). This way I have my derivated class created and loaded directly using the .xml form file. Now I have an additonal need. I want to manage each control inside my tab widget direcly from the QWidget derivated control. Just to explain better I have a button control inside the tab area called "MyButton". If I created the private slot function "on_MyButton_clicked()" inside the QWidget derivated object (tha we can call "MyTabPanel" for example) it doesn't work (the function is not called if I click the button). On the contrary it work if I move and manage this function inside the main class of the window application. Is there some way to have "redirected" all the events regarding the controls inside the tab widget area to the connected QWidegt derivated object associated to the tab?

Thank you