2016-01-27 09:11:59 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
|
|
#include "SettingsPage.h"
|
|
|
|
#include "SettingsPage-Game-Status.h"
|
|
|
|
|
|
|
|
CGameStatusPage::CGameStatusPage(HWND hParent, const RECT & rcDispay)
|
|
|
|
{
|
2016-04-12 07:55:36 +00:00
|
|
|
if (!Create(hParent, rcDispay))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2016-01-27 09:11:59 +00:00
|
|
|
|
2016-04-12 07:55:36 +00:00
|
|
|
CIniFile RomIniFile(g_Settings->LoadStringVal(SupportFile_RomDatabase).c_str());
|
2018-11-18 01:06:02 +00:00
|
|
|
CIniFile::strlist Keys;
|
2021-03-18 02:11:18 +00:00
|
|
|
RomIniFile.GetKeyList("ROM Status", Keys);
|
2016-04-13 07:34:19 +00:00
|
|
|
stdstr Status = UISettingsLoadStringVal(Rdb_Status);
|
2016-01-27 09:11:59 +00:00
|
|
|
|
2016-04-12 07:55:36 +00:00
|
|
|
CModifiedComboBoxTxt * ComboBox;
|
2021-03-18 00:32:37 +00:00
|
|
|
ComboBox = AddModComboBoxTxt(GetDlgItem(IDC_STATUS_TYPE), (SettingID)Rdb_Status);
|
2016-04-12 07:55:36 +00:00
|
|
|
if (ComboBox)
|
|
|
|
{
|
2018-11-18 01:06:02 +00:00
|
|
|
for (CIniFile::strlist::iterator item = Keys.begin(); item != Keys.end(); item++)
|
2016-04-12 07:55:36 +00:00
|
|
|
{
|
|
|
|
if (strstr(item->c_str(), ".Sel") != NULL) { continue; }
|
|
|
|
if (strstr(item->c_str(), ".Auto") != NULL) { continue; }
|
2020-05-12 12:19:05 +00:00
|
|
|
ComboBox->AddItem(stdstr(*item).ToUTF16().c_str(), item->c_str());
|
2016-04-12 07:55:36 +00:00
|
|
|
}
|
|
|
|
ComboBox->SetTextField(GetDlgItem(IDC_STATUS_TEXT));
|
|
|
|
}
|
|
|
|
CModifiedEditBox * TxtBox;
|
2021-03-18 00:32:37 +00:00
|
|
|
TxtBox = AddModTextBox(GetDlgItem(IDC_NOTES_CORE), (SettingID)Rdb_NotesCore, true);
|
2016-04-12 07:55:36 +00:00
|
|
|
TxtBox->SetTextField(GetDlgItem(IDC_NOTES_CORE_TEXT));
|
2021-03-18 00:32:37 +00:00
|
|
|
TxtBox = AddModTextBox(GetDlgItem(IDC_NOTES_PLUGIN), (SettingID)Rdb_NotesPlugin, true);
|
2016-04-12 07:55:36 +00:00
|
|
|
TxtBox->SetTextField(GetDlgItem(IDC_NOTES_PLUGIN_TEXT));
|
2016-01-27 09:11:59 +00:00
|
|
|
|
2016-04-12 07:55:36 +00:00
|
|
|
UpdatePageSettings();
|
2016-01-27 09:11:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGameStatusPage::ShowPage()
|
|
|
|
{
|
2016-04-12 07:55:36 +00:00
|
|
|
ShowWindow(SW_SHOW);
|
2016-01-27 09:11:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGameStatusPage::HidePage()
|
|
|
|
{
|
2016-04-12 07:55:36 +00:00
|
|
|
ShowWindow(SW_HIDE);
|
2016-01-27 09:11:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGameStatusPage::ApplySettings(bool UpdateScreen)
|
|
|
|
{
|
2016-04-12 07:55:36 +00:00
|
|
|
CSettingsPageImpl<CGameStatusPage>::ApplySettings(UpdateScreen);
|
2016-01-27 09:11:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CGameStatusPage::EnableReset(void)
|
|
|
|
{
|
2016-04-12 07:55:36 +00:00
|
|
|
if (CSettingsPageImpl<CGameStatusPage>::EnableReset()) { return true; }
|
|
|
|
return false;
|
2016-01-27 09:11:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGameStatusPage::ResetPage()
|
|
|
|
{
|
2016-04-12 07:55:36 +00:00
|
|
|
CSettingsPageImpl<CGameStatusPage>::ResetPage();
|
2021-03-18 02:11:18 +00:00
|
|
|
}
|