-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmp3ludilo.cpp
134 lines (112 loc) · 4.18 KB
/
mp3ludilo.cpp
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
126
127
128
129
130
131
132
133
134
/*
Kurso de Esperanto - a free multimedia course to teach yourself the
international language.
Copyright (C) 2000-2012 Carlos Alberto Alves Pereira
karlo@kurso.com.br
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3 as
published by the Free Software Foundation.
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, see <http://www.gnu.org/licenses/>.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Kurso de Esperanto - multrimeda komputila kurso por memlernado de
la internacia lingvo.
Kopirajto (C) 2000-2012 Carlos Alberto Alves Pereira
karlo@kurso.com.br
Tiu ĉi programo estas libera softvaro: vi povas ĝin redisdoni aŭ
ĝin modifi laŭ la kondiĉoj de GNU-a Ĝenerala Publika Uzpermeso versio 3
kiel publikigita de Free Software Foundation.
Tiu ĉi programo estas disdonita kun la espero, ke ĝi estos utila,
sed sen ia garantio; eĉ sen la implica garantio de komercebleco aŭ
taŭgeco por specifa celo. Vidu la GNU-an Ĝeneralan Publikan Uzpermeson
por pliaj detaloj.
Vi devus esti ricevinta kopion de la GNU-a Ĝenerala Publika Uzpermeso
kune kun ĉi tiu programo. Se ne, iru al <http://www.gnu.org/licenses/>.
*/
#include "mp3ludilo.h"
#include "ui_mp3ludilo.h"
#include "funkcioj.h"
mp3ludilo::mp3ludilo(QWidget *parent) :
QFrame(parent),
ui(new Ui::mp3ludilo)
{
ui->setupUi(this);
ludilo = Phonon::createPlayer(Phonon::MusicCategory,
Phonon::MediaSource());
connect(ludilo, SIGNAL(finished()),
this, SLOT(on_Chesu_clicked()));
this->ui->Pauzu->setEnabled(true);
this->ui->Pauzu->setVisible(false);
MiaPagho = -1;
}
mp3ludilo::~mp3ludilo()
{
delete ui;
}
void mp3ludilo::on_Ludu_clicked()
{
QTabWidget * MiaPagharo = qobject_cast<QTabWidget *>(this->parentWidget()->parentWidget()->parentWidget());
if (MiaPagharo > 0)
MiaPagho = MiaPagharo->currentIndex();
if (ludilo->state() == Phonon::PlayingState)
{
ludilo->pause();
this->setUpdatesEnabled(false);
this->ui->Pauzu->setVisible(false);
this->ui->Ludu->setVisible(true);
this->setUpdatesEnabled(true);
}
else
{
if (ludilo->state() == Phonon::PausedState)
{
ludilo->play();
this->setUpdatesEnabled(false);
this->ui->Pauzu->setVisible(true);
this->ui->Ludu->setVisible(false);
this->setUpdatesEnabled(true);
}
else
{
QString dosiero = Loko + "sonoj/" + this->objectName().left(5).toLower() + "/" + this->objectName().mid(6) + mp3_finajho;
ludilo->setCurrentSource(dosiero);
ludilo->play();
this->setUpdatesEnabled(false);
this->ui->Chesu->setEnabled(true);
this->ui->Pauzu->setVisible(true);
this->ui->Ludu->setVisible(false);
this->setUpdatesEnabled(true);
}
}
}
void mp3ludilo::on_Chesu_clicked()
{
ludilo->stop();
this->setUpdatesEnabled(false);
this->ui->Chesu->setEnabled(false);
this->ui->Pauzu->setVisible(false);
this->ui->Ludu->setVisible(true);
this->setUpdatesEnabled(true);
}
void mp3ludilo::on_Pauzu_clicked()
{
if (ludilo->state() == Phonon::PlayingState)
{
ludilo->pause();
this->setUpdatesEnabled(false);
this->ui->Pauzu->setVisible(false);
this->ui->Ludu->setVisible(true);
this->setUpdatesEnabled(true);
}
}
void mp3ludilo::PaghoShanghita(int NovaPagho)
{
if (MiaPagho >= 0)
if (NovaPagho != MiaPagho)
if (ludilo->state() == Phonon::PlayingState)
on_Chesu_clicked();
}