/*************************************************************************** mediaplayer.hpp - description ------------------- begin : Tue Sep 09 2008 copyright : (C) 2008 by Krippel Harald email : harald@hte-develop.net ***************************************************************************/ /*************************************************************************** * * * 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. * * * ***************************************************************************/ #ifndef MEDIALAYER_H #define MEDIAPLAYER_H #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE class QThread; class QPushButton; class QLabel; class QSlider; class QTextEdit; class QMenu; class Ui_settings; QT_END_NAMESPACE class MediaPlayer : public QWidget { Q_OBJECT public: MediaPlayer(const QString &); signals: void sigVolume(int); void sigFile(const QString &); void sigUrl(const QString &); public slots: void openFile(); void pause(); void play(); void rewind(); void forward(); void setVolume(int); void setQCVolume(int); void dragEnterEvent(QDragEnterEvent *e); void dragMoveEvent(QDragMoveEvent *e); void dropEvent(QDropEvent *e); void handleDrop(QDropEvent *e); void setFile(const QString &text); void setUrl(const QString &text); void setFullScreen(bool val); void initVideoWindow(); void initSettingsDialog(); void updateEffect(); void updateInfo(); void updateTime(); void finished(); void scaleChanged(QAction *); void aspectChanged(QAction *); void playPause(); private slots: void setAspect(int); void setScale(int); void setSaturation(int); void setContrast(int); void setHue(int); void setBrightness(int); void stateChanged(Phonon::State newstate, Phonon::State oldstate); void effectChanged(); void showSettingsDialog(); void showContextMenu(const QPoint &); void bufferStatus(int percent); void openUrl(); void configureEffect(); private: QIcon playIcon; QIcon pauseIcon; QPixmap volumeIcon; QPixmap mutedIcon; QMenu *fileMenu; QPushButton *playButton; QPushButton *rewindButton; QPushButton *forwardButton; Phonon::SeekSlider *slider; QLabel *volumeLabel; QLabel *timeLabel; QLabel *progressLabel; QSlider *volume; QSlider *m_hueSlider; QSlider *m_satSlider; QSlider *m_contSlider; QLabel *info; long duration; QHash propertyControllers; Phonon::Effect *nextEffect; QDialog *settingsDialog; Ui_settings *ui; QWidget m_videoWindow; Phonon::MediaObject m_MediaObject; Phonon::AudioOutput m_AudioOutput; Phonon::VideoWidget *m_videoWidget; Phonon::Path m_audioOutputPath; }; #endif //MEDIAPLAYER_H