(svn r27953) -Cleanup: Adjust other languages for r27952
[openttd.git] / src / widgets / news_widget.h
blobf12786640fc821eea79aeaf3b110eac716e64190
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
8 */
10 /** @file news_widget.h Types related to the news widgets. */
12 #ifndef WIDGETS_NEWS_WIDGET_H
13 #define WIDGETS_NEWS_WIDGET_H
15 #include "../news_type.h"
17 /** Widgets of the #NewsWindow class. */
18 enum NewsWidgets {
19 WID_N_PANEL, ///< Panel of the window.
20 WID_N_TITLE, ///< Title of the company news.
21 WID_N_HEADLINE, ///< The news headline.
22 WID_N_CLOSEBOX, ///< Close the window.
23 WID_N_DATE, ///< Date of the news item.
24 WID_N_CAPTION, ///< Title bar of the window. Only used in small news items.
25 WID_N_INSET, ///< Inset around the viewport in the window. Only used in small news items.
26 WID_N_VIEWPORT, ///< Viewport in the window.
27 WID_N_COMPANY_MSG, ///< Message in company news items.
28 WID_N_MESSAGE, ///< Space for displaying the message. Only used in small news items.
29 WID_N_MGR_FACE, ///< Face of the manager.
30 WID_N_MGR_NAME, ///< Name of the manager.
31 WID_N_VEH_TITLE, ///< Vehicle new title.
32 WID_N_VEH_BKGND, ///< Dark background of new vehicle news.
33 WID_N_VEH_NAME, ///< Name of the new vehicle.
34 WID_N_VEH_SPR, ///< Graphical display of the new vehicle.
35 WID_N_VEH_INFO, ///< Some technical data of the new vehicle.
38 /** Widgets of the #MessageHistoryWindow class. */
39 enum MessageHistoryWidgets {
40 WID_MH_STICKYBOX, ///< Stickybox.
41 WID_MH_BACKGROUND, ///< Background of the window.
42 WID_MH_SCROLLBAR, ///< Scrollbar for the list.
45 #endif /* WIDGETS_NEWS_WIDGET_H */