Fix #10490: Allow ships to exit depots if another is not moving at the exit point...
[openttd-github.git] / src / widgets / news_widget.h
blob68d59fa13360c8170687a7da5c73a161a85b3f07
1 /*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
8 /** @file news_widget.h Types related to the news widgets. */
10 #ifndef WIDGETS_NEWS_WIDGET_H
11 #define WIDGETS_NEWS_WIDGET_H
13 #include "../news_type.h"
15 /** Widgets of the #NewsWindow class. */
16 enum NewsWidgets : WidgetID {
17 WID_N_PANEL, ///< Panel of the window.
18 WID_N_TITLE, ///< Title of the company news.
19 WID_N_HEADLINE, ///< The news headline.
20 WID_N_CLOSEBOX, ///< Close the window.
21 WID_N_DATE, ///< Date of the news item.
22 WID_N_CAPTION, ///< Title bar of the window. Only used in small news items.
23 WID_N_INSET, ///< Inset around the viewport in the window. Only used in small news items.
24 WID_N_VIEWPORT, ///< Viewport in the window.
25 WID_N_COMPANY_MSG, ///< Message in company news items.
26 WID_N_MESSAGE, ///< Space for displaying the message. Only used in small news items.
27 WID_N_MGR_FACE, ///< Face of the manager.
28 WID_N_MGR_NAME, ///< Name of the manager.
29 WID_N_VEH_TITLE, ///< Vehicle new title.
30 WID_N_VEH_BKGND, ///< Dark background of new vehicle news.
31 WID_N_VEH_NAME, ///< Name of the new vehicle.
32 WID_N_VEH_SPR, ///< Graphical display of the new vehicle.
33 WID_N_VEH_INFO, ///< Some technical data of the new vehicle.
34 WID_N_SHOW_GROUP, ///< Show vehicle's group
37 /** Widgets of the #MessageHistoryWindow class. */
38 enum MessageHistoryWidgets : WidgetID {
39 WID_MH_STICKYBOX, ///< Stickybox.
40 WID_MH_BACKGROUND, ///< Background of the window.
41 WID_MH_SCROLLBAR, ///< Scrollbar for the list.
44 #endif /* WIDGETS_NEWS_WIDGET_H */