summaryrefslogtreecommitdiff
path: root/noncore
authorharlekin <harlekin>2002-08-05 16:58:54 (UTC)
committer harlekin <harlekin>2002-08-05 16:58:54 (UTC)
commit6577ed5401ef1374b57a58dd459e91c10899e097 (patch) (side-by-side diff)
treebe02c6759e10490af57918f9b2475a552a571da1 /noncore
parentaf5168ac637f2f5b871cc73a69151dd3d829fec0 (diff)
downloadopie-6577ed5401ef1374b57a58dd459e91c10899e097.zip
opie-6577ed5401ef1374b57a58dd459e91c10899e097.tar.gz
opie-6577ed5401ef1374b57a58dd459e91c10899e097.tar.bz2
doc updates
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/xinecontrol.cpp32
1 files changed, 26 insertions, 6 deletions
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.cpp b/noncore/multimedia/opieplayer2/xinecontrol.cpp
index d08ff04..cf7dcb2 100644
--- a/noncore/multimedia/opieplayer2/xinecontrol.cpp
+++ b/noncore/multimedia/opieplayer2/xinecontrol.cpp
@@ -22,116 +22,136 @@
..}^=.=       =       ; Library General Public License for more
++=   -.     .`     .: details.
 :     =  ...= . :.=-
 -.   .:....=;==+<; You should have received a copy of the GNU
  -_. . .   )=.  = Library General Public License along with
    --        :-=` this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#include <qtimer.h>
#include "xinecontrol.h"
#include "mediaplayerstate.h"
#include "videowidget.h"
extern MediaPlayerState *mediaPlayerState;
extern VideoWidget *videoUI;
XineControl::XineControl( QObject *parent, const char *name )
: QObject( parent, name ) {
libXine = new XINE::Lib(videoUI->vidWidget() );
- connect ( videoUI, SIGNAL( videoResized ( const QSize & )), this, SLOT( videoResized ( const QSize & )));
+ connect ( videoUI, SIGNAL( videoResized ( const QSize & )), this, SLOT( videoResized ( const QSize & )));
connect( mediaPlayerState, SIGNAL( pausedToggled(bool) ), this, SLOT( pause(bool) ) );
connect( this, SIGNAL( positionChanged( long ) ), mediaPlayerState, SLOT( updatePosition( long ) ) );
connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), this, SLOT( stop( bool ) ) );
connect( mediaPlayerState, SIGNAL( fullscreenToggled( bool ) ), this, SLOT( setFullscreen( bool ) ) );
connect( mediaPlayerState, SIGNAL( positionChanged( long ) ), this, SLOT( seekTo( long ) ) );
-
}
XineControl::~XineControl() {
delete libXine;
}
void XineControl::play( const QString& fileName ) {
m_fileName = fileName;
libXine->play( fileName );
mediaPlayerState->setPlaying( true );
// default to audio view until we know how to handle video
// MediaDetect mdetect;
char whichGui = mdetect.videoOrAudio( fileName );
if (whichGui == 'f') {
qDebug("Nicht erkannter Dateityp");
return;
}
if (whichGui == 'a') {
libXine->setShowVideo( false );
} else {
libXine->setShowVideo( true );
}
// determine if slider is shown
// mediaPlayerState->setIsStreaming( mdetect.isStreaming( fileName ) );
mediaPlayerState->setIsStreaming( libXine->isSeekable() );
// which gui (video / audio)
mediaPlayerState->setView( whichGui );
length();
position();
}
void XineControl::stop( bool isSet ) {
if ( !isSet) {
libXine->stop();
mediaPlayerState->setList();
//mediaPlayerState->setPlaying( false );
} else {
// play again
}
}
+/**
+ * Pause playback
+ * @isSet
+ */
void XineControl::pause( bool isSet) {
libXine->pause();
}
+
+/**
+ * get current time in playback
+ */
long XineControl::currentTime() {
// todo: jede sekunde überprüfen
m_currentTime = libXine->currentTime();
return m_currentTime;
QTimer::singleShot( 1000, this, SLOT( currentTime() ) );
}
+/**
+ * Set the length of the media file
+ */
void XineControl::length() {
m_length = libXine->length();
mediaPlayerState->setLength( m_length );
}
+
+/**
+ * Reports the position the xine backend is at right now
+ * @return long the postion in seconds
+ */
long XineControl::position() {
m_position = ( currentTime() );
mediaPlayerState->updatePosition( m_position );
long emitPos = (long)m_position;
emit positionChanged( emitPos );
if(mediaPlayerState->isPlaying)
// needs to be stopped the media is stopped
QTimer::singleShot( 1000, this, SLOT( position() ) );
// qDebug("POSITION : %d", m_position);
return m_position;
}
+/**
+ * Set videoplayback to fullscreen
+ * @param isSet
+ */
void XineControl::setFullscreen( bool isSet ) {
libXine->showVideoFullScreen( isSet);
}
+/**
+ * Seek to a position in the track
+ * @param second the second to jump to
+ */
void XineControl::seekTo( long second ) {
- qDebug("seek triggered!!");
libXine->play( m_fileName , 0, (int)second );
}
-
-void XineControl::videoResized ( const QSize &s )
-{
+void XineControl::videoResized ( const QSize &s ) {
libXine-> resize ( s );
}