]> git.sesse.net Git - vlc/blob - modules/gui/ncurses.c
70d8f0f15cdfdaf5e5ee9133e55970d739f787d3
[vlc] / modules / gui / ncurses.c
1 /*****************************************************************************
2  * ncurses.c : NCurses interface for vlc
3  *****************************************************************************
4  * Copyright © 2001-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sam Hocevar <sam@zoy.org>
8  *          Laurent Aimar <fenrir@via.ecp.fr>
9  *          Yoann Peronneau <yoann@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          Rafaël Carré <funman@videolanorg>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 /*
29  * Note that when we use wide characters (and link with libncursesw),
30  * we assume that an UTF8 locale is used (or compatible, such as ASCII).
31  * Other characters encodings are not supported.
32  */
33
34 /*****************************************************************************
35  * Preamble
36  *****************************************************************************/
37 #ifdef HAVE_CONFIG_H
38 # include "config.h"
39 #endif
40
41 #include <vlc_common.h>
42 #include <vlc_plugin.h>
43
44 #ifdef HAVE_NCURSESW
45 #   define _XOPEN_SOURCE_EXTENDED 1
46 #   include <wchar.h>
47 #endif
48
49 #include <ncurses.h>
50
51 #include <vlc_interface.h>
52 #include <vlc_vout.h>
53 #include <vlc_aout.h>
54 #include <vlc_charset.h>
55 #include <vlc_input.h>
56 #include <vlc_es.h>
57 #include <vlc_playlist.h>
58 #include <vlc_meta.h>
59 #include <vlc_fs.h>
60
61 #include <assert.h>
62
63 #ifdef HAVE_SYS_STAT_H
64 #   include <sys/stat.h>
65 #endif
66
67 #define SEARCH_CHAIN_SIZE 20
68 #define OPEN_CHAIN_SIZE 50
69
70 /*****************************************************************************
71  * Local prototypes.
72  *****************************************************************************/
73 static int  Open           ( vlc_object_t * );
74 static void Close          ( vlc_object_t * );
75
76 static void Run            ( intf_thread_t * );
77 static void PlayPause      ( intf_thread_t * );
78 static void Eject          ( intf_thread_t * );
79
80 static int  HandleKey      ( intf_thread_t *, int );
81 static void Redraw         ( intf_thread_t *, time_t * );
82
83 static playlist_item_t *PlaylistGetRoot( intf_thread_t * );
84 static void PlaylistRebuild( intf_thread_t * );
85 static void PlaylistAddNode( intf_thread_t *, playlist_item_t *, int, const char *);
86 static void PlaylistDestroy( intf_thread_t * );
87 static int  PlaylistChanged( vlc_object_t *, const char *, vlc_value_t,
88                              vlc_value_t, void * );
89 static inline bool PlaylistIsPlaying( playlist_t *, playlist_item_t * );
90 static void FindIndex      ( intf_thread_t *, playlist_t * );
91 static void SearchPlaylist ( intf_thread_t *, char * );
92 static int  SubSearchPlaylist( intf_thread_t *, char *, int, int );
93
94 static void ManageSlider   ( intf_thread_t * );
95 static void ReadDir        ( intf_thread_t * );
96
97 static void start_color_and_pairs ( intf_thread_t * );
98
99 /*****************************************************************************
100  * Module descriptor
101  *****************************************************************************/
102
103 #define BROWSE_TEXT N_("Filebrowser starting point")
104 #define BROWSE_LONGTEXT N_( \
105     "This option allows you to specify the directory the ncurses filebrowser " \
106     "will show you initially.")
107
108 vlc_module_begin ()
109     set_shortname( "Ncurses" )
110     set_description( N_("Ncurses interface") )
111     set_capability( "interface", 10 )
112     set_category( CAT_INTERFACE )
113     set_subcategory( SUBCAT_INTERFACE_MAIN )
114     set_callbacks( Open, Close )
115     add_shortcut( "curses" )
116     add_directory( "browse-dir", NULL, NULL, BROWSE_TEXT, BROWSE_LONGTEXT, false )
117 vlc_module_end ()
118
119 /*****************************************************************************
120  * intf_sys_t: description and status of ncurses interface
121  *****************************************************************************/
122 enum
123 {
124     BOX_NONE,
125     BOX_HELP,
126     BOX_INFO,
127     BOX_LOG,
128     BOX_PLAYLIST,
129     BOX_SEARCH,
130     BOX_OPEN,
131     BOX_BROWSE,
132     BOX_META,
133     BOX_OBJECTS,
134     BOX_STATS
135 };
136 enum
137 {
138     C_DEFAULT = 0,
139     C_TITLE,
140     C_PLAYLIST_1,
141     C_PLAYLIST_2,
142     C_PLAYLIST_3,
143     C_BOX,
144     C_STATUS,
145     C_INFO,
146     C_ERROR,
147     C_WARNING,
148     C_DEBUG,
149     C_CATEGORY,
150     C_FOLDER
151 };
152 enum
153 {
154     VIEW_CATEGORY,
155     VIEW_ONELEVEL
156 };
157 struct dir_entry_t
158 {
159     bool  b_file;
160     char        *psz_path;
161 };
162 struct pl_item_t
163 {
164     playlist_item_t *p_item;
165     char            *psz_display;
166 };
167 struct intf_sys_t
168 {
169     input_thread_t *p_input;
170     playlist_t     *p_playlist;
171
172     bool      b_color;
173     bool      b_color_started;
174
175     float           f_slider;
176     float           f_slider_old;
177
178     WINDOW          *w;
179
180     int             i_box_type;
181     int             i_box_y;
182     int             i_box_lines;
183     int             i_box_lines_total;
184     int             i_box_start;
185
186     int             i_box_plidx;    /* Playlist index */
187     int             b_box_plidx_follow;
188     int             i_box_bidx;     /* browser index */
189
190     playlist_item_t *p_node;        /* current node */
191
192     int             b_box_cleared;
193
194     msg_subscription_t* p_sub;                  /* message bank subscription */
195
196     char            *psz_search_chain;          /* for playlist searching    */
197     char            *psz_old_search;            /* for searching next        */
198     int             i_before_search;
199
200     char            *psz_open_chain;
201 #ifndef HAVE_NCURSESW
202     char             psz_partial_keys[7];
203 #endif
204
205     char            *psz_current_dir;
206     int             i_dir_entries;
207     struct dir_entry_t  **pp_dir_entries;
208     bool      b_show_hidden_files;
209
210     int             i_current_view;             /* playlist view             */
211     struct pl_item_t    **pp_plist;
212     int             i_plist_entries;
213     bool      b_need_update;              /* for playlist view         */
214 };
215
216 static void DrawBox( WINDOW *win, int y, int x, int h, int w, const char *title, bool b_color );
217 static void DrawLine( WINDOW *win, int y, int x, int w );
218 static void DrawEmptyLine( WINDOW *win, int y, int x, int w );
219
220 /*****************************************************************************
221  * Open: initialize and create window
222  *****************************************************************************/
223 static int Open( vlc_object_t *p_this )
224 {
225     intf_thread_t *p_intf = (intf_thread_t *)p_this;
226     intf_sys_t    *p_sys;
227
228     /* Allocate instance and initialize some members */
229     p_sys = p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
230     if( !p_sys )
231         return VLC_ENOMEM;
232     p_sys->p_node = NULL;
233     p_sys->p_input = NULL;
234     p_sys->f_slider = 0.0;
235     p_sys->f_slider_old = 0.0;
236     p_sys->i_box_type = BOX_PLAYLIST;
237     p_sys->i_box_lines = 0;
238     p_sys->i_box_start= 0;
239     p_sys->i_box_lines_total = 0;
240     p_sys->b_box_plidx_follow = true;
241     p_sys->b_box_cleared = false;
242     p_sys->i_box_plidx = 0;
243     p_sys->i_box_bidx = 0;
244 // FIXME    p_sys->p_sub = msg_Subscribe( p_intf );
245     p_sys->b_color = var_CreateGetBool( p_intf, "color" );
246     p_sys->b_color_started = false;
247
248 #ifndef HAVE_NCURSESW
249     memset( p_sys->psz_partial_keys, 0, sizeof( p_sys->psz_partial_keys ) );
250 #endif
251
252     /* Initialize the curses library */
253     p_sys->w = initscr();
254
255     if( p_sys->b_color )
256         start_color_and_pairs( p_intf );
257
258     keypad( p_sys->w, TRUE );
259     /* Don't do NL -> CR/NL */
260     nonl();
261     /* Take input chars one at a time */
262     cbreak();
263     /* Don't echo */
264     noecho();
265     /* Invisible cursor */
266     curs_set( 0 );
267     /* Non blocking wgetch() */
268     wtimeout( p_sys->w, 0 );
269
270     clear();
271
272     /* exported function */
273     p_intf->pf_run = Run;
274
275     /* Stop printing errors to the console */
276     freopen( "/dev/null", "wb", stderr );
277
278     /* Set defaul playlist view */
279     p_sys->i_current_view = VIEW_CATEGORY;
280     p_sys->pp_plist = NULL;
281     p_sys->i_plist_entries = 0;
282     p_sys->b_need_update = false;
283
284     /* Initialize search chain */
285     p_sys->psz_search_chain = malloc( SEARCH_CHAIN_SIZE + 1 );
286     p_sys->psz_old_search = NULL;
287     p_sys->i_before_search = 0;
288
289     /* Initialize open chain */
290     p_sys->psz_open_chain = malloc( OPEN_CHAIN_SIZE + 1 );
291
292     /* Initialize browser options */
293     char* psz_tmp = var_CreateGetString( p_intf, "browse-dir" );
294     if( psz_tmp && *psz_tmp )
295         p_sys->psz_current_dir = psz_tmp;
296     else
297     {
298         p_sys->psz_current_dir = config_GetUserDir( VLC_HOME_DIR );
299         free( psz_tmp );
300     }
301
302     p_sys->i_dir_entries = 0;
303     p_sys->pp_dir_entries = NULL;
304     p_sys->b_show_hidden_files = false;
305     ReadDir( p_intf );
306
307     return VLC_SUCCESS;
308 }
309
310 /*****************************************************************************
311  * Close: destroy interface window
312  *****************************************************************************/
313 static void Close( vlc_object_t *p_this )
314 {
315     intf_thread_t *p_intf = (intf_thread_t *)p_this;
316     intf_sys_t    *p_sys = p_intf->p_sys;
317
318     PlaylistDestroy( p_intf );
319
320     while( p_sys->i_dir_entries )
321     {
322         struct dir_entry_t *p_dir_entry = p_sys->pp_dir_entries[0];
323         free( p_dir_entry->psz_path );
324         REMOVE_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries, 0 );
325         free( p_dir_entry );
326     }
327     p_sys->pp_dir_entries = NULL;
328
329     free( p_sys->psz_current_dir );
330     free( p_sys->psz_search_chain );
331     free( p_sys->psz_old_search );
332     free( p_sys->psz_open_chain );
333
334     if( p_sys->p_input )
335     {
336         vlc_object_release( p_sys->p_input );
337     }
338
339     /* Close the ncurses interface */
340     endwin();
341
342 // FIXME    msg_Unsubscribe( p_intf, p_sys->p_sub );
343
344     /* Destroy structure */
345     free( p_sys );
346 }
347
348 /*****************************************************************************
349  * Run: ncurses thread
350  *****************************************************************************/
351 static void Run( intf_thread_t *p_intf )
352 {
353     intf_sys_t    *p_sys = p_intf->p_sys;
354     playlist_t    *p_playlist = pl_Get( p_intf );
355     p_sys->p_playlist = p_playlist;
356
357     int i_key;
358     time_t t_last_refresh;
359     int canc = vlc_savecancel();
360
361     /*
362      * force drawing the interface for the first time
363      */
364     t_last_refresh = ( time( 0 ) - 1);
365     /*
366      * force building of the playlist array
367      */
368     PlaylistRebuild( p_intf );
369     var_AddCallback( p_playlist, "intf-change", PlaylistChanged, p_intf );
370     var_AddCallback( p_playlist, "playlist-item-append", PlaylistChanged, p_intf );
371
372     while( vlc_object_alive( p_intf ) )
373     {
374         msleep( INTF_IDLE_SLEEP );
375
376         /* Update the input */
377         if( p_sys->p_input == NULL )
378         {
379             p_sys->p_input = playlist_CurrentInput( p_playlist );
380         }
381         else if( p_sys->p_input->b_dead )
382         {
383             vlc_object_release( p_sys->p_input );
384             p_sys->p_input = NULL;
385             p_sys->f_slider = p_sys->f_slider_old = 0.0;
386             p_sys->b_box_cleared = false;
387         }
388
389         PL_LOCK;
390         if( p_sys->b_box_plidx_follow && playlist_CurrentPlayingItem(p_playlist) )
391         {
392             PL_UNLOCK;
393             FindIndex( p_intf, p_playlist );
394         }
395         else
396             PL_UNLOCK;
397
398         while( ( i_key = wgetch( p_sys->w ) ) != -1 )
399         {
400             /*
401              * HandleKey returns 1 if the screen needs to be redrawn
402              */
403             if( HandleKey( p_intf, i_key ) )
404             {
405                 Redraw( p_intf, &t_last_refresh );
406             }
407         }
408         /* Hack */
409         if( p_sys->f_slider > 0.0001 && !p_sys->b_box_cleared )
410         {
411             clear();
412             Redraw( p_intf, &t_last_refresh );
413             p_sys->b_box_cleared = true;
414         }
415
416         /*
417          * redraw the screen every second
418          */
419         if( (time(0) - t_last_refresh) >= 1 )
420         {
421             ManageSlider( p_intf );
422             Redraw( p_intf, &t_last_refresh );
423         }
424     }
425     var_DelCallback( p_playlist, "intf-change", PlaylistChanged, p_intf );
426     var_DelCallback( p_playlist, "playlist-item-append", PlaylistChanged, p_intf );
427     vlc_restorecancel( canc );
428 }
429
430 /* following functions are local */
431 static void start_color_and_pairs( intf_thread_t *p_intf )
432 {
433     assert( p_intf->p_sys->b_color && !p_intf->p_sys->b_color_started );
434
435     if( !has_colors() )
436     {
437         p_intf->p_sys->b_color = false;
438         msg_Warn( p_intf, "Terminal doesn't support colors" );
439         return;
440     }
441
442     start_color();
443
444     /* Available colors: BLACK RED GREEN YELLOW BLUE MAGENTA CYAN WHITE */
445
446     /* untested, in all my terminals, !can_change_color() --funman */
447     if( can_change_color() )
448         init_color( COLOR_YELLOW, 960, 500, 0 ); /* YELLOW -> ORANGE */
449
450     /* title */
451     init_pair( C_TITLE, COLOR_YELLOW, COLOR_BLACK );
452
453     /* jamaican playlist */
454     init_pair( C_PLAYLIST_1, COLOR_GREEN, COLOR_BLACK );
455     init_pair( C_PLAYLIST_2, COLOR_YELLOW, COLOR_BLACK );
456     init_pair( C_PLAYLIST_3, COLOR_RED, COLOR_BLACK );
457
458     /* used in DrawBox() */
459     init_pair( C_BOX, COLOR_CYAN, COLOR_BLACK );
460     /* Source, State, Position, Volume, Chapters, etc...*/
461     init_pair( C_STATUS, COLOR_BLUE, COLOR_BLACK );
462
463     /* VLC messages, keep the order from highest priority to lowest */
464
465     /* infos */
466     init_pair( C_INFO, COLOR_BLACK, COLOR_WHITE );
467     /* errors */
468     init_pair( C_ERROR, COLOR_RED, COLOR_BLACK );
469     /* warnings */
470     init_pair( C_WARNING, COLOR_YELLOW, COLOR_BLACK );
471 /* debug */
472     init_pair( C_DEBUG, COLOR_WHITE, COLOR_BLACK );
473
474     /* Category title (help, info, metadata) */
475     init_pair( C_CATEGORY, COLOR_MAGENTA, COLOR_BLACK );
476
477     /* Folder (BOX_BROWSE) */
478     init_pair( C_FOLDER, COLOR_RED, COLOR_BLACK );
479
480     p_intf->p_sys->b_color_started = true;
481 }
482
483 #ifndef HAVE_NCURSESW
484 static char *KeyToUTF8( int i_key, char *psz_part )
485 {
486     char *psz_utf8;
487     int len = strlen( psz_part );
488     if( len == 6 )
489     {
490         /* overflow error - should not happen */
491         memset( psz_part, 0, 6 );
492         return NULL;
493     }
494
495     psz_part[len] = (char)i_key;
496
497     psz_utf8 = FromLocaleDup( psz_part );
498
499     /* Ugly check for incomplete bytes sequences
500      * (in case of non-UTF8 multibyte local encoding) */
501     char *psz;
502     for( psz = psz_utf8; *psz; psz++ )
503         if( ( *psz == '?' ) && ( *psz_utf8 != '?' ) )
504         {
505             /* incomplete bytes sequence detected
506              * (VLC core inserted dummy question marks) */
507             free( psz_utf8 );
508             return NULL;
509         }
510
511     /* Check for incomplete UTF8 bytes sequence */
512     if( EnsureUTF8( psz_utf8 ) == NULL )
513     {
514         free( psz_utf8 );
515         return NULL;
516     }
517
518     memset( psz_part, 0, 6 );
519     return psz_utf8;
520 }
521 #endif
522
523 static inline int RemoveLastUTF8Entity( char *psz, int len )
524 {
525     while( len && ( (psz[--len] & 0xc0) == 0x80 ) );
526                        /* UTF8 continuation byte */
527
528     psz[len] = '\0';
529     return len;
530 }
531
532 static int HandleKey( intf_thread_t *p_intf, int i_key )
533 {
534     intf_sys_t *p_sys = p_intf->p_sys;
535     int i_ret = 1;
536
537     playlist_t *p_playlist = pl_Get( p_intf );
538
539     if( p_sys->i_box_type == BOX_PLAYLIST )
540     {
541         int b_ret = true;
542         bool b_box_plidx_follow = false;
543
544         switch( i_key )
545         {
546             /* Playlist Settings */
547             case 'r':
548                 var_ToggleBool( p_playlist, "random" );
549                 goto end;
550             case 'l':
551                 var_ToggleBool( p_playlist, "loop" );
552                 goto end;
553             case 'R':
554                 var_ToggleBool( p_playlist, "repeat" );
555                 goto end;
556
557             /* Playlist sort */
558             case 'o':
559                 playlist_RecursiveNodeSort( p_playlist,
560                                             PlaylistGetRoot( p_intf ),
561                                             SORT_TITLE_NODES_FIRST, ORDER_NORMAL );
562                 p_sys->b_need_update = true;
563                 goto end;
564             case 'O':
565                 playlist_RecursiveNodeSort( p_playlist,
566                                             PlaylistGetRoot( p_intf ),
567                                             SORT_TITLE_NODES_FIRST, ORDER_REVERSE );
568                 p_sys->b_need_update = true;
569                 goto end;
570
571             /* Playlist view */
572             case 'v':
573                 switch( p_sys->i_current_view )
574                 {
575                     case VIEW_CATEGORY:
576                         p_sys->i_current_view = VIEW_ONELEVEL;
577                         break;
578                     default:
579                         p_sys->i_current_view = VIEW_CATEGORY;
580                 }
581                 //p_sys->b_need_update = true;
582                 PlaylistRebuild( p_intf );
583                 goto end;
584
585             /* Playlist navigation */
586             case 'g':
587                 FindIndex( p_intf, p_playlist );
588                 break;
589             case KEY_HOME:
590                 p_sys->i_box_plidx = 0;
591                 break;
592 #ifdef __FreeBSD__
593 /* workaround for FreeBSD + xterm:
594  * see http://www.nabble.com/curses-vs.-xterm-key-mismatch-t3574377.html */
595             case KEY_SELECT:
596 #endif
597             case KEY_END:
598                 p_sys->i_box_plidx = p_playlist->items.i_size - 1;
599                 break;
600             case KEY_UP:
601                 p_sys->i_box_plidx--;
602                 break;
603             case KEY_DOWN:
604                 p_sys->i_box_plidx++;
605                 break;
606             case KEY_PPAGE:
607                 p_sys->i_box_plidx -= p_sys->i_box_lines;
608                 break;
609             case KEY_NPAGE:
610                 p_sys->i_box_plidx += p_sys->i_box_lines;
611                 break;
612             case 'D':
613             case KEY_BACKSPACE:
614             case 0x7f:
615             case KEY_DC:
616             {
617                 playlist_item_t *p_item;
618
619                 PL_LOCK;
620                 p_item = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
621                 if( p_item->i_children == -1 )
622                 {
623                     playlist_DeleteFromInput( p_playlist,
624                                               p_item->p_input, pl_Locked );
625                 }
626                 else
627                 {
628                     playlist_NodeDelete( p_playlist, p_item,
629                                          true , false );
630                 }
631                 PL_UNLOCK;
632                 PlaylistRebuild( p_intf );
633                 break;
634             }
635
636             case KEY_ENTER:
637             case '\r':
638             case '\n':
639                 if( !p_sys->pp_plist[p_sys->i_box_plidx] )
640                 {
641                     b_ret = false;
642                     break;
643                 }
644                 if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item->i_children
645                         == -1 )
646                 {
647                     playlist_item_t *p_item, *p_parent;
648                     p_item = p_parent =
649                             p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
650
651                     if( !p_parent )
652                         p_parent = p_playlist->p_root_onelevel;
653                     while( p_parent->p_parent )
654                         p_parent = p_parent->p_parent;
655                     playlist_Control( p_playlist, PLAYLIST_VIEWPLAY,
656                                       pl_Unlocked, p_parent, p_item );
657                 }
658                 else if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item->i_children
659                         == 0 )
660                 {   /* We only want to set the current node */
661                     playlist_Stop( p_playlist );
662                     p_sys->p_node = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
663                 }
664                 else
665                 {
666                     p_sys->p_node = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
667                     playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, pl_Unlocked,
668                         p_sys->pp_plist[p_sys->i_box_plidx]->p_item, NULL );
669                 }
670                 b_box_plidx_follow = true;
671                 break;
672             default:
673                 b_ret = false;
674                 break;
675         }
676
677         if( b_ret )
678         {
679             int i_max = p_sys->i_plist_entries;
680             if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
681             if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
682
683             PL_LOCK;
684             if( PlaylistIsPlaying( p_playlist,
685                                    p_sys->pp_plist[p_sys->i_box_plidx]->p_item ) )
686                 b_box_plidx_follow = true;
687             PL_UNLOCK;
688             p_sys->b_box_plidx_follow = b_box_plidx_follow;
689             goto end;
690         }
691     }
692     if( p_sys->i_box_type == BOX_BROWSE )
693     {
694         bool b_ret = true;
695         /* Browser navigation */
696         switch( i_key )
697         {
698             case KEY_HOME:
699                 p_sys->i_box_bidx = 0;
700                 break;
701 #ifdef __FreeBSD__
702             case KEY_SELECT:
703 #endif
704             case KEY_END:
705                 p_sys->i_box_bidx = p_sys->i_dir_entries - 1;
706                 break;
707             case KEY_UP:
708                 p_sys->i_box_bidx--;
709                 break;
710             case KEY_DOWN:
711                 p_sys->i_box_bidx++;
712                 break;
713             case KEY_PPAGE:
714                 p_sys->i_box_bidx -= p_sys->i_box_lines;
715                 break;
716             case KEY_NPAGE:
717                 p_sys->i_box_bidx += p_sys->i_box_lines;
718                 break;
719             case '.': /* Toggle show hidden files */
720                 p_sys->b_show_hidden_files = ( p_sys->b_show_hidden_files ==
721                     true ? false : true );
722                 ReadDir( p_intf );
723                 break;
724
725             case KEY_ENTER:
726             case '\r':
727             case '\n':
728             case ' ':
729                 if( p_sys->pp_dir_entries[p_sys->i_box_bidx]->b_file || i_key == ' ' )
730                 {
731                     char* psz_uri;
732                     if( asprintf( &psz_uri, "%s://%s/%s",
733                         p_sys->pp_dir_entries[p_sys->i_box_bidx]->b_file ?
734                             "file" : "directory",
735                         p_sys->psz_current_dir,
736                         p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path
737                         ) == -1 )
738                     {
739                         psz_uri = NULL;
740                     }
741
742                     playlist_item_t *p_parent = p_sys->p_node;
743                     if( !p_parent )
744                     {
745                         PL_LOCK;
746                         p_parent = playlist_CurrentPlayingItem(p_playlist) ? playlist_CurrentPlayingItem(p_playlist)->p_parent : NULL;
747                         PL_UNLOCK;
748                         if( !p_parent )
749                             p_parent = p_playlist->p_local_onelevel;
750                     }
751
752                     while( p_parent->p_parent && p_parent->p_parent->p_parent )
753                         p_parent = p_parent->p_parent;
754
755                     playlist_Add( p_playlist, psz_uri, NULL, PLAYLIST_APPEND,
756                                   PLAYLIST_END,
757                                   p_parent->p_input ==
758                                     p_playlist->p_local_onelevel->p_input
759                                   , false );
760
761                     p_sys->i_box_type = BOX_PLAYLIST;
762                     free( psz_uri );
763                 }
764                 else
765                 {
766                     if( asprintf( &(p_sys->psz_current_dir), "%s/%s", p_sys->psz_current_dir,
767                                   p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path ) != -1 )
768                         ReadDir( p_intf );
769                 }
770                 break;
771             default:
772                 b_ret = false;
773                 break;
774         }
775         if( b_ret )
776         {
777             if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_bidx = p_sys->i_dir_entries - 1;
778             if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
779             goto end;
780         }
781     }
782     else if( p_sys->i_box_type == BOX_HELP || p_sys->i_box_type == BOX_INFO ||
783              p_sys->i_box_type == BOX_META || p_sys->i_box_type == BOX_STATS ||
784              p_sys->i_box_type == BOX_OBJECTS )
785     {
786         switch( i_key )
787         {
788             case KEY_HOME:
789                 p_sys->i_box_start = 0;
790                 goto end;
791 #ifdef __FreeBSD__
792             case KEY_SELECT:
793 #endif
794             case KEY_END:
795                 p_sys->i_box_start = p_sys->i_box_lines_total - 1;
796                 goto end;
797             case KEY_UP:
798                 if( p_sys->i_box_start > 0 ) p_sys->i_box_start--;
799                 goto end;
800             case KEY_DOWN:
801                 if( p_sys->i_box_start < p_sys->i_box_lines_total - 1 )
802                 {
803                     p_sys->i_box_start++;
804                 }
805                 goto end;
806             case KEY_PPAGE:
807                 p_sys->i_box_start -= p_sys->i_box_lines;
808                 if( p_sys->i_box_start < 0 ) p_sys->i_box_start = 0;
809                 goto end;
810             case KEY_NPAGE:
811                 p_sys->i_box_start += p_sys->i_box_lines;
812                 if( p_sys->i_box_start >= p_sys->i_box_lines_total )
813                 {
814                     p_sys->i_box_start = p_sys->i_box_lines_total - 1;
815                 }
816                 goto end;
817             default:
818                 break;
819         }
820     }
821     else if( p_sys->i_box_type == BOX_NONE )
822     {
823         switch( i_key )
824         {
825             case KEY_HOME:
826                 p_sys->f_slider = 0;
827                 ManageSlider( p_intf );
828                 goto end;
829 #ifdef __FreeBSD__
830             case KEY_SELECT:
831 #endif
832             case KEY_END:
833                 p_sys->f_slider = 99.9;
834                 ManageSlider( p_intf );
835                 goto end;
836             case KEY_UP:
837                 p_sys->f_slider += 5.0;
838                 if( p_sys->f_slider >= 99.0 ) p_sys->f_slider = 99.0;
839                 ManageSlider( p_intf );
840                 goto end;
841             case KEY_DOWN:
842                 p_sys->f_slider -= 5.0;
843                 if( p_sys->f_slider < 0.0 ) p_sys->f_slider = 0.0;
844                 ManageSlider( p_intf );
845                 goto end;
846
847             default:
848                 break;
849         }
850     }
851     else if( p_sys->i_box_type == BOX_SEARCH && p_sys->psz_search_chain )
852     {
853         int i_chain_len = strlen( p_sys->psz_search_chain );
854         switch( i_key )
855         {
856             case KEY_CLEAR:
857             case 0x0c:      /* ^l */
858                 clear();
859                 goto end;
860             case KEY_ENTER:
861             case '\r':
862             case '\n':
863                 if( i_chain_len > 0 )
864                 {
865                     p_sys->psz_old_search = strdup( p_sys->psz_search_chain );
866                 }
867                 else if( p_sys->psz_old_search )
868                 {
869                     SearchPlaylist( p_intf, p_sys->psz_old_search );
870                 }
871                 p_sys->i_box_type = BOX_PLAYLIST;
872                 goto end;
873             case 0x1b: /* ESC */
874                 /* Alt+key combinations return 2 keys in the terminal keyboard:
875                  * ESC, and the 2nd key.
876                  * If some other key is available immediately (where immediately
877                  * means after wgetch() 1 second delay ), that means that the
878                  * ESC key was not pressed.
879                  *
880                  * man 3X curs_getch says:
881                  *
882                  * Use of the escape key by a programmer for a single
883                  * character function is discouraged, as it will cause a delay
884                  * of up to one second while the keypad code looks for a
885                  * following function-key sequence.
886                  *
887                  */
888                 if( wgetch( p_sys->w ) != ERR )
889                 {
890                     i_ret = 0;
891                     goto end;
892                 }
893                 p_sys->i_box_plidx = p_sys->i_before_search;
894                 p_sys->i_box_type = BOX_PLAYLIST;
895                 goto end;
896             case KEY_BACKSPACE:
897             case 0x7f:
898                 RemoveLastUTF8Entity( p_sys->psz_search_chain, i_chain_len );
899                 break;
900             default:
901             {
902 #ifdef HAVE_NCURSESW
903                 if( i_chain_len + 1 < SEARCH_CHAIN_SIZE )
904                 {
905                     p_sys->psz_search_chain[i_chain_len] = (char) i_key;
906                     p_sys->psz_search_chain[i_chain_len + 1] = '\0';
907                 }
908 #else
909                 char *psz_utf8 = KeyToUTF8( i_key, p_sys->psz_partial_keys );
910
911                 if( psz_utf8 != NULL )
912                 {
913                     if( i_chain_len + strlen( psz_utf8 ) < SEARCH_CHAIN_SIZE )
914                     {
915                         strcpy( p_sys->psz_search_chain + i_chain_len,
916                                 psz_utf8 );
917                     }
918                     free( psz_utf8 );
919                 }
920 #endif
921                 break;
922             }
923         }
924         free( p_sys->psz_old_search );
925         p_sys->psz_old_search = NULL;
926         SearchPlaylist( p_intf, p_sys->psz_search_chain );
927         goto end;
928     }
929     else if( p_sys->i_box_type == BOX_OPEN && p_sys->psz_open_chain )
930     {
931         int i_chain_len = strlen( p_sys->psz_open_chain );
932
933         switch( i_key )
934         {
935             case KEY_CLEAR:
936             case 0x0c:          /* ^l */
937                 clear();
938                 break;
939             case KEY_ENTER:
940             case '\r':
941             case '\n':
942                 if( i_chain_len > 0 )
943                 {
944                     playlist_item_t *p_parent = p_sys->p_node;
945
946                     PL_LOCK;
947                     if( !p_parent )
948                     p_parent = playlist_CurrentPlayingItem(p_playlist) ? playlist_CurrentPlayingItem(p_playlist)->p_parent : NULL;
949                     if( !p_parent )
950                         p_parent = p_playlist->p_local_onelevel;
951
952                     while( p_parent->p_parent && p_parent->p_parent->p_parent )
953                         p_parent = p_parent->p_parent;
954                     PL_UNLOCK;
955
956                     playlist_Add( p_playlist, p_sys->psz_open_chain, NULL,
957                                   PLAYLIST_APPEND|PLAYLIST_GO, PLAYLIST_END,
958                                   p_parent->p_input ==
959                                     p_playlist->p_local_onelevel->p_input
960                                   , false );
961
962                     p_sys->b_box_plidx_follow = true;
963                 }
964                 p_sys->i_box_type = BOX_PLAYLIST;
965                 break;
966             case 0x1b:  /* ESC */
967                 if( wgetch( p_sys->w ) != ERR )
968                 {
969                     i_ret = 0;
970                     break;
971                 }
972                 p_sys->i_box_type = BOX_PLAYLIST;
973                 break;
974             case KEY_BACKSPACE:
975             case 0x7f:
976                 RemoveLastUTF8Entity( p_sys->psz_open_chain, i_chain_len );
977                 break;
978             default:
979             {
980 #ifdef HAVE_NCURSESW
981                 if( i_chain_len + 1 < OPEN_CHAIN_SIZE )
982                 {
983                     p_sys->psz_open_chain[i_chain_len] = (char) i_key;
984                     p_sys->psz_open_chain[i_chain_len + 1] = '\0';
985                 }
986 #else
987                 char *psz_utf8 = KeyToUTF8( i_key, p_sys->psz_partial_keys );
988
989                 if( psz_utf8 != NULL )
990                 {
991                     if( i_chain_len + strlen( psz_utf8 ) < OPEN_CHAIN_SIZE )
992                     {
993                         strcpy( p_sys->psz_open_chain + i_chain_len,
994                                 psz_utf8 );
995                     }
996                     free( psz_utf8 );
997                 }
998 #endif
999             }
1000         }
1001         goto end;
1002     }
1003
1004
1005     /* Common keys */
1006     switch( i_key )
1007     {
1008         case 0x1b:  /* ESC */
1009             if( wgetch( p_sys->w ) != ERR )
1010             {
1011                 i_ret = 0;
1012                 break;
1013             }
1014         case 'q':
1015         case 'Q':
1016         case KEY_EXIT:
1017             libvlc_Quit( p_intf->p_libvlc );
1018             i_ret = 0;
1019             break;
1020
1021         /* Box switching */
1022         case 'i':
1023             if( p_sys->i_box_type == BOX_INFO )
1024                 p_sys->i_box_type = BOX_NONE;
1025             else
1026                 p_sys->i_box_type = BOX_INFO;
1027             p_sys->i_box_lines_total = 0;
1028             break;
1029         case 'm':
1030             if( p_sys->i_box_type == BOX_META )
1031                 p_sys->i_box_type = BOX_NONE;
1032             else
1033                 p_sys->i_box_type = BOX_META;
1034             p_sys->i_box_lines_total = 0;
1035             break;
1036         case 'L':
1037             if( p_sys->i_box_type == BOX_LOG )
1038                 p_sys->i_box_type = BOX_NONE;
1039             else
1040                 p_sys->i_box_type = BOX_LOG;
1041             break;
1042         case 'P':
1043             if( p_sys->i_box_type == BOX_PLAYLIST )
1044                 p_sys->i_box_type = BOX_NONE;
1045             else
1046                 p_sys->i_box_type = BOX_PLAYLIST;
1047             break;
1048         case 'B':
1049             if( p_sys->i_box_type == BOX_BROWSE )
1050                 p_sys->i_box_type = BOX_NONE;
1051             else
1052                 p_sys->i_box_type = BOX_BROWSE;
1053             break;
1054         case 'x':
1055             if( p_sys->i_box_type == BOX_OBJECTS )
1056                 p_sys->i_box_type = BOX_NONE;
1057             else
1058                 p_sys->i_box_type = BOX_OBJECTS;
1059             break;
1060         case 'S':
1061             if( p_sys->i_box_type == BOX_STATS )
1062                 p_sys->i_box_type = BOX_NONE;
1063             else
1064                 p_sys->i_box_type = BOX_STATS;
1065             break;
1066         case 'c':
1067             p_sys->b_color = !p_sys->b_color;
1068             if( p_sys->b_color && !p_sys->b_color_started )
1069                 start_color_and_pairs( p_intf );
1070             break;
1071         case 'h':
1072         case 'H':
1073             if( p_sys->i_box_type == BOX_HELP )
1074                 p_sys->i_box_type = BOX_NONE;
1075             else
1076                 p_sys->i_box_type = BOX_HELP;
1077             p_sys->i_box_lines_total = 0;
1078             break;
1079         case '/':
1080             if( p_sys->i_box_type != BOX_SEARCH )
1081             {
1082                 if( p_sys->psz_search_chain )
1083                 {
1084                     p_sys->psz_search_chain[0] = '\0';
1085                     p_sys->b_box_plidx_follow = false;
1086                     p_sys->i_before_search = p_sys->i_box_plidx;
1087                     p_sys->i_box_type = BOX_SEARCH;
1088                 }
1089             }
1090             break;
1091         case 'A': /* Open */
1092             if( p_sys->i_box_type != BOX_OPEN )
1093             {
1094                 if( p_sys->psz_open_chain )
1095                 {
1096                     p_sys->psz_open_chain[0] = '\0';
1097                     p_sys->i_box_type = BOX_OPEN;
1098                 }
1099             }
1100             break;
1101
1102         /* Navigation */
1103         case KEY_RIGHT:
1104             p_sys->f_slider += 1.0;
1105             if( p_sys->f_slider > 99.9 ) p_sys->f_slider = 99.9;
1106             ManageSlider( p_intf );
1107             break;
1108
1109         case KEY_LEFT:
1110             p_sys->f_slider -= 1.0;
1111             if( p_sys->f_slider < 0.0 ) p_sys->f_slider = 0.0;
1112             ManageSlider( p_intf );
1113             break;
1114
1115         /* Common control */
1116         case 'f':
1117         {
1118             bool fs = var_ToggleBool( p_playlist, "fullscreen" );
1119             if( p_intf->p_sys->p_input )
1120             {
1121                 vout_thread_t *p_vout = input_GetVout( p_intf->p_sys->p_input );
1122                 if( p_vout )
1123                 {
1124                     var_SetBool( p_vout, "fullscreen", fs );
1125                     vlc_object_release( p_vout );
1126                 }
1127             }
1128             i_ret = 0;
1129             break;
1130         }
1131
1132         case ' ':
1133             PlayPause( p_intf );
1134             break;
1135
1136         case 's':
1137             playlist_Stop( p_playlist );
1138             break;
1139
1140         case 'e':
1141             Eject( p_intf );
1142             break;
1143
1144         case '[':
1145             if( p_sys->p_input )
1146                 var_TriggerCallback( p_sys->p_input, "prev-title" );
1147             break;
1148
1149         case ']':
1150             if( p_sys->p_input )
1151                 var_TriggerCallback( p_sys->p_input, "next-title" );
1152             break;
1153
1154         case '<':
1155             if( p_sys->p_input )
1156                 var_TriggerCallback( p_sys->p_input, "prev-chapter" );
1157             break;
1158
1159         case '>':
1160             if( p_sys->p_input )
1161                 var_TriggerCallback( p_sys->p_input, "next-chapter" );
1162             break;
1163
1164         case 'p':
1165             playlist_Prev( p_playlist );
1166             clear();
1167             break;
1168
1169         case 'n':
1170             playlist_Next( p_playlist );
1171             clear();
1172             break;
1173
1174         case 'a':
1175             aout_VolumeUp( p_playlist, 1, NULL );
1176             clear();
1177             break;
1178
1179         case 'z':
1180             aout_VolumeDown( p_playlist, 1, NULL );
1181             clear();
1182             break;
1183
1184         /*
1185          * ^l should clear and redraw the screen
1186          */
1187         case KEY_CLEAR:
1188         case 0x0c:          /* ^l */
1189             clear();
1190             break;
1191
1192         default:
1193             i_ret = 0;
1194     }
1195
1196 end:
1197     return i_ret;
1198 }
1199
1200 static void ManageSlider( intf_thread_t *p_intf )
1201 {
1202     intf_sys_t     *p_sys = p_intf->p_sys;
1203     input_thread_t *p_input = p_sys->p_input;
1204     vlc_value_t     val;
1205
1206     if( p_input == NULL )
1207     {
1208         return;
1209     }
1210     var_Get( p_input, "state", &val );
1211     if( val.i_int != PLAYING_S )
1212     {
1213         return;
1214     }
1215
1216     var_Get( p_input, "position", &val );
1217     if( p_sys->f_slider == p_sys->f_slider_old )
1218     {
1219         p_sys->f_slider =
1220         p_sys->f_slider_old = 100 * val.f_float;
1221     }
1222     else
1223     {
1224         p_sys->f_slider_old = p_sys->f_slider;
1225
1226         val.f_float = p_sys->f_slider / 100.0;
1227         var_Set( p_input, "position", val );
1228     }
1229 }
1230
1231 static void SearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring )
1232 {
1233     int i_max;
1234     int i_first = 0 ;
1235     int i_item = -1;
1236     intf_sys_t *p_sys = p_intf->p_sys;
1237
1238     if( p_sys->i_before_search >= 0 )
1239     {
1240         i_first = p_sys->i_before_search;
1241     }
1242
1243     if( ( ! psz_searchstring ) ||  strlen( psz_searchstring ) <= 0 )
1244     {
1245         p_sys->i_box_plidx = p_sys->i_before_search;
1246         return;
1247     }
1248
1249     i_max = p_sys->i_plist_entries;
1250
1251     i_item = SubSearchPlaylist( p_intf, psz_searchstring, i_first + 1, i_max );
1252     if( i_item < 0 )
1253     {
1254         i_item = SubSearchPlaylist( p_intf, psz_searchstring, 0, i_first );
1255     }
1256
1257     if( i_item < 0 || i_item >= i_max ) return;
1258
1259     p_sys->i_box_plidx = i_item;
1260 }
1261
1262 static int SubSearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring,
1263                               int i_start, int i_stop )
1264 {
1265     intf_sys_t *p_sys = p_intf->p_sys;
1266     int i, i_item = -1;
1267
1268     for( i = i_start + 1; i < i_stop; i++ )
1269     {
1270         if( strcasestr( p_sys->pp_plist[i]->psz_display,
1271                         psz_searchstring ) != NULL )
1272         {
1273             i_item = i;
1274             break;
1275         }
1276     }
1277
1278     return i_item;
1279 }
1280
1281
1282 static void mvnprintw( int y, int x, int w, const char *p_fmt, ... )
1283 {
1284     va_list  vl_args;
1285     char    *p_buf = NULL;
1286     int      i_len;
1287
1288     if( w <= 0 )
1289         return;
1290
1291     va_start( vl_args, p_fmt );
1292     if( vasprintf( &p_buf, p_fmt, vl_args ) == -1 )
1293         return;
1294     va_end( vl_args );
1295
1296     i_len = strlen( p_buf );
1297
1298 #ifdef HAVE_NCURSESW
1299     wchar_t psz_wide[i_len + 1];
1300
1301     EnsureUTF8( p_buf );
1302     size_t i_char_len = mbstowcs( psz_wide, p_buf, i_len );
1303
1304     size_t i_width; /* number of columns */
1305
1306     if( i_char_len == (size_t)-1 )
1307     /* an invalid character was encountered */
1308     {
1309         free( p_buf );
1310         return;
1311     }
1312     else
1313     {
1314         i_width = wcswidth( psz_wide, i_char_len );
1315         if( i_width == (size_t)-1 )
1316         {
1317             /* a non printable character was encountered */
1318             unsigned int i;
1319             int i_cwidth;
1320             i_width = 0;
1321             for( i = 0 ; i < i_char_len ; i++ )
1322             {
1323                 i_cwidth = wcwidth( psz_wide[i] );
1324                 if( i_cwidth != -1 )
1325                     i_width += i_cwidth;
1326             }
1327         }
1328     }
1329     if( i_width > (size_t)w )
1330     {
1331         int i_total_width = 0;
1332         int i = 0;
1333         while( i_total_width < w )
1334         {
1335             i_total_width += wcwidth( psz_wide[i] );
1336             if( w > 7 && i_total_width >= w/2 )
1337             {
1338                 psz_wide[i  ] = '.';
1339                 psz_wide[i+1] = '.';
1340                 i_total_width -= wcwidth( psz_wide[i] ) - 2;
1341                 if( i > 0 )
1342                 {
1343                     /* we require this check only if at least one character
1344                      * 4 or more columns wide exists (which i doubt) */
1345                     psz_wide[i-1] = '.';
1346                     i_total_width -= wcwidth( psz_wide[i-1] ) - 1;
1347                 }
1348
1349                 /* find the widest string */
1350                 int j, i_2nd_width = 0;
1351                 for( j = i_char_len - 1; i_2nd_width < w - i_total_width; j-- )
1352                     i_2nd_width += wcwidth( psz_wide[j] );
1353
1354                 /* we already have i_total_width columns filled, and we can't
1355                  * have more than w columns */
1356                 if( i_2nd_width > w - i_total_width )
1357                     j++;
1358
1359                 wmemmove( &psz_wide[i+2], &psz_wide[j+1], i_char_len - j - 1 );
1360                 psz_wide[i + 2 + i_char_len - j - 1] = '\0';
1361                 break;
1362             }
1363             i++;
1364         }
1365         if( w <= 7 ) /* we don't add the '...' else we lose too much chars */
1366             psz_wide[i] = '\0';
1367
1368         size_t i_wlen = wcslen( psz_wide ) * 6 + 1; /* worst case */
1369         char psz_ellipsized[i_wlen];
1370         wcstombs( psz_ellipsized, psz_wide, i_wlen );
1371         mvprintw( y, x, "%s", psz_ellipsized );
1372     }
1373     else
1374     {
1375         mvprintw( y, x, "%s", p_buf );
1376         mvhline( y, x + i_width, ' ', w - i_width );
1377     }
1378
1379 #else
1380     if( i_len > w )
1381     {
1382         int i_cut = i_len - w;
1383         int x1 = i_len/2 - i_cut/2;
1384         int x2 = x1 + i_cut;
1385
1386         if( i_len > x2 )
1387         {
1388             memmove( &p_buf[x1], &p_buf[x2], i_len - x2 );
1389         }
1390         p_buf[w] = '\0';
1391         if( w > 7 )
1392         {
1393             p_buf[w/2-1] = '.';
1394             p_buf[w/2  ] = '.';
1395             p_buf[w/2+1] = '.';
1396         }
1397         char *psz_local = ToLocale( p_buf );
1398         mvprintw( y, x, "%s", psz_local );
1399         LocaleFree( p_buf );
1400     }
1401     else
1402     {
1403         char *psz_local = ToLocale( p_buf );
1404         mvprintw( y, x, "%s", psz_local );
1405         LocaleFree( p_buf );
1406         mvhline( y, x + i_len, ' ', w - i_len );
1407     }
1408 #endif
1409     free( p_buf );
1410 }
1411 static void MainBoxWrite( intf_thread_t *p_intf, int l, int x, const char *p_fmt, ... )
1412 {
1413     intf_sys_t     *p_sys = p_intf->p_sys;
1414
1415     va_list  vl_args;
1416     char    *p_buf = NULL;
1417
1418     if( l < p_sys->i_box_start || l - p_sys->i_box_start >= p_sys->i_box_lines )
1419     {
1420         return;
1421     }
1422
1423     va_start( vl_args, p_fmt );
1424     if( vasprintf( &p_buf, p_fmt, vl_args ) == -1 )
1425         return;
1426     va_end( vl_args );
1427
1428     mvnprintw( p_sys->i_box_y + l - p_sys->i_box_start, x, COLS - x - 1, "%s", p_buf );
1429     free( p_buf );
1430 }
1431
1432 static void DumpObject( intf_thread_t *p_intf, int *l, vlc_object_t *p_obj, int i_level )
1433 {
1434     char *psz_name = vlc_object_get_name( p_obj );
1435     if( psz_name )
1436     {
1437         MainBoxWrite( p_intf, (*l)++, 1 + 2 * i_level, "%s \"%s\" (%p)",
1438                 p_obj->psz_object_type, psz_name, p_obj );
1439         free( psz_name );
1440     }
1441     else
1442         MainBoxWrite( p_intf, (*l)++, 1 + 2 * i_level, "%s (%o)",
1443                 p_obj->psz_object_type, p_obj );
1444
1445     vlc_list_t *list = vlc_list_children( p_obj );
1446     for( int i = 0; i < list->i_count ; i++ )
1447     {
1448         MainBoxWrite( p_intf, *l, 1 + 2 * i_level,
1449             i == list->i_count - 1 ? "`-" : "|-" );
1450         DumpObject( p_intf, l, list->p_values[i].p_object, i_level + 1 );
1451     }
1452     vlc_list_release( list );
1453 }
1454
1455 static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
1456 {
1457     intf_sys_t     *p_sys = p_intf->p_sys;
1458     input_thread_t *p_input = p_sys->p_input;
1459     playlist_t     *p_playlist = pl_Get( p_intf );
1460     int y = 0;
1461     int h;
1462     int y_end;
1463
1464     /* Title */
1465     attrset( A_REVERSE );
1466     int i_len = strlen( "VLC media player "PACKAGE_VERSION );
1467     int mid = ( COLS - i_len ) / 2;
1468     if( mid < 0 )
1469         mid = 0;
1470     int i_size = ( COLS > i_len + 1 ) ? COLS : i_len + 1;
1471     char psz_title[i_size];
1472     memset( psz_title, ' ', mid );
1473     if( p_sys->b_color )
1474         wcolor_set( p_sys->w, C_TITLE, NULL );
1475     strlcpy( &psz_title[mid], "VLC media player "PACKAGE_VERSION, i_size );
1476     mvnprintw( y, 0, COLS, "%s", psz_title );
1477     attroff( A_REVERSE );
1478     y += 2;
1479
1480     if( p_sys->b_color )
1481         wcolor_set( p_sys->w, C_STATUS, NULL );
1482
1483     /* Infos */
1484     char *psz_state;
1485     if( asprintf( &psz_state, "%s%s%s",
1486             var_GetBool( p_playlist, "repeat" ) ? _( "[Repeat] " ) : "",
1487             var_GetBool( p_playlist, "random" ) ? _( "[Random] " ) : "",
1488             var_GetBool( p_playlist, "loop" ) ? _( "[Loop]" ) : "" ) == -1 )
1489         psz_state = NULL;
1490
1491     if( p_input && !p_input->b_dead )
1492     {
1493         char buf1[MSTRTIME_MAX_SIZE];
1494         char buf2[MSTRTIME_MAX_SIZE];
1495         vlc_value_t val;
1496
1497         /* Source */
1498         char *psz_uri = input_item_GetURI( input_GetItem( p_input ) );
1499         mvnprintw( y++, 0, COLS, _(" Source   : %s"), psz_uri );
1500         free( psz_uri );
1501
1502         /* State */
1503         var_Get( p_input, "state", &val );
1504         if( val.i_int == PLAYING_S )
1505         {
1506             mvnprintw( y++, 0, COLS, _(" State    : Playing %s"), psz_state );
1507         }
1508         else if( val.i_int == OPENING_S )
1509         {
1510             mvnprintw( y++, 0, COLS, _(" State    : Opening/Connecting %s"), psz_state );
1511         }
1512         else if( val.i_int == PAUSE_S )
1513         {
1514             mvnprintw( y++, 0, COLS, _(" State    : Paused %s"), psz_state );
1515         }
1516
1517         if( val.i_int != INIT_S && val.i_int != END_S )
1518         {
1519             audio_volume_t i_volume;
1520
1521             /* Position */
1522             var_Get( p_input, "time", &val );
1523             secstotimestr( buf1, val.i_time / CLOCK_FREQ );
1524
1525             var_Get( p_input, "length", &val );
1526             secstotimestr( buf2, val.i_time / CLOCK_FREQ );
1527
1528             mvnprintw( y++, 0, COLS, _(" Position : %s/%s (%.2f%%)"), buf1, buf2, p_sys->f_slider );
1529
1530             /* Volume */
1531             aout_VolumeGet( p_playlist, &i_volume );
1532             mvnprintw( y++, 0, COLS, _(" Volume   : %i%%"), i_volume*200/AOUT_VOLUME_MAX );
1533
1534             /* Title */
1535             if( !var_Get( p_input, "title", &val ) )
1536             {
1537                 int i_title_count = var_CountChoices( p_input, "title" );
1538                 if( i_title_count > 0 )
1539                     mvnprintw( y++, 0, COLS, _(" Title    : %"PRId64"/%d"),
1540                                val.i_int, i_title_count );
1541             }
1542
1543             /* Chapter */
1544             if( !var_Get( p_input, "chapter", &val ) )
1545             {
1546                 int i_chapter_count = var_CountChoices( p_input, "chapter" );
1547                 if( i_chapter_count > 0 )
1548                     mvnprintw( y++, 0, COLS, _(" Chapter  : %"PRId64"/%d"),
1549                                val.i_int, i_chapter_count );
1550             }
1551         }
1552         else
1553         {
1554             y += 2;
1555         }
1556     }
1557     else
1558     {
1559         mvnprintw( y++, 0, COLS, _(" Source: <no current item> %s"), psz_state );
1560         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1561         mvnprintw( y++, 0, COLS, _(" [ h for help ]") );
1562         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1563     }
1564     free( psz_state );
1565     if( p_sys->b_color )
1566         wcolor_set( p_sys->w, C_DEFAULT, NULL );
1567
1568     DrawBox( p_sys->w, y, 0, 3, COLS, "", p_sys->b_color );
1569     DrawEmptyLine( p_sys->w, y+1, 1, COLS-2);
1570     DrawLine( p_sys->w, y+1, 1, (int)(p_intf->p_sys->f_slider/100.0 * (COLS -2)) );
1571     y += 3;
1572
1573     p_sys->i_box_y = y + 1;
1574     p_sys->i_box_lines = LINES - y - 2;
1575
1576     h = LINES - y;
1577     y_end = y + h - 1;
1578
1579     if( p_sys->i_box_type == BOX_HELP )
1580     {
1581         /* Help box */
1582         int l = 0;
1583         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Help "), p_sys->b_color );
1584
1585         if( p_sys->b_color )
1586             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1587         MainBoxWrite( p_intf, l++, 1, _("[Display]") );
1588         if( p_sys->b_color )
1589             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1590         MainBoxWrite( p_intf, l++, 1, _("     h,H         Show/Hide help box") );
1591         MainBoxWrite( p_intf, l++, 1, _("     i           Show/Hide info box") );
1592         MainBoxWrite( p_intf, l++, 1, _("     m           Show/Hide metadata box") );
1593         MainBoxWrite( p_intf, l++, 1, _("     L           Show/Hide messages box") );
1594         MainBoxWrite( p_intf, l++, 1, _("     P           Show/Hide playlist box") );
1595         MainBoxWrite( p_intf, l++, 1, _("     B           Show/Hide filebrowser") );
1596         MainBoxWrite( p_intf, l++, 1, _("     x           Show/Hide objects box") );
1597         MainBoxWrite( p_intf, l++, 1, _("     S           Show/Hide statistics box" ) );
1598         MainBoxWrite( p_intf, l++, 1, _("     c           Switch color on/off") );
1599         MainBoxWrite( p_intf, l++, 1, _("     Esc         Close Add/Search entry") );
1600         MainBoxWrite( p_intf, l++, 1, "" );
1601
1602         if( p_sys->b_color )
1603             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1604         MainBoxWrite( p_intf, l++, 1, _("[Global]") );
1605         if( p_sys->b_color )
1606             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1607         MainBoxWrite( p_intf, l++, 1, _("     q, Q, Esc   Quit") );
1608         MainBoxWrite( p_intf, l++, 1, _("     s           Stop") );
1609         MainBoxWrite( p_intf, l++, 1, _("     <space>     Pause/Play") );
1610         MainBoxWrite( p_intf, l++, 1, _("     f           Toggle Fullscreen") );
1611         MainBoxWrite( p_intf, l++, 1, _("     n, p        Next/Previous playlist item") );
1612         MainBoxWrite( p_intf, l++, 1, _("     [, ]        Next/Previous title") );
1613         MainBoxWrite( p_intf, l++, 1, _("     <, >        Next/Previous chapter") );
1614         MainBoxWrite( p_intf, l++, 1, _("     <right>     Seek +1%%") );
1615         MainBoxWrite( p_intf, l++, 1, _("     <left>      Seek -1%%") );
1616         MainBoxWrite( p_intf, l++, 1, _("     a           Volume Up") );
1617         MainBoxWrite( p_intf, l++, 1, _("     z           Volume Down") );
1618         MainBoxWrite( p_intf, l++, 1, "" );
1619
1620         if( p_sys->b_color )
1621             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1622         MainBoxWrite( p_intf, l++, 1, _("[Playlist]") );
1623         if( p_sys->b_color )
1624             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1625         MainBoxWrite( p_intf, l++, 1, _("     r           Toggle Random playing") );
1626         MainBoxWrite( p_intf, l++, 1, _("     l           Toggle Loop Playlist") );
1627         MainBoxWrite( p_intf, l++, 1, _("     R           Toggle Repeat item") );
1628         MainBoxWrite( p_intf, l++, 1, _("     o           Order Playlist by title") );
1629         MainBoxWrite( p_intf, l++, 1, _("     O           Reverse order Playlist by title") );
1630         MainBoxWrite( p_intf, l++, 1, _("     g           Go to the current playing item") );
1631         MainBoxWrite( p_intf, l++, 1, _("     /           Look for an item") );
1632         MainBoxWrite( p_intf, l++, 1, _("     A           Add an entry") );
1633         MainBoxWrite( p_intf, l++, 1, _("     D, <del>    Delete an entry") );
1634         MainBoxWrite( p_intf, l++, 1, _("     <backspace> Delete an entry") );
1635         MainBoxWrite( p_intf, l++, 1, _("     e           Eject (if stopped)") );
1636         MainBoxWrite( p_intf, l++, 1, "" );
1637
1638         if( p_sys->b_color )
1639             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1640         MainBoxWrite( p_intf, l++, 1, _("[Filebrowser]") );
1641         if( p_sys->b_color )
1642             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1643         MainBoxWrite( p_intf, l++, 1, _("     <enter>     Add the selected file to the playlist") );
1644         MainBoxWrite( p_intf, l++, 1, _("     <space>     Add the selected directory to the playlist") );
1645         MainBoxWrite( p_intf, l++, 1, _("     .           Show/Hide hidden files") );
1646         MainBoxWrite( p_intf, l++, 1, "" );
1647
1648         if( p_sys->b_color )
1649             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1650         MainBoxWrite( p_intf, l++, 1, _("[Boxes]") );
1651         if( p_sys->b_color )
1652             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1653         MainBoxWrite( p_intf, l++, 1, _("     <up>,<down>     Navigate through the box line by line") );
1654         MainBoxWrite( p_intf, l++, 1, _("     <pgup>,<pgdown> Navigate through the box page by page") );
1655         MainBoxWrite( p_intf, l++, 1, "" );
1656
1657         if( p_sys->b_color )
1658             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1659         MainBoxWrite( p_intf, l++, 1, _("[Player]") );
1660         if( p_sys->b_color )
1661             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1662         MainBoxWrite( p_intf, l++, 1, _("     <up>,<down>     Seek +/-5%%") );
1663         MainBoxWrite( p_intf, l++, 1, "" );
1664
1665         if( p_sys->b_color )
1666             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1667         MainBoxWrite( p_intf, l++, 1, _("[Miscellaneous]") );
1668         if( p_sys->b_color )
1669             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1670         MainBoxWrite( p_intf, l++, 1, _("     Ctrl-l          Refresh the screen") );
1671
1672         p_sys->i_box_lines_total = l;
1673         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1674         {
1675             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1676         }
1677
1678         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1679         {
1680             y += l - p_sys->i_box_start;
1681         }
1682         else
1683         {
1684             y += p_sys->i_box_lines;
1685         }
1686     }
1687     else if( p_sys->i_box_type == BOX_INFO )
1688     {
1689         /* Info box */
1690         int l = 0;
1691         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Information "), p_sys->b_color );
1692
1693         if( p_input )
1694         {
1695             int i,j;
1696             vlc_mutex_lock( &input_GetItem(p_input)->lock );
1697             for( i = 0; i < input_GetItem(p_input)->i_categories; i++ )
1698             {
1699                 info_category_t *p_category = input_GetItem(p_input)->pp_categories[i];
1700                 if( y >= y_end ) break;
1701                 if( p_sys->b_color )
1702                     wcolor_set( p_sys->w, C_CATEGORY, NULL );
1703                 MainBoxWrite( p_intf, l++, 1, _("  [%s]"), p_category->psz_name );
1704                 if( p_sys->b_color )
1705                     wcolor_set( p_sys->w, C_DEFAULT, NULL );
1706                 for( j = 0; j < p_category->i_infos; j++ )
1707                 {
1708                     info_t *p_info = p_category->pp_infos[j];
1709                     if( y >= y_end ) break;
1710                     MainBoxWrite( p_intf, l++, 1, _("      %s: %s"), p_info->psz_name, p_info->psz_value );
1711                 }
1712             }
1713             vlc_mutex_unlock( &input_GetItem(p_input)->lock );
1714         }
1715         else
1716         {
1717             MainBoxWrite( p_intf, l++, 1, _("No item currently playing") );
1718         }
1719         p_sys->i_box_lines_total = l;
1720         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1721         {
1722             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1723         }
1724
1725         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1726         {
1727             y += l - p_sys->i_box_start;
1728         }
1729         else
1730         {
1731             y += p_sys->i_box_lines;
1732         }
1733     }
1734     else if( p_sys->i_box_type == BOX_META )
1735     {
1736         /* Meta data box */
1737         int l = 0;
1738
1739         DrawBox( p_sys->w, y++, 0, h, COLS, _("Meta-information"),
1740                  p_sys->b_color );
1741
1742         if( p_input )
1743         {
1744             int i;
1745             input_item_t *p_item = input_GetItem( p_input );
1746             vlc_mutex_lock( &p_item->lock );
1747             for( i=0; i<VLC_META_TYPE_COUNT; i++ )
1748             {
1749                 if( y >= y_end ) break;
1750                 const char *psz_meta = vlc_meta_Get( p_item->p_meta, i );
1751                 if( psz_meta && *psz_meta )
1752                 {
1753                     const char *psz_meta_title;
1754                     switch( i )
1755                     {
1756                         case 0:
1757                             psz_meta_title = VLC_META_TITLE; break;
1758                         case 1:
1759                             psz_meta_title = VLC_META_ARTIST; break;
1760                         case 2:
1761                             psz_meta_title = VLC_META_GENRE ; break;
1762                         case 3:
1763                             psz_meta_title = VLC_META_COPYRIGHT; break;
1764                         case 4:
1765                             psz_meta_title = VLC_META_ALBUM; break;
1766                         case 5:
1767                             psz_meta_title = VLC_META_TRACK_NUMBER; break;
1768                         case 6:
1769                             psz_meta_title = VLC_META_DESCRIPTION; break;
1770                         case 7:
1771                             psz_meta_title = VLC_META_RATING; break;
1772                         case 8:
1773                             psz_meta_title = VLC_META_DATE; break;
1774                         case 9:
1775                             psz_meta_title = VLC_META_SETTING; break;
1776                         case 10:
1777                             psz_meta_title = VLC_META_URL; break;
1778                         case 11:
1779                             psz_meta_title = VLC_META_LANGUAGE; break;
1780                         case 12:
1781                             psz_meta_title = VLC_META_NOW_PLAYING; break;
1782                         case 13:
1783                             psz_meta_title = VLC_META_PUBLISHER; break;
1784                         case 14:
1785                             psz_meta_title = VLC_META_ENCODED_BY; break;
1786                         case 15:
1787                             psz_meta_title = VLC_META_ART_URL; break;
1788                         case 16:
1789                             psz_meta_title = VLC_META_TRACKID; break;
1790                         default:
1791                             psz_meta_title = ""; break;
1792                     }
1793                     if( p_sys->b_color )
1794                         wcolor_set( p_sys->w, C_CATEGORY, NULL );
1795                     MainBoxWrite( p_intf, l++, 1, "  [%s]", psz_meta_title );
1796                     if( p_sys->b_color )
1797                         wcolor_set( p_sys->w, C_DEFAULT, NULL );
1798                     MainBoxWrite( p_intf, l++, 1, "      %s", psz_meta );
1799                 }
1800             }
1801             vlc_mutex_unlock( &p_item->lock );
1802         }
1803         else
1804         {
1805             MainBoxWrite( p_intf, l++, 1, _("No item currently playing") );
1806         }
1807         p_sys->i_box_lines_total = l;
1808         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1809         {
1810             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1811         }
1812
1813         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1814         {
1815             y += l - p_sys->i_box_start;
1816         }
1817         else
1818         {
1819             y += p_sys->i_box_lines;
1820         }
1821     }
1822     else if( p_sys->i_box_type == BOX_LOG )
1823     {
1824 #warning Deprecated API
1825 #if 0
1826         int i_line = 0;
1827         int i_stop;
1828         int i_start;
1829
1830         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Logs "), p_sys->b_color );
1831
1832
1833         i_start = p_intf->p_sys->p_sub->i_start;
1834
1835         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1836         i_stop = *p_intf->p_sys->p_sub->pi_stop;
1837         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1838
1839         for( ;; )
1840         {
1841             static const char *ppsz_type[4] = { "", "error", "warning", "debug" };
1842             if( i_line >= h - 2 )
1843             {
1844                 break;
1845             }
1846             i_stop--;
1847             i_line++;
1848             if( i_stop < 0 ) i_stop += VLC_MSG_QSIZE;
1849             if( i_stop == i_start )
1850             {
1851                 break;
1852             }
1853             if( p_sys->b_color )
1854                 wcolor_set( p_sys->w,
1855                     p_sys->p_sub->p_msg[i_stop].i_type + C_INFO,
1856                     NULL );
1857             mvnprintw( y + h-2-i_line, 1, COLS - 2, "   [%s] %s",
1858                       ppsz_type[p_sys->p_sub->p_msg[i_stop].i_type],
1859                       p_sys->p_sub->p_msg[i_stop].psz_msg );
1860             if( p_sys->b_color )
1861                 wcolor_set( p_sys->w, C_DEFAULT, NULL );
1862         }
1863
1864         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1865         p_intf->p_sys->p_sub->i_start = i_stop;
1866         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1867         y = y_end;
1868 #endif
1869     }
1870     else if( p_sys->i_box_type == BOX_BROWSE )
1871     {
1872         /* Filebrowser box */
1873         int        i_start, i_stop;
1874         int        i_item;
1875         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Browse "), p_sys->b_color );
1876
1877         if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_plidx = p_sys->i_dir_entries - 1;
1878         if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
1879
1880         if( p_sys->i_box_bidx < (h - 2)/2 )
1881         {
1882             i_start = 0;
1883             i_stop = h - 2;
1884         }
1885         else if( p_sys->i_dir_entries - p_sys->i_box_bidx > (h - 2)/2 )
1886         {
1887             i_start = p_sys->i_box_bidx - (h - 2)/2;
1888             i_stop = i_start + h - 2;
1889         }
1890         else
1891         {
1892             i_stop = p_sys->i_dir_entries;
1893             i_start = p_sys->i_dir_entries - (h - 2);
1894         }
1895         if( i_start < 0 )
1896         {
1897             i_start = 0;
1898         }
1899         if( i_stop > p_sys->i_dir_entries )
1900         {
1901             i_stop = p_sys->i_dir_entries;
1902         }
1903
1904         for( i_item = i_start; i_item < i_stop; i_item++ )
1905         {
1906             bool b_selected = ( p_sys->i_box_bidx == i_item );
1907
1908             if( y >= y_end ) break;
1909             if( b_selected )
1910             {
1911                 attrset( A_REVERSE );
1912             }
1913             if( p_sys->b_color && !p_sys->pp_dir_entries[i_item]->b_file )
1914                 wcolor_set( p_sys->w, C_FOLDER, NULL );
1915             mvnprintw( y++, 1, COLS - 2, " %c %s", p_sys->pp_dir_entries[i_item]->b_file == true ? ' ' : '+',
1916                             p_sys->pp_dir_entries[i_item]->psz_path );
1917             if( p_sys->b_color && !p_sys->pp_dir_entries[i_item]->b_file )
1918                 wcolor_set( p_sys->w, C_DEFAULT, NULL );
1919
1920             if( b_selected )
1921             {
1922                 attroff( A_REVERSE );
1923             }
1924         }
1925
1926     }
1927     else if( p_sys->i_box_type == BOX_OBJECTS )
1928     {
1929         int l = 0;
1930         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Objects "), p_sys->b_color );
1931         DumpObject( p_intf, &l, VLC_OBJECT( p_intf->p_libvlc ), 0 );
1932
1933         p_sys->i_box_lines_total = l;
1934         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1935             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1936
1937         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1938             y += l - p_sys->i_box_start;
1939         else
1940             y += p_sys->i_box_lines;
1941     }
1942     else if( p_sys->i_box_type == BOX_STATS )
1943     {
1944         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Stats "), p_sys->b_color );
1945
1946         if( p_input )
1947         {
1948             input_item_t *p_item = input_GetItem( p_input );
1949             assert( p_item );
1950             vlc_mutex_lock( &p_item->lock );
1951             vlc_mutex_lock( &p_item->p_stats->lock );
1952
1953             int i_audio = 0;
1954             int i_video = 0;
1955             int i;
1956
1957             if( !p_item->i_es )
1958                 i_video = i_audio = 1;
1959             else
1960                 for( i = 0; i < p_item->i_es ; i++ )
1961                 {
1962                     i_audio += ( p_item->es[i]->i_cat == AUDIO_ES );
1963                     i_video += ( p_item->es[i]->i_cat == VIDEO_ES );
1964                 }
1965
1966             int l = 0;
1967
1968 #define SHOW_ACS(x,c) \
1969     if(l >= p_sys->i_box_start && l - p_sys->i_box_start < p_sys->i_box_lines) \
1970         mvaddch( p_sys->i_box_y - p_sys->i_box_start + l, x, c )
1971
1972             /* Input */
1973             if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
1974             MainBoxWrite( p_intf, l, 1, _("+-[Incoming]"));
1975             SHOW_ACS( 1, ACS_ULCORNER );  SHOW_ACS( 2, ACS_HLINE ); l++;
1976             if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
1977             MainBoxWrite( p_intf, l, 1, _("| input bytes read : %8.0f KiB"),
1978                     (float)(p_item->p_stats->i_read_bytes)/1024 );
1979             SHOW_ACS( 1, ACS_VLINE ); l++;
1980             MainBoxWrite( p_intf, l, 1, _("| input bitrate    :   %6.0f kb/s"),
1981                     (float)(p_item->p_stats->f_input_bitrate)*8000 );
1982             MainBoxWrite( p_intf, l, 1, _("| demux bytes read : %8.0f KiB"),
1983                     (float)(p_item->p_stats->i_demux_read_bytes)/1024 );
1984             SHOW_ACS( 1, ACS_VLINE ); l++;
1985             MainBoxWrite( p_intf, l, 1, _("| demux bitrate    :   %6.0f kb/s"),
1986                     (float)(p_item->p_stats->f_demux_bitrate)*8000 );
1987             SHOW_ACS( 1, ACS_VLINE ); l++;
1988             DrawEmptyLine( p_sys->w, p_sys->i_box_y + l - p_sys->i_box_start, 1, COLS - 2 );
1989             SHOW_ACS( 1, ACS_VLINE ); l++;
1990
1991             /* Video */
1992             if( i_video )
1993             {
1994                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
1995                 MainBoxWrite( p_intf, l, 1, _("+-[Video Decoding]"));
1996                 SHOW_ACS( 1, ACS_LTEE );  SHOW_ACS( 2, ACS_HLINE ); l++;
1997                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
1998                 MainBoxWrite( p_intf, l, 1, _("| video decoded    :    %5i"),
1999                         p_item->p_stats->i_decoded_video );
2000                 SHOW_ACS( 1, ACS_VLINE ); l++;
2001                 MainBoxWrite( p_intf, l, 1, _("| frames displayed :    %5i"),
2002                         p_item->p_stats->i_displayed_pictures );
2003                 SHOW_ACS( 1, ACS_VLINE ); l++;
2004                 MainBoxWrite( p_intf, l, 1, _("| frames lost      :    %5i"),
2005                         p_item->p_stats->i_lost_pictures );
2006                 SHOW_ACS( 1, ACS_VLINE ); l++;
2007                 DrawEmptyLine( p_sys->w, p_sys->i_box_y + l - p_sys->i_box_start, 1, COLS - 2 );
2008                 SHOW_ACS( 1, ACS_VLINE ); l++;
2009             }
2010             /* Audio*/
2011             if( i_audio )
2012             {
2013                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
2014                 MainBoxWrite( p_intf, l, 1, _("+-[Audio Decoding]"));
2015                 SHOW_ACS( 1, ACS_LTEE );  SHOW_ACS( 2, ACS_HLINE ); l++;
2016                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
2017                 MainBoxWrite( p_intf, l, 1, _("| audio decoded    :    %5i"),
2018                         p_item->p_stats->i_decoded_audio );
2019                 SHOW_ACS( 1, ACS_VLINE ); l++;
2020                 MainBoxWrite( p_intf, l, 1, _("| buffers played   :    %5i"),
2021                         p_item->p_stats->i_played_abuffers );
2022                 SHOW_ACS( 1, ACS_VLINE ); l++;
2023                 MainBoxWrite( p_intf, l, 1, _("| buffers lost     :    %5i"),
2024                         p_item->p_stats->i_lost_abuffers );
2025                 SHOW_ACS( 1, ACS_VLINE ); l++;
2026                 DrawEmptyLine( p_sys->w, p_sys->i_box_y + l - p_sys->i_box_start, 1, COLS - 2 );
2027                 SHOW_ACS( 1, ACS_VLINE ); l++;
2028             }
2029             /* Sout */
2030             if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
2031             MainBoxWrite( p_intf, l, 1, _("+-[Streaming]"));
2032             SHOW_ACS( 1, ACS_LTEE );  SHOW_ACS( 2, ACS_HLINE ); l++;
2033             if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
2034             MainBoxWrite( p_intf, l, 1, _("| packets sent     :    %5i"), p_item->p_stats->i_sent_packets );
2035             SHOW_ACS( 1, ACS_VLINE ); l++;
2036             MainBoxWrite( p_intf, l, 1, _("| bytes sent       : %8.0f KiB"),
2037                     (float)(p_item->p_stats->i_sent_bytes)/1024 );
2038             SHOW_ACS( 1, ACS_VLINE ); l++;
2039             MainBoxWrite( p_intf, l, 1, _("\\ sending bitrate  :   %6.0f kb/s"),
2040                     (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
2041             SHOW_ACS( 1, ACS_LLCORNER ); l++;
2042             if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
2043
2044 #undef SHOW_ACS
2045
2046             p_sys->i_box_lines_total = l;
2047             if( p_sys->i_box_start >= p_sys->i_box_lines_total )
2048                 p_sys->i_box_start = p_sys->i_box_lines_total - 1;
2049
2050             if( l - p_sys->i_box_start < p_sys->i_box_lines )
2051                 y += l - p_sys->i_box_start;
2052             else
2053                 y += p_sys->i_box_lines;
2054
2055             vlc_mutex_unlock( &p_item->p_stats->lock );
2056             vlc_mutex_unlock( &p_item->lock );
2057
2058         }
2059     }
2060     else if( p_sys->i_box_type == BOX_PLAYLIST ||
2061                p_sys->i_box_type == BOX_SEARCH ||
2062                p_sys->i_box_type == BOX_OPEN   )
2063     {
2064         /* Playlist box */
2065         int        i_start, i_stop, i_max = p_sys->i_plist_entries;
2066         int        i_item;
2067         char       *psz_title;
2068
2069         switch( p_sys->i_current_view )
2070         {
2071             case VIEW_ONELEVEL:
2072                 psz_title = strdup( _(" Playlist (All, one level) ") );
2073                 break;
2074             case VIEW_CATEGORY:
2075                 psz_title = strdup( _(" Playlist (By category) ") );
2076                 break;
2077             default:
2078                 psz_title = strdup( _(" Playlist (Manually added) ") );
2079         }
2080
2081         DrawBox( p_sys->w, y++, 0, h, COLS, psz_title, p_sys->b_color );
2082         free( psz_title );
2083
2084         if( p_sys->b_need_update || p_sys->pp_plist == NULL )
2085         {
2086             PlaylistRebuild( p_intf );
2087         }
2088         if( p_sys->b_box_plidx_follow )
2089         {
2090             FindIndex( p_intf, p_playlist );
2091         }
2092
2093         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
2094         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
2095         if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
2096
2097         if( p_sys->i_box_plidx < (h - 2)/2 )
2098         {
2099             i_start = 0;
2100             i_stop = h - 2;
2101         }
2102         else if( i_max - p_sys->i_box_plidx > (h - 2)/2 )
2103         {
2104             i_start = p_sys->i_box_plidx - (h - 2)/2;
2105             i_stop = i_start + h - 2;
2106         }
2107         else
2108         {
2109             i_stop = i_max;
2110             i_start = i_max - (h - 2);
2111         }
2112         if( i_start < 0 )
2113         {
2114             i_start = 0;
2115         }
2116         if( i_stop > i_max )
2117         {
2118             i_stop = i_max;
2119         }
2120
2121         for( i_item = i_start; i_item < i_stop; i_item++ )
2122         {
2123             bool b_selected = ( p_sys->i_box_plidx == i_item );
2124             playlist_item_t *p_item = p_sys->pp_plist[i_item]->p_item;
2125             playlist_item_t *p_node = p_sys->p_node;
2126             int c = ' ';
2127             input_thread_t *p_input2 = playlist_CurrentInput( p_playlist );
2128
2129             PL_LOCK;
2130             assert( p_item );
2131             playlist_item_t *p_current_playing_item = playlist_CurrentPlayingItem(p_playlist);
2132             if( ( p_node && p_item->p_input == p_node->p_input ) ||
2133                         ( !p_node && p_input2 && p_current_playing_item &&
2134                           p_item->p_input == p_current_playing_item->p_input ) )
2135                 c = '*';
2136             else if( p_item == p_node || ( p_item != p_node &&
2137                         PlaylistIsPlaying( p_playlist, p_item ) ) )
2138                 c = '>';
2139             PL_UNLOCK;
2140
2141             if( p_input2 )
2142                 vlc_object_release( p_input2 );
2143
2144             if( y >= y_end ) break;
2145             if( b_selected )
2146             {
2147                 attrset( A_REVERSE );
2148             }
2149             if( p_sys->b_color )
2150                 wcolor_set( p_sys->w, i_item % 3 + C_PLAYLIST_1, NULL );
2151             mvnprintw( y++, 1, COLS - 2, "%c%s", c,
2152                        p_sys->pp_plist[i_item]->psz_display );
2153             if( p_sys->b_color )
2154                 wcolor_set( p_sys->w, C_DEFAULT, NULL );
2155             if( b_selected )
2156             {
2157                 attroff( A_REVERSE );
2158             }
2159         }
2160
2161     }
2162     else
2163     {
2164         y++;
2165     }
2166     if( p_sys->i_box_type == BOX_SEARCH )
2167     {
2168         DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
2169         if( p_sys->psz_search_chain )
2170         {
2171             if( *p_sys->psz_search_chain == '\0' &&
2172                 p_sys->psz_old_search != NULL )
2173             {
2174                 /* Searching next entry */
2175                 mvnprintw( 7, 1, COLS-2, _("Find: %s"), p_sys->psz_old_search );
2176             }
2177             else
2178             {
2179                 mvnprintw( 7, 1, COLS-2, _("Find: %s"), p_sys->psz_search_chain );
2180             }
2181         }
2182     }
2183     if( p_sys->i_box_type == BOX_OPEN )
2184     {
2185         if( p_sys->psz_open_chain )
2186         {
2187             DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
2188             mvnprintw( 7, 1, COLS-2, _("Open: %s"), p_sys->psz_open_chain );
2189         }
2190     }
2191
2192     while( y < y_end )
2193     {
2194         DrawEmptyLine( p_sys->w, y++, 1, COLS - 2 );
2195     }
2196
2197     refresh();
2198
2199     *t_last_refresh = time( 0 );
2200 }
2201
2202 static playlist_item_t *PlaylistGetRoot( intf_thread_t *p_intf )
2203 {
2204     intf_sys_t *p_sys = p_intf->p_sys;
2205     playlist_t *p_playlist = pl_Get( p_intf );
2206     playlist_item_t *p_item;
2207
2208     switch( p_sys->i_current_view )
2209     {
2210         case VIEW_CATEGORY:
2211             p_item = p_playlist->p_root_category;
2212             break;
2213         default:
2214             p_item = p_playlist->p_root_onelevel;
2215     }
2216     return p_item;
2217 }
2218
2219 static void PlaylistRebuild( intf_thread_t *p_intf )
2220 {
2221     intf_sys_t *p_sys = p_intf->p_sys;
2222     playlist_t *p_playlist = pl_Get( p_intf );
2223
2224     PL_LOCK;
2225
2226     /* First clear the old one */
2227     PlaylistDestroy( p_intf );
2228
2229     /* Build the new one */
2230     PlaylistAddNode( p_intf, PlaylistGetRoot( p_intf ), 0, "" );
2231
2232     p_sys->b_need_update = false;
2233
2234     PL_UNLOCK;
2235 }
2236
2237 static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
2238                              int i, const char *c )
2239 {
2240     intf_sys_t *p_sys = p_intf->p_sys;
2241     playlist_item_t *p_child;
2242     int k;
2243
2244     for( k = 0; k < p_node->i_children; k++ )
2245     {
2246         char *psz_display;
2247         p_child = p_node->pp_children[k];
2248         char *psz_name = input_item_GetTitleFbName( p_child->p_input );
2249
2250         if( c && *c )
2251         {
2252             if( asprintf( &psz_display, "%s%c-%s", c,
2253                     k == p_node->i_children - 1 ?  '`' : '|', psz_name ) == -1 )
2254                 return;
2255         }
2256         else
2257         {
2258             if( asprintf( &psz_display, " %s", psz_name ) == -1 )
2259                 return;
2260         }
2261         free( psz_name );
2262         struct pl_item_t *p_pl_item = malloc( sizeof( struct pl_item_t ) );
2263         if( !p_pl_item )
2264             return;
2265         p_pl_item->psz_display = psz_display;
2266         p_pl_item->p_item = p_child;
2267         INSERT_ELEM( p_sys->pp_plist, p_sys->i_plist_entries,
2268                      p_sys->i_plist_entries, p_pl_item );
2269         i++;
2270
2271         if( p_child->i_children > 0 )
2272         {
2273             char *psz_tmp;
2274             if( asprintf( &psz_tmp, "%s%c ", c,
2275                      k == p_node->i_children - 1 ? ' ' : '|' ) == -1 )
2276                 return;
2277             PlaylistAddNode( p_intf, p_child, i,
2278                              strlen( c ) ? psz_tmp : " " );
2279             free( psz_tmp );
2280         }
2281     }
2282 }
2283
2284 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
2285                             vlc_value_t oval, vlc_value_t nval, void *param )
2286 {
2287     VLC_UNUSED(p_this); VLC_UNUSED(psz_variable);
2288     VLC_UNUSED(oval); VLC_UNUSED(nval);
2289     intf_thread_t *p_intf = (intf_thread_t *)param;
2290     playlist_t *p_playlist = pl_Get( p_intf );
2291     p_intf->p_sys->b_need_update = true;
2292     p_intf->p_sys->p_node = playlist_CurrentPlayingItem(p_playlist) ? playlist_CurrentPlayingItem(p_playlist)->p_parent : NULL;
2293     return VLC_SUCCESS;
2294 }
2295
2296 /* Playlist suxx */
2297 /* This function have to be called with the playlist locked */
2298 static inline bool PlaylistIsPlaying( playlist_t *p_playlist,
2299                                       playlist_item_t *p_item )
2300 {
2301     playlist_item_t *p_played_item = playlist_CurrentPlayingItem( p_playlist );
2302     return( p_item != NULL && p_played_item != NULL &&
2303             p_item->p_input != NULL && p_played_item->p_input != NULL &&
2304             p_item->p_input->i_id == p_played_item->p_input->i_id );
2305 }
2306
2307 static void FindIndex( intf_thread_t *p_intf, playlist_t *p_playlist )
2308 {
2309     intf_sys_t *p_sys = p_intf->p_sys;
2310     int i;
2311
2312     if( p_sys->i_box_plidx < p_sys->i_plist_entries && p_sys->i_box_plidx >= 0 )
2313     {
2314         playlist_item_t *p_item = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
2315         PL_LOCK;
2316         if( ( p_item->i_children == 0 && p_item == p_sys->p_node ) ||
2317                 PlaylistIsPlaying( p_playlist, p_item ) )
2318         {
2319             PL_UNLOCK;
2320             return;
2321         }
2322     }
2323
2324     for( i = 0; i < p_sys->i_plist_entries; i++ )
2325     {
2326         playlist_item_t *p_item = p_sys->pp_plist[i]->p_item;
2327         if( ( p_item->i_children == 0 && p_item == p_sys->p_node ) ||
2328                 PlaylistIsPlaying( p_playlist, p_sys->pp_plist[i]->p_item ) )
2329         {
2330             p_sys->i_box_plidx = i;
2331             break;
2332         }
2333     }
2334     PL_UNLOCK;
2335 }
2336
2337 static void PlaylistDestroy( intf_thread_t *p_intf )
2338 {
2339     intf_sys_t *p_sys = p_intf->p_sys;
2340
2341     while( p_sys->i_plist_entries )
2342     {
2343         struct pl_item_t *p_pl_item = p_sys->pp_plist[0];
2344         free( p_pl_item->psz_display );
2345         REMOVE_ELEM( p_sys->pp_plist, p_sys->i_plist_entries, 0 );
2346         free( p_pl_item );
2347     }
2348     p_sys->pp_plist = NULL;
2349 }
2350
2351 static void Eject( intf_thread_t *p_intf )
2352 {
2353     char *psz_device = NULL, *psz_parser, *psz_name;
2354
2355     /*
2356      * Get the active input
2357      * Determine whether we can eject a media, ie it's a DVD, VCD or CD-DA
2358      * If it's neither of these, then return
2359      */
2360
2361     playlist_t * p_playlist = pl_Get( p_intf );
2362     PL_LOCK;
2363
2364     if( playlist_CurrentPlayingItem(p_playlist) == NULL )
2365     {
2366         PL_UNLOCK;
2367         return;
2368     }
2369
2370     psz_name = playlist_CurrentPlayingItem(p_playlist)->p_input->psz_name;
2371
2372     if( psz_name )
2373     {
2374         if( !strncmp(psz_name, "dvd://", 6) )
2375         {
2376             switch( psz_name[6] )
2377             {
2378             case '\0':
2379             case '@':
2380                 psz_device = config_GetPsz( p_intf, "dvd" );
2381                 break;
2382             default:
2383                 /* Omit the first MRL-selector characters */
2384                 psz_device = strdup( psz_name + strlen("dvd://" ) );
2385                 break;
2386             }
2387         }
2388         else if( !strncmp(psz_name, "vcd://", 6) )
2389         {
2390             switch( psz_name[6] )
2391             {
2392             case '\0':
2393             case '@':
2394                 psz_device = config_GetPsz( p_intf, "vcd" );
2395                 break;
2396             default:
2397                 /* Omit the beginning MRL-selector characters */
2398                 psz_device = strdup( psz_name + 6 );
2399                 break;
2400             }
2401         }
2402         else if( !strncmp(psz_name, "cdda://", 7 ) )
2403         {
2404             switch( psz_name[7] )
2405             {
2406             case '\0':
2407             case '@':
2408                 psz_device = config_GetPsz( p_intf, "cd-audio" );
2409                 break;
2410             default:
2411                 /* Omit the beginning MRL-selector characters */
2412                 psz_device = strdup( psz_name + 7 );
2413                 break;
2414             }
2415         }
2416         else
2417         {
2418             psz_device = strdup( psz_name );
2419         }
2420     }
2421
2422     PL_UNLOCK;
2423
2424     if( psz_device == NULL )
2425     {
2426         return;
2427     }
2428
2429     /* Remove what we have after @ */
2430     for( psz_parser = psz_device ; *psz_parser ; psz_parser++ )
2431     {
2432         if( *psz_parser == '@' )
2433         {
2434             *psz_parser = '\0';
2435             break;
2436         }
2437     }
2438
2439     /* If there's a stream playing, we aren't allowed to eject ! */
2440     if( p_intf->p_sys->p_input == NULL )
2441     {
2442         msg_Dbg( p_intf, "ejecting %s", psz_device );
2443
2444         intf_Eject( p_intf, psz_device );
2445     }
2446
2447     free( psz_device );
2448 }
2449
2450 static int comp_dir_entries( const void *pp_dir_entry1,
2451                              const void *pp_dir_entry2 )
2452 {
2453     struct dir_entry_t *p_dir_entry1 = *(struct dir_entry_t**)pp_dir_entry1;
2454     struct dir_entry_t *p_dir_entry2 = *(struct dir_entry_t**)pp_dir_entry2;
2455     if ( p_dir_entry1->b_file == p_dir_entry2->b_file ) {
2456         return strcasecmp( p_dir_entry1->psz_path, p_dir_entry2->psz_path );
2457     }
2458     else
2459     {
2460         return ( p_dir_entry1->b_file ? 1 : -1 );
2461     }
2462 }
2463
2464 static void ReadDir( intf_thread_t *p_intf )
2465 {
2466     intf_sys_t *p_sys = p_intf->p_sys;
2467     DIR *p_current_dir;
2468     int i;
2469
2470     if( p_sys->psz_current_dir && *p_sys->psz_current_dir )
2471     {
2472         char *psz_entry;
2473
2474         /* Open the dir */
2475         p_current_dir = vlc_opendir( p_sys->psz_current_dir );
2476
2477         if( p_current_dir == NULL )
2478         {
2479             /* something went bad, get out of here ! */
2480             msg_Warn( p_intf, "cannot open directory `%s' (%m)",
2481                       p_sys->psz_current_dir );
2482             return;
2483         }
2484
2485         /* Clean the old shit */
2486         for( i = 0; i < p_sys->i_dir_entries; i++ )
2487         {
2488             struct dir_entry_t *p_dir_entry = p_sys->pp_dir_entries[i];
2489             free( p_dir_entry->psz_path );
2490             REMOVE_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries, i );
2491             free( p_dir_entry );
2492         }
2493         p_sys->pp_dir_entries = NULL;
2494         p_sys->i_dir_entries = 0;
2495
2496         /* while we still have entries in the directory */
2497         while( ( psz_entry = vlc_readdir( p_current_dir ) ) != NULL )
2498         {
2499 #if defined( S_ISDIR )
2500             struct stat stat_data;
2501 #endif
2502             struct dir_entry_t *p_dir_entry;
2503             char *psz_uri;
2504
2505             if( p_sys->b_show_hidden_files == false &&
2506                 ( strlen( psz_entry ) && psz_entry[0] == '.' ) &&
2507                 strcmp( psz_entry, ".." ) )
2508             {
2509                 free( psz_entry );
2510                 continue;
2511             }
2512
2513             if( asprintf( &psz_uri, "%s/%s", p_sys->psz_current_dir,
2514                         psz_entry ) == -1)
2515             {
2516                 free( psz_entry );
2517                 continue;
2518             }
2519
2520             if( !( p_dir_entry = malloc( sizeof( struct dir_entry_t) ) ) )
2521             {
2522                 free( psz_uri );
2523                 free( psz_entry );
2524                 continue;
2525             }
2526
2527 #if defined( S_ISDIR )
2528             if( !vlc_stat( psz_uri, &stat_data )
2529              && S_ISDIR(stat_data.st_mode) )
2530 /*#elif defined( DT_DIR )
2531             if( p_dir_content->d_type & DT_DIR )*/
2532 #else
2533             if( 0 )
2534 #endif
2535             {
2536                 p_dir_entry->psz_path = strdup( psz_entry );
2537                 p_dir_entry->b_file = false;
2538                 INSERT_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries,
2539                      p_sys->i_dir_entries, p_dir_entry );
2540             }
2541             else
2542             {
2543                 p_dir_entry->psz_path = strdup( psz_entry );
2544                 p_dir_entry->b_file = true;
2545                 INSERT_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries,
2546                      p_sys->i_dir_entries, p_dir_entry );
2547             }
2548
2549             free( psz_uri );
2550             free( psz_entry );
2551         }
2552
2553         /* Sort */
2554         qsort( p_sys->pp_dir_entries, p_sys->i_dir_entries,
2555                sizeof(struct dir_entry_t*), &comp_dir_entries );
2556
2557         closedir( p_current_dir );
2558         return;
2559     }
2560     else
2561     {
2562         msg_Dbg( p_intf, "no current dir set" );
2563         return;
2564     }
2565 }
2566
2567 static void PlayPause( intf_thread_t *p_intf )
2568 {
2569     input_thread_t *p_input = p_intf->p_sys->p_input;
2570     playlist_t *p_playlist = pl_Get( p_intf );
2571     vlc_value_t val;
2572
2573     if( p_input )
2574     {
2575         var_Get( p_input, "state", &val );
2576         if( val.i_int != PAUSE_S )
2577         {
2578             val.i_int = PAUSE_S;
2579         }
2580         else
2581         {
2582             val.i_int = PLAYING_S;
2583         }
2584         var_Set( p_input, "state", val );
2585     }
2586     else
2587         playlist_Play( p_playlist );
2588 }
2589
2590 /****************************************************************************
2591  *
2592  ****************************************************************************/
2593 static void DrawBox( WINDOW *win, int y, int x, int h, int w, const char *title, bool b_color )
2594 {
2595     int i;
2596     int i_len;
2597
2598     if( w > 3 && h > 2 )
2599     {
2600         if( b_color )
2601             wcolor_set( win, C_BOX, NULL );
2602         if( title == NULL ) title = "";
2603         i_len = strlen( title );
2604
2605         if( i_len > w - 2 ) i_len = w - 2;
2606
2607         mvwaddch( win, y, x,    ACS_ULCORNER );
2608         mvwhline( win, y, x+1,  ACS_HLINE, ( w-i_len-2)/2 );
2609         mvwprintw( win,y, x+1+(w-i_len-2)/2, "%s", title );
2610         mvwhline( win, y, x+(w-i_len)/2+i_len,  ACS_HLINE, w - 1 - ((w-i_len)/2+i_len) );
2611         mvwaddch( win, y, x+w-1,ACS_URCORNER );
2612
2613         for( i = 0; i < h-2; i++ )
2614         {
2615             mvwaddch( win, y+i+1, x,     ACS_VLINE );
2616             mvwaddch( win, y+i+1, x+w-1, ACS_VLINE );
2617         }
2618
2619         mvwaddch( win, y+h-1, x,     ACS_LLCORNER );
2620         mvwhline( win, y+h-1, x+1,   ACS_HLINE, w - 2 );
2621         mvwaddch( win, y+h-1, x+w-1, ACS_LRCORNER );
2622         if( b_color )
2623             wcolor_set( win, C_DEFAULT, NULL );
2624     }
2625 }
2626
2627 static void DrawEmptyLine( WINDOW *win, int y, int x, int w )
2628 {
2629     if( w > 0 )
2630     {
2631         mvwhline( win, y, x, ' ', w );
2632     }
2633 }
2634
2635 static void DrawLine( WINDOW *win, int y, int x, int w )
2636 {
2637     if( w > 0 )
2638     {
2639         attrset( A_REVERSE );
2640         mvwhline( win, y, x, ' ', w );
2641         attroff( A_REVERSE );
2642     }
2643 }