File diff r25966:8233c136b1b0 → r25967:74951d8178de
src/widgets/vehicle_widget.h
Show inline comments
 
@@ -52,25 +52,28 @@ enum VehicleDetailsWidgets {
 
	WID_VD_SERVICING_INTERVAL,          ///< Information about the servicing interval.
 
	WID_VD_MIDDLE_DETAILS,              ///< Details for non-trains.
 
	WID_VD_MATRIX,                      ///< List of details for trains.
 
	WID_VD_SCROLLBAR,                   ///< Scrollbar for train details.
 
	WID_VD_DETAILS_CARGO_CARRIED,       ///< Show carried cargo per part of the train.
 
	WID_VD_DETAILS_TRAIN_VEHICLES,      ///< Show all parts of the train with their description.
 
	WID_VD_DETAILS_CAPACITY_OF_EACH,    ///< Show the capacity of all train parts.
 
	WID_VD_DETAILS_TOTAL_CARGO,         ///< Show the capacity and carried cargo amounts aggregated per cargo of the train.
 
};
 

	
 
/** Widgets of the #VehicleListWindow class. */
 
enum VehicleListWidgets {
 
	WID_VL_CAPTION,                  ///< Caption of window.
 
	WID_VL_CAPTION,                  ///< Caption of window (for non shared orders windows).
 
	WID_VL_CAPTION_SHARED_ORDERS,    ///< Caption of window (for shared orders windows).
 
	WID_VL_CAPTION_SELECTION,        ///< Selection for caption.
 
	WID_VL_ORDER_VIEW,               ///< Button to open order window (for shared orders windows).
 
	WID_VL_GROUP_ORDER,              ///< Group order.
 
	WID_VL_GROUP_BY_PULLDOWN,        ///< Group by dropdown list.
 
	WID_VL_SORT_ORDER,               ///< Sort order.
 
	WID_VL_SORT_BY_PULLDOWN,         ///< Sort by dropdown list.
 
	WID_VL_LIST,                     ///< List of the vehicles.
 
	WID_VL_SCROLLBAR,                ///< Scrollbar for the list.
 
	WID_VL_HIDE_BUTTONS,             ///< Selection to hide the buttons.
 
	WID_VL_AVAILABLE_VEHICLES,       ///< Available vehicles.
 
	WID_VL_MANAGE_VEHICLES_DROPDOWN, ///< Manage vehicles dropdown list.
 
	WID_VL_STOP_ALL,                 ///< Stop all button.
 
	WID_VL_START_ALL,                ///< Start all button.
 
};