Commit 6fc4d4a4 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - comment non-existing feature.

parent d2ea07fa
...@@ -259,12 +259,13 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i ) : ...@@ -259,12 +259,13 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i ) :
timeA = timeB = 0; timeA = timeB = 0;
CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ), CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
this, AtoBLoop( float, int, int ) ); this, AtoBLoop( float, int, int ) );
#if 0
frameButton = new QPushButton( "Fr" ); frameButton = new QPushButton( "Fr" );
frameButton->setMaximumSize( QSize( 26, 26 ) ); frameButton->setMaximumSize( QSize( 26, 26 ) );
frameButton->setIconSize( QSize( 20, 20 ) ); frameButton->setIconSize( QSize( 20, 20 ) );
advLayout->addWidget( frameButton ); advLayout->addWidget( frameButton );
BUTTON_SET_ACT( frameButton, "Fr", qtr( "Frame by Frame" ), frame() ); BUTTON_SET_ACT( frameButton, "Fr", qtr( "Frame by Frame" ), frame() );
#endif
recordButton = new QPushButton( "R" ); recordButton = new QPushButton( "R" );
recordButton->setMaximumSize( QSize( 26, 26 ) ); recordButton->setMaximumSize( QSize( 26, 26 ) );
...@@ -293,7 +294,9 @@ void AdvControlsWidget::enableInput( bool enable ) ...@@ -293,7 +294,9 @@ void AdvControlsWidget::enableInput( bool enable )
void AdvControlsWidget::enableVideo( bool enable ) void AdvControlsWidget::enableVideo( bool enable )
{ {
snapshotButton->setEnabled( enable ); snapshotButton->setEnabled( enable );
#if 0
frameButton->setEnabled( enable ); frameButton->setEnabled( enable );
#endif
} }
void AdvControlsWidget::snapshot() void AdvControlsWidget::snapshot()
...@@ -337,8 +340,10 @@ void AdvControlsWidget::AtoBLoop( float f_pos, int i_time, int i_length ) ...@@ -337,8 +340,10 @@ void AdvControlsWidget::AtoBLoop( float f_pos, int i_time, int i_length )
/* FIXME Record function */ /* FIXME Record function */
void AdvControlsWidget::record(){} void AdvControlsWidget::record(){}
#if 0
//FIXME Frame by frame function //FIXME Frame by frame function
void AdvControlsWidget::frame(){} void AdvControlsWidget::frame(){}
#endif
/***************************** /*****************************
* DA Control Widget ! * DA Control Widget !
......
...@@ -123,7 +123,9 @@ private: ...@@ -123,7 +123,9 @@ private:
private slots: private slots:
void snapshot(); void snapshot();
#if 0
void frame(); void frame();
#endif
void fromAtoB(); void fromAtoB();
void record(); void record();
void AtoBLoop( float, int, int ); void AtoBLoop( float, int, int );
......
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