// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "modemanager.h" #include "actionmanager/actionmanager.h" #include "actionmanager/command.h" #include "coreplugintr.h" #include "fancyactionbar.h" #include "fancytabwidget.h" #include "icore.h" #include "imode.h" #include #include #include #include #include #include #include #include using namespace Utils; namespace Core { /*! \class Core::ModeManager \inheaderfile coreplugin/modemanager.h \ingroup mainclasses \inmodule QtCreator \brief The ModeManager class manages the activation of modes and the actions in the mode selector's tool bar. Modes are implemented with the IMode class. Use the ModeManager to force activation of a mode, or to be notified when the active mode changed. The ModeManager also manages the actions that are visible in the mode selector's toolbar. Adding actions to the tool bar should be done very sparingly. */ /*! \enum ModeManager::Style \internal */ /*! \fn void ModeManager::currentModeAboutToChange(Utils::Id mode) Emitted before the current mode changes to \a mode. */ /*! \fn void ModeManager::currentModeChanged(Utils::Id mode, Utils::Id oldMode) Emitted after the current mode changed from \a oldMode to \a mode. */ struct ModeManagerPrivate { void showMenu(int index, QMouseEvent *event); void appendMode(IMode *mode); void enabledStateChanged(IMode *mode); void activateModeHelper(Id id); void extensionsInitializedHelper(); Internal::FancyTabWidget *m_modeStack; Internal::FancyActionBar *m_actionBar; QHash m_actions; QVector m_modes; QVector m_modeCommands; Context m_addedContexts; int m_oldCurrent; ModeManager::Style m_modeStyle = ModeManager::Style::IconsAndText; bool m_startingUp = true; Id m_pendingFirstActiveMode; // Valid before extentionsInitialized. }; static ModeManagerPrivate *d; static ModeManager *m_instance = nullptr; static int indexOf(Id id) { for (int i = 0; i < d->m_modes.count(); ++i) { if (d->m_modes.at(i)->id() == id) return i; } qDebug() << "Warning, no such mode:" << id.toString(); return -1; } void ModeManagerPrivate::showMenu(int index, QMouseEvent *event) { QTC_ASSERT(m_modes.at(index)->menu(), return); m_modes.at(index)->menu()->popup(event->globalPosition().toPoint()); } ModeManager::ModeManager(Internal::FancyTabWidget *modeStack) { m_instance = this; d = new ModeManagerPrivate(); d->m_modeStack = modeStack; d->m_oldCurrent = -1; d->m_actionBar = new Internal::FancyActionBar(modeStack); d->m_modeStack->addCornerWidget(d->m_actionBar); setModeStyle(d->m_modeStyle); connect(d->m_modeStack, &Internal::FancyTabWidget::currentAboutToShow, this, &ModeManager::currentTabAboutToChange); connect(d->m_modeStack, &Internal::FancyTabWidget::currentChanged, this, &ModeManager::currentTabChanged); connect(d->m_modeStack, &Internal::FancyTabWidget::menuTriggered, this, [](int index, QMouseEvent *e) { d->showMenu(index, e); }); } ModeManager::~ModeManager() { delete d; d = nullptr; m_instance = nullptr; } /*! Returns the id of the current mode. \sa activateMode() \sa currentMode() */ Id ModeManager::currentModeId() { int currentIndex = d->m_modeStack->currentIndex(); if (currentIndex < 0) return Id(); return d->m_modes.at(currentIndex)->id(); } static IMode *findMode(Id id) { const int index = indexOf(id); if (index >= 0) return d->m_modes.at(index); return nullptr; } /*! Makes the mode with ID \a id the current mode. \sa currentMode() \sa currentModeId() \sa currentModeAboutToChange() \sa currentModeChanged() */ void ModeManager::activateMode(Id id) { d->activateModeHelper(id); } void ModeManagerPrivate::activateModeHelper(Id id) { if (m_startingUp) { m_pendingFirstActiveMode = id; } else { const int currentIndex = m_modeStack->currentIndex(); const int newIndex = indexOf(id); if (newIndex != currentIndex && newIndex >= 0) m_modeStack->setCurrentIndex(newIndex); } } void ModeManager::extensionsInitialized() { d->extensionsInitializedHelper(); } void ModeManagerPrivate::extensionsInitializedHelper() { m_startingUp = false; Utils::sort(m_modes, &IMode::priority); std::reverse(m_modes.begin(), m_modes.end()); for (IMode *mode : std::as_const(m_modes)) appendMode(mode); if (m_pendingFirstActiveMode.isValid()) activateModeHelper(m_pendingFirstActiveMode); } void ModeManager::addMode(IMode *mode) { QTC_ASSERT(d->m_startingUp, return); d->m_modes.append(mode); } void ModeManagerPrivate::appendMode(IMode *mode) { const int index = m_modeCommands.count(); ICore::addContextObject(mode); m_modeStack->insertTab(index, mode->widget(), mode->icon(), mode->displayName(), mode->menu() != nullptr); m_modeStack->setTabEnabled(index, mode->isEnabled()); // Register mode shortcut const Id actionId = mode->id().withPrefix("QtCreator.Mode."); QAction *action = new QAction(Tr::tr("Switch to %1 mode").arg(mode->displayName()), m_instance); Command *cmd = ActionManager::registerAction(action, actionId); cmd->setDefaultKeySequence(QKeySequence(useMacShortcuts ? QString("Meta+%1").arg(index + 1) : QString("Ctrl+%1").arg(index + 1))); m_modeCommands.append(cmd); m_modeStack->setTabToolTip(index, cmd->action()->toolTip()); QObject::connect(cmd, &Command::keySequenceChanged, m_instance, [cmd, index, this] { m_modeStack->setTabToolTip(index, cmd->action()->toolTip()); }); Id id = mode->id(); QObject::connect(action, &QAction::triggered, m_instance, [this, id] { ModeManager::activateMode(id); ICore::raiseWindow(m_modeStack); }); QObject::connect(mode, &IMode::enabledStateChanged, m_instance, [this, mode] { enabledStateChanged(mode); }); } void ModeManager::removeMode(IMode *mode) { const int index = d->m_modes.indexOf(mode); if (index >= d->m_modes.size() - 1 && d->m_modes.size() > 1) d->m_modeStack->setCurrentIndex(d->m_modes.size() - 2); d->m_modes.remove(index); if (d->m_startingUp) return; d->m_modeCommands.remove(index); d->m_modeStack->removeTab(index); ICore::removeContextObject(mode); } void ModeManagerPrivate::enabledStateChanged(IMode *mode) { int index = d->m_modes.indexOf(mode); QTC_ASSERT(index >= 0, return); d->m_modeStack->setTabEnabled(index, mode->isEnabled()); // Make sure we leave any disabled mode to prevent possible crashes: if (mode->id() == ModeManager::currentModeId() && !mode->isEnabled()) { // This assumes that there is always at least one enabled mode. for (int i = 0; i < d->m_modes.count(); ++i) { if (d->m_modes.at(i) != mode && d->m_modes.at(i)->isEnabled()) { ModeManager::activateMode(d->m_modes.at(i)->id()); break; } } } } /*! Adds the \a action to the mode selector's tool bar. Actions are sorted by \a priority in descending order. Use this functionality very sparingly. */ void ModeManager::addAction(QAction *action, int priority) { d->m_actions.insert(action, priority); // Count the number of commands with a higher priority int index = 0; for (int p : std::as_const(d->m_actions)) { if (p > priority) ++index; } d->m_actionBar->insertAction(index, action); } /*! \internal */ void ModeManager::addProjectSelector(QAction *action) { d->m_actionBar->addProjectSelector(action); d->m_actions.insert(0, INT_MAX); } void ModeManager::currentTabAboutToChange(int index) { if (index >= 0) { IMode *mode = d->m_modes.at(index); if (mode) emit currentModeAboutToChange(mode->id()); } } void ModeManager::currentTabChanged(int index) { // Tab index changes to -1 when there is no tab left. if (index < 0) return; IMode *mode = d->m_modes.at(index); if (!mode) return; // FIXME: This hardcoded context update is required for the Debug and Edit modes, since // they use the editor widget, which is already a context widget so the main window won't // go further up the parent tree to find the mode context. ICore::updateAdditionalContexts(d->m_addedContexts, mode->context()); d->m_addedContexts = mode->context(); IMode *oldMode = nullptr; if (d->m_oldCurrent >= 0) oldMode = d->m_modes.at(d->m_oldCurrent); d->m_oldCurrent = index; emit currentModeChanged(mode->id(), oldMode ? oldMode->id() : Id()); emit currentMainWindowChanged(); } /*! \internal */ void ModeManager::setFocusToCurrentMode() { IMode *mode = findMode(currentModeId()); QTC_ASSERT(mode, return); QWidget *widget = mode->widget(); if (widget) { QWidget *focusWidget = widget->focusWidget(); if (!focusWidget) focusWidget = widget; focusWidget->setFocus(); } } /*! \internal */ void ModeManager::setModeStyle(ModeManager::Style style) { const bool visible = style != Style::Hidden; const bool iconsOnly = style == Style::IconsOnly; d->m_modeStyle = style; d->m_actionBar->setIconsOnly(iconsOnly); d->m_modeStack->setIconsOnly(iconsOnly); d->m_modeStack->setSelectionWidgetVisible(visible); } /*! \internal */ void ModeManager::cycleModeStyle() { auto nextStyle = Style((int(modeStyle()) + 1) % 3); setModeStyle(nextStyle); } /*! \internal */ ModeManager::Style ModeManager::modeStyle() { return d->m_modeStyle; } /*! Returns the pointer to the instance. Only use for connecting to signals. */ ModeManager *ModeManager::instance() { return m_instance; } /*! Returns a pointer to the current mode. \sa activateMode() \sa currentModeId() */ IMode *ModeManager::currentMode() { const int currentIndex = d->m_modeStack->currentIndex(); return currentIndex < 0 ? nullptr : d->m_modes.at(currentIndex); } } // namespace Core