summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer3/audiowidget.cpp
blob: 7ba6274392e1c8936f64b90c68108e4e6d134c65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#include "audiowidget.h"
#include "../opieplayer2/lib.h"
#include "../opieplayer2/threadutil.h"

#include <opie2/odebug.h>

#include <qlayout.h>
#include <qtextview.h>
#include <qslider.h>
#include <qlabel.h>

AudioWidget::AudioWidget( QWidget * parent, const char * name, WFlags f)
    :QWidget(parent,name,f)
{
    m_xineLib = 0;

    m_MainLayout = new QVBoxLayout(this);
    m_MainLayout->setAutoAdd(true);
    m_InfoBox = new QTextView(this);
    m_PosSlider = new QSlider(QSlider::Horizontal,this);
    m_PosSlider->setTickInterval(60);
    connect(m_PosSlider,SIGNAL(valueChanged(int)),this,SLOT(slotNewPos(int)));
    connect(m_PosSlider,SIGNAL(sliderMoved(int)),this,SLOT(slotNewPos(int)));
    connect(m_PosSlider,SIGNAL(sliderPressed()),this,SLOT(sliderPressed()));
    connect(m_PosSlider,SIGNAL(sliderReleased()),this,SLOT(sliderReleased()));
    m_pressed = false;
    m_uppos=0;
}

AudioWidget::~AudioWidget()
{
}

void AudioWidget::slotNewPos(int pos)
{
    if (!m_xineLib) return;
    if (m_uppos==pos) return;
    m_xineLib->seekTo(pos);
}

void AudioWidget::sliderPressed()
{
    m_pressed = true;
}

void AudioWidget::sliderReleased()
{
    m_pressed = false;
}

void AudioWidget::closeEvent(QCloseEvent*e)
{
    odebug << "AudioWidget::closeEvent(QCloseEvent*e)" << oendl;
    if (m_xineLib) {
        m_xineLib->stop();
    }
    QWidget::closeEvent(e);
}

void AudioWidget::playFile(const DocLnk&aLnk,XINE::Lib*aLib)
{
    m_current = aLnk;
    if (m_xineLib != aLib) {
        disconnect(m_xineLib);
        m_xineLib = aLib;
    }
    if (!m_xineLib) {
        return;
    }
    m_uppos=0;
    m_PosSlider->setValue(0);
    m_xineLib->setShowVideo(false);
    m_xineLib->play(m_current.file());
    // title
    QString title = m_xineLib->metaInfo(0);
    // artist
    QString artist = m_xineLib->metaInfo(2);
    // album
    QString album = m_xineLib->metaInfo(4);

    int l = m_xineLib->length();
    m_PosSlider->setRange(0,l);
    QString laenge="";
    int h = l/3600;
    l-=h*3600;
    int m = l/60;
    l-=m*60;
    if (h>0) {
        laenge+=QString("%1 h").arg(h);
    }
    if (m>0) {
        if (!laenge.isEmpty()) laenge+=" ";
        laenge+=QString("%1 m").arg(m);
    }
    if (l>0) {
        if (!laenge.isEmpty()) laenge+=" ";
        laenge+=QString("%1 s").arg(l);
    }
    QString text = "<qt>";
    if (artist.length()) {
        text+="<H2><center>"+artist+"</center></h2>";
    }
    if (title.length()) {
        text+="<H2><center>"+title+"</center></h2>";
    }
    if (album.length()) {
        text+="<H2><center>"+album+"</center></h2>";
    }
    text+="<h3><center>"+laenge+"</center></h3>";
    m_InfoBox->setText(text);
}

void AudioWidget::stopPlaying()
{
    if (m_xineLib) {
        m_xineLib->stop();
    }
}

void AudioWidget::updatePos(int val)
{
    if (m_pressed) return;
    m_uppos = val;
    m_PosSlider->setValue(val);
}