Initialize the playlist window. Definition at line 201 of file gui_playq.c. 00202 { 00203 win_statbar = newwin(1, 0, 0, 0); 00204 clearok(win_statbar, TRUE); 00205 if (gui_draw_colors) 00206 wbkgdset(win_statbar, COLOR_PAIR(GUI_COLOR_BAR)); 00207 else 00208 wbkgdset(win_statbar, A_REVERSE); 00209 00210 str_time = g_string_sized_new(24); 00211 str_song = g_string_sized_new(128); 00212 00213 gui_playq_song_set(NULL, 0, 0); 00214 00215 win_playq = gui_vfslist_new(1); 00216 gui_vfslist_setcallback(win_playq, gui_playq_statbar_refresh); 00217 gui_vfslist_setlist(win_playq, &playq_list); 00218 gui_vfslist_move(win_playq, 0, 1, COLS, GUI_SIZE_PLAYQ_HEIGHT); 00219 }
Here is the call graph for this function:
![]()
Here is the caller graph for this function:
![]() |
1.6.3