File diff r23348:6e5357399bcf → r23349:018a3570e9ae
src/widgets/graph_widget.h
Show inline comments
 
@@ -28,42 +28,43 @@ enum CompanyValueWidgets {
 
	WID_CV_KEY_BUTTON, ///< Key button.
 
	WID_CV_BACKGROUND, ///< Background of the window.
 
	WID_CV_GRAPH,      ///< Graph itself.
 
	WID_CV_RESIZE,     ///< Resize button.
 
};
 

	
 
/** Widget of the #PerformanceHistoryGraphWindow class. */
 
enum PerformanceHistoryGraphWidgets {
 
	WID_PHG_KEY,                  ///< Key button.
 
	WID_PHG_DETAILED_PERFORMANCE, ///< Detailed performance.
 
	WID_PHG_BACKGROUND,           ///< Background of the window.
 
	WID_PHG_GRAPH,                ///< Graph itself.
 
	WID_PHG_RESIZE,               ///< Resize button.
 
};
 

	
 
/** Widget of the #PaymentRatesGraphWindow class. */
 
enum CargoPaymentRatesWidgets {
 
	WID_CPR_BACKGROUND,      ///< Background of the window.
 
	WID_CPR_HEADER,          ///< Header.
 
	WID_CPR_GRAPH,           ///< Graph itself.
 
	WID_CPR_RESIZE,          ///< Resize button.
 
	WID_CPR_FOOTER,          ///< Footer.
 
	WID_CPR_ENABLE_CARGOES,  ///< Enable cargoes button.
 
	WID_CPR_DISABLE_CARGOES, ///< Disable cargoes button.
 
	WID_CPR_CARGO_FIRST,     ///< First cargo in the list.
 
	WID_CPR_MATRIX,          ///< Cargo list.
 
	WID_CPR_MATRIX_SCROLLBAR,///< Cargo list scrollbar.
 
};
 

	
 
/** Widget of the #CompanyLeagueWindow class. */
 
enum CompanyLeagueWidgets {
 
	WID_CL_BACKGROUND, ///< Background of the window.
 
};
 

	
 
/** Widget of the #PerformanceRatingDetailWindow class. */
 
enum PerformanceRatingDetailsWidgets {
 
	WID_PRD_SCORE_FIRST, ///< First entry in the score list.
 
	WID_PRD_SCORE_LAST = WID_PRD_SCORE_FIRST + (SCORE_END - SCORE_BEGIN) - 1, ///< Last entry in the score list.
 

	
 
	WID_PRD_COMPANY_FIRST, ///< First company.
 
	WID_PRD_COMPANY_LAST  = WID_PRD_COMPANY_FIRST + MAX_COMPANIES - 1, ///< Last company.
 
};
 

	
 
#endif /* WIDGETS_GRAPH_WIDGET_H */