]> git.sesse.net Git - vlc/commitdiff
* modules/gui/wxwindows/*: another bunch of improvements.
authorGildas Bazin <gbazin@videolan.org>
Sun, 30 Mar 2003 19:56:11 +0000 (19:56 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sun, 30 Mar 2003 19:56:11 +0000 (19:56 +0000)
modules/gui/wxwindows/interface.cpp
modules/gui/wxwindows/timer.cpp

index 79943447a2b8b35a4e1df2e42fb62d0a9f37aaeb..1263e99d4efbcff27209eb754e7946743691b2a4 100644 (file)
@@ -2,7 +2,7 @@
  * interface.cpp : wxWindows plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: interface.cpp,v 1.16 2003/03/26 00:56:22 gbazin Exp $
+ * $Id: interface.cpp,v 1.17 2003/03/30 19:56:11 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -156,6 +156,8 @@ Interface::Interface( intf_thread_t *_p_intf ):
 
     /* Creation of the slider sub-window */
     CreateOurSlider();
+    frame_sizer->Add( slider_frame, 1, wxGROW, 0 );
+    frame_sizer->Hide( slider_frame );
 
     /* Creation of the status bar
      * Helptext for menu items and toolbar tools will automatically get
@@ -318,7 +320,6 @@ void Interface::CreateOurSlider()
     /* Create a new frame containing the slider */
     slider_frame = new wxPanel( this, -1, wxDefaultPosition, wxDefaultSize );
     slider_frame->SetAutoLayout( TRUE );
-    slider_frame->Hide();
 
     /* Create static box to surround the slider */
     slider_box = new wxStaticBox( slider_frame, -1, "" );
@@ -335,6 +336,9 @@ void Interface::CreateOurSlider()
     slider_sizer->Add( slider, 1, wxGROW | wxALL, 5 );
     slider_sizer->Layout();
     slider_sizer->SetSizeHints(slider_frame);
+
+    /* Hide the slider by default */
+    slider_frame->Hide();
 }
 
 void Interface::Open( int i_access_method )
index c94c46687d89dda4be1c33190e11d98ccb99405e..3dc99456ea7a1bcc90edefb22e48f03b9b3d283e 100644 (file)
@@ -2,7 +2,7 @@
  * timer.cpp : wxWindows plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: timer.cpp,v 1.11 2003/03/26 00:56:22 gbazin Exp $
+ * $Id: timer.cpp,v 1.12 2003/03/30 19:56:11 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -98,6 +98,8 @@ static int wxSetupMenus( intf_thread_t * p_intf )
  *****************************************************************************/
 void Timer::Notify()
 {
+    vlc_bool_t b_pace_control;
+
     vlc_mutex_lock( &p_intf->change_lock );
 
     /* If the "display popup" flag has changed */
@@ -120,28 +122,37 @@ void Timer::Notify()
         p_intf->p_sys->p_input = (input_thread_t *)vlc_object_find( p_intf,
                                                        VLC_OBJECT_INPUT,
                                                        FIND_ANYWHERE );
+
         /* Show slider */
-        if(p_intf->p_sys->p_input)
+        if( p_intf->p_sys->p_input )
         {
-            p_main_interface->frame_sizer->Add(
-                p_main_interface->slider_frame, 1, wxGROW, 0 );
-            p_main_interface->slider_frame->Show();
-            p_main_interface->frame_sizer->Layout();
-            p_main_interface->frame_sizer->Fit( p_main_interface );
+           //if( p_intf->p_sys->p_input->stream.b_seekable )
+            {
+                p_main_interface->slider_frame->Show();
+                p_main_interface->frame_sizer->Show(
+                    p_main_interface->slider_frame );
+                p_main_interface->frame_sizer->Layout();
+                p_main_interface->frame_sizer->Fit( p_main_interface );
+            }
+
             p_main_interface->statusbar->SetStatusText(
                 p_intf->p_sys->p_input->psz_source, 1 );
 
             p_main_interface->TogglePlayButton( PLAYING_S );
             i_old_playing_status = PLAYING_S;
         }
+
+        /* control buttons for free pace streams */
+        b_pace_control = p_intf->p_sys->p_input->stream.b_pace_control;
+
     }
     else if( p_intf->p_sys->p_input->b_dead )
     {
         /* Hide slider */
-        if(p_intf->p_sys->p_input)
+        //if( p_intf->p_sys->p_input->stream.b_seekable )
         {
             p_main_interface->slider_frame->Hide();
-            p_main_interface->frame_sizer->Remove(
+            p_main_interface->frame_sizer->Hide(
                 p_main_interface->slider_frame );
             p_main_interface->frame_sizer->Layout();
             p_main_interface->frame_sizer->Fit( p_main_interface );
@@ -181,7 +192,6 @@ void Timer::Notify()
             /* Manage the slider */
             if( p_input->stream.b_seekable && p_intf->p_sys->b_playing )
             {
-
                 stream_position_t position;
 
                 /* Update the slider if the user isn't dragging it. */
@@ -191,15 +201,17 @@ void Timer::Notify()
                     vlc_mutex_unlock( &p_input->stream.stream_lock );
                     input_Tell( p_input, &position );
                     vlc_mutex_lock( &p_input->stream.stream_lock );
-                    p_intf->p_sys->i_slider_pos =
+                    if( position.i_size )
+                    {
+                        p_intf->p_sys->i_slider_pos =
                         ( SLIDER_MAX_POS * position.i_tell ) / position.i_size;
 
-                    p_main_interface->slider->SetValue(
-                        p_intf->p_sys->i_slider_pos );
+                        p_main_interface->slider->SetValue(
+                            p_intf->p_sys->i_slider_pos );
 
-                    DisplayStreamDate( p_main_interface->slider_box,
-                                       p_intf,
-                                       p_intf->p_sys->i_slider_pos );
+                        DisplayStreamDate( p_main_interface->slider_box,p_intf,
+                                           p_intf->p_sys->i_slider_pos );
+                    }
                 }
             }