2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
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
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
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"
|
|
|
|
|
#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>
|
2011-09-05 16:10:37 +02:00
|
|
|
#include <coreplugin/id.h>
|
2009-01-19 12:39:20 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
#include <texteditor/itexteditor.h>
|
|
|
|
|
#include <texteditor/texteditorconstants.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QtPlugin>
|
|
|
|
|
#include <QDebug>
|
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
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
using namespace Bookmarks::Constants;
|
|
|
|
|
using namespace Bookmarks::Internal;
|
2008-12-05 16:39:33 +01:00
|
|
|
using namespace TextEditor;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
BookmarksPlugin *BookmarksPlugin::m_instance = 0;
|
|
|
|
|
|
2008-12-02 14:09:21 +01:00
|
|
|
BookmarksPlugin::BookmarksPlugin()
|
2010-06-02 15:02:05 +02:00
|
|
|
: m_bookmarkManager(0),
|
|
|
|
|
m_bookmarkMarginActionLineNumber(0)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
m_instance = this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BookmarksPlugin::extensionsInitialized()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BookmarksPlugin::initialize(const QStringList & /*arguments*/, QString *)
|
|
|
|
|
{
|
2010-06-25 17:37:59 +02:00
|
|
|
Core::Context textcontext(TextEditor::Constants::C_TEXTEDITOR);
|
2010-06-28 14:30:03 +02:00
|
|
|
Core::Context globalcontext(Core::Constants::C_GLOBAL);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-05-24 13:49:06 +02:00
|
|
|
Core::ActionContainer *mtools = Core::ActionManager::actionContainer(Core::Constants::M_TOOLS);
|
|
|
|
|
Core::ActionContainer *mbm = Core::ActionManager::createMenu(Core::Id(BOOKMARKS_MENU));
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->menu()->setTitle(tr("&Bookmarks"));
|
|
|
|
|
mtools->addMenu(mbm);
|
|
|
|
|
|
|
|
|
|
//Toggle
|
|
|
|
|
m_toggleAction = new QAction(tr("Toggle Bookmark"), this);
|
2009-01-14 13:17:53 +01:00
|
|
|
Core::Command *cmd =
|
2012-05-24 13:49:06 +02:00
|
|
|
Core::ActionManager::registerAction(m_toggleAction, BOOKMARKS_TOGGLE_ACTION, textcontext);
|
2012-05-23 13:25:51 +02:00
|
|
|
cmd->setDefaultKeySequence(QKeySequence(Core::UseMacShortcuts ? tr("Meta+M") : tr("Ctrl+M")));
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->addAction(cmd);
|
|
|
|
|
|
2012-06-05 14:22:20 +02:00
|
|
|
mbm->addSeparator(textcontext);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
//Previous
|
|
|
|
|
m_prevAction = new QAction(tr("Previous Bookmark"), this);
|
2012-05-24 13:49:06 +02:00
|
|
|
cmd = Core::ActionManager::registerAction(m_prevAction, BOOKMARKS_PREV_ACTION, globalcontext);
|
2012-05-23 13:25:51 +02:00
|
|
|
cmd->setDefaultKeySequence(QKeySequence(Core::UseMacShortcuts ? tr("Meta+,") : tr("Ctrl+,")));
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->addAction(cmd);
|
|
|
|
|
|
|
|
|
|
//Next
|
|
|
|
|
m_nextAction = new QAction(tr("Next Bookmark"), this);
|
2012-05-24 13:49:06 +02:00
|
|
|
cmd = Core::ActionManager::registerAction(m_nextAction, BOOKMARKS_NEXT_ACTION, globalcontext);
|
2012-05-23 13:25:51 +02:00
|
|
|
cmd->setDefaultKeySequence(QKeySequence(Core::UseMacShortcuts ? tr("Meta+.") : tr("Ctrl+.")));
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->addAction(cmd);
|
|
|
|
|
|
2012-06-05 14:22:20 +02:00
|
|
|
mbm->addSeparator(globalcontext);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
//Previous Doc
|
2010-05-14 15:45:43 +02:00
|
|
|
m_docPrevAction = new QAction(tr("Previous Bookmark in Document"), this);
|
2012-05-24 13:49:06 +02:00
|
|
|
cmd = Core::ActionManager::registerAction(m_docPrevAction, BOOKMARKS_PREVDOC_ACTION, globalcontext);
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->addAction(cmd);
|
|
|
|
|
|
|
|
|
|
//Next Doc
|
2010-05-14 15:45:43 +02:00
|
|
|
m_docNextAction = new QAction(tr("Next Bookmark in Document"), this);
|
2012-05-24 13:49:06 +02:00
|
|
|
cmd = Core::ActionManager::registerAction(m_docNextAction, BOOKMARKS_NEXTDOC_ACTION, globalcontext);
|
2008-12-02 12:01:29 +01:00
|
|
|
mbm->addAction(cmd);
|
|
|
|
|
|
2012-09-20 11:27:22 +04:00
|
|
|
m_editNoteAction = new QAction(tr("Edit Bookmark Note"), this);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
m_bookmarkManager = new BookmarkManager;
|
|
|
|
|
|
|
|
|
|
connect(m_toggleAction, SIGNAL(triggered()), m_bookmarkManager, SLOT(toggleBookmark()));
|
|
|
|
|
connect(m_prevAction, SIGNAL(triggered()), m_bookmarkManager, SLOT(prev()));
|
|
|
|
|
connect(m_nextAction, SIGNAL(triggered()), m_bookmarkManager, SLOT(next()));
|
|
|
|
|
connect(m_docPrevAction, SIGNAL(triggered()), m_bookmarkManager, SLOT(prevInDocument()));
|
|
|
|
|
connect(m_docNextAction, SIGNAL(triggered()), m_bookmarkManager, SLOT(nextInDocument()));
|
2012-09-20 11:27:22 +04:00
|
|
|
connect(m_editNoteAction, SIGNAL(triggered()), this, SLOT(bookmarkEditNoteActionTriggered()));
|
2008-12-02 12:01:29 +01:00
|
|
|
connect(m_bookmarkManager, SIGNAL(updateActions(int)), this, SLOT(updateActions(int)));
|
|
|
|
|
updateActions(m_bookmarkManager->state());
|
|
|
|
|
addAutoReleasedObject(new BookmarkViewFactory(m_bookmarkManager));
|
|
|
|
|
|
2008-12-05 16:39:33 +01:00
|
|
|
m_bookmarkMarginAction = new QAction(this);
|
2009-04-17 21:11:52 +02:00
|
|
|
m_bookmarkMarginAction->setText(tr("Toggle Bookmark"));
|
2008-12-05 16:39:33 +01:00
|
|
|
connect(m_bookmarkMarginAction, SIGNAL(triggered()),
|
|
|
|
|
this, SLOT(bookmarkMarginActionTriggered()));
|
|
|
|
|
|
|
|
|
|
// EditorManager
|
2013-08-29 17:17:24 +02:00
|
|
|
connect(Core::EditorManager::instance(), SIGNAL(editorAboutToClose(Core::IEditor*)),
|
2008-12-05 16:39:33 +01:00
|
|
|
this, SLOT(editorAboutToClose(Core::IEditor*)));
|
2013-08-29 17:17:24 +02:00
|
|
|
connect(Core::EditorManager::instance(), SIGNAL(editorOpened(Core::IEditor*)),
|
2008-12-05 16:39:33 +01:00
|
|
|
this, SLOT(editorOpened(Core::IEditor*)));
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BookmarksPlugin::~BookmarksPlugin()
|
|
|
|
|
{
|
|
|
|
|
delete m_bookmarkManager;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BookmarksPlugin::updateActions(int state)
|
|
|
|
|
{
|
|
|
|
|
const bool hasbm = state >= BookmarkManager::HasBookMarks;
|
|
|
|
|
const bool hasdocbm = state == BookmarkManager::HasBookmarksInDocument;
|
|
|
|
|
|
|
|
|
|
m_toggleAction->setEnabled(true);
|
|
|
|
|
m_prevAction->setEnabled(hasbm);
|
|
|
|
|
m_nextAction->setEnabled(hasbm);
|
|
|
|
|
m_docPrevAction->setEnabled(hasdocbm);
|
|
|
|
|
m_docNextAction->setEnabled(hasdocbm);
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-05 16:39:33 +01:00
|
|
|
void BookmarksPlugin::editorOpened(Core::IEditor *editor)
|
|
|
|
|
{
|
2008-12-10 13:58:02 +01:00
|
|
|
if (qobject_cast<ITextEditor *>(editor)) {
|
|
|
|
|
connect(editor, SIGNAL(markContextMenuRequested(TextEditor::ITextEditor*,int,QMenu*)),
|
|
|
|
|
this, SLOT(requestContextMenu(TextEditor::ITextEditor*,int,QMenu*)));
|
2011-11-29 13:51:00 +01:00
|
|
|
|
|
|
|
|
connect(editor,
|
|
|
|
|
SIGNAL(markRequested(TextEditor::ITextEditor*,int,
|
|
|
|
|
TextEditor::ITextEditor::MarkRequestKind)),
|
|
|
|
|
m_bookmarkManager,
|
|
|
|
|
SLOT(handleBookmarkRequest(TextEditor::ITextEditor*,int,
|
|
|
|
|
TextEditor::ITextEditor::MarkRequestKind)));
|
2012-09-20 11:27:22 +04:00
|
|
|
connect(editor,
|
|
|
|
|
SIGNAL(markTooltipRequested(TextEditor::ITextEditor*,QPoint,int)),
|
|
|
|
|
m_bookmarkManager,
|
|
|
|
|
SLOT(handleBookmarkTooltipRequest(TextEditor::ITextEditor*,QPoint,int)));
|
2008-12-10 13:58:02 +01:00
|
|
|
}
|
2008-12-05 16:39:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BookmarksPlugin::editorAboutToClose(Core::IEditor *editor)
|
|
|
|
|
{
|
2008-12-10 13:58:02 +01:00
|
|
|
if (qobject_cast<ITextEditor *>(editor)) {
|
|
|
|
|
disconnect(editor, SIGNAL(markContextMenuRequested(TextEditor::ITextEditor*,int,QMenu*)),
|
|
|
|
|
this, SLOT(requestContextMenu(TextEditor::ITextEditor*,int,QMenu*)));
|
|
|
|
|
}
|
2008-12-05 16:39:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BookmarksPlugin::requestContextMenu(TextEditor::ITextEditor *editor,
|
|
|
|
|
int lineNumber, QMenu *menu)
|
|
|
|
|
{
|
|
|
|
|
m_bookmarkMarginActionLineNumber = lineNumber;
|
2013-07-04 13:30:26 +02:00
|
|
|
m_bookmarkMarginActionFileName = editor->document()->filePath();
|
2012-09-20 11:27:22 +04:00
|
|
|
|
2008-12-05 16:39:33 +01:00
|
|
|
menu->addAction(m_bookmarkMarginAction);
|
2012-09-20 11:27:22 +04:00
|
|
|
if (m_bookmarkManager->hasBookmarkInPosition(m_bookmarkMarginActionFileName, m_bookmarkMarginActionLineNumber))
|
|
|
|
|
menu->addAction(m_editNoteAction);
|
2008-12-05 16:39:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BookmarksPlugin::bookmarkMarginActionTriggered()
|
|
|
|
|
{
|
2012-09-20 11:27:22 +04:00
|
|
|
m_bookmarkManager->toggleBookmark(m_bookmarkMarginActionFileName,
|
|
|
|
|
m_bookmarkMarginActionLineNumber);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BookmarksPlugin::bookmarkEditNoteActionTriggered()
|
|
|
|
|
{
|
|
|
|
|
m_bookmarkManager->editNote(m_bookmarkMarginActionFileName, m_bookmarkMarginActionLineNumber);
|
2008-12-05 16:39:33 +01:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
Q_EXPORT_PLUGIN(BookmarksPlugin)
|