(svn r27953) -Cleanup: Adjust other languages for r27952
[openttd.git] / src / widgets / network_chat_widget.h
blobcd13cf6a9695647e2b8b2d8cc703f716098bbd16
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 network_chat_widget.h Types related to the network chat widgets. */
12 #ifndef WIDGETS_NETWORK_CHAT_WIDGET_H
13 #define WIDGETS_NETWORK_CHAT_WIDGET_H
15 /** Widgets of the #NetworkChatWindow class. */
16 enum NetWorkChatWidgets {
17 WID_NC_CLOSE, ///< Close button.
18 WID_NC_BACKGROUND, ///< Background of the window.
19 WID_NC_DESTINATION, ///< Destination.
20 WID_NC_TEXTBOX, ///< Textbox.
21 WID_NC_SENDBUTTON, ///< Send button.
24 #endif /* WIDGETS_NETWORK_CHAT_WIDGET_H */