/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** Commercial Usage ** ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Commercial License Agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Nokia. ** ** 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. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at http://qt.nokia.com/contact. ** **************************************************************************/ #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(); } IFindSupport::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, IFindSupport::FindFlags findFlags) { QTC_ASSERT(m_currentFind, return); m_currentFind->highlightAll(txt, findFlags); } IFindSupport::Result CurrentDocumentFind::findIncremental(const QString &txt, IFindSupport::FindFlags findFlags) { QTC_ASSERT(m_currentFind, return IFindSupport::NotFound); return m_currentFind->findIncremental(txt, findFlags); } IFindSupport::Result CurrentDocumentFind::findStep(const QString &txt, IFindSupport::FindFlags findFlags) { QTC_ASSERT(m_currentFind, return IFindSupport::NotFound); return m_currentFind->findStep(txt, findFlags); } bool CurrentDocumentFind::replaceStep(const QString &before, const QString &after, IFindSupport::FindFlags findFlags) { QTC_ASSERT(m_currentFind, return false); return m_currentFind->replaceStep(before, after, findFlags); } int CurrentDocumentFind::replaceAll(const QString &before, const QString &after, IFindSupport::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(); } m_candidateWidget = candidate; m_candidateFind = impl; emit candidateChanged(); } void CurrentDocumentFind::acceptCandidate() { if (!m_candidateFind || m_candidateFind == m_currentFind) return; removeFindSupportConnections(); if (m_currentFind) m_currentFind->highlightAll(QString(), 0); m_currentWidget = m_candidateWidget; m_currentFind = m_candidateFind; if (m_currentFind) { connect(m_currentFind, SIGNAL(changed()), this, SIGNAL(changed())); connect(m_currentFind, SIGNAL(destroyed(QObject*)), SLOT(findSupportDestroyed())); } 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(findSupportDestroyed())); } if (m_currentWidget) m_currentWidget->removeEventFilter(this); } void CurrentDocumentFind::findSupportDestroyed() { 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); }