void MainWindow::saveSettings() const { QSettings sett("blackplastic-theme/config"); sett.setValue("font", text_of_combobox /* you now how to get that already */); // Other values like that also } void MainWindow::loadSettings() { QSettings sett("blackplastic-theme/config"); bool bOK; QString font = sett.value("font", QVariant("")).toString(); // Other values likewise and set comboboxes to show values }