You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
829 B
45 lines
829 B
14 years ago
|
#ifndef UBGRAPHICSAUDIOITEM_H
|
||
|
#define UBGRAPHICSAUDIOITEM_H
|
||
|
|
||
|
#include "UBGraphicsMediaItem.h"
|
||
|
#include "phonon/seekslider.h"
|
||
|
#include "phonon/mediasource.h"
|
||
|
#include "core/UB.h"
|
||
|
|
||
|
class UBGraphicsAudioItem : public UBGraphicsMediaItem
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
UBGraphicsAudioItem(const QUrl& pAudioFileUrl, QGraphicsItem *parent = 0);
|
||
|
~UBGraphicsAudioItem();
|
||
|
|
||
|
enum { Type = UBGraphicsItemType::AudioItemType };
|
||
|
|
||
|
virtual int type() const
|
||
|
{
|
||
|
return Type;
|
||
|
}
|
||
|
|
||
|
virtual UBItem* deepCopy () const;
|
||
|
|
||
|
|
||
|
private slots:
|
||
|
|
||
|
void tick ( qint64 time );
|
||
|
void onStateChanged(Phonon::State newState,Phonon::State oldState);
|
||
|
|
||
|
protected:
|
||
|
|
||
|
QWidget* mAudioWidget;
|
||
|
QLCDNumber* mTimeLcd;
|
||
|
|
||
|
Phonon::SeekSlider* mSeekSlider;
|
||
|
private:
|
||
|
Phonon::MediaSource mSource;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // UBGRAPHICSAUDIOITEM_H
|