diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /khtml/khtml_iface.cc | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khtml/khtml_iface.cc')
-rw-r--r-- | khtml/khtml_iface.cc | 233 |
1 files changed, 233 insertions, 0 deletions
diff --git a/khtml/khtml_iface.cc b/khtml/khtml_iface.cc new file mode 100644 index 000000000..4829624b9 --- /dev/null +++ b/khtml/khtml_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 "khtml_iface.h" +#include "khtml_part.h" +#include "khtmlview.h" +#include "khtml_ext.h" +#include <kio/global.h> +#include <qapplication.h> +#include <qvariant.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 QString &name ) +{ + return part->setEncoding(name); +} + +QString KHTMLPartIface::encoding() const +{ + return part->encoding(); +} + +void KHTMLPartIface::setFixedFont( const QString &name ) +{ + part->setFixedFont(name); + +} + +bool KHTMLPartIface::gotoAnchor( const QString &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() ) { + QKeyEvent ev( QKeyEvent::KeyPress, Qt::Key_Return, '\n', 0, "\n" ); + QApplication::sendEvent( p->widget(), &ev ); + } +} + +void KHTMLPartIface::selectAll() +{ + part->selectAll(); +} + +QString 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 QString &destination) +{ + KURL back = part->backgroundURL(); + if (back.isEmpty()) + return; + + KIO::MetaData metaData; + metaData["referrer"] = part->referrer(); + KHTMLPopupGUIClient::saveURL( back, KURL( destination ), metaData ); +} + +void KHTMLPartIface::saveDocument(const QString &destination) +{ + KURL srcURL( part->url() ); + + if ( srcURL.fileName(false).isEmpty() ) + srcURL.setFileName( "index.html" ); + + KIO::MetaData metaData; + // Referrer unknown? + KHTMLPopupGUIClient::saveURL( srcURL, KURL( destination ), metaData, part->cacheId() ); +} + +void KHTMLPartIface::setUserStyleSheet(const QString &styleSheet) +{ + part->setUserStyleSheet(styleSheet); +} + +QString KHTMLPartIface::selectedText() const +{ + return part->selectedText(); +} + +void KHTMLPartIface::viewFrameSource() +{ + part->slotViewFrameSource(); +} + +QString KHTMLPartIface::evalJS(const QString &script) +{ + return part->executeScript(DOM::Node(), script).toString(); +} + +void KHTMLPartIface::print( bool quick ) { + part->view()->print( quick ); +} |