#ifndef OPENMW_COMPONENTS_SETTINGS_CATEGORIES_MAP_H #define OPENMW_COMPONENTS_SETTINGS_CATEGORIES_MAP_H #include "components/settings/sanitizerimpl.hpp" #include "components/settings/settingvalue.hpp" #include #include #include #include #include #include namespace Settings { struct MapCategory { SettingValue mGlobalMapCellSize{ "Map", "global map cell size", makeMaxSanitizerInt(1) }; SettingValue mLocalMapHudWidgetSize{ "Map", "local map hud widget size", makeMaxSanitizerInt(1) }; SettingValue mLocalMapHudFogOfWar{ "Map", "local map hud fog of war" }; SettingValue mLocalMapResolution{ "Map", "local map resolution", makeMaxSanitizerInt(1) }; SettingValue mLocalMapWidgetSize{ "Map", "local map widget size", makeMaxSanitizerInt(1) }; SettingValue mGlobal{ "Map", "global" }; SettingValue mAllowZooming{ "Map", "allow zooming" }; SettingValue mMaxLocalViewingDistance{ "Map", "max local viewing distance", makeMaxSanitizerInt(1) }; }; } #endif