I have a combobox that holds a list of different command types. I want to change the visible input fields on my GUI depending on the selected command in the combobox. I am very new to Qt, and I would appreciate it if someone could point me in the right direction to implementing this.
My current idea is to have a "select" button that emits a signal, and the connected slot will grab the current index of the combobox. I THINK I need to implement a custom class to hold a QFrame. The custom class will hold slots that indicate which data inputs (for the selected command) should be displayed in the QFrame.
IE, if COMMAND_1 is selected in the combobox, 3 input fields display in the QFrame. If COMMAND_2 is selected, a pair of radio buttons is displayed in the QFrame, and those 3 input fields are hidden or deallocated.
Is this a good way of attempting to solve this problem?