| 452 | } |
| 453 | |
| 454 | void CConfigAppearance::OnBnClickedButtonAppearanceLoad() // // // 050B |
| 455 | { |
| 456 | if (auto path = GetLoadPath("Theme.txt", "", IDS_FILTER_TXT, L"*.txt")) { |
| 457 | ImportSettings(*path); |
| 458 | static_cast<CComboBox*>(GetDlgItem(IDC_FONT))->SelectString(0, m_strFont.data()); |
| 459 | static_cast<CComboBox*>(GetDlgItem(IDC_FONT_SIZE))->SelectString(0, FormattedW(L"%i", m_iFontSize)); |
| 460 | RedrawWindow(); |
| 461 | SetModified(); |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | void CConfigAppearance::ExportSettings(const fs::path &Path) const // // // 050B |
| 466 | { |
nothing calls this directly
no test coverage detected