forked from qt-creator/qt-creator
Change-Id: Ib25134cb823ed14ce82a69aac6f03849b02862fa Reviewed-by: Eike Ziller <eike.ziller@qt.io>
272 lines
8.4 KiB
C++
272 lines
8.4 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 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 "currentdocumentfind.h"
|
|
|
|
#include <aggregation/aggregate.h>
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
#include <utils/fadingindicator.h>
|
|
#include <utils/qtcassert.h>
|
|
|
|
#include <QDebug>
|
|
#include <QApplication>
|
|
#include <QWidget>
|
|
|
|
using namespace Core;
|
|
using namespace Core;
|
|
using namespace Core::Internal;
|
|
|
|
CurrentDocumentFind::CurrentDocumentFind()
|
|
: m_currentFind(nullptr)
|
|
{
|
|
connect(qApp, &QApplication::focusChanged,
|
|
this, &CurrentDocumentFind::updateCandidateFindFilter);
|
|
}
|
|
|
|
void CurrentDocumentFind::removeConnections()
|
|
{
|
|
disconnect(qApp, nullptr, this, nullptr);
|
|
removeFindSupportConnections();
|
|
}
|
|
|
|
void CurrentDocumentFind::resetIncrementalSearch()
|
|
{
|
|
QTC_ASSERT(m_currentFind, return);
|
|
m_currentFind->resetIncrementalSearch();
|
|
}
|
|
|
|
void CurrentDocumentFind::clearHighlights()
|
|
{
|
|
QTC_ASSERT(m_currentFind, return);
|
|
m_currentFind->clearHighlights();
|
|
}
|
|
|
|
bool CurrentDocumentFind::isEnabled() const
|
|
{
|
|
return m_currentFind && (!m_currentWidget || m_currentWidget->isVisible());
|
|
}
|
|
|
|
IFindSupport *CurrentDocumentFind::candidate() const
|
|
{
|
|
return m_candidateFind;
|
|
}
|
|
|
|
bool CurrentDocumentFind::supportsReplace() const
|
|
{
|
|
if (!m_currentFind)
|
|
return false;
|
|
return m_currentFind->supportsReplace();
|
|
}
|
|
|
|
FindFlags CurrentDocumentFind::supportedFindFlags() const
|
|
{
|
|
QTC_ASSERT(m_currentFind, return {});
|
|
return m_currentFind->supportedFindFlags();
|
|
}
|
|
|
|
QString CurrentDocumentFind::currentFindString() const
|
|
{
|
|
if (!m_currentFind)
|
|
return QString();
|
|
return m_currentFind->currentFindString();
|
|
}
|
|
|
|
QString CurrentDocumentFind::completedFindString() const
|
|
{
|
|
QTC_ASSERT(m_currentFind, return QString());
|
|
return m_currentFind->completedFindString();
|
|
}
|
|
|
|
void CurrentDocumentFind::highlightAll(const QString &txt, FindFlags findFlags)
|
|
{
|
|
if (!m_currentFind)
|
|
return;
|
|
m_currentFind->highlightAll(txt, findFlags);
|
|
}
|
|
|
|
IFindSupport::Result CurrentDocumentFind::findIncremental(const QString &txt, FindFlags findFlags)
|
|
{
|
|
QTC_ASSERT(m_currentFind, return IFindSupport::NotFound);
|
|
return m_currentFind->findIncremental(txt, findFlags);
|
|
}
|
|
|
|
IFindSupport::Result CurrentDocumentFind::findStep(const QString &txt, FindFlags findFlags)
|
|
{
|
|
QTC_ASSERT(m_currentFind, return IFindSupport::NotFound);
|
|
return m_currentFind->findStep(txt, findFlags);
|
|
}
|
|
|
|
void CurrentDocumentFind::replace(const QString &before, const QString &after, FindFlags findFlags)
|
|
{
|
|
QTC_ASSERT(m_currentFind, return);
|
|
m_currentFind->replace(before, after, findFlags);
|
|
}
|
|
|
|
bool CurrentDocumentFind::replaceStep(const QString &before, const QString &after, FindFlags findFlags)
|
|
{
|
|
QTC_ASSERT(m_currentFind, return false);
|
|
return m_currentFind->replaceStep(before, after, findFlags);
|
|
}
|
|
|
|
int CurrentDocumentFind::replaceAll(const QString &before, const QString &after, FindFlags findFlags)
|
|
{
|
|
QTC_ASSERT(m_currentFind, return 0);
|
|
QTC_CHECK(m_currentWidget);
|
|
int count = m_currentFind->replaceAll(before, after, findFlags);
|
|
Utils::FadingIndicator::showText(m_currentWidget,
|
|
tr("%n occurrences replaced.", nullptr, count),
|
|
Utils::FadingIndicator::SmallText);
|
|
return count;
|
|
}
|
|
|
|
void CurrentDocumentFind::defineFindScope()
|
|
{
|
|
if (!m_currentFind)
|
|
return;
|
|
m_currentFind->defineFindScope();
|
|
}
|
|
|
|
void CurrentDocumentFind::clearFindScope()
|
|
{
|
|
QTC_ASSERT(m_currentFind, return);
|
|
m_currentFind->clearFindScope();
|
|
}
|
|
|
|
void CurrentDocumentFind::updateCandidateFindFilter(QWidget *old, QWidget *now)
|
|
{
|
|
Q_UNUSED(old)
|
|
QWidget *candidate = now;
|
|
QPointer<IFindSupport> impl = nullptr;
|
|
while (!impl && candidate) {
|
|
impl = Aggregation::query<IFindSupport>(candidate);
|
|
if (!impl)
|
|
candidate = candidate->parentWidget();
|
|
}
|
|
if (candidate == m_candidateWidget && impl == m_candidateFind)
|
|
return;
|
|
if (m_candidateWidget)
|
|
disconnect(Aggregation::Aggregate::parentAggregate(m_candidateWidget), &Aggregation::Aggregate::changed,
|
|
this, &CurrentDocumentFind::candidateAggregationChanged);
|
|
m_candidateWidget = candidate;
|
|
m_candidateFind = impl;
|
|
if (m_candidateWidget)
|
|
connect(Aggregation::Aggregate::parentAggregate(m_candidateWidget), &Aggregation::Aggregate::changed,
|
|
this, &CurrentDocumentFind::candidateAggregationChanged);
|
|
emit candidateChanged();
|
|
}
|
|
|
|
void CurrentDocumentFind::acceptCandidate()
|
|
{
|
|
if (!m_candidateFind || m_candidateFind == m_currentFind)
|
|
return;
|
|
removeFindSupportConnections();
|
|
if (m_currentFind)
|
|
m_currentFind->clearHighlights();
|
|
|
|
if (m_currentWidget)
|
|
disconnect(Aggregation::Aggregate::parentAggregate(m_currentWidget), &Aggregation::Aggregate::changed,
|
|
this, &CurrentDocumentFind::aggregationChanged);
|
|
m_currentWidget = m_candidateWidget;
|
|
connect(Aggregation::Aggregate::parentAggregate(m_currentWidget), &Aggregation::Aggregate::changed,
|
|
this, &CurrentDocumentFind::aggregationChanged);
|
|
|
|
m_currentFind = m_candidateFind;
|
|
if (m_currentFind) {
|
|
connect(m_currentFind.data(), &IFindSupport::changed,
|
|
this, &CurrentDocumentFind::changed);
|
|
connect(m_currentFind.data(), &QObject::destroyed, this, &CurrentDocumentFind::clearFindSupport);
|
|
}
|
|
if (m_currentWidget)
|
|
m_currentWidget->installEventFilter(this);
|
|
emit changed();
|
|
}
|
|
|
|
void CurrentDocumentFind::removeFindSupportConnections()
|
|
{
|
|
if (m_currentFind) {
|
|
disconnect(m_currentFind.data(), &IFindSupport::changed,
|
|
this, &CurrentDocumentFind::changed);
|
|
disconnect(m_currentFind.data(), &IFindSupport::destroyed,
|
|
this, &CurrentDocumentFind::clearFindSupport);
|
|
}
|
|
if (m_currentWidget)
|
|
m_currentWidget->removeEventFilter(this);
|
|
}
|
|
|
|
void CurrentDocumentFind::clearFindSupport()
|
|
{
|
|
removeFindSupportConnections();
|
|
m_currentWidget = nullptr;
|
|
m_currentFind = nullptr;
|
|
emit changed();
|
|
}
|
|
|
|
bool CurrentDocumentFind::setFocusToCurrentFindSupport()
|
|
{
|
|
if (m_currentFind && m_currentWidget) {
|
|
QWidget *w = m_currentWidget->focusWidget();
|
|
if (!w)
|
|
w = m_currentWidget;
|
|
w->setFocus();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool CurrentDocumentFind::eventFilter(QObject *obj, QEvent *event)
|
|
{
|
|
if (m_currentWidget && obj == m_currentWidget) {
|
|
if (event->type() == QEvent::Hide || event->type() == QEvent::Show)
|
|
emit changed();
|
|
}
|
|
return QObject::eventFilter(obj, event);
|
|
}
|
|
|
|
void CurrentDocumentFind::aggregationChanged()
|
|
{
|
|
if (m_currentWidget) {
|
|
QPointer<IFindSupport> currentFind = Aggregation::query<IFindSupport>(m_currentWidget);
|
|
if (currentFind != m_currentFind) {
|
|
// There's a change in the find support
|
|
if (currentFind) {
|
|
m_candidateWidget = m_currentWidget;
|
|
m_candidateFind = currentFind;
|
|
acceptCandidate();
|
|
} else {
|
|
clearFindSupport();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void CurrentDocumentFind::candidateAggregationChanged()
|
|
{
|
|
if (m_candidateWidget && m_candidateWidget != m_currentWidget) {
|
|
m_candidateFind = Aggregation::query<IFindSupport>(m_candidateWidget);
|
|
emit candidateChanged();
|
|
}
|
|
}
|