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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include "PlayerWidget.h"
#include "ui_PlayerWidget.h"
#include <QDir>
#include <QUrl>
#include <QInputDialog>
#include <QFileDialog>
#include <LuminaXDG.h>
#include <QDebug>
PlayerWidget::PlayerWidget(QWidget *parent) : QWidget(parent), ui(new Ui::PlayerWidget()){
ui->setupUi(this); //load the designer form
PLAYER = new QMediaPlayer(this);
PLAYER->setVolume(100);
PLAYER->setNotifyInterval(1000); //1 second interval (just needs to be a rough estimate)
PLAYLIST = new QMediaPlaylist(this);
PLAYLIST->setPlaybackMode(QMediaPlaylist::Sequential);
PLAYER->setPlaylist(PLAYLIST);
configMenu = new QMenu(this);
ui->tool_config->setMenu(configMenu);
addMenu = new QMenu(this);
ui->tool_add->setMenu(addMenu);
updatinglists = false; //start off as false
LoadIcons();
playerStateChanged(); //update button visibility
currentSongChanged();
//Connect all the signals/slots
//connect(infoTimer, SIGNAL(timeout()), this, SLOT(rotateTrackInfo()) );
connect(PLAYER, SIGNAL(positionChanged(qint64)),this, SLOT(updateProgress(qint64)) );
connect(PLAYER, SIGNAL(durationChanged(qint64)), this, SLOT(updateMaxProgress(qint64)) );
connect(PLAYLIST, SIGNAL(mediaChanged(int, int)), this, SLOT(playlistChanged()) );
connect(PLAYER, SIGNAL(stateChanged(QMediaPlayer::State)), this, SLOT(playerStateChanged()) );
connect(PLAYLIST, SIGNAL(currentMediaChanged(const QMediaContent&)), this, SLOT(currentSongChanged()) );
connect(ui->combo_playlist, SIGNAL(currentIndexChanged(int)), this, SLOT(userlistSelectionChanged()) );
connect(ui->tool_play, SIGNAL(clicked()), this, SLOT(playClicked()) );
connect(ui->tool_pause, SIGNAL(clicked()), this, SLOT(pauseClicked()) );
connect(ui->tool_stop, SIGNAL(clicked()), this, SLOT(stopClicked()) );
connect(ui->tool_next, SIGNAL(clicked()), this, SLOT(nextClicked()) );
connect(ui->tool_prev, SIGNAL(clicked()), this, SLOT(prevClicked()) );
}
PlayerWidget::~PlayerWidget(){
//qDebug() << "Removing PlayerWidget";
}
void PlayerWidget::LoadIcons(){
ui->tool_stop->setIcon( LXDG::findIcon("media-playback-stop","") );
ui->tool_play->setIcon( LXDG::findIcon("media-playback-start","") );
ui->tool_pause->setIcon( LXDG::findIcon("media-playback-pause","") );
ui->tool_next->setIcon( LXDG::findIcon("media-skip-forward","") );
ui->tool_prev->setIcon( LXDG::findIcon("media-skip-backward","") );
ui->tool_add->setIcon( LXDG::findIcon("list-add","") );
ui->tool_config->setIcon( LXDG::findIcon("configure","") );
//Now re-assemble the menus as well
configMenu->clear();
configMenu->addAction(LXDG::findIcon("media-eject",""), tr("Clear Playlist"), this, SLOT(ClearPlaylist()));
configMenu->addAction(LXDG::findIcon("roll",""), tr("Shuffle Playlist"), this, SLOT(ShufflePlaylist()));
addMenu->clear();
addMenu->addAction(LXDG::findIcon("document-new",""), tr("Add Files"), this, SLOT(AddFilesToPlaylist()));
addMenu->addAction(LXDG::findIcon("folder-new",""), tr("Add Directory"), this, SLOT(AddDirToPlaylist()));
addMenu->addAction(LXDG::findIcon("download",""), tr("Add URL"), this, SLOT(AddURLToPlaylist()));
}
void PlayerWidget::playClicked(){
PLAYER->play();
}
void PlayerWidget::pauseClicked(){
PLAYER->pause();
}
void PlayerWidget::stopClicked(){
PLAYER->stop();
}
void PlayerWidget::nextClicked(){
PLAYLIST->next();
}
void PlayerWidget::prevClicked(){
PLAYLIST->previous();
}
void PlayerWidget::AddFilesToPlaylist(){
//Prompt the user to select multimedia files
//Make this use show/processEvents later
QList<QUrl> files = QFileDialog::getOpenFileUrls(0, tr("Select Multimedia Files"), QDir::homePath(), "Multimedia Files ("+LXDG::findAVFileExtensions().join(" ")+")");
if(files.isEmpty()){ return; } //cancelled
QList<QMediaContent> urls;
for(int i=0; i<files.length(); i++){
urls << QMediaContent(files[i]);
}
PLAYLIST->addMedia(urls);
playlistChanged();
}
void PlayerWidget::AddDirToPlaylist(){
QString dirpath = QFileDialog::getExistingDirectory(0, tr("Select a Multimedia Directory"), QDir::homePath() );
if(dirpath.isEmpty()){ return; } //cancelled
QDir dir(dirpath);
QFileInfoList files = dir.entryInfoList(LXDG::findAVFileExtensions(), QDir::Files | QDir::NoDotAndDotDot, QDir::Name);
if(files.isEmpty()){ return; } //nothing in this directory
QList<QMediaContent> urls;
for(int i=0; i<files.length(); i++){
urls << QMediaContent(QUrl::fromLocalFile(files[i].absoluteFilePath()) );
}
PLAYLIST->addMedia(urls);
playlistChanged();
}
void PlayerWidget::AddURLToPlaylist(){
QString url = QInputDialog::getText(0, tr("Multimedia URL"), tr("Enter a valid URL for a multimedia file or stream"), QLineEdit::Normal);
if(url.isEmpty()){ return; }
QUrl newurl(url);
if(!newurl.isValid()){ return; } //invalid URL
PLAYLIST->addMedia(newurl);
playlistChanged();
}
void PlayerWidget::ClearPlaylist(){
PLAYER->stop();
PLAYLIST->clear();
playlistChanged();
}
void PlayerWidget::ShufflePlaylist(){
PLAYLIST->shuffle();
}
void PlayerWidget::userlistSelectionChanged(){ //front-end combobox was changed by the user
if(updatinglists){ return; }
PLAYLIST->setCurrentIndex( ui->combo_playlist->currentIndex() );
}
void PlayerWidget::playerStateChanged(){
switch( PLAYER->state() ){
case QMediaPlayer::StoppedState:
ui->tool_stop->setVisible(false);
ui->tool_play->setVisible(true);
ui->tool_pause->setVisible(false);
ui->progressBar->setVisible(false);
break;
case QMediaPlayer::PausedState:
ui->tool_stop->setVisible(true);
ui->tool_play->setVisible(true);
ui->tool_pause->setVisible(false);
ui->progressBar->setVisible(true);
break;
case QMediaPlayer::PlayingState:
ui->tool_stop->setVisible(true);
ui->tool_play->setVisible(false);
ui->tool_pause->setVisible(true);
ui->progressBar->setVisible(true);
break;
}
}
void PlayerWidget::playlistChanged(){
updatinglists = true;
ui->combo_playlist->clear();
for(int i=0; i<PLAYLIST->mediaCount(); i++){
QUrl url = PLAYLIST->media(i).canonicalUrl();
if(url.isLocalFile()){
ui->combo_playlist->addItem(LXDG::findMimeIcon(url.fileName().section(".",-1)), url.fileName() );
}else{
ui->combo_playlist->addItem(LXDG::findIcon("download",""), url.toString() );
}
}
if(PLAYLIST->currentIndex()<0 && PLAYLIST->mediaCount()>0){ PLAYLIST->setCurrentIndex(0); }
ui->combo_playlist->setCurrentIndex(PLAYLIST->currentIndex());
updatinglists = false;
}
void PlayerWidget::currentSongChanged(){
if(PLAYLIST->currentIndex() != ui->combo_playlist->currentIndex()){
updatinglists = true;
ui->combo_playlist->setCurrentIndex(PLAYLIST->currentIndex());
updatinglists = false;
}
ui->tool_next->setEnabled( PLAYLIST->nextIndex() >= 0 );
ui->tool_prev->setEnabled( PLAYLIST->previousIndex() >= 0);
ui->label_num->setText( QString::number( PLAYLIST->currentIndex()+1)+"/"+QString::number(PLAYLIST->mediaCount()) );
ui->progressBar->setRange(0, PLAYER->duration() );
ui->progressBar->setValue(0);
}
void PlayerWidget::updateProgress(qint64 val){
//qDebug() << "Update Progress Bar:" << val;
ui->progressBar->setValue(val);
}
void PlayerWidget::updateMaxProgress(qint64 val){
ui->progressBar->setRange(0,val);
}
AudioPlayerPlugin::AudioPlayerPlugin(QWidget *parent, QString ID) : LDPlugin(parent, ID){
player = new PlayerWidget(this);
this->setLayout( new QVBoxLayout() );
this->layout()->setContentsMargins(0,0,0,0);
this->layout()->addWidget(player);
this->setInitialSize(300,75);
}
AudioPlayerPlugin::~AudioPlayerPlugin(){
//qDebug() << "Remove AudioPlayerPlugin";
}
|