/**************************************************************************** ** QMPlayerWidget - class ** ** Created: Fri Dec 10 12:09:08 2004 ** by: Varol Okan using kate editor ** ** This class implements the MPLayerWidget ** MediaInterface to this class for integration in QDVDAUthor is MPlayerWidget ** This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 see: http://www.fsf.org/licensing/licenses/gpl-howto.html ****************************************************************************/ #ifndef QMPLAYERWIDGET_H #define QMPLAYERWIDGET_H #include #include class QProcess; class MPlayerInfo; #define MPLAYER_INIT_FILE "/.qdvdauthor/mplayer.ini" #define MPLAYER_TEMP_FILE "/tmp/mplayer_screenshot.jpg" class QMPlayerWidget : public QWidget { Q_OBJECT public: // define the index to the m_arrayPluginOptions[4] enum {VideoPlugin=0, VideoPluginOptions, AudioPlugin, AudioPluginOptions}; // Constructor / Destructor ... QMPlayerWidget(QWidget *p=0, const char *n=0, WFlags f=0); virtual ~QMPlayerWidget(); virtual bool start (QStringList *p=0); void setFilename (const QString &); public slots: virtual void slotReadStdout (); virtual void slotReadStderr (); virtual void slotProcessExited (); virtual void slotWroteToStdin (); virtual void slotLaunchFinished (); void slotForward(); void slotBack(); void slotPlay(); void slotPause(); void slotStop(); void slotSetSpeed (float); void slotSetVolume(float); void slotFullscreen(); void slotSeek(float, int); void slotSetSeek(int); void setAspectRatio (uint); void playChapter(int); // 0=current / -x-=play x chapters before / +x=play current chapter + x bool isPlaying(); signals: void signalMPlayerExited (int); void signalMPlayerStarted (); void signalPlaybackFinished (); protected: void loadInitFile (); void saveInitFile (); private: void writeToStdin (QString &); protected: QProcess *m_pMasterProcess; QString m_qsFileName; QString m_qsScreenshotName; bool m_bInPauseMode; MPlayerInfo *m_pMPLayerInfo; QStringList m_listPluginOptions; signals: void signalNewPosition (int, const QString &); void signalNewPosition (long); void signalElapsedTime (float); //private: public: int m_iSeekValue; int m_iExitError; float m_fLength; QRegExp m_rxParseElapsedTime; QRegExp m_rxParseLength; }; #endif // QMPLAYERWIDGET_H