LxQtVolume::LxQtVolume(const ILxQtPanelPluginStartupInfo &startupInfo): QObject(), ILxQtPanelPlugin(startupInfo), m_engine(0), m_defaultSinkIndex(0), m_defaultSink(0) { m_volumeButton = new VolumeButton(this); m_notification = new LxQt::Notification("", this); m_keyVolumeUp = GlobalKeyShortcut::Client::instance()->addAction(QString(), QString("/panel/%1/up").arg(settings()->group()), tr("Increase sound volume"), this); if (m_keyVolumeUp) { connect(m_keyVolumeUp, &GlobalKeyShortcut::Action::registrationFinished, this, &LxQtVolume::shortcutRegistered); connect(m_keyVolumeUp, SIGNAL(activated()), this, SLOT(handleShortcutVolumeUp())); } m_keyVolumeDown = GlobalKeyShortcut::Client::instance()->addAction(QString(), QString("/panel/%1/down").arg(settings()->group()), tr("Decrease sound volume"), this); if (m_keyVolumeDown) { connect(m_keyVolumeDown, &GlobalKeyShortcut::Action::registrationFinished, this, &LxQtVolume::shortcutRegistered); connect(m_keyVolumeDown, SIGNAL(activated()), this, SLOT(handleShortcutVolumeDown())); } m_keyMuteToggle = GlobalKeyShortcut::Client::instance()->addAction(QString(), QString("/panel/%1/mute").arg(settings()->group()), tr("Mute/unmute sound volume"), this); if (m_keyMuteToggle) { connect(m_keyMuteToggle, &GlobalKeyShortcut::Action::registrationFinished, this, &LxQtVolume::shortcutRegistered); connect(m_keyMuteToggle, SIGNAL(activated()), this, SLOT(handleShortcutVolumeMute())); } settingsChanged(); }
RazorVolume::RazorVolume(const RazorPanelPluginStartInfo* startInfo, QWidget* parent): RazorPanelPlugin(startInfo, parent), m_engine(0), m_defaultSinkIndex(0), m_defaultSink(0) { setObjectName("Volume"); layout()->setAlignment(Qt::AlignCenter); m_volumeButton = new VolumeButton(panel(), this); addWidget(m_volumeButton); m_notification = new RazorNotification("", this); m_configWindow = new RazorVolumeConfiguration(settings(), this); // global key shortcuts m_keyVolumeUp = new QxtGlobalShortcut(this); m_keyVolumeDown = new QxtGlobalShortcut(this); m_keyMuteToggle = new QxtGlobalShortcut(this); QString shortcutNotRegistered; QKeySequence keySequenceVolumeUp(Qt::Key_VolumeUp); if (!m_keyVolumeUp->setShortcut(keySequenceVolumeUp)) { shortcutNotRegistered = "'" + keySequenceVolumeUp.toString() + "' "; } QKeySequence keySequenceVolumeDown(Qt::Key_VolumeDown); if (!m_keyVolumeDown->setShortcut(keySequenceVolumeDown)) { shortcutNotRegistered += "'" + keySequenceVolumeDown.toString() + "' "; } QKeySequence keySequenceMuteToggle(Qt::Key_VolumeMute); if (!m_keyMuteToggle->setShortcut(keySequenceMuteToggle)) { shortcutNotRegistered += "'" + keySequenceMuteToggle.toString() + "' "; } if(!shortcutNotRegistered.isEmpty()) { m_notification->setSummary(tr("Volume Control: The following shortcuts can not be registered: %1").arg(shortcutNotRegistered)); m_notification->update(); } m_notification->setTimeout(1000); m_notification->setUrgencyHint(RazorNotification::UrgencyLow); connect(m_keyVolumeUp, SIGNAL(activated()), this, SLOT(handleShortcutVolumeUp())); connect(m_keyVolumeDown, SIGNAL(activated()), this, SLOT(handleShortcutVolumeDown())); connect(m_keyMuteToggle, SIGNAL(activated()), this, SLOT(handleShortcutVolumeMute())); settingsChanged(); }
LxQtVolume::LxQtVolume(const ILxQtPanelPluginStartupInfo &startupInfo): QObject(), ILxQtPanelPlugin(startupInfo), m_engine(0), m_defaultSinkIndex(0), m_defaultSink(0) { m_volumeButton = new VolumeButton(this); m_notification = new LxQt::Notification("", this); // global key shortcuts QString shortcutNotRegistered; m_keyVolumeUp = GlobalKeyShortcut::Client::instance()->addAction(QString(), QString("/panel/%1/up").arg(settings()->group()), tr("Increase sound volume"), this); if (m_keyVolumeUp) { connect(m_keyVolumeUp, SIGNAL(activated()), this, SLOT(handleShortcutVolumeUp())); if (m_keyVolumeUp->shortcut().isEmpty()) { m_keyVolumeUp->changeShortcut(DEFAULT_UP_SHORTCUT); if (m_keyVolumeUp->shortcut().isEmpty()) { shortcutNotRegistered = " '" DEFAULT_UP_SHORTCUT "'"; } } } m_keyVolumeDown = GlobalKeyShortcut::Client::instance()->addAction(QString(), QString("/panel/%1/down").arg(settings()->group()), tr("Decrease sound volume"), this); if (m_keyVolumeDown) { connect(m_keyVolumeDown, SIGNAL(activated()), this, SLOT(handleShortcutVolumeDown())); if (m_keyVolumeDown->shortcut().isEmpty()) { m_keyVolumeDown->changeShortcut(DEFAULT_DOWN_SHORTCUT); if (m_keyVolumeDown->shortcut().isEmpty()) { shortcutNotRegistered += " '" DEFAULT_DOWN_SHORTCUT "'"; } } } m_keyMuteToggle = GlobalKeyShortcut::Client::instance()->addAction(QString(), QString("/panel/%1/mute").arg(settings()->group()), tr("Mute/unmute sound volume"), this); if (m_keyMuteToggle) { connect(m_keyMuteToggle, SIGNAL(activated()), this, SLOT(handleShortcutVolumeMute())); if (m_keyMuteToggle->shortcut().isEmpty()) { m_keyMuteToggle->changeShortcut(DEFAULT_MUTE_SHORTCUT); if (m_keyMuteToggle->shortcut().isEmpty()) { shortcutNotRegistered += " '" DEFAULT_MUTE_SHORTCUT "'"; } } } if(!shortcutNotRegistered.isEmpty()) { m_notification->setSummary(tr("Volume Control: The following shortcuts can not be registered: %1").arg(shortcutNotRegistered)); m_notification->update(); } m_notification->setTimeout(1000); m_notification->setUrgencyHint(LxQt::Notification::UrgencyLow); settingsChanged(); }