本文整理汇总了C++中Section_prop::Get_bool方法的典型用法代码示例。如果您正苦于以下问题:C++ Section_prop::Get_bool方法的具体用法?C++ Section_prop::Get_bool怎么用?C++ Section_prop::Get_bool使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Section_prop
的用法示例。
在下文中一共展示了Section_prop::Get_bool方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: MENU_Check_Drive
void MENU_Check_Drive(HMENU handle, int cdrom, int floppy, int local, int image, int automount, int umount, char drive) {
#if !defined(HX_DOS)
std::string full_drive(1, drive);
Section_prop * sec = static_cast<Section_prop *>(control->GetSection("dos"));
full_drive += ":\\";
EnableMenuItem(handle, cdrom, (Drives[drive - 'A'] || menu.boot) ? MF_GRAYED : MF_ENABLED);
EnableMenuItem(handle, floppy, (Drives[drive - 'A'] || menu.boot) ? MF_GRAYED : MF_ENABLED);
EnableMenuItem(handle, local, (Drives[drive - 'A'] || menu.boot) ? MF_GRAYED : MF_ENABLED);
EnableMenuItem(handle, image, (Drives[drive - 'A'] || menu.boot) ? MF_GRAYED : MF_ENABLED);
if(sec) EnableMenuItem(handle, automount, AUTOMOUNT(full_drive.c_str(), drive) && !menu.boot && sec->Get_bool("automount") ? MF_ENABLED : MF_GRAYED);
EnableMenuItem(handle, umount, (!Drives[drive - 'A']) || menu.boot ? MF_GRAYED : MF_ENABLED);
#endif
}
示例2: DISNEY_ShouldInit
bool DISNEY_ShouldInit() {
Section_prop *sec = (Section_prop*)control->GetSection("speaker");
return sec->Get_bool("disney");
}
示例3: MENU_SetBool
bool MENU_SetBool(std::string secname, std::string value) {
Section_prop * sec = static_cast<Section_prop *>(control->GetSection(secname));
if(sec) SetVal(secname, value, sec->Get_bool(value) ? "false" : "true");
return sec->Get_bool(value);
}