Changeset - r16845:ae3513c8806c
[Not reviewed]
master
0 3 0
alberth - 14 years ago 2010-12-21 21:46:19
alberth@openttd.org
(svn r21589) -Codechange: Move PlaceLandBlockInfo() to the right file, introduce a ShowLandInfo() function.
3 files changed with 17 insertions and 12 deletions:
0 comments (0 inline, 0 general)
src/gui.h
Show inline comments
 
@@ -46,7 +46,7 @@ void ShowGenerateLandscape();
 
void ShowHeightmapLoad();
 

	
 
/* misc_gui.cpp */
 
void PlaceLandBlockInfo();
 
void ShowLandInfo(TileIndex tile);
 
void ShowAboutWindow();
 
void ShowBuildTreesToolbar();
 
void ShowTownDirectory();
src/misc_gui.cpp
Show inline comments
 
@@ -329,22 +329,12 @@ public:
 
	}
 
};
 

	
 
static void Place_LandInfo(TileIndex tile)
 
void ShowLandInfo(TileIndex tile)
 
{
 
	DeleteWindowById(WC_LAND_INFO, 0);
 
	new LandInfoWindow(tile);
 
}
 

	
 
void PlaceLandBlockInfo()
 
{
 
	if (_cursor.sprite == SPR_CURSOR_QUERY) {
 
		ResetObjectToPlace();
 
	} else {
 
		_place_proc = Place_LandInfo;
 
		SetObjectToPlace(SPR_CURSOR_QUERY, PAL_NONE, HT_RECT, WC_MAIN_TOOLBAR, 0);
 
	}
 
}
 

	
 
/** Widgets for the land info window. */
 
enum AboutWidgets {
 
	AW_SCROLLING_TEXT,       ///< The actually scrolling text
src/toolbar_gui.cpp
Show inline comments
 
@@ -755,6 +755,21 @@ static void MenuClickNewspaper(int index
 

	
 
/* --- Help button menu --- */
 

	
 
static void Place_LandInfo(TileIndex tile)
 
{
 
	ShowLandInfo(tile);
 
}
 

	
 
static void PlaceLandBlockInfo()
 
{
 
	if (_cursor.sprite == SPR_CURSOR_QUERY) {
 
		ResetObjectToPlace();
 
	} else {
 
		_place_proc = Place_LandInfo;
 
		SetObjectToPlace(SPR_CURSOR_QUERY, PAL_NONE, HT_RECT, WC_MAIN_TOOLBAR, 0);
 
	}
 
}
 

	
 
static void ToolbarHelpClick(Window *w)
 
{
 
	PopupMainToolbMenu(w, TBN_HELP, STR_ABOUT_MENU_LAND_BLOCK_INFO, _settings_client.gui.newgrf_developer_tools ? 9 : 8);
0 comments (0 inline, 0 general)