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
|
/**
* Copyright (C) 2002-2004 Scott Wheeler <wheeler@kde.org>
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#include "statuslabel.h"
#include <KSqueezedTextLabel>
#include <KLocalizedString>
#include <KFormat>
#include <QAction>
#include <QLabel>
#include <QMouseEvent>
#include <QPushButton>
#include <QStatusBar>
#include <QToolButton>
#include "actioncollection.h"
#include "filehandle.h"
#include "iconsupport.h"
#include "juk_debug.h"
#include "juktag.h"
#include "playermanager.h"
#include "playlistinterface.h"
using namespace ActionCollection;
////////////////////////////////////////////////////////////////////////////////
// static helpers
////////////////////////////////////////////////////////////////////////////////
static QString formatTime(qint64 milliseconds)
{
static const KFormat fmt;
return fmt.formatDuration(milliseconds);
}
////////////////////////////////////////////////////////////////////////////////
// public methods
////////////////////////////////////////////////////////////////////////////////
StatusLabel::StatusLabel(const PlaylistInterface ¤tPlaylist, QStatusBar *parent) :
QWidget(parent)
{
using namespace IconSupport; // ""_icon
m_playlistLabel = new KSqueezedTextLabel(this);
m_playlistLabel->setSizePolicy(QSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred, QSizePolicy::Label));
m_playlistLabel->setTextFormat(Qt::PlainText);
m_playlistLabel->setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
parent->addWidget(m_playlistLabel, 1);
m_trackLabel = new QLabel(this);
m_trackLabel->setAlignment(Qt::AlignRight | Qt::AlignVCenter);
m_trackLabel->setTextFormat(Qt::PlainText);
parent->addPermanentWidget(m_trackLabel);
m_itemTimeLabel = new QToolButton(this);
QFontMetrics fontMetrics(font());
m_itemTimeLabel->setMinimumWidth(fontMetrics.boundingRect("000:00 / 000:00").width());
m_itemTimeLabel->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
m_itemTimeLabel->setAutoRaise(true);
connect(m_itemTimeLabel, &QAbstractButton::clicked, this, [this]() {
m_showTimeRemaining = !m_showTimeRemaining;
updateTime();
});
parent->addPermanentWidget(m_itemTimeLabel);
QPushButton *jumpButton = new QPushButton(this);
jumpButton->setIcon("go-jump"_icon);
jumpButton->setFlat(true);
jumpButton->setToolTip(i18nc("@info:tooltip", "Jump to the currently playing item"));
connect(jumpButton, &QPushButton::clicked, action("showPlaying"), &QAction::trigger);
parent->addPermanentWidget(jumpButton);
slotCurrentPlaylistHasChanged(currentPlaylist);
}
void StatusLabel::slotPlayingItemHasChanged(const FileHandle &file)
{
const Tag *tag = file.tag();
const QString mid = (tag->artist().isEmpty() || tag->title().isEmpty())
? QString()
: QStringLiteral(" - ");
setItemTotalTime(tag->seconds());
setItemCurrentTime(0);
m_trackLabel->setText(tag->artist() + mid + tag->title());
updateTime();
}
void StatusLabel::slotCurrentPlaylistHasChanged(const PlaylistInterface ¤tPlaylist)
{
if(!currentPlaylist.playing()) {
return;
}
m_playlistLabel->setText(currentPlaylist.name());
m_trackLabel->setText(
i18np("1 item", "%1 items", currentPlaylist.count()) +
QStringLiteral(" - ") +
formatTime(qint64(1000) * currentPlaylist.time())
);
updateTime();
}
////////////////////////////////////////////////////////////////////////////////
// protected methods
////////////////////////////////////////////////////////////////////////////////
void StatusLabel::mouseReleaseEvent(QMouseEvent *ev)
{
if(ev->button() != Qt::LeftButton) {
return;
}
m_showTimeRemaining = !m_showTimeRemaining;
updateTime();
ev->accept();
}
////////////////////////////////////////////////////////////////////////////////
// private methods
////////////////////////////////////////////////////////////////////////////////
void StatusLabel::updateTime()
{
const qint64 milliseconds = m_showTimeRemaining
? m_itemTotalTime - m_itemCurrentTime
: m_itemCurrentTime;
const QString timeString = formatTime(milliseconds) + QStringLiteral(" / ") +
formatTime(m_itemTotalTime);
m_itemTimeLabel->setText(timeString);
}
// vim: set et sw=4 tw=0 sta:
|