2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** 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.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "bookmarksplugin.h"
|
2018-01-10 15:32:21 +01:00
|
|
|
|
|
|
|
|
#include "bookmarkfilter.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "bookmarkmanager.h"
|
|
|
|
|
#include "bookmarks_global.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2008-12-05 16:39:33 +01:00
|
|
|
#include <coreplugin/editormanager/ieditor.h>
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <coreplugin/coreconstants.h>
|
2009-01-13 13:39:31 +01:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
2010-03-18 10:59:06 +01:00
|
|
|
#include <coreplugin/actionmanager/actioncontainer.h>
|
|
|
|
|
#include <coreplugin/actionmanager/command.h>
|
2018-02-02 12:17:58 +01:00
|
|
|
|
2014-09-26 09:14:03 +02:00
|
|
|
#include <texteditor/texteditor.h>
|
2015-02-26 13:22:35 +01:00
|
|
|
#include <texteditor/textdocument.h>
|
2009-01-19 12:39:20 +01:00
|
|
|
#include <texteditor/texteditorconstants.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
#include <utils/fileutils.h>
|
2008-12-05 16:39:33 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QMenu>
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2014-10-15 12:25:29 +02:00
|
|
|
using namespace Core;
|
2008-12-05 16:39:33 +01:00
|
|
|
using namespace TextEditor;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
using namespace Bookmarks::Constants;
|
|
|
|
|
|
2014-10-15 12:25:29 +02:00
|
|
|
namespace Bookmarks {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
class BookmarksPluginRunData : public QObject
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2018-02-02 12:17:58 +01:00
|
|
|
public:
|
|
|
|
|
BookmarksPluginRunData();
|
|
|
|
|
|
|
|
|
|
void updateActions(bool enableToggle, int stateMask);
|
|
|
|
|
void editorOpened(Core::IEditor *editor);
|
|
|
|
|
void editorAboutToClose(Core::IEditor *editor);
|
|
|
|
|
|
|
|
|
|
void requestContextMenu(TextEditor::TextEditorWidget *widget,
|
|
|
|
|
int lineNumber, QMenu *menu);
|
|
|
|
|
|
|
|
|
|
BookmarkManager m_bookmarkManager;
|
|
|
|
|
BookmarkFilter m_bookmarkFilter;
|
|
|
|
|
BookmarkViewFactory m_bookmarkViewFactory;
|
|
|
|
|
|
|
|
|
|
QAction m_toggleAction{BookmarksPlugin::tr("Toggle Bookmark"), nullptr};
|
|
|
|
|
QAction m_prevAction{BookmarksPlugin::tr("Previous Bookmark"), nullptr};
|
|
|
|
|
QAction m_nextAction{BookmarksPlugin::tr("Next Bookmark"), nullptr};
|
|
|
|
|
QAction m_docPrevAction{BookmarksPlugin::tr("Previous Bookmark in Document"), nullptr};
|
|
|
|
|
QAction m_docNextAction{BookmarksPlugin::tr("Next Bookmark in Document"), nullptr};
|
|
|
|
|
QAction m_editBookmarkAction{BookmarksPlugin::tr("Edit Bookmark"), nullptr};
|
|
|
|
|
QAction m_bookmarkMarginAction{BookmarksPlugin::tr("Toggle Bookmark"), nullptr};
|
|
|
|
|
|
|
|
|
|
int m_marginActionLineNumber = 0;
|
|
|
|
|
Utils::FileName m_marginActionFileName;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
BookmarksPlugin::~BookmarksPlugin()
|
|
|
|
|
{
|
|
|
|
|
delete m_runData;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
bool BookmarksPlugin::initialize(const QStringList &, QString *)
|
|
|
|
|
{
|
|
|
|
|
m_runData = new BookmarksPluginRunData;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BookmarksPluginRunData::BookmarksPluginRunData()
|
|
|
|
|
: m_bookmarkFilter(&m_bookmarkManager)
|
|
|
|
|
, m_bookmarkViewFactory(&m_bookmarkManager)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2014-10-15 12:25:29 +02:00
|
|
|
ActionContainer *mtools = ActionManager::actionContainer(Core::Constants::M_TOOLS);
|
|
|
|
|
ActionContainer *mbm = ActionManager::createMenu(Id(BOOKMARKS_MENU));
|
2018-02-02 12:17:58 +01:00
|
|
|
mbm->menu()->setTitle(BookmarksPlugin::tr("&Bookmarks"));
|
2008-12-02 12:01:29 +01:00
|
|
|
mtools->addMenu(mbm);
|
|
|
|
|
|
2016-06-24 13:54:33 +02:00
|
|
|
const Context editorManagerContext(Core::Constants::C_EDITORMANAGER);
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
// Toggle
|
|
|
|
|
Command *cmd = ActionManager::registerAction(&m_toggleAction, BOOKMARKS_TOGGLE_ACTION,
|
|
|
|
|
editorManagerContext);
|
2018-02-02 13:39:18 +01:00
|
|
|
cmd->setDefaultKeySequence(QKeySequence(useMacShortcuts ? BookmarksPlugin::tr("Meta+M")
|
2018-02-02 12:17:58 +01:00
|
|
|
: BookmarksPlugin::tr("Ctrl+M")));
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->addAction(cmd);
|
|
|
|
|
|
2015-09-03 15:01:04 +02:00
|
|
|
mbm->addSeparator();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
// Previous
|
|
|
|
|
cmd = ActionManager::registerAction(&m_prevAction, BOOKMARKS_PREV_ACTION, editorManagerContext);
|
2018-02-02 13:39:18 +01:00
|
|
|
cmd->setDefaultKeySequence(QKeySequence(useMacShortcuts ? BookmarksPlugin::tr("Meta+,")
|
2018-02-02 12:17:58 +01:00
|
|
|
: BookmarksPlugin::tr("Ctrl+,")));
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->addAction(cmd);
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
// Next
|
|
|
|
|
cmd = ActionManager::registerAction(&m_nextAction, BOOKMARKS_NEXT_ACTION, editorManagerContext);
|
2018-02-02 13:39:18 +01:00
|
|
|
cmd->setDefaultKeySequence(QKeySequence(useMacShortcuts ? BookmarksPlugin::tr("Meta+.")
|
2018-02-02 12:17:58 +01:00
|
|
|
: BookmarksPlugin::tr("Ctrl+.")));
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->addAction(cmd);
|
|
|
|
|
|
2015-02-19 11:35:47 +01:00
|
|
|
mbm->addSeparator();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
// Previous Doc
|
|
|
|
|
cmd = ActionManager::registerAction(&m_docPrevAction, BOOKMARKS_PREVDOC_ACTION,
|
|
|
|
|
editorManagerContext);
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->addAction(cmd);
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
// Next Doc
|
|
|
|
|
cmd = ActionManager::registerAction(&m_docNextAction, BOOKMARKS_NEXTDOC_ACTION,
|
|
|
|
|
editorManagerContext);
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->addAction(cmd);
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
connect(&m_toggleAction, &QAction::triggered, [this] {
|
2015-09-03 15:01:04 +02:00
|
|
|
BaseTextEditor *editor = BaseTextEditor::currentTextEditor();
|
|
|
|
|
if (editor && !editor->document()->isTemporary())
|
2018-02-02 12:17:58 +01:00
|
|
|
m_bookmarkManager.toggleBookmark(editor->document()->filePath(), editor->currentLine());
|
2014-10-15 12:25:29 +02:00
|
|
|
});
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
connect(&m_prevAction, &QAction::triggered, &m_bookmarkManager, &BookmarkManager::prev);
|
|
|
|
|
connect(&m_nextAction, &QAction::triggered, &m_bookmarkManager, &BookmarkManager::next);
|
|
|
|
|
connect(&m_docPrevAction, &QAction::triggered,
|
|
|
|
|
&m_bookmarkManager, &BookmarkManager::prevInDocument);
|
|
|
|
|
connect(&m_docNextAction, &QAction::triggered,
|
|
|
|
|
&m_bookmarkManager, &BookmarkManager::nextInDocument);
|
2014-10-15 12:25:29 +02:00
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
connect(&m_editBookmarkAction, &QAction::triggered, [this] {
|
|
|
|
|
m_bookmarkManager.editByFileAndLine(m_marginActionFileName, m_marginActionLineNumber);
|
2014-10-15 12:25:29 +02:00
|
|
|
});
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
connect(&m_bookmarkManager, &BookmarkManager::updateActions,
|
|
|
|
|
this, &BookmarksPluginRunData::updateActions);
|
|
|
|
|
updateActions(false, m_bookmarkManager.state());
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
connect(&m_bookmarkMarginAction, &QAction::triggered, [this] {
|
|
|
|
|
m_bookmarkManager.toggleBookmark(m_marginActionFileName, m_marginActionLineNumber);
|
2014-10-15 12:25:29 +02:00
|
|
|
});
|
2008-12-05 16:39:33 +01:00
|
|
|
|
|
|
|
|
// EditorManager
|
2014-10-15 12:25:29 +02:00
|
|
|
connect(EditorManager::instance(), &EditorManager::editorAboutToClose,
|
2018-02-02 12:17:58 +01:00
|
|
|
this, &BookmarksPluginRunData::editorAboutToClose);
|
2014-10-15 12:25:29 +02:00
|
|
|
connect(EditorManager::instance(), &EditorManager::editorOpened,
|
2018-02-02 12:17:58 +01:00
|
|
|
this, &BookmarksPluginRunData::editorOpened);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
void BookmarksPluginRunData::updateActions(bool enableToggle, int state)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
const bool hasbm = state >= BookmarkManager::HasBookMarks;
|
|
|
|
|
const bool hasdocbm = state == BookmarkManager::HasBookmarksInDocument;
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
m_toggleAction.setEnabled(enableToggle);
|
|
|
|
|
m_prevAction.setEnabled(hasbm);
|
|
|
|
|
m_nextAction.setEnabled(hasbm);
|
|
|
|
|
m_docPrevAction.setEnabled(hasdocbm);
|
|
|
|
|
m_docNextAction.setEnabled(hasdocbm);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
void BookmarksPluginRunData::editorOpened(IEditor *editor)
|
2008-12-05 16:39:33 +01:00
|
|
|
{
|
2014-09-30 16:54:26 +02:00
|
|
|
if (auto widget = qobject_cast<TextEditorWidget *>(editor->widget())) {
|
2018-02-02 12:17:58 +01:00
|
|
|
connect(widget, &TextEditorWidget::markRequested,
|
|
|
|
|
this, [this, editor](TextEditorWidget *, int line, TextMarkRequestKind kind) {
|
2015-09-03 15:01:04 +02:00
|
|
|
if (kind == BookmarkRequest && !editor->document()->isTemporary())
|
2018-02-02 12:17:58 +01:00
|
|
|
m_bookmarkManager.toggleBookmark(editor->document()->filePath(), line);
|
2014-10-17 10:21:57 +02:00
|
|
|
});
|
|
|
|
|
|
2014-09-30 16:54:26 +02:00
|
|
|
connect(widget, &TextEditorWidget::markContextMenuRequested,
|
2018-02-02 12:17:58 +01:00
|
|
|
this, &BookmarksPluginRunData::requestContextMenu);
|
2008-12-10 13:58:02 +01:00
|
|
|
}
|
2008-12-05 16:39:33 +01:00
|
|
|
}
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
void BookmarksPluginRunData::editorAboutToClose(IEditor *editor)
|
2008-12-05 16:39:33 +01:00
|
|
|
{
|
2014-09-30 16:54:26 +02:00
|
|
|
if (auto widget = qobject_cast<TextEditorWidget *>(editor->widget())) {
|
2015-09-16 16:05:16 +02:00
|
|
|
disconnect(widget, &TextEditorWidget::markContextMenuRequested,
|
2018-02-02 12:17:58 +01:00
|
|
|
this, &BookmarksPluginRunData::requestContextMenu);
|
2008-12-10 13:58:02 +01:00
|
|
|
}
|
2008-12-05 16:39:33 +01:00
|
|
|
}
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
void BookmarksPluginRunData::requestContextMenu(TextEditorWidget *widget,
|
2008-12-05 16:39:33 +01:00
|
|
|
int lineNumber, QMenu *menu)
|
|
|
|
|
{
|
2015-09-16 16:37:43 +02:00
|
|
|
if (widget->textDocument()->isTemporary())
|
2013-10-17 17:41:47 +02:00
|
|
|
return;
|
|
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
m_marginActionLineNumber = lineNumber;
|
|
|
|
|
m_marginActionFileName = widget->textDocument()->filePath();
|
2012-09-20 11:27:22 +04:00
|
|
|
|
2018-02-02 12:17:58 +01:00
|
|
|
menu->addAction(&m_bookmarkMarginAction);
|
|
|
|
|
if (m_bookmarkManager.hasBookmarkInPosition(m_marginActionFileName, m_marginActionLineNumber))
|
|
|
|
|
menu->addAction(&m_editBookmarkAction);
|
2008-12-05 16:39:33 +01:00
|
|
|
}
|
|
|
|
|
|
2014-10-15 12:25:29 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Bookmarks
|