Lines Matching refs:cfg_file

106     cfg_file = cfg;  in BEGIN_EVENT_TABLE()
119 m_ChkCtrlGetListOnStart->SetValue(cfg_file->get_list_on_start); in Show()
120 m_ChkCtrlShowBlockedServers->SetValue(cfg_file->show_blocked_servers); in Show()
125 wxStringTokenizer wadlist(cfg_file->wad_paths, _T(PATH_DELIMITER)); in Show()
140 m_DirCtrlChooseOdamexPath->SetPath(cfg_file->odamex_directory); in Show()
239 cfg_file->get_list_on_start = m_ChkCtrlGetListOnStart->GetValue(); in OnOK()
240 cfg_file->show_blocked_servers = m_ChkCtrlShowBlockedServers->GetValue(); in OnOK()
242 cfg_file->wad_paths = _T(""); in OnOK()
246cfg_file->wad_paths.Append(m_LstCtrlWadDirectories->GetString(i) + _T(PATH_DELIMITER)); in OnOK()
248 cfg_file->odamex_directory = m_DirCtrlChooseOdamexPath->GetPath(); in OnOK()
449 ConfigInfo.Read(_T(GETLISTONSTART), &cfg_file->get_list_on_start, 1); in LoadSettings()
450 …ConfigInfo.Read(_T(SHOWBLOCKEDSERVERS), &cfg_file->show_blocked_servers, cfg_file->show_blocked_se… in LoadSettings()
451 cfg_file->wad_paths = ConfigInfo.Read(_T(DELIMWADPATHS), cfg_file->wad_paths); in LoadSettings()
452 cfg_file->odamex_directory = ConfigInfo.Read(_T(ODAMEX_DIRECTORY), cfg_file->odamex_directory); in LoadSettings()
462 ConfigInfo.Write(wxT(GETLISTONSTART), cfg_file->get_list_on_start); in SaveSettings()
463 ConfigInfo.Write(wxT(SHOWBLOCKEDSERVERS), cfg_file->show_blocked_servers); in SaveSettings()
464 ConfigInfo.Write(wxT(DELIMWADPATHS), cfg_file->wad_paths); in SaveSettings()
465 ConfigInfo.Write(wxT(ODAMEX_DIRECTORY), cfg_file->odamex_directory); in SaveSettings()