]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs/playlist.cpp
Fix compilation. It inserts the playlist only in tree view local.
[vlc] / modules / gui / wxwidgets / dialogs / playlist.cpp
1 /*****************************************************************************
2  * playlist.cpp : wxWindows plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
8  *          Clément Stenac <zorglub@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/OR MODIFy
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include "dialogs/playlist.hpp"
29 #include "dialogs/iteminfo.hpp"
30
31 #include "bitmaps/shuffle.xpm"
32 #include "bitmaps/repeat.xpm"
33 #include "bitmaps/loop.xpm"
34
35 #include "bitmaps/type_unknown.xpm"
36 #include "bitmaps/type_afile.xpm"
37 #include "bitmaps/type_vfile.xpm"
38 #include "bitmaps/type_net.xpm"
39 #include "bitmaps/type_card.xpm"
40 #include "bitmaps/type_disc.xpm"
41 #include "bitmaps/type_cdda.xpm"
42 #include "bitmaps/type_directory.xpm"
43 #include "bitmaps/type_playlist.xpm"
44 #include "bitmaps/type_node.xpm"
45
46 #include <wx/dynarray.h>
47 #include <wx/imaglist.h>
48
49 #include <vlc_meta.h>
50 #include "charset.h"
51
52 #define HELP_SHUFFLE N_( "Shuffle" )
53 #define HELP_LOOP N_( "Repeat All" )
54 #define HELP_REPEAT N_( "Repeat One" )
55
56 namespace wxvlc {
57 /* Callback prototype */
58 static int PlaylistChanged( vlc_object_t *, const char *,
59                             vlc_value_t, vlc_value_t, void * );
60 static int PlaylistNext( vlc_object_t *, const char *,
61                          vlc_value_t, vlc_value_t, void * );
62 static int ItemChanged( vlc_object_t *, const char *,
63                         vlc_value_t, vlc_value_t, void * );
64 static int ItemAppended( vlc_object_t *p_this, const char *psz_variable,
65                          vlc_value_t oval, vlc_value_t nval, void *param );
66 static int ItemDeleted( vlc_object_t *p_this, const char *psz_variable,
67                         vlc_value_t oval, vlc_value_t nval, void *param );
68
69 /*****************************************************************************
70  * Event Table.
71  *****************************************************************************/
72
73 /* IDs for the controls and the menu commands */
74 enum
75 {
76     /* menu items */
77     AddFile_Event = 1,
78     AddDir_Event,
79     AddMRL_Event,
80     Close_Event,
81     Open_Event,
82     Save_Event,
83
84     SortTitle_Event,
85     RSortTitle_Event,
86     Randomize_Event,
87
88     DeleteSelection_Event,
89     Random_Event,
90     Loop_Event,
91     Repeat_Event,
92
93     PopupPlay_Event,
94     PopupPlayThis_Event,
95     PopupPreparse_Event,
96     PopupSort_Event,
97     PopupDel_Event,
98     PopupInfo_Event,
99     PopupAddNode_Event,
100
101     SearchText_Event,
102     Search_Event,
103
104     /* controls */
105     Source_Event,
106     TreeCtrl_Event,
107
108     Browse_Event,  /* For export playlist */
109
110     /* custom events */
111     UpdateItem_Event,
112     AppendItem_Event,
113     RemoveItem_Event,
114
115     MenuDummy_Event = wxID_HIGHEST + 999,
116
117     FirstView_Event = wxID_HIGHEST + 1000,
118     CategoryView_Event, OneLevelView_Event,
119     LastView_Event = wxID_HIGHEST + 1100,
120
121     FirstSD_Event = wxID_HIGHEST + 2000,
122     LastSD_Event = wxID_HIGHEST + 2100,
123 };
124
125 DEFINE_LOCAL_EVENT_TYPE( wxEVT_PLAYLIST );
126
127 BEGIN_EVENT_TABLE(Playlist, wxFrame)
128     EVT_SIZE(Playlist::OnSize)
129
130     /* Menu events */
131     EVT_MENU(AddFile_Event, Playlist::OnAddFile)
132     EVT_MENU(AddDir_Event, Playlist::OnAddDir)
133     EVT_MENU(AddMRL_Event, Playlist::OnAddMRL)
134     EVT_MENU(Close_Event, Playlist::OnMenuClose)
135     EVT_MENU(Open_Event, Playlist::OnOpen)
136     EVT_MENU(Save_Event, Playlist::OnSave)
137
138     EVT_MENU(SortTitle_Event, Playlist::OnSort)
139     EVT_MENU(RSortTitle_Event, Playlist::OnSort)
140
141     EVT_MENU(Randomize_Event, Playlist::OnSort)
142
143     EVT_MENU(DeleteSelection_Event, Playlist::OnDeleteSelection)
144
145     EVT_MENU_OPEN( Playlist::OnMenuOpen )
146     EVT_MENU( -1, Playlist::OnMenuEvent )
147
148     EVT_TOOL(Random_Event, Playlist::OnRandom)
149     EVT_TOOL(Repeat_Event, Playlist::OnRepeat)
150     EVT_TOOL(Loop_Event, Playlist::OnLoop)
151
152     /* Popup events */
153     EVT_MENU( PopupPlay_Event, Playlist::OnPopupPlay)
154     EVT_MENU( PopupPlayThis_Event, Playlist::OnPopupPlay)
155     EVT_MENU( PopupPreparse_Event, Playlist::OnPopupPreparse)
156     EVT_MENU( PopupSort_Event, Playlist::OnPopupSort)
157     EVT_MENU( PopupDel_Event, Playlist::OnPopupDel)
158     EVT_MENU( PopupInfo_Event, Playlist::OnPopupInfo)
159     EVT_MENU( PopupAddNode_Event, Playlist::OnPopupAddNode)
160
161     /* Source selector */
162     EVT_LIST_ITEM_SELECTED( Source_Event, Playlist::OnSourceSelected )
163     /* Tree control events */
164     EVT_TREE_ITEM_ACTIVATED( TreeCtrl_Event, Playlist::OnActivateItem )
165     EVT_TREE_KEY_DOWN( -1, Playlist::OnKeyDown )
166     EVT_TREE_BEGIN_DRAG( TreeCtrl_Event, Playlist::OnDragItemBegin )
167     EVT_TREE_END_DRAG( TreeCtrl_Event, Playlist::OnDragItemEnd )
168
169     EVT_CONTEXT_MENU( Playlist::OnPopup )
170
171     /* Button events */
172     EVT_BUTTON( Search_Event, Playlist::OnSearch)
173     EVT_BUTTON( Save_Event, Playlist::OnSave)
174
175     /*EVT_TEXT( SearchText_Event, Playlist::OnSearchTextChange )*/
176     EVT_TEXT_ENTER( SearchText_Event, Playlist::OnSearch )
177
178     /* Custom events */
179     EVT_COMMAND(-1, wxEVT_PLAYLIST, Playlist::OnPlaylistEvent)
180
181     /* Special events : we don't want to destroy the window when the user
182      * clicks on (X) */
183     EVT_CLOSE(Playlist::OnClose)
184 END_EVENT_TABLE()
185
186 /*****************************************************************************
187  * PlaylistItem class
188  ****************************************************************************/
189 class PlaylistItem : public wxTreeItemData
190 {
191 public:
192     PlaylistItem( playlist_item_t *p_item ) : wxTreeItemData()
193     {
194         i_id = p_item->i_id;
195         i_input_id = p_item->p_input->i_id;
196     }
197 protected:
198     int i_input_id;
199     int i_id;
200 friend class Playlist;
201 friend class PlaylistFileDropTarget;
202 };
203
204 /*****************************************************************************
205  * Constructor.
206  *****************************************************************************/
207 Playlist::Playlist( intf_thread_t *_p_intf, wxWindow *p_parent ):
208     wxFrame( p_parent, -1, wxU(_("Playlist")), wxDefaultPosition,
209              wxSize(500,300), wxDEFAULT_FRAME_STYLE )
210 {
211     vlc_value_t val;
212
213     /* Initializations */
214     p_intf = _p_intf;
215     pp_sds = NULL;
216     i_update_counter = 0;
217     i_sort_mode = MODE_NONE;
218     b_need_update = VLC_FALSE;
219     i_items_to_append = 0;
220     p_playlist = (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
221                                                 FIND_ANYWHERE );
222     msg_Err(p_intf, "p_playlist= 0x%x", p_playlist);
223     if( p_playlist == NULL ) return;
224
225     SetIcon( *p_intf->p_sys->p_icon );
226
227     p_view_menu = NULL;
228     p_sd_menu = SDMenu();
229
230 //    i_current_view = VIEW_ONELEVEL;
231     p_current_viewroot = p_playlist->p_root_onelevel;
232     p_current_treeroot = p_playlist->p_local_onelevel;
233
234     i_title_sorted = 0;
235     i_group_sorted = 0;
236     i_duration_sorted = 0;
237
238     var_Create( p_intf, "random", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
239     var_Create( p_intf, "loop", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
240     var_Create( p_intf, "repeat", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );;
241
242     /* Create our "Manage" menu */
243     wxMenu *manage_menu = new wxMenu;
244     manage_menu->Append( AddFile_Event, wxU(_("&Simple Add File...")) );
245     manage_menu->Append( AddDir_Event, wxU(_("Add &Directory...")) );
246     manage_menu->Append( AddMRL_Event, wxU(_("&Add URL...")) );
247     manage_menu->AppendSeparator();
248     manage_menu->Append( MenuDummy_Event, wxU(_("Services Discovery")),
249                          p_sd_menu );
250     manage_menu->AppendSeparator();
251     manage_menu->Append( Open_Event, wxU(_("&Open Playlist...")) );
252     manage_menu->Append( Save_Event, wxU(_("&Save Playlist...")) );
253     manage_menu->AppendSeparator();
254     manage_menu->Append( Close_Event, wxU(_("&Close")) );
255
256     /* Create our "Sort" menu */
257     wxMenu *sort_menu = new wxMenu;
258     sort_menu->Append( SortTitle_Event, wxU(_("Sort by &Title")) );
259     sort_menu->Append( RSortTitle_Event, wxU(_("&Reverse Sort by Title")) );
260     sort_menu->AppendSeparator();
261     sort_menu->Append( Randomize_Event, wxU(_("&Shuffle")) );
262
263     /* Create our "Selection" menu */
264     wxMenu *selection_menu = new wxMenu;
265     selection_menu->Append( DeleteSelection_Event, wxU(_("D&elete")) );
266
267     /* Create our "View" menu */
268     ViewMenu();
269
270     /* Append the freshly created menus to the menu bar */
271     wxMenuBar *menubar = new wxMenuBar();
272     menubar->Append( manage_menu, wxU(_("&Manage")) );
273     menubar->Append( sort_menu, wxU(_("S&ort")) );
274     menubar->Append( selection_menu, wxU(_("&Selection")) );
275     menubar->Append( p_view_menu, wxU(_("&View items") ) );
276
277     /* Attach the menu bar to the frame */
278     SetMenuBar( menubar );
279
280     /* Create the popup menu */
281     node_popup = new wxMenu;
282     node_popup->Append( PopupPlay_Event, wxU(_("Play")) );
283     node_popup->Append( PopupPlayThis_Event, wxU(_("Play this Branch")) );
284     node_popup->Append( PopupPreparse_Event, wxU(_("Preparse")) );
285     node_popup->Append( PopupSort_Event, wxU(_("Sort this Branch")) );
286     node_popup->Append( PopupDel_Event, wxU(_("Delete")) );
287     node_popup->Append( PopupInfo_Event, wxU(_("Info")) );
288     node_popup->Append( PopupAddNode_Event, wxU(_("Add Node")) );
289
290     item_popup = new wxMenu;
291     item_popup->Append( PopupPlay_Event, wxU(_("Play")) );
292     item_popup->Append( PopupPreparse_Event, wxU(_("Preparse")) );
293     item_popup->Append( PopupDel_Event, wxU(_("Delete")) );
294     item_popup->Append( PopupInfo_Event, wxU(_("Info")) );
295
296     /* Create a panel to put everything in */
297     wxPanel *playlist_panel = new wxPanel( this, -1 );
298     playlist_panel->SetAutoLayout( TRUE );
299
300     /* Create the toolbar */
301     wxToolBar *toolbar =
302         CreateToolBar( wxTB_HORIZONTAL | wxTB_FLAT );
303
304     /* Create the random tool */
305     toolbar->AddTool( Random_Event, wxT(""), wxBitmap(shuffle_on_xpm),
306                        wxBitmap(shuffle_on_xpm), wxITEM_CHECK,
307                        wxU(_(HELP_SHUFFLE) ) );
308     var_Get( p_intf, "random", &val );
309     toolbar->ToggleTool( Random_Event, val.b_bool );
310
311     /* Create the Loop tool */
312     toolbar->AddTool( Loop_Event, wxT(""), wxBitmap( loop_xpm),
313                       wxBitmap( loop_xpm), wxITEM_CHECK,
314                       wxU(_(HELP_LOOP )  ) );
315     var_Get( p_intf, "loop", &val );
316     toolbar->ToggleTool( Loop_Event, val.b_bool );
317
318     /* Create the Repeat one checkbox */
319     toolbar->AddTool( Repeat_Event, wxT(""), wxBitmap( repeat_xpm),
320                       wxBitmap( repeat_xpm), wxITEM_CHECK,
321                       wxU(_(HELP_REPEAT )  ) );
322     var_Get( p_intf, "repeat", &val );
323     toolbar->ToggleTool( Repeat_Event, val.b_bool ) ;
324
325     /* Create the Search Textbox */
326     search_text = new wxTextCtrl( toolbar, SearchText_Event, wxT(""),
327                                   wxDefaultPosition, wxSize(100, -1),
328                                   wxTE_PROCESS_ENTER);
329
330     /* Create the search button */
331     search_button = new wxButton( toolbar , Search_Event, wxU(_("Search")) );
332
333     toolbar->AddControl( new wxControl( toolbar, -1, wxDefaultPosition,
334                          wxSize(16, 16), wxBORDER_NONE ) );
335     toolbar->AddControl( search_text );
336     toolbar->AddControl( new wxControl( toolbar, -1, wxDefaultPosition,
337                          wxSize(5, 5), wxBORDER_NONE ) );
338     toolbar->AddControl( search_button );
339     search_button->SetDefault();
340     toolbar->Realize();
341
342     /* Create teh source selector */
343     source_sel = new wxListCtrl( playlist_panel, Source_Event,
344                                 wxDefaultPosition, wxDefaultSize,
345                                 wxLC_AUTOARRANGE|wxLC_SINGLE_SEL );
346
347     /* Create the tree */
348     treectrl = new wxTreeCtrl( playlist_panel, TreeCtrl_Event,
349                                wxDefaultPosition, wxDefaultSize,
350                                wxTR_HIDE_ROOT | wxTR_LINES_AT_ROOT|
351                                wxTR_NO_LINES |
352                                wxTR_HAS_BUTTONS | wxTR_TWIST_BUTTONS |
353                                wxTR_MULTIPLE | wxTR_EXTENDED );
354
355     /* Create image list */
356     wxImageList *p_images = new wxImageList( 16 , 16, TRUE );
357
358     /* FIXME: absolutely needs to be in the right order FIXME */
359     p_images->Add( wxIcon( type_unknown_xpm ) );
360     p_images->Add( wxIcon( type_afile_xpm ) );
361     p_images->Add( wxIcon( type_vfile_xpm ) );
362     p_images->Add( wxIcon( type_directory_xpm ) );
363     p_images->Add( wxIcon( type_disc_xpm ) );
364     p_images->Add( wxIcon( type_cdda_xpm ) );
365     p_images->Add( wxIcon( type_card_xpm ) );
366     p_images->Add( wxIcon( type_net_xpm ) );
367     p_images->Add( wxIcon( type_playlist_xpm ) );
368     p_images->Add( wxIcon( type_node_xpm ) );
369     treectrl->AssignImageList( p_images );
370
371     treectrl->AddRoot( wxU(_("root" )), -1, -1, NULL );
372
373     /* Reduce font size */
374     wxFont font= treectrl->GetFont();
375     font.SetPointSize(9);
376     treectrl->SetFont( font );
377
378     wxBoxSizer *panel_sizer = new wxBoxSizer( wxHORIZONTAL );
379     panel_sizer->Add( source_sel, 0, wxALL | wxEXPAND, 5 );
380     panel_sizer->Add( treectrl, 1, wxEXPAND | wxALL, 5 );
381     panel_sizer->Layout();
382
383     playlist_panel->SetSizerAndFit( panel_sizer );
384
385     int pi_widths[1] =  { -1 };
386     statusbar = CreateStatusBar( 1 );
387     statusbar->SetStatusWidths( 1, pi_widths );
388
389 #if wxUSE_DRAG_AND_DROP
390     /* Associate drop targets with the playlist */
391     SetDropTarget( new PlaylistFileDropTarget( this ) );
392     menubar->SetDropTarget( new PlaylistFileDropTarget( this ) );
393     toolbar->SetDropTarget( new PlaylistFileDropTarget( this ) );
394 #endif
395
396     i_saved_id = -1;
397     i_saved_input_id = -1;
398
399     /* Some global changes happened -> Rebuild all */
400     var_AddCallback( p_playlist, "intf-change", PlaylistChanged, this );
401
402     /* We went to the next item */
403     var_AddCallback( p_playlist, "playlist-current", PlaylistNext, this );
404
405     /* One item has been updated */
406     var_AddCallback( p_playlist, "item-change", ItemChanged, this );
407
408     var_AddCallback( p_playlist, "item-append", ItemAppended, this );
409     var_AddCallback( p_playlist, "item-deleted", ItemDeleted, this );
410
411     /* Update the playlist */
412     Rebuild( VLC_TRUE );
413
414 }
415
416 Playlist::~Playlist()
417 {
418     if( pp_sds != NULL ) free( pp_sds );
419
420     if( p_playlist == NULL ) return;
421
422     var_DelCallback( p_playlist, "item-change", ItemChanged, this );
423     var_DelCallback( p_playlist, "playlist-current", PlaylistNext, this );
424     var_DelCallback( p_playlist, "intf-change", PlaylistChanged, this );
425     var_DelCallback( p_playlist, "item-append", ItemAppended, this );
426     var_DelCallback( p_playlist, "item-deleted", ItemDeleted, this );
427     vlc_object_release( p_playlist );
428 }
429
430 /**********************************************************************
431  * Update functions
432  **********************************************************************/
433
434 /* Update a node */
435 void Playlist::UpdateNode( playlist_item_t *p_node, wxTreeItemId node )
436 {
437     wxTreeItemIdValue cookie;
438     wxTreeItemId child;
439     for( int i = 0; i< p_node->i_children ; i++ )
440     {
441         if( i == 0 )
442         {
443             child = treectrl->GetFirstChild( node, cookie);
444         }
445         else
446         {
447             child = treectrl->GetNextChild( node, cookie );
448         }
449
450         if( !child.IsOk() )
451         {
452             /* Not enough children */
453             CreateNode( p_node->pp_children[i], node );
454             /* Keep the tree pointer up to date */
455             child = treectrl->GetNextChild( node, cookie );
456         }
457     }
458     treectrl->SetItemImage( node, p_node->p_input->i_type );
459
460 }
461
462 /* Creates the node p_node as last child of parent */
463 void Playlist::CreateNode( playlist_item_t *p_node, wxTreeItemId parent )
464 {
465     wxTreeItemId node =
466         treectrl->AppendItem( parent, wxL2U( p_node->p_input->psz_name ),
467                               -1,-1, new PlaylistItem( p_node ) );
468     treectrl->SetItemImage( node, p_node->p_input->i_type );
469
470     UpdateNodeChildren( p_node, node );
471 }
472
473 /* Update all children (recursively) of this node */
474 void Playlist::UpdateNodeChildren( playlist_item_t *p_node,
475                                    wxTreeItemId node )
476 {
477     for( int i = 0; i< p_node->i_children ; i++ )
478     {
479         /* Append the item */
480         if( p_node->pp_children[i]->i_children == -1 )
481         {
482             if( !(p_node->pp_children[i]->i_flags & PLAYLIST_DBL_FLAG) )
483             {
484                 wxTreeItemId item =
485                     treectrl->AppendItem( node,
486                     wxL2U( p_node->pp_children[i]->p_input->psz_name ), -1,-1,
487                            new PlaylistItem( p_node->pp_children[i]) );
488
489                 UpdateTreeItem( item );
490             }
491         }
492         else
493         {
494             CreateNode( p_node->pp_children[i], node );
495         }
496     }
497 }
498
499 /* Update an item in the tree */
500 void Playlist::UpdateTreeItem( wxTreeItemId item )
501 {
502     LockPlaylist( p_intf->p_sys, p_playlist );
503     if( ! item.IsOk() ) return;
504
505     wxTreeItemData *p_data = treectrl->GetItemData( item );
506     if( !p_data ) return;
507
508     playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
509                                           ((PlaylistItem *)p_data)->i_id );
510     if( !p_item )
511     {
512         UnlockPlaylist( p_intf->p_sys, p_playlist );
513         return;
514     }
515
516     wxString msg;
517     wxString duration = wxU( "" );
518
519     char *psz_author;
520     if( p_item->p_input->p_meta )
521     {
522         psz_author= p_item->p_input->p_meta->psz_artist ?
523                         strdup( p_item->p_input->p_meta->psz_artist ) :
524                         strdup("");
525     }
526     else
527         psz_author = strdup( "" );
528
529     char psz_duration[MSTRTIME_MAX_SIZE];
530     mtime_t dur = p_item->p_input->i_duration;
531
532     if( dur != -1 )
533     {
534         secstotimestr( psz_duration, dur/1000000 );
535         duration.Append( wxU( " ( " ) +  wxString( wxU( psz_duration ) ) +
536                          wxU( " )" ) );
537     }
538
539     if( !strcmp( psz_author, "" ) || p_item->p_input->b_fixed_name == VLC_TRUE )
540     {
541         msg = wxString( wxU( p_item->p_input->psz_name ) ) + duration;
542     }
543     else
544     {
545         msg = wxString(wxU( psz_author )) + wxT(" - ") +
546               wxString(wxU(p_item->p_input->psz_name)) + duration;
547     }
548     free( psz_author );
549     treectrl->SetItemText( item , msg );
550     treectrl->SetItemImage( item, p_item->p_input->i_type );
551
552     if( p_playlist->status.p_item == p_item )
553     {
554         treectrl->SetItemBold( item, true );
555         while( treectrl->GetItemParent( item ).IsOk() )
556         {
557             item = treectrl->GetItemParent( item );
558             if( ! (item == treectrl->GetRootItem() &&
559                 treectrl->HasFlag( wxTR_HIDE_ROOT ) ) )
560                 treectrl->Expand( item );
561         }
562     }
563     else
564     {
565         treectrl->SetItemBold( item, false );
566     }
567     UnlockPlaylist( p_intf->p_sys, p_playlist );
568 }
569
570 /* Process a AppendIt em request */
571 void Playlist::AppendItem( wxCommandEvent& event )
572 {
573     playlist_add_t *p_add = (playlist_add_t *)event.GetClientData();
574     playlist_item_t *p_item = NULL;
575     wxTreeItemId item, node;
576
577     i_items_to_append--;
578
579     /* No need to do anything if the playlist is going to be rebuilt */
580     if( b_need_update ) return;
581
582     node = FindItem( treectrl->GetRootItem(), p_add->i_node );
583     if( !node.IsOk() ) goto update;
584
585     p_item = playlist_ItemGetById( p_playlist, p_add->i_item );
586     if( !p_item ) goto update;
587     if( (p_item->i_flags & PLAYLIST_DBL_FLAG ) ) goto update;
588
589     item = FindItem( treectrl->GetRootItem(), p_add->i_item );
590     if( item.IsOk() ) goto update;
591
592     item = treectrl->AppendItem( node,
593                                  wxL2U( p_item->p_input->psz_name ), -1,-1,
594                                  new PlaylistItem( p_item ) );
595     treectrl->SetItemImage( item, p_item->p_input->i_type );
596
597     if( item.IsOk() && p_item->i_children == -1 )
598     {
599         UpdateTreeItem( item );
600     }
601
602 update:
603     int i_count = CountItems( treectrl->GetRootItem());
604     statusbar->SetStatusText( wxString::Format( wxU(_(
605                                   "%i items in playlist" ) ), i_count ) );
606     return;
607 }
608
609 /* Process a updateitem request */
610 void Playlist::UpdateItem( int i )
611 {
612     if( i < 0 ) return; /* Sanity check */
613     wxTreeItemId item = FindItemByInput( treectrl->GetRootItem(), i );
614     if( item.IsOk() )
615     {
616         UpdateTreeItem( item );
617     }
618 }
619
620 void Playlist::RemoveItem( int i )
621 {
622     if( i <= 0 ) return; /* Sanity check */
623     if( i == i_saved_id ) i_saved_id = -1;
624
625     /* Hack: always invalidate input item cache */
626     i_saved_input_id = -1;
627
628     /// \todo Check if it is in the source selector */
629
630     wxTreeItemId item = FindItem( treectrl->GetRootItem(), i );
631
632     if( item.IsOk() )
633     {
634         treectrl->Delete( item );
635     }
636 }
637
638
639 /**********************************************************************
640  * Search functions (internal)
641  **********************************************************************/
642
643 /* Find a wxItem from a playlist id */
644 wxTreeItemId Playlist::FindItem( wxTreeItemId root, int i_id )
645 {
646     return FindItemInner( root, i_id, false );
647 }
648
649 wxTreeItemId Playlist::FindItemByInput( wxTreeItemId root, int i_input_id )
650 {
651     return FindItemInner( root, i_input_id, true );
652 }
653
654 wxTreeItemId Playlist::FindItemInner( wxTreeItemId root, int i_id, bool b_byinput )
655 {
656     wxTreeItemIdValue cookie;
657     PlaylistItem *p_wxcurrent;
658     wxTreeItemId search;
659     wxTreeItemId item = treectrl->GetFirstChild( root, cookie );
660     wxTreeItemId child;
661
662     p_wxcurrent = (PlaylistItem *)treectrl->GetItemData( root );
663
664     if( i_id < 0 )
665     {
666         wxTreeItemId dummy; dummy.Unset(); return dummy;
667     }
668     if( b_byinput && i_saved_input_id == i_id )
669         return saved_input_tree_item;
670     if( !b_byinput && i_saved_id == i_id)
671         return saved_tree_item;
672
673     if( !p_wxcurrent )
674     {
675         wxTreeItemId dummy; dummy.Unset(); return dummy;
676     }
677
678     if( !b_byinput && p_wxcurrent->i_id == i_id  )
679     {
680         i_saved_id = i_id;
681         saved_tree_item = root;
682         return root;
683     }
684     if( b_byinput && p_wxcurrent->i_input_id == i_id )
685     {
686         i_saved_input_id = i_id;
687         saved_input_tree_item = root;
688         return root;
689     }
690
691     while( item.IsOk() )
692     {
693         p_wxcurrent = (PlaylistItem *)treectrl->GetItemData( item );
694         if( !b_byinput && p_wxcurrent->i_id == i_id )
695         {
696             i_saved_id = i_id;
697             saved_tree_item = item;
698             return item;
699         }
700         else if( b_byinput && p_wxcurrent->i_input_id == i_id )
701         {
702             i_saved_input_id = i_id;
703             saved_input_tree_item = item;
704             return item;
705         }
706         if( treectrl->ItemHasChildren( item ) )
707         {
708             wxTreeItemId search = FindItemInner( item, i_id, b_byinput );
709             if( search.IsOk() )
710             {
711                 if( !b_byinput )
712                 {
713                     i_saved_id = i_id;
714                     saved_tree_item = search;
715                     return search;
716                 }
717                 else
718                 {
719                     i_saved_input_id = i_id;
720                     saved_input_tree_item = search;
721                     return search;
722
723                 }
724             }
725         }
726         item = treectrl->GetNextChild( root, cookie );
727     }
728     /* Not found */
729     wxTreeItemId dummy; dummy.Unset(); return dummy;
730 }
731
732 int Playlist::CountItems( wxTreeItemId root )
733 {
734     wxTreeItemIdValue cookie;
735     int count = 0;
736     wxTreeItemId item = treectrl->GetFirstChild( root, cookie );
737
738     while( item.IsOk() )
739     {
740         if( treectrl->ItemHasChildren( item ) )
741         {
742             count += CountItems( item );
743         }
744         else
745         {
746             playlist_item_t *p_item;
747             LockPlaylist( p_intf->p_sys, p_playlist );
748             p_item = playlist_ItemGetById( p_playlist, ((PlaylistItem *)treectrl->GetItemData( item ))->i_id );
749             if( p_item && p_item->i_children == -1 )
750                 count++;
751             UnlockPlaylist( p_intf->p_sys, p_playlist );
752         }
753         item = treectrl->GetNextChild( root, cookie );
754     }
755     return count;
756 }
757
758 /* Find a wxItem from a name (from current) */
759 wxTreeItemId Playlist::FindItemByName( wxTreeItemId root, wxString search_string, wxTreeItemId current, vlc_bool_t *pb_current_found )
760 {
761     wxTreeItemIdValue cookie;
762     wxTreeItemId search;
763     wxTreeItemId item = treectrl->GetFirstChild( root, cookie );
764     wxTreeItemId child;
765
766     while( item.IsOk() )
767     {
768         if( treectrl->GetItemText( item).Lower().Contains(
769                                                  search_string.Lower() ) )
770         {
771             if( !current.IsOk() || *pb_current_found == VLC_TRUE )
772             {
773                 return item;
774             }
775             else if( current.IsOk() && item == current )
776             {
777                 *pb_current_found = VLC_TRUE;
778             }
779         }
780         if( treectrl->ItemHasChildren( item ) )
781         {
782             wxTreeItemId search = FindItemByName( item, search_string, current,
783                                                   pb_current_found );
784             if( search.IsOk() )
785             {
786                 return search;
787             }
788         }
789         item = treectrl->GetNextChild( root, cookie);
790     }
791     /* Not found */
792     wxTreeItemId dummy; dummy.Unset();
793     return dummy;
794 }
795
796 /**********************************************************************
797  * Rebuild the playlist
798  **********************************************************************/
799 void Playlist::Rebuild( vlc_bool_t b_root )
800 {
801     i_items_to_append = 0;
802
803     /* We can remove the callbacks before locking, anyway, we won't
804      * miss anything */
805     if( b_root )
806     {
807         var_DelCallback( p_playlist, "item-change", ItemChanged, this );
808         var_DelCallback( p_playlist, "playlist-current", PlaylistNext, this );
809         var_DelCallback( p_playlist, "intf-change", PlaylistChanged, this );
810         var_DelCallback( p_playlist, "item-append", ItemAppended, this );
811         var_DelCallback( p_playlist, "item-deleted", ItemDeleted, this );
812
813         /* ...and rebuild it */
814         LockPlaylist( p_intf->p_sys, p_playlist );
815     }
816     /* Invalidate cache */
817     i_saved_id = -1;
818     i_saved_input_id = -1;
819
820     /* Rebuild the list */
821     source_sel->ClearAll();
822     for( int i = 0 ; i< p_current_viewroot->i_children ; i++ )
823     {
824         source_sel->InsertItem( i,
825                wxL2U( p_current_viewroot->pp_children[i]->p_input->psz_name) );
826         source_sel->SetItemData( i,
827                         p_current_viewroot->pp_children[i]->i_id );
828         if( p_current_viewroot->pp_children[i] == p_current_treeroot )
829             source_sel->Select( i );
830     }
831
832     /* HACK we should really get new*/
833     treectrl->DeleteAllItems();
834     treectrl->AddRoot( wxU(_("root" )), -1, -1,
835                          new PlaylistItem( p_current_treeroot ) );
836
837     wxTreeItemId root = treectrl->GetRootItem();
838     //UpdateNode( p_current_treeroot, root );
839     //CreateNode( p_current_treeroot, root );
840     UpdateNodeChildren( p_current_treeroot, root );
841
842     int i_count = CountItems( treectrl->GetRootItem() );
843
844     statusbar->SetStatusText( wxString::Format( wxU(_(
845                               "%i items in playlist")), i_count ), 0 );
846
847     if( b_root )
848     {
849         /* Put callbacks back online */
850         var_AddCallback( p_playlist, "intf-change", PlaylistChanged, this );
851         var_AddCallback( p_playlist, "playlist-current", PlaylistNext, this );
852         var_AddCallback( p_playlist, "item-change", ItemChanged, this );
853         var_AddCallback( p_playlist, "item-append", ItemAppended, this );
854         var_AddCallback( p_playlist, "item-deleted", ItemDeleted, this );
855
856         UnlockPlaylist( p_intf->p_sys, p_playlist );
857     }
858 }
859
860 void Playlist::ShowPlaylist( bool show )
861 {
862     if( show ) Rebuild( VLC_TRUE );
863     Show( show );
864 }
865
866 /* This function is called on a regular basis */
867 void Playlist::UpdatePlaylist()
868 {
869     i_update_counter++;
870
871     /* If the playlist isn't show there's no need to update it */
872     if( !IsShown() ) return;
873
874     if( this->b_need_update )
875     {
876         this->b_need_update = VLC_FALSE;
877         Rebuild( VLC_TRUE );
878     }
879
880     /* Updating the playing status every 0.5s is enough */
881     if( i_update_counter % 5 ) return;
882 }
883
884 /*****************************************************************************
885  * Private methods.
886  *****************************************************************************/
887 void Playlist::DeleteTreeItem( wxTreeItemId item )
888 {
889    PlaylistItem *p_wxitem;
890    playlist_item_t *p_item;
891    p_wxitem = (PlaylistItem *)treectrl->GetItemData( item );
892
893    LockPlaylist( p_intf->p_sys, p_playlist );
894    p_item = playlist_ItemGetById( p_playlist, p_wxitem->i_id );
895
896    if( !p_item )
897    {
898        UnlockPlaylist( p_intf->p_sys, p_playlist );
899        return;
900    }
901
902    if( p_item->i_children == -1 ) DeleteItem( p_item->p_input->i_id );
903    else DeleteNode( p_item );
904
905    RemoveItem( p_item->i_id );
906    UnlockPlaylist( p_intf->p_sys, p_playlist );
907 }
908
909 void Playlist::DeleteItem( int item_id )
910 {
911     playlist_DeleteAllFromInput( p_playlist, item_id );
912 }
913
914 void Playlist::DeleteNode( playlist_item_t *p_item )
915 {
916     playlist_NodeDelete( p_playlist, p_item, VLC_TRUE , VLC_FALSE );
917 }
918
919 void Playlist::OnMenuClose( wxCommandEvent& event )
920 {
921     wxCloseEvent cevent;
922     OnClose(cevent);
923 }
924
925 void Playlist::OnClose( wxCloseEvent& WXUNUSED(event) )
926 {
927     Hide();
928 }
929
930 void Playlist::OnSave( wxCommandEvent& WXUNUSED(event) )
931 {
932     struct {
933         char *psz_desc;
934         char *psz_filter;
935         char *psz_module;
936     } formats[] = {//{ _("M3U file"), "*.m3u", "export-m3u" },
937                    { _("XSPF playlist"), "*.xspf", "export-xspf"}
938     };
939
940     wxString filter = wxT("");
941
942     if( p_playlist->i_size == 0 )
943     {
944         wxMessageBox( wxU(_("Playlist is empty") ), wxU(_("Can't save")),
945                       wxICON_WARNING | wxOK, this );
946         return;
947     }
948
949     for( unsigned int i = 0; i < sizeof(formats)/sizeof(formats[0]); i++)
950     {
951         filter.Append( wxU(formats[i].psz_desc) );
952         filter.Append( wxT("|") );
953         filter.Append( wxU(formats[i].psz_filter) );
954         filter.Append( wxT("|") );
955     }
956     wxFileDialog dialog( this, wxU(_("Save playlist")),
957                          wxT(""), wxT(""), filter, wxSAVE );
958
959     if( dialog.ShowModal() == wxID_OK )
960     {
961         if( dialog.GetPath().mb_str() )
962         {
963             /* what root should we export? */
964             if( p_playlist->p_root_category->i_children > 0 )
965             {
966                 playlist_Export( p_playlist, dialog.GetPath().mb_str(),
967                                  p_playlist->p_root_category->pp_children[0],
968                                  formats[dialog.GetFilterIndex()].psz_module );
969             }
970         }
971     }
972
973 }
974
975 void Playlist::OnOpen( wxCommandEvent& WXUNUSED(event) )
976 {
977     wxFileDialog dialog( this, wxU(_("Open playlist")), wxT(""), wxT(""),
978         wxT("All playlists|" EXTENSIONS_PLAYLIST "|XSPF playlist|*.xspf|M3U files|*.m3u"), wxOPEN );
979
980     if( dialog.ShowModal() == wxID_OK )
981     {
982         playlist_Import( p_playlist, dialog.GetPath().mb_str(),
983                          /*FIXME: where do we want to insert ? */
984                          p_playlist->p_local_category, VLC_TRUE );
985     }
986 }
987
988 void Playlist::OnAddFile( wxCommandEvent& WXUNUSED(event) )
989 {
990     p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_FILE_SIMPLE, 0, 0 );
991
992 }
993
994 void Playlist::OnAddDir( wxCommandEvent& WXUNUSED(event) )
995 {
996     p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_DIRECTORY, 0, 0 );
997
998 }
999
1000 void Playlist::OnAddMRL( wxCommandEvent& WXUNUSED(event) )
1001 {
1002     p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_FILE, 0, 0 );
1003
1004 }
1005
1006 /********************************************************************
1007  * Sorting functions
1008  ********************************************************************/
1009 void Playlist::OnSort( wxCommandEvent& event )
1010 {
1011     PlaylistItem *p_wxitem;
1012     p_wxitem = (PlaylistItem *)treectrl->GetItemData( treectrl->GetRootItem() );
1013
1014     LockPlaylist( p_intf->p_sys, p_playlist );
1015     switch( event.GetId() )
1016     {
1017         case SortTitle_Event:
1018             playlist_RecursiveNodeSort( p_playlist,
1019                             playlist_ItemGetById( p_playlist, p_wxitem->i_id ),
1020                             SORT_TITLE_NODES_FIRST, ORDER_NORMAL );
1021             break;
1022         case RSortTitle_Event:
1023             playlist_RecursiveNodeSort( p_playlist,
1024                             playlist_ItemGetById( p_playlist, p_wxitem->i_id ),
1025                             SORT_TITLE_NODES_FIRST, ORDER_REVERSE );
1026     }
1027     UnlockPlaylist( p_intf->p_sys, p_playlist );
1028
1029     Rebuild( VLC_TRUE );
1030 }
1031
1032 /**********************************************************************
1033  * Search functions (user)
1034  **********************************************************************/
1035 /*void Playlist::OnSearchTextChange( wxCommandEvent& WXUNUSED(event) )
1036 {
1037    search_button->SetDefault();
1038 }*/
1039
1040 void Playlist::OnSearch( wxCommandEvent& WXUNUSED(event) )
1041 {
1042     wxString search_string = search_text->GetValue();
1043     PlaylistItem *p_wxroot;
1044     p_wxroot = (PlaylistItem *)treectrl->GetItemData( treectrl->GetRootItem() );
1045     playlist_item_t *p_root = playlist_ItemGetById( p_playlist, p_wxroot->i_id );
1046
1047     assert( p_root );
1048     char *psz_name = wxFromLocale( search_string );
1049     playlist_LiveSearchUpdate( p_playlist, p_root, psz_name );
1050     Rebuild( VLC_TRUE );
1051
1052     wxLocaleFree( psz_name );
1053 }
1054
1055 /**********************************************************************
1056  * Selection functions
1057  **********************************************************************/
1058 void Playlist::RecursiveDeleteSelection(  wxTreeItemId root )
1059 {
1060     wxTreeItemIdValue cookie;
1061     wxTreeItemId child = treectrl->GetFirstChild( root, cookie );
1062     while( child.IsOk() )
1063     {
1064         if( treectrl->ItemHasChildren( child ) )
1065         {
1066             RecursiveDeleteSelection( child );
1067             if( treectrl->IsSelected(child ) ) DeleteTreeItem( child );
1068         }
1069         else if( treectrl->IsSelected( child ) )
1070             DeleteTreeItem( child );
1071         child = treectrl->GetNextChild( root, cookie );
1072     }
1073 }
1074
1075 void Playlist::OnDeleteSelection( wxCommandEvent& WXUNUSED(event) )
1076 {
1077     RecursiveDeleteSelection( treectrl->GetRootItem() );
1078 }
1079
1080 /**********************************************************************
1081  * Playlist mode functions
1082  **********************************************************************/
1083 void Playlist::OnRandom( wxCommandEvent& event )
1084 {
1085     vlc_value_t val;
1086     val.b_bool = event.IsChecked();
1087     var_Set( p_playlist, "random", val);
1088 }
1089
1090 void Playlist::OnLoop( wxCommandEvent& event )
1091 {
1092     vlc_value_t val;
1093     val.b_bool = event.IsChecked();
1094     var_Set( p_playlist, "loop", val);
1095 }
1096
1097 void Playlist::OnRepeat( wxCommandEvent& event )
1098 {
1099     vlc_value_t val;
1100     val.b_bool = event.IsChecked();
1101     var_Set( p_playlist, "repeat", val);
1102 }
1103
1104 /********************************************************************
1105  * Event
1106  ********************************************************************/
1107 void Playlist::OnActivateItem( wxTreeEvent& event )
1108 {
1109     playlist_item_t *p_item, *p_parent;
1110
1111     PlaylistItem *p_wxitem = (PlaylistItem *)treectrl->GetItemData(
1112                                                             event.GetItem() );
1113
1114     LockPlaylist( p_intf->p_sys, p_playlist );
1115
1116     if( !( p_wxitem ) )
1117     {
1118         UnlockPlaylist( p_intf->p_sys, p_playlist );
1119         return;
1120     }
1121     p_item = playlist_ItemGetById( p_playlist, p_wxitem->i_id );
1122
1123     p_parent = p_item;
1124     while( p_parent )
1125     {
1126         if( p_parent == p_current_treeroot )
1127             break;
1128         p_parent = p_parent->p_parent;
1129     }
1130
1131     if( p_parent )
1132     {
1133         playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, p_parent, p_item );
1134     }
1135     UnlockPlaylist( p_intf->p_sys, p_playlist );
1136 }
1137
1138 void Playlist::OnKeyDown( wxTreeEvent& event )
1139 {
1140     long keycode = event.GetKeyCode();
1141     /* Delete selected items */
1142     if( keycode == WXK_BACK || keycode == WXK_DELETE )
1143     {
1144         /* We send a dummy event */
1145         OnDeleteSelection( event );
1146     }
1147     /* Work around wxWin32 bug */
1148     else if( keycode == WXK_RETURN )
1149     {
1150         wxArrayTreeItemIds items;
1151         if( treectrl->GetSelections( items ) > 0 )
1152         {
1153             wxTreeEvent event;
1154             event.SetItem( items.Item( 0 ) );
1155             OnActivateItem( event );
1156         }
1157     }
1158     else
1159     {
1160         event.Skip();
1161     }
1162 }
1163
1164 void Playlist::OnDragItemBegin( wxTreeEvent& event )
1165 {
1166     event.Allow();
1167     draged_tree_item = event.GetItem();
1168 }
1169
1170 void Playlist::OnDragItemEnd( wxTreeEvent& event )
1171 {
1172     wxTreeItemId dest_tree_item = event.GetItem();
1173
1174     if( !dest_tree_item.IsOk() ) return;
1175
1176     /* check that we're not trying to move a node into one of it's children */
1177     wxTreeItemId parent = dest_tree_item;
1178     while( parent != treectrl->GetRootItem() )
1179     {
1180         if( draged_tree_item == parent ) return;
1181         parent = treectrl->GetItemParent( parent );
1182     }
1183
1184     LockPlaylist( p_intf->p_sys, p_playlist );
1185
1186     PlaylistItem *p_wxdrageditem =
1187         (PlaylistItem *)treectrl->GetItemData( draged_tree_item );
1188     PlaylistItem *p_wxdestitem =
1189         (PlaylistItem *)treectrl->GetItemData( dest_tree_item );
1190     if( !p_wxdrageditem || !p_wxdestitem )
1191     {
1192         UnlockPlaylist( p_intf->p_sys, p_playlist );
1193         return;
1194     }
1195
1196     playlist_item_t *p_drageditem =
1197         playlist_ItemGetById(p_playlist, p_wxdrageditem->i_id );
1198     playlist_item_t *p_destitem =
1199         playlist_ItemGetById(p_playlist, p_wxdestitem->i_id );
1200     if( !p_drageditem || !p_destitem )
1201     {
1202         UnlockPlaylist( p_intf->p_sys, p_playlist );
1203         return;
1204     }
1205
1206     if( p_destitem->i_children == -1 )
1207     /* this is a leaf */
1208     {
1209         parent = treectrl->GetItemParent( dest_tree_item );
1210         PlaylistItem *p_parent =
1211             (PlaylistItem *)treectrl->GetItemData( parent );
1212         if( !p_parent )
1213         {
1214             UnlockPlaylist( p_intf->p_sys, p_playlist );
1215             return;
1216         }
1217         playlist_item_t *p_destitem2 =
1218             playlist_ItemGetById( p_playlist, p_parent->i_id );
1219         if( !p_destitem2 )
1220         {
1221             UnlockPlaylist( p_intf->p_sys, p_playlist );
1222             return;
1223         }
1224         int i;
1225         for( i = 0; i < p_destitem2->i_children; i++ )
1226         {
1227             if( p_destitem2->pp_children[i] == p_destitem ) break;
1228         }
1229         playlist_TreeMove( p_playlist, p_drageditem, p_destitem2, i );
1230     }
1231     else
1232     /* this is a node */
1233     {
1234         playlist_TreeMove( p_playlist, p_drageditem, p_destitem, 0 );
1235     }
1236
1237     UnlockPlaylist( p_intf->p_sys, p_playlist );
1238
1239     /* FIXME: having this Rebuild() is dirty */
1240     Rebuild( VLC_TRUE );
1241 }
1242
1243 #if wxUSE_DRAG_AND_DROP
1244 PlaylistFileDropTarget::PlaylistFileDropTarget( Playlist *p ):p( p ){}
1245
1246 /********************************************************************
1247  * File Drag And Drop handling
1248  ********************************************************************/
1249 bool PlaylistFileDropTarget::OnDropFiles( wxCoord x, wxCoord y,
1250                                const wxArrayString& filenames )
1251 {
1252     int i_pos = 0;
1253     playlist_item_t *p_dest;
1254
1255     LockPlaylist( p->p_intf->p_sys, p->p_playlist );
1256
1257     /* find the destination node and position in that node */
1258     const wxPoint pt( x, y );
1259     wxTreeItemId item = p->treectrl->HitTest( pt );
1260
1261     if( !item.IsOk() )
1262     {
1263         /* We were droped below the last item so we append to the
1264          * general node */
1265         msg_Err( p->p_playlist, "USE OF P_GENERAL" );
1266         p_dest = p->p_playlist->p_local_category;
1267         i_pos = PLAYLIST_END;
1268     }
1269     else
1270     {
1271         PlaylistItem *p_plitem =
1272             (PlaylistItem *)p->treectrl->GetItemData( item );
1273         p_dest = playlist_ItemGetById( p->p_playlist, p_plitem->i_id );
1274
1275         if( p_dest->i_children == -1 )
1276         {
1277             /* This is a leaf. Append right after it
1278              * We thus need to find the parrent node and the position of the
1279              * leaf in it's children list */
1280             wxTreeItemId parent = p->treectrl->GetItemParent( item );
1281             PlaylistItem *p_parent =
1282                 (PlaylistItem *)p->treectrl->GetItemData( parent );
1283             if( !p_parent )
1284             {
1285                 UnlockPlaylist( p->p_intf->p_sys, p->p_playlist );
1286                 return FALSE;
1287             }
1288             playlist_item_t *p_node =
1289                 playlist_ItemGetById( p->p_playlist, p_parent->i_id );
1290             if( !p_node )
1291             {
1292                 UnlockPlaylist( p->p_intf->p_sys, p->p_playlist );
1293                 return FALSE;
1294             }
1295             for( i_pos = 0; i_pos < p_node->i_children; i_pos++ )
1296             {
1297                 if( p_node->pp_children[i_pos] == p_dest ) break;
1298             }
1299             p_dest = p_node;
1300         }
1301     }
1302
1303     UnlockPlaylist( p->p_intf->p_sys, p->p_playlist );
1304
1305     /* Put the items in the playlist node */
1306     for( size_t i = 0; i < filenames.GetCount(); i++ )
1307     {
1308         const char *psz_utf8 = wxDnDFromLocale( filenames[i] );
1309         input_item_t *p_input = input_ItemNew( p->p_playlist,
1310                                               psz_utf8, psz_utf8 );
1311         playlist_NodeAddInput( p->p_playlist, p_input,
1312                                p_dest, PLAYLIST_PREPARSE, i_pos );
1313         wxDnDLocaleFree( psz_utf8 );
1314     }
1315
1316     /* FIXME: having this Rebuild() is dirty */
1317     p->Rebuild( VLC_TRUE );
1318
1319     return TRUE;
1320 }
1321 #endif
1322
1323 /**********************************************************************
1324  * Menu
1325  **********************************************************************/
1326
1327 void Playlist::OnMenuOpen( wxMenuEvent& event)
1328 {
1329 #if defined( __WXMSW__ )
1330 #   define GetEventObject GetMenu
1331 #endif
1332
1333     if( event.GetEventObject() == p_view_menu )
1334     {
1335         p_view_menu = ViewMenu();
1336     }
1337 #if defined( __WXMSW__ )
1338 #   undef GetEventObject
1339 #endif
1340 }
1341
1342 void Playlist::OnMenuEvent( wxCommandEvent& event )
1343 {
1344     if( event.GetId() < FirstView_Event )
1345     {
1346         event.Skip();
1347         return;
1348     }
1349     else if( event.GetId() < LastView_Event )
1350     {
1351         if( event.GetId() == CategoryView_Event )
1352         {
1353             p_current_viewroot = p_playlist->p_root_category;
1354             if( p_current_treeroot == p_playlist->p_local_category ||
1355                 p_current_treeroot == p_playlist->p_local_onelevel )
1356             {
1357                 p_current_treeroot = p_playlist->p_local_category;
1358             }
1359             else if( p_current_treeroot == p_playlist->p_ml_category ||
1360                      p_current_treeroot == p_playlist->p_ml_onelevel )
1361             {
1362                 p_current_treeroot = p_playlist->p_ml_category;
1363             }
1364         }
1365         else if( event.GetId() == OneLevelView_Event )
1366         {
1367             p_current_viewroot = p_playlist->p_root_onelevel;
1368             if( p_current_treeroot == p_playlist->p_local_category ||
1369                 p_current_treeroot == p_playlist->p_local_onelevel )
1370             {
1371                 p_current_treeroot = p_playlist->p_local_onelevel;
1372             }
1373             else if( p_current_treeroot == p_playlist->p_ml_category ||
1374                      p_current_treeroot == p_playlist->p_ml_onelevel )
1375             {
1376                 p_current_treeroot = p_playlist->p_ml_onelevel;
1377             }
1378         }
1379         wxCommandEvent event;
1380         OnSearch( event );
1381         return;
1382     }
1383     else if( event.GetId() >= FirstSD_Event && event.GetId() < LastSD_Event )
1384     {
1385         if( !playlist_IsServicesDiscoveryLoaded( p_playlist,
1386                                 pp_sds[event.GetId() - FirstSD_Event] ) )
1387         {
1388             playlist_ServicesDiscoveryAdd( p_playlist,
1389                             pp_sds[event.GetId() - FirstSD_Event] );
1390         }
1391         else
1392         {
1393             //wxMutexGuiLeave();
1394             playlist_ServicesDiscoveryRemove( p_playlist,
1395                             pp_sds[event.GetId() - FirstSD_Event] );
1396             //wxMutexGuiEnter();
1397         }
1398     }
1399 }
1400
1401 wxMenu * Playlist::ViewMenu()
1402 {
1403     if( !p_view_menu )
1404     {
1405         p_view_menu = new wxMenu;
1406     }
1407     else
1408     {
1409         wxMenuItemList::Node *node = p_view_menu->GetMenuItems().GetFirst();
1410         for( ; node; )
1411         {
1412             wxMenuItem *item = node->GetData();
1413             node = node->GetNext();
1414             p_view_menu->Delete( item );
1415         }
1416     }
1417
1418     p_view_menu->Append( CategoryView_Event, wxU(_("Normal") ) );
1419     p_view_menu->Append( OneLevelView_Event, wxU(_("One level") ) );
1420     return p_view_menu;
1421 }
1422
1423 wxMenu *Playlist::SDMenu()
1424 {
1425     p_sd_menu = new wxMenu;
1426
1427     vlc_list_t *p_list = vlc_list_find( p_playlist, VLC_OBJECT_MODULE,
1428                                         FIND_ANYWHERE );
1429
1430     int i_number = 0;
1431     for( int i_index = 0; i_index < p_list->i_count; i_index++ )
1432     {
1433         module_t * p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1434
1435         if( !strcmp( p_parser->psz_capability, "services_discovery" ) )
1436             i_number++;
1437     }
1438     if( i_number ) pp_sds = (char **)calloc( i_number, sizeof(void *) );
1439
1440     i_number = 0;
1441     for( int i_index = 0; i_index < p_list->i_count; i_index++ )
1442     {
1443         module_t * p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1444
1445         if( !strcmp( p_parser->psz_capability, "services_discovery" ) )
1446         {
1447             p_sd_menu->AppendCheckItem( FirstSD_Event + i_number ,
1448                 wxU( p_parser->psz_longname ? p_parser->psz_longname :
1449                      (p_parser->psz_shortname ?
1450                       p_parser->psz_shortname : p_parser->psz_object_name) ) );
1451
1452             /* hack to handle submodules properly */
1453             int i = -1;
1454             while( p_parser->pp_shortcuts[++i] != NULL );
1455             i--;
1456             if( playlist_IsServicesDiscoveryLoaded( p_playlist,
1457                                     i>=0?p_parser->pp_shortcuts[i]
1458                                     :p_parser->psz_object_name ) )
1459             {
1460                 p_sd_menu->Check( FirstSD_Event + i_number, TRUE );
1461             }
1462
1463             pp_sds[i_number++] = i>=0?p_parser->pp_shortcuts[i]
1464                                  :p_parser->psz_object_name;
1465         }
1466     }
1467     vlc_list_release( p_list );
1468     return p_sd_menu;
1469 }
1470
1471
1472 /*****************************************************************************
1473  * Popup management functions
1474  *****************************************************************************/
1475 void Playlist::OnPopup( wxContextMenuEvent& event )
1476 {
1477     wxPoint pt = event.GetPosition();
1478     playlist_item_t *p_item;
1479
1480     i_wx_popup_item = treectrl->HitTest( ScreenToClient( pt ) );
1481     if( i_wx_popup_item.IsOk() )
1482     {
1483         PlaylistItem *p_wxitem = (PlaylistItem *)treectrl->GetItemData(
1484                                                             i_wx_popup_item );
1485         PlaylistItem *p_wxparent= (PlaylistItem *)treectrl->GetItemData(
1486                                   treectrl->GetItemParent( i_wx_popup_item ) );
1487         i_popup_item = p_wxitem->i_id;
1488         i_popup_parent = p_wxparent->i_id;
1489         treectrl->SelectItem( i_wx_popup_item );
1490
1491         LockPlaylist( p_intf->p_sys, p_playlist );
1492         p_item = playlist_ItemGetById( p_playlist, i_popup_item );
1493
1494         if( !p_item )
1495         {
1496             UnlockPlaylist( p_intf->p_sys, p_playlist );
1497             return;
1498         }
1499         if( p_item->i_children == -1 )
1500         {
1501             UnlockPlaylist( p_intf->p_sys, p_playlist );
1502             Playlist::PopupMenu( item_popup,
1503                                  ScreenToClient( wxGetMousePosition() ) );
1504         }
1505         else
1506         {
1507             UnlockPlaylist( p_intf->p_sys, p_playlist );
1508             Playlist::PopupMenu( node_popup,
1509                                  ScreenToClient( wxGetMousePosition() ) );
1510         }
1511     }
1512 }
1513
1514 void Playlist::OnPopupPlay( wxCommandEvent& event )
1515 {
1516     playlist_item_t *p_popup_item, *p_popup_parent;
1517     LockPlaylist( p_intf->p_sys, p_playlist );
1518     p_popup_item = playlist_ItemGetById( p_playlist, i_popup_item );
1519
1520     p_popup_parent = p_popup_item;
1521     while( p_popup_parent )
1522     {
1523         if( p_popup_parent == p_current_treeroot )
1524             break;
1525         p_popup_parent = p_popup_parent->p_parent;
1526     }
1527
1528     if( p_popup_parent )
1529     {
1530         playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, p_popup_parent,
1531                           p_popup_item );
1532     }
1533     UnlockPlaylist( p_intf->p_sys, p_playlist );
1534 }
1535
1536 void Playlist::OnPopupPreparse( wxCommandEvent& event )
1537 {
1538     Preparse();
1539 }
1540
1541 void Playlist::Preparse()
1542 {
1543     playlist_item_t *p_popup_item;
1544     LockPlaylist( p_intf->p_sys, p_playlist );
1545     p_popup_item = playlist_ItemGetById( p_playlist, i_popup_item );
1546
1547     if( p_popup_item != NULL )
1548     {
1549         if( p_popup_item->i_children == -1 )
1550         {
1551             playlist_PreparseEnqueue( p_playlist, p_popup_item->p_input );
1552         }
1553         else
1554         {
1555             int i = 0;
1556             playlist_item_t *p_parent = p_popup_item;
1557             for( i = 0; i< p_parent->i_children ; i++ )
1558             {
1559                 wxMenuEvent dummy;
1560                 i_wx_popup_item = FindItem( treectrl->GetRootItem(),
1561                                          p_parent->pp_children[i]->i_id );
1562                 i_popup_item = p_parent->pp_children[i]->i_id;
1563                 Preparse();
1564             }
1565         }
1566     }
1567     UnlockPlaylist( p_intf->p_sys, p_playlist );
1568 }
1569
1570 void Playlist::OnPopupDel( wxCommandEvent& event )
1571 {
1572     DeleteTreeItem( i_wx_popup_item );
1573 }
1574
1575 void Playlist::OnPopupSort( wxCommandEvent& event )
1576 {
1577     PlaylistItem *p_wxitem;
1578     playlist_item_t *p_item;
1579
1580     p_wxitem = (PlaylistItem *)treectrl->GetItemData( i_wx_popup_item );
1581     LockPlaylist( p_intf->p_sys, p_playlist );
1582
1583     p_item = playlist_ItemGetById( p_playlist, p_wxitem->i_id );
1584     if( p_item->i_children >= 0 )
1585     {
1586         playlist_RecursiveNodeSort( p_playlist, p_item,
1587                                     SORT_TITLE_NODES_FIRST, ORDER_NORMAL );
1588
1589         treectrl->DeleteChildren( i_wx_popup_item );
1590         i_saved_id = -1; i_saved_input_id = -1;
1591         UpdateNodeChildren( p_item, i_wx_popup_item );
1592
1593     }
1594     UnlockPlaylist( p_intf->p_sys, p_playlist );
1595 }
1596
1597 void Playlist::OnPopupInfo( wxCommandEvent& event )
1598 {
1599     LockPlaylist( p_intf->p_sys, p_playlist );
1600     playlist_item_t *p_popup_item = playlist_ItemGetById( p_playlist, i_popup_item );
1601     if( p_popup_item )
1602     {
1603         iteminfo_dialog = new ItemInfoDialog( p_intf, p_popup_item, this );
1604         if( iteminfo_dialog->ShowModal() == wxID_OK )
1605         {
1606             UpdateItem( i_wx_popup_item );
1607         }
1608         delete iteminfo_dialog;
1609     }
1610     UnlockPlaylist( p_intf->p_sys, p_playlist );
1611 }
1612
1613 void Playlist::OnPopupAddNode( wxCommandEvent& event )
1614 {
1615     wxTextEntryDialog text( NULL, wxU(_( "Please enter node name" )),
1616         wxU(_( "Add node" )), wxU(_( "New node" )) );
1617     if( text.ShowModal() != wxID_OK ) return;
1618
1619     char *psz_name = wxFromLocale( text.GetValue() );
1620
1621     LockPlaylist( p_intf->p_sys, p_playlist );
1622
1623     PlaylistItem *p_wxitem;
1624     playlist_item_t *p_item;
1625
1626     p_wxitem = (PlaylistItem *)treectrl->GetItemData( i_wx_popup_item );
1627
1628     p_item = playlist_ItemGetById( p_playlist, p_wxitem->i_id );
1629
1630     playlist_NodeCreate( p_playlist, psz_name, p_item );
1631
1632     UnlockPlaylist( p_intf->p_sys, p_playlist );
1633     Rebuild( VLC_TRUE );
1634
1635     wxLocaleFree( psz_name );
1636 }
1637
1638 void Playlist::OnSourceSelected( wxListEvent &event )
1639 {
1640    int i_id = event.GetData();
1641
1642    if( p_current_treeroot && i_id != p_current_treeroot->i_id )
1643    {
1644        playlist_item_t *p_item = playlist_ItemGetById( p_playlist, i_id );
1645        if( p_item ) p_current_treeroot = p_item;
1646        Rebuild( VLC_TRUE );
1647    }
1648 }
1649
1650 /*****************************************************************************
1651  * Custom events management
1652  *****************************************************************************/
1653 void Playlist::OnPlaylistEvent( wxCommandEvent& event )
1654 {
1655     switch( event.GetId() )
1656     {
1657         case UpdateItem_Event:
1658             fprintf( stderr,"Update input item id %i\n", event.GetInt() );
1659             UpdateItem( event.GetInt() );
1660             break;
1661         case AppendItem_Event:
1662             fprintf( stderr,"Append item id %i\n",
1663                          ((playlist_add_t*)event.GetClientData())->i_item );
1664             AppendItem( event );
1665             break;
1666         case RemoveItem_Event:
1667             fprintf( stderr,"Remove item id %i\n", event.GetInt() );
1668             RemoveItem( event.GetInt() );
1669             break;
1670     }
1671 }
1672
1673 /*****************************************************************************
1674  * PlaylistChanged: callback triggered by the intf-change playlist variable
1675  *  We don't rebuild the playlist directly here because we don't want the
1676  *  caller to block for a too long time.
1677  *****************************************************************************/
1678 static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
1679                             vlc_value_t oval, vlc_value_t nval, void *param )
1680 {
1681     Playlist *p_playlist_dialog = (Playlist *)param;
1682     p_playlist_dialog->b_need_update = VLC_TRUE;
1683     return VLC_SUCCESS;
1684 }
1685
1686 /*****************************************************************************
1687  * Next: callback triggered by the playlist-current playlist variable
1688  *****************************************************************************/
1689 static int PlaylistNext( vlc_object_t *p_this, const char *psz_variable,
1690                          vlc_value_t oval, vlc_value_t nval, void *param )
1691 {
1692     Playlist *p_playlist_dialog = (Playlist *)param;
1693
1694     wxCommandEvent event( wxEVT_PLAYLIST, UpdateItem_Event );
1695     event.SetInt( oval.i_int );
1696     p_playlist_dialog->AddPendingEvent( event );
1697     event.SetInt( nval.i_int );
1698     p_playlist_dialog->AddPendingEvent( event );
1699
1700     return 0;
1701 }
1702
1703 /*****************************************************************************
1704  * ItemChanged: callback triggered by the item-change playlist variable
1705  *****************************************************************************/
1706 static int ItemChanged( vlc_object_t *p_this, const char *psz_variable,
1707                         vlc_value_t old_val, vlc_value_t new_val, void *param )
1708 {
1709     Playlist *p_playlist_dialog = (Playlist *)param;
1710
1711     wxCommandEvent event( wxEVT_PLAYLIST, UpdateItem_Event );
1712     event.SetInt( new_val.i_int );
1713     p_playlist_dialog->AddPendingEvent( event );
1714
1715     return 0;
1716 }
1717 static int ItemDeleted( vlc_object_t *p_this, const char *psz_variable,
1718                         vlc_value_t old_val, vlc_value_t new_val, void *param )
1719 {
1720     Playlist *p_playlist_dialog = (Playlist *)param;
1721
1722     wxCommandEvent event( wxEVT_PLAYLIST, RemoveItem_Event );
1723     event.SetInt( new_val.i_int );
1724     p_playlist_dialog->AddPendingEvent( event );
1725
1726     return 0;
1727 }
1728
1729 static int ItemAppended( vlc_object_t *p_this, const char *psz_variable,
1730                          vlc_value_t oval, vlc_value_t nval, void *param )
1731 {
1732     Playlist *p_playlist_dialog = (Playlist *)param;
1733
1734     playlist_add_t *p_add = (playlist_add_t *)malloc(sizeof( playlist_add_t));
1735     memcpy( p_add, nval.p_address, sizeof( playlist_add_t ) );
1736
1737     if( ++p_playlist_dialog->i_items_to_append >= 50 )
1738     {
1739         /* Too many items waiting to be added, it will be quicker to rebuild
1740          * the whole playlist */
1741         p_playlist_dialog->b_need_update = VLC_TRUE;
1742         return VLC_SUCCESS;
1743     }
1744
1745     wxCommandEvent event( wxEVT_PLAYLIST, AppendItem_Event );
1746     event.SetClientData( (void *)p_add );
1747     p_playlist_dialog->AddPendingEvent( event );
1748
1749     return VLC_SUCCESS;
1750 }
1751 }