forked from qt-creator/qt-creator
Bookmark: add locator filter for bookmarks
Change-Id: I9107356d52bbf6d1e77b30d7057b56efd670c724 Reviewed-by: André Hartmann <aha_1980@gmx.de> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
103
src/plugins/bookmarks/bookmarkfilter.cpp
Normal file
103
src/plugins/bookmarks/bookmarkfilter.cpp
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2018 The Qt Company Ltd.
|
||||||
|
** 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 "bookmarkfilter.h"
|
||||||
|
|
||||||
|
#include "bookmark.h"
|
||||||
|
#include "bookmarkmanager.h"
|
||||||
|
|
||||||
|
#include <utils/algorithm.h>
|
||||||
|
|
||||||
|
using namespace Bookmarks::Internal;
|
||||||
|
using namespace Core;
|
||||||
|
using namespace Utils;
|
||||||
|
|
||||||
|
BookmarkFilter::BookmarkFilter(BookmarkManager *manager)
|
||||||
|
: m_manager(manager)
|
||||||
|
{
|
||||||
|
setId("Bookmarks");
|
||||||
|
setDisplayName(tr("Bookmarks"));
|
||||||
|
setPriority(Medium);
|
||||||
|
setShortcutString("b");
|
||||||
|
}
|
||||||
|
|
||||||
|
QList<LocatorFilterEntry> BookmarkFilter::matchesFor(QFutureInterface<LocatorFilterEntry> &future,
|
||||||
|
const QString &entry)
|
||||||
|
{
|
||||||
|
Q_UNUSED(future);
|
||||||
|
if (m_manager->rowCount() == 0)
|
||||||
|
return QList<LocatorFilterEntry>();
|
||||||
|
|
||||||
|
const QModelIndexList matches = filteredUnique(
|
||||||
|
m_manager->match(m_manager->index(0, 0), BookmarkManager::Filename, entry, -1,
|
||||||
|
Qt::MatchContains | Qt::MatchWrap)
|
||||||
|
+ m_manager->match(m_manager->index(0, 0), BookmarkManager::Note, entry, -1,
|
||||||
|
Qt::MatchContains | Qt::MatchWrap));
|
||||||
|
QList<LocatorFilterEntry> entries;
|
||||||
|
for (const QModelIndex &idx : matches) {
|
||||||
|
const Bookmark *bookmark = m_manager->bookmarkForIndex(idx);
|
||||||
|
const QString filename = FileName::fromString(bookmark->fileName()).fileName();
|
||||||
|
LocatorFilterEntry filterEntry(this,
|
||||||
|
QString("%1:%2").arg(filename).arg(bookmark->lineNumber()),
|
||||||
|
QVariant::fromValue(idx));
|
||||||
|
if (!bookmark->note().isEmpty())
|
||||||
|
filterEntry.extraInfo = bookmark->note();
|
||||||
|
else if (!bookmark->lineText().isEmpty())
|
||||||
|
filterEntry.extraInfo = bookmark->lineText();
|
||||||
|
else
|
||||||
|
filterEntry.extraInfo = bookmark->fileName();
|
||||||
|
int highlightIndex = filterEntry.displayName.indexOf(entry, 0, Qt::CaseInsensitive);
|
||||||
|
if (highlightIndex >= 0) {
|
||||||
|
filterEntry.highlightInfo = {highlightIndex, entry.length()};
|
||||||
|
} else {
|
||||||
|
highlightIndex = filterEntry.extraInfo.indexOf(entry, 0, Qt::CaseInsensitive);
|
||||||
|
if (highlightIndex >= 0) {
|
||||||
|
filterEntry.highlightInfo = {highlightIndex, entry.length(),
|
||||||
|
LocatorFilterEntry::HighlightInfo::ExtraInfo};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
filterEntry.displayIcon = bookmark->icon();
|
||||||
|
entries.append(filterEntry);
|
||||||
|
}
|
||||||
|
return entries;
|
||||||
|
}
|
||||||
|
|
||||||
|
void BookmarkFilter::accept(LocatorFilterEntry selection, QString *newText,
|
||||||
|
int *selectionStart, int *selectionLength) const
|
||||||
|
{
|
||||||
|
Q_UNUSED(newText);
|
||||||
|
Q_UNUSED(selectionStart);
|
||||||
|
Q_UNUSED(selectionLength);
|
||||||
|
if (const Bookmark *bookmark = m_manager->bookmarkForIndex(
|
||||||
|
selection.internalData.toModelIndex())) {
|
||||||
|
m_manager->gotoBookmark(bookmark);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void BookmarkFilter::refresh(QFutureInterface<void> &future)
|
||||||
|
{
|
||||||
|
Q_UNUSED(future);
|
||||||
|
}
|
||||||
50
src/plugins/bookmarks/bookmarkfilter.h
Normal file
50
src/plugins/bookmarks/bookmarkfilter.h
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2018 The Qt Company Ltd.
|
||||||
|
** 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.
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <coreplugin/locator/ilocatorfilter.h>
|
||||||
|
|
||||||
|
namespace Bookmarks {
|
||||||
|
namespace Internal {
|
||||||
|
|
||||||
|
class BookmarkManager;
|
||||||
|
|
||||||
|
class BookmarkFilter : public Core::ILocatorFilter
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
explicit BookmarkFilter(BookmarkManager *manager);
|
||||||
|
QList<Core::LocatorFilterEntry> matchesFor(QFutureInterface<Core::LocatorFilterEntry> &future,
|
||||||
|
const QString &entry) override;
|
||||||
|
void accept(Core::LocatorFilterEntry selection, QString *newText,
|
||||||
|
int *selectionStart, int *selectionLength) const override;
|
||||||
|
void refresh(QFutureInterface<void> &future) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
BookmarkManager *m_manager = nullptr; // not owned
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Internal
|
||||||
|
} // namespace Bookmarks
|
||||||
@@ -1,10 +1,14 @@
|
|||||||
include(../../qtcreatorplugin.pri)
|
include(../../qtcreatorplugin.pri)
|
||||||
|
|
||||||
HEADERS += bookmarksplugin.h \
|
HEADERS += \
|
||||||
bookmark.h \
|
bookmark.h \
|
||||||
|
bookmarkfilter.h \
|
||||||
bookmarkmanager.h \
|
bookmarkmanager.h \
|
||||||
bookmarks_global.h
|
bookmarks_global.h \
|
||||||
|
bookmarksplugin.h
|
||||||
|
|
||||||
SOURCES += bookmarksplugin.cpp \
|
SOURCES += \
|
||||||
bookmark.cpp \
|
bookmark.cpp \
|
||||||
bookmarkmanager.cpp
|
bookmarkfilter.cpp \
|
||||||
|
bookmarkmanager.cpp \
|
||||||
|
bookmarksplugin.cpp
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ QtcPlugin {
|
|||||||
files: [
|
files: [
|
||||||
"bookmark.cpp",
|
"bookmark.cpp",
|
||||||
"bookmark.h",
|
"bookmark.h",
|
||||||
|
"bookmarkfilter.cpp",
|
||||||
|
"bookmarkfilter.h",
|
||||||
"bookmarkmanager.cpp",
|
"bookmarkmanager.cpp",
|
||||||
"bookmarkmanager.h",
|
"bookmarkmanager.h",
|
||||||
"bookmarks_global.h",
|
"bookmarks_global.h",
|
||||||
|
|||||||
@@ -24,6 +24,8 @@
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include "bookmarksplugin.h"
|
#include "bookmarksplugin.h"
|
||||||
|
|
||||||
|
#include "bookmarkfilter.h"
|
||||||
#include "bookmarkmanager.h"
|
#include "bookmarkmanager.h"
|
||||||
#include "bookmarks_global.h"
|
#include "bookmarks_global.h"
|
||||||
|
|
||||||
@@ -109,6 +111,8 @@ bool BookmarksPlugin::initialize(const QStringList & /*arguments*/, QString *)
|
|||||||
|
|
||||||
m_bookmarkManager = new BookmarkManager;
|
m_bookmarkManager = new BookmarkManager;
|
||||||
|
|
||||||
|
addAutoReleasedObject(new BookmarkFilter(m_bookmarkManager));
|
||||||
|
|
||||||
connect(m_toggleAction, &QAction::triggered, [this]() {
|
connect(m_toggleAction, &QAction::triggered, [this]() {
|
||||||
BaseTextEditor *editor = BaseTextEditor::currentTextEditor();
|
BaseTextEditor *editor = BaseTextEditor::currentTextEditor();
|
||||||
if (editor && !editor->document()->isTemporary())
|
if (editor && !editor->document()->isTemporary())
|
||||||
|
|||||||
Reference in New Issue
Block a user