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
|
/* BEGIN_COMMON_COPYRIGHT_HEADER
* (c)LGPL2+
*
* LXQt - a lightweight, Qt based, desktop toolset
* https://lxqt.org
*
* Copyright: 2010-2011 Razor team
* Authors:
* Petr Vanek <petr@scribus.info>
*
* This program or library is free software; you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* END_COMMON_COPYRIGHT_HEADER */
#include <QGuiApplication>
#include "lxqtmountplugin.h"
#include "configuration.h"
#include <lxqt-globalkeys.h>
#include <LXQt/Notification>
#include <Solid/DeviceNotifier>
#define DEFAULT_EJECT_SHORTCUT "XF86Eject"
LXQtMountPlugin::LXQtMountPlugin(const ILXQtPanelPluginStartupInfo &startupInfo):
QObject(),
ILXQtPanelPlugin(startupInfo),
mPopup(nullptr),
mDeviceAction(nullptr),
mEjectAction(nullptr),
mKeyEject(nullptr)
{
mButton = new Button;
mPopup = new Popup(this);
connect(mButton, &QToolButton::clicked, mPopup, &Popup::showHide);
connect(mPopup, &Popup::visibilityChanged, mButton, &QToolButton::setDown);
// Note: postpone creation of the mDeviceAction to not fire it in startup time
QTimer::singleShot(0, this, &LXQtMountPlugin::settingsChanged);
}
LXQtMountPlugin::~LXQtMountPlugin()
{
delete mButton;
delete mPopup;
}
void LXQtMountPlugin::shortcutRegistered()
{
GlobalKeyShortcut::Action * const shortcut = qobject_cast<GlobalKeyShortcut::Action*>(sender());
if (shortcut == mKeyEject)
{
disconnect(mKeyEject, &GlobalKeyShortcut::Action::registrationFinished, this, &LXQtMountPlugin::shortcutRegistered);
if (mKeyEject->shortcut().isEmpty())
{
mKeyEject->changeShortcut(QStringLiteral(DEFAULT_EJECT_SHORTCUT));
if (mKeyEject->shortcut().isEmpty())
{
// QString errorMsg = tr("Failed to register shortcut <b><nobr>\"%1\"</nobr></b>");
// errorMsg = errorMsg.arg(DEFAULT_EJECT_SHORTCUT);
// LXQt::Notification::notify(tr("Removable media/devices manager"), errorMsg, "media-eject");
LXQt::Notification::notify(tr("Removable media/devices manager: Global shortcut '%1' cannot be registered").arg(QStringLiteral(DEFAULT_EJECT_SHORTCUT)));
}
}
}
}
QDialog *LXQtMountPlugin::configureDialog()
{
if (mPopup)
mPopup->hide();
Configuration *configWindow = new Configuration(settings());
configWindow->setAttribute(Qt::WA_DeleteOnClose, true);
return configWindow;
}
void LXQtMountPlugin::realign()
{
//nothing to do
}
void LXQtMountPlugin::settingsChanged()
{
QString s = settings()->value(QLatin1String(CFG_KEY_ACTION)).toString();
DeviceAction::ActionId devActionId = DeviceAction::stringToActionId(s, DeviceAction::ActionMenu);
if (devActionId == DeviceAction::ActionMenu
&& QGuiApplication::platformName() == QStringLiteral("wayland"))
{
// WARNING: Wayland considers the popup as a standalone window until the first input
// interaction happens with the panel. To avoid this inconsistent behavior, the
// automatic showing of the popup is disabled on Wayland.
devActionId = DeviceAction::ActionInfo;
}
if (mDeviceAction == nullptr || mDeviceAction->Type() != devActionId)
{
delete mDeviceAction;
mDeviceAction = DeviceAction::create(devActionId, this, this);
connect(mPopup, &Popup::deviceAdded, mDeviceAction, &DeviceAction::onDeviceAdded);
connect(mPopup, &Popup::deviceRemoved, mDeviceAction, &DeviceAction::onDeviceRemoved);
}
if(mKeyEject == nullptr)
{
mKeyEject = GlobalKeyShortcut::Client::instance()->addAction(QString(), QStringLiteral("/panel/%1/eject").arg(settings()->group()), tr("Eject removable media"), this);
if(mKeyEject)
{
connect(mKeyEject, &GlobalKeyShortcut::Action::registrationFinished, this, &LXQtMountPlugin::shortcutRegistered);
}
}
s = settings()->value(QLatin1String(CFG_EJECT_ACTION)).toString();
EjectAction::ActionId ejActionId = EjectAction::stringToActionId(s, EjectAction::ActionNothing);
if ((mEjectAction == nullptr || mEjectAction->Type() != ejActionId) && mKeyEject)
{
if(mEjectAction)
mKeyEject->disconnect(mEjectAction);
delete mEjectAction;
mEjectAction = EjectAction::create(ejActionId, this, this);
connect(mKeyEject, &GlobalKeyShortcut::Action::activated, mEjectAction, &EjectAction::onEjectPressed);
}
}
|