1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 10:42:11 +02:00
falkonOfficial/src/webview/searchtoolbar.cpp

119 lines
3.2 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2011 nowrep
*
* 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/>.
* ============================================================ */
2011-03-02 16:57:41 +01:00
#include "searchtoolbar.h"
#include "qupzilla.h"
#include "webview.h"
#include "lineedit.h"
#include "ui_searchtoolbar.h"
2011-03-02 16:57:41 +01:00
SearchToolBar::SearchToolBar(QupZilla* mainClass, QWidget* parent)
: AnimatedWidget(AnimatedWidget::Up, parent)
, ui(new Ui::SearchToolbar)
, p_QupZilla(mainClass)
, m_findFlags(0)
2011-03-02 16:57:41 +01:00
{
setAttribute(Qt::WA_DeleteOnClose);
ui->setupUi(widget());
ui->closeButton->setIcon(
2011-03-02 16:57:41 +01:00
#ifdef Q_WS_X11
style()->standardIcon(QStyle::SP_DialogCloseButton)
2011-03-02 16:57:41 +01:00
#else
QIcon(":/icons/faenza/close.png")
2011-03-02 16:57:41 +01:00
#endif
);
2011-03-02 16:57:41 +01:00
ui->next->setIcon(
2011-03-02 16:57:41 +01:00
#ifdef Q_WS_X11
style()->standardIcon(QStyle::SP_ArrowForward)
2011-03-02 16:57:41 +01:00
#else
QIcon(":/icons/faenza/forward.png")
2011-03-02 16:57:41 +01:00
#endif
);
2011-03-02 16:57:41 +01:00
ui->previous->setIcon(
2011-03-02 16:57:41 +01:00
#ifdef Q_WS_X11
style()->standardIcon(QStyle::SP_ArrowBack)
2011-03-02 16:57:41 +01:00
#else
QIcon(":/icons/faenza/back.png")
2011-03-02 16:57:41 +01:00
#endif
);
connect(ui->closeButton, SIGNAL(clicked()), this, SLOT(hide()));
connect(ui->lineEdit, SIGNAL(textChanged(QString)), this, SLOT(searchText(QString)));
connect(ui->next, SIGNAL(clicked()), this, SLOT(findNext()));
connect(ui->previous, SIGNAL(clicked()), this, SLOT(findPrevious()));
connect(ui->highligh, SIGNAL(clicked()), this, SLOT(refreshFindFlags()));
connect(ui->caseSensitive, SIGNAL(clicked()), this, SLOT(refreshFindFlags()));
startAnimation();
2011-03-02 16:57:41 +01:00
}
QLineEdit* SearchToolBar::searchLine()
2011-03-02 16:57:41 +01:00
{
return ui->lineEdit;
2011-03-02 16:57:41 +01:00
}
void SearchToolBar::findNext()
{
refreshFindFlags();
2011-03-02 16:57:41 +01:00
m_findFlags+=4;
searchText(ui->lineEdit->text());
2011-03-02 16:57:41 +01:00
}
void SearchToolBar::findPrevious()
{
refreshFindFlags();
2011-03-02 16:57:41 +01:00
m_findFlags+=5;
searchText(ui->lineEdit->text());
2011-03-02 16:57:41 +01:00
}
void SearchToolBar::refreshFindFlags()
2011-03-02 16:57:41 +01:00
{
m_findFlags = 0;
if (ui->highligh->isChecked()) {
2011-03-02 16:57:41 +01:00
m_findFlags+=8;
searchText(ui->lineEdit->text());
2011-03-02 16:57:41 +01:00
}else{
m_findFlags+=8;
searchText("");
m_findFlags-=8;
}
if (ui->caseSensitive->isChecked()) {
2011-03-02 16:57:41 +01:00
m_findFlags+=2;
searchText(ui->lineEdit->text());
2011-03-02 16:57:41 +01:00
}
}
void SearchToolBar::searchText(const QString &text)
{
bool found = p_QupZilla->weView()->findText(text, QFlags<QWebPage::FindFlag>(m_findFlags));
if (!found && !ui->lineEdit->text().isEmpty()) {
ui->lineEdit->setStyleSheet("background-color: #ff6666;");
ui->results->setText(tr("No results found."));
2011-03-02 16:57:41 +01:00
}
else{
ui->lineEdit->setStyleSheet("");
ui->results->clear();
2011-03-02 16:57:41 +01:00
}
}
SearchToolBar::~SearchToolBar()
{
delete ui;
}