mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 17:42:10 +01:00
63 lines
2.1 KiB
C++
63 lines
2.1 KiB
C++
|
/*
|
||
|
* Copyright 2009 Jakub Wieczorek <faw217@gmail.com>
|
||
|
*
|
||
|
* 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 2 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, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
* Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#include "opensearchenginedelegate.h"
|
||
|
|
||
|
/*!
|
||
|
\class OpenSearchEngineDelegate
|
||
|
\brief An abstract class providing custom processing of specific activities.
|
||
|
|
||
|
OpenSearchEngineDelegate is an abstract class that can be subclassed and set on
|
||
|
an OpenSearchEngine. It allows to customize some parts of the default implementation
|
||
|
or even extend it with missing bits.
|
||
|
|
||
|
Currently subclasses can only provide a custom way of handling search requests by
|
||
|
reimplementing the performSearchRequest() method.
|
||
|
|
||
|
\sa OpenSearchEngine
|
||
|
*/
|
||
|
|
||
|
/*!
|
||
|
Constructs the delegate.
|
||
|
*/
|
||
|
OpenSearchEngineDelegate::OpenSearchEngineDelegate()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/*!
|
||
|
Destructs the delegate.
|
||
|
*/
|
||
|
OpenSearchEngineDelegate::~OpenSearchEngineDelegate()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/*!
|
||
|
\fn void performSearchRequest(const QNetworkRequest &request,
|
||
|
QNetworkAccessManager::Operation operation, const QByteArray &data) = 0
|
||
|
|
||
|
This method will be used after OpenSearchEngine::requestResults() is called.
|
||
|
|
||
|
For example, a console application that uses the OpenSearchEngine class to generate
|
||
|
a search URL for a search term supplied by the user would reimplement the function
|
||
|
and forward the request to e.g. a web browser.
|
||
|
|
||
|
Likewise, a web browser that uses the OpenSearchEngine class to support multiple search
|
||
|
engines e.g. in a toolbar would perform the request and navigate to the search results site.
|
||
|
*/
|