You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.8 KiB
94 lines
2.8 KiB
11 years ago
|
/***************************************************************************
|
||
|
* Copyright (C) 2004-2005 by Luke Plant *
|
||
|
* L.Plant.98@cantab.net *
|
||
|
* *
|
||
|
* 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., *
|
||
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef KIOSWORD_H
|
||
|
#define KIOSWORD_H
|
||
|
|
||
|
#include "utils.h"
|
||
|
#include "swordoptions.h"
|
||
|
#include "renderer.h"
|
||
|
|
||
|
#include <kurl.h>
|
||
11 years ago
|
#include <tdeconfig.h>
|
||
|
#include <tdeio/slavebase.h>
|
||
11 years ago
|
|
||
11 years ago
|
#include <ntqstring.h>
|
||
|
#include <ntqcstring.h>
|
||
11 years ago
|
|
||
|
namespace KioSword {
|
||
|
class Template;
|
||
|
|
||
11 years ago
|
class SwordProtocol : public TDEIO::SlaveBase {
|
||
11 years ago
|
|
||
|
public:
|
||
11 years ago
|
SwordProtocol(const TQCString & pool_socket,
|
||
|
const TQCString & app_socket);
|
||
11 years ago
|
virtual ~SwordProtocol();
|
||
|
virtual void mimetype(const KURL & url);
|
||
|
virtual void get(const KURL & url);
|
||
|
|
||
|
protected:
|
||
11 years ago
|
void data(const TQCString& text);
|
||
|
void data(const TQByteArray& text);
|
||
11 years ago
|
|
||
|
void parseURL(const KURL & url);
|
||
|
void readUserConfig();
|
||
11 years ago
|
TQString saveUserConfig();
|
||
11 years ago
|
|
||
|
void sendPage(const Template* tmplt);
|
||
|
|
||
11 years ago
|
TQString helpPage();
|
||
|
TQString pageLinks(const SwordOptions& options);
|
||
|
TQString searchForm(const SwordOptions& options);
|
||
|
TQString settingsForm();
|
||
11 years ago
|
|
||
|
typedef enum { QUERY,
|
||
|
REDIRECT_QUERY,
|
||
|
SEARCH_FORM,
|
||
|
SEARCH_QUERY,
|
||
|
SETTINGS_FORM,
|
||
|
SETTINGS_SAVE,
|
||
|
HELP } ActionType;
|
||
|
|
||
|
Renderer m_renderer;
|
||
|
SwordOptions m_options;
|
||
|
ActionType m_action;
|
||
|
DefModuleType m_moduletype;
|
||
11 years ago
|
TQString m_path;
|
||
11 years ago
|
Renderer::SearchType m_stype;
|
||
|
KURL m_baseurl;
|
||
|
|
||
|
struct {
|
||
11 years ago
|
TQString query;
|
||
|
TQString module;
|
||
11 years ago
|
} m_previous;
|
||
|
|
||
|
struct {
|
||
11 years ago
|
TQString query;
|
||
|
TQString module;
|
||
11 years ago
|
} m_redirect;
|
||
|
|
||
11 years ago
|
TDEConfig *m_config;
|
||
11 years ago
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|