aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/locator/locatormanager.h
blob: 41403c6f1b74082f020fadc609f67746987e5f6b (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
28
29
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <coreplugin/core_global.h>

#include <QObject>

namespace Core {

class ILocatorFilter;

class CORE_EXPORT LocatorManager : public QObject
{
    Q_OBJECT

public:
    LocatorManager();

    static void showFilter(ILocatorFilter *filter);
    static void show(const QString &text, int selectionStart = -1, int selectionLength = 0);

    static QWidget *createLocatorInputWidget(QWidget *window);

    static bool locatorHasFocus();
};

} // namespace Core