]> git.sesse.net Git - vlc/blob - modules/gui/ncurses.c
For consistency, remove references to vlc from libvlc
[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 <stdlib.h>                                      /* malloc(), free() */
31 #include <string.h>
32 #include <errno.h>                                                 /* ENOMEM */
33 #include <stdio.h>
34 #include <time.h>
35
36 #include <curses.h>
37
38 #include <vlc/vlc.h>
39 #include <vlc/intf.h>
40 #include <vlc/vout.h>
41 #include <vlc/aout.h>
42 #include "charset.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, 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( !p_intf->b_die )
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->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_DeleteFromItemId( p_playlist, p_item->i_id );
551                 }
552                 else
553                 {
554                     playlist_NodeDelete( p_playlist, p_item,
555                                          VLC_TRUE , VLC_FALSE );
556                 }
557                 vlc_mutex_unlock( &p_playlist->object_lock );
558                 p_sys->b_need_update = VLC_TRUE;
559
560                 break;
561             }
562
563             case KEY_ENTER:
564             case 0x0d:
565                 if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item->i_children
566                         == -1 )
567                 {
568                     playlist_Control( p_sys->p_playlist, PLAYLIST_VIEWPLAY,
569                         NULL,
570                         p_sys->pp_plist[p_sys->i_box_plidx]->p_item );
571                 }
572                 else
573                 {
574                     playlist_Control( p_sys->p_playlist, PLAYLIST_VIEWPLAY,
575                         p_sys->pp_plist[p_sys->i_box_plidx]->p_item,
576                         NULL );
577                 }
578                 b_box_plidx_follow = VLC_TRUE;
579                 break;
580             default:
581                 b_ret = VLC_FALSE;
582                 break;
583         }
584
585         if( b_ret )
586         {
587             int i_max = p_sys->i_plist_entries;
588             if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
589             if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
590             if( PlaylistIsPlaying( p_intf,
591                     p_sys->pp_plist[p_sys->i_box_plidx]->p_item ) )
592                 b_box_plidx_follow = VLC_TRUE;
593             p_sys->b_box_plidx_follow = b_box_plidx_follow;
594             return 1;
595         }
596     }
597     if( p_sys->i_box_type == BOX_BROWSE )
598     {
599         vlc_bool_t b_ret = VLC_TRUE;
600         /* Browser navigation */
601         switch( i_key )
602         {
603             case KEY_HOME:
604                 p_sys->i_box_bidx = 0;
605                 break;
606             case KEY_END:
607                 p_sys->i_box_bidx = p_sys->i_dir_entries - 1;
608                 break;
609             case KEY_UP:
610                 p_sys->i_box_bidx--;
611                 break;
612             case KEY_DOWN:
613                 p_sys->i_box_bidx++;
614                 break;
615             case KEY_PPAGE:
616                 p_sys->i_box_bidx -= p_sys->i_box_lines;
617                 break;
618             case KEY_NPAGE:
619                 p_sys->i_box_bidx += p_sys->i_box_lines;
620                 break;
621             case '.': /* Toggle show hidden files */
622                 p_sys->b_show_hidden_files = ( p_sys->b_show_hidden_files ==
623                     VLC_TRUE ? VLC_FALSE : VLC_TRUE );
624                 ReadDir( p_intf );
625                 break;
626
627             case KEY_ENTER:
628             case 0x0d:
629             case ' ':
630                 if( p_sys->pp_dir_entries[p_sys->i_box_bidx]->b_file || i_key == ' ' )
631                 {
632                     int i_size_entry = strlen( p_sys->psz_current_dir ) +
633                                        strlen( p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path ) + 2;
634                     char *psz_uri = (char *)malloc( sizeof(char)*i_size_entry);
635
636                     sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir, p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path );
637                     /* XXX
638                     playlist_Add( p_sys->p_playlist, psz_uri,
639                                   psz_uri,
640                                   PLAYLIST_APPEND, PLAYLIST_END );
641                     */
642                     p_sys->i_box_type = BOX_PLAYLIST;
643                     free( psz_uri );
644                 }
645                 else
646                 {
647                     int i_size_entry = strlen( p_sys->psz_current_dir ) +
648                                        strlen( p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path ) + 2;
649                     char *psz_uri = (char *)malloc( sizeof(char)*i_size_entry);
650
651                     sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir, p_sys->pp_dir_entries[p_sys->i_box_bidx]->psz_path );
652
653                     p_sys->psz_current_dir = strdup( psz_uri );
654                     ReadDir( p_intf );
655                     free( psz_uri );
656                 }
657                 break;
658             default:
659                 b_ret = VLC_FALSE;
660                 break;
661         }
662         if( b_ret )
663         {
664             if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_bidx = p_sys->i_dir_entries - 1;
665             if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
666             return 1;
667         }
668     }
669     else if( p_sys->i_box_type == BOX_HELP || p_sys->i_box_type == BOX_INFO )
670     {
671         switch( i_key )
672         {
673             case KEY_HOME:
674                 p_sys->i_box_start = 0;
675                 return 1;
676             case KEY_END:
677                 p_sys->i_box_start = p_sys->i_box_lines_total - 1;
678                 return 1;
679             case KEY_UP:
680                 if( p_sys->i_box_start > 0 ) p_sys->i_box_start--;
681                 return 1;
682             case KEY_DOWN:
683                 if( p_sys->i_box_start < p_sys->i_box_lines_total - 1 )
684                 {
685                     p_sys->i_box_start++;
686                 }
687                 return 1;
688             case KEY_PPAGE:
689                 p_sys->i_box_start -= p_sys->i_box_lines;
690                 if( p_sys->i_box_start < 0 ) p_sys->i_box_start = 0;
691                 return 1;
692             case KEY_NPAGE:
693                 p_sys->i_box_start += p_sys->i_box_lines;
694                 if( p_sys->i_box_start >= p_sys->i_box_lines_total )
695                 {
696                     p_sys->i_box_start = p_sys->i_box_lines_total - 1;
697                 }
698                 return 1;
699             default:
700                 break;
701         }
702     }
703     else if( p_sys->i_box_type == BOX_NONE )
704     {
705         switch( i_key )
706         {
707             case KEY_HOME:
708                 p_sys->f_slider = 0;
709                 ManageSlider( p_intf );
710                 return 1;
711             case KEY_END:
712                 p_sys->f_slider = 99.9;
713                 ManageSlider( p_intf );
714                 return 1;
715             case KEY_UP:
716                 p_sys->f_slider += 5.0;
717                 if( p_sys->f_slider >= 99.0 ) p_sys->f_slider = 99.0;
718                 ManageSlider( p_intf );
719                 return 1;
720             case KEY_DOWN:
721                 p_sys->f_slider -= 5.0;
722                 if( p_sys->f_slider < 0.0 ) p_sys->f_slider = 0.0;
723                 ManageSlider( p_intf );
724                 return 1;
725
726             default:
727                 break;
728         }
729     }
730     else if( p_sys->i_box_type == BOX_SEARCH && p_sys->psz_search_chain )
731     {
732         int i_chain_len;
733         i_chain_len = strlen( p_sys->psz_search_chain );
734         switch( i_key )
735         {
736             case 0x0c:      /* ^l */
737                 clear();
738                 return 1;
739             case KEY_ENTER:
740             case 0x0d:
741                 if( i_chain_len > 0 )
742                 {
743                     p_sys->psz_old_search = strdup( p_sys->psz_search_chain );
744                 }
745                 else if( p_sys->psz_old_search )
746                 {
747                     SearchPlaylist( p_intf, p_sys->psz_old_search );
748                 }
749                 p_sys->i_box_type = BOX_PLAYLIST;
750                 return 1;
751             case 0x1b:      /* Esc. */
752                 p_sys->i_box_plidx = p_sys->i_before_search;
753                 p_sys->i_box_type = BOX_PLAYLIST;
754                 return 1;
755             case KEY_BACKSPACE:
756                 RemoveLastUTF8Entity( p_sys->psz_search_chain, i_chain_len );
757                 break;
758             default:
759             {
760                 char *psz_utf8 = KeyToUTF8( i_key, p_sys->psz_partial_keys );
761
762                 if( psz_utf8 != NULL )
763                 {
764                     if( i_chain_len + strlen( psz_utf8 ) < SEARCH_CHAIN_SIZE )
765                     {
766                         strcpy( p_sys->psz_search_chain + i_chain_len,
767                                 psz_utf8 );
768                     }
769                     free( psz_utf8 );
770                 }
771                 break;
772             }
773         }
774         if( p_sys->psz_old_search )
775         {
776             free( p_sys->psz_old_search );
777             p_sys->psz_old_search = NULL;
778         }
779         SearchPlaylist( p_intf, p_sys->psz_search_chain );
780         return 1;
781     }
782     else if( p_sys->i_box_type == BOX_OPEN && p_sys->psz_open_chain )
783     {
784         int i_chain_len = strlen( p_sys->psz_open_chain );
785         playlist_t *p_playlist = p_sys->p_playlist;
786
787         switch( i_key )
788         {
789             case 0x0c:      /* ^l */
790                 clear();
791                 return 1;
792             case KEY_ENTER:
793             case 0x0d:
794                 if( p_playlist && i_chain_len > 0 )
795                 {
796                     /*
797                     playlist_Add( p_playlist, p_sys->psz_open_chain,
798                                   p_sys->psz_open_chain,
799                                   PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END );
800                     */
801                     p_sys->b_box_plidx_follow = VLC_TRUE;
802                 }
803                 p_sys->i_box_type = BOX_PLAYLIST;
804                 return 1;
805             case 0x1b:      /* Esc. */
806                 p_sys->i_box_type = BOX_PLAYLIST;
807                 return 1;
808             case KEY_BACKSPACE:
809                 RemoveLastUTF8Entity( p_sys->psz_open_chain, i_chain_len );
810                 break;
811             default:
812             {
813                 char *psz_utf8 = KeyToUTF8( i_key, p_sys->psz_partial_keys );
814
815                 if( psz_utf8 != NULL )
816                 {
817                     if( i_chain_len + strlen( psz_utf8 ) < OPEN_CHAIN_SIZE )
818                     {
819                         strcpy( p_sys->psz_open_chain + i_chain_len,
820                                 psz_utf8 );
821                     }
822                     free( psz_utf8 );
823                 }
824                 break;
825             }
826         }
827         return 1;
828     }
829
830
831     /* Common keys */
832     switch( i_key )
833     {
834         case 'q':
835         case 'Q':
836         case 0x1b:  /* Esc */
837             p_intf->p_libvlc->b_die = VLC_TRUE;
838             return 0;
839
840         /* Box switching */
841         case 'i':
842             if( p_sys->i_box_type == BOX_INFO )
843                 p_sys->i_box_type = BOX_NONE;
844             else
845                 p_sys->i_box_type = BOX_INFO;
846             p_sys->i_box_lines_total = 0;
847             return 1;
848         case 'L':
849             if( p_sys->i_box_type == BOX_LOG )
850                 p_sys->i_box_type = BOX_NONE;
851             else
852                 p_sys->i_box_type = BOX_LOG;
853             return 1;
854         case 'P':
855             if( p_sys->i_box_type == BOX_PLAYLIST )
856                 p_sys->i_box_type = BOX_NONE;
857             else
858                 p_sys->i_box_type = BOX_PLAYLIST;
859             return 1;
860         case 'B':
861             if( p_sys->i_box_type == BOX_BROWSE )
862                 p_sys->i_box_type = BOX_NONE;
863             else
864                 p_sys->i_box_type = BOX_BROWSE;
865             return 1;
866         case 'h':
867         case 'H':
868             if( p_sys->i_box_type == BOX_HELP )
869                 p_sys->i_box_type = BOX_NONE;
870             else
871                 p_sys->i_box_type = BOX_HELP;
872             p_sys->i_box_lines_total = 0;
873             return 1;
874         case '/':
875             if( p_sys->i_box_type != BOX_SEARCH )
876             {
877                 if( p_sys->psz_search_chain == NULL )
878                 {
879                     return 1;
880                 }
881                 p_sys->psz_search_chain[0] = '\0';
882                 p_sys->b_box_plidx_follow = VLC_FALSE;
883                 p_sys->i_before_search = p_sys->i_box_plidx;
884                 p_sys->i_box_type = BOX_SEARCH;
885             }
886             return 1;
887         case 'A': /* Open */
888             if( p_sys->i_box_type != BOX_OPEN )
889             {
890                 if( p_sys->psz_open_chain == NULL )
891                 {
892                     return 1;
893                 }
894                 p_sys->psz_open_chain[0] = '\0';
895                 p_sys->i_box_type = BOX_OPEN;
896             }
897             return 1;
898
899         /* Navigation */
900         case KEY_RIGHT:
901             p_sys->f_slider += 1.0;
902             if( p_sys->f_slider > 99.9 ) p_sys->f_slider = 99.9;
903             ManageSlider( p_intf );
904             return 1;
905
906         case KEY_LEFT:
907             p_sys->f_slider -= 1.0;
908             if( p_sys->f_slider < 0.0 ) p_sys->f_slider = 0.0;
909             ManageSlider( p_intf );
910             return 1;
911
912         /* Common control */
913         case 'f':
914         {
915             if( p_intf->p_sys->p_input )
916             {
917                 vout_thread_t *p_vout;
918                 p_vout = vlc_object_find( p_intf->p_sys->p_input,
919                                           VLC_OBJECT_VOUT, FIND_CHILD );
920                 if( p_vout )
921                 {
922                     var_Get( p_vout, "fullscreen", &val );
923                     val.b_bool = !val.b_bool;
924                     var_Set( p_vout, "fullscreen", val );
925                     vlc_object_release( p_vout );
926                 }
927                 else
928                 {
929                     playlist_t *p_playlist;
930                     p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
931                                                   FIND_ANYWHERE );
932                     if( p_playlist )
933                     {
934                         var_Get( p_playlist, "fullscreen", &val );
935                         val.b_bool = !val.b_bool;
936                         var_Set( p_playlist, "fullscreen", val );
937                         vlc_object_release( p_playlist );
938                     }
939                 }
940             }
941             return 0;
942         }
943
944         case ' ':
945             PlayPause( p_intf );
946             return 1;
947
948         case 's':
949             if( p_intf->p_sys->p_playlist )
950             {
951                 playlist_Stop( p_intf->p_sys->p_playlist );
952             }
953             return 1;
954
955         case 'e':
956             Eject( p_intf );
957             return 1;
958
959         case '[':
960             if( p_sys->p_input )
961             {
962                 val.b_bool = VLC_TRUE;
963                 var_Set( p_sys->p_input, "prev-title", val );
964             }
965             return 1;
966
967         case ']':
968             if( p_sys->p_input )
969             {
970                 val.b_bool = VLC_TRUE;
971                 var_Set( p_sys->p_input, "next-title", val );
972             }
973             return 1;
974
975         case '<':
976             if( p_sys->p_input )
977             {
978                 val.b_bool = VLC_TRUE;
979                 var_Set( p_sys->p_input, "prev-chapter", val );
980             }
981             return 1;
982
983         case '>':
984             if( p_sys->p_input )
985             {
986                 val.b_bool = VLC_TRUE;
987                 var_Set( p_sys->p_input, "next-chapter", val );
988             }
989             return 1;
990
991         case 'p':
992             if( p_intf->p_sys->p_playlist )
993             {
994                 playlist_Prev( p_intf->p_sys->p_playlist );
995             }
996             clear();
997             return 1;
998
999         case 'n':
1000             if( p_intf->p_sys->p_playlist )
1001             {
1002                 playlist_Next( p_intf->p_sys->p_playlist );
1003             }
1004             clear();
1005             return 1;
1006
1007         case 'a':
1008             aout_VolumeUp( p_intf, 1, NULL );
1009             clear();
1010             return 1;
1011
1012         case 'z':
1013             aout_VolumeDown( p_intf, 1, NULL );
1014             clear();
1015             return 1;
1016
1017         /*
1018          * ^l should clear and redraw the screen
1019          */
1020         case 0x0c:
1021             clear();
1022             return 1;
1023
1024         default:
1025             return 0;
1026     }
1027 }
1028
1029 static void ManageSlider( intf_thread_t *p_intf )
1030 {
1031     intf_sys_t     *p_sys = p_intf->p_sys;
1032     input_thread_t *p_input = p_sys->p_input;
1033     vlc_value_t     val;
1034
1035     if( p_input == NULL )
1036     {
1037         return;
1038     }
1039     var_Get( p_input, "state", &val );
1040     if( val.i_int != PLAYING_S )
1041     {
1042         return;
1043     }
1044
1045     var_Get( p_input, "position", &val );
1046     if( p_sys->f_slider == p_sys->f_slider_old )
1047     {
1048         p_sys->f_slider =
1049         p_sys->f_slider_old = 100 * val.f_float;
1050     }
1051     else
1052     {
1053         p_sys->f_slider_old = p_sys->f_slider;
1054
1055         val.f_float = p_sys->f_slider / 100.0;
1056         var_Set( p_input, "position", val );
1057     }
1058 }
1059
1060 static void SearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring )
1061 {
1062     int i_max;
1063     int i_first = 0 ;
1064     int i_item = -1;
1065     intf_sys_t *p_sys = p_intf->p_sys;
1066
1067     if( p_sys->i_before_search >= 0 )
1068     {
1069         i_first = p_sys->i_before_search;
1070     }
1071
1072     if( ( ! psz_searchstring ) ||  strlen( psz_searchstring ) <= 0 )
1073     {
1074         p_sys->i_box_plidx = p_sys->i_before_search;
1075         return;
1076     }
1077
1078     i_max = p_sys->i_plist_entries;
1079
1080     i_item = SubSearchPlaylist( p_intf, psz_searchstring, i_first + 1, i_max );
1081     if( i_item < 0 )
1082     {
1083         i_item = SubSearchPlaylist( p_intf, psz_searchstring, 0, i_first );
1084     }
1085
1086     if( i_item < 0 || i_item >= i_max ) return;
1087
1088     p_sys->i_box_plidx = i_item;
1089 }
1090
1091 static int SubSearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring,
1092                               int i_start, int i_stop )
1093 {
1094     intf_sys_t *p_sys = p_intf->p_sys;
1095     int i, i_item = -1;
1096
1097     for( i = i_start + 1; i < i_stop; i++ )
1098     {
1099         if( strcasestr( p_sys->pp_plist[i]->psz_display,
1100                         psz_searchstring ) != NULL )
1101         {
1102             i_item = i;
1103             break;
1104         }
1105     }
1106
1107     return i_item;
1108 }
1109
1110
1111 static void mvnprintw( int y, int x, int w, const char *p_fmt, ... )
1112 {
1113     va_list  vl_args;
1114     char    *p_buf = NULL;
1115     int      i_len;
1116
1117     va_start( vl_args, p_fmt );
1118     vasprintf( &p_buf, p_fmt, vl_args );
1119     va_end( vl_args );
1120
1121     if( p_buf == NULL )
1122     {
1123         return;
1124     }
1125     if(  w > 0 )
1126     {
1127         if( ( i_len = strlen( p_buf ) ) > w )
1128         {
1129             char *psz_local;
1130             int i_cut = i_len - w;
1131             int x1 = i_len/2 - i_cut/2;
1132             int x2 = x1 + i_cut;
1133
1134             if( i_len > x2 )
1135             {
1136                 memmove( &p_buf[x1], &p_buf[x2], i_len - x2 );
1137             }
1138             p_buf[w] = '\0';
1139             if( w > 7 )
1140             {
1141                 p_buf[w/2-1] = '.';
1142                 p_buf[w/2  ] = '.';
1143                 p_buf[w/2+1] = '.';
1144             }
1145             psz_local = ToLocale( p_buf );
1146             mvprintw( y, x, "%s", psz_local );
1147             LocaleFree( p_buf );
1148         }
1149         else
1150         {
1151             char *psz_local = ToLocale( p_buf );
1152             mvprintw( y, x, "%s", psz_local );
1153             LocaleFree( p_buf );
1154             mvhline( y, x + i_len, ' ', w - i_len );
1155         }
1156     }
1157 }
1158 static void MainBoxWrite( intf_thread_t *p_intf, int l, int x, const char *p_fmt, ... )
1159 {
1160     intf_sys_t     *p_sys = p_intf->p_sys;
1161
1162     va_list  vl_args;
1163     char    *p_buf = NULL;
1164
1165     if( l < p_sys->i_box_start || l - p_sys->i_box_start >= p_sys->i_box_lines )
1166     {
1167         return;
1168     }
1169
1170     va_start( vl_args, p_fmt );
1171     vasprintf( &p_buf, p_fmt, vl_args );
1172     va_end( vl_args );
1173
1174     if( p_buf == NULL )
1175     {
1176         return;
1177     }
1178
1179     mvnprintw( p_sys->i_box_y + l - p_sys->i_box_start, x, COLS - x - 1, "%s", p_buf );
1180 }
1181
1182 static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
1183 {
1184     intf_sys_t     *p_sys = p_intf->p_sys;
1185     input_thread_t *p_input = p_sys->p_input;
1186     int y = 0;
1187     int h;
1188     int y_end;
1189
1190     clear();
1191
1192     /* Title */
1193     attrset( A_REVERSE );
1194     mvnprintw( y, 0, COLS, "VLC media player" " (ncurses interface) [ h for help ]" );
1195     attroff( A_REVERSE );
1196     y += 2;
1197
1198     /* Infos */
1199     if( p_input && !p_input->b_dead )
1200     {
1201         char buf1[MSTRTIME_MAX_SIZE];
1202         char buf2[MSTRTIME_MAX_SIZE];
1203         vlc_value_t val;
1204         vlc_value_t val_list;
1205
1206         /* Source */
1207         mvnprintw( y++, 0, COLS, " Source   : %s",
1208                    p_input->input.p_item->psz_uri );
1209
1210         /* State */
1211         var_Get( p_input, "state", &val );
1212         if( val.i_int == PLAYING_S )
1213         {
1214             mvnprintw( y++, 0, COLS, " State    : Playing" );
1215         }
1216         else if( val.i_int == OPENING_S )
1217         {
1218             mvnprintw( y++, 0, COLS, " State    : Openning/Connecting" );
1219         }
1220         else if( val.i_int == BUFFERING_S )
1221         {
1222             mvnprintw( y++, 0, COLS, " State    : Buffering" );
1223         }
1224         else if( val.i_int == PAUSE_S )
1225         {
1226             mvnprintw( y++, 0, COLS, " State    : Paused" );
1227         }
1228         else
1229         {
1230             y++;
1231         }
1232         if( val.i_int != INIT_S && val.i_int != END_S )
1233         {
1234             audio_volume_t i_volume;
1235
1236             /* Position */
1237             var_Get( p_input, "time", &val );
1238             msecstotimestr( buf1, val.i_time / 1000 );
1239
1240             var_Get( p_input, "length", &val );
1241             msecstotimestr( buf2, val.i_time / 1000 );
1242
1243             mvnprintw( y++, 0, COLS, " Position : %s/%s (%.2f%%)", buf1, buf2, p_sys->f_slider );
1244
1245             /* Volume */
1246             aout_VolumeGet( p_intf, &i_volume );
1247             mvnprintw( y++, 0, COLS, " Volume   : %i%%", i_volume*200/AOUT_VOLUME_MAX );
1248
1249             /* Title */
1250             if( !var_Get( p_input, "title", &val ) )
1251             {
1252                 var_Change( p_input, "title", VLC_VAR_GETCHOICES, &val_list, NULL );
1253                 if( val_list.p_list->i_count > 0 )
1254                 {
1255                     mvnprintw( y++, 0, COLS, " Title    : %d/%d", val.i_int, val_list.p_list->i_count );
1256                 }
1257                 var_Change( p_input, "title", VLC_VAR_FREELIST, &val_list, NULL );
1258             }
1259
1260             /* Chapter */
1261             if( !var_Get( p_input, "chapter", &val ) )
1262             {
1263                 var_Change( p_input, "chapter", VLC_VAR_GETCHOICES, &val_list, NULL );
1264                 if( val_list.p_list->i_count > 0 )
1265                 {
1266                     mvnprintw( y++, 0, COLS, " Chapter  : %d/%d", val.i_int, val_list.p_list->i_count );
1267                 }
1268                 var_Change( p_input, "chapter", VLC_VAR_FREELIST, &val_list, NULL );
1269             }
1270         }
1271         else
1272         {
1273             y += 2;
1274         }
1275     }
1276     else
1277     {
1278         mvnprintw( y++, 0, COLS, "Source: <no current item>" );
1279         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1280         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1281         DrawEmptyLine( p_sys->w, y++, 0, COLS );
1282     }
1283
1284     DrawBox( p_sys->w, y, 0, 3, COLS, "" );
1285     DrawEmptyLine( p_sys->w, y+1, 1, COLS-2);
1286     DrawLine( p_sys->w, y+1, 1, (int)(p_intf->p_sys->f_slider/100.0 * (COLS -2)) );
1287     y += 3;
1288
1289     p_sys->i_box_y = y + 1;
1290     p_sys->i_box_lines = LINES - y - 2;
1291
1292     h = LINES - y;
1293     y_end = y + h - 1;
1294
1295     if( p_sys->i_box_type == BOX_HELP )
1296     {
1297         /* Help box */
1298         int l = 0;
1299         DrawBox( p_sys->w, y++, 0, h, COLS, " Help " );
1300
1301         MainBoxWrite( p_intf, l++, 1, "[Display]" );
1302         MainBoxWrite( p_intf, l++, 1, "     h,H         Show/Hide help box" );
1303         MainBoxWrite( p_intf, l++, 1, "     i           Show/Hide info box" );
1304         MainBoxWrite( p_intf, l++, 1, "     L           Show/Hide messages box" );
1305         MainBoxWrite( p_intf, l++, 1, "     P           Show/Hide playlist box" );
1306         MainBoxWrite( p_intf, l++, 1, "     B           Show/Hide filebrowser" );
1307         MainBoxWrite( p_intf, l++, 1, "" );
1308
1309         MainBoxWrite( p_intf, l++, 1, "[Global]" );
1310         MainBoxWrite( p_intf, l++, 1, "     q, Q        Quit" );
1311         MainBoxWrite( p_intf, l++, 1, "     s           Stop" );
1312         MainBoxWrite( p_intf, l++, 1, "     <space>     Pause/Play" );
1313         MainBoxWrite( p_intf, l++, 1, "     f           Toggle Fullscreen" );
1314         MainBoxWrite( p_intf, l++, 1, "     n, p        Next/Previous playlist item" );
1315         MainBoxWrite( p_intf, l++, 1, "     [, ]        Next/Previous title" );
1316         MainBoxWrite( p_intf, l++, 1, "     <, >        Next/Previous chapter" );
1317         MainBoxWrite( p_intf, l++, 1, "     <right>     Seek +1%%" );
1318         MainBoxWrite( p_intf, l++, 1, "     <left>      Seek -1%%" );
1319         MainBoxWrite( p_intf, l++, 1, "     a           Volume Up" );
1320         MainBoxWrite( p_intf, l++, 1, "     z           Volume Down" );
1321         MainBoxWrite( p_intf, l++, 1, "" );
1322
1323         MainBoxWrite( p_intf, l++, 1, "[Playlist]" );
1324         MainBoxWrite( p_intf, l++, 1, "     r           Random" );
1325         MainBoxWrite( p_intf, l++, 1, "     l           Loop Playlist" );
1326         MainBoxWrite( p_intf, l++, 1, "     R           Repeat item" );
1327         MainBoxWrite( p_intf, l++, 1, "     o           Order Playlist by title" );
1328         MainBoxWrite( p_intf, l++, 1, "     O           Reverse order Playlist by title" );
1329         MainBoxWrite( p_intf, l++, 1, "     /           Look for an item" );
1330         MainBoxWrite( p_intf, l++, 1, "     A           Add an entry" );
1331         MainBoxWrite( p_intf, l++, 1, "     D, <del>    Delete an entry" );
1332         MainBoxWrite( p_intf, l++, 1, "     <backspace> Delete an entry" );
1333         MainBoxWrite( p_intf, l++, 1, "" );
1334
1335         MainBoxWrite( p_intf, l++, 1, "[Filebrowser]" );
1336         MainBoxWrite( p_intf, l++, 1, "     <enter>     Add the selected file to the playlist" );
1337         MainBoxWrite( p_intf, l++, 1, "     <space>     Add the selected directory to the playlist" );
1338         MainBoxWrite( p_intf, l++, 1, "     .           Show/Hide hidden files" );
1339         MainBoxWrite( p_intf, l++, 1, "" );
1340
1341         MainBoxWrite( p_intf, l++, 1, "[Boxes]" );
1342         MainBoxWrite( p_intf, l++, 1, "     <up>,<down>     Navigate through the box line by line" );
1343         MainBoxWrite( p_intf, l++, 1, "     <pgup>,<pgdown> Navigate through the box page by page" );
1344         MainBoxWrite( p_intf, l++, 1, "" );
1345
1346         MainBoxWrite( p_intf, l++, 1, "[Player]" );
1347         MainBoxWrite( p_intf, l++, 1, "     <up>,<down>     Seek +/-5%%" );
1348         MainBoxWrite( p_intf, l++, 1, "" );
1349
1350         MainBoxWrite( p_intf, l++, 1, "[Miscellaneous]" );
1351         MainBoxWrite( p_intf, l++, 1, "     Ctrl-l          Refresh the screen" );
1352
1353         p_sys->i_box_lines_total = l;
1354         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1355         {
1356             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1357         }
1358
1359         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1360         {
1361             y += l - p_sys->i_box_start;
1362         }
1363         else
1364         {
1365             y += p_sys->i_box_lines;
1366         }
1367     }
1368     else if( p_sys->i_box_type == BOX_INFO )
1369     {
1370         /* Info box */
1371         int l = 0;
1372         DrawBox( p_sys->w, y++, 0, h, COLS, " Information " );
1373
1374         if( p_input )
1375         {
1376             int i,j;
1377             vlc_mutex_lock( &p_input->input.p_item->lock );
1378             for( i = 0; i < p_input->input.p_item->i_categories; i++ )
1379             {
1380                 info_category_t *p_category = p_input->input.p_item->pp_categories[i];
1381                 if( y >= y_end ) break;
1382                 MainBoxWrite( p_intf, l++, 1, "  [%s]", p_category->psz_name );
1383                 for( j = 0; j < p_category->i_infos; j++ )
1384                 {
1385                     info_t *p_info = p_category->pp_infos[j];
1386                     if( y >= y_end ) break;
1387                     MainBoxWrite( p_intf, l++, 1, "      %s: %s", p_info->psz_name, p_info->psz_value );
1388                 }
1389             }
1390             vlc_mutex_unlock( &p_input->input.p_item->lock );
1391         }
1392         else
1393         {
1394             MainBoxWrite( p_intf, l++, 1, "No item currently playing" );
1395         }
1396         p_sys->i_box_lines_total = l;
1397         if( p_sys->i_box_start >= p_sys->i_box_lines_total )
1398         {
1399             p_sys->i_box_start = p_sys->i_box_lines_total - 1;
1400         }
1401
1402         if( l - p_sys->i_box_start < p_sys->i_box_lines )
1403         {
1404             y += l - p_sys->i_box_start;
1405         }
1406         else
1407         {
1408             y += p_sys->i_box_lines;
1409         }
1410     }
1411     else if( p_sys->i_box_type == BOX_LOG )
1412     {
1413         int i_line = 0;
1414         int i_stop;
1415         int i_start;
1416
1417         DrawBox( p_sys->w, y++, 0, h, COLS, " Logs " );
1418
1419         i_start = p_intf->p_sys->p_sub->i_start;
1420
1421         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1422         i_stop = *p_intf->p_sys->p_sub->pi_stop;
1423         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1424
1425         for( ;; )
1426         {
1427             static const char *ppsz_type[4] = { "", "error", "warning", "debug" };
1428             if( i_line >= h - 2 )
1429             {
1430                 break;
1431             }
1432             i_stop--;
1433             i_line++;
1434             if( i_stop < 0 ) i_stop += VLC_MSG_QSIZE;
1435             if( i_stop == i_start )
1436             {
1437                 break;
1438             }
1439             mvnprintw( y + h-2-i_line, 1, COLS - 2, "   [%s] %s",
1440                       ppsz_type[p_sys->p_sub->p_msg[i_stop].i_type],
1441                       p_sys->p_sub->p_msg[i_stop].psz_msg );
1442         }
1443
1444         vlc_mutex_lock( p_intf->p_sys->p_sub->p_lock );
1445         p_intf->p_sys->p_sub->i_start = i_stop;
1446         vlc_mutex_unlock( p_intf->p_sys->p_sub->p_lock );
1447         y = y_end;
1448     }
1449     else if( p_sys->i_box_type == BOX_BROWSE )
1450     {
1451         /* Filebrowser box */
1452         int        i_start, i_stop;
1453         int        i_item;
1454         DrawBox( p_sys->w, y++, 0, h, COLS, " Browse " );
1455
1456         if( p_sys->i_box_bidx >= p_sys->i_dir_entries ) p_sys->i_box_plidx = p_sys->i_dir_entries - 1;
1457         if( p_sys->i_box_bidx < 0 ) p_sys->i_box_bidx = 0;
1458
1459         if( p_sys->i_box_bidx < (h - 2)/2 )
1460         {
1461             i_start = 0;
1462             i_stop = h - 2;
1463         }
1464         else if( p_sys->i_dir_entries - p_sys->i_box_bidx > (h - 2)/2 )
1465         {
1466             i_start = p_sys->i_box_bidx - (h - 2)/2;
1467             i_stop = i_start + h - 2;
1468         }
1469         else
1470         {
1471             i_stop = p_sys->i_dir_entries;
1472             i_start = p_sys->i_dir_entries - (h - 2);
1473         }
1474         if( i_start < 0 )
1475         {
1476             i_start = 0;
1477         }
1478         if( i_stop > p_sys->i_dir_entries )
1479         {
1480             i_stop = p_sys->i_dir_entries;
1481         }
1482
1483         for( i_item = i_start; i_item < i_stop; i_item++ )
1484         {
1485             vlc_bool_t b_selected = ( p_sys->i_box_bidx == i_item );
1486
1487             if( y >= y_end ) break;
1488             if( b_selected )
1489             {
1490                 attrset( A_REVERSE );
1491             }
1492             mvnprintw( y++, 1, COLS - 2, " %c %s", p_sys->pp_dir_entries[i_item]->b_file == VLC_TRUE ? ' ' : '+',
1493                             p_sys->pp_dir_entries[i_item]->psz_path );
1494             if( b_selected )
1495             {
1496                 attroff( A_REVERSE );
1497             }
1498         }
1499
1500     }
1501     else if( ( p_sys->i_box_type == BOX_PLAYLIST ||
1502                p_sys->i_box_type == BOX_SEARCH ||
1503                p_sys->i_box_type == BOX_OPEN  ) && p_sys->p_playlist )
1504     {
1505         /* Playlist box */
1506         int        i_start, i_stop, i_max = p_sys->i_plist_entries;
1507         int        i_item;
1508         char       *psz_title;
1509
1510         switch( p_sys->i_current_view )
1511         {
1512             case VIEW_ONELEVEL:
1513                 psz_title = strdup( " Playlist (All, one level) " );
1514                 break;
1515             case VIEW_CATEGORY:
1516                 psz_title = strdup( " Playlist (By category) " );
1517                 break;
1518             default:
1519                 psz_title = strdup( " Playlist (Manually added) " );
1520         }
1521
1522         DrawBox( p_sys->w, y++, 0, h, COLS, psz_title );
1523
1524         if( p_sys->b_need_update || p_sys->pp_plist == NULL )
1525         {
1526             PlaylistRebuild( p_intf );
1527         }
1528         if( p_sys->b_box_plidx_follow )
1529         {
1530             FindIndex( p_intf );
1531         }
1532
1533         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
1534         if( p_sys->i_box_plidx < 0 ) p_sys->i_box_plidx = 0;
1535         if( p_sys->i_box_plidx >= i_max ) p_sys->i_box_plidx = i_max - 1;
1536
1537         if( p_sys->i_box_plidx < (h - 2)/2 )
1538         {
1539             i_start = 0;
1540             i_stop = h - 2;
1541         }
1542         else if( i_max - p_sys->i_box_plidx > (h - 2)/2 )
1543         {
1544             i_start = p_sys->i_box_plidx - (h - 2)/2;
1545             i_stop = i_start + h - 2;
1546         }
1547         else
1548         {
1549             i_stop = i_max;
1550             i_start = i_max - (h - 2);
1551         }
1552         if( i_start < 0 )
1553         {
1554             i_start = 0;
1555         }
1556         if( i_stop > i_max )
1557         {
1558             i_stop = i_max;
1559         }
1560
1561         for( i_item = i_start; i_item < i_stop; i_item++ )
1562         {
1563             vlc_bool_t b_selected = ( p_sys->i_box_plidx == i_item );
1564             int c = ( PlaylistIsPlaying( p_intf,
1565                           p_sys->pp_plist[i_item]->p_item ) ) ? '>' : ' ';
1566
1567             if( y >= y_end ) break;
1568             if( b_selected )
1569             {
1570                 attrset( A_REVERSE );
1571             }
1572             mvnprintw( y++, 1, COLS - 2, "%c%s", c,
1573                        p_sys->pp_plist[i_item]->psz_display );
1574             if( b_selected )
1575             {
1576                 attroff( A_REVERSE );
1577             }
1578         }
1579
1580     }
1581     else
1582     {
1583         y++;
1584     }
1585     if( p_sys->i_box_type == BOX_SEARCH )
1586     {
1587         DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
1588         if( p_sys->psz_search_chain )
1589         {
1590             if( strlen( p_sys->psz_search_chain ) == 0 &&
1591                 p_sys->psz_old_search != NULL )
1592             {
1593                 /* Searching next entry */
1594                 mvnprintw( 7, 1, COLS-2, "Find: %s", p_sys->psz_old_search );
1595             }
1596             else
1597             {
1598                 mvnprintw( 7, 1, COLS-2, "Find: %s", p_sys->psz_search_chain );
1599             }
1600         }
1601     }
1602     if( p_sys->i_box_type == BOX_OPEN )
1603     {
1604         if( p_sys->psz_open_chain )
1605         {
1606             DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
1607             mvnprintw( 7, 1, COLS-2, "Open: %s", p_sys->psz_open_chain );
1608         }
1609     }
1610
1611     while( y < y_end )
1612     {
1613         DrawEmptyLine( p_sys->w, y++, 1, COLS - 2 );
1614     }
1615
1616     refresh();
1617
1618     *t_last_refresh = time( 0 );
1619 }
1620
1621 static playlist_item_t *PlaylistGetRoot( intf_thread_t *p_intf )
1622 {
1623     intf_sys_t *p_sys = p_intf->p_sys;
1624     playlist_t *p_playlist = p_sys->p_playlist;
1625
1626     if( p_playlist == NULL )
1627     {
1628         return NULL;
1629     }
1630
1631     switch( p_sys->i_current_view )
1632     {
1633         case VIEW_CATEGORY:
1634             return p_playlist->p_root_category;
1635         default:
1636             return p_playlist->p_root_onelevel;
1637     }
1638 }
1639
1640 static void PlaylistRebuild( intf_thread_t *p_intf )
1641 {
1642     intf_sys_t *p_sys = p_intf->p_sys;
1643     playlist_t *p_playlist = p_sys->p_playlist;
1644
1645     if( p_playlist == NULL )
1646     {
1647         return;
1648     }
1649
1650     vlc_mutex_lock( &p_playlist->object_lock );
1651
1652     /* First clear the old one */
1653     PlaylistDestroy( p_intf );
1654
1655     /* Build the new one */
1656     PlaylistAddNode( p_intf, PlaylistGetRoot( p_intf ), 0, "" );
1657
1658     p_sys->b_need_update = VLC_FALSE;
1659
1660     vlc_mutex_unlock( &p_playlist->object_lock );
1661 }
1662
1663 static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
1664                              int i, char *c )
1665 {
1666     intf_sys_t *p_sys = p_intf->p_sys;
1667     playlist_item_t *p_child;
1668     char *psz_tmp;
1669     int k;
1670
1671     psz_tmp = (char *)malloc( strlen( c ) + 4 );
1672     if( psz_tmp == NULL ) return;
1673     for( k = 0; k < p_node->i_children; k++ )
1674     {
1675         struct pl_item_t *p_pl_item;
1676         char *buff;
1677         int i_size;
1678
1679         p_child = p_node->pp_children[k];
1680         i_size = strlen( c ) + strlen( p_child->p_input->psz_name ) + 4;
1681         buff = (char *)malloc( sizeof( char ) * i_size );
1682         p_pl_item = (struct pl_item_t *)malloc( sizeof( struct pl_item_t ) );
1683         if( p_pl_item == NULL || buff == NULL ) return;
1684
1685         if( strlen( c ) )
1686         {
1687             sprintf( buff, "%s%c-%s", c, k == p_node->i_children - 1 ?
1688                      '`' : '|', p_child->p_input->psz_name );
1689         }
1690         else
1691         {
1692             sprintf( buff, " %s", p_child->p_input->psz_name );
1693         }
1694         p_pl_item->psz_display = strdup( buff );
1695         p_pl_item->p_item = p_child;
1696         INSERT_ELEM( p_sys->pp_plist, p_sys->i_plist_entries,
1697                      p_sys->i_plist_entries, p_pl_item );
1698         free( buff );
1699         i++;
1700
1701         if( p_child->i_children > 0 )
1702         {
1703             sprintf( psz_tmp, "%s%c ", c,
1704                      k == p_node->i_children - 1 ? ' ' : '|' );
1705             PlaylistAddNode( p_intf, p_child, i,
1706                              strlen( c ) ? psz_tmp : " " );
1707         }
1708     }
1709     free( psz_tmp );
1710 }
1711
1712 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
1713                             vlc_value_t oval, vlc_value_t nval, void *param )
1714 {
1715     intf_thread_t *p_intf = (intf_thread_t *)param;
1716     p_intf->p_sys->b_need_update = VLC_TRUE;
1717     return VLC_SUCCESS;
1718 }
1719
1720 /* Playlist suxx */
1721 static inline vlc_bool_t PlaylistIsPlaying( intf_thread_t *p_intf,
1722                                             playlist_item_t *p_item )
1723 {
1724     playlist_item_t *p_played_item = p_intf->p_sys->p_playlist->status.p_item;
1725     return( p_item != NULL && p_played_item != NULL &&
1726             p_item->p_input != NULL && p_played_item->p_input != NULL &&
1727             p_item->p_input->i_id == p_played_item->p_input->i_id );
1728 }
1729
1730 static void FindIndex( intf_thread_t *p_intf )
1731 {
1732     intf_sys_t *p_sys = p_intf->p_sys;
1733     int i;
1734
1735     if( p_sys->i_box_plidx < p_sys->i_plist_entries &&
1736         p_sys->i_box_plidx >= 0 &&
1737         PlaylistIsPlaying( p_intf,
1738                            p_sys->pp_plist[p_sys->i_box_plidx]->p_item ) )
1739     {
1740         return;
1741     }
1742
1743     for( i = 0; i < p_sys->i_plist_entries; i++ )
1744     {
1745         if( PlaylistIsPlaying( p_intf, p_sys->pp_plist[i]->p_item ) )
1746         {
1747             p_sys->i_box_plidx = i;
1748             break;
1749         }
1750     }
1751 }
1752
1753 static void PlaylistDestroy( intf_thread_t *p_intf )
1754 {
1755     intf_sys_t *p_sys = p_intf->p_sys;
1756     int i;
1757
1758     for( i = 0; i < p_sys->i_plist_entries; i++ )
1759     {
1760         struct pl_item_t *p_pl_item = p_sys->pp_plist[i];
1761         free( p_pl_item->psz_display );
1762         REMOVE_ELEM( p_sys->pp_plist, p_sys->i_plist_entries, i );
1763         free( p_pl_item );
1764     }
1765     p_sys->pp_plist = NULL;
1766     p_sys->i_plist_entries = 0;
1767 }
1768
1769 static void Eject( intf_thread_t *p_intf )
1770 {
1771     char *psz_device = NULL, *psz_parser, *psz_name;
1772
1773     /*
1774      * Get the active input
1775      * Determine whether we can eject a media, ie it's a DVD, VCD or CD-DA
1776      * If it's neither of these, then return
1777      */
1778
1779     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1780                                                        FIND_ANYWHERE );
1781
1782     if( p_playlist == NULL )
1783     {
1784         return;
1785     }
1786
1787     vlc_mutex_lock( &p_playlist->object_lock );
1788
1789     if( p_playlist->status.p_item == NULL )
1790     {
1791         vlc_mutex_unlock( &p_playlist->object_lock );
1792         vlc_object_release( p_playlist );
1793         return;
1794     }
1795
1796     psz_name = p_playlist->status.p_item->p_input->psz_name;
1797
1798     if( psz_name )
1799     {
1800         if( !strncmp(psz_name, "dvd://", 4) )
1801         {
1802             switch( psz_name[strlen("dvd://")] )
1803             {
1804             case '\0':
1805             case '@':
1806                 psz_device = config_GetPsz( p_intf, "dvd" );
1807                 break;
1808             default:
1809                 /* Omit the first MRL-selector characters */
1810                 psz_device = strdup( psz_name + strlen("dvd://" ) );
1811                 break;
1812             }
1813         }
1814         else if( !strncmp(psz_name, VCD_MRL, strlen(VCD_MRL)) )
1815         {
1816             switch( psz_name[strlen(VCD_MRL)] )
1817             {
1818             case '\0':
1819             case '@':
1820                 psz_device = config_GetPsz( p_intf, VCD_MRL );
1821                 break;
1822             default:
1823                 /* Omit the beginning MRL-selector characters */
1824                 psz_device = strdup( psz_name + strlen(VCD_MRL) );
1825                 break;
1826             }
1827         }
1828         else if( !strncmp(psz_name, CDDA_MRL, strlen(CDDA_MRL) ) )
1829         {
1830             switch( psz_name[strlen(CDDA_MRL)] )
1831             {
1832             case '\0':
1833             case '@':
1834                 psz_device = config_GetPsz( p_intf, "cd-audio" );
1835                 break;
1836             default:
1837                 /* Omit the beginning MRL-selector characters */
1838                 psz_device = strdup( psz_name + strlen(CDDA_MRL) );
1839                 break;
1840             }
1841         }
1842         else
1843         {
1844             psz_device = strdup( psz_name );
1845         }
1846     }
1847
1848     vlc_mutex_unlock( &p_playlist->object_lock );
1849     vlc_object_release( p_playlist );
1850
1851     if( psz_device == NULL )
1852     {
1853         return;
1854     }
1855
1856     /* Remove what we have after @ */
1857     psz_parser = psz_device;
1858     for( psz_parser = psz_device ; *psz_parser ; psz_parser++ )
1859     {
1860         if( *psz_parser == '@' )
1861         {
1862             *psz_parser = '\0';
1863             break;
1864         }
1865     }
1866
1867     /* If there's a stream playing, we aren't allowed to eject ! */
1868     if( p_intf->p_sys->p_input == NULL )
1869     {
1870         msg_Dbg( p_intf, "ejecting %s", psz_device );
1871
1872         intf_Eject( p_intf, psz_device );
1873     }
1874
1875     free(psz_device);
1876     return;
1877 }
1878
1879 static int comp_dir_entries( const void *pp_dir_entry1,
1880                              const void *pp_dir_entry2 )
1881 {
1882     struct dir_entry_t *p_dir_entry1 = *(struct dir_entry_t**)pp_dir_entry1;
1883     struct dir_entry_t *p_dir_entry2 = *(struct dir_entry_t**)pp_dir_entry2;
1884     if ( p_dir_entry1->b_file == p_dir_entry2->b_file ) {
1885         return strcasecmp( p_dir_entry1->psz_path, p_dir_entry2->psz_path );
1886     }
1887     else
1888     {
1889         return ( p_dir_entry1->b_file ? 1 : -1 );
1890     }
1891 }
1892
1893 static void ReadDir( intf_thread_t *p_intf )
1894 {
1895     intf_sys_t *p_sys = p_intf->p_sys;
1896     DIR *p_current_dir;
1897     int i;
1898
1899     if( p_sys->psz_current_dir && *p_sys->psz_current_dir )
1900     {
1901         const char *psz_entry;
1902
1903         /* Open the dir */
1904         p_current_dir = utf8_opendir( p_sys->psz_current_dir );
1905
1906         if( p_current_dir == NULL )
1907         {
1908             /* something went bad, get out of here ! */
1909 #ifdef HAVE_ERRNO_H
1910             msg_Warn( p_intf, "cannot open directory `%s' (%s)",
1911                       p_sys->psz_current_dir, strerror(errno));
1912 #else
1913             msg_Warn( p_intf, "cannot open directory `%s'", p_sys->psz_current_dir );
1914 #endif
1915             return;
1916         }
1917
1918         /* Clean the old shit */
1919         for( i = 0; i < p_sys->i_dir_entries; i++ )
1920         {
1921             struct dir_entry_t *p_dir_entry = p_sys->pp_dir_entries[i];
1922             free( p_dir_entry->psz_path );
1923             REMOVE_ELEM( p_sys->pp_dir_entries, p_sys->i_dir_entries, i );
1924             free( p_dir_entry );
1925         }
1926         p_sys->pp_dir_entries = NULL;
1927         p_sys->i_dir_entries = 0;
1928
1929         /* get the first directory entry */
1930         psz_entry = utf8_readdir( p_current_dir );
1931
1932         /* while we still have entries in the directory */
1933         while( psz_entry != 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                 LocaleFree( psz_entry );
1948                 psz_entry = utf8_readdir( p_current_dir );
1949                 continue;
1950             }
1951
1952             psz_uri = (char *)malloc( sizeof(char)*i_size_entry);
1953             sprintf( psz_uri, "%s/%s", p_sys->psz_current_dir, psz_entry );
1954
1955             if( !( p_dir_entry = malloc( sizeof( struct dir_entry_t) ) ) )
1956             {
1957                 free( psz_uri);
1958                 return;
1959             }
1960
1961 #if defined( S_ISDIR )
1962             utf8_stat( psz_uri, &stat_data );
1963             if( 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             LocaleFree( psz_entry );
1985             /* Read next entry */
1986             psz_entry = utf8_readdir( p_current_dir );
1987         }
1988
1989         /* Sort */
1990         qsort( p_sys->pp_dir_entries, p_sys->i_dir_entries,
1991                sizeof(struct dir_entry_t*), &comp_dir_entries );
1992
1993         closedir( p_current_dir );
1994         return;
1995     }
1996     else
1997     {
1998         msg_Dbg( p_intf, "no current dir set" );
1999         return;
2000     }
2001 }
2002
2003 static void PlayPause( intf_thread_t *p_intf )
2004 {
2005     input_thread_t *p_input = p_intf->p_sys->p_input;
2006     vlc_value_t val;
2007
2008     if( p_input )
2009     {
2010         var_Get( p_input, "state", &val );
2011         if( val.i_int != PAUSE_S )
2012         {
2013             val.i_int = PAUSE_S;
2014         }
2015         else
2016         {
2017             val.i_int = PLAYING_S;
2018         }
2019         var_Set( p_input, "state", val );
2020     }
2021     else if( p_intf->p_sys->p_playlist )
2022     {
2023         playlist_Play( p_intf->p_sys->p_playlist );
2024     }
2025 }
2026
2027 /****************************************************************************
2028  *
2029  ****************************************************************************/
2030 static void DrawBox( WINDOW *win, int y, int x, int h, int w, const char *title )
2031 {
2032     int i;
2033     int i_len;
2034
2035     if( w > 3 && h > 2 )
2036     {
2037         if( title == NULL ) title = "";
2038         i_len = strlen( title );
2039
2040         if( i_len > w - 2 ) i_len = w - 2;
2041
2042         mvwaddch( win, y, x,    ACS_ULCORNER );
2043         mvwhline( win, y, x+1,  ACS_HLINE, ( w-i_len-2)/2 );
2044         mvwprintw( win,y, x+1+(w-i_len-2)/2, "%s", title );
2045         mvwhline( win, y, x+(w-i_len)/2+i_len,  ACS_HLINE, w - 1 - ((w-i_len)/2+i_len) );
2046         mvwaddch( win, y, x+w-1,ACS_URCORNER );
2047
2048         for( i = 0; i < h-2; i++ )
2049         {
2050             mvwaddch( win, y+i+1, x,     ACS_VLINE );
2051             mvwaddch( win, y+i+1, x+w-1, ACS_VLINE );
2052         }
2053
2054         mvwaddch( win, y+h-1, x,     ACS_LLCORNER );
2055         mvwhline( win, y+h-1, x+1,   ACS_HLINE, w - 2 );
2056         mvwaddch( win, y+h-1, x+w-1, ACS_LRCORNER );
2057     }
2058 }
2059
2060 static void DrawEmptyLine( WINDOW *win, int y, int x, int w )
2061 {
2062     if( w > 0 )
2063     {
2064         mvhline( y, x, ' ', w );
2065     }
2066 }
2067
2068 static void DrawLine( WINDOW *win, int y, int x, int w )
2069 {
2070     if( w > 0 )
2071     {
2072         attrset( A_REVERSE );
2073         mvhline( y, x, ' ', w );
2074         attroff( A_REVERSE );
2075     }
2076 }