コード例 #1
0
ファイル: viewport_gui.cpp プロジェクト: Ayutac/OpenTTD
	/**
	 * Some data on this window has become invalid.
	 * @param data Information about the changed data.
	 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
	 */
	virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
	{
		if (!gui_scope) return;
		/* Only handle zoom message if intended for us (msg ZOOM_IN/ZOOM_OUT) */
		HandleZoomMessage(this, this->viewport, WID_EV_ZOOM_IN, WID_EV_ZOOM_OUT);
	}
コード例 #2
0
ファイル: viewport_gui.cpp プロジェクト: jemmyw/openttd
 virtual void OnInvalidateData(int data = 0)
 {
     /* Only handle zoom message if intended for us (msg ZOOM_IN/ZOOM_OUT) */
     HandleZoomMessage(this, this->viewport, EVW_ZOOMIN, EVW_ZOOMOUT);
 }