forked from qt-creator/qt-creator
Change-Id: Idec6b1357d7c1db316c8cb29e82c7c9a62e4f6d5 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
108 lines
3.3 KiB
C++
108 lines
3.3 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 Nicolas Arnaud-Cormos
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "actionmacrohandler.h"
|
|
#include "macroevent.h"
|
|
#include "macro.h"
|
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
|
#include <coreplugin/actionmanager/command.h>
|
|
#include <coreplugin/coreconstants.h>
|
|
#include <coreplugin/icontext.h>
|
|
#include <coreplugin/icore.h>
|
|
#include <coreplugin/id.h>
|
|
|
|
#include <texteditor/texteditorconstants.h>
|
|
|
|
#include <QAction>
|
|
#include <QEvent>
|
|
|
|
using namespace Core;
|
|
|
|
namespace Macros {
|
|
namespace Internal {
|
|
|
|
static const char EVENTNAME[] = "Action";
|
|
static quint8 ACTIONNAME = 0;
|
|
|
|
ActionMacroHandler::ActionMacroHandler()
|
|
{
|
|
connect(ActionManager::instance(), &ActionManager::commandAdded,
|
|
this, &ActionMacroHandler::addCommand);
|
|
|
|
// Register all existing scriptable actions
|
|
QList<Command *> commands = ActionManager::commands();
|
|
foreach (Command *command, commands) {
|
|
if (command->isScriptable())
|
|
registerCommand(command->id());
|
|
}
|
|
}
|
|
|
|
bool ActionMacroHandler::canExecuteEvent(const MacroEvent ¯oEvent)
|
|
{
|
|
return macroEvent.id() == EVENTNAME;
|
|
}
|
|
|
|
bool ActionMacroHandler::executeEvent(const MacroEvent ¯oEvent)
|
|
{
|
|
QAction *action = ActionManager::command(Id::fromSetting(macroEvent.value(ACTIONNAME)))->action();
|
|
if (!action)
|
|
return false;
|
|
|
|
action->trigger();
|
|
return true;
|
|
}
|
|
|
|
void ActionMacroHandler::registerCommand(Id id)
|
|
{
|
|
if (!m_commandIds.contains(id)) {
|
|
m_commandIds.insert(id);
|
|
const Command *command = ActionManager::command(id);
|
|
if (QAction *action = command->action()) {
|
|
connect(action, &QAction::triggered, this, [this, id, command]() {
|
|
if (!isRecording())
|
|
return;
|
|
|
|
if (command->isScriptable(command->context())) {
|
|
MacroEvent e;
|
|
e.setId(EVENTNAME);
|
|
e.setValue(ACTIONNAME, id.toSetting());
|
|
addMacroEvent(e);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
void ActionMacroHandler::addCommand(Id id)
|
|
{
|
|
const Command *command = ActionManager::command(id);
|
|
if (command->isScriptable())
|
|
registerCommand(id);
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace Macros
|