Files
qt-creator/src/plugins/find/currentdocumentfind.cpp

264 lines
8.0 KiB
C++
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01:00
**
** 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 Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
2008-12-02 15:08:31 +01:00
2008-12-02 12:01:29 +01:00
#include "currentdocumentfind.h"
2008-12-02 15:08:31 +01:00
2008-12-02 12:01:29 +01:00
#include <aggregation/aggregate.h>
#include <coreplugin/coreconstants.h>
2008-12-09 15:25:01 +01:00
#include <utils/qtcassert.h>
2008-12-02 12:01:29 +01:00
#include <QDebug>
#include <QApplication>
#include <QWidget>
2008-12-02 12:01:29 +01:00
using namespace Core;
using namespace Find;
using namespace Find::Internal;
CurrentDocumentFind::CurrentDocumentFind()
: m_currentFind(0)
2008-12-02 12:01:29 +01:00
{
connect(qApp, SIGNAL(focusChanged(QWidget*,QWidget*)),
this, SLOT(updateCandidateFindFilter(QWidget*,QWidget*)));
2008-12-02 12:01:29 +01:00
}
void CurrentDocumentFind::removeConnections()
{
disconnect(qApp, 0, this, 0);
removeFindSupportConnections();
}
void CurrentDocumentFind::resetIncrementalSearch()
{
2008-12-09 15:25:01 +01:00
QTC_ASSERT(m_currentFind, return);
m_currentFind->resetIncrementalSearch();
2008-12-02 12:01:29 +01:00
}
void CurrentDocumentFind::clearResults()
{
2008-12-09 15:25:01 +01:00
QTC_ASSERT(m_currentFind, return);
m_currentFind->clearResults();
2008-12-02 12:01:29 +01:00
}
bool CurrentDocumentFind::isEnabled() const
{
return m_currentFind && (!m_currentWidget || m_currentWidget->isVisible());
}
bool CurrentDocumentFind::candidateIsEnabled() const
{
return (m_candidateFind != 0);
}
2008-12-02 12:01:29 +01:00
bool CurrentDocumentFind::supportsReplace() const
{
2008-12-09 15:25:01 +01:00
QTC_ASSERT(m_currentFind, return false);
return m_currentFind->supportsReplace();
2008-12-02 12:01:29 +01:00
}
Find::FindFlags CurrentDocumentFind::supportedFindFlags() const
{
QTC_ASSERT(m_currentFind, return 0);
return m_currentFind->supportedFindFlags();
}
2008-12-02 12:01:29 +01:00
QString CurrentDocumentFind::currentFindString() const
{
2008-12-09 15:25:01 +01:00
QTC_ASSERT(m_currentFind, return QString());
return m_currentFind->currentFindString();
2008-12-02 12:01:29 +01:00
}
QString CurrentDocumentFind::completedFindString() const
{
2008-12-09 15:25:01 +01:00
QTC_ASSERT(m_currentFind, return QString());
return m_currentFind->completedFindString();
2008-12-02 12:01:29 +01:00
}
void CurrentDocumentFind::highlightAll(const QString &txt, Find::FindFlags findFlags)
2008-12-02 12:01:29 +01:00
{
2008-12-09 15:25:01 +01:00
QTC_ASSERT(m_currentFind, return);
m_currentFind->highlightAll(txt, findFlags);
2008-12-02 12:01:29 +01:00
}
IFindSupport::Result CurrentDocumentFind::findIncremental(const QString &txt, Find::FindFlags findFlags)
2008-12-02 12:01:29 +01:00
{
QTC_ASSERT(m_currentFind, return IFindSupport::NotFound);
2008-12-09 15:25:01 +01:00
return m_currentFind->findIncremental(txt, findFlags);
2008-12-02 12:01:29 +01:00
}
IFindSupport::Result CurrentDocumentFind::findStep(const QString &txt, Find::FindFlags findFlags)
2008-12-02 12:01:29 +01:00
{
QTC_ASSERT(m_currentFind, return IFindSupport::NotFound);
2008-12-09 15:25:01 +01:00
return m_currentFind->findStep(txt, findFlags);
2008-12-02 12:01:29 +01:00
}
void CurrentDocumentFind::replace(const QString &before, const QString &after,
Find::FindFlags findFlags)
{
QTC_ASSERT(m_currentFind, return);
m_currentFind->replace(before, after, findFlags);
}
2008-12-02 12:01:29 +01:00
bool CurrentDocumentFind::replaceStep(const QString &before, const QString &after,
Find::FindFlags findFlags)
2008-12-02 12:01:29 +01:00
{
2008-12-09 15:25:01 +01:00
QTC_ASSERT(m_currentFind, return false);
return m_currentFind->replaceStep(before, after, findFlags);
2008-12-02 12:01:29 +01:00
}
int CurrentDocumentFind::replaceAll(const QString &before, const QString &after,
Find::FindFlags findFlags)
2008-12-02 12:01:29 +01:00
{
2008-12-09 15:25:01 +01:00
QTC_ASSERT(m_currentFind, return 0);
return m_currentFind->replaceAll(before, after, findFlags);
2008-12-02 12:01:29 +01:00
}
void CurrentDocumentFind::defineFindScope()
{
2008-12-09 15:25:01 +01:00
QTC_ASSERT(m_currentFind, return);
m_currentFind->defineFindScope();
2008-12-02 12:01:29 +01:00
}
void CurrentDocumentFind::clearFindScope()
{
2008-12-09 15:25:01 +01:00
QTC_ASSERT(m_currentFind, return);
m_currentFind->clearFindScope();
2008-12-02 12:01:29 +01:00
}
void CurrentDocumentFind::updateCandidateFindFilter(QWidget *old, QWidget *now)
2008-12-02 12:01:29 +01:00
{
Q_UNUSED(old)
2008-12-02 12:01:29 +01:00
QWidget *candidate = now;
QPointer<IFindSupport> impl = 0;
while (!impl && candidate) {
impl = Aggregation::query<IFindSupport>(candidate);
if (!impl)
candidate = candidate->parentWidget();
}
if (m_candidateWidget)
disconnect(Aggregation::Aggregate::parentAggregate(m_candidateWidget), SIGNAL(changed()),
this, SLOT(candidateAggregationChanged()));
m_candidateWidget = candidate;
m_candidateFind = impl;
if (m_candidateWidget)
connect(Aggregation::Aggregate::parentAggregate(m_candidateWidget), SIGNAL(changed()),
this, SLOT(candidateAggregationChanged()));
emit candidateChanged();
}
void CurrentDocumentFind::acceptCandidate()
{
if (!m_candidateFind || m_candidateFind == m_currentFind)
2008-12-02 12:01:29 +01:00
return;
removeFindSupportConnections();
if (m_currentFind)
m_currentFind->clearResults();
if (m_currentWidget)
disconnect(Aggregation::Aggregate::parentAggregate(m_currentWidget), SIGNAL(changed()),
this, SLOT(aggregationChanged()));
m_currentWidget = m_candidateWidget;
connect(Aggregation::Aggregate::parentAggregate(m_currentWidget), SIGNAL(changed()),
this, SLOT(aggregationChanged()));
m_currentFind = m_candidateFind;
2008-12-02 12:01:29 +01:00
if (m_currentFind) {
connect(m_currentFind, SIGNAL(changed()), this, SIGNAL(changed()));
connect(m_currentFind, SIGNAL(destroyed(QObject*)), SLOT(clearFindSupport()));
2008-12-02 12:01:29 +01:00
}
if (m_currentWidget)
m_currentWidget->installEventFilter(this);
emit changed();
}
void CurrentDocumentFind::removeFindSupportConnections()
{
if (m_currentFind) {
disconnect(m_currentFind, SIGNAL(changed()), this, SIGNAL(changed()));
disconnect(m_currentFind, SIGNAL(destroyed(QObject*)), this, SLOT(clearFindSupport()));
2008-12-02 12:01:29 +01:00
}
if (m_currentWidget)
m_currentWidget->removeEventFilter(this);
}
void CurrentDocumentFind::clearFindSupport()
2008-12-02 12:01:29 +01:00
{
removeFindSupportConnections();
m_currentWidget = 0;
m_currentFind = 0;
emit changed();
}
bool CurrentDocumentFind::setFocusToCurrentFindSupport()
{
if (m_currentFind && m_currentWidget) {
QWidget *w = m_currentWidget->focusWidget();
if (!w)
w = m_currentWidget;
w->setFocus();
2008-12-02 12:01:29 +01:00
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)
2008-12-02 12:01:29 +01:00
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();
}
}