1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 17:19:09 +00:00

Codechange: List functions gui.h under correct source file.

This commit is contained in:
2024-01-14 15:40:22 +00:00
parent 71aaed860b
commit 4a6bcc570e

View File

@@ -43,25 +43,38 @@ void ShowHeightmapLoad();
/* misc_gui.cpp */ /* misc_gui.cpp */
void ShowLandInfo(TileIndex tile); void ShowLandInfo(TileIndex tile);
void ShowAboutWindow(); void ShowAboutWindow();
void ShowBuildTreesToolbar();
void ShowTownDirectory();
void ShowIndustryDirectory();
void ShowIndustryCargoesWindow();
void ShowSubsidiesList();
void ShowGoalsList(CompanyID company);
void ShowGoalQuestion(uint16_t id, byte type, uint32_t button_mask, const std::string &question);
void ShowStoryBook(CompanyID company, uint16_t page_id = INVALID_STORY_PAGE);
void ShowEstimatedCostOrIncome(Money cost, int x, int y); void ShowEstimatedCostOrIncome(Money cost, int x, int y);
/* tree_gui.cpp */
void ShowBuildTreesToolbar();
/* town_gui.cpp */
void ShowTownDirectory();
void ShowFoundTownWindow();
/* industry_gui.cpp */
void ShowIndustryDirectory();
void ShowIndustryCargoesWindow();
void ShowBuildIndustryWindow();
/* subsidy_gui.cpp */
void ShowSubsidiesList();
/* goal_gui.cpp */
void ShowGoalsList(CompanyID company);
void ShowGoalQuestion(uint16_t id, byte type, uint32_t button_mask, const std::string &question);
/* story_gui.cpp */
void ShowStoryBook(CompanyID company, uint16_t page_id = INVALID_STORY_PAGE);
/* viewport_gui.cpp */
void ShowExtraViewportWindow(TileIndex tile = INVALID_TILE); void ShowExtraViewportWindow(TileIndex tile = INVALID_TILE);
void ShowExtraViewportWindowForTileUnderCursor(); void ShowExtraViewportWindowForTileUnderCursor();
/* bridge_gui.cpp */ /* bridge_gui.cpp */
void ShowBuildBridgeWindow(TileIndex start, TileIndex end, TransportType transport_type, byte bridge_type); void ShowBuildBridgeWindow(TileIndex start, TileIndex end, TransportType transport_type, byte bridge_type);
void ShowBuildIndustryWindow(); /* music_gui.cpp */
void ShowFoundTownWindow();
void ShowMusicWindow(); void ShowMusicWindow();
#endif /* GUI_H */ #endif /* GUI_H */