File diff r16733:2c0bce03b3e4 → r16734:e078163a5383
src/window_gui.h
Show inline comments
 
@@ -789,13 +789,13 @@ void RelocateAllWindows(int neww, int ne
 
enum TooltipCloseCondition {
 
	TCC_RIGHT_CLICK,
 
	TCC_LEFT_CLICK,
 
	TCC_HOVER,
 
};
 

	
 
void GuiShowTooltips(StringID str, uint paramcount = 0, const uint64 params[] = NULL, TooltipCloseCondition close_tooltip = TCC_HOVER);
 
void GuiShowTooltips(Window *parent, StringID str, uint paramcount = 0, const uint64 params[] = NULL, TooltipCloseCondition close_tooltip = TCC_HOVER);
 

	
 
/* widget.cpp */
 
int GetWidgetFromPos(const Window *w, int x, int y);
 

	
 
/** Iterate over all windows */
 
#define FOR_ALL_WINDOWS_FROM_BACK_FROM(w, start)  for (w = start; w != NULL; w = w->z_front) if (w->window_class != WC_INVALID)