Commit 8fc89cd7 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Directory content is now read at startup.

parent 34c546b2
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* callbacks.c : Callbacks for the Familiar Linux Gtk+ plugin. * callbacks.c : Callbacks for the Familiar Linux Gtk+ plugin.
***************************************************************************** *****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN * Copyright (C) 2000, 2001 VideoLAN
* $Id: callbacks.c,v 1.7 2002/08/21 19:30:03 jpsaman Exp $ * $Id: callbacks.c,v 1.8 2002/08/25 20:44:40 jpsaman Exp $
* *
* Authors: Jean-Paul Saman <jpsaman@wxs.nl> * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
* *
...@@ -242,17 +242,19 @@ on_toolbar_open_clicked (GtkButton *button, ...@@ -242,17 +242,19 @@ on_toolbar_open_clicked (GtkButton *button,
gpointer user_data) gpointer user_data)
{ {
intf_thread_t *p_intf = GtkGetIntf( button ); intf_thread_t *p_intf = GtkGetIntf( button );
GtkCList *clistmedia = NULL;
if (p_intf) if (p_intf)
{ {
/* Testing routine */ /* Testing routine */
/*
GtkCList *clistmedia = NULL;
clistmedia = GTK_CLIST( lookup_widget( p_intf->p_sys->p_window, clistmedia = GTK_CLIST( lookup_widget( p_intf->p_sys->p_window,
"clistmedia") ); "clistmedia") );
if (GTK_CLIST(clistmedia)) if (GTK_CLIST(clistmedia))
{ {
ReadDirectory(clistmedia, "."); ReadDirectory(clistmedia, ".");
} }
*/
gtk_widget_show( GTK_WIDGET(p_intf->p_sys->p_notebook) ); gtk_widget_show( GTK_WIDGET(p_intf->p_sys->p_notebook) );
gdk_window_raise( p_intf->p_sys->p_window->window ); gdk_window_raise( p_intf->p_sys->p_window->window );
} }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* familiar.c : familiar plugin for vlc * familiar.c : familiar plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: familiar.c,v 1.7 2002/08/21 19:30:03 jpsaman Exp $ * $Id: familiar.c,v 1.8 2002/08/25 20:44:40 jpsaman Exp $
* *
* Authors: Jean-Paul Saman <jpsaman@wxs.nl> * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
* *
...@@ -145,6 +145,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -145,6 +145,7 @@ static void Run( intf_thread_t *p_intf )
"p_intf", p_intf ); "p_intf", p_intf );
/* Show the control window */ /* Show the control window */
gtk_widget_show( p_intf->p_sys->p_window ); gtk_widget_show( p_intf->p_sys->p_window );
ReadDirectory(p_intf->p_sys->p_clist, ".");
/* Sleep to avoid using all CPU - since some interfaces need to /* Sleep to avoid using all CPU - since some interfaces need to
* access keyboard events, a 100ms delay is a good compromise */ * access keyboard events, a 100ms delay is a good compromise */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment