本文整理汇总了C++中ConfigFile::DeleteKey方法的典型用法代码示例。如果您正苦于以下问题:C++ ConfigFile::DeleteKey方法的具体用法?C++ ConfigFile::DeleteKey怎么用?C++ ConfigFile::DeleteKey使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ConfigFile
的用法示例。
在下文中一共展示了ConfigFile::DeleteKey方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: WinPreLoad
void WinPreLoad(ConfigFile& conf)
{
if(conf.Exists("Config::Sort"))
{
if(conf.GetUInt("Config::Sort") == 1)
{
configSort = 1;
ConfigFile::SetAlphaSort(configSort==2);
ConfigFile::SetTimeSort(configSort==1);
conf.ClearLines();
}
}
else
{
conf.DeleteKey("Config::Sort");
}
}
示例2: WinPreSave
void WinPreSave(ConfigFile& conf)
{
strcpy(filterString, "output filter: ");
for(int i=0;i<NUM_FILTERS;i++)
{
static char temp [256];
sprintf(temp, "%d=%s%c ", i, GetFilterName((RenderFilter)i), i!=NUM_FILTERS-1?',':' ');
strcat(filterString, temp);
}
strcpy(filterString2, "hi-res output filter: ");
for(int i=0;i<NUM_FILTERS;i++)
{
if(GetFilterHiResSupport((RenderFilter)i))
{
static char temp [256];
sprintf(temp, "%d=%s%c ", i, GetFilterName((RenderFilter)i), i!=NUM_FILTERS-1?',':' ');
strcat(filterString2, temp);
}
}
sprintf(snapVerString, "Snapshot save version. Must be between 1 and %d (inclusive)", SNAPSHOT_VERSION);
// GetWindowRect (GUI.hWnd, &GUI.window_size);
GUI.window_size.right -= GUI.window_size.left;
GUI.window_size.bottom -= GUI.window_size.top;
int extra_width = 2*(GetSystemMetrics(SM_CXBORDER) +
GetSystemMetrics(SM_CXDLGFRAME));
GUI.window_size.right -= extra_width;
int extra_height = 2*(GetSystemMetrics(SM_CYBORDER) +
GetSystemMetrics(SM_CYDLGFRAME)) +
GetSystemMetrics(SM_CYCAPTION) +
GetSystemMetrics(SM_CYMENU) +
(GUI.HideMenu ? 0 : (
(GUI.window_size.right <= 392 ? GetSystemMetrics(SM_CYMENU) : 0) + // HACK: accounts for menu wrapping (when width is small)
(GUI.window_size.right <= 208 ? GetSystemMetrics(SM_CYMENU) : 0) +
(GUI.window_size.right <= 148 ? GetSystemMetrics(SM_CYMENU) : 0)));
GUI.window_size.bottom -= extra_height;
if(GUI.window_size.bottom < 10) GUI.window_size.bottom = 10;
if(GUI.window_size.right < 10) GUI.window_size.right = 10;
conf.DeleteKey("Sound::Mono");
if(configSort == 2)
conf.ClearLines();
}