]> git.sesse.net Git - vlc/blob - modules/gui/ncurses.c
Input access locking, part 3 (final).
[vlc] / modules / gui / ncurses.c
1 /*****************************************************************************
2  * ncurses.c : NCurses plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2006 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  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include <vlc/vlc.h>
31
32 #include <errno.h>                                                 /* ENOMEM */
33 #include <time.h>
34
35 #include <curses.h>
36
37 #include <vlc_interface.h>
38 #include <vlc_vout.h>
39 #include <vlc_aout.h>
40 #include <vlc_charset.h>
41 #include <vlc_input.h>
42 #include <vlc_playlist.h>
43
44 #ifdef HAVE_SYS_STAT_H
45 #   include <sys/stat.h>
46 #endif
47 #if (!defined( WIN32 ) || defined(__MINGW32__))
48 /* Mingw has its own version of dirent */
49 #   include <dirent.h>
50 #endif
51
52 #ifdef HAVE_CDDAX
53 #define CDDA_MRL "cddax://"
54 #else
55 #define CDDA_MRL "cdda://"
56 #endif
57
58 #ifdef HAVE_VCDX
59 #define VCD_MRL "vcdx://"
60 #else
61 #define VCD_MRL "vcdx://"
62 #endif
63
64 #define SEARCH_CHAIN_SIZE 20
65 #define OPEN_CHAIN_SIZE 50
66
67 /*****************************************************************************
68  * Local prototypes.
69  *****************************************************************************/
70 static int  Open           ( vlc_object_t * );
71 static void Close          ( vlc_object_t * );
72
73 static void Run            ( intf_thread_t * );
74 static void PlayPause      ( intf_thread_t * );
75 static void Eject          ( intf_thread_t * );
76
77 static int  HandleKey      ( intf_thread_t *, int );
78 static void Redraw         ( intf_thread_t *, time_t * );
79
80 static playlist_item_t *PlaylistGetRoot( intf_thread_t * );
81 static void PlaylistRebuild( intf_thread_t * );
82 static void PlaylistAddNode( intf_thread_t *, playlist_item_t *, int, const char *);
83 static void PlaylistDestroy( intf_thread_t * );
84 static int  PlaylistChanged( vlc_object_t *, const char *, vlc_value_t,
85                              vlc_value_t, void * );
86 static inline vlc_bool_t PlaylistIsPlaying( intf_thread_t *,
87                                             playlist_item_t * );
88 static void FindIndex      ( intf_thread_t * );
89 static void SearchPlaylist ( intf_thread_t *, char * );
90 static int  SubSearchPlaylist( intf_thread_t *, char *, int, int );
91
92 static void ManageSlider   ( intf_thread_t * );
93 static void ReadDir        ( intf_thread_t * );
94
95 /*****************************************************************************
96  * Module descriptor
97  *****************************************************************************/
98
99 #define BROWSE_TEXT N_("Filebrowser starting point")
100 #define BROWSE_LONGTEXT N_( \
101     "This option allows you to specify the directory the ncurses filebrowser " \
102     "will show you initially.")
103
104 vlc_module_begin();
105     set_shortname( "Ncurses" );
106     set_description( _("Ncurses interface") );
107     set_capability( "interface", 10 );
108     set_category( CAT_INTERFACE );
109     set_subcategory( SUBCAT_INTERFACE_MAIN );
110     set_callbacks( Open, Close );
111     add_shortcut( "curses" );
112     add_directory( "browse-dir", NULL, NULL, BROWSE_TEXT, BROWSE_LONGTEXT, VLC_FALSE );
113 vlc_module_end();
114
115 /*****************************************************************************
116  * intf_sys_t: description and status of ncurses interface
117  *****************************************************************************/
118 enum
119 {
120     BOX_NONE,
121     BOX_HELP,
122     BOX_INFO,
123     BOX_LOG,
124     BOX_PLAYLIST,
125     BOX_SEARCH,
126     BOX_OPEN,
127     BOX_BROWSE
128 };
129 enum
130 {
131     VIEW_CATEGORY,
132     VIEW_ONELEVEL
133 };
134 struct dir_entry_t
135 {
136     vlc_bool_t  b_file;
137     char        *psz_path;
138 };
139 struct pl_item_t
140 {
141     playlist_item_t *p_item;
142     char            *psz_display;
143 };
144 struct intf_sys_t
145 {
146     playlist_t     *p_playlist;
147     input_thread_t *p_input;
148
149     float           f_slider;
150     float           f_slider_old;
151
152     WINDOW          *w;
153
154     int             i_box_type;
155     int             i_box_y;
156     int             i_box_lines;
157     int             i_box_lines_total;
158     int             i_box_start;
159
160     int             i_box_plidx;    /* Playlist index */
161     int             b_box_plidx_follow;
162     playlist_item_t *p_plnode;      /* Playlist node */
163     int             i_box_bidx;     /* browser index */
164
165     int             b_box_cleared;
166
167     msg_subscription_t* p_sub;                  /* message bank subscription */
168
169     char            *psz_search_chain;          /* for playlist searching    */
170     char            *psz_old_search;            /* for searching next        */
171     int             i_before_search;
172
173     char            *psz_open_chain;
174     char             psz_partial_keys[7];
175
176     char            *psz_current_dir;
177     int             i_dir_entries;
178     struct dir_entry_t  **pp_dir_entries;
179     vlc_bool_t      b_show_hidden_files;
180
181     int             i_current_view;             /* playlist view             */
182     struct pl_item_t    **pp_plist;
183     int             i_plist_entries;
184     vlc_bool_t      b_need_update;              /* for playlist view */
185 };
186
187 static void DrawBox( WINDOW *win, int y, int x, int h, int w, const char *title );
188 static void DrawLine( WINDOW *win, int y, int x, int w );
189 static void DrawEmptyLine( WINDOW *win, int y, int x, int w );
190
191 /*****************************************************************************
192  * Open: initialize and create window
193  *****************************************************************************/
194 static int Open( vlc_object_t *p_this )
195 {
196     intf_thread_t *p_intf = (intf_thread_t *)p_this;
197     intf_sys_t    *p_sys;
198     vlc_value_t    val;
199
200     /* Allocate instance and initialize some members */
201     p_sys = p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
202     p_sys->p_playlist = NULL;
203     p_sys->p_input = NULL;
204     p_sys->f_slider = 0.0;
205     p_sys->f_slider_old = 0.0;
206     p_sys->i_box_type = BOX_PLAYLIST;
207     p_sys->i_box_lines = 0;
208     p_sys->i_box_start= 0;
209     p_sys->i_box_lines_total = 0;
210     p_sys->b_box_plidx_follow = VLC_TRUE;
211     p_sys->b_box_cleared = VLC_FALSE;
212     p_sys->i_box_plidx = 0;
213     p_sys->p_plnode = NULL;
214     p_sys->i_box_bidx = 0;
215     p_sys->p_sub = msg_Subscribe( p_intf, MSG_QUEUE_NORMAL );
216     memset( p_sys->psz_partial_keys, 0, sizeof( p_sys->psz_partial_keys ) );
217
218     /* Initialize the curses library */
219     p_sys->w = initscr();
220     keypad( p_sys->w, TRUE );
221     /* Don't do NL -> CR/NL */
222     nonl();
223     /* Take input chars one at a time */
224     cbreak();
225     /* Don't echo */
226     noecho();
227
228     curs_set(0);
229     timeout(0);
230
231     clear();
232
233     /* exported function */
234     p_intf->pf_run = Run;
235
236     /* Set quiet mode */
237     val.i_int = -1;
238     var_Set( p_intf->p_libvlc, "verbose", val );
239
240     /* Set defaul playlist view */
241     p_sys->i_current_view = VIEW_CATEGORY;
242     p_sys->pp_plist = NULL;
243     p_sys->i_plist_entries = 0;
244     p_sys->b_need_update = VLC_FALSE;
245
246     /* Initialize search chain */
247     p_sys->psz_search_chain = (char *)malloc( SEARCH_CHAIN_SIZE + 1 );
248     p_sys->psz_old_search = NULL;
249     p_sys->i_before_search = 0;
250
251     /* Initialize open chain */
252     p_sys->psz_open_chain = (char *)malloc( OPEN_CHAIN_SIZE + 1 );
253
254     /* Initialize browser options */
255     var_Create( p_intf, "browse-dir", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
256     var_Get( p_intf, "browse-dir", &val);
257
258     if( val.psz_string && *val.psz_string )
259     {
260         p_sys->psz_current_dir = strdup( val.psz_string );
261         free( val.psz_string );
262     }
263     else
264     {
265         p_sys->psz_current_dir = strdup( p_intf->p_libvlc->psz_homedir );
266     }
267
268     p_sys->i_dir_entries = 0;
269     p_sys->pp_dir_entries = NULL;
270     p_sys->b_show_hidden_files = VLC_FALSE;
271     ReadDir( p_intf );
272
273     return VLC_SUCCESS;
274 }
275
276 /*****************************************************************************
277  * Close: destroy interface window
278  *****************************************************************************/
279 static void Close( vlc_object_t *p_this )
280 {
281     intf_thread_t *p_intf = (intf_thread_t *)p_this;
282     intf_sys_t    *p_sys = p_intf->p_sys;
283     int i;
284
285     var_DelCallback( p_sys->p_playlist, "intf-change", PlaylistChanged,
286                      p_intf );
287     var_DelCallback( p_sys->p_playlist, "item-append", PlaylistChanged,
288                      p_intf );
289
290     PlaylistDestroy( p_intf );
291
292     for( i = 0; i < p_sys->i_dir_entries; i++ )
293     {
294         struct dir_entry_t *p_dir_entry = p_sys->pp_dir_entries[i];
295         if( p_dir_entry->psz_path ) free( p_dir_entry->psz_path );
296         REMOVE_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries, i );
297         if( p_dir_entry ) free( p_dir_entry );
298     }
299     p_sys->pp_dir_entries = NULL;
300
301     if( p_sys->psz_current_dir ) free( p_sys->psz_current_dir );
302     if( p_sys->psz_search_chain ) free( p_sys->psz_search_chain );
303     if( p_sys->psz_old_search ) free( p_sys->psz_old_search );
304     if( p_sys->psz_open_chain ) free( p_sys->psz_open_chain );
305
306     if( p_sys->p_input )
307     {
308         vlc_object_release( p_sys->p_input );
309     }
310     if( p_sys->p_playlist )
311     {
312         vlc_object_release( p_sys->p_playlist );
313     }
314
315     /* Close the ncurses interface */
316     endwin();
317
318     msg_Unsubscribe( p_intf, p_sys->p_sub );
319
320     /* Destroy structure */
321     free( p_sys );
322 }
323
324 /*****************************************************************************
325  * Run: ncurses thread
326  *****************************************************************************/
327 static void Run( intf_thread_t *p_intf )
328 {
329     intf_sys_t    *p_sys = p_intf->p_sys;
330
331     int i_key;
332     time_t t_last_refresh;
333
334     /*
335      * force drawing the interface for the first time
336      */
337     t_last_refresh = ( time( 0 ) - 1);
338
339     while( !intf_ShouldDie( p_intf ) )
340     {
341         msleep( INTF_IDLE_SLEEP );
342
343         /* Update the input */
344         if( p_sys->p_playlist == NULL )
345         {
346             p_sys->p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
347                                                  FIND_ANYWHERE );
348             if( p_sys->p_playlist )
349             {
350                 var_AddCallback( p_sys->p_playlist, "intf-change",
351                                  PlaylistChanged, p_intf );
352                 var_AddCallback( p_sys->p_playlist, "item-append",
353                                  PlaylistChanged, p_intf );
354             }
355         }
356         if( p_sys->p_playlist )
357         {
358             vlc_mutex_lock( &p_sys->p_playlist->object_lock );
359             if( p_sys->p_input == NULL )
360             {
361                 p_sys->p_input = p_sys->p_playlist->p_input;
362                 if( p_sys->p_input )
363                 {
364                     if( !p_sys->p_input->b_dead )
365                     {
366                         vlc_object_yield( p_sys->p_input );
367                     }
368                 }
369             }
370             else if( p_sys->p_input->b_dead )
371             {
372                 vlc_object_release( p_sys->p_input );
373                 p_sys->p_input = NULL;
374                 p_sys->f_slider = p_sys->f_slider_old = 0.0;
375                 p_sys->b_box_cleared = VLC_FALSE;
376             }
377             vlc_mutex_unlock( &p_sys->p_playlist->object_lock );
378         }
379
380         if( p_sys->b_box_plidx_follow && p_sys->p_playlist->status.p_item )
381         {
382             FindIndex( p_intf );
383         }
384
385         while( ( i_key = getch() ) != -1 )
386         {
387             /*
388              * HandleKey returns 1 if the screen needs to be redrawn
389              */
390             if( HandleKey( p_intf, i_key ) )
391             {
392                 Redraw( p_intf, &t_last_refresh );
393             }
394         }
395         /* Hack */
396         if( p_sys->f_slider > 0.0001 && !p_sys->b_box_cleared )
397         {
398             clear();
399             Redraw( p_intf, &t_last_refresh );
400             p_sys->b_box_cleared = VLC_TRUE;
401         }
402
403         /*
404          * redraw the screen every second
405          */
406         if( (time(0) - t_last_refresh) >= 1 )
407         {
408             ManageSlider( p_intf );
409             Redraw( p_intf, &t_last_refresh );
410         }
411     }
412 }
413
414 /* following functions are local */
415
416 static char *KeyToUTF8( int i_key, char *psz_part )
417 {
418     char *psz_utf8, *psz;
419     int len = strlen( psz_part );
420     if( len == 6 )
421     {
422         /* overflow error - should not happen */
423         memset( psz_part, 0, 6 );
424         return NULL;
425     }
426
427     psz_part[len] = (char)i_key;
428
429     psz_utf8 = FromLocaleDup( psz_part );
430
431     /* Ugly check for incomplete bytes sequences
432      * (in case of non-UTF8 multibyte local encoding) */
433     for( psz = psz_utf8; *psz; psz++ )
434         if( ( *psz == '?' ) && ( *psz_utf8 != '?' ) )
435         {
436             /* incomplete bytes sequence detected
437              * (VLC core inserted dummy question marks) */
438             free( psz_utf8 );
439             return NULL;
440         }
441
442     /* Check for incomplete UTF8 bytes sequence */
443     if( EnsureUTF8( psz_utf8 ) == NULL )
444     {
445         free( psz_utf8 );
446         return NULL;
447     }
448
449     memset( psz_part, 0, 6 );
450     return psz_utf8;
451 }
452
453 static inline int RemoveLastUTF8Entity( char *psz, int len )
454 {
455     while( len && ( (psz[--len] & 0xc0) == 0x80 ) );
456                        /* UTF8 continuation byte */
457
458     psz[len] = '\0';
459     return len;
460 }
461
462 static int HandleKey( intf_thread_t *p_intf, int i_key )
463 {
464     intf_sys_t *p_sys = p_intf->p_sys;
465     vlc_value_t val;
466
467     if( p_sys->i_box_type == BOX_PLAYLIST && p_sys->p_playlist )
468     {
469         int b_ret = VLC_TRUE;
470         vlc_bool_t b_box_plidx_follow = VLC_FALSE;
471
472         switch( i_key )
473         {
474             vlc_value_t val;
475             /* Playlist Settings */
476             case 'r':
477                 var_Get( p_sys->p_playlist, "random", &val );
478                 val.b_bool = !val.b_bool;
479                 var_Set( p_sys->p_playlist, "random", val );
480                 return 1;
481             case 'l':
482                 var_Get( p_sys->p_playlist, "loop", &val );
483                 val.b_bool = !val.b_bool;
484                 var_Set( p_sys->p_playlist, "loop", val );
485                 return 1;
486             case 'R':
487                 var_Get( p_sys->p_playlist, "repeat", &val );
488                 val.b_bool = !val.b_bool;
489                 var_Set( p_sys->p_playlist, "repeat", val );
490                 return 1;
491
492             /* Playlist sort */
493             case 'o':
494                 playlist_RecursiveNodeSort( p_sys->p_playlist,
495                                             PlaylistGetRoot( p_intf ),
496                                             SORT_TITLE_NODES_FIRST, ORDER_NORMAL );
497                 p_sys->b_need_update = VLC_TRUE;
498                 return 1;
499             case 'O':
500                 playlist_RecursiveNodeSort( p_sys->p_playlist,
501                                             PlaylistGetRoot( p_intf ),
502                                             SORT_TITLE_NODES_FIRST, ORDER_REVERSE );
503                 p_sys->b_need_update = VLC_TRUE;
504                 return 1;
505
506             /* Playlist view */
507             case 'v':
508                 switch( p_sys->i_current_view )
509                 {
510                     case VIEW_CATEGORY:
511                         p_sys->i_current_view = VIEW_ONELEVEL;
512                         break;
513                     default:
514                         p_sys->i_current_view = VIEW_CATEGORY;
515                 }
516                 //p_sys->b_need_update = VLC_TRUE;
517                 PlaylistRebuild( p_intf );
518                 return 1;
519
520             /* Playlist navigation */
521             case KEY_HOME:
522                 p_sys->i_box_plidx = 0;
523                 break;
524             case KEY_END:
525                 p_sys->i_box_plidx = p_sys->p_playlist->items.i_size - 1;
526                 break;
527             case KEY_UP:
528                 p_sys->i_box_plidx--;
529                 break;
530             case KEY_DOWN:
531                 p_sys->i_box_plidx++;
532                 break;
533             case KEY_PPAGE:
534                 p_sys->i_box_plidx -= p_sys->i_box_lines;
535                 break;
536             case KEY_NPAGE:
537                 p_sys->i_box_plidx += p_sys->i_box_lines;
538                 break;
539             case 'D':
540             case KEY_BACKSPACE:
541             case KEY_DC:
542             {
543                 playlist_t *p_playlist = p_sys->p_playlist;
544                 playlist_item_t *p_item;
545
546                 vlc_mutex_lock( &p_playlist->object_lock );
547                 p_item = p_sys->pp_plist[p_sys->i_box_plidx]->p_item;
548                 if( p_item->i_children == -1 )
549                 {
550                     playlist_DeleteFromInput( p_playlist,
551                                               p_item->p_input->i_id, VLC_TRUE );
552                 }
553                 else
554                 {
555                     playlist_NodeDelete( p_playlist, p_item,
556                                          VLC_TRUE , VLC_FALSE );
557                 }
558                 vlc_mutex_unlock( &p_playlist->object_lock );
559                 p_sys->b_need_update = VLC_TRUE;
560
561                 break;
562             }
563
564             case KEY_ENTER:
565             case 0x0d:
566                 if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item->i_children
567                         == -1 )
568                 {
569                     playlist_Control( p_sys->p_playlist, PLAYLIST_VIEWPLAY,
570                                       VLC_TRUE, NULL,
571                         p_sys->pp_plist[p_sys->i_box_plidx]->p_item );
572                 }
573                 else
574                 {
575                     playlist_Control( p_sys->p_playlist, PLAYLIST_VIEWPLAY,
576                         VLC_TRUE,
577                         p_sys->pp_plist[p_sys->i_box_plidx]->p_item,
578                         NULL );
579                 }
580                 b_box_plidx_follow = VLC_TRUE;
581                 break;
582             default:
583                 b_ret = VLC_FALSE;
584                 break;
585         }
586
587         if( b_ret )
588         {
589             int i_max = p_sys->i_plist_entries;
590             if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
591             if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
592             if( PlaylistIsPlaying( p_intf,
593                     p_sys->pp_plist[p_sys->i_box_plidx]->p_item ) )
594                 b_box_plidx_follow = VLC_TRUE;
595             p_sys->b_box_plidx_follow = b_box_plidx_follow;
596             return 1;
597         }
598     }
599     if( p_sys->i_box_type == BOX_BROWSE )
600     {
601         vlc_bool_t b_ret = VLC_TRUE;
602         /* Browser navigation */
603         switch( i_key )
604         {
605             case KEY_HOME:
606                 p_sys->i_box_bidx = 0;
607                 break;
608             case KEY_END:
609                 p_sys->i_box_bidx = p_sys->i_dir_entries - 1;
610                 break;
611             case KEY_UP:
612                 p_sys->i_box_bidx--;
613                 break;
614             case KEY_DOWN:
615                 p_sys->i_box_bidx++;
616                 break;
617             case KEY_PPAGE:
618                 p_sys->i_box_bidx -= p_sys->i_box_lines;
619                 break;
620             case KEY_NPAGE:
621                 p_sys->i_box_bidx += p_sys->i_box_lines;
622                 break;
623             case '.': /* Toggle show hidden files */
624                 p_sys->b_show_hidden_files = ( p_sys->b_show_hidden_files ==
625                     VLC_TRUE ? VLC_FALSE : VLC_TRUE );
626                 ReadDir( p_intf );
627                 break;
628
629             case KEY_ENTER:
630             case 0x0d:
631             case ' ':
632                 if( p_sys->pp_dir_entries[p_sys->i_box_bidx]->b_file || i_key == ' ' )
633                 {
634                     int i_size_entry = strlen( p_sys->psz_current_dir ) +
635                                        strlen( p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path ) + 2;
636                     char *psz_uri = (char *)malloc( sizeof(char)*i_size_entry);
637
638                     sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir, p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path );
639                     /* XXX
640                     playlist_Add( p_sys->p_playlist, psz_uri,
641                                   psz_uri,
642                                   PLAYLIST_APPEND, PLAYLIST_END );
643                     */
644                     p_sys->i_box_type = BOX_PLAYLIST;
645                     free( psz_uri );
646                 }
647                 else
648                 {
649                     int i_size_entry = strlen( p_sys->psz_current_dir ) +
650                                        strlen( p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path ) + 2;
651                     char *psz_uri = (char *)malloc( sizeof(char)*i_size_entry);
652
653                     sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir, p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path );
654
655                     p_sys->psz_current_dir = strdup( psz_uri );
656                     ReadDir( p_intf );
657                     free( psz_uri );
658                 }
659                 break;
660             default:
661                 b_ret = VLC_FALSE;
662                 break;
663         }
664         if( b_ret )
665         {
666             if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_bidx = p_sys->i_dir_entries - 1;
667             if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
668             return 1;
669         }
670     }
671     else if( p_sys->i_box_type == BOX_HELP || p_sys->i_box_type == BOX_INFO )
672     {
673         switch( i_key )
674         {
675             case KEY_HOME:
676                 p_sys->i_box_start = 0;
677                 return 1;
678             case KEY_END:
679                 p_sys->i_box_start = p_sys->i_box_lines_total - 1;
680                 return 1;
681             case KEY_UP:
682                 if( p_sys->i_box_start > 0 ) p_sys->i_box_start--;
683                 return 1;
684             case KEY_DOWN:
685                 if( p_sys->i_box_start < p_sys->i_box_lines_total - 1 )
686                 {
687                     p_sys->i_box_start++;
688                 }
689                 return 1;
690             case KEY_PPAGE:
691                 p_sys->i_box_start -= p_sys->i_box_lines;
692                 if( p_sys->i_box_start < 0 ) p_sys->i_box_start = 0;
693                 return 1;
694             case KEY_NPAGE:
695                 p_sys->i_box_start += p_sys->i_box_lines;
696                 if( p_sys->i_box_start >= p_sys->i_box_lines_total )
697                 {
698                     p_sys->i_box_start = p_sys->i_box_lines_total - 1;
699                 }
700                 return 1;
701             default:
702                 break;
703         }
704     }
705     else if( p_sys->i_box_type == BOX_NONE )
706     {
707         switch( i_key )
708         {
709             case KEY_HOME:
710                 p_sys->f_slider = 0;
711                 ManageSlider( p_intf );
712                 return 1;
713             case KEY_END:
714                 p_sys->f_slider = 99.9;
715                 ManageSlider( p_intf );
716                 return 1;
717             case KEY_UP:
718                 p_sys->f_slider += 5.0;
719                 if( p_sys->f_slider >= 99.0 ) p_sys->f_slider = 99.0;
720                 ManageSlider( p_intf );
721                 return 1;
722             case KEY_DOWN:
723                 p_sys->f_slider -= 5.0;
724                 if( p_sys->f_slider < 0.0 ) p_sys->f_slider = 0.0;
725                 ManageSlider( p_intf );
726                 return 1;
727
728             default:
729                 break;
730         }
731     }
732     else if( p_sys->i_box_type == BOX_SEARCH && p_sys->psz_search_chain )
733     {
734         int i_chain_len;
735         i_chain_len = strlen( p_sys->psz_search_chain );
736         switch( i_key )
737         {
738             case 0x0c:      /* ^l */
739                 clear();
740                 return 1;
741             case KEY_ENTER:
742             case 0x0d:
743                 if( i_chain_len > 0 )
744                 {
745                     p_sys->psz_old_search = strdup( p_sys->psz_search_chain );
746                 }
747                 else if( p_sys->psz_old_search )
748                 {
749                     SearchPlaylist( p_intf, p_sys->psz_old_search );
750                 }
751                 p_sys->i_box_type = BOX_PLAYLIST;
752                 return 1;
753             case 0x1b:      /* Esc. */
754                 p_sys->i_box_plidx = p_sys->i_before_search;
755                 p_sys->i_box_type = BOX_PLAYLIST;
756                 return 1;
757             case KEY_BACKSPACE:
758                 RemoveLastUTF8Entity( p_sys->psz_search_chain, i_chain_len );
759                 break;
760             default:
761             {
762                 char *psz_utf8 = KeyToUTF8( i_key, p_sys->psz_partial_keys );
763
764                 if( psz_utf8 != NULL )
765                 {
766                     if( i_chain_len + strlen( psz_utf8 ) < SEARCH_CHAIN_SIZE )
767                     {
768                         strcpy( p_sys->psz_search_chain + i_chain_len,
769                                 psz_utf8 );
770                     }
771                     free( psz_utf8 );
772                 }
773                 break;
774             }
775         }
776         if( p_sys->psz_old_search )
777         {
778             free( p_sys->psz_old_search );
779             p_sys->psz_old_search = NULL;
780         }
781         SearchPlaylist( p_intf, p_sys->psz_search_chain );
782         return 1;
783     }
784     else if( p_sys->i_box_type == BOX_OPEN && p_sys->psz_open_chain )
785     {
786         int i_chain_len = strlen( p_sys->psz_open_chain );
787         playlist_t *p_playlist = p_sys->p_playlist;
788
789         switch( i_key )
790         {
791             case 0x0c:      /* ^l */
792                 clear();
793                 return 1;
794             case KEY_ENTER:
795             case 0x0d:
796                 if( p_playlist && i_chain_len > 0 )
797                 {
798                     /*
799                     playlist_Add( p_playlist, p_sys->psz_open_chain,
800                                   p_sys->psz_open_chain,
801                                   PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END );
802                     */
803                     p_sys->b_box_plidx_follow = VLC_TRUE;
804                 }
805                 p_sys->i_box_type = BOX_PLAYLIST;
806                 return 1;
807             case 0x1b:      /* Esc. */
808                 p_sys->i_box_type = BOX_PLAYLIST;
809                 return 1;
810             case KEY_BACKSPACE:
811                 RemoveLastUTF8Entity( p_sys->psz_open_chain, i_chain_len );
812                 break;
813             default:
814             {
815                 char *psz_utf8 = KeyToUTF8( i_key, p_sys->psz_partial_keys );
816
817                 if( psz_utf8 != NULL )
818                 {
819                     if( i_chain_len + strlen( psz_utf8 ) < OPEN_CHAIN_SIZE )
820                     {
821                         strcpy( p_sys->psz_open_chain + i_chain_len,
822                                 psz_utf8 );
823                     }
824                     free( psz_utf8 );
825                 }
826                 break;
827             }
828         }
829         return 1;
830     }
831
832
833     /* Common keys */
834     switch( i_key )
835     {
836         case 'q':
837         case 'Q':
838         case 0x1b:  /* Esc */
839             vlc_object_kill( p_intf->p_libvlc );
840             return 0;
841
842         /* Box switching */
843         case 'i':
844             if( p_sys->i_box_type == BOX_INFO )
845                 p_sys->i_box_type = BOX_NONE;
846             else
847                 p_sys->i_box_type = BOX_INFO;
848             p_sys->i_box_lines_total = 0;
849             return 1;
850         case 'L':
851             if( p_sys->i_box_type == BOX_LOG )
852                 p_sys->i_box_type = BOX_NONE;
853             else
854                 p_sys->i_box_type = BOX_LOG;
855             return 1;
856         case 'P':
857             if( p_sys->i_box_type == BOX_PLAYLIST )
858                 p_sys->i_box_type = BOX_NONE;
859             else
860                 p_sys->i_box_type = BOX_PLAYLIST;
861             return 1;
862         case 'B':
863             if( p_sys->i_box_type == BOX_BROWSE )
864                 p_sys->i_box_type = BOX_NONE;
865             else
866                 p_sys->i_box_type = BOX_BROWSE;
867             return 1;
868         case 'h':
869         case 'H':
870             if( p_sys->i_box_type == BOX_HELP )
871                 p_sys->i_box_type = BOX_NONE;
872             else
873                 p_sys->i_box_type = BOX_HELP;
874             p_sys->i_box_lines_total = 0;
875             return 1;
876         case '/':
877             if( p_sys->i_box_type != BOX_SEARCH )
878             {
879                 if( p_sys->psz_search_chain == NULL )
880                 {
881                     return 1;
882                 }
883                 p_sys->psz_search_chain[0] = '\0';
884                 p_sys->b_box_plidx_follow = VLC_FALSE;
885                 p_sys->i_before_search = p_sys->i_box_plidx;
886                 p_sys->i_box_type = BOX_SEARCH;
887             }
888             return 1;
889         case 'A': /* Open */
890             if( p_sys->i_box_type != BOX_OPEN )
891             {
892                 if( p_sys->psz_open_chain == NULL )
893                 {
894                     return 1;
895                 }
896                 p_sys->psz_open_chain[0] = '\0';
897                 p_sys->i_box_type = BOX_OPEN;
898             }
899             return 1;
900
901         /* Navigation */
902         case KEY_RIGHT:
903             p_sys->f_slider += 1.0;
904             if( p_sys->f_slider > 99.9 ) p_sys->f_slider = 99.9;
905             ManageSlider( p_intf );
906             return 1;
907
908         case KEY_LEFT:
909             p_sys->f_slider -= 1.0;
910             if( p_sys->f_slider < 0.0 ) p_sys->f_slider = 0.0;
911             ManageSlider( p_intf );
912             return 1;
913
914         /* Common control */
915         case 'f':
916         {
917             if( p_intf->p_sys->p_input )
918             {
919                 vout_thread_t *p_vout;
920                 p_vout = vlc_object_find( p_intf->p_sys->p_input,
921                                           VLC_OBJECT_VOUT, FIND_CHILD );
922                 if( p_vout )
923                 {
924                     var_Get( p_vout, "fullscreen", &val );
925                     val.b_bool = !val.b_bool;
926                     var_Set( p_vout, "fullscreen", val );
927                     vlc_object_release( p_vout );
928                 }
929                 else
930                 {
931                     playlist_t *p_playlist;
932                     p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
933                                                   FIND_ANYWHERE );
934                     if( p_playlist )
935                     {
936                         var_Get( p_playlist, "fullscreen", &val );
937                         val.b_bool = !val.b_bool;
938                         var_Set( p_playlist, "fullscreen", val );
939                         vlc_object_release( p_playlist );
940                     }
941                 }
942             }
943             return 0;
944         }
945
946         case ' ':
947             PlayPause( p_intf );
948             return 1;
949
950         case 's':
951             if( p_intf->p_sys->p_playlist )
952             {
953                 playlist_Stop( p_intf->p_sys->p_playlist );
954             }
955             return 1;
956
957         case 'e':
958             Eject( p_intf );
959             return 1;
960
961         case '[':
962             if( p_sys->p_input )
963             {
964                 val.b_bool = VLC_TRUE;
965                 var_Set( p_sys->p_input, "prev-title", val );
966             }
967             return 1;
968
969         case ']':
970             if( p_sys->p_input )
971             {
972                 val.b_bool = VLC_TRUE;
973                 var_Set( p_sys->p_input, "next-title", val );
974             }
975             return 1;
976
977         case '<':
978             if( p_sys->p_input )
979             {
980                 val.b_bool = VLC_TRUE;
981                 var_Set( p_sys->p_input, "prev-chapter", val );
982             }
983             return 1;
984
985         case '>':
986             if( p_sys->p_input )
987             {
988                 val.b_bool = VLC_TRUE;
989                 var_Set( p_sys->p_input, "next-chapter", val );
990             }
991             return 1;
992
993         case 'p':
994             if( p_intf->p_sys->p_playlist )
995             {
996                 playlist_Prev( p_intf->p_sys->p_playlist );
997             }
998             clear();
999             return 1;
1000
1001         case 'n':
1002             if( p_intf->p_sys->p_playlist )
1003             {
1004                 playlist_Next( p_intf->p_sys->p_playlist );
1005             }
1006             clear();
1007             return 1;
1008
1009         case 'a':
1010             aout_VolumeUp( p_intf, 1, NULL );
1011             clear();
1012             return 1;
1013
1014         case 'z':
1015             aout_VolumeDown( p_intf, 1, NULL );
1016             clear();
1017             return 1;
1018
1019         /*
1020          * ^l should clear and redraw the screen
1021          */
1022         case 0x0c:
1023             clear();
1024             return 1;
1025
1026         default:
1027             return 0;
1028     }
1029 }
1030
1031 static void ManageSlider( intf_thread_t *p_intf )
1032 {
1033     intf_sys_t     *p_sys = p_intf->p_sys;
1034     input_thread_t *p_input = p_sys->p_input;
1035     vlc_value_t     val;
1036
1037     if( p_input == NULL )
1038     {
1039         return;
1040     }
1041     var_Get( p_input, "state", &val );
1042     if( val.i_int != PLAYING_S )
1043     {
1044         return;
1045     }
1046
1047     var_Get( p_input, "position", &val );
1048     if( p_sys->f_slider == p_sys->f_slider_old )
1049     {
1050         p_sys->f_slider =
1051         p_sys->f_slider_old = 100 * val.f_float;
1052     }
1053     else
1054     {
1055         p_sys->f_slider_old = p_sys->f_slider;
1056
1057         val.f_float = p_sys->f_slider / 100.0;
1058         var_Set( p_input, "position", val );
1059     }
1060 }
1061
1062 static void SearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring )
1063 {
1064     int i_max;
1065     int i_first = 0 ;
1066     int i_item = -1;
1067     intf_sys_t *p_sys = p_intf->p_sys;
1068
1069     if( p_sys->i_before_search >= 0 )
1070     {
1071         i_first = p_sys->i_before_search;
1072     }
1073
1074     if( ( ! psz_searchstring ) ||  strlen( psz_searchstring ) <= 0 )
1075     {
1076         p_sys->i_box_plidx = p_sys->i_before_search;
1077         return;
1078     }
1079
1080     i_max = p_sys->i_plist_entries;
1081
1082     i_item = SubSearchPlaylist( p_intf, psz_searchstring, i_first + 1, i_max );
1083     if( i_item < 0 )
1084     {
1085         i_item = SubSearchPlaylist( p_intf, psz_searchstring, 0, i_first );
1086     }
1087
1088     if( i_item < 0 || i_item >= i_max ) return;
1089
1090     p_sys->i_box_plidx = i_item;
1091 }
1092
1093 static int SubSearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring,
1094                               int i_start, int i_stop )
1095 {
1096     intf_sys_t *p_sys = p_intf->p_sys;
1097     int i, i_item = -1;
1098
1099     for( i = i_start + 1; i < i_stop; i++ )
1100     {
1101         if( strcasestr( p_sys->pp_plist[i]->psz_display,
1102                         psz_searchstring ) != NULL )
1103         {
1104             i_item = i;
1105             break;
1106         }
1107     }
1108
1109     return i_item;
1110 }
1111
1112
1113 static void mvnprintw( int y, int x, int w, const char *p_fmt, ... )
1114 {
1115     va_list  vl_args;
1116     char    *p_buf = NULL;
1117     int      i_len;
1118
1119     va_start( vl_args, p_fmt );
1120     vasprintf( &p_buf, p_fmt, vl_args );
1121     va_end( vl_args );
1122
1123     if( p_buf == NULL )
1124     {
1125         return;
1126     }
1127     if(  w > 0 )
1128     {
1129         if( ( i_len = strlen( p_buf ) ) > w )
1130         {
1131             char *psz_local;
1132             int i_cut = i_len - w;
1133             int x1 = i_len/2 - i_cut/2;
1134             int x2 = x1 + i_cut;
1135
1136             if( i_len > x2 )
1137             {
1138                 memmove( &p_buf[x1], &p_buf[x2], i_len - x2 );
1139             }
1140             p_buf[w] = '\0';
1141             if( w > 7 )
1142             {
1143                 p_buf[w/2-1] = '.';
1144                 p_buf[w/2  ] = '.';
1145                 p_buf[w/2+1] = '.';
1146             }
1147             psz_local = ToLocale( p_buf );
1148             mvprintw( y, x, "%s", psz_local );
1149             LocaleFree( p_buf );
1150         }
1151         else
1152         {
1153             char *psz_local = ToLocale( p_buf );
1154             mvprintw( y, x, "%s", psz_local );
1155             LocaleFree( p_buf );
1156             mvhline( y, x + i_len, ' ', w - i_len );
1157         }
1158     }
1159 }
1160 static void MainBoxWrite( intf_thread_t *p_intf, int l, int x, const char *p_fmt, ... )
1161 {
1162     intf_sys_t     *p_sys = p_intf->p_sys;
1163
1164     va_list  vl_args;
1165     char    *p_buf = NULL;
1166
1167     if( l < p_sys->i_box_start || l - p_sys->i_box_start >= p_sys->i_box_lines )
1168     {
1169         return;
1170     }
1171
1172     va_start( vl_args, p_fmt );
1173     vasprintf( &p_buf, p_fmt, vl_args );
1174     va_end( vl_args );
1175
1176     if( p_buf == NULL )
1177     {
1178         return;
1179     }
1180
1181     mvnprintw( p_sys->i_box_y + l - p_sys->i_box_start, x, COLS - x - 1, "%s", p_buf );
1182 }
1183
1184 static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
1185 {
1186     intf_sys_t     *p_sys = p_intf->p_sys;
1187     input_thread_t *p_input = p_sys->p_input;
1188     int y = 0;
1189     int h;
1190     int y_end;
1191
1192     clear();
1193
1194     /* Title */
1195     attrset( A_REVERSE );
1196     mvnprintw( y, 0, COLS, "VLC media player" " (ncurses interface) [ h for help ]" );
1197     attroff( A_REVERSE );
1198     y += 2;
1199
1200     /* Infos */
1201     if( p_input && !p_input->b_dead )
1202     {
1203         char buf1[MSTRTIME_MAX_SIZE];
1204         char buf2[MSTRTIME_MAX_SIZE];
1205         vlc_value_t val;
1206         vlc_value_t val_list;
1207
1208         /* Source */
1209         char *psz_uri = input_item_GetURI( input_GetItem( p_input ) );
1210         mvnprintw( y++, 0, COLS, " Source   : %s", psz_uri );
1211         free( psz_uri );
1212
1213         /* State */
1214         var_Get( p_input, "state", &val );
1215         if( val.i_int == PLAYING_S )
1216         {
1217             mvnprintw( y++, 0, COLS, " State    : Playing" );
1218         }
1219         else if( val.i_int == OPENING_S )
1220         {
1221             mvnprintw( y++, 0, COLS, " State    : Openning/Connecting" );
1222         }
1223         else if( val.i_int == BUFFERING_S )
1224         {
1225             mvnprintw( y++, 0, COLS, " State    : Buffering" );
1226         }
1227         else if( val.i_int == PAUSE_S )
1228         {
1229             mvnprintw( y++, 0, COLS, " State    : Paused" );
1230         }
1231         else
1232         {
1233             y++;
1234         }
1235         if( val.i_int != INIT_S && val.i_int != END_S )
1236         {
1237             audio_volume_t i_volume;
1238
1239             /* Position */
1240             var_Get( p_input, "time", &val );
1241             msecstotimestr( buf1, val.i_time / 1000 );
1242
1243             var_Get( p_input, "length", &val );
1244             msecstotimestr( buf2, val.i_time / 1000 );
1245
1246             mvnprintw( y++, 0, COLS, " Position : %s/%s (%.2f%%)", buf1, buf2, p_sys->f_slider );
1247
1248             /* Volume */
1249             aout_VolumeGet( p_intf, &i_volume );
1250             mvnprintw( y++, 0, COLS, " Volume   : %i%%", i_volume*200/AOUT_VOLUME_MAX );
1251
1252             /* Title */
1253             if( !var_Get( p_input, "title", &val ) )
1254             {
1255                 var_Change( p_input, "title", VLC_VAR_GETCHOICES, &val_list, NULL );
1256                 if( val_list.p_list->i_count > 0 )
1257                 {
1258                     mvnprintw( y++, 0, COLS, " Title    : %d/%d", val.i_int, val_list.p_list->i_count );
1259                 }
1260                 var_Change( p_input, "title", VLC_VAR_FREELIST, &val_list, NULL );
1261             }
1262
1263             /* Chapter */
1264             if( !var_Get( p_input, "chapter", &val ) )
1265             {
1266                 var_Change( p_input, "chapter", VLC_VAR_GETCHOICES, &val_list, NULL );
1267                 if( val_list.p_list->i_count > 0 )
1268                 {
1269                     mvnprintw( y++, 0, COLS, " Chapter  : %d/%d", val.i_int, val_list.p_list->i_count );
1270                 }
1271                 var_Change( p_input, "chapter", VLC_VAR_FREELIST, &val_list, NULL );
1272             }
1273         }
1274         else
1275         {
1276             y += 2;
1277         }
1278     }
1279     else
1280     {
1281         mvnprintw( y++, 0, COLS, "Source: <no current item>" );
1282         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1283         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1284         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1285     }
1286
1287     DrawBox( p_sys->w, y, 0, 3, COLS, "" );
1288     DrawEmptyLine( p_sys->w, y+1, 1, COLS-2);
1289     DrawLine( p_sys->w, y+1, 1, (int)(p_intf->p_sys->f_slider/100.0 * (COLS -2)) );
1290     y += 3;
1291
1292     p_sys->i_box_y = y + 1;
1293     p_sys->i_box_lines = LINES - y - 2;
1294
1295     h = LINES - y;
1296     y_end = y + h - 1;
1297
1298     if( p_sys->i_box_type == BOX_HELP )
1299     {
1300         /* Help box */
1301         int l = 0;
1302         DrawBox( p_sys->w, y++, 0, h, COLS, " Help " );
1303
1304         MainBoxWrite( p_intf, l++, 1, "[Display]" );
1305         MainBoxWrite( p_intf, l++, 1, "     h,H         Show/Hide help box" );
1306         MainBoxWrite( p_intf, l++, 1, "     i           Show/Hide info box" );
1307         MainBoxWrite( p_intf, l++, 1, "     L           Show/Hide messages box" );
1308         MainBoxWrite( p_intf, l++, 1, "     P           Show/Hide playlist box" );
1309         MainBoxWrite( p_intf, l++, 1, "     B           Show/Hide filebrowser" );
1310         MainBoxWrite( p_intf, l++, 1, "" );
1311
1312         MainBoxWrite( p_intf, l++, 1, "[Global]" );
1313         MainBoxWrite( p_intf, l++, 1, "     q, Q        Quit" );
1314         MainBoxWrite( p_intf, l++, 1, "     s           Stop" );
1315         MainBoxWrite( p_intf, l++, 1, "     <space>     Pause/Play" );
1316         MainBoxWrite( p_intf, l++, 1, "     f           Toggle Fullscreen" );
1317         MainBoxWrite( p_intf, l++, 1, "     n, p        Next/Previous playlist item" );
1318         MainBoxWrite( p_intf, l++, 1, "     [, ]        Next/Previous title" );
1319         MainBoxWrite( p_intf, l++, 1, "     <, >        Next/Previous chapter" );
1320         MainBoxWrite( p_intf, l++, 1, "     <right>     Seek +1%%" );
1321         MainBoxWrite( p_intf, l++, 1, "     <left>      Seek -1%%" );
1322         MainBoxWrite( p_intf, l++, 1, "     a           Volume Up" );
1323         MainBoxWrite( p_intf, l++, 1, "     z           Volume Down" );
1324         MainBoxWrite( p_intf, l++, 1, "" );
1325
1326         MainBoxWrite( p_intf, l++, 1, "[Playlist]" );
1327         MainBoxWrite( p_intf, l++, 1, "     r           Random" );
1328         MainBoxWrite( p_intf, l++, 1, "     l           Loop Playlist" );
1329         MainBoxWrite( p_intf, l++, 1, "     R           Repeat item" );
1330         MainBoxWrite( p_intf, l++, 1, "     o           Order Playlist by title" );
1331         MainBoxWrite( p_intf, l++, 1, "     O           Reverse order Playlist by title" );
1332         MainBoxWrite( p_intf, l++, 1, "     /           Look for an item" );
1333         MainBoxWrite( p_intf, l++, 1, "     A           Add an entry" );
1334         MainBoxWrite( p_intf, l++, 1, "     D, <del>    Delete an entry" );
1335         MainBoxWrite( p_intf, l++, 1, "     <backspace> Delete an entry" );
1336         MainBoxWrite( p_intf, l++, 1, "" );
1337
1338         MainBoxWrite( p_intf, l++, 1, "[Filebrowser]" );
1339         MainBoxWrite( p_intf, l++, 1, "     <enter>     Add the selected file to the playlist" );
1340         MainBoxWrite( p_intf, l++, 1, "     <space>     Add the selected directory to the playlist" );
1341         MainBoxWrite( p_intf, l++, 1, "     .           Show/Hide hidden files" );
1342         MainBoxWrite( p_intf, l++, 1, "" );
1343
1344         MainBoxWrite( p_intf, l++, 1, "[Boxes]" );
1345         MainBoxWrite( p_intf, l++, 1, "     <up>,<down>     Navigate through the box line by line" );
1346         MainBoxWrite( p_intf, l++, 1, "     <pgup>,<pgdown> Navigate through the box page by page" );
1347         MainBoxWrite( p_intf, l++, 1, "" );
1348
1349         MainBoxWrite( p_intf, l++, 1, "[Player]" );
1350         MainBoxWrite( p_intf, l++, 1, "     <up>,<down>     Seek +/-5%%" );
1351         MainBoxWrite( p_intf, l++, 1, "" );
1352
1353         MainBoxWrite( p_intf, l++, 1, "[Miscellaneous]" );
1354         MainBoxWrite( p_intf, l++, 1, "     Ctrl-l          Refresh the screen" );
1355
1356         p_sys->i_box_lines_total = l;
1357         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1358         {
1359             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1360         }
1361
1362         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1363         {
1364             y += l - p_sys->i_box_start;
1365         }
1366         else
1367         {
1368             y += p_sys->i_box_lines;
1369         }
1370     }
1371     else if( p_sys->i_box_type == BOX_INFO )
1372     {
1373         /* Info box */
1374         int l = 0;
1375         DrawBox( p_sys->w, y++, 0, h, COLS, " Information " );
1376
1377         if( p_input )
1378         {
1379             int i,j;
1380             vlc_mutex_lock( &input_GetItem(p_input)->lock );
1381             for( i = 0; i < input_GetItem(p_input)->i_categories; i++ )
1382             {
1383                 info_category_t *p_category = input_GetItem(p_input)->pp_categories[i];
1384                 if( y >= y_end ) break;
1385                 MainBoxWrite( p_intf, l++, 1, "  [%s]", p_category->psz_name );
1386                 for( j = 0; j < p_category->i_infos; j++ )
1387                 {
1388                     info_t *p_info = p_category->pp_infos[j];
1389                     if( y >= y_end ) break;
1390                     MainBoxWrite( p_intf, l++, 1, "      %s: %s", p_info->psz_name, p_info->psz_value );
1391                 }
1392             }
1393             vlc_mutex_unlock( &input_GetItem(p_input)->lock );
1394         }
1395         else
1396         {
1397             MainBoxWrite( p_intf, l++, 1, "No item currently playing" );
1398         }
1399         p_sys->i_box_lines_total = l;
1400         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1401         {
1402             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1403         }
1404
1405         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1406         {
1407             y += l - p_sys->i_box_start;
1408         }
1409         else
1410         {
1411             y += p_sys->i_box_lines;
1412         }
1413     }
1414     else if( p_sys->i_box_type == BOX_LOG )
1415     {
1416         int i_line = 0;
1417         int i_stop;
1418         int i_start;
1419
1420         DrawBox( p_sys->w, y++, 0, h, COLS, " Logs " );
1421
1422         i_start = p_intf->p_sys->p_sub->i_start;
1423
1424         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1425         i_stop = *p_intf->p_sys->p_sub->pi_stop;
1426         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1427
1428         for( ;; )
1429         {
1430             static const char *ppsz_type[4] = { "", "error", "warning", "debug" };
1431             if( i_line >= h - 2 )
1432             {
1433                 break;
1434             }
1435             i_stop--;
1436             i_line++;
1437             if( i_stop < 0 ) i_stop += VLC_MSG_QSIZE;
1438             if( i_stop == i_start )
1439             {
1440                 break;
1441             }
1442             mvnprintw( y + h-2-i_line, 1, COLS - 2, "   [%s] %s",
1443                       ppsz_type[p_sys->p_sub->p_msg[i_stop].i_type],
1444                       p_sys->p_sub->p_msg[i_stop].psz_msg );
1445         }
1446
1447         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1448         p_intf->p_sys->p_sub->i_start = i_stop;
1449         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1450         y = y_end;
1451     }
1452     else if( p_sys->i_box_type == BOX_BROWSE )
1453     {
1454         /* Filebrowser box */
1455         int        i_start, i_stop;
1456         int        i_item;
1457         DrawBox( p_sys->w, y++, 0, h, COLS, " Browse " );
1458
1459         if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_plidx = p_sys->i_dir_entries - 1;
1460         if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
1461
1462         if( p_sys->i_box_bidx < (h - 2)/2 )
1463         {
1464             i_start = 0;
1465             i_stop = h - 2;
1466         }
1467         else if( p_sys->i_dir_entries - p_sys->i_box_bidx > (h - 2)/2 )
1468         {
1469             i_start = p_sys->i_box_bidx - (h - 2)/2;
1470             i_stop = i_start + h - 2;
1471         }
1472         else
1473         {
1474             i_stop = p_sys->i_dir_entries;
1475             i_start = p_sys->i_dir_entries - (h - 2);
1476         }
1477         if( i_start < 0 )
1478         {
1479             i_start = 0;
1480         }
1481         if( i_stop > p_sys->i_dir_entries )
1482         {
1483             i_stop = p_sys->i_dir_entries;
1484         }
1485
1486         for( i_item = i_start; i_item < i_stop; i_item++ )
1487         {
1488             vlc_bool_t b_selected = ( p_sys->i_box_bidx == i_item );
1489
1490             if( y >= y_end ) break;
1491             if( b_selected )
1492             {
1493                 attrset( A_REVERSE );
1494             }
1495             mvnprintw( y++, 1, COLS - 2, " %c %s", p_sys->pp_dir_entries[i_item]->b_file == VLC_TRUE ? ' ' : '+',
1496                             p_sys->pp_dir_entries[i_item]->psz_path );
1497             if( b_selected )
1498             {
1499                 attroff( A_REVERSE );
1500             }
1501         }
1502
1503     }
1504     else if( ( p_sys->i_box_type == BOX_PLAYLIST ||
1505                p_sys->i_box_type == BOX_SEARCH ||
1506                p_sys->i_box_type == BOX_OPEN  ) && p_sys->p_playlist )
1507     {
1508         /* Playlist box */
1509         int        i_start, i_stop, i_max = p_sys->i_plist_entries;
1510         int        i_item;
1511         char       *psz_title;
1512
1513         switch( p_sys->i_current_view )
1514         {
1515             case VIEW_ONELEVEL:
1516                 psz_title = strdup( " Playlist (All, one level) " );
1517                 break;
1518             case VIEW_CATEGORY:
1519                 psz_title = strdup( " Playlist (By category) " );
1520                 break;
1521             default:
1522                 psz_title = strdup( " Playlist (Manually added) " );
1523         }
1524
1525         DrawBox( p_sys->w, y++, 0, h, COLS, psz_title );
1526
1527         if( p_sys->b_need_update || p_sys->pp_plist == NULL )
1528         {
1529             PlaylistRebuild( p_intf );
1530         }
1531         if( p_sys->b_box_plidx_follow )
1532         {
1533             FindIndex( p_intf );
1534         }
1535
1536         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
1537         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
1538         if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
1539
1540         if( p_sys->i_box_plidx < (h - 2)/2 )
1541         {
1542             i_start = 0;
1543             i_stop = h - 2;
1544         }
1545         else if( i_max - p_sys->i_box_plidx > (h - 2)/2 )
1546         {
1547             i_start = p_sys->i_box_plidx - (h - 2)/2;
1548             i_stop = i_start + h - 2;
1549         }
1550         else
1551         {
1552             i_stop = i_max;
1553             i_start = i_max - (h - 2);
1554         }
1555         if( i_start < 0 )
1556         {
1557             i_start = 0;
1558         }
1559         if( i_stop > i_max )
1560         {
1561             i_stop = i_max;
1562         }
1563
1564         for( i_item = i_start; i_item < i_stop; i_item++ )
1565         {
1566             vlc_bool_t b_selected = ( p_sys->i_box_plidx == i_item );
1567             int c = ( PlaylistIsPlaying( p_intf,
1568                           p_sys->pp_plist[i_item]->p_item ) ) ? '>' : ' ';
1569
1570             if( y >= y_end ) break;
1571             if( b_selected )
1572             {
1573                 attrset( A_REVERSE );
1574             }
1575             mvnprintw( y++, 1, COLS - 2, "%c%s", c,
1576                        p_sys->pp_plist[i_item]->psz_display );
1577             if( b_selected )
1578             {
1579                 attroff( A_REVERSE );
1580             }
1581         }
1582
1583     }
1584     else
1585     {
1586         y++;
1587     }
1588     if( p_sys->i_box_type == BOX_SEARCH )
1589     {
1590         DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
1591         if( p_sys->psz_search_chain )
1592         {
1593             if( strlen( p_sys->psz_search_chain ) == 0 &&
1594                 p_sys->psz_old_search != NULL )
1595             {
1596                 /* Searching next entry */
1597                 mvnprintw( 7, 1, COLS-2, "Find: %s", p_sys->psz_old_search );
1598             }
1599             else
1600             {
1601                 mvnprintw( 7, 1, COLS-2, "Find: %s", p_sys->psz_search_chain );
1602             }
1603         }
1604     }
1605     if( p_sys->i_box_type == BOX_OPEN )
1606     {
1607         if( p_sys->psz_open_chain )
1608         {
1609             DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
1610             mvnprintw( 7, 1, COLS-2, "Open: %s", p_sys->psz_open_chain );
1611         }
1612     }
1613
1614     while( y < y_end )
1615     {
1616         DrawEmptyLine( p_sys->w, y++, 1, COLS - 2 );
1617     }
1618
1619     refresh();
1620
1621     *t_last_refresh = time( 0 );
1622 }
1623
1624 static playlist_item_t *PlaylistGetRoot( intf_thread_t *p_intf )
1625 {
1626     intf_sys_t *p_sys = p_intf->p_sys;
1627     playlist_t *p_playlist = p_sys->p_playlist;
1628
1629     if( p_playlist == NULL )
1630     {
1631         return NULL;
1632     }
1633
1634     switch( p_sys->i_current_view )
1635     {
1636         case VIEW_CATEGORY:
1637             return p_playlist->p_root_category;
1638         default:
1639             return p_playlist->p_root_onelevel;
1640     }
1641 }
1642
1643 static void PlaylistRebuild( intf_thread_t *p_intf )
1644 {
1645     intf_sys_t *p_sys = p_intf->p_sys;
1646     playlist_t *p_playlist = p_sys->p_playlist;
1647
1648     if( p_playlist == NULL )
1649     {
1650         return;
1651     }
1652
1653     vlc_mutex_lock( &p_playlist->object_lock );
1654
1655     /* First clear the old one */
1656     PlaylistDestroy( p_intf );
1657
1658     /* Build the new one */
1659     PlaylistAddNode( p_intf, PlaylistGetRoot( p_intf ), 0, "" );
1660
1661     p_sys->b_need_update = VLC_FALSE;
1662
1663     vlc_mutex_unlock( &p_playlist->object_lock );
1664 }
1665
1666 static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
1667                              int i, const char *c )
1668 {
1669     intf_sys_t *p_sys = p_intf->p_sys;
1670     playlist_item_t *p_child;
1671     char *psz_tmp;
1672     int k;
1673
1674     psz_tmp = (char *)malloc( strlen( c ) + 4 );
1675     if( psz_tmp == NULL ) return;
1676     for( k = 0; k < p_node->i_children; k++ )
1677     {
1678         struct pl_item_t *p_pl_item;
1679         char *buff;
1680         int i_size;
1681
1682         p_child = p_node->pp_children[k];
1683         i_size = strlen( c ) + strlen( p_child->p_input->psz_name ) + 4;
1684         buff = (char *)malloc( sizeof( char ) * i_size );
1685         p_pl_item = (struct pl_item_t *)malloc( sizeof( struct pl_item_t ) );
1686         if( p_pl_item == NULL || buff == NULL ) return;
1687
1688         if( strlen( c ) )
1689         {
1690             sprintf( buff, "%s%c-%s", c, k == p_node->i_children - 1 ?
1691                      '`' : '|', p_child->p_input->psz_name );
1692         }
1693         else
1694         {
1695             sprintf( buff, " %s", p_child->p_input->psz_name );
1696         }
1697         p_pl_item->psz_display = strdup( buff );
1698         p_pl_item->p_item = p_child;
1699         INSERT_ELEM( p_sys->pp_plist, p_sys->i_plist_entries,
1700                      p_sys->i_plist_entries, p_pl_item );
1701         free( buff );
1702         i++;
1703
1704         if( p_child->i_children > 0 )
1705         {
1706             sprintf( psz_tmp, "%s%c ", c,
1707                      k == p_node->i_children - 1 ? ' ' : '|' );
1708             PlaylistAddNode( p_intf, p_child, i,
1709                              strlen( c ) ? psz_tmp : " " );
1710         }
1711     }
1712     free( psz_tmp );
1713 }
1714
1715 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
1716                             vlc_value_t oval, vlc_value_t nval, void *param )
1717 {
1718     intf_thread_t *p_intf = (intf_thread_t *)param;
1719     p_intf->p_sys->b_need_update = VLC_TRUE;
1720     return VLC_SUCCESS;
1721 }
1722
1723 /* Playlist suxx */
1724 static inline vlc_bool_t PlaylistIsPlaying( intf_thread_t *p_intf,
1725                                             playlist_item_t *p_item )
1726 {
1727     playlist_item_t *p_played_item = p_intf->p_sys->p_playlist->status.p_item;
1728     return( p_item != NULL && p_played_item != NULL &&
1729             p_item->p_input != NULL && p_played_item->p_input != NULL &&
1730             p_item->p_input->i_id == p_played_item->p_input->i_id );
1731 }
1732
1733 static void FindIndex( intf_thread_t *p_intf )
1734 {
1735     intf_sys_t *p_sys = p_intf->p_sys;
1736     int i;
1737
1738     if( p_sys->i_box_plidx < p_sys->i_plist_entries &&
1739         p_sys->i_box_plidx >= 0 &&
1740         PlaylistIsPlaying( p_intf,
1741                            p_sys->pp_plist[p_sys->i_box_plidx]->p_item ) )
1742     {
1743         return;
1744     }
1745
1746     for( i = 0; i < p_sys->i_plist_entries; i++ )
1747     {
1748         if( PlaylistIsPlaying( p_intf, p_sys->pp_plist[i]->p_item ) )
1749         {
1750             p_sys->i_box_plidx = i;
1751             break;
1752         }
1753     }
1754 }
1755
1756 static void PlaylistDestroy( intf_thread_t *p_intf )
1757 {
1758     intf_sys_t *p_sys = p_intf->p_sys;
1759     int i;
1760
1761     for( i = 0; i < p_sys->i_plist_entries; i++ )
1762     {
1763         struct pl_item_t *p_pl_item = p_sys->pp_plist[i];
1764         free( p_pl_item->psz_display );
1765         REMOVE_ELEM( p_sys->pp_plist, p_sys->i_plist_entries, i );
1766         free( p_pl_item );
1767     }
1768     p_sys->pp_plist = NULL;
1769     p_sys->i_plist_entries = 0;
1770 }
1771
1772 static void Eject( intf_thread_t *p_intf )
1773 {
1774     char *psz_device = NULL, *psz_parser, *psz_name;
1775
1776     /*
1777      * Get the active input
1778      * Determine whether we can eject a media, ie it's a DVD, VCD or CD-DA
1779      * If it's neither of these, then return
1780      */
1781
1782     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1783                                                        FIND_ANYWHERE );
1784
1785     if( p_playlist == NULL )
1786     {
1787         return;
1788     }
1789
1790     vlc_mutex_lock( &p_playlist->object_lock );
1791
1792     if( p_playlist->status.p_item == NULL )
1793     {
1794         vlc_mutex_unlock( &p_playlist->object_lock );
1795         vlc_object_release( p_playlist );
1796         return;
1797     }
1798
1799     psz_name = p_playlist->status.p_item->p_input->psz_name;
1800
1801     if( psz_name )
1802     {
1803         if( !strncmp(psz_name, "dvd://", 4) )
1804         {
1805             switch( psz_name[strlen("dvd://")] )
1806             {
1807             case '\0':
1808             case '@':
1809                 psz_device = config_GetPsz( p_intf, "dvd" );
1810                 break;
1811             default:
1812                 /* Omit the first MRL-selector characters */
1813                 psz_device = strdup( psz_name + strlen("dvd://" ) );
1814                 break;
1815             }
1816         }
1817         else if( !strncmp(psz_name, VCD_MRL, strlen(VCD_MRL)) )
1818         {
1819             switch( psz_name[strlen(VCD_MRL)] )
1820             {
1821             case '\0':
1822             case '@':
1823                 psz_device = config_GetPsz( p_intf, VCD_MRL );
1824                 break;
1825             default:
1826                 /* Omit the beginning MRL-selector characters */
1827                 psz_device = strdup( psz_name + strlen(VCD_MRL) );
1828                 break;
1829             }
1830         }
1831         else if( !strncmp(psz_name, CDDA_MRL, strlen(CDDA_MRL) ) )
1832         {
1833             switch( psz_name[strlen(CDDA_MRL)] )
1834             {
1835             case '\0':
1836             case '@':
1837                 psz_device = config_GetPsz( p_intf, "cd-audio" );
1838                 break;
1839             default:
1840                 /* Omit the beginning MRL-selector characters */
1841                 psz_device = strdup( psz_name + strlen(CDDA_MRL) );
1842                 break;
1843             }
1844         }
1845         else
1846         {
1847             psz_device = strdup( psz_name );
1848         }
1849     }
1850
1851     vlc_mutex_unlock( &p_playlist->object_lock );
1852     vlc_object_release( p_playlist );
1853
1854     if( psz_device == NULL )
1855     {
1856         return;
1857     }
1858
1859     /* Remove what we have after @ */
1860     psz_parser = psz_device;
1861     for( psz_parser = psz_device ; *psz_parser ; psz_parser++ )
1862     {
1863         if( *psz_parser == '@' )
1864         {
1865             *psz_parser = '\0';
1866             break;
1867         }
1868     }
1869
1870     /* If there's a stream playing, we aren't allowed to eject ! */
1871     if( p_intf->p_sys->p_input == NULL )
1872     {
1873         msg_Dbg( p_intf, "ejecting %s", psz_device );
1874
1875         intf_Eject( p_intf, psz_device );
1876     }
1877
1878     free(psz_device);
1879     return;
1880 }
1881
1882 static int comp_dir_entries( const void *pp_dir_entry1,
1883                              const void *pp_dir_entry2 )
1884 {
1885     struct dir_entry_t *p_dir_entry1 = *(struct dir_entry_t**)pp_dir_entry1;
1886     struct dir_entry_t *p_dir_entry2 = *(struct dir_entry_t**)pp_dir_entry2;
1887     if ( p_dir_entry1->b_file == p_dir_entry2->b_file ) {
1888         return strcasecmp( p_dir_entry1->psz_path, p_dir_entry2->psz_path );
1889     }
1890     else
1891     {
1892         return ( p_dir_entry1->b_file ? 1 : -1 );
1893     }
1894 }
1895
1896 static void ReadDir( intf_thread_t *p_intf )
1897 {
1898     intf_sys_t *p_sys = p_intf->p_sys;
1899     DIR *p_current_dir;
1900     int i;
1901
1902     if( p_sys->psz_current_dir && *p_sys->psz_current_dir )
1903     {
1904         char *psz_entry;
1905
1906         /* Open the dir */
1907         p_current_dir = utf8_opendir( p_sys->psz_current_dir );
1908
1909         if( p_current_dir == NULL )
1910         {
1911             /* something went bad, get out of here ! */
1912 #ifdef HAVE_ERRNO_H
1913             msg_Warn( p_intf, "cannot open directory `%s' (%s)",
1914                       p_sys->psz_current_dir, strerror(errno));
1915 #else
1916             msg_Warn( p_intf, "cannot open directory `%s'", p_sys->psz_current_dir );
1917 #endif
1918             return;
1919         }
1920
1921         /* Clean the old shit */
1922         for( i = 0; i < p_sys->i_dir_entries; i++ )
1923         {
1924             struct dir_entry_t *p_dir_entry = p_sys->pp_dir_entries[i];
1925             free( p_dir_entry->psz_path );
1926             REMOVE_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries, i );
1927             free( p_dir_entry );
1928         }
1929         p_sys->pp_dir_entries = NULL;
1930         p_sys->i_dir_entries = 0;
1931
1932         /* while we still have entries in the directory */
1933         while( ( psz_entry = utf8_readdir( p_current_dir ) ) != NULL )
1934         {
1935 #if defined( S_ISDIR )
1936             struct stat stat_data;
1937 #endif
1938             struct dir_entry_t *p_dir_entry;
1939             int i_size_entry = strlen( p_sys->psz_current_dir ) +
1940                                strlen( psz_entry ) + 2;
1941             char *psz_uri;
1942
1943             if( p_sys->b_show_hidden_files == VLC_FALSE &&
1944                 ( strlen( psz_entry ) && psz_entry[0] == '.' ) &&
1945                 strcmp( psz_entry, ".." ) )
1946             {
1947                 free( psz_entry );
1948                 continue;
1949             }
1950
1951             psz_uri = (char *)malloc( sizeof(char)*i_size_entry);
1952             sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir, psz_entry );
1953
1954             if( !( p_dir_entry = malloc( sizeof( struct dir_entry_t) ) ) )
1955             {
1956                 free( psz_uri );
1957                 free( psz_entry );
1958                 continue;
1959             }
1960
1961 #if defined( S_ISDIR )
1962             if( !utf8_stat( psz_uri, &stat_data )
1963              && S_ISDIR(stat_data.st_mode) )
1964 /*#elif defined( DT_DIR )
1965             if( p_dir_content->d_type & DT_DIR )*/
1966 #else
1967             if( 0 )
1968 #endif
1969             {
1970                 p_dir_entry->psz_path = strdup( psz_entry );
1971                 p_dir_entry->b_file = VLC_FALSE;
1972                 INSERT_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries,
1973                      p_sys->i_dir_entries, p_dir_entry );
1974             }
1975             else
1976             {
1977                 p_dir_entry->psz_path = strdup( psz_entry );
1978                 p_dir_entry->b_file = VLC_TRUE;
1979                 INSERT_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries,
1980                      p_sys->i_dir_entries, p_dir_entry );
1981             }
1982
1983             free( psz_uri );
1984             free( psz_entry );
1985         }
1986
1987         /* Sort */
1988         qsort( p_sys->pp_dir_entries, p_sys->i_dir_entries,
1989                sizeof(struct dir_entry_t*), &comp_dir_entries );
1990
1991         closedir( p_current_dir );
1992         return;
1993     }
1994     else
1995     {
1996         msg_Dbg( p_intf, "no current dir set" );
1997         return;
1998     }
1999 }
2000
2001 static void PlayPause( intf_thread_t *p_intf )
2002 {
2003     input_thread_t *p_input = p_intf->p_sys->p_input;
2004     vlc_value_t val;
2005
2006     if( p_input )
2007     {
2008         var_Get( p_input, "state", &val );
2009         if( val.i_int != PAUSE_S )
2010         {
2011             val.i_int = PAUSE_S;
2012         }
2013         else
2014         {
2015             val.i_int = PLAYING_S;
2016         }
2017         var_Set( p_input, "state", val );
2018     }
2019     else if( p_intf->p_sys->p_playlist )
2020     {
2021         playlist_Play( p_intf->p_sys->p_playlist );
2022     }
2023 }
2024
2025 /****************************************************************************
2026  *
2027  ****************************************************************************/
2028 static void DrawBox( WINDOW *win, int y, int x, int h, int w, const char *title )
2029 {
2030     int i;
2031     int i_len;
2032
2033     if( w > 3 && h > 2 )
2034     {
2035         if( title == NULL ) title = "";
2036         i_len = strlen( title );
2037
2038         if( i_len > w - 2 ) i_len = w - 2;
2039
2040         mvwaddch( win, y, x,    ACS_ULCORNER );
2041         mvwhline( win, y, x+1,  ACS_HLINE, ( w-i_len-2)/2 );
2042         mvwprintw( win,y, x+1+(w-i_len-2)/2, "%s", title );
2043         mvwhline( win, y, x+(w-i_len)/2+i_len,  ACS_HLINE, w - 1 - ((w-i_len)/2+i_len) );
2044         mvwaddch( win, y, x+w-1,ACS_URCORNER );
2045
2046         for( i = 0; i < h-2; i++ )
2047         {
2048             mvwaddch( win, y+i+1, x,     ACS_VLINE );
2049             mvwaddch( win, y+i+1, x+w-1, ACS_VLINE );
2050         }
2051
2052         mvwaddch( win, y+h-1, x,     ACS_LLCORNER );
2053         mvwhline( win, y+h-1, x+1,   ACS_HLINE, w - 2 );
2054         mvwaddch( win, y+h-1, x+w-1, ACS_LRCORNER );
2055     }
2056 }
2057
2058 static void DrawEmptyLine( WINDOW *win, int y, int x, int w )
2059 {
2060     if( w > 0 )
2061     {
2062         mvhline( y, x, ' ', w );
2063     }
2064 }
2065
2066 static void DrawLine( WINDOW *win, int y, int x, int w )
2067 {
2068     if( w > 0 )
2069     {
2070         attrset( A_REVERSE );
2071         mvhline( y, x, ' ', w );
2072         attroff( A_REVERSE );
2073     }
2074 }