summaryrefslogtreecommitdiff
path: root/src/music_gui.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2009-08-30 19:23:36 +0000
committeryexo <yexo@openttd.org>2009-08-30 19:23:36 +0000
commit6992d740f6b0abc0fbeb70c039d32732ec70a7ae (patch)
treea2da0972d589964e36f3a443794c49b87f2d94dc /src/music_gui.cpp
parent5767972531b9de40d86dbfb9b3c50d971fb89c86 (diff)
downloadopenttd-6992d740f6b0abc0fbeb70c039d32732ec70a7ae.tar.xz
(svn r17329) -Codechange: music window uses nested widgets
Diffstat (limited to 'src/music_gui.cpp')
-rw-r--r--src/music_gui.cpp107
1 files changed, 47 insertions, 60 deletions
diff --git a/src/music_gui.cpp b/src/music_gui.cpp
index 8394f2d6c..cb2b3b7e3 100644
--- a/src/music_gui.cpp
+++ b/src/music_gui.cpp
@@ -417,55 +417,64 @@ enum MusicWidgets {
};
struct MusicWindow : public Window {
- MusicWindow(const WindowDesc *desc, WindowNumber number) : Window(desc, number)
+ MusicWindow(const WindowDesc *desc, WindowNumber number) : Window()
{
- this->FindWindowPlacementAndResize(desc);
+ this->InitNested(desc, number);
}
- virtual void OnPaint()
+ virtual void DrawWidget(const Rect &r, int widget) const
{
- this->RaiseWidget(MW_GAUGE);
- this->RaiseWidget(MW_INFO);
- this->DrawWidgets();
-
- GfxFillRect(187, 16, 200, 33, 0);
+ switch (widget) {
+ case MW_GAUGE:
+ GfxFillRect(r.left, r.top, r.right, r.bottom, 0);
+
+ for (uint i = 0; i != 8; i++) {
+ int colour = 0xD0;
+ if (i > 4) {
+ colour = 0xBF;
+ if (i > 6) {
+ colour = 0xB8;
+ }
+ }
+ GfxFillRect(r.left, r.bottom - i * 2, r.right, r.bottom - i * 2, colour);
+ }
+ break;
- for (uint i = 0; i != 8; i++) {
- int colour = 0xD0;
- if (i > 4) {
- colour = 0xBF;
- if (i > 6) {
- colour = 0xB8;
+ case MW_INFO: {
+ GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, 0);
+ StringID str = STR_MUSIC_TRACK_NONE;
+ if (_song_is_active != 0 && _music_wnd_cursong != 0) {
+ SetDParam(0, _music_wnd_cursong);
+ str = (_music_wnd_cursong < 10) ? STR_MUSIC_TRACK_SINGLE_DIGIT : STR_MUSIC_TRACK_DOUBLE_DIGIT;
}
- }
- GfxFillRect(187, NUM_SONGS_PLAYLIST - i * 2, 200, NUM_SONGS_PLAYLIST - i * 2, colour);
- }
+ DrawString(r.left + 3, r.right - 3, r.top, str);
+ str = STR_MUSIC_TITLE_NONE;
+ if (_song_is_active != 0 && _music_wnd_cursong != 0) {
+ str = STR_MUSIC_TITLE_NAME;
+ SetDParam(0, SPECSTR_SONGNAME);
+ SetDParam(1, _music_wnd_cursong);
+ }
+ DrawString(r.left, r.right, r.top + 1, str, TC_FROMSTRING, SA_CENTER);
+ } break;
- GfxFillRect(60, 46, 239, 52, 0);
+ case MW_SHUFFLE:
+ DrawString(r.left, r.right, r.top, STR_MUSIC_SHUFFLE, (msf.shuffle ? TC_WHITE : TC_BLACK), SA_CENTER);
+ break;
- StringID str = STR_MUSIC_TRACK_NONE;
- if (_song_is_active != 0 && _music_wnd_cursong != 0) {
- SetDParam(0, _music_wnd_cursong);
- str = (_music_wnd_cursong < 10) ? STR_MUSIC_TRACK_SINGLE_DIGIT : STR_MUSIC_TRACK_DOUBLE_DIGIT;
- }
- DrawString(this->widget[MW_INFO].left + 3, this->widget[MW_INFO].right - 3, 46, str);
+ case MW_PROGRAMME:
+ DrawString(r.left, r.right, r.top, STR_MUSIC_PROGRAM, TC_FROMSTRING, SA_CENTER);
+ break;
- str = STR_MUSIC_TITLE_NONE;
- if (_song_is_active != 0 && _music_wnd_cursong != 0) {
- str = STR_MUSIC_TITLE_NAME;
- SetDParam(0, SPECSTR_SONGNAME);
- SetDParam(1, _music_wnd_cursong);
+ case MW_ALL: case MW_OLD: case MW_NEW: case MW_EZY: case MW_CUSTOM1: case MW_CUSTOM2:
+ DrawString(r.left, r.right, r.top, STR_MUSIC_PLAYLIST_ALL + (widget - MW_ALL), msf.playlist == (widget - MW_ALL) ? TC_WHITE : TC_BLACK, SA_CENTER);
+ break;
}
- DrawString(this->widget[MW_INFO].left, this->widget[MW_INFO].right, 46, str, TC_FROMSTRING, SA_CENTER);
-
- DrawString(this->widget[MW_INFO].left + 1, this->widget[MW_INFO].right, 38, STR_MUSIC_TRACK_XTITLE);
+ }
- for (uint i = 0; i != 6; i++) {
- DrawString(this->widget[i + MW_ALL].left, this->widget[i + MW_ALL].right, 59, STR_MUSIC_PLAYLIST_ALL + i, msf.playlist == i ? TC_WHITE : TC_BLACK, SA_CENTER);
- }
+ virtual void OnPaint()
+ {
+ this->DrawWidgets();
- DrawString(this->widget[MW_SHUFFLE].left, this->widget[MW_SHUFFLE].right, this->widget[MW_SHUFFLE].top + 1, STR_MUSIC_SHUFFLE, (msf.shuffle ? TC_WHITE : TC_BLACK), SA_CENTER);
- DrawString(this->widget[MW_PROGRAMME].left, this->widget[MW_PROGRAMME].right, this->widget[MW_PROGRAMME].top + 1, STR_MUSIC_PROGRAM, TC_FROMSTRING, SA_CENTER);
DrawString(108, 174, 15, STR_MUSIC_MUSIC_VOLUME, TC_FROMSTRING, SA_CENTER);
DrawString(108, 174, 29, STR_MUSIC_MIN_MAX_RULER, TC_FROMSTRING, SA_CENTER);
DrawString(214, 280, 15, STR_MUSIC_EFFECTS_VOLUME, TC_FROMSTRING, SA_CENTER);
@@ -553,28 +562,6 @@ struct MusicWindow : public Window {
#endif
};
-static const Widget _music_window_widgets[] = {
-{ WWT_CLOSEBOX, RESIZE_NONE, COLOUR_GREY, 0, 10, 0, 13, STR_BLACK_CROSS, STR_TOOLTIP_CLOSE_WINDOW}, // MW_CLOSE
-{ WWT_CAPTION, RESIZE_NONE, COLOUR_GREY, 11, 299, 0, 13, STR_MUSIC_JAZZ_JUKEBOX_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS}, // MW_CAPTION
-{ WWT_PUSHIMGBTN, RESIZE_NONE, COLOUR_GREY, 0, 21, 14, 35, SPR_IMG_SKIP_TO_PREV, STR_MUSIC_TOOLTIP_SKIP_TO_PREVIOUS_TRACK}, // MW_PREV
-{ WWT_PUSHIMGBTN, RESIZE_NONE, COLOUR_GREY, 22, 43, 14, 35, SPR_IMG_SKIP_TO_NEXT, STR_MUSIC_TOOLTIP_SKIP_TO_NEXT_TRACK_IN_SELECTION}, // MW_NEXT
-{ WWT_PUSHIMGBTN, RESIZE_NONE, COLOUR_GREY, 44, 65, 14, 35, SPR_IMG_STOP_MUSIC, STR_MUSIC_TOOLTIP_STOP_PLAYING_MUSIC}, // MW_STOP
-{ WWT_PUSHIMGBTN, RESIZE_NONE, COLOUR_GREY, 66, 87, 14, 35, SPR_IMG_PLAY_MUSIC, STR_MUSIC_TOOLTIP_START_PLAYING_MUSIC}, // MW_PLAY
-{ WWT_PANEL, RESIZE_NONE, COLOUR_GREY, 88, 299, 14, 35, 0x0, STR_MUSIC_TOOLTIP_DRAG_SLIDERS_TO_SET_MUSIC}, // MW_SLIDERS
-{ WWT_PANEL, RESIZE_NONE, COLOUR_GREY, 186, 201, 15, 34, 0x0, STR_NULL}, // MW_GAUGE
-{ WWT_PANEL, RESIZE_NONE, COLOUR_GREY, 0, 299, 36, 57, 0x0, STR_NULL}, // MW_BACKGROUND
-{ WWT_PANEL, RESIZE_NONE, COLOUR_GREY, 59, 240, 45, 53, 0x0, STR_NULL}, // MW_INFO
-{ WWT_PUSHBTN, RESIZE_NONE, COLOUR_GREY, 6, 55, 42, 49, 0x0, STR_MUSIC_TOOLTIP_TOGGLE_PROGRAM_SHUFFLE}, // MW_SHUFFLE
-{ WWT_PUSHBTN, RESIZE_NONE, COLOUR_GREY, 244, 293, 42, 49, 0x0, STR_MUSIC_TOOLTIP_SHOW_MUSIC_TRACK_SELECTION}, // MW_PROGRAMME
-{ WWT_PUSHBTN, RESIZE_NONE, COLOUR_GREY, 0, 49, 58, 65, 0x0, STR_MUSIC_TOOLTIP_SELECT_ALL_TRACKS_PROGRAM}, // MW_ALL
-{ WWT_PUSHBTN, RESIZE_NONE, COLOUR_GREY, 50, 99, 58, 65, 0x0, STR_MUSIC_TOOLTIP_SELECT_OLD_STYLE_MUSIC}, // MW_OLD
-{ WWT_PUSHBTN, RESIZE_NONE, COLOUR_GREY, 100, 149, 58, 65, 0x0, STR_MUSIC_TOOLTIP_SELECT_NEW_STYLE_MUSIC}, // MW_NEW
-{ WWT_PUSHBTN, RESIZE_NONE, COLOUR_GREY, 150, 199, 58, 65, 0x0, STR_MUSIC_TOOLTIP_SELECT_EZY_STREET_STYLE}, // MW_EZY
-{ WWT_PUSHBTN, RESIZE_NONE, COLOUR_GREY, 200, 249, 58, 65, 0x0, STR_MUSIC_TOOLTIP_SELECT_CUSTOM_1_USER_DEFINED}, // MW_CUSTOM1
-{ WWT_PUSHBTN, RESIZE_NONE, COLOUR_GREY, 250, 299, 58, 65, 0x0, STR_MUSIC_TOOLTIP_SELECT_CUSTOM_2_USER_DEFINED}, // MW_CUSTOM2
-{ WIDGETS_END},
-};
-
static const NWidgetPart _nested_music_window_widgets[] = {
NWidget(NWID_HORIZONTAL),
NWidget(WWT_CLOSEBOX, COLOUR_GREY, MW_CLOSE),
@@ -617,7 +604,7 @@ static const WindowDesc _music_window_desc(
0, 22, 300, 66, 300, 66,
WC_MUSIC_WINDOW, WC_NONE,
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
- _music_window_widgets, _nested_music_window_widgets, lengthof(_nested_music_window_widgets)
+ NULL, _nested_music_window_widgets, lengthof(_nested_music_window_widgets)
);
void ShowMusicWindow()