76 lines
2.7 KiB
C++
76 lines
2.7 KiB
C++
/*
|
|
* Copyright (C) 2017 Kevin Whitaker <eyecreate@gmail.com>
|
|
*
|
|
* 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.
|
|
*
|
|
* 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, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
#include "PlayerInterface.h"
|
|
#include <Wt/WText>
|
|
#include "../GroovePlayer.h"
|
|
|
|
PlayerInterface::PlayerInterface(WebInterface* app)
|
|
{
|
|
this->app = app;
|
|
interfaceLayout = new Wt::WVBoxLayout();
|
|
this->setLayout(interfaceLayout);
|
|
playControlContainer = new Wt::WContainerWidget();
|
|
voteControlContainer = new Wt::WContainerWidget();
|
|
playControlLayout = new Wt::WHBoxLayout();
|
|
voteControlLayout = new Wt::WVBoxLayout();
|
|
playControlContainer->setLayout(playControlLayout);
|
|
voteControlContainer->setLayout(voteControlLayout);
|
|
|
|
currentTrackProgress = new Wt::WProgressBar();
|
|
currentTrackProgress->setFormat("");
|
|
trackProgress = new Wt::WTimer();
|
|
trackProgress->setInterval(1000);
|
|
//TODO:track details
|
|
playpause = new Wt::WPushButton();
|
|
playpause->setText(groove_playlist_playing(GroovePlayerMgr::getInstance()->currentPlaylist)==1?"Pause":"Resume");
|
|
isPaused = groove_playlist_playing(GroovePlayerMgr::getInstance()->currentPlaylist)==0;
|
|
playpause->clicked().connect(this, &PlayerInterface::playpauseClicked);
|
|
|
|
interfaceLayout->addWidget(playControlContainer);
|
|
interfaceLayout->addWidget(currentTrackProgress);
|
|
interfaceLayout->addWidget(voteControlContainer);
|
|
//TODO:add track details
|
|
playControlLayout->addWidget(playpause);
|
|
}
|
|
|
|
void PlayerInterface::playpauseClicked()
|
|
{
|
|
if(!isPaused)
|
|
{
|
|
GroovePlayerMgr::getInstance()->lastInternalEvents.push_back(GroovePlayerMgr::PlayerEvent() = {GroovePlayerMgr::PlayerEventType::PLAYING_PAUSED, app->currentUser});
|
|
}
|
|
else
|
|
{
|
|
GroovePlayerMgr::getInstance()->lastInternalEvents.push_back(GroovePlayerMgr::PlayerEvent() = {GroovePlayerMgr::PlayerEventType::PLAYING_RESUMED, app->currentUser});
|
|
}
|
|
}
|
|
|
|
void PlayerInterface::playpauseUpdated()
|
|
{
|
|
if(isPaused)
|
|
{
|
|
playpause->setText("Resume");
|
|
}
|
|
else
|
|
{
|
|
playpause->setText("Pause");
|
|
}
|
|
}
|