From e03da7a558d79e399e3704a5b2f35646e92dacb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 23 Sep 2013 00:43:43 +0200 Subject: Initial TQt conversion --- src/kio_sword.cpp | 126 +++++++++++++++++++++++++++--------------------------- 1 file changed, 63 insertions(+), 63 deletions(-) (limited to 'src/kio_sword.cpp') diff --git a/src/kio_sword.cpp b/src/kio_sword.cpp index b0db5bc..ddb4afa 100644 --- a/src/kio_sword.cpp +++ b/src/kio_sword.cpp @@ -37,9 +37,9 @@ #include #include -// Qt -#include -#include +// TQt +#include +#include // Standard C++ /C #include @@ -77,13 +77,13 @@ namespace KioSword class SwordOptions; // HTML fragments that will be initialised at run time ------------------------------------------------------------------------- - static QString search_form; - static QString help_page; + static TQString search_form; + static TQString help_page; - SwordProtocol::SwordProtocol(const QCString & pool_socket, - const QCString & app_socket) + SwordProtocol::SwordProtocol(const TQCString & pool_socket, + const TQCString & app_socket) : SlaveBase("kio_sword", pool_socket, app_socket) { kdDebug() << "SwordProtocol::SwordProtocol()" << endl; @@ -98,14 +98,14 @@ namespace KioSword void SwordProtocol::get(const KURL & url) { - QString modname; - QString query; - QString error; + TQString modname; + TQString query; + TQString error; kdDebug() << "SwordProtocol::get(const KURL& url)" << endl; /* kdDebug() << "Seconds: " << url.query() << endl; - QString remoteServer = url.host(); + TQString remoteServer = url.host(); int remotePort = url.port(); kdDebug() << "myURL: " << url.prettyURL() << endl; */ @@ -141,8 +141,8 @@ namespace KioSword } else { - modname = m_path.section('/', 0, 0, QString::SectionSkipEmpty); - query = m_path.section('/', 1, -1, QString::SectionSkipEmpty); + modname = m_path.section('/', 0, 0, TQString::SectionSkipEmpty); + query = m_path.section('/', 1, -1, TQString::SectionSkipEmpty); } } @@ -206,7 +206,7 @@ namespace KioSword if (!modname.isEmpty()) { m_renderer.moduleQuery(modname, query, m_options, tmplt); } else { - QString body; + TQString body; tmplt->setTitle(i18n("Modules - Kio-Sword")); if (!error.isEmpty()) { body = error; @@ -255,16 +255,16 @@ namespace KioSword finished(); } - /* redefine data for QCStrings so we don't send the trailing + /* redefine data for TQCStrings so we don't send the trailing null */ - void SwordProtocol::data(const QCString& text) { - QByteArray nonull; + void SwordProtocol::data(const TQCString& text) { + TQByteArray nonull; nonull.setRawData(text.data(), text.size()-1); SlaveBase::data(nonull); nonull.resetRawData(text.data(), text.size()-1); } - void SwordProtocol::data(const QByteArray& array) { + void SwordProtocol::data(const TQByteArray& array) { SlaveBase::data(array); } @@ -273,9 +273,9 @@ namespace KioSword m_options.readFromConfig(m_config); } - QString SwordProtocol::saveUserConfig() + TQString SwordProtocol::saveUserConfig() { - QString message; + TQString message; m_options.saveToConfig(m_config); m_config->sync(); // search form depends on settings, so force it to be recreated @@ -295,11 +295,11 @@ namespace KioSword // Reset data members that should always be // retrieved from URL m_action = QUERY; - m_path = QString::null; - m_redirect.module = QString::null; - m_redirect.query = QString::null; - m_previous.module = QString::null; - m_previous.query = QString::null; + m_path = TQString::null; + m_redirect.module = TQString::null; + m_redirect.query = TQString::null; + m_previous.module = TQString::null; + m_previous.query = TQString::null; m_moduletype = DEFMODULETYPE_NONE; if (url.hasPath()) @@ -310,10 +310,10 @@ namespace KioSword // URLs will be encoded in UTF-8 since they are sometimes // generated from the search form, and the browser will // encode in UTF-8 since the whole page has UTF-8 charset - QMap items = url.queryItems(KURL::CaseInsensitiveKeys, 106); - QMap::const_iterator it; - QMap::const_iterator it_end = items.end(); - QString val; + TQMap items = url.queryItems(KURL::CaseInsensitiveKeys, 106); + TQMap::const_iterator it; + TQMap::const_iterator it_end = items.end(); + TQString val; const char *key; for(it = items.begin(); it != it_end; it++) { @@ -366,8 +366,8 @@ namespace KioSword else ENUM_OPTION(m_action, "testsettings", REDIRECT_QUERY) else if (!strcasecmp(key, "previouspath")) { - m_previous.module = val.section('/', 0, 0, QString::SectionSkipEmpty); - m_previous.query = val.section('/', 1, -1, QString::SectionSkipEmpty); + m_previous.module = val.section('/', 0, 0, TQString::SectionSkipEmpty); + m_previous.query = val.section('/', 1, -1, TQString::SectionSkipEmpty); } } @@ -382,16 +382,16 @@ namespace KioSword void SwordProtocol::sendPage(const Template* tplt) { data(tplt->render(m_options)); - data(QByteArray()); // empty array means we're done sending the data + data(TQByteArray()); // empty array means we're done sending the data finished(); } /** Returns a string representing notes about an option for the settings page */ template - QString optionNotes(const Option& option) + TQString optionNotes(const Option& option) { - QString output; + TQString output; if (!option.m_propagate) { output += "1"; @@ -409,8 +409,8 @@ namespace KioSword /** HTML for a boolean option */ - QString settingsBooleanOptionRow(const QString& description, const Option& option) { - static const QString boolean_option_row( + TQString settingsBooleanOptionRow(const TQString& description, const Option& option) { + static const TQString boolean_option_row( "%1%4   %6%2, %7"); return boolean_option_row .arg(description + optionNotes(option)) @@ -432,10 +432,10 @@ namespace KioSword * @param optionList HTML containing the