2014-08-22 08:42:04 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2014-08-22 08:42:04 +02:00
|
|
|
**
|
|
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** 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.
|
2014-08-22 08:42:04 +02:00
|
|
|
**
|
2015-09-18 11:34:48 +02:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
2016-01-15 14:57:40 +01:00
|
|
|
** 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.
|
2014-08-22 08:42:04 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
#include "shortcutmanager.h"
|
|
|
|
|
|
2016-10-07 12:15:33 +02:00
|
|
|
#include "designersettings.h"
|
|
|
|
|
|
2017-01-05 17:44:10 +01:00
|
|
|
#include <viewmanager.h>
|
|
|
|
|
#include <designeractionmanagerview.h>
|
|
|
|
|
#include <componentcore_constants.h>
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
|
|
|
|
#include <coreplugin/actionmanager/actioncontainer.h>
|
2015-02-26 13:38:54 +01:00
|
|
|
#include <coreplugin/actionmanager/command.h>
|
2013-01-23 12:31:22 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2015-02-26 13:38:54 +01:00
|
|
|
#include <coreplugin/idocument.h>
|
2013-07-05 16:08:38 +02:00
|
|
|
#include <coreplugin/editormanager/documentmodel.h>
|
2015-02-26 13:22:35 +01:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2013-01-23 12:31:22 +01:00
|
|
|
#include <coreplugin/coreconstants.h>
|
2016-10-07 12:15:33 +02:00
|
|
|
#include <qmljseditor/qmljseditorconstants.h>
|
|
|
|
|
#include <qmljseditor/qmljseditordocument.h>
|
|
|
|
|
|
2017-03-09 15:11:03 +01:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
#include <utils/hostosinfo.h>
|
2017-01-05 17:44:10 +01:00
|
|
|
#include <utils/proxyaction.h>
|
|
|
|
|
#include <utils/utilsicons.h>
|
2016-10-07 12:15:33 +02:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
#include <qmljs/qmljsreformatter.h>
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
#include "qmldesignerconstants.h"
|
|
|
|
|
#include "qmldesignerplugin.h"
|
|
|
|
|
#include "designmodewidget.h"
|
|
|
|
|
|
2017-01-05 17:44:10 +01:00
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QClipboard>
|
|
|
|
|
|
|
|
|
|
static void updateClipboard(QAction *action)
|
|
|
|
|
{
|
|
|
|
|
const bool dataInClipboard = !QApplication::clipboard()->text().isEmpty();
|
|
|
|
|
action->setEnabled(dataInClipboard);
|
|
|
|
|
}
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
namespace QmlDesigner {
|
|
|
|
|
|
|
|
|
|
ShortCutManager::ShortCutManager()
|
|
|
|
|
: QObject(),
|
|
|
|
|
m_revertToSavedAction(0),
|
|
|
|
|
m_saveAction(0),
|
|
|
|
|
m_saveAsAction(0),
|
2017-01-19 10:50:38 +01:00
|
|
|
m_exportAsImageAction(tr("Export as &Image..."), 0),
|
2013-01-23 12:31:22 +01:00
|
|
|
m_closeCurrentEditorAction(0),
|
|
|
|
|
m_closeAllEditorsAction(0),
|
|
|
|
|
m_closeOtherEditorsAction(0),
|
|
|
|
|
m_undoAction(tr("&Undo"), 0),
|
|
|
|
|
m_redoAction(tr("&Redo"), 0),
|
|
|
|
|
m_deleteAction(tr("Delete"), tr("Delete \"%1\""), Utils::ParameterAction::EnabledWithParameter),
|
|
|
|
|
m_cutAction(tr("Cu&t"), tr("Cut \"%1\""), Utils::ParameterAction::EnabledWithParameter),
|
|
|
|
|
m_copyAction(tr("&Copy"), tr("Copy \"%1\""), Utils::ParameterAction::EnabledWithParameter),
|
|
|
|
|
m_pasteAction(tr("&Paste"), tr("Paste \"%1\""), Utils::ParameterAction::EnabledWithParameter),
|
|
|
|
|
m_selectAllAction(tr("Select &All"), tr("Select All \"%1\""), Utils::ParameterAction::EnabledWithParameter),
|
2017-11-08 16:57:06 +01:00
|
|
|
m_collapseExpandStatesAction(tr("Toggle States"), 0),
|
2013-01-23 12:31:22 +01:00
|
|
|
m_restoreDefaultViewAction(tr("&Restore Default View"), 0),
|
|
|
|
|
m_toggleLeftSidebarAction(tr("Toggle &Left Sidebar"), 0),
|
|
|
|
|
m_toggleRightSidebarAction(tr("Toggle &Right Sidebar"), 0),
|
2017-01-23 17:42:26 +01:00
|
|
|
m_switchTextFormAction(tr("Switch Text/Design"), 0),
|
2016-10-16 00:48:52 +03:00
|
|
|
m_escapeAction(this)
|
2013-01-23 12:31:22 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-11 13:28:59 +01:00
|
|
|
void ShortCutManager::registerActions(const Core::Context &qmlDesignerMainContext,
|
|
|
|
|
const Core::Context &qmlDesignerFormEditorContext,
|
|
|
|
|
const Core::Context &qmlDesignerNavigatorContext)
|
2013-01-23 12:31:22 +01:00
|
|
|
{
|
|
|
|
|
Core::ActionContainer *editMenu = Core::ActionManager::actionContainer(Core::Constants::M_EDIT);
|
2017-01-19 09:29:20 +01:00
|
|
|
Core::ActionContainer *fileMenu = Core::ActionManager::actionContainer(Core::Constants::M_FILE);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_undoAction, &QAction::triggered, this, &ShortCutManager::undo);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_redoAction, &QAction::triggered, this, &ShortCutManager::redo);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_deleteAction, &QAction::triggered, this, &ShortCutManager::deleteSelected);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_cutAction, &QAction::triggered, this, &ShortCutManager::cutSelected);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_copyAction, &QAction::triggered, this, &ShortCutManager::copySelected);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_pasteAction, &QAction::triggered, this, &ShortCutManager::paste);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_selectAllAction,&QAction::triggered, this, &ShortCutManager::selectAll);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
connect(&m_restoreDefaultViewAction,
|
2017-01-17 15:33:18 +01:00
|
|
|
&QAction::triggered,
|
2013-01-23 12:31:22 +01:00
|
|
|
QmlDesignerPlugin::instance()->mainWidget(),
|
2017-01-17 15:33:18 +01:00
|
|
|
&Internal::DesignModeWidget::restoreDefaultView);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
connect(&m_toggleLeftSidebarAction,
|
2017-01-17 15:33:18 +01:00
|
|
|
&QAction::triggered,
|
2013-01-23 12:31:22 +01:00
|
|
|
QmlDesignerPlugin::instance()->mainWidget(),
|
2017-01-17 15:33:18 +01:00
|
|
|
&Internal::DesignModeWidget::toggleLeftSidebar);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
connect(&m_toggleRightSidebarAction,
|
2017-01-17 15:33:18 +01:00
|
|
|
&QAction::triggered,
|
2013-01-23 12:31:22 +01:00
|
|
|
QmlDesignerPlugin::instance()->mainWidget(),
|
2017-01-17 15:33:18 +01:00
|
|
|
&Internal::DesignModeWidget::toggleRightSidebar);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-23 17:42:26 +01:00
|
|
|
connect(&m_switchTextFormAction,
|
|
|
|
|
&QAction::triggered,
|
|
|
|
|
QmlDesignerPlugin::instance()->mainWidget(),
|
|
|
|
|
&Internal::DesignModeWidget::switchTextOrForm);
|
|
|
|
|
|
2017-01-19 09:44:13 +01:00
|
|
|
connect(&m_collapseExpandStatesAction, &QAction::triggered, [] {
|
|
|
|
|
QmlDesignerPlugin::instance()->viewManager().toggleStatesViewExpanded();
|
|
|
|
|
});
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
// Revert to saved
|
2016-10-07 12:15:33 +02:00
|
|
|
Core::EditorManager *em = Core::EditorManager::instance();
|
2013-01-23 12:31:22 +01:00
|
|
|
Core::ActionManager::registerAction(&m_revertToSavedAction,Core::Constants::REVERTTOSAVED, qmlDesignerMainContext);
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_revertToSavedAction, &QAction::triggered, em, &Core::EditorManager::revertToSaved);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
//Save
|
|
|
|
|
Core::ActionManager::registerAction(&m_saveAction, Core::Constants::SAVE, qmlDesignerMainContext);
|
2016-10-07 12:15:33 +02:00
|
|
|
connect(&m_saveAction, &QAction::triggered, em, [em] {
|
2017-01-19 12:09:09 +01:00
|
|
|
QmlDesignerPlugin::instance()->viewManager().reformatFileUsingTextEditorView();
|
|
|
|
|
em->saveDocument();
|
2016-10-07 12:15:33 +02:00
|
|
|
});
|
|
|
|
|
|
2017-01-05 17:44:10 +01:00
|
|
|
Core::Command *command = nullptr;
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
//Save As
|
|
|
|
|
Core::ActionManager::registerAction(&m_saveAsAction, Core::Constants::SAVEAS, qmlDesignerMainContext);
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_saveAsAction, &QAction::triggered, em, &Core::EditorManager::saveDocumentAs);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-19 09:29:20 +01:00
|
|
|
//Export as Image
|
|
|
|
|
command = Core::ActionManager::registerAction(&m_exportAsImageAction, QmlDesigner::Constants::EXPORT_AS_IMAGE, qmlDesignerMainContext);
|
|
|
|
|
command->setAttribute(Core::Command::CA_Hide);
|
|
|
|
|
connect(&m_exportAsImageAction, &QAction::triggered, [] {
|
|
|
|
|
QmlDesignerPlugin::instance()->viewManager().exportAsImage();
|
|
|
|
|
});
|
|
|
|
|
fileMenu->addAction(command, Core::Constants::G_FILE_SAVE);
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
//Close Editor
|
|
|
|
|
Core::ActionManager::registerAction(&m_closeCurrentEditorAction, Core::Constants::CLOSE, qmlDesignerMainContext);
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_closeCurrentEditorAction, &QAction::triggered, em, &Core::EditorManager::slotCloseCurrentEditorOrDocument);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-05 17:44:10 +01:00
|
|
|
DesignerActionManager &designerActionManager = QmlDesignerPlugin::instance()->viewManager().designerActionManager();
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
//Close All
|
|
|
|
|
Core::ActionManager::registerAction(&m_closeAllEditorsAction, Core::Constants::CLOSEALL, qmlDesignerMainContext);
|
2017-01-17 15:33:18 +01:00
|
|
|
connect(&m_closeAllEditorsAction, &QAction::triggered, em, &Core::EditorManager::closeAllEditors);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
//Close All Others Action
|
|
|
|
|
Core::ActionManager::registerAction(&m_closeOtherEditorsAction, Core::Constants::CLOSEOTHERS, qmlDesignerMainContext);
|
2017-09-07 17:05:47 +02:00
|
|
|
connect(&m_closeOtherEditorsAction, &QAction::triggered, em, [] {
|
2017-01-17 15:33:18 +01:00
|
|
|
Core::EditorManager::closeOtherDocuments();
|
|
|
|
|
});
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
// Undo / Redo
|
2017-01-05 17:44:10 +01:00
|
|
|
command = Core::ActionManager::registerAction(&m_undoAction, Core::Constants::UNDO, qmlDesignerMainContext);
|
|
|
|
|
designerActionManager.addCreatorCommand(command, ComponentCoreConstants::editCategory, 310, Utils::Icons::UNDO_TOOLBAR.icon());
|
|
|
|
|
command = Core::ActionManager::registerAction(&m_redoAction, Core::Constants::REDO, qmlDesignerMainContext);
|
|
|
|
|
designerActionManager.addCreatorCommand(command, ComponentCoreConstants::editCategory, 300, Utils::Icons::REDO_TOOLBAR.icon());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
//Edit Menu
|
|
|
|
|
|
2017-01-05 17:44:10 +01:00
|
|
|
m_deleteAction.setIcon(QIcon::fromTheme(QLatin1String("edit-cut"), Utils::Icons::EDIT_CLEAR_TOOLBAR.icon()));
|
|
|
|
|
|
2017-03-09 15:11:03 +01:00
|
|
|
command = Core::ActionManager::registerAction(&m_deleteAction, QmlDesigner::Constants::C_DELETE, qmlDesignerMainContext);
|
2013-01-23 12:31:22 +01:00
|
|
|
command->setDefaultKeySequence(QKeySequence::Delete);
|
|
|
|
|
command->setAttribute(Core::Command::CA_Hide); // don't show delete in other modes
|
2014-04-09 13:27:47 +02:00
|
|
|
if (!Utils::HostOsInfo::isMacHost())
|
|
|
|
|
editMenu->addAction(command, Core::Constants::G_EDIT_COPYPASTE);
|
2017-01-05 17:44:10 +01:00
|
|
|
designerActionManager.addCreatorCommand(command, ComponentCoreConstants::editCategory, 280);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-08-04 14:19:07 +02:00
|
|
|
Core::ActionManager::registerAction(&m_cutAction, Core::Constants::CUT, qmlDesignerFormEditorContext);
|
2013-01-23 12:31:22 +01:00
|
|
|
command = Core::ActionManager::registerAction(&m_cutAction, Core::Constants::CUT, qmlDesignerNavigatorContext);
|
|
|
|
|
command->setDefaultKeySequence(QKeySequence::Cut);
|
|
|
|
|
editMenu->addAction(command, Core::Constants::G_EDIT_COPYPASTE);
|
2017-01-05 17:44:10 +01:00
|
|
|
designerActionManager.addCreatorCommand(command, ComponentCoreConstants::editCategory, 260, Utils::Icons::CUT_TOOLBAR.icon());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-08-04 14:19:07 +02:00
|
|
|
Core::ActionManager::registerAction(&m_copyAction, Core::Constants::COPY, qmlDesignerFormEditorContext);
|
2013-01-23 12:31:22 +01:00
|
|
|
command = Core::ActionManager::registerAction(&m_copyAction, Core::Constants::COPY, qmlDesignerNavigatorContext);
|
|
|
|
|
command->setDefaultKeySequence(QKeySequence::Copy);
|
|
|
|
|
editMenu->addAction(command, Core::Constants::G_EDIT_COPYPASTE);
|
2017-01-05 17:44:10 +01:00
|
|
|
designerActionManager.addCreatorCommand(command, ComponentCoreConstants::editCategory, 250, Utils::Icons::COPY_TOOLBAR.icon());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-08-04 14:19:07 +02:00
|
|
|
Core::ActionManager::registerAction(&m_pasteAction, Core::Constants::PASTE, qmlDesignerFormEditorContext);
|
2013-01-23 12:31:22 +01:00
|
|
|
command = Core::ActionManager::registerAction(&m_pasteAction, Core::Constants::PASTE, qmlDesignerNavigatorContext);
|
|
|
|
|
command->setDefaultKeySequence(QKeySequence::Paste);
|
|
|
|
|
editMenu->addAction(command, Core::Constants::G_EDIT_COPYPASTE);
|
2017-01-05 17:44:10 +01:00
|
|
|
designerActionManager.addCreatorCommand(command, ComponentCoreConstants::editCategory, 240, Utils::Icons::PASTE_TOOLBAR.icon());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-08-04 14:19:07 +02:00
|
|
|
Core::ActionManager::registerAction(&m_selectAllAction, Core::Constants::SELECTALL, qmlDesignerFormEditorContext);
|
2013-01-23 12:31:22 +01:00
|
|
|
command = Core::ActionManager::registerAction(&m_selectAllAction, Core::Constants::SELECTALL, qmlDesignerNavigatorContext);
|
|
|
|
|
|
|
|
|
|
command->setDefaultKeySequence(QKeySequence::SelectAll);
|
|
|
|
|
editMenu->addAction(command, Core::Constants::G_EDIT_SELECTALL);
|
|
|
|
|
|
|
|
|
|
Core::ActionContainer *viewsMenu = Core::ActionManager::actionContainer(Core::Constants::M_WINDOW_VIEWS);
|
|
|
|
|
|
2017-03-23 12:18:53 +01:00
|
|
|
Core::ActionManager::registerAction(&m_toggleLeftSidebarAction, Core::Constants::TOGGLE_LEFT_SIDEBAR, qmlDesignerMainContext);
|
|
|
|
|
Core::ActionManager::registerAction(&m_toggleRightSidebarAction, Core::Constants::TOGGLE_RIGHT_SIDEBAR, qmlDesignerMainContext);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2017-01-19 09:44:13 +01:00
|
|
|
command = Core::ActionManager::registerAction(&m_collapseExpandStatesAction, Constants::TOGGLE_STATES_EDITOR, qmlDesignerMainContext);
|
|
|
|
|
command->setAttribute(Core::Command::CA_Hide);
|
2017-05-19 14:33:54 +02:00
|
|
|
command->setDefaultKeySequence(QKeySequence("Ctrl+Alt+s"));
|
2017-01-19 09:44:13 +01:00
|
|
|
viewsMenu->addAction(command);
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
command = Core::ActionManager::registerAction(&m_restoreDefaultViewAction, Constants::RESTORE_DEFAULT_VIEW, qmlDesignerMainContext);
|
|
|
|
|
command->setAttribute(Core::Command::CA_Hide);
|
|
|
|
|
viewsMenu->addAction(command);
|
|
|
|
|
|
2017-01-23 17:42:26 +01:00
|
|
|
command = Core::ActionManager::registerAction(&m_switchTextFormAction, QmlDesigner::Constants::SWITCH_TEXT_DESIGN, qmlDesignerMainContext);
|
|
|
|
|
command->setDefaultKeySequence(QKeySequence(Qt::Key_F4));
|
|
|
|
|
|
2016-10-14 17:18:24 +02:00
|
|
|
/* Registering disabled action for Escape, because Qt Quick does not support shortcut overrides. */
|
|
|
|
|
command = Core::ActionManager::registerAction(&m_escapeAction, Core::Constants::S_RETURNTOEDITOR, qmlDesignerMainContext);
|
|
|
|
|
command->setDefaultKeySequence(QKeySequence(Qt::Key_Escape));
|
|
|
|
|
m_escapeAction.setEnabled(false);
|
|
|
|
|
|
2017-02-07 12:59:38 +01:00
|
|
|
connect(designerActionManager.view(), &DesignerActionManagerView::selectionChanged, this, [this](bool itemsSelected, bool rootItemIsSelected) {
|
|
|
|
|
m_deleteAction.setEnabled(itemsSelected && !rootItemIsSelected);
|
|
|
|
|
m_cutAction.setEnabled(itemsSelected && !rootItemIsSelected);
|
2017-01-05 17:44:10 +01:00
|
|
|
m_copyAction.setEnabled(itemsSelected);
|
|
|
|
|
});
|
|
|
|
|
|
2017-10-17 13:14:04 +02:00
|
|
|
connect(Core::ICore::instance(), &Core::ICore::contextChanged, this, [&designerActionManager, this](const Core::Context &context){
|
2017-03-09 15:11:03 +01:00
|
|
|
if (!context.contains(Constants::C_QMLFORMEDITOR) && !context.contains(Constants::C_QMLNAVIGATOR)) {
|
|
|
|
|
m_deleteAction.setEnabled(false);
|
|
|
|
|
m_cutAction.setEnabled(false);
|
|
|
|
|
m_copyAction.setEnabled(false);
|
|
|
|
|
m_pasteAction.setEnabled(false);
|
2017-10-17 13:14:04 +02:00
|
|
|
} else {
|
|
|
|
|
designerActionManager.view()->emitSelectionChanged();
|
|
|
|
|
|
2017-03-09 15:11:03 +01:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2017-01-05 17:44:10 +01:00
|
|
|
updateClipboard(&m_pasteAction);
|
|
|
|
|
connect(QApplication::clipboard(), &QClipboard::QClipboard::changed, this, [this]() {
|
|
|
|
|
updateClipboard(&m_pasteAction);
|
|
|
|
|
});
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
2013-02-04 18:49:56 +01:00
|
|
|
void ShortCutManager::updateActions(Core::IEditor* currentEditor)
|
2013-01-23 12:31:22 +01:00
|
|
|
{
|
2014-06-13 16:21:25 +02:00
|
|
|
int openedCount = Core::DocumentModel::entryCount();
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-05-21 20:21:52 +03:00
|
|
|
Core::IDocument *document = 0;
|
|
|
|
|
if (currentEditor)
|
|
|
|
|
document = currentEditor->document();
|
|
|
|
|
m_saveAction.setEnabled(document && document->isModified());
|
|
|
|
|
m_saveAsAction.setEnabled(document && document->isSaveAsAllowed());
|
|
|
|
|
m_revertToSavedAction.setEnabled(document
|
|
|
|
|
&& !document->filePath().isEmpty()
|
|
|
|
|
&& document->isModified());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
QString quotedName;
|
2014-09-11 11:05:45 +02:00
|
|
|
if (currentEditor && document)
|
2014-05-21 20:21:52 +03:00
|
|
|
quotedName = '"' + document->displayName() + '"';
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
m_saveAsAction.setText(tr("Save %1 As...").arg(quotedName));
|
|
|
|
|
m_saveAction.setText(tr("&Save %1").arg(quotedName));
|
|
|
|
|
m_revertToSavedAction.setText(tr("Revert %1 to Saved").arg(quotedName));
|
|
|
|
|
|
|
|
|
|
m_closeCurrentEditorAction.setEnabled(currentEditor != 0);
|
|
|
|
|
m_closeCurrentEditorAction.setText(tr("Close %1").arg(quotedName));
|
|
|
|
|
m_closeAllEditorsAction.setEnabled(openedCount > 0);
|
|
|
|
|
m_closeOtherEditorsAction.setEnabled(openedCount > 1);
|
|
|
|
|
m_closeOtherEditorsAction.setText((openedCount > 1 ? tr("Close All Except %1").arg(quotedName) : tr("Close Others")));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::undo()
|
|
|
|
|
{
|
|
|
|
|
if (currentDesignDocument())
|
|
|
|
|
currentDesignDocument()->undo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::redo()
|
|
|
|
|
{
|
|
|
|
|
if (currentDesignDocument())
|
|
|
|
|
currentDesignDocument()->redo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::deleteSelected()
|
|
|
|
|
{
|
|
|
|
|
if (currentDesignDocument())
|
|
|
|
|
currentDesignDocument()->deleteSelected();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::cutSelected()
|
|
|
|
|
{
|
|
|
|
|
if (currentDesignDocument())
|
|
|
|
|
currentDesignDocument()->cutSelected();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::copySelected()
|
|
|
|
|
{
|
|
|
|
|
if (currentDesignDocument())
|
|
|
|
|
currentDesignDocument()->copySelected();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::paste()
|
|
|
|
|
{
|
|
|
|
|
if (currentDesignDocument())
|
|
|
|
|
currentDesignDocument()->paste();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::selectAll()
|
|
|
|
|
{
|
|
|
|
|
if (currentDesignDocument())
|
|
|
|
|
currentDesignDocument()->selectAll();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::toggleLeftSidebar()
|
|
|
|
|
{
|
|
|
|
|
QmlDesignerPlugin::instance()->mainWidget()->toggleLeftSidebar();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::toggleRightSidebar()
|
|
|
|
|
{
|
|
|
|
|
QmlDesignerPlugin::instance()->mainWidget()->toggleRightSidebar();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::connectUndoActions(DesignDocument *designDocument)
|
|
|
|
|
{
|
|
|
|
|
if (designDocument) {
|
2017-03-19 00:19:33 +02:00
|
|
|
connect(designDocument, &DesignDocument::undoAvailable, this, &ShortCutManager::undoAvailable);
|
|
|
|
|
connect(designDocument, &DesignDocument::redoAvailable, this, &ShortCutManager::redoAvailable);
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::disconnectUndoActions(DesignDocument *designDocument)
|
|
|
|
|
{
|
|
|
|
|
if (currentDesignDocument()) {
|
2017-03-19 00:19:33 +02:00
|
|
|
disconnect(designDocument, &DesignDocument::undoAvailable, this, &ShortCutManager::undoAvailable);
|
|
|
|
|
disconnect(designDocument, &DesignDocument::redoAvailable, this, &ShortCutManager::redoAvailable);
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::updateUndoActions(DesignDocument *designDocument)
|
|
|
|
|
{
|
|
|
|
|
if (designDocument) {
|
|
|
|
|
m_undoAction.setEnabled(designDocument->isUndoAvailable());
|
|
|
|
|
m_redoAction.setEnabled(designDocument->isRedoAvailable());
|
|
|
|
|
} else {
|
|
|
|
|
m_undoAction.setEnabled(false);
|
|
|
|
|
m_redoAction.setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DesignDocument *ShortCutManager::currentDesignDocument() const
|
|
|
|
|
{
|
|
|
|
|
return QmlDesignerPlugin::instance()->currentDesignDocument();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::undoAvailable(bool isAvailable)
|
|
|
|
|
{
|
|
|
|
|
DesignDocument *documentController = qobject_cast<DesignDocument*>(sender());
|
|
|
|
|
if (currentDesignDocument() &&
|
|
|
|
|
currentDesignDocument() == documentController) {
|
|
|
|
|
m_undoAction.setEnabled(isAvailable);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::redoAvailable(bool isAvailable)
|
|
|
|
|
{
|
|
|
|
|
DesignDocument *documentController = qobject_cast<DesignDocument*>(sender());
|
|
|
|
|
if (currentDesignDocument() &&
|
|
|
|
|
currentDesignDocument() == documentController) {
|
|
|
|
|
m_redoAction.setEnabled(isAvailable);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShortCutManager::goIntoComponent()
|
|
|
|
|
{
|
2013-08-05 16:07:31 +02:00
|
|
|
if (currentDesignDocument()
|
|
|
|
|
&& currentDesignDocument()->currentModel()
|
|
|
|
|
&& currentDesignDocument()->rewriterView()
|
|
|
|
|
&& currentDesignDocument()->rewriterView()->hasSingleSelectedModelNode()) {
|
|
|
|
|
DocumentManager::goIntoComponent(currentDesignDocument()->rewriterView()->singleSelectedModelNode());
|
|
|
|
|
}
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace QmlDesigner
|