mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
169 lines
5.6 KiB
C++
169 lines
5.6 KiB
C++
#ifndef COMPONENT_H
|
|
#define COMPONENT_H
|
|
/* 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 as published by the Free Software Foundation; either
|
|
version 2 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
|
|
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 "globalshortcut.h"
|
|
#include "kglobalshortcutinfo.h"
|
|
|
|
#include "kconfiggroup.h"
|
|
|
|
#include <QtCore/QObject>
|
|
#include <QtCore/QHash>
|
|
|
|
class GlobalShortcut;
|
|
class GlobalShortcutContext;
|
|
class GlobalShortcutsRegistry;
|
|
|
|
|
|
namespace KdeDGlobalAccel {
|
|
|
|
/**
|
|
* @author Michael Jansen <kde@michael-jansen.biz>
|
|
*/
|
|
class Component : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kglobalaccel.Component")
|
|
|
|
Q_SCRIPTABLE Q_PROPERTY( QString friendlyName READ friendlyName )
|
|
Q_SCRIPTABLE Q_PROPERTY( QString uniqueName READ uniqueName )
|
|
|
|
public:
|
|
//! Creates a new component. The component will be registered with @p
|
|
//! registry if specified and registered with dbus.
|
|
Component(const QString &uniqueName, const QString &friendlyName, GlobalShortcutsRegistry *registry = NULL);
|
|
~Component();
|
|
|
|
bool activateGlobalShortcutContext(const QString &uniqueName);
|
|
|
|
void activateShortcuts();
|
|
|
|
//! Returns all shortcuts in context @context
|
|
QList<GlobalShortcut *> allShortcuts(const QString &context = "default") const;
|
|
|
|
//! Creates the new global shortcut context @p context
|
|
bool createGlobalShortcutContext(const QString &context, const QString &friendlyName="");
|
|
|
|
//! Return the current context
|
|
GlobalShortcutContext* currentContext();
|
|
|
|
//! Return uniqueName converted to a valid dbus path
|
|
QDBusObjectPath dbusPath() const;
|
|
|
|
//! Deactivate all currently active shortcuts
|
|
void deactivateShortcuts(bool temporarily=false);
|
|
|
|
//! Returns the friendly name
|
|
QString friendlyName() const;
|
|
|
|
//! Returns the currently active shortcut for key
|
|
GlobalShortcut *getShortcutByKey(int key) const;
|
|
|
|
//! Returns the shortcut context @p name or NULL
|
|
GlobalShortcutContext *shortcutContext(const QString &name);
|
|
GlobalShortcutContext const *shortcutContext(const QString &name) const;
|
|
|
|
/**
|
|
* Returns the list of shortcuts (different context) registered with @p
|
|
* key.
|
|
*/
|
|
QList<GlobalShortcut *> getShortcutsByKey(int key) const;
|
|
|
|
//! Returns the shortcut by unique name. Only the active context is
|
|
//! searched.
|
|
GlobalShortcut *getShortcutByName(const QString &uniqueName, const QString &context = "default") const;
|
|
|
|
/**
|
|
* Check if @a key is available for component @p component
|
|
*/
|
|
bool isShortcutAvailable(int key, const QString &component, const QString &context) const;
|
|
|
|
//! Load the settings from config group @p config
|
|
void loadSettings(KConfigGroup &config);
|
|
|
|
//! Sets the human readable name for this component.
|
|
void setFriendlyName(const QString &);
|
|
|
|
QString uniqueName() const;
|
|
|
|
//! Unregister @a shortcut. This will remove its siblings from all contexts
|
|
void unregisterShortcut(const QString &uniqueName);
|
|
|
|
void writeSettings(KConfigGroup &config) const;
|
|
|
|
public Q_SLOTS:
|
|
// For dbus Q_SCRIPTABLE has to be on slots. Scriptable methods are not
|
|
// exported.
|
|
|
|
/**
|
|
* Remove all currently not used global shortcuts registrations for this
|
|
* component and if nothing is left the component too.
|
|
*
|
|
* If the method returns true consider all information previously acquired
|
|
* from this component as void.
|
|
*
|
|
* The method will cleanup in all contexts.
|
|
*
|
|
* @return @c true if a change was made, @c false if not.
|
|
*/
|
|
Q_SCRIPTABLE bool cleanUp();
|
|
|
|
/**
|
|
* Check if the component is currently active.
|
|
*
|
|
* A component is active if at least one of it's global shortcuts is
|
|
* currently present.
|
|
*/
|
|
Q_SCRIPTABLE bool isActive() const;
|
|
|
|
//! Get all shortcutnames living in @a context
|
|
Q_SCRIPTABLE QStringList shortcutNames(const QString &context = "default") const;
|
|
|
|
//! Returns all shortcut in @a context
|
|
Q_SCRIPTABLE QList<KGlobalShortcutInfo> allShortcutInfos(const QString &context = "default") const;
|
|
|
|
//! Returns the shortcut contexts available for the component.
|
|
Q_SCRIPTABLE QStringList getShortcutContexts() const;
|
|
|
|
//! Start the global shortcuts kcm and show this component.
|
|
Q_SCRIPTABLE bool showKCM();
|
|
|
|
void emitGlobalShortcutPressed(const GlobalShortcut &shortcut);
|
|
|
|
Q_SCRIPTABLE void invokeShortcut(const QString &shortcutName, const QString &context = "default");
|
|
|
|
Q_SIGNALS:
|
|
//! Signals that a action for this component was triggered
|
|
Q_SCRIPTABLE void globalShortcutPressed(const QString &componentUnique, const QString &shortcutUnique, qlonglong timestamp);
|
|
|
|
private:
|
|
QString _uniqueName;
|
|
//the name as it would be found in a magazine article about the application,
|
|
//possibly localized if a localized name exists.
|
|
QString _friendlyName;
|
|
|
|
GlobalShortcutsRegistry *_registry;
|
|
|
|
GlobalShortcutContext *_current;
|
|
QHash<QString, GlobalShortcutContext *> _contexts;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* #ifndef COMPONENT_H */
|