I implemented a QTableWidget with 3 columns 1st and 2nd column is a combo box 3rd column is QLineEdit
I wanted to display a dialog which will serve as a hint similar to Qt when typing parameters for a function.
For example typing QString() will display a hint dialog with numbers 1 to 12 and the hint itself for the parameters of that function. This is different from auto-complete since it will display only a fixed number of messages in popup.
Please suggest any way to do this.