Show snow on depot tiles. (Looks weird my ass)
[openttd-joker.git] / src / widgets / transparency_widget.h
blobb8f44df7ed89a982957a58f820dbac683c28ffa7
1 /* $Id: transparency_widget.h 23600 2011-12-19 20:46:17Z truebrain $ */
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 transparency_widget.h Types related to the transparency widgets. */
12 #ifndef WIDGETS_TRANSPARENCY_WIDGET_H
13 #define WIDGETS_TRANSPARENCY_WIDGET_H
15 /** Widgets of the #TransparenciesWindow class. */
16 enum TransparencyToolbarWidgets {
17 /* Button row. */
18 WID_TT_BEGIN, ///< First toggle button.
19 WID_TT_SIGNS = WID_TT_BEGIN, ///< Signs background transparency toggle button.
20 WID_TT_TREES, ///< Trees transparency toggle button.
21 WID_TT_HOUSES, ///< Houses transparency toggle button.
22 WID_TT_INDUSTRIES, ///< industries transparency toggle button.
23 WID_TT_BUILDINGS, ///< Company buildings and structures transparency toggle button.
24 WID_TT_BRIDGES, ///< Bridges transparency toggle button.
25 WID_TT_STRUCTURES, ///< Object structure transparency toggle button.
26 WID_TT_CATENARY, ///< Catenary transparency toggle button.
27 WID_TT_LOADING, ///< Loading indicators transparency toggle button.
28 WIT_TT_TUNNELS, ///< Vehicles in tunnels toggle button.
29 WID_TT_END, ///< End of toggle buttons.
31 /* Panel with buttons for invisibility */
32 WID_TT_BUTTONS, ///< Panel with 'invisibility' buttons.
35 #endif /* WIDGETS_TRANSPARENCY_WIDGET_H */