| 429 | }; |
| 430 | |
| 431 | static CallBackFunction ToolbarMapClick(Window *w) |
| 432 | { |
| 433 | DropDownList list; |
| 434 | list.push_back(MakeDropDownListStringItem(STR_MAP_MENU_MAP_OF_WORLD, MME_SHOW_SMALLMAP)); |
| 435 | list.push_back(MakeDropDownListStringItem(STR_MAP_MENU_EXTRA_VIEWPORT, MME_SHOW_EXTRAVIEWPORTS)); |
| 436 | list.push_back(MakeDropDownListStringItem(STR_MAP_MENU_LINGRAPH_LEGEND, MME_SHOW_LINKGRAPH)); |
| 437 | list.push_back(MakeDropDownListStringItem(STR_MAP_MENU_SIGN_LIST, MME_SHOW_SIGNLISTS)); |
| 438 | PopupMainToolbarMenu(w, WID_TN_SMALL_MAP, std::move(list), 0); |
| 439 | return CBF_NONE; |
| 440 | } |
| 441 | |
| 442 | static CallBackFunction ToolbarScenMapTownDir(Window *w) |
| 443 | { |
nothing calls this directly
no test coverage detected