forked from qt-creator/qt-creator
138 lines
4.1 KiB
C++
138 lines
4.1 KiB
C++
|
|
/**************************************************************************
|
||
|
|
**
|
||
|
|
** This file is part of Qt Creator
|
||
|
|
**
|
||
|
|
** Copyright (c) 2010 Nicolas Arnaud-Cormos.
|
||
|
|
**
|
||
|
|
** 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 "macrotextfind.h"
|
||
|
|
|
||
|
|
#include <utils/qtcassert.h>
|
||
|
|
|
||
|
|
using namespace Macros;
|
||
|
|
using namespace Macros::Internal;
|
||
|
|
|
||
|
|
MacroTextFind::MacroTextFind(Find::IFindSupport *currentFind):
|
||
|
|
Find::IFindSupport(),
|
||
|
|
m_currentFind(currentFind)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
bool MacroTextFind::supportsReplace() const
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return false);
|
||
|
|
return m_currentFind->supportsReplace();
|
||
|
|
}
|
||
|
|
|
||
|
|
Find::FindFlags MacroTextFind::supportedFindFlags() const
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return 0);
|
||
|
|
return m_currentFind->supportedFindFlags();
|
||
|
|
}
|
||
|
|
|
||
|
|
void MacroTextFind::resetIncrementalSearch()
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return);
|
||
|
|
m_currentFind->resetIncrementalSearch();
|
||
|
|
emit incrementalSearchReseted();
|
||
|
|
}
|
||
|
|
|
||
|
|
void MacroTextFind::clearResults()
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return);
|
||
|
|
m_currentFind->clearResults();
|
||
|
|
}
|
||
|
|
|
||
|
|
QString MacroTextFind::currentFindString() const
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return QString());
|
||
|
|
return m_currentFind->currentFindString();
|
||
|
|
}
|
||
|
|
|
||
|
|
QString MacroTextFind::completedFindString() const
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return QString());
|
||
|
|
return m_currentFind->completedFindString();
|
||
|
|
}
|
||
|
|
|
||
|
|
void MacroTextFind::highlightAll(const QString &txt, Find::FindFlags findFlags)
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return);
|
||
|
|
m_currentFind->highlightAll(txt, findFlags);
|
||
|
|
}
|
||
|
|
|
||
|
|
Find::IFindSupport::Result MacroTextFind::findIncremental(const QString &txt, Find::FindFlags findFlags)
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return IFindSupport::NotFound);
|
||
|
|
Find::IFindSupport::Result result = m_currentFind->findIncremental(txt, findFlags);
|
||
|
|
if (result == Found)
|
||
|
|
emit incrementalFound(txt, findFlags);
|
||
|
|
return result;
|
||
|
|
}
|
||
|
|
|
||
|
|
Find::IFindSupport::Result MacroTextFind::findStep(const QString &txt, Find::FindFlags findFlags)
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return IFindSupport::NotFound);
|
||
|
|
Find::IFindSupport::Result result = m_currentFind->findStep(txt, findFlags);
|
||
|
|
if (result == Found)
|
||
|
|
emit stepFound(txt, findFlags);
|
||
|
|
return result;
|
||
|
|
}
|
||
|
|
|
||
|
|
void MacroTextFind::replace(const QString &before, const QString &after, Find::FindFlags findFlags)
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return);
|
||
|
|
m_currentFind->replace(before, after, findFlags);
|
||
|
|
emit replaced(before, after, findFlags);
|
||
|
|
}
|
||
|
|
|
||
|
|
bool MacroTextFind::replaceStep(const QString &before, const QString &after, Find::FindFlags findFlags)
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return false);
|
||
|
|
bool result = m_currentFind->replaceStep(before, after, findFlags);
|
||
|
|
emit stepReplaced(before, after, findFlags);
|
||
|
|
return result;
|
||
|
|
}
|
||
|
|
|
||
|
|
int MacroTextFind::replaceAll(const QString &before, const QString &after, Find::FindFlags findFlags)
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return 0);
|
||
|
|
int result = m_currentFind->replaceAll(before, after, findFlags);
|
||
|
|
emit allReplaced(before, after, findFlags);
|
||
|
|
return result;
|
||
|
|
}
|
||
|
|
|
||
|
|
void MacroTextFind::defineFindScope()
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return);
|
||
|
|
m_currentFind->defineFindScope();
|
||
|
|
}
|
||
|
|
|
||
|
|
void MacroTextFind::clearFindScope()
|
||
|
|
{
|
||
|
|
QTC_ASSERT(m_currentFind, return);
|
||
|
|
m_currentFind->clearFindScope();
|
||
|
|
}
|