(svn r27729) -Codechange: Do not count static NewGRF when checking for the maximum...
[openttd.git] / src / widgets / music_widget.h
blob3a99bc6150381e861dace510eea49f8b652816c2
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 music_widget.h Types related to the music widgets. */
12 #ifndef WIDGETS_MUSIC_WIDGET_H
13 #define WIDGETS_MUSIC_WIDGET_H
15 /** Widgets of the #MusicTrackSelectionWindow class. */
16 enum MusicTrackSelectionWidgets {
17 WID_MTS_LIST_LEFT, ///< Left button.
18 WID_MTS_PLAYLIST, ///< Playlist.
19 WID_MTS_LIST_RIGHT, ///< Right button.
20 WID_MTS_ALL, ///< All button.
21 WID_MTS_OLD, ///< Old button.
22 WID_MTS_NEW, ///< New button.
23 WID_MTS_EZY, ///< Ezy button.
24 WID_MTS_CUSTOM1, ///< Custom1 button.
25 WID_MTS_CUSTOM2, ///< Custom2 button.
26 WID_MTS_CLEAR, ///< Clear button.
29 /** Widgets of the #MusicWindow class. */
30 enum MusicWidgets {
31 WID_M_PREV, ///< Previous button.
32 WID_M_NEXT, ///< Next button.
33 WID_M_STOP, ///< Stop button.
34 WID_M_PLAY, ///< Play button.
35 WID_M_SLIDERS, ///< Sliders.
36 WID_M_MUSIC_VOL, ///< Music volume.
37 WID_M_EFFECT_VOL, ///< Effect volume.
38 WID_M_BACKGROUND, ///< Background of the window.
39 WID_M_TRACK, ///< Track playing.
40 WID_M_TRACK_NR, ///< Track number.
41 WID_M_TRACK_TITLE, ///< Track title.
42 WID_M_TRACK_NAME, ///< Track name.
43 WID_M_SHUFFLE, ///< Shuffle button.
44 WID_M_PROGRAMME, ///< Program button.
45 WID_M_ALL, ///< All button.
46 WID_M_OLD, ///< Old button.
47 WID_M_NEW, ///< New button.
48 WID_M_EZY, ///< Ezy button.
49 WID_M_CUSTOM1, ///< Custom1 button.
50 WID_M_CUSTOM2, ///< Custom2 button.
53 #endif /* WIDGETS_MUSIC_WIDGET_H */