📄 dom_xmlimpl.h
字号:
/*
* This file is part of the DOM implementation for KDE.
*
* Copyright (C) 2000 Peter Kelly (pmk@post.com)
*
* 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.
*
*/
#ifndef _DOM_XmlImpl_h_
#define _DOM_XmlImpl_h_
#include "xml/dom_nodeimpl.h"
#include "misc/loader_client.h"
namespace khtml {
class CachedCSSStyleSheet;
};
namespace DOM {
class DocumentImpl;
class CSSStyleSheetImpl;
class StyleSheetImpl;
class DOMString;
#if APPLE_CHANGES
class ProcessingInstruction;
#endif
class EntityImpl : public NodeBaseImpl
{
public:
EntityImpl(DocumentPtr *doc);
EntityImpl(DocumentPtr *doc, DOMString _name);
EntityImpl(DocumentPtr *doc, DOMString _publicId, DOMString _systemId, DOMString _notationName);
virtual ~EntityImpl();
// DOM methods & attributes for Entity
virtual DOMString publicId() const;
virtual DOMString systemId() const;
virtual DOMString notationName() const;
// DOM methods overridden from parent classes
virtual DOMString nodeName() const;
virtual unsigned short nodeType() const;
virtual NodeImpl *cloneNode ( bool deep );
// Other methods (not part of DOM)
virtual bool childTypeAllowed( unsigned short type );
virtual DOMString toString() const;
protected:
DOMStringImpl *m_publicId;
DOMStringImpl *m_systemId;
DOMStringImpl *m_notationName;
DOMStringImpl *m_name;
};
class EntityReferenceImpl : public NodeBaseImpl
{
public:
EntityReferenceImpl(DocumentPtr *doc);
EntityReferenceImpl(DocumentPtr *doc, DOMStringImpl *_entityName);
virtual ~EntityReferenceImpl();
// DOM methods overridden from parent classes
virtual DOMString nodeName() const;
virtual unsigned short nodeType() const;
virtual NodeImpl *cloneNode ( bool deep );
// Other methods (not part of DOM)
virtual bool childTypeAllowed( unsigned short type );
virtual DOMString toString() const;
protected:
DOMStringImpl *m_entityName;
};
class NotationImpl : public NodeBaseImpl
{
public:
NotationImpl(DocumentPtr *doc);
NotationImpl(DocumentPtr *doc, DOMString _name, DOMString _publicId, DOMString _systemId);
virtual ~NotationImpl();
// DOM methods & attributes for Notation
virtual DOMString publicId() const;
virtual DOMString systemId() const;
// DOM methods overridden from parent classes
virtual DOMString nodeName() const;
virtual unsigned short nodeType() const;
virtual NodeImpl *cloneNode ( bool deep );
// Other methods (not part of DOM)
virtual bool childTypeAllowed( unsigned short type );
protected:
DOMStringImpl *m_name;
DOMStringImpl *m_publicId;
DOMStringImpl *m_systemId;
};
class ProcessingInstructionImpl : public NodeBaseImpl, private khtml::CachedObjectClient
{
public:
ProcessingInstructionImpl(DocumentPtr *doc);
ProcessingInstructionImpl(DocumentPtr *doc, DOMString _target, DOMString _data);
virtual ~ProcessingInstructionImpl();
// DOM methods & attributes for Notation
virtual DOMString target() const;
virtual DOMString data() const;
virtual void setData( const DOMString &_data, int &exceptioncode );
// DOM methods overridden from parent classes
virtual DOMString nodeName() const;
virtual unsigned short nodeType() const;
virtual DOMString nodeValue() const;
virtual void setNodeValue( const DOMString &_nodeValue, int &exceptioncode );
virtual NodeImpl *cloneNode ( bool deep );
// Other methods (not part of DOM)
virtual DOMString localHref() const;
virtual bool childTypeAllowed( unsigned short type );
StyleSheetImpl *sheet() const;
bool checkStyleSheet();
virtual void setStyleSheet(const DOMString &url, const DOMString &sheet);
virtual void setStyleSheet(CSSStyleSheetImpl* sheet);
bool isLoading() const;
void sheetLoaded();
#ifdef KHTML_XSLT
bool isXSL() const { return m_isXSL; }
#endif
virtual DOMString toString() const;
#if APPLE_CHANGES
static ProcessingInstruction createInstance(ProcessingInstructionImpl *impl);
#endif
protected:
DOMStringImpl *m_target;
DOMStringImpl *m_data;
DOMStringImpl *m_localHref;
khtml::CachedObject *m_cachedSheet;
StyleSheetImpl *m_sheet;
bool m_loading;
#ifdef KHTML_XSLT
bool m_isXSL;
#endif
};
}; //namespace
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -