aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/bookmarks/bookmarkfilter.h
blob: 0c69e2b6d456dc4b41d36935e0d825fb0b8fd17c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <coreplugin/locator/ilocatorfilter.h>

namespace Bookmarks::Internal {

class BookmarkManager;

class BookmarkFilter : public Core::ILocatorFilter
{
public:
    explicit BookmarkFilter(BookmarkManager *manager);
    void prepareSearch(const QString &entry) override;
    QList<Core::LocatorFilterEntry> matchesFor(QFutureInterface<Core::LocatorFilterEntry> &future,
                                               const QString &entry) override;
    void accept(const Core::LocatorFilterEntry &selection, QString *newText,
                int *selectionStart, int *selectionLength) const override;

private:
    BookmarkManager *m_manager = nullptr; // not owned
    QList<Core::LocatorFilterEntry> m_results;
};

} // Bookmarks::Internal