Hi I have Combobox1 with list of few items. Then I have combobox2 with list of selectable items. If I select any item from combobox1 and I would like to save and later retrieve the current settings of item that I selected in combobox2. Should I use stackwidget for Combobox2?
For instance
Qt Code:
  1. Combobox1 menu have four items:- Combobox2 drop down menu have 3items
  2. Test1 Left
  3. Test2 Right
  4. Test3 Bottom
  5. Test4
To copy to clipboard, switch view to plain text mode 

Now if i select Test1 from Combobox1 and then I select Right from Combobox2. I like to save "Right" selection for test1 selection of Combobox1 and same way if select Test3 I like to save another selection for combobox2. When I select anything from combobox1 i like to save some settings of combobox2 based on index or value of combobox1.