kde-workspace/khotkeys/libkhotkeysprivate/khotkeysglobal.cpp
Ivailo Monev 1fa840757f khotkeys: remove barely implemented voice trigger feature
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2021-03-13 19:34:42 +02:00

80 lines
2.1 KiB
C++

/****************************************************************************
KHotKeys
Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
Distributed under the terms of the GNU General Public License version 2.
****************************************************************************/
#define _KHOTKEYSGLOBAL_CPP_
#include "khotkeysglobal.h"
#include <kdebug.h>
#include <kstandarddirs.h>
#include "input.h"
#include "windows_handler.h"
#include "triggers/triggers.h"
#include "triggers/gestures.h"
#include "shortcuts_handler.h"
namespace KHotKeys
{
QPointer<ShortcutsHandler> keyboard_handler = NULL;
QPointer<WindowsHandler> windows_handler = NULL;
static bool _khotkeys_active = false;
void init_global_data( bool active_P, QObject* owner_P )
{
// FIXME: get rid of that static_cast<>s. Don't know why they are there.
// Make these singletons.
if (!keyboard_handler)
{
keyboard_handler = new ShortcutsHandler( active_P ? ShortcutsHandler::Active : ShortcutsHandler::Configuration, owner_P );
}
if (!windows_handler)
{
windows_handler = new WindowsHandler( active_P, owner_P );
}
if (!gesture_handler)
{
gesture_handler = new Gesture( active_P, owner_P );
}
khotkeys_set_active( false );
}
void khotkeys_set_active( bool active_P )
{
_khotkeys_active = active_P;
}
bool khotkeys_active()
{
return _khotkeys_active;
}
// does the opposite of KStandardDirs::findResource() i.e. e.g.
// "/opt/kde2/share/applnk/System/konsole.desktop" -> "System/konsole.desktop"
QString get_menu_entry_from_path( const QString& path_P )
{
const QStringList dirs = KGlobal::dirs()->resourceDirs( "apps" );
for( QStringList::ConstIterator it = dirs.constBegin();
it != dirs.constEnd();
++it )
if( path_P.indexOf( *it ) == 0 )
{
QString ret = path_P;
ret.remove( 0, (*it).length());
if( ret[ 0 ] == '/' )
ret.remove( 0, 1 );
return ret;
}
return path_P;
}
} // namespace KHotKeys