1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/other/sourceviewersearch.cpp

100 lines
3.4 KiB
C++
Raw Normal View History

2011-03-19 00:28:37 +01:00
/* ============================================================
* QupZilla - WebKit based browser
2011-10-17 09:57:07 +02:00
* Copyright (C) 2010-2011 David Rosca
2011-03-19 00:28:37 +01:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
#include "sourceviewersearch.h"
#include "ui_sourceviewersearch.h"
#include "sourceviewer.h"
#include "iconprovider.h"
2011-03-19 00:28:37 +01:00
SourceViewerSearch::SourceViewerSearch(SourceViewer* parent) :
AnimatedWidget(AnimatedWidget::Up)
2011-03-19 00:28:37 +01:00
,m_sourceViewer(parent)
,ui(new Ui::SourceViewerSearch)
{
setAttribute(Qt::WA_DeleteOnClose);
ui->setupUi(widget());
ui->closeButton->setIcon(IconProvider::standardIcon(QStyle::SP_DialogCloseButton));
2011-03-19 00:28:37 +01:00
ui->next->setIcon(IconProvider::standardIcon(QStyle::SP_ArrowForward));
2011-03-19 00:28:37 +01:00
ui->previous->setIcon(IconProvider::standardIcon(QStyle::SP_ArrowBack));
2011-03-19 00:28:37 +01:00
ui->lineEdit->setFocus();
connect(ui->closeButton, SIGNAL(clicked()), this, SLOT(hide()));
2011-03-19 13:14:43 +01:00
connect(ui->lineEdit, SIGNAL(textEdited(QString)), this, SLOT(next()));
connect(ui->lineEdit, SIGNAL(returnPressed()), this, SLOT(next()));
2011-03-19 00:28:37 +01:00
connect(ui->next, SIGNAL(clicked()), this, SLOT(next()));
connect(ui->previous, SIGNAL(clicked()), this, SLOT(previous()));
startAnimation();
2011-03-19 00:28:37 +01:00
}
void SourceViewerSearch::activateLineEdit()
{
ui->lineEdit->setFocus();
}
void SourceViewerSearch::next()
{
bool found = find(0);
if (!found)
2011-03-19 00:28:37 +01:00
m_sourceViewer->sourceEdit()->moveCursor(QTextCursor::Start);
ui->lineEdit->setProperty("notfound", !found);
ui->lineEdit->style()->unpolish(ui->lineEdit);
ui->lineEdit->style()->polish(ui->lineEdit);
2011-03-19 00:28:37 +01:00
}
void SourceViewerSearch::previous()
{
bool found = find(QTextDocument::FindBackward);
if (!found)
2011-03-19 00:28:37 +01:00
m_sourceViewer->sourceEdit()->moveCursor(QTextCursor::Start);
ui->lineEdit->setProperty("notfound", !found);
ui->lineEdit->style()->unpolish(ui->lineEdit);
ui->lineEdit->style()->polish(ui->lineEdit);
2011-03-19 00:28:37 +01:00
}
bool SourceViewerSearch::find(QTextDocument::FindFlags flags)
{
QString string = ui->lineEdit->text();
if (string.isEmpty())
return true;
if (string != m_lastSearchedString) {
QTextCursor cursor = m_sourceViewer->sourceEdit()->textCursor();
cursor.setPosition(cursor.selectionStart());
cursor.clearSelection();
m_sourceViewer->sourceEdit()->setTextCursor(cursor);
m_lastSearchedString = string;
}
if (!m_sourceViewer->sourceEdit()->find(string, flags)) {
QTextCursor cursor = m_sourceViewer->sourceEdit()->textCursor();
2011-03-19 13:14:43 +01:00
m_sourceViewer->sourceEdit()->moveCursor( (flags == QTextDocument::FindBackward ) ? QTextCursor::End : QTextCursor::Start );
2011-03-19 00:28:37 +01:00
if (!m_sourceViewer->sourceEdit()->find(string,flags)) {
cursor.clearSelection();
m_sourceViewer->sourceEdit()->setTextCursor(cursor);
return false;
}
}
return true;
}