diff --git a/juk.cpp b/juk.cpp index e4380d40..94133c5b 100644 --- a/juk.cpp +++ b/juk.cpp @@ -1,630 +1,627 @@ /** * Copyright (C) 2002-2004 Scott Wheeler * Copyright (C) 2008, 2009 Michael Pyne * * 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 . */ #include "juk.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "slideraction.h" #include "statuslabel.h" #include "splashscreen.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 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(0), m_statusLabel(0), m_systemTray(0), m_player(new PlayerManager), m_scrobbler(0), m_shuttingDown(false), m_filesToOpen(filesToOpen) { // Expect segfaults if you change this order. m_instance = this; readSettings(); if(m_showSplash && !m_startDocked && Cache::cacheFileExists()) { if(SplashScreen* splash = SplashScreen::instance()) { splash->show(); qApp->processEvents(); } } 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(); r.moveCenter(QApplication::desktop()->screenGeometry().center()); move(r.topLeft()); } connect(m_splitter, SIGNAL(guiReady()), SLOT(slotSetupSystemTray())); readConfig(); setupGlobalAccels(); activateScrobblerIfEnabled(); connect(QCoreApplication::instance(), SIGNAL(aboutToQuit()), SLOT(slotAboutToQuit())); // 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() { } 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() { new TagTransactionManager(this); qCDebug(JUK_LOG) << "Creating GUI"; QTime stopwatch; stopwatch.start(); m_splitter = new PlaylistSplitter(m_player, this); setCentralWidget(m_splitter); m_statusLabel = new StatusLabel(m_splitter->playlist(), statusBar()); connect(CollectionList::instance(), SIGNAL(signalCollectionChanged()), m_statusLabel, SLOT(updateData())); statusBar()->addWidget(m_statusLabel, 1); m_player->setStatusLabel(m_statusLabel); m_splitter->setFocus(); qCDebug(JUK_LOG) << "GUI created in" << stopwatch.elapsed() << "ms"; } 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); - // Setup the menu which handles the random play options. KActionMenu *actionMenu = collection->add("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("disableRandomPlay"); act->setText(i18n("&Disable Random Play")); act->setIcon(QIcon::fromTheme( QLatin1String( "go-down" ))); act->setActionGroup(randomPlayGroup); actionMenu->addAction(act); m_randomPlayAction = collection->add("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("albumRandomPlay"); 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->add("crossfadeTracks"); act->setText(i18n("Crossfade Between Tracks")); connect(act, SIGNAL(triggered(bool)), m_player, SLOT(setCrossfadeEnabled(bool))); 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->setText(i18n("P&ause")); act->setIcon(QIcon::fromTheme( QLatin1String( "media-playback-pause" ))); act = collection->addAction("stop", m_player, SLOT(stop())); 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); collection->addAction("back", act); connect(act, SIGNAL(triggered(bool)), m_player, SLOT(back())); act = collection->addAction("forward", m_player, SLOT(forward())); 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("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_toggleSplashAction = collection->add("showSplashScreen"); m_toggleSplashAction->setText(i18n("Show Splash Screen on Startup")); m_toggleSystemTrayAction = collection->add("toggleSystemTray"); m_toggleSystemTrayAction->setText(i18n("&Dock in System Tray")); connect(m_toggleSystemTrayAction, SIGNAL(triggered(bool)), SLOT(slotToggleSystemTray(bool))); m_toggleDockOnCloseAction = collection->add("dockOnClose"); m_toggleDockOnCloseAction->setText(i18n("&Stay in System Tray on Close")); m_togglePopupsAction = collection->add("togglePopups"); m_togglePopupsAction->setText(i18n("Popup &Track Announcement")); act = collection->add("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()) { qCDebug(JUK_LOG) << "Setting up systray"; QTime stopwatch; stopwatch.start(); m_systemTray = new SystemTray(m_player, this); m_systemTray->setObjectName( QLatin1String("systemTray" )); m_toggleDockOnCloseAction->setEnabled(true); m_togglePopupsAction->setEnabled(true); qCDebug(JUK_LOG) << "Finished setting up systray, took" << stopwatch.elapsed() << "ms"; } else { m_systemTray = 0; 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 QStringList oldFiles = KGlobal::dirs()->findAllResources("tmp", "juk-cover-*.png"); foreach(const QString &file, oldFiles) { qCWarning(JUK_LOG) << "Removing old cover" << file; if(!QFile::remove(file)) { qCCritical(JUK_LOG) << "Failed to remove old cover" << file; } } } 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_showSplash = config.readEntry("ShowSplashScreen", true); 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); - if(ActionCollection::action("volumeAction")->button()) - ActionCollection::action("volumeAction")->button()->refresh(); bool enableCrossfade = playerConfig.readEntry("CrossfadeTracks", true); m_player->setCrossfadeEnabled(enableCrossfade); //ActionCollection::action("crossfadeTracks")->setChecked(enableCrossfade); } // Default to no random play ActionCollection::action("disableRandomPlay")->setChecked(true); QString randomPlayMode = playerConfig.readEntry("RandomPlay", "Disabled"); if(randomPlayMode == "true" || randomPlayMode == "Normal") m_randomPlayAction->setChecked(true); else if(randomPlayMode == "AlbumRandomPlay") ActionCollection::action("albumRandomPlay")->setChecked(true); bool loopPlaylist = playerConfig.readEntry("LoopPlaylist", false); //ActionCollection::action("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); m_toggleSplashAction->setChecked(m_showSplash); } void JuK::saveConfig() { // player settings KConfigGroup playerConfig(KSharedConfig::openConfig(), "Player"); if (m_player) { playerConfig.writeEntry("Volume", static_cast(100.0 * m_player->volume())); } playerConfig.writeEntry("RandomPlay", m_randomPlayAction->isChecked()); QAction *a = ActionCollection::action("loopPlaylist"); playerConfig.writeEntry("LoopPlaylist", a->isChecked()); a = ActionCollection::action("crossfadeTracks"); playerConfig.writeEntry("CrossfadeTracks", a->isChecked()); a = ActionCollection::action("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("ShowSplashScreen", m_toggleSplashAction->isChecked()); 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("Closing the main window will keep JuK running in the system tray. " "Use Quit from the File menu to quit the application."), i18n("Docking in System Tray"), "hideOnCloseInfo"); hide(); return false; } else { // Some phonon backends will crash on shutdown unless we've stopped // playback. if(m_player->playing()) m_player->stop(); // Save configuration data. m_startDocked = !isVisible(); saveConfig(); return true; } } //////////////////////////////////////////////////////////////////////////////// // private slot definitions //////////////////////////////////////////////////////////////////////////////// void JuK::slotShowHide() { setHidden(!isHidden()); } void JuK::slotAboutToQuit() { m_shuttingDown = true; deleteAndClear(m_systemTray); deleteAndClear(m_splitter); deleteAndClear(m_player); deleteAndClear(m_statusLabel); // Playlists depend on CoverManager, so CoverManager should shutdown as // late as possible CoverManager::shutdown(); } void JuK::slotQuit() { m_shuttingDown = true; qApp->quit(); } //////////////////////////////////////////////////////////////////////////////// // settings menu //////////////////////////////////////////////////////////////////////////////// void JuK::slotToggleSystemTray(bool enabled) { if(enabled && !m_systemTray) slotSetupSystemTray(); else if(!enabled && m_systemTray) { delete m_systemTray; m_systemTray = 0; m_toggleDockOnCloseAction->setEnabled(false); m_togglePopupsAction->setEnabled(false); } } void JuK::slotEditKeys() { KeyDialog::configure(ActionCollection::actions(), this); } 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: diff --git a/slideraction.cpp b/slideraction.cpp index 4bb3475a..7d458eb9 100644 --- a/slideraction.cpp +++ b/slideraction.cpp @@ -1,87 +1,73 @@ /** * Copyright (C) 2002-2004 Scott Wheeler * * 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 . */ #include "slideraction.h" #include #include #include #include #include #include #include #include #include "volumepopupbutton.h" #include "slider.h" #include "playermanager.h" #include "juk.h" #include "juk_debug.h" TrackPositionAction::TrackPositionAction(const QString &text, QObject *parent) : - QAction(text, parent) + QWidgetAction(parent) { - -} - -Slider *TrackPositionAction::slider() const -{ - return parent()->findChild("timeSlider"); + this->setText(text); } QWidget *TrackPositionAction::createWidget(QWidget *parent) { Slider *slider = new TimeSlider(parent); slider->setObjectName(QLatin1String("timeSlider")); PlayerManager *player = JuK::JuKInstance()->playerManager(); - connect(player, SIGNAL(tick(int)), slider, SLOT(setValue(int))); - connect(player, SIGNAL(seekableChanged(bool)), this, SLOT(seekableChanged(bool))); - connect(player, SIGNAL(totalTimeChanged(int)), this, SLOT(totalTimeChanged(int))); - connect(slider, SIGNAL(sliderMoved(int)), player, SLOT(seek(int))); + // TODO only connect the tick signal when actually visible + connect(player, &PlayerManager::tick, slider, &Slider::setValue); + connect(player, &PlayerManager::seekableChanged, slider, &Slider::setEnabled); + connect(player, &PlayerManager::seekableChanged, slider, [slider](bool seekable) { + static const QString noSeekMsg = + i18n("Seeking is not supported in this file with your audio settings."); + slider->setToolTip(seekable ? QString() : noSeekMsg); + }); + connect(player, &PlayerManager::totalTimeChanged, slider, &Slider::setMaximum); + connect(slider, &Slider::valueChanged, player, &PlayerManager::seek); return slider; } -void TrackPositionAction::seekableChanged(bool seekable) +VolumeAction::VolumeAction(const QString &text, QObject *parent) + : QWidgetAction(parent) { - slider()->setEnabled(seekable); - slider()->setToolTip(seekable ? - QString() : - i18n("Seeking is not supported in this file with your audio settings.")); -} - -void TrackPositionAction::totalTimeChanged(int ms) -{ - slider()->setRange(0, ms); -} - -VolumeAction::VolumeAction(const QString &text, QObject *parent) : - QAction(text, parent), - m_button(0) -{ - + this->setText(text); } QWidget *VolumeAction::createWidget(QWidget *parent) { - m_button = new VolumePopupButton(parent); - return m_button; + return new VolumePopupButton(parent); } // vim: set et sw=4 tw=0 sta: diff --git a/slideraction.h b/slideraction.h index d87b5f24..b03177ae 100644 --- a/slideraction.h +++ b/slideraction.h @@ -1,54 +1,53 @@ /** * Copyright (C) 2002-2004 Scott Wheeler * * 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 . */ -#ifndef SLIDERACTION_H -#define SLIDERACTION_H +#ifndef JUK_SLIDERACTION_H +#define JUK_SLIDERACTION_H -#include +#include #include #include "volumepopupbutton.h" class Slider; -class TrackPositionAction : public QAction +class TrackPositionAction : public QWidgetAction { Q_OBJECT public: TrackPositionAction(const QString &text, QObject *parent); - Slider *slider() const; + protected: - virtual QWidget *createWidget(QWidget *parent); -private slots: - void seekableChanged(bool seekable); - void totalTimeChanged(int ms); + QWidget *createWidget(QWidget *parent) override; }; -class VolumeAction : public QAction +class VolumeAction : public QWidgetAction { Q_OBJECT public: VolumeAction(const QString &text, QObject *parent); - VolumePopupButton *button() const { return m_button; } + protected: - virtual QWidget *createWidget(QWidget *parent); -private: - VolumePopupButton *m_button; + QWidget *createWidget(QWidget *parent) override; + +signals: + void volumeChanged(float newVolume); + void muteStateChanged(bool muted); }; #endif // vim: set et sw=4 tw=0 sta: