Files
qt-creator/src/plugins/help/searchwidget.h

84 lines
1.8 KiB
C
Raw Normal View History

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
2008-12-02 12:01:29 +01:00
#pragma once
2008-12-02 12:01:29 +01:00
#include <coreplugin/sidebar.h>
#include <QFutureInterface>
#include <QFutureWatcher>
#include <QWidget>
2008-12-02 12:01:29 +01:00
QT_BEGIN_NAMESPACE
class QHelpSearchEngine;
class QHelpSearchQueryWidget;
class QHelpSearchResultWidget;
class QUrl;
QT_END_NAMESPACE
2008-12-02 12:01:29 +01:00
namespace Utils { class ProgressIndicator; }
2008-12-02 12:01:29 +01:00
namespace Help {
namespace Internal {
class SearchSideBarItem : public Core::SideBarItem
{
Q_OBJECT
public:
SearchSideBarItem();
QList<QToolButton *> createToolBarWidgets() override;
signals:
void linkActivated(const QUrl &url, const QStringList &searchTerms, bool newPage);
};
2008-12-02 12:01:29 +01:00
class SearchWidget : public QWidget
{
Q_OBJECT
public:
SearchWidget();
~SearchWidget() override;
2008-12-02 12:01:29 +01:00
void zoomIn();
void zoomOut();
void resetZoom();
void reindexDocumentation();
2008-12-02 12:01:29 +01:00
signals:
void linkActivated(const QUrl &link, const QStringList &searchTerms, bool newPage);
2008-12-02 12:01:29 +01:00
protected:
void showEvent(QShowEvent *event) override;
private:
2008-12-02 12:01:29 +01:00
void search() const;
2008-12-02 12:01:29 +01:00
void searchingStarted();
void searchingFinished(int hits);
void indexingStarted();
void indexingFinished();
bool eventFilter(QObject* o, QEvent *e) override;
void contextMenuEvent(QContextMenuEvent *contextMenuEvent) override;
QStringList currentSearchTerms() const;
2008-12-02 12:01:29 +01:00
int zoomCount = 0;
QFutureWatcher<void> m_watcher;
QFutureInterface<void> *m_progress = nullptr;
QHelpSearchEngine *searchEngine = nullptr;
QHelpSearchResultWidget *resultWidget = nullptr;
QHelpSearchQueryWidget *m_queryWidget = nullptr;
QWidget *m_indexingDocumentationLabel = nullptr;
Utils::ProgressIndicator *m_indexingIndicator = nullptr;
2008-12-02 12:01:29 +01:00
};
} // namespace Internal
} // namespace Help