-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjuk.cpp
667 lines (535 loc) · 22.2 KB
/
juk.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
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
/**
* Copyright (C) 2002-2004 Scott Wheeler <wheeler@kde.org>
* Copyright (C) 2008, 2009, 2017 Michael Pyne <mpyne@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 "juk.h"
#include <kaboutdata.h>
#include <kmessagebox.h>
#include <kactioncollection.h>
#include <kstandardaction.h>
#include <ktoggleaction.h>
#include <kactionmenu.h>
#include <kconfiggroup.h>
#include <KSharedConfig>
#include <kglobalaccel.h>
#include <ktoolbarpopupaction.h>
#include <knotification.h>
#include <QIcon>
#include <QAction>
#include <QCoreApplication>
#include <QKeyEvent>
#include <QDir>
#include <QDirIterator>
#include <QMenuBar>
#include <QMetaType>
#include <QTime>
#include <QTimer>
#include <QDesktopWidget>
#include <QScreen>
#include <QStatusBar>
#include <QDBusMessage>
#include <QDBusReply>
#include <QDBusInterface>
#include "slideraction.h"
#include "statuslabel.h"
#include "systemtray.h"
#include "keydialog.h"
#include "tagguesserconfigdlg.h"
#include "filerenamerconfigdlg.h"
#include "scrobbler.h"
#include "scrobbleconfigdlg.h"
#include "actioncollection.h"
#include "cache.h"
#include "playlistsplitter.h"
#include "collectionlist.h"
#include "covermanager.h"
#include "tagtransactionmanager.h"
#include "juk_debug.h"
using namespace ActionCollection;
JuK* JuK::m_instance;
template<class T>
void deleteAndClear(T *&ptr)
{
delete ptr;
ptr = 0;
}
////////////////////////////////////////////////////////////////////////////////
// public members
////////////////////////////////////////////////////////////////////////////////
JuK::JuK(const QStringList &filesToOpen, QWidget *parent) :
KXmlGuiWindow(parent, Qt::WindowFlags(Qt::WA_DeleteOnClose)),
m_splitter(nullptr),
m_statusLabel(nullptr),
m_systemTray(nullptr),
m_player(new PlayerManager),
m_scrobbler(nullptr),
m_filesToOpen(filesToOpen),
m_shuttingDown(false),
m_pmToken(0)
{
// Expect segfaults if you change this order.
// Allow to be passed across threads
qRegisterMetaType<FileHandle>();
qRegisterMetaType<FileHandleList>();
m_instance = this;
readSettings();
Cache::ensureAppDataStorageExists();
setupActions();
setupLayout();
bool firstRun = !KSharedConfig::openConfig()->hasGroup("MainWindow");
if(firstRun) {
KConfigGroup mainWindowConfig(KSharedConfig::openConfig(), "MainWindow");
KConfigGroup playToolBarConfig(&mainWindowConfig, "Toolbar playToolBar");
playToolBarConfig.writeEntry("ToolButtonStyle", "IconOnly");
}
QSize defaultSize(800, 480);
if(QApplication::isRightToLeft())
setupGUI(defaultSize, ToolBar | Save | Create, "jukui-rtl.rc");
else
setupGUI(defaultSize, ToolBar | Save | Create);
// Center the GUI if this is our first run ever.
if(firstRun) {
QRect r = rect();
const QRect screenCenter = QApplication::primaryScreen()->availableGeometry();
r.moveCenter(screenCenter.center());
move(r.topLeft());
}
connect(m_splitter, SIGNAL(guiReady()), SLOT(slotSetupSystemTray()));
readConfig();
setupGlobalAccels();
activateScrobblerIfEnabled();
QDBusInterface *pmInterface = new QDBusInterface(QStringLiteral("org.kde.Solid.PowerManagement"),
QStringLiteral("/org/freedesktop/PowerManagement/Inhibit"),
QStringLiteral("org.freedesktop.PowerManagement.Inhibit"),
QDBusConnection::sessionBus());
connect(m_player, &PlayerManager::signalPlay, [=] () {
QDBusReply<uint> reply;
if (pmInterface->isValid() && (m_pmToken == 0)) {
reply = pmInterface->call(QStringLiteral("Inhibit"),
KAboutData::applicationData().componentName(),
QStringLiteral("playing audio"));
if (reply.isValid()) {
m_pmToken = reply.value();
}
}
});
auto uninhibitPowerManagement = [=] () {
QDBusMessage reply;
if (pmInterface->isValid() && (m_pmToken != 0)) {
reply = pmInterface->call(QStringLiteral("UnInhibit"), m_pmToken);
if (reply.errorName().isEmpty()) {
m_pmToken = 0;
}
}
};
connect(m_player, &PlayerManager::signalPause, uninhibitPowerManagement);
connect(m_player, &PlayerManager::signalStop, uninhibitPowerManagement);
// The system tray quit command will go straight to qApp->quit without calling
// our quit action, so make sure we save config changes no matter how quit is
// called.
connect(qApp, &QCoreApplication::aboutToQuit, this, [this]() { saveConfig(); });
// slotCheckCache loads the cached entries first to populate the collection list
QTimer::singleShot(0, this, SLOT(slotClearOldCovers()));
QTimer::singleShot(0, CollectionList::instance(), SLOT(startLoadingCachedItems()));
QTimer::singleShot(0, this, SLOT(slotProcessArgs()));
}
JuK::~JuK()
{
// Some items need to be deleted before others, though I haven't looked
// at this in some time so refinement is probably possible.
delete m_systemTray;
delete m_splitter;
delete m_player;
delete m_statusLabel;
// Sometimes KMainWindow doesn't actually call QCoreApplication::quit
// after queryClose, even if not in a session shutdown, so make sure to
// do so ourselves when closing the main window.
QTimer::singleShot(0, qApp, &QCoreApplication::quit);
}
JuK* JuK::JuKInstance()
{
return m_instance;
}
PlayerManager *JuK::playerManager() const
{
return m_player;
}
void JuK::coverDownloaded(const QPixmap &cover)
{
QString event(cover.isNull() ? "coverFailed" : "coverDownloaded");
KNotification *notification = new KNotification(event, this);
notification->setPixmap(cover);
notification->setFlags(KNotification::CloseOnTimeout);
if(cover.isNull())
notification->setText(i18n("Your album art failed to download."));
else
notification->setText(i18n("Your album art has finished downloading."));
notification->sendEvent();
}
////////////////////////////////////////////////////////////////////////////////
// private members
////////////////////////////////////////////////////////////////////////////////
void JuK::setupLayout()
{
m_splitter = new PlaylistSplitter(m_player, this);
setCentralWidget(m_splitter);
m_statusLabel = new StatusLabel(*m_splitter->playlist(), statusBar());
statusBar()->addWidget(m_statusLabel, 1);
connect(m_player, &PlayerManager::tick, m_statusLabel,
&StatusLabel::setItemCurrentTime);
connect(m_player, &PlayerManager::totalTimeChanged,
m_statusLabel, &StatusLabel::setItemTotalTime);
connect(m_splitter, &PlaylistSplitter::currentPlaylistChanged,
m_statusLabel, &StatusLabel::slotCurrentPlaylistHasChanged);
m_splitter->setFocus();
}
void JuK::setupActions()
{
KActionCollection *collection = ActionCollection::actions();
// Setup KDE standard actions that JuK uses.
KStandardAction::quit(this, SLOT(slotQuit()), collection);
KStandardAction::undo(this, SLOT(slotUndo()), collection);
KStandardAction::cut(collection);
KStandardAction::copy(collection);
KStandardAction::paste(collection);
QAction *clear = KStandardAction::clear(collection);
KStandardAction::selectAll(collection);
KStandardAction::keyBindings(this, SLOT(slotEditKeys()), collection);
KStandardAction::showMenubar(menuBar(), SLOT(setVisible(bool)), collection);
// Setup the menu which handles the random play options.
KActionMenu *actionMenu = collection->add<KActionMenu>("actionMenu");
actionMenu->setText(i18n("&Random Play"));
actionMenu->setIcon(QIcon::fromTheme( QLatin1String( "media-playlist-shuffle" )));
actionMenu->setDelayed(false);
QActionGroup* randomPlayGroup = new QActionGroup(this);
QAction *act = collection->add<KToggleAction>("disableRandomPlay");
act->setText(i18n("&Disable Random Play"));
act->setIcon(QIcon::fromTheme( QLatin1String( "go-down" )));
act->setActionGroup(randomPlayGroup);
actionMenu->addAction(act);
m_randomPlayAction = collection->add<KToggleAction>("randomPlay");
m_randomPlayAction->setText(i18n("Use &Random Play"));
m_randomPlayAction->setIcon(QIcon::fromTheme( QLatin1String( "media-playlist-shuffle" )));
m_randomPlayAction->setActionGroup(randomPlayGroup);
actionMenu->addAction(m_randomPlayAction);
act = collection->add<KToggleAction>("albumRandomPlay");
act->setEnabled(false);
act->setText(i18n("Use &Album Random Play"));
act->setIcon(QIcon::fromTheme( QLatin1String( "media-playlist-shuffle" )));
act->setActionGroup(randomPlayGroup);
connect(act, SIGNAL(triggered(bool)), SLOT(slotCheckAlbumNextAction(bool)));
actionMenu->addAction(act);
act = collection->addAction("removeFromPlaylist", clear, SLOT(clear()));
act->setText(i18n("Remove From Playlist"));
act->setIcon(QIcon::fromTheme( QLatin1String( "list-remove" )));
act = collection->addAction("play", m_player, SLOT(play()));
act->setText(i18n("&Play"));
act->setIcon(QIcon::fromTheme( QLatin1String( "media-playback-start" )));
act = collection->addAction("pause", m_player, SLOT(pause()));
act->setEnabled(false);
act->setText(i18n("P&ause"));
act->setIcon(QIcon::fromTheme( QLatin1String( "media-playback-pause" )));
act = collection->addAction("stop", m_player, SLOT(stop()));
act->setEnabled(false);
act->setText(i18n("&Stop"));
act->setIcon(QIcon::fromTheme( QLatin1String( "media-playback-stop" )));
act = new KToolBarPopupAction(QIcon::fromTheme( QLatin1String( "media-skip-backward") ), i18nc("previous track", "Previous" ), collection);
act->setEnabled(false);
collection->addAction("back", act);
connect(act, SIGNAL(triggered(bool)), m_player, SLOT(back()));
act = collection->addAction("forward", m_player, SLOT(forward()));
act->setEnabled(false);
act->setText(i18nc("next track", "&Next"));
act->setIcon(QIcon::fromTheme( QLatin1String( "media-skip-forward" )));
act = collection->addAction("loopPlaylist");
act->setText(i18n("&Loop Playlist"));
act->setCheckable(true);
act = collection->add<KToggleAction>("resizeColumnsManually");
act->setText(i18n("&Resize Playlist Columns Manually"));
// the following are not visible by default
act = collection->addAction("mute", m_player, SLOT(mute()));
act->setText(i18nc("silence playback", "Mute"));
act->setIcon(QIcon::fromTheme( QLatin1String( "audio-volume-muted" )));
act = collection->addAction("volumeUp", m_player, SLOT(volumeUp()));
act->setText(i18n("Volume Up"));
act->setIcon(QIcon::fromTheme( QLatin1String( "audio-volume-high" )));
act = collection->addAction("volumeDown", m_player, SLOT(volumeDown()));
act->setText(i18n("Volume Down"));
act->setIcon(QIcon::fromTheme( QLatin1String( "audio-volume-low" )));
act = collection->addAction("playPause", m_player, SLOT(playPause()));
act->setText(i18n("Play / Pause"));
act->setIcon(QIcon::fromTheme( QLatin1String( "media-playback-start" )));
act = collection->addAction("seekForward", m_player, SLOT(seekForward()));
act->setText(i18n("Seek Forward"));
act->setIcon(QIcon::fromTheme( QLatin1String( "media-seek-forward" )));
act = collection->addAction("seekBack", m_player, SLOT(seekBack()));
act->setText(i18n("Seek Back"));
act->setIcon(QIcon::fromTheme( QLatin1String( "media-seek-backward" )));
act = collection->addAction("showHide", this, SLOT(slotShowHide()));
act->setText(i18n("Show / Hide"));
//////////////////////////////////////////////////
// settings menu
//////////////////////////////////////////////////
m_toggleSystemTrayAction = collection->add<KToggleAction>("toggleSystemTray");
m_toggleSystemTrayAction->setText(i18n("&Dock in System Tray"));
connect(m_toggleSystemTrayAction, SIGNAL(triggered(bool)), SLOT(slotToggleSystemTray(bool)));
m_toggleDockOnCloseAction = collection->add<KToggleAction>("dockOnClose");
m_toggleDockOnCloseAction->setText(i18n("&Stay in System Tray on Close"));
m_togglePopupsAction = collection->add<KToggleAction>("togglePopups");
m_togglePopupsAction->setText(i18n("Popup &Track Announcement"));
act = collection->add<KToggleAction>("saveUpcomingTracks");
act->setText(i18n("Save &Play Queue on Exit"));
act = collection->addAction("tagGuesserConfig", this, SLOT(slotConfigureTagGuesser()));
act->setText(i18n("&Tag Guesser..."));
act = collection->addAction("fileRenamerConfig", this, SLOT(slotConfigureFileRenamer()));
act->setText(i18n("&File Renamer..."));
act = collection->addAction("scrobblerConfig", this, SLOT(slotConfigureScrobbling()));
act->setText(i18n("&Configure scrobbling..."));
//////////////////////////////////////////////////
// just in the toolbar
//////////////////////////////////////////////////
collection->addAction("trackPositionAction",
new TrackPositionAction(i18n("Track Position"), this));
collection->addAction("volumeAction",
new VolumeAction(i18n("Volume"), this));
ActionCollection::actions()->addAssociatedWidget(this);
foreach (QAction* action, ActionCollection::actions()->actions())
action->setShortcutContext(Qt::WidgetWithChildrenShortcut);
}
void JuK::slotSetupSystemTray()
{
if(m_toggleSystemTrayAction && m_toggleSystemTrayAction->isChecked()) {
m_systemTray = new SystemTray(m_player, this);
m_systemTray->setObjectName(QStringLiteral("systemTray"));
m_toggleDockOnCloseAction->setEnabled(true);
m_togglePopupsAction->setEnabled(true);
// If this flag gets set then JuK will quit if you click the cover on
// the track announcement popup when JuK is only in the system tray
// (the systray has no widget).
qGuiApp->setQuitOnLastWindowClosed(false);
}
else {
m_systemTray = nullptr;
m_toggleDockOnCloseAction->setEnabled(false);
m_togglePopupsAction->setEnabled(false);
}
}
void JuK::setupGlobalAccels()
{
KeyDialog::setupActionShortcut("play");
KeyDialog::setupActionShortcut("playPause");
KeyDialog::setupActionShortcut("stop");
KeyDialog::setupActionShortcut("back");
KeyDialog::setupActionShortcut("forward");
KeyDialog::setupActionShortcut("seekBack");
KeyDialog::setupActionShortcut("seekForward");
KeyDialog::setupActionShortcut("volumeUp");
KeyDialog::setupActionShortcut("volumeDown");
KeyDialog::setupActionShortcut("mute");
KeyDialog::setupActionShortcut("showHide");
KeyDialog::setupActionShortcut("forwardAlbum");
}
void JuK::slotProcessArgs()
{
CollectionList::instance()->addFiles(m_filesToOpen);
}
void JuK::slotClearOldCovers()
{
// Find all saved covers from the previous run of JuK and clear them out, in case
// we find our tracks in a different order this run, which would cause old saved
// covers to be wrong.
// See mpris2/mediaplayer2player.cpp
QString tmpDir = QStandardPaths::writableLocation(QStandardPaths::TempLocation);
QStringList nameFilters;
nameFilters << QStringLiteral("juk-cover-*.png");
QDirIterator jukCoverIter(tmpDir, nameFilters);
while (jukCoverIter.hasNext()) {
QFile::remove(jukCoverIter.next());
}
}
void JuK::keyPressEvent(QKeyEvent *e)
{
if (e->key() >= Qt::Key_Back && e->key() <= Qt::Key_MediaLast)
e->accept();
KXmlGuiWindow::keyPressEvent(e);
}
/**
* These are settings that need to be know before setting up the GUI.
*/
void JuK::readSettings()
{
KConfigGroup config(KSharedConfig::openConfig(), "Settings");
m_startDocked = config.readEntry("StartDocked", false);
}
void JuK::readConfig()
{
// player settings
KConfigGroup playerConfig(KSharedConfig::openConfig(), "Player");
if(m_player)
{
const int maxVolume = 100;
const int volume = playerConfig.readEntry("Volume", maxVolume);
m_player->setVolume(volume * 0.01);
//bool enableCrossfade = playerConfig.readEntry("CrossfadeTracks", true);
//m_player->setCrossfadeEnabled(enableCrossfade);
//ActionCollection::action<QAction>("crossfadeTracks")->setChecked(enableCrossfade);
}
// Default to no random play
ActionCollection::action<KToggleAction>("disableRandomPlay")->setChecked(true);
QString randomPlayMode = playerConfig.readEntry("RandomPlay", "Disabled");
if(randomPlayMode == "true" || randomPlayMode == "Normal")
m_randomPlayAction->setChecked(true);
else if(randomPlayMode == "AlbumRandomPlay")
ActionCollection::action<QAction>("albumRandomPlay")->setChecked(true);
bool loopPlaylist = playerConfig.readEntry("LoopPlaylist", false);
ActionCollection::action<QAction>("loopPlaylist")->setChecked(loopPlaylist);
// general settings
KConfigGroup settingsConfig(KSharedConfig::openConfig(), "Settings");
bool dockInSystemTray = settingsConfig.readEntry("DockInSystemTray", true);
m_toggleSystemTrayAction->setChecked(dockInSystemTray);
bool dockOnClose = settingsConfig.readEntry("DockOnClose", true);
m_toggleDockOnCloseAction->setChecked(dockOnClose);
bool showPopups = settingsConfig.readEntry("TrackPopup", false);
m_togglePopupsAction->setChecked(showPopups);
}
void JuK::saveConfig()
{
// player settings
KConfigGroup playerConfig(KSharedConfig::openConfig(), "Player");
if (m_player)
{
playerConfig.writeEntry("Volume", static_cast<int>(100.0 * m_player->volume()));
}
playerConfig.writeEntry("RandomPlay", m_randomPlayAction->isChecked());
QAction *a = ActionCollection::action<QAction>("loopPlaylist");
playerConfig.writeEntry("LoopPlaylist", a->isChecked());
playerConfig.writeEntry("CrossfadeTracks", false); // TODO bring back
a = ActionCollection::action<QAction>("albumRandomPlay");
if(a->isChecked())
playerConfig.writeEntry("RandomPlay", "AlbumRandomPlay");
else if(m_randomPlayAction->isChecked())
playerConfig.writeEntry("RandomPlay", "Normal");
else
playerConfig.writeEntry("RandomPlay", "Disabled");
// general settings
KConfigGroup settingsConfig(KSharedConfig::openConfig(), "Settings");
settingsConfig.writeEntry("StartDocked", m_startDocked);
settingsConfig.writeEntry("DockInSystemTray", m_toggleSystemTrayAction->isChecked());
settingsConfig.writeEntry("DockOnClose", m_toggleDockOnCloseAction->isChecked());
settingsConfig.writeEntry("TrackPopup", m_togglePopupsAction->isChecked());
KSharedConfig::openConfig()->sync();
}
bool JuK::queryClose()
{
if(!m_shuttingDown &&
!qApp->isSavingSession() &&
m_systemTray &&
m_toggleDockOnCloseAction->isChecked())
{
KMessageBox::information(this,
i18n("<qt>Closing the main window will keep JuK running in the system tray. "
"Use Quit from the File menu to quit the application.</qt>"),
i18n("Docking in System Tray"), "hideOnCloseInfo");
hide();
return false;
}
return true;
}
////////////////////////////////////////////////////////////////////////////////
// private slot definitions
////////////////////////////////////////////////////////////////////////////////
void JuK::slotShowHide()
{
setHidden(!isHidden());
}
void JuK::slotQuit()
{
m_shuttingDown = true;
// Some phonon backends will crash on shutdown unless we've stopped
// playback.
if(m_player->playing()) {
m_player->stop();
}
m_startDocked = !isVisible();
saveConfig();
// this will start chain of events causing PlaylistCollection (in
// guise of PlaylistBox) and CollectionList (as first Playlist child)
// to save themselves and then quit the application when this widget
// closes.
delete m_statusLabel;
m_statusLabel = nullptr;
delete m_splitter;
m_splitter = nullptr;
setAttribute(Qt::WA_DeleteOnClose);
this->close();
}
////////////////////////////////////////////////////////////////////////////////
// settings menu
////////////////////////////////////////////////////////////////////////////////
void JuK::slotToggleSystemTray(bool enabled)
{
if(enabled && !m_systemTray)
slotSetupSystemTray();
else if(!enabled && m_systemTray) {
delete m_systemTray;
m_systemTray = nullptr;
m_toggleDockOnCloseAction->setEnabled(false);
m_togglePopupsAction->setEnabled(false);
qGuiApp->setQuitOnLastWindowClosed(true);
}
}
void JuK::slotEditKeys()
{
KeyDialog(ActionCollection::actions(), this).configure();
}
void JuK::slotConfigureTagGuesser()
{
TagGuesserConfigDlg(this).exec();
}
void JuK::slotConfigureFileRenamer()
{
FileRenamerConfigDlg(this).exec();
}
void JuK::slotConfigureScrobbling()
{
ScrobbleConfigDlg(this).exec();
activateScrobblerIfEnabled();
}
void JuK::activateScrobblerIfEnabled()
{
bool isScrobbling = Scrobbler::isScrobblingEnabled();
if (!m_scrobbler && isScrobbling) {
m_scrobbler = new Scrobbler(this);
connect (m_player, SIGNAL(signalItemChanged(FileHandle)),
m_scrobbler, SLOT(nowPlaying(FileHandle)));
}
else if (m_scrobbler && !isScrobbling) {
delete m_scrobbler;
m_scrobbler = 0;
}
}
void JuK::slotUndo()
{
TagTransactionManager::instance()->undo();
}
void JuK::slotCheckAlbumNextAction(bool albumRandomEnabled)
{
// If album random play is enabled, then enable the Play Next Album action
// unless we're not playing right now.
if(albumRandomEnabled && !m_player->playing())
albumRandomEnabled = false;
action("forwardAlbum")->setEnabled(albumRandomEnabled);
}
// vim: set et sw=4 tw=0 sta: