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

📄 html_documentimpl.h

📁 将konqueror浏览器移植到ARM9 2410中
💻 H
字号:
/** * This file is part of the DOM implementation for KDE. * * Copyright (C) 1999 Lars Knoll (knoll@kde.org) *           (C) 1999 Antti Koivisto (koivisto@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_documentimpl.h,v 1.52 2001/07/15 19:41:34 mueller Exp $ */#ifndef HTML_DOCUMENTIMPL_H#define HTML_DOCUMENTIMPL_H#include "dom_docimpl.h"#include "misc/loader_client.h"#include <qmap.h>class KHTMLView;class QString;namespace DOM {    class HTMLCollection;    class NodeList;    class Element;    class HTMLElement;    class HTMLElementImpl;    class DOMString;    class CSSStyleSheetImpl;    class HTMLMapElementImpl;class HTMLDocumentImpl : public DOM::DocumentImpl, public khtml::CachedObjectClient{    Q_OBJECTpublic:    HTMLDocumentImpl();    HTMLDocumentImpl(KHTMLView *v);    ~HTMLDocumentImpl();    virtual bool isHTMLDocument() const { return true; }    DOMString referrer() const;    DOMString domain() const;    HTMLElementImpl *body();    void setBody(HTMLElementImpl *_body);    virtual Tokenizer *createTokenizer();    NodeListImpl *getElementsByName ( const DOMString &elementName );    virtual void detach();    virtual bool childAllowed( NodeImpl *newChild );    void setOnload( const QString &script ) { onloadScript = script; }    void setOnunload( const QString &script ) { onUnloadScript = script; }    virtual ElementImpl *createElement ( const DOMString &tagName );    HTMLMapElementImpl* getMap(const DOMString& url_);protected:    HTMLElementImpl *bodyElement;    HTMLElementImpl *htmlElement;    friend class HTMLMapElementImpl;    friend class HTMLImageElementImpl;    QMap<QString,HTMLMapElementImpl*> mapMap;    QString onloadScript;    QString onUnloadScript;protected slots:    /**     * Repaints, so that all links get the proper color     */    void slotHistoryChanged();};// ###  this is a temporary class just to get us going with XHTML// eventually HTMLTokenizer will be able to detect if the document is XHTML or HTMLclass XHTMLDocumentImpl : public HTMLDocumentImpl{    Q_OBJECTpublic:    XHTMLDocumentImpl();    XHTMLDocumentImpl(KHTMLView *v);    ~XHTMLDocumentImpl();    virtual Tokenizer *createTokenizer();};}; //namespace#endif

⌨️ 快捷键说明

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