]> git.sesse.net Git - vlc/blob - modules/gui/ncurses.c
Use KiB instead of kB for input statistics
[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     snprintf( &psz_title[mid], i_size, "VLC media player "PACKAGE_VERSION );
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    : %d/%d"), val.i_int, i_title_count );
1540             }
1541
1542             /* Chapter */
1543             if( !var_Get( p_input, "chapter", &val ) )
1544             {
1545                 int i_chapter_count = var_CountChoices( p_input, "chapter" );
1546                 if( i_chapter_count > 0 )
1547                     mvnprintw( y++, 0, COLS, _(" Chapter  : %d/%d"), val.i_int, i_chapter_count );
1548             }
1549         }
1550         else
1551         {
1552             y += 2;
1553         }
1554     }
1555     else
1556     {
1557         mvnprintw( y++, 0, COLS, _(" Source: <no current item> %s"), psz_state );
1558         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1559         mvnprintw( y++, 0, COLS, _(" [ h for help ]") );
1560         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1561     }
1562     free( psz_state );
1563     if( p_sys->b_color )
1564         wcolor_set( p_sys->w, C_DEFAULT, NULL );
1565
1566     DrawBox( p_sys->w, y, 0, 3, COLS, "", p_sys->b_color );
1567     DrawEmptyLine( p_sys->w, y+1, 1, COLS-2);
1568     DrawLine( p_sys->w, y+1, 1, (int)(p_intf->p_sys->f_slider/100.0 * (COLS -2)) );
1569     y += 3;
1570
1571     p_sys->i_box_y = y + 1;
1572     p_sys->i_box_lines = LINES - y - 2;
1573
1574     h = LINES - y;
1575     y_end = y + h - 1;
1576
1577     if( p_sys->i_box_type == BOX_HELP )
1578     {
1579         /* Help box */
1580         int l = 0;
1581         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Help "), p_sys->b_color );
1582
1583         if( p_sys->b_color )
1584             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1585         MainBoxWrite( p_intf, l++, 1, _("[Display]") );
1586         if( p_sys->b_color )
1587             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1588         MainBoxWrite( p_intf, l++, 1, _("     h,H         Show/Hide help box") );
1589         MainBoxWrite( p_intf, l++, 1, _("     i           Show/Hide info box") );
1590         MainBoxWrite( p_intf, l++, 1, _("     m           Show/Hide metadata box") );
1591         MainBoxWrite( p_intf, l++, 1, _("     L           Show/Hide messages box") );
1592         MainBoxWrite( p_intf, l++, 1, _("     P           Show/Hide playlist box") );
1593         MainBoxWrite( p_intf, l++, 1, _("     B           Show/Hide filebrowser") );
1594         MainBoxWrite( p_intf, l++, 1, _("     x           Show/Hide objects box") );
1595         MainBoxWrite( p_intf, l++, 1, _("     S           Show/Hide statistics box" ) );
1596         MainBoxWrite( p_intf, l++, 1, _("     c           Switch color on/off") );
1597         MainBoxWrite( p_intf, l++, 1, _("     Esc         Close Add/Search entry") );
1598         MainBoxWrite( p_intf, l++, 1, "" );
1599
1600         if( p_sys->b_color )
1601             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1602         MainBoxWrite( p_intf, l++, 1, _("[Global]") );
1603         if( p_sys->b_color )
1604             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1605         MainBoxWrite( p_intf, l++, 1, _("     q, Q, Esc   Quit") );
1606         MainBoxWrite( p_intf, l++, 1, _("     s           Stop") );
1607         MainBoxWrite( p_intf, l++, 1, _("     <space>     Pause/Play") );
1608         MainBoxWrite( p_intf, l++, 1, _("     f           Toggle Fullscreen") );
1609         MainBoxWrite( p_intf, l++, 1, _("     n, p        Next/Previous playlist item") );
1610         MainBoxWrite( p_intf, l++, 1, _("     [, ]        Next/Previous title") );
1611         MainBoxWrite( p_intf, l++, 1, _("     <, >        Next/Previous chapter") );
1612         MainBoxWrite( p_intf, l++, 1, _("     <right>     Seek +1%%") );
1613         MainBoxWrite( p_intf, l++, 1, _("     <left>      Seek -1%%") );
1614         MainBoxWrite( p_intf, l++, 1, _("     a           Volume Up") );
1615         MainBoxWrite( p_intf, l++, 1, _("     z           Volume Down") );
1616         MainBoxWrite( p_intf, l++, 1, "" );
1617
1618         if( p_sys->b_color )
1619             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1620         MainBoxWrite( p_intf, l++, 1, _("[Playlist]") );
1621         if( p_sys->b_color )
1622             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1623         MainBoxWrite( p_intf, l++, 1, _("     r           Toggle Random playing") );
1624         MainBoxWrite( p_intf, l++, 1, _("     l           Toggle Loop Playlist") );
1625         MainBoxWrite( p_intf, l++, 1, _("     R           Toggle Repeat item") );
1626         MainBoxWrite( p_intf, l++, 1, _("     o           Order Playlist by title") );
1627         MainBoxWrite( p_intf, l++, 1, _("     O           Reverse order Playlist by title") );
1628         MainBoxWrite( p_intf, l++, 1, _("     g           Go to the current playing item") );
1629         MainBoxWrite( p_intf, l++, 1, _("     /           Look for an item") );
1630         MainBoxWrite( p_intf, l++, 1, _("     A           Add an entry") );
1631         MainBoxWrite( p_intf, l++, 1, _("     D, <del>    Delete an entry") );
1632         MainBoxWrite( p_intf, l++, 1, _("     <backspace> Delete an entry") );
1633         MainBoxWrite( p_intf, l++, 1, _("     e           Eject (if stopped)") );
1634         MainBoxWrite( p_intf, l++, 1, "" );
1635
1636         if( p_sys->b_color )
1637             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1638         MainBoxWrite( p_intf, l++, 1, _("[Filebrowser]") );
1639         if( p_sys->b_color )
1640             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1641         MainBoxWrite( p_intf, l++, 1, _("     <enter>     Add the selected file to the playlist") );
1642         MainBoxWrite( p_intf, l++, 1, _("     <space>     Add the selected directory to the playlist") );
1643         MainBoxWrite( p_intf, l++, 1, _("     .           Show/Hide hidden files") );
1644         MainBoxWrite( p_intf, l++, 1, "" );
1645
1646         if( p_sys->b_color )
1647             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1648         MainBoxWrite( p_intf, l++, 1, _("[Boxes]") );
1649         if( p_sys->b_color )
1650             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1651         MainBoxWrite( p_intf, l++, 1, _("     <up>,<down>     Navigate through the box line by line") );
1652         MainBoxWrite( p_intf, l++, 1, _("     <pgup>,<pgdown> Navigate through the box page by page") );
1653         MainBoxWrite( p_intf, l++, 1, "" );
1654
1655         if( p_sys->b_color )
1656             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1657         MainBoxWrite( p_intf, l++, 1, _("[Player]") );
1658         if( p_sys->b_color )
1659             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1660         MainBoxWrite( p_intf, l++, 1, _("     <up>,<down>     Seek +/-5%%") );
1661         MainBoxWrite( p_intf, l++, 1, "" );
1662
1663         if( p_sys->b_color )
1664             wcolor_set( p_sys->w, C_CATEGORY, NULL );
1665         MainBoxWrite( p_intf, l++, 1, _("[Miscellaneous]") );
1666         if( p_sys->b_color )
1667             wcolor_set( p_sys->w, C_DEFAULT, NULL );
1668         MainBoxWrite( p_intf, l++, 1, _("     Ctrl-l          Refresh the screen") );
1669
1670         p_sys->i_box_lines_total = l;
1671         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1672         {
1673             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1674         }
1675
1676         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1677         {
1678             y += l - p_sys->i_box_start;
1679         }
1680         else
1681         {
1682             y += p_sys->i_box_lines;
1683         }
1684     }
1685     else if( p_sys->i_box_type == BOX_INFO )
1686     {
1687         /* Info box */
1688         int l = 0;
1689         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Information "), p_sys->b_color );
1690
1691         if( p_input )
1692         {
1693             int i,j;
1694             vlc_mutex_lock( &input_GetItem(p_input)->lock );
1695             for( i = 0; i < input_GetItem(p_input)->i_categories; i++ )
1696             {
1697                 info_category_t *p_category = input_GetItem(p_input)->pp_categories[i];
1698                 if( y >= y_end ) break;
1699                 if( p_sys->b_color )
1700                     wcolor_set( p_sys->w, C_CATEGORY, NULL );
1701                 MainBoxWrite( p_intf, l++, 1, _("  [%s]"), p_category->psz_name );
1702                 if( p_sys->b_color )
1703                     wcolor_set( p_sys->w, C_DEFAULT, NULL );
1704                 for( j = 0; j < p_category->i_infos; j++ )
1705                 {
1706                     info_t *p_info = p_category->pp_infos[j];
1707                     if( y >= y_end ) break;
1708                     MainBoxWrite( p_intf, l++, 1, _("      %s: %s"), p_info->psz_name, p_info->psz_value );
1709                 }
1710             }
1711             vlc_mutex_unlock( &input_GetItem(p_input)->lock );
1712         }
1713         else
1714         {
1715             MainBoxWrite( p_intf, l++, 1, _("No item currently playing") );
1716         }
1717         p_sys->i_box_lines_total = l;
1718         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1719         {
1720             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1721         }
1722
1723         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1724         {
1725             y += l - p_sys->i_box_start;
1726         }
1727         else
1728         {
1729             y += p_sys->i_box_lines;
1730         }
1731     }
1732     else if( p_sys->i_box_type == BOX_META )
1733     {
1734         /* Meta data box */
1735         int l = 0;
1736
1737         DrawBox( p_sys->w, y++, 0, h, COLS, _("Meta-information"),
1738                  p_sys->b_color );
1739
1740         if( p_input )
1741         {
1742             int i;
1743             input_item_t *p_item = input_GetItem( p_input );
1744             vlc_mutex_lock( &p_item->lock );
1745             for( i=0; i<VLC_META_TYPE_COUNT; i++ )
1746             {
1747                 if( y >= y_end ) break;
1748                 char *psz_meta = vlc_meta_Get( p_item->p_meta, i );
1749                 if( psz_meta && *psz_meta )
1750                 {
1751                     const char *psz_meta_title;
1752                     switch( i )
1753                     {
1754                         case 0:
1755                             psz_meta_title = VLC_META_TITLE; break;
1756                         case 1:
1757                             psz_meta_title = VLC_META_ARTIST; break;
1758                         case 2:
1759                             psz_meta_title = VLC_META_GENRE ; break;
1760                         case 3:
1761                             psz_meta_title = VLC_META_COPYRIGHT; break;
1762                         case 4:
1763                             psz_meta_title = VLC_META_ALBUM; break;
1764                         case 5:
1765                             psz_meta_title = VLC_META_TRACK_NUMBER; break;
1766                         case 6:
1767                             psz_meta_title = VLC_META_DESCRIPTION; break;
1768                         case 7:
1769                             psz_meta_title = VLC_META_RATING; break;
1770                         case 8:
1771                             psz_meta_title = VLC_META_DATE; break;
1772                         case 9:
1773                             psz_meta_title = VLC_META_SETTING; break;
1774                         case 10:
1775                             psz_meta_title = VLC_META_URL; break;
1776                         case 11:
1777                             psz_meta_title = VLC_META_LANGUAGE; break;
1778                         case 12:
1779                             psz_meta_title = VLC_META_NOW_PLAYING; break;
1780                         case 13:
1781                             psz_meta_title = VLC_META_PUBLISHER; break;
1782                         case 14:
1783                             psz_meta_title = VLC_META_ENCODED_BY; break;
1784                         case 15:
1785                             psz_meta_title = VLC_META_ART_URL; break;
1786                         case 16:
1787                             psz_meta_title = VLC_META_TRACKID; break;
1788                         default:
1789                             psz_meta_title = ""; break;
1790                     }
1791                     if( p_sys->b_color )
1792                         wcolor_set( p_sys->w, C_CATEGORY, NULL );
1793                     MainBoxWrite( p_intf, l++, 1, "  [%s]", psz_meta_title );
1794                     if( p_sys->b_color )
1795                         wcolor_set( p_sys->w, C_DEFAULT, NULL );
1796                     MainBoxWrite( p_intf, l++, 1, "      %s", psz_meta );
1797                 }
1798             }
1799             vlc_mutex_unlock( &p_item->lock );
1800         }
1801         else
1802         {
1803             MainBoxWrite( p_intf, l++, 1, _("No item currently playing") );
1804         }
1805         p_sys->i_box_lines_total = l;
1806         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1807         {
1808             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1809         }
1810
1811         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1812         {
1813             y += l - p_sys->i_box_start;
1814         }
1815         else
1816         {
1817             y += p_sys->i_box_lines;
1818         }
1819     }
1820     else if( p_sys->i_box_type == BOX_LOG )
1821     {
1822 #warning Deprecated API
1823 #if 0
1824         int i_line = 0;
1825         int i_stop;
1826         int i_start;
1827
1828         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Logs "), p_sys->b_color );
1829
1830
1831         i_start = p_intf->p_sys->p_sub->i_start;
1832
1833         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1834         i_stop = *p_intf->p_sys->p_sub->pi_stop;
1835         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1836
1837         for( ;; )
1838         {
1839             static const char *ppsz_type[4] = { "", "error", "warning", "debug" };
1840             if( i_line >= h - 2 )
1841             {
1842                 break;
1843             }
1844             i_stop--;
1845             i_line++;
1846             if( i_stop < 0 ) i_stop += VLC_MSG_QSIZE;
1847             if( i_stop == i_start )
1848             {
1849                 break;
1850             }
1851             if( p_sys->b_color )
1852                 wcolor_set( p_sys->w,
1853                     p_sys->p_sub->p_msg[i_stop].i_type + C_INFO,
1854                     NULL );
1855             mvnprintw( y + h-2-i_line, 1, COLS - 2, "   [%s] %s",
1856                       ppsz_type[p_sys->p_sub->p_msg[i_stop].i_type],
1857                       p_sys->p_sub->p_msg[i_stop].psz_msg );
1858             if( p_sys->b_color )
1859                 wcolor_set( p_sys->w, C_DEFAULT, NULL );
1860         }
1861
1862         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1863         p_intf->p_sys->p_sub->i_start = i_stop;
1864         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1865         y = y_end;
1866 #endif
1867     }
1868     else if( p_sys->i_box_type == BOX_BROWSE )
1869     {
1870         /* Filebrowser box */
1871         int        i_start, i_stop;
1872         int        i_item;
1873         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Browse "), p_sys->b_color );
1874
1875         if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_plidx = p_sys->i_dir_entries - 1;
1876         if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
1877
1878         if( p_sys->i_box_bidx < (h - 2)/2 )
1879         {
1880             i_start = 0;
1881             i_stop = h - 2;
1882         }
1883         else if( p_sys->i_dir_entries - p_sys->i_box_bidx > (h - 2)/2 )
1884         {
1885             i_start = p_sys->i_box_bidx - (h - 2)/2;
1886             i_stop = i_start + h - 2;
1887         }
1888         else
1889         {
1890             i_stop = p_sys->i_dir_entries;
1891             i_start = p_sys->i_dir_entries - (h - 2);
1892         }
1893         if( i_start < 0 )
1894         {
1895             i_start = 0;
1896         }
1897         if( i_stop > p_sys->i_dir_entries )
1898         {
1899             i_stop = p_sys->i_dir_entries;
1900         }
1901
1902         for( i_item = i_start; i_item < i_stop; i_item++ )
1903         {
1904             bool b_selected = ( p_sys->i_box_bidx == i_item );
1905
1906             if( y >= y_end ) break;
1907             if( b_selected )
1908             {
1909                 attrset( A_REVERSE );
1910             }
1911             if( p_sys->b_color && !p_sys->pp_dir_entries[i_item]->b_file )
1912                 wcolor_set( p_sys->w, C_FOLDER, NULL );
1913             mvnprintw( y++, 1, COLS - 2, " %c %s", p_sys->pp_dir_entries[i_item]->b_file == true ? ' ' : '+',
1914                             p_sys->pp_dir_entries[i_item]->psz_path );
1915             if( p_sys->b_color && !p_sys->pp_dir_entries[i_item]->b_file )
1916                 wcolor_set( p_sys->w, C_DEFAULT, NULL );
1917
1918             if( b_selected )
1919             {
1920                 attroff( A_REVERSE );
1921             }
1922         }
1923
1924     }
1925     else if( p_sys->i_box_type == BOX_OBJECTS )
1926     {
1927         int l = 0;
1928         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Objects "), p_sys->b_color );
1929         DumpObject( p_intf, &l, VLC_OBJECT( p_intf->p_libvlc ), 0 );
1930
1931         p_sys->i_box_lines_total = l;
1932         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1933             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1934
1935         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1936             y += l - p_sys->i_box_start;
1937         else
1938             y += p_sys->i_box_lines;
1939     }
1940     else if( p_sys->i_box_type == BOX_STATS )
1941     {
1942         DrawBox( p_sys->w, y++, 0, h, COLS, _(" Stats "), p_sys->b_color );
1943
1944         if( p_input )
1945         {
1946             input_item_t *p_item = input_GetItem( p_input );
1947             assert( p_item );
1948             vlc_mutex_lock( &p_item->lock );
1949             vlc_mutex_lock( &p_item->p_stats->lock );
1950
1951             int i_audio = 0;
1952             int i_video = 0;
1953             int i;
1954
1955             if( !p_item->i_es )
1956                 i_video = i_audio = 1;
1957             else
1958                 for( i = 0; i < p_item->i_es ; i++ )
1959                 {
1960                     i_audio += ( p_item->es[i]->i_cat == AUDIO_ES );
1961                     i_video += ( p_item->es[i]->i_cat == VIDEO_ES );
1962                 }
1963
1964             int l = 0;
1965
1966 #define SHOW_ACS(x,c) \
1967     if(l >= p_sys->i_box_start && l - p_sys->i_box_start < p_sys->i_box_lines) \
1968         mvaddch( p_sys->i_box_y - p_sys->i_box_start + l, x, c )
1969
1970             /* Input */
1971             if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
1972             MainBoxWrite( p_intf, l, 1, _("+-[Incoming]"));
1973             SHOW_ACS( 1, ACS_ULCORNER );  SHOW_ACS( 2, ACS_HLINE ); l++;
1974             if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
1975             MainBoxWrite( p_intf, l, 1, _("| input bytes read : %8.0f KiB"),
1976                     (float)(p_item->p_stats->i_read_bytes)/1024 );
1977             SHOW_ACS( 1, ACS_VLINE ); l++;
1978             MainBoxWrite( p_intf, l, 1, _("| input bitrate    :   %6.0f kb/s"),
1979                     (float)(p_item->p_stats->f_input_bitrate)*8000 );
1980             MainBoxWrite( p_intf, l, 1, _("| demux bytes read : %8.0f KiB"),
1981                     (float)(p_item->p_stats->i_demux_read_bytes)/1024 );
1982             SHOW_ACS( 1, ACS_VLINE ); l++;
1983             MainBoxWrite( p_intf, l, 1, _("| demux bitrate    :   %6.0f kb/s"),
1984                     (float)(p_item->p_stats->f_demux_bitrate)*8000 );
1985             SHOW_ACS( 1, ACS_VLINE ); l++;
1986             DrawEmptyLine( p_sys->w, p_sys->i_box_y + l - p_sys->i_box_start, 1, COLS - 2 );
1987             SHOW_ACS( 1, ACS_VLINE ); l++;
1988
1989             /* Video */
1990             if( i_video )
1991             {
1992                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
1993                 MainBoxWrite( p_intf, l, 1, _("+-[Video Decoding]"));
1994                 SHOW_ACS( 1, ACS_LTEE );  SHOW_ACS( 2, ACS_HLINE ); l++;
1995                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
1996                 MainBoxWrite( p_intf, l, 1, _("| video decoded    :    %5i"),
1997                         p_item->p_stats->i_decoded_video );
1998                 SHOW_ACS( 1, ACS_VLINE ); l++;
1999                 MainBoxWrite( p_intf, l, 1, _("| frames displayed :    %5i"),
2000                         p_item->p_stats->i_displayed_pictures );
2001                 SHOW_ACS( 1, ACS_VLINE ); l++;
2002                 MainBoxWrite( p_intf, l, 1, _("| frames lost      :    %5i"),
2003                         p_item->p_stats->i_lost_pictures );
2004                 SHOW_ACS( 1, ACS_VLINE ); l++;
2005                 DrawEmptyLine( p_sys->w, p_sys->i_box_y + l - p_sys->i_box_start, 1, COLS - 2 );
2006                 SHOW_ACS( 1, ACS_VLINE ); l++;
2007             }
2008             /* Audio*/
2009             if( i_audio )
2010             {
2011                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
2012                 MainBoxWrite( p_intf, l, 1, _("+-[Audio Decoding]"));
2013                 SHOW_ACS( 1, ACS_LTEE );  SHOW_ACS( 2, ACS_HLINE ); l++;
2014                 if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
2015                 MainBoxWrite( p_intf, l, 1, _("| audio decoded    :    %5i"),
2016                         p_item->p_stats->i_decoded_audio );
2017                 SHOW_ACS( 1, ACS_VLINE ); l++;
2018                 MainBoxWrite( p_intf, l, 1, _("| buffers played   :    %5i"),
2019                         p_item->p_stats->i_played_abuffers );
2020                 SHOW_ACS( 1, ACS_VLINE ); l++;
2021                 MainBoxWrite( p_intf, l, 1, _("| buffers lost     :    %5i"),
2022                         p_item->p_stats->i_lost_abuffers );
2023                 SHOW_ACS( 1, ACS_VLINE ); l++;
2024                 DrawEmptyLine( p_sys->w, p_sys->i_box_y + l - p_sys->i_box_start, 1, COLS - 2 );
2025                 SHOW_ACS( 1, ACS_VLINE ); l++;
2026             }
2027             /* Sout */
2028             if( p_sys->b_color ) wcolor_set( p_sys->w, C_CATEGORY, NULL );
2029             MainBoxWrite( p_intf, l, 1, _("+-[Streaming]"));
2030             SHOW_ACS( 1, ACS_LTEE );  SHOW_ACS( 2, ACS_HLINE ); l++;
2031             if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
2032             MainBoxWrite( p_intf, l, 1, _("| packets sent     :    %5i"), p_item->p_stats->i_sent_packets );
2033             SHOW_ACS( 1, ACS_VLINE ); l++;
2034             MainBoxWrite( p_intf, l, 1, _("| bytes sent       : %8.0f KiB"),
2035                     (float)(p_item->p_stats->i_sent_bytes)/1024 );
2036             SHOW_ACS( 1, ACS_VLINE ); l++;
2037             MainBoxWrite( p_intf, l, 1, _("\\ sending bitrate  :   %6.0f kb/s"),
2038                     (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
2039             SHOW_ACS( 1, ACS_LLCORNER ); l++;
2040             if( p_sys->b_color ) wcolor_set( p_sys->w, C_DEFAULT, NULL );
2041
2042 #undef SHOW_ACS
2043
2044             p_sys->i_box_lines_total = l;
2045             if( p_sys->i_box_start >= p_sys->i_box_lines_total )
2046                 p_sys->i_box_start = p_sys->i_box_lines_total - 1;
2047
2048             if( l - p_sys->i_box_start < p_sys->i_box_lines )
2049                 y += l - p_sys->i_box_start;
2050             else
2051                 y += p_sys->i_box_lines;
2052
2053             vlc_mutex_unlock( &p_item->p_stats->lock );
2054             vlc_mutex_unlock( &p_item->lock );
2055
2056         }
2057     }
2058     else if( p_sys->i_box_type == BOX_PLAYLIST ||
2059                p_sys->i_box_type == BOX_SEARCH ||
2060                p_sys->i_box_type == BOX_OPEN   )
2061     {
2062         /* Playlist box */
2063         int        i_start, i_stop, i_max = p_sys->i_plist_entries;
2064         int        i_item;
2065         char       *psz_title;
2066
2067         switch( p_sys->i_current_view )
2068         {
2069             case VIEW_ONELEVEL:
2070                 psz_title = strdup( _(" Playlist (All, one level) ") );
2071                 break;
2072             case VIEW_CATEGORY:
2073                 psz_title = strdup( _(" Playlist (By category) ") );
2074                 break;
2075             default:
2076                 psz_title = strdup( _(" Playlist (Manually added) ") );
2077         }
2078
2079         DrawBox( p_sys->w, y++, 0, h, COLS, psz_title, p_sys->b_color );
2080         free( psz_title );
2081
2082         if( p_sys->b_need_update || p_sys->pp_plist == NULL )
2083         {
2084             PlaylistRebuild( p_intf );
2085         }
2086         if( p_sys->b_box_plidx_follow )
2087         {
2088             FindIndex( p_intf, p_playlist );
2089         }
2090
2091         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
2092         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
2093         if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
2094
2095         if( p_sys->i_box_plidx < (h - 2)/2 )
2096         {
2097             i_start = 0;
2098             i_stop = h - 2;
2099         }
2100         else if( i_max - p_sys->i_box_plidx > (h - 2)/2 )
2101         {
2102             i_start = p_sys->i_box_plidx - (h - 2)/2;
2103             i_stop = i_start + h - 2;
2104         }
2105         else
2106         {
2107             i_stop = i_max;
2108             i_start = i_max - (h - 2);
2109         }
2110         if( i_start < 0 )
2111         {
2112             i_start = 0;
2113         }
2114         if( i_stop > i_max )
2115         {
2116             i_stop = i_max;
2117         }
2118
2119         for( i_item = i_start; i_item < i_stop; i_item++ )
2120         {
2121             bool b_selected = ( p_sys->i_box_plidx == i_item );
2122             playlist_item_t *p_item = p_sys->pp_plist[i_item]->p_item;
2123             playlist_item_t *p_node = p_sys->p_node;
2124             int c = ' ';
2125             input_thread_t *p_input2 = playlist_CurrentInput( p_playlist );
2126
2127             PL_LOCK;
2128             assert( p_item );
2129             playlist_item_t *p_current_playing_item = playlist_CurrentPlayingItem(p_playlist);
2130             if( ( p_node && p_item->p_input == p_node->p_input ) ||
2131                         ( !p_node && p_input2 && p_current_playing_item &&
2132                           p_item->p_input == p_current_playing_item->p_input ) )
2133                 c = '*';
2134             else if( p_item == p_node || ( p_item != p_node &&
2135                         PlaylistIsPlaying( p_playlist, p_item ) ) )
2136                 c = '>';
2137             PL_UNLOCK;
2138
2139             if( p_input2 )
2140                 vlc_object_release( p_input2 );
2141
2142             if( y >= y_end ) break;
2143             if( b_selected )
2144             {
2145                 attrset( A_REVERSE );
2146             }
2147             if( p_sys->b_color )
2148                 wcolor_set( p_sys->w, i_item % 3 + C_PLAYLIST_1, NULL );
2149             mvnprintw( y++, 1, COLS - 2, "%c%s", c,
2150                        p_sys->pp_plist[i_item]->psz_display );
2151             if( p_sys->b_color )
2152                 wcolor_set( p_sys->w, C_DEFAULT, NULL );
2153             if( b_selected )
2154             {
2155                 attroff( A_REVERSE );
2156             }
2157         }
2158
2159     }
2160     else
2161     {
2162         y++;
2163     }
2164     if( p_sys->i_box_type == BOX_SEARCH )
2165     {
2166         DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
2167         if( p_sys->psz_search_chain )
2168         {
2169             if( strlen( p_sys->psz_search_chain ) == 0 &&
2170                 p_sys->psz_old_search != NULL )
2171             {
2172                 /* Searching next entry */
2173                 mvnprintw( 7, 1, COLS-2, _("Find: %s"), p_sys->psz_old_search );
2174             }
2175             else
2176             {
2177                 mvnprintw( 7, 1, COLS-2, _("Find: %s"), p_sys->psz_search_chain );
2178             }
2179         }
2180     }
2181     if( p_sys->i_box_type == BOX_OPEN )
2182     {
2183         if( p_sys->psz_open_chain )
2184         {
2185             DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
2186             mvnprintw( 7, 1, COLS-2, _("Open: %s"), p_sys->psz_open_chain );
2187         }
2188     }
2189
2190     while( y < y_end )
2191     {
2192         DrawEmptyLine( p_sys->w, y++, 1, COLS - 2 );
2193     }
2194
2195     refresh();
2196
2197     *t_last_refresh = time( 0 );
2198 }
2199
2200 static playlist_item_t *PlaylistGetRoot( intf_thread_t *p_intf )
2201 {
2202     intf_sys_t *p_sys = p_intf->p_sys;
2203     playlist_t *p_playlist = pl_Get( p_intf );
2204     playlist_item_t *p_item;
2205
2206     switch( p_sys->i_current_view )
2207     {
2208         case VIEW_CATEGORY:
2209             p_item = p_playlist->p_root_category;
2210             break;
2211         default:
2212             p_item = p_playlist->p_root_onelevel;
2213     }
2214     return p_item;
2215 }
2216
2217 static void PlaylistRebuild( intf_thread_t *p_intf )
2218 {
2219     intf_sys_t *p_sys = p_intf->p_sys;
2220     playlist_t *p_playlist = pl_Get( p_intf );
2221
2222     PL_LOCK;
2223
2224     /* First clear the old one */
2225     PlaylistDestroy( p_intf );
2226
2227     /* Build the new one */
2228     PlaylistAddNode( p_intf, PlaylistGetRoot( p_intf ), 0, "" );
2229
2230     p_sys->b_need_update = false;
2231
2232     PL_UNLOCK;
2233 }
2234
2235 static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
2236                              int i, const char *c )
2237 {
2238     intf_sys_t *p_sys = p_intf->p_sys;
2239     playlist_item_t *p_child;
2240     int k;
2241
2242     for( k = 0; k < p_node->i_children; k++ )
2243     {
2244         char *psz_display;
2245         p_child = p_node->pp_children[k];
2246         char *psz_name = input_item_GetTitleFbName( p_child->p_input );
2247
2248         if( c && *c )
2249         {
2250             if( asprintf( &psz_display, "%s%c-%s", c,
2251                     k == p_node->i_children - 1 ?  '`' : '|', psz_name ) == -1 )
2252                 return;
2253         }
2254         else
2255         {
2256             if( asprintf( &psz_display, " %s", psz_name ) == -1 )
2257                 return;
2258         }
2259         free( psz_name );
2260         struct pl_item_t *p_pl_item = malloc( sizeof( struct pl_item_t ) );
2261         if( !p_pl_item )
2262             return;
2263         p_pl_item->psz_display = psz_display;
2264         p_pl_item->p_item = p_child;
2265         INSERT_ELEM( p_sys->pp_plist, p_sys->i_plist_entries,
2266                      p_sys->i_plist_entries, p_pl_item );
2267         i++;
2268
2269         if( p_child->i_children > 0 )
2270         {
2271             char *psz_tmp;
2272             if( asprintf( &psz_tmp, "%s%c ", c,
2273                      k == p_node->i_children - 1 ? ' ' : '|' ) == -1 )
2274                 return;
2275             PlaylistAddNode( p_intf, p_child, i,
2276                              strlen( c ) ? psz_tmp : " " );
2277             free( psz_tmp );
2278         }
2279     }
2280 }
2281
2282 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
2283                             vlc_value_t oval, vlc_value_t nval, void *param )
2284 {
2285     VLC_UNUSED(p_this); VLC_UNUSED(psz_variable);
2286     VLC_UNUSED(oval); VLC_UNUSED(nval);
2287     intf_thread_t *p_intf = (intf_thread_t *)param;
2288     playlist_t *p_playlist = pl_Get( p_intf );
2289     p_intf->p_sys->b_need_update = true;
2290     p_intf->p_sys->p_node = playlist_CurrentPlayingItem(p_playlist) ? playlist_CurrentPlayingItem(p_playlist)->p_parent : NULL;
2291     return VLC_SUCCESS;
2292 }
2293
2294 /* Playlist suxx */
2295 /* This function have to be called with the playlist locked */
2296 static inline bool PlaylistIsPlaying( playlist_t *p_playlist,
2297                                       playlist_item_t *p_item )
2298 {
2299     playlist_item_t *p_played_item = playlist_CurrentPlayingItem( p_playlist );
2300     return( p_item != NULL && p_played_item != NULL &&
2301             p_item->p_input != NULL && p_played_item->p_input != NULL &&
2302             p_item->p_input->i_id == p_played_item->p_input->i_id );
2303 }
2304
2305 static void FindIndex( intf_thread_t *p_intf, playlist_t *p_playlist )
2306 {
2307     intf_sys_t *p_sys = p_intf->p_sys;
2308     int i;
2309
2310     if( p_sys->i_box_plidx < p_sys->i_plist_entries && p_sys->i_box_plidx >= 0 )
2311     {
2312         playlist_item_t *p_item = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
2313         PL_LOCK;
2314         if( ( p_item->i_children == 0 && p_item == p_sys->p_node ) ||
2315                 PlaylistIsPlaying( p_playlist, p_item ) )
2316         {
2317             PL_UNLOCK;
2318             return;
2319         }
2320     }
2321
2322     for( i = 0; i < p_sys->i_plist_entries; i++ )
2323     {
2324         playlist_item_t *p_item = p_sys->pp_plist[i]->p_item;
2325         if( ( p_item->i_children == 0 && p_item == p_sys->p_node ) ||
2326                 PlaylistIsPlaying( p_playlist, p_sys->pp_plist[i]->p_item ) )
2327         {
2328             p_sys->i_box_plidx = i;
2329             break;
2330         }
2331     }
2332     PL_UNLOCK;
2333 }
2334
2335 static void PlaylistDestroy( intf_thread_t *p_intf )
2336 {
2337     intf_sys_t *p_sys = p_intf->p_sys;
2338
2339     while( p_sys->i_plist_entries )
2340     {
2341         struct pl_item_t *p_pl_item = p_sys->pp_plist[0];
2342         free( p_pl_item->psz_display );
2343         REMOVE_ELEM( p_sys->pp_plist, p_sys->i_plist_entries, 0 );
2344         free( p_pl_item );
2345     }
2346     p_sys->pp_plist = NULL;
2347 }
2348
2349 static void Eject( intf_thread_t *p_intf )
2350 {
2351     char *psz_device = NULL, *psz_parser, *psz_name;
2352
2353     /*
2354      * Get the active input
2355      * Determine whether we can eject a media, ie it's a DVD, VCD or CD-DA
2356      * If it's neither of these, then return
2357      */
2358
2359     playlist_t * p_playlist = pl_Get( p_intf );
2360     PL_LOCK;
2361
2362     if( playlist_CurrentPlayingItem(p_playlist) == NULL )
2363     {
2364         PL_UNLOCK;
2365         return;
2366     }
2367
2368     psz_name = playlist_CurrentPlayingItem(p_playlist)->p_input->psz_name;
2369
2370     if( psz_name )
2371     {
2372         if( !strncmp(psz_name, "dvd://", 6) )
2373         {
2374             switch( psz_name[6] )
2375             {
2376             case '\0':
2377             case '@':
2378                 psz_device = config_GetPsz( p_intf, "dvd" );
2379                 break;
2380             default:
2381                 /* Omit the first MRL-selector characters */
2382                 psz_device = strdup( psz_name + strlen("dvd://" ) );
2383                 break;
2384             }
2385         }
2386         else if( !strncmp(psz_name, "vcd://", 6) )
2387         {
2388             switch( psz_name[6] )
2389             {
2390             case '\0':
2391             case '@':
2392                 psz_device = config_GetPsz( p_intf, "vcd" );
2393                 break;
2394             default:
2395                 /* Omit the beginning MRL-selector characters */
2396                 psz_device = strdup( psz_name + 6 );
2397                 break;
2398             }
2399         }
2400         else if( !strncmp(psz_name, "cdda://", 7 ) )
2401         {
2402             switch( psz_name[7] )
2403             {
2404             case '\0':
2405             case '@':
2406                 psz_device = config_GetPsz( p_intf, "cd-audio" );
2407                 break;
2408             default:
2409                 /* Omit the beginning MRL-selector characters */
2410                 psz_device = strdup( psz_name + 7 );
2411                 break;
2412             }
2413         }
2414         else
2415         {
2416             psz_device = strdup( psz_name );
2417         }
2418     }
2419
2420     PL_UNLOCK;
2421
2422     if( psz_device == NULL )
2423     {
2424         return;
2425     }
2426
2427     /* Remove what we have after @ */
2428     for( psz_parser = psz_device ; *psz_parser ; psz_parser++ )
2429     {
2430         if( *psz_parser == '@' )
2431         {
2432             *psz_parser = '\0';
2433             break;
2434         }
2435     }
2436
2437     /* If there's a stream playing, we aren't allowed to eject ! */
2438     if( p_intf->p_sys->p_input == NULL )
2439     {
2440         msg_Dbg( p_intf, "ejecting %s", psz_device );
2441
2442         intf_Eject( p_intf, psz_device );
2443     }
2444
2445     free( psz_device );
2446 }
2447
2448 static int comp_dir_entries( const void *pp_dir_entry1,
2449                              const void *pp_dir_entry2 )
2450 {
2451     struct dir_entry_t *p_dir_entry1 = *(struct dir_entry_t**)pp_dir_entry1;
2452     struct dir_entry_t *p_dir_entry2 = *(struct dir_entry_t**)pp_dir_entry2;
2453     if ( p_dir_entry1->b_file == p_dir_entry2->b_file ) {
2454         return strcasecmp( p_dir_entry1->psz_path, p_dir_entry2->psz_path );
2455     }
2456     else
2457     {
2458         return ( p_dir_entry1->b_file ? 1 : -1 );
2459     }
2460 }
2461
2462 static void ReadDir( intf_thread_t *p_intf )
2463 {
2464     intf_sys_t *p_sys = p_intf->p_sys;
2465     DIR *p_current_dir;
2466     int i;
2467
2468     if( p_sys->psz_current_dir && *p_sys->psz_current_dir )
2469     {
2470         char *psz_entry;
2471
2472         /* Open the dir */
2473         p_current_dir = vlc_opendir( p_sys->psz_current_dir );
2474
2475         if( p_current_dir == NULL )
2476         {
2477             /* something went bad, get out of here ! */
2478             msg_Warn( p_intf, "cannot open directory `%s' (%m)",
2479                       p_sys->psz_current_dir );
2480             return;
2481         }
2482
2483         /* Clean the old shit */
2484         for( i = 0; i < p_sys->i_dir_entries; i++ )
2485         {
2486             struct dir_entry_t *p_dir_entry = p_sys->pp_dir_entries[i];
2487             free( p_dir_entry->psz_path );
2488             REMOVE_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries, i );
2489             free( p_dir_entry );
2490         }
2491         p_sys->pp_dir_entries = NULL;
2492         p_sys->i_dir_entries = 0;
2493
2494         /* while we still have entries in the directory */
2495         while( ( psz_entry = vlc_readdir( p_current_dir ) ) != NULL )
2496         {
2497 #if defined( S_ISDIR )
2498             struct stat stat_data;
2499 #endif
2500             struct dir_entry_t *p_dir_entry;
2501             char *psz_uri;
2502
2503             if( p_sys->b_show_hidden_files == false &&
2504                 ( strlen( psz_entry ) && psz_entry[0] == '.' ) &&
2505                 strcmp( psz_entry, ".." ) )
2506             {
2507                 free( psz_entry );
2508                 continue;
2509             }
2510
2511             if( asprintf( &psz_uri, "%s/%s", p_sys->psz_current_dir,
2512                         psz_entry ) == -1)
2513             {
2514                 free( psz_entry );
2515                 continue;
2516             }
2517
2518             if( !( p_dir_entry = malloc( sizeof( struct dir_entry_t) ) ) )
2519             {
2520                 free( psz_uri );
2521                 free( psz_entry );
2522                 continue;
2523             }
2524
2525 #if defined( S_ISDIR )
2526             if( !vlc_stat( psz_uri, &stat_data )
2527              && S_ISDIR(stat_data.st_mode) )
2528 /*#elif defined( DT_DIR )
2529             if( p_dir_content->d_type & DT_DIR )*/
2530 #else
2531             if( 0 )
2532 #endif
2533             {
2534                 p_dir_entry->psz_path = strdup( psz_entry );
2535                 p_dir_entry->b_file = false;
2536                 INSERT_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries,
2537                      p_sys->i_dir_entries, p_dir_entry );
2538             }
2539             else
2540             {
2541                 p_dir_entry->psz_path = strdup( psz_entry );
2542                 p_dir_entry->b_file = true;
2543                 INSERT_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries,
2544                      p_sys->i_dir_entries, p_dir_entry );
2545             }
2546
2547             free( psz_uri );
2548             free( psz_entry );
2549         }
2550
2551         /* Sort */
2552         qsort( p_sys->pp_dir_entries, p_sys->i_dir_entries,
2553                sizeof(struct dir_entry_t*), &comp_dir_entries );
2554
2555         closedir( p_current_dir );
2556         return;
2557     }
2558     else
2559     {
2560         msg_Dbg( p_intf, "no current dir set" );
2561         return;
2562     }
2563 }
2564
2565 static void PlayPause( intf_thread_t *p_intf )
2566 {
2567     input_thread_t *p_input = p_intf->p_sys->p_input;
2568     playlist_t *p_playlist = pl_Get( p_intf );
2569     vlc_value_t val;
2570
2571     if( p_input )
2572     {
2573         var_Get( p_input, "state", &val );
2574         if( val.i_int != PAUSE_S )
2575         {
2576             val.i_int = PAUSE_S;
2577         }
2578         else
2579         {
2580             val.i_int = PLAYING_S;
2581         }
2582         var_Set( p_input, "state", val );
2583     }
2584     else
2585         playlist_Play( p_playlist );
2586 }
2587
2588 /****************************************************************************
2589  *
2590  ****************************************************************************/
2591 static void DrawBox( WINDOW *win, int y, int x, int h, int w, const char *title, bool b_color )
2592 {
2593     int i;
2594     int i_len;
2595
2596     if( w > 3 && h > 2 )
2597     {
2598         if( b_color )
2599             wcolor_set( win, C_BOX, NULL );
2600         if( title == NULL ) title = "";
2601         i_len = strlen( title );
2602
2603         if( i_len > w - 2 ) i_len = w - 2;
2604
2605         mvwaddch( win, y, x,    ACS_ULCORNER );
2606         mvwhline( win, y, x+1,  ACS_HLINE, ( w-i_len-2)/2 );
2607         mvwprintw( win,y, x+1+(w-i_len-2)/2, "%s", title );
2608         mvwhline( win, y, x+(w-i_len)/2+i_len,  ACS_HLINE, w - 1 - ((w-i_len)/2+i_len) );
2609         mvwaddch( win, y, x+w-1,ACS_URCORNER );
2610
2611         for( i = 0; i < h-2; i++ )
2612         {
2613             mvwaddch( win, y+i+1, x,     ACS_VLINE );
2614             mvwaddch( win, y+i+1, x+w-1, ACS_VLINE );
2615         }
2616
2617         mvwaddch( win, y+h-1, x,     ACS_LLCORNER );
2618         mvwhline( win, y+h-1, x+1,   ACS_HLINE, w - 2 );
2619         mvwaddch( win, y+h-1, x+w-1, ACS_LRCORNER );
2620         if( b_color )
2621             wcolor_set( win, C_DEFAULT, NULL );
2622     }
2623 }
2624
2625 static void DrawEmptyLine( WINDOW *win, int y, int x, int w )
2626 {
2627     if( w > 0 )
2628     {
2629         mvwhline( win, y, x, ' ', w );
2630     }
2631 }
2632
2633 static void DrawLine( WINDOW *win, int y, int x, int w )
2634 {
2635     if( w > 0 )
2636     {
2637         attrset( A_REVERSE );
2638         mvwhline( win, y, x, ' ', w );
2639         attroff( A_REVERSE );
2640     }
2641 }