⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 html_document.cpp

📁 将konqueror浏览器移植到ARM9 2410中
💻 CPP
字号:
/** * This file is part of the DOM implementation for KDE. * * (C) 1999 Lars Knoll (knoll@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., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * * $Id: html_document.cpp,v 1.21 2001/07/15 19:57:09 mueller Exp $ */// --------------------------------------------------------------------------#include <dcopclient.h>#include <kapp.h>#include <kdebug.h>#include "html_document.h"#include "dom_node.h"#include "dom_element.h"#include "dom_doc.h"#include "dom_string.h"#include "dom_textimpl.h"#include "html_misc.h"#include "html_element.h"#include "html_documentimpl.h"#include "html_elementimpl.h"#include "html_miscimpl.h"#include "htmlhashes.h"#include "khtmlview.h"using namespace DOM;HTMLDocument::HTMLDocument() : Document(false) // create the impl here{    impl = new HTMLDocumentImpl();    impl->ref();}HTMLDocument::HTMLDocument(KHTMLView *parent)    : Document(false) // create the impl here{    impl = new HTMLDocumentImpl( parent);    impl->ref();}HTMLDocument::HTMLDocument(const HTMLDocument &other) : Document(other){}HTMLDocument::HTMLDocument(HTMLDocumentImpl *impl) : Document(impl){}HTMLDocument &HTMLDocument::operator = (const Node &other){    if(other.nodeType() != DOCUMENT_NODE)    {	impl = 0;	return *this;    }    Document d;    d = other;    if(!d.isHTMLDocument())	impl = 0;    else	Node::operator =(other);    return *this;}HTMLDocument &HTMLDocument::operator = (const HTMLDocument &other){    Document::operator =(other);    return *this;}HTMLDocument::~HTMLDocument(){}DOMString HTMLDocument::title() const{    if(!impl) return DOMString();    NodeImpl *e = static_cast<HTMLDocumentImpl *>(impl)->findElement(ID_TITLE);    if(!e) return DOMString();    NodeImpl *t = e->firstChild();    if(!t) return DOMString();    // ### join all text nodes within <TITLE>    return static_cast<TextImpl *>(t)->data();}void HTMLDocument::setTitle( const DOMString &/*value*/ ){    // ###}DOMString HTMLDocument::referrer() const{    if(!impl) return DOMString();    return ((HTMLDocumentImpl *)impl)->referrer();}DOMString HTMLDocument::domain() const{    if(!impl) return DOMString();    return ((HTMLDocumentImpl *)impl)->domain();}DOMString HTMLDocument::URL() const{    if(!impl) return DOMString();    return ((HTMLDocumentImpl *)impl)->URL();}HTMLElement HTMLDocument::body() const{    if(!impl) return 0;    return ((HTMLDocumentImpl *)impl)->body();}void HTMLDocument::setBody(const HTMLElement &_body){    if (!impl) return;    ((HTMLDocumentImpl *)impl)->setBody(static_cast<HTMLElementImpl *>(_body.handle()));    return;}HTMLCollection HTMLDocument::images() const{    if(!impl) return HTMLCollection();    return HTMLCollection(impl, HTMLCollectionImpl::DOC_IMAGES);}HTMLCollection HTMLDocument::applets() const{    if(!impl) return HTMLCollection();    return HTMLCollection(impl, HTMLCollectionImpl::DOC_APPLETS);}HTMLCollection HTMLDocument::links() const{    if(!impl) return HTMLCollection();    return HTMLCollection(impl, HTMLCollectionImpl::DOC_LINKS);}HTMLCollection HTMLDocument::forms() const{    if(!impl) return HTMLCollection();    return HTMLCollection(impl, HTMLCollectionImpl::DOC_FORMS);}HTMLCollection HTMLDocument::anchors() const{    if(!impl) return HTMLCollection();    return HTMLCollection(impl, HTMLCollectionImpl::DOC_ANCHORS);}HTMLCollection HTMLDocument::all() const{    if(!impl) return HTMLCollection();    return HTMLCollection(impl, HTMLCollectionImpl::DOC_ALL);}DOMString HTMLDocument::cookie() const{    QCString replyType;    QByteArray params, reply;    QDataStream stream(params, IO_WriteOnly);    stream << URL().string();    if (!kapp->dcopClient()->call("kcookiejar", "kcookiejar",				  "findDOMCookies(QString)", params, replyType, reply)) {	 kdWarning(6010) << "Can't communicate with cookiejar!" << endl;	 return DOMString();    }    QDataStream stream2(reply, IO_ReadOnly);    if(replyType != "QString") {	 kdError(6010) << "DCOP function findDOMCookies(...) returns "		       << replyType << ", expected QString" << endl;	 return DOMString();    }    QString result;    stream2 >> result;    return DOMString(result);}void HTMLDocument::setCookie( const DOMString & value ){    long windowId = view()->winId();    QByteArray params;    QDataStream stream(params, IO_WriteOnly);    QString fake_header("Set-Cookie: ");    fake_header.append(value.string());    fake_header.append("\n");    stream << URL().string() << fake_header.utf8() << windowId;    if (!kapp->dcopClient()->send("kcookiejar", "kcookiejar",				  "addCookies(QString,QCString,long int)", params))    {	 kdWarning(6010) << "Can't communicate with cookiejar!" << endl;    }}void HTMLDocument::open(  ){    if(impl)        ((HTMLDocumentImpl *)impl)->open(  );}void HTMLDocument::close(  ){    if(impl)        ((HTMLDocumentImpl *)impl)->close(  );}void HTMLDocument::write( const DOMString &text ){    if(impl)        ((HTMLDocumentImpl *)impl)->write( text );}void HTMLDocument::write( const QString &text ){    if(impl)        ((HTMLDocumentImpl *)impl)->write( text );}void HTMLDocument::writeln( const DOMString &text ){    if(impl)        ((HTMLDocumentImpl *)impl)->writeln( text );}Element HTMLDocument::getElementById( const DOMString &elementId ){    if(!impl) return 0;    return ((HTMLDocumentImpl *)impl)->getElementById( elementId );}NodeList HTMLDocument::getElementsByName( const DOMString &elementName ){    if(!impl) return 0;    return ((HTMLDocumentImpl *)impl)->getElementsByName( elementName );}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -