diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:21 -0600 |
commit | dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 (patch) | |
tree | c297348a55df66c571de4525646e0b9762427353 /tdehtml/tdehtml_iface.cc | |
parent | b7658a0d5eca24a9d37c6e04f88298ef02389db0 (diff) | |
download | tdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.tar.gz tdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tdehtml/tdehtml_iface.cc')
-rw-r--r-- | tdehtml/tdehtml_iface.cc | 233 |
1 files changed, 233 insertions, 0 deletions
diff --git a/tdehtml/tdehtml_iface.cc b/tdehtml/tdehtml_iface.cc new file mode 100644 index 000000000..e42562c51 --- /dev/null +++ b/tdehtml/tdehtml_iface.cc @@ -0,0 +1,233 @@ +/* This file is part of the KDE project + * + * Copyright (C) 2002 Stephan Kulow <coolo@kde.org> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + +#include "tdehtml_iface.h" +#include "tdehtml_part.h" +#include "tdehtmlview.h" +#include "tdehtml_ext.h" +#include <kio/global.h> +#include <tqapplication.h> +#include <tqvariant.h> + +KHTMLPartIface::KHTMLPartIface( KHTMLPart *_part ) + : DCOPObject( _part->dcopObjectId() ), part(_part) +{ +} + +KHTMLPartIface::~KHTMLPartIface() +{ +} + +KURL KHTMLPartIface::url() const +{ + return part->url(); +} + +void KHTMLPartIface::setJScriptEnabled( bool enable ) +{ + part->setJScriptEnabled(enable); +} + +bool KHTMLPartIface::jScriptEnabled() const +{ + return part->jScriptEnabled(); +} + +bool KHTMLPartIface::closeURL() +{ + return part->closeURL(); +} + +bool KHTMLPartIface::metaRefreshEnabled() const +{ + return part->metaRefreshEnabled(); +} + +void KHTMLPartIface::setDNDEnabled( bool b ) +{ + part->setDNDEnabled(b); +} + +bool KHTMLPartIface::dndEnabled() const +{ + return part->dndEnabled(); +} + +void KHTMLPartIface::setJavaEnabled( bool enable ) +{ + part->setJavaEnabled( enable ); +} + +bool KHTMLPartIface::javaEnabled() const +{ + return part->javaEnabled(); +} + +void KHTMLPartIface::setPluginsEnabled( bool enable ) +{ + part->setPluginsEnabled( enable ); +} + +bool KHTMLPartIface::pluginsEnabled() const +{ + return part->pluginsEnabled(); +} + +void KHTMLPartIface::setAutoloadImages( bool enable ) +{ + part->setAutoloadImages( enable ); +} + +bool KHTMLPartIface::autoloadImages() const +{ + return part->autoloadImages(); +} + +void KHTMLPartIface::setOnlyLocalReferences(bool enable) +{ + part->setOnlyLocalReferences(enable); +} + +void KHTMLPartIface::setMetaRefreshEnabled( bool enable ) +{ + part->setMetaRefreshEnabled(enable); +} + +bool KHTMLPartIface::onlyLocalReferences() const +{ + return part->onlyLocalReferences(); +} + +bool KHTMLPartIface::setEncoding( const TQString &name ) +{ + return part->setEncoding(name); +} + +TQString KHTMLPartIface::encoding() const +{ + return part->encoding(); +} + +void KHTMLPartIface::setFixedFont( const TQString &name ) +{ + part->setFixedFont(name); + +} + +bool KHTMLPartIface::gotoAnchor( const TQString &name ) +{ + return part->gotoAnchor(name); +} + +bool KHTMLPartIface::nextAnchor() +{ + return part->nextAnchor(); +} + +bool KHTMLPartIface::prevAnchor() +{ + return part->prevAnchor(); +} + +void KHTMLPartIface::activateNode() +{ + KParts::ReadOnlyPart* p = part->currentFrame(); + if ( p && p->widget() ) { + TQKeyEvent ev( TQKeyEvent::KeyPress, Qt::Key_Return, '\n', 0, "\n" ); + TQApplication::sendEvent( p->widget(), &ev ); + } +} + +void KHTMLPartIface::selectAll() +{ + part->selectAll(); +} + +TQString KHTMLPartIface::lastModified() const +{ + return part->lastModified(); +} + +void KHTMLPartIface::debugRenderTree() +{ + part->slotDebugRenderTree(); +} + +void KHTMLPartIface::debugDOMTree() +{ + part->slotDebugDOMTree(); +} + +void KHTMLPartIface::stopAnimations() +{ + part->slotStopAnimations(); +} + +void KHTMLPartIface::viewDocumentSource() +{ + part->slotViewDocumentSource(); +} + +void KHTMLPartIface::saveBackground(const TQString &destination) +{ + KURL back = part->backgroundURL(); + if (back.isEmpty()) + return; + + TDEIO::MetaData metaData; + metaData["referrer"] = part->referrer(); + KHTMLPopupGUIClient::saveURL( back, KURL( destination ), metaData ); +} + +void KHTMLPartIface::saveDocument(const TQString &destination) +{ + KURL srcURL( part->url() ); + + if ( srcURL.fileName(false).isEmpty() ) + srcURL.setFileName( "index.html" ); + + TDEIO::MetaData metaData; + // Referrer unknown? + KHTMLPopupGUIClient::saveURL( srcURL, KURL( destination ), metaData, part->cacheId() ); +} + +void KHTMLPartIface::setUserStyleSheet(const TQString &styleSheet) +{ + part->setUserStyleSheet(styleSheet); +} + +TQString KHTMLPartIface::selectedText() const +{ + return part->selectedText(); +} + +void KHTMLPartIface::viewFrameSource() +{ + part->slotViewFrameSource(); +} + +TQString KHTMLPartIface::evalJS(const TQString &script) +{ + return part->executeScript(DOM::Node(), script).toString(); +} + +void KHTMLPartIface::print( bool quick ) { + part->view()->print( quick ); +} |