kde-workspace/khotkeys/libkhotkeysprivate/triggers/shortcut_trigger.cpp
Ivailo Monev 3ca810a7d4 generic: replace QUuid with QByteArray and qRandomUuid()
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-03-22 14:57:40 +02:00

212 lines
5.3 KiB
C++

/*
Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
Copyright (C) 2008 Michael Jansen <kde@michael-jansen.biz>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "triggers/triggers.h"
#include "action_data/action_data.h"
#include "windows_handler.h"
#include <KAction>
#include <KConfigGroup>
#include <KDebug>
#include "shortcuts_handler.h"
namespace KHotKeys {
ShortcutTriggerVisitor::~ShortcutTriggerVisitor()
{}
ShortcutTrigger::ShortcutTrigger(
ActionData* data_P,
const KShortcut& shortcut,
const QByteArray &uuid )
: Trigger( data_P ),
_uuid(uuid),
_active(false),
_shortcut(shortcut)
{
}
ShortcutTrigger::~ShortcutTrigger()
{
keyboard_handler->removeAction( _uuid );
}
void ShortcutTrigger::accept(TriggerVisitor& visitor)
{
if (ShortcutTriggerVisitor *v = dynamic_cast<ShortcutTriggerVisitor*>(&visitor))
{
v->visit(*this);
}
else
{
kDebug() << "Visitor error";
}
}
void ShortcutTrigger::aboutToBeErased()
{
disable();
}
void ShortcutTrigger::activate( bool newState )
{
#ifdef KHOTKEYS_TRACE
kDebug() << "new:" << newState << "old:" << _active;
#endif
// If there is no change in state just return.
if (newState == _active)
return;
_active = newState;
if (_active)
{
QString name = data
? data->name()
: "TODO";
// FIXME: The following workaround tries to prevent having two actions with
// the same uuid. That happens wile exporting/importing actions. The uuid
// is exported too.
KAction *act = keyboard_handler->addAction( _uuid, name, _shortcut );
// addAction can change the uuid. That's why we store the uuid from the
// action
_uuid = act->objectName().toLatin1();
connect(
act, SIGNAL(triggered(bool)),
this, SLOT(trigger()) );
connect(
act, SIGNAL(globalShortcutChanged(QKeySequence)),
this, SIGNAL(globalShortcutChanged(QKeySequence)));
}
else
{
// Disable the trigger. Delete the action.
KAction *action = qobject_cast<KAction*>(keyboard_handler->getAction( _uuid ));
if(action)
{
// In case the shortcut was changed from the kcm.
_shortcut = action->globalShortcut();
keyboard_handler->removeAction(_uuid);
}
}
}
void ShortcutTrigger::cfg_write( KConfigGroup& cfg_P ) const
{
base::cfg_write( cfg_P );
cfg_P.writeEntry( "Key", shortcut().toString());
cfg_P.writeEntry( "Type", "SHORTCUT" ); // overwrites value set in base::cfg_write()
cfg_P.writeEntry( "Uuid", _uuid );
}
ShortcutTrigger* ShortcutTrigger::copy( ActionData* data_P ) const
{
return new ShortcutTrigger( data_P ? data_P : data, shortcut(), createShortcutID());
}
const QString ShortcutTrigger::description() const
{
return i18n( "Shortcut trigger: " ) + shortcut().toString();
}
void ShortcutTrigger::disable()
{
activate(false);
// Unregister the shortcut with kglobalaccel
KAction *action = qobject_cast<KAction*>(keyboard_handler->getAction( _uuid ));
if(action)
{
// In case the shortcut was changed from the kcm.
_shortcut = action->globalShortcut();
// Unregister the global shortcut.
action->forgetGlobalShortcut();
keyboard_handler->removeAction(_uuid);
}
}
void ShortcutTrigger::enable()
{
// To enable the shortcut we have to just register it once with
// kglobalaccel and deactivate it immediately
activate(true);
activate(false);
}
void ShortcutTrigger::set_key_sequence( const QKeySequence &seq )
{
// Get the action from the keyboard handler
KAction *action = qobject_cast<KAction*>(keyboard_handler->getAction( _uuid ));
if (!action)
{
_shortcut.setPrimary(seq);
}
else
{
action->setGlobalShortcut(
KShortcut(seq),
KAction::ActiveShortcut,
KAction::NoAutoloading );
}
}
KShortcut ShortcutTrigger::shortcut() const
{
// Get the action from the keyboard handler
KAction *action = qobject_cast<KAction*>(keyboard_handler->getAction( _uuid ));
if (!action)
{
// Not active!
return _shortcut;
}
return action->globalShortcut();
}
void ShortcutTrigger::trigger()
{
if (khotkeys_active())
{
windows_handler->set_action_window( 0 ); // use active window
data->execute();
}
}
} // namespace KHotKeys