/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** No Commercial Usage ** ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions ** contained in the Technology Preview License Agreement accompanying ** this package. ** ** 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, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** **************************************************************************/ #include "currentdocumentfind.h" #include #include #include #include #include #include using namespace Core; using namespace Find; using namespace Find::Internal; CurrentDocumentFind::CurrentDocumentFind() : m_currentFind(0) { connect(qApp, SIGNAL(focusChanged(QWidget*, QWidget*)), this, SLOT(updateCandidateFindFilter(QWidget*,QWidget*))); } void CurrentDocumentFind::removeConnections() { disconnect(qApp, 0, this, 0); removeFindSupportConnections(); } void CurrentDocumentFind::resetIncrementalSearch() { QTC_ASSERT(m_currentFind, return); m_currentFind->resetIncrementalSearch(); } void CurrentDocumentFind::clearResults() { QTC_ASSERT(m_currentFind, return); m_currentFind->clearResults(); } bool CurrentDocumentFind::isEnabled() const { return m_currentFind && (!m_currentWidget || m_currentWidget->isVisible()); } bool CurrentDocumentFind::candidateIsEnabled() const { return (m_candidateFind != 0); } bool CurrentDocumentFind::supportsReplace() const { QTC_ASSERT(m_currentFind, return false); return m_currentFind->supportsReplace(); } Find::FindFlags CurrentDocumentFind::supportedFindFlags() const { QTC_ASSERT(m_currentFind, return 0); return m_currentFind->supportedFindFlags(); } QString CurrentDocumentFind::currentFindString() const { QTC_ASSERT(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, Find::FindFlags findFlags) { QTC_ASSERT(m_currentFind, return); m_currentFind->highlightAll(txt, findFlags); } IFindSupport::Result CurrentDocumentFind::findIncremental(const QString &txt, Find::FindFlags findFlags) { QTC_ASSERT(m_currentFind, return IFindSupport::NotFound); return m_currentFind->findIncremental(txt, findFlags); } IFindSupport::Result CurrentDocumentFind::findStep(const QString &txt, Find::FindFlags findFlags) { QTC_ASSERT(m_currentFind, return IFindSupport::NotFound); return m_currentFind->findStep(txt, findFlags); } void CurrentDocumentFind::replace(const QString &before, const QString &after, Find::FindFlags findFlags) { QTC_ASSERT(m_currentFind, return); m_currentFind->replace(before, after, findFlags); } bool CurrentDocumentFind::replaceStep(const QString &before, const QString &after, Find::FindFlags findFlags) { QTC_ASSERT(m_currentFind, return false); return m_currentFind->replaceStep(before, after, findFlags); } int CurrentDocumentFind::replaceAll(const QString &before, const QString &after, Find::FindFlags findFlags) { QTC_ASSERT(m_currentFind, return 0); return m_currentFind->replaceAll(before, after, findFlags); } void CurrentDocumentFind::defineFindScope() { QTC_ASSERT(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 impl = 0; while (!impl && candidate) { impl = Aggregation::query(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) return; removeFindSupportConnections(); if (m_currentFind) m_currentFind->highlightAll(QString(), 0); 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; if (m_currentFind) { connect(m_currentFind, SIGNAL(changed()), this, SIGNAL(changed())); connect(m_currentFind, SIGNAL(destroyed(QObject*)), SLOT(clearFindSupport())); } 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())); } if (m_currentWidget) m_currentWidget->removeEventFilter(this); } void CurrentDocumentFind::clearFindSupport() { removeFindSupportConnections(); m_currentWidget = 0; m_currentFind = 0; emit changed(); } bool CurrentDocumentFind::setFocusToCurrentFindSupport() { if (m_currentFind && m_currentWidget) { m_currentWidget->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 currentFind = Aggregation::query(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(m_candidateWidget); emit candidateChanged(); } }