I have made the ui using QT designer. Which has a textbox in main window in which user enters his name. i want to call function 'input' when the data entered by user is over. but i cant find a way to link a textbox from ui designed using QT designer to a coded function form other class. I guess signal and slots (in qt designer) can only link to components of the same window.
Again, at the same time i want to store the name entered by the user in a char variable usr_nm[] in the same function input. I later want to display the name in a text browser with some other details in function output.(-->Input and output function are in same class.)