📄 dom_textimpl.cpp
字号:
/** * 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) * Copyright (C) 2003 Apple Computer, Inc. * * 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. */#include "dom/dom_exception.h"#include "css/cssstyleselector.h"#include "xml/dom2_eventsimpl.h"#include "xml/dom_textimpl.h"#include "xml/dom_docimpl.h"#include "misc/htmlhashes.h"#include "rendering/render_text.h"#include <kdebug.h>using namespace DOM;using namespace khtml;CharacterDataImpl::CharacterDataImpl(DocumentPtr *doc) : NodeImpl(doc){ str = 0;}CharacterDataImpl::CharacterDataImpl(DocumentPtr *doc, const DOMString &_text) : NodeImpl(doc){ str = _text.impl ? _text.impl : new DOMStringImpl((QChar*)0, 0); str->ref();}CharacterDataImpl::~CharacterDataImpl(){ if(str) str->deref();}DOMString CharacterDataImpl::data() const{ return str;}void CharacterDataImpl::setData( const DOMString &_data, int &exceptioncode ){ // NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly if (isReadOnly()) { exceptioncode = DOMException::NO_MODIFICATION_ALLOWED_ERR; return; } if(str == _data.impl) return; // ### fire DOMCharacterDataModified if modified? DOMStringImpl *oldStr = str; str = _data.impl; if(str) str->ref(); if (m_render) (static_cast<RenderText*>(m_render))->setText(str); dispatchModifiedEvent(oldStr); if(oldStr) oldStr->deref();}unsigned long CharacterDataImpl::length() const{ return str->l;}DOMString CharacterDataImpl::substringData( const unsigned long offset, const unsigned long count, int &exceptioncode ){ exceptioncode = 0; checkCharDataOperation(offset, exceptioncode); if (exceptioncode) return DOMString(); return str->substring(offset,count);}void CharacterDataImpl::appendData( const DOMString &arg, int &exceptioncode ){ exceptioncode = 0; // NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly if (isReadOnly()) { exceptioncode = DOMException::NO_MODIFICATION_ALLOWED_ERR; return; } DOMStringImpl *oldStr = str; str = str->copy(); str->ref(); str->append(arg.impl); if (m_render) (static_cast<RenderText*>(m_render))->setTextWithOffset(str, oldStr->l, 0); dispatchModifiedEvent(oldStr); oldStr->deref();}void CharacterDataImpl::insertData( const unsigned long offset, const DOMString &arg, int &exceptioncode ){ exceptioncode = 0; checkCharDataOperation(offset, exceptioncode); if (exceptioncode) return; DOMStringImpl *oldStr = str; str = str->copy(); str->ref(); str->insert(arg.impl, offset); if (m_render) (static_cast<RenderText*>(m_render))->setTextWithOffset(str, offset, 0); dispatchModifiedEvent(oldStr); oldStr->deref();}void CharacterDataImpl::deleteData( const unsigned long offset, const unsigned long count, int &exceptioncode ){ exceptioncode = 0; checkCharDataOperation(offset, exceptioncode); if (exceptioncode) return; DOMStringImpl *oldStr = str; str = str->copy(); str->ref(); str->remove(offset,count); if (m_render) (static_cast<RenderText*>(m_render))->setTextWithOffset(str, offset, count); dispatchModifiedEvent(oldStr); oldStr->deref();}void CharacterDataImpl::replaceData( const unsigned long offset, const unsigned long count, const DOMString &arg, int &exceptioncode ){ exceptioncode = 0; checkCharDataOperation(offset, exceptioncode); if (exceptioncode) return; unsigned long realCount; if (offset + count > str->l) realCount = str->l-offset; else realCount = count; DOMStringImpl *oldStr = str; str = str->copy(); str->ref(); str->remove(offset,realCount); str->insert(arg.impl, offset); if (m_render) (static_cast<RenderText*>(m_render))->setTextWithOffset(str, offset, count); dispatchModifiedEvent(oldStr); oldStr->deref();}DOMString CharacterDataImpl::nodeValue() const{ return str;}bool CharacterDataImpl::containsOnlyWhitespace(unsigned int from, unsigned int len) const{ if (str) return str->containsOnlyWhitespace(from, len); return true;}bool CharacterDataImpl::containsOnlyWhitespace() const{ if (str) return str->containsOnlyWhitespace(); return true;}void CharacterDataImpl::setNodeValue( const DOMString &_nodeValue, int &exceptioncode ){ // NO_MODIFICATION_ALLOWED_ERR: taken care of by setData() setData(_nodeValue, exceptioncode);}void CharacterDataImpl::dispatchModifiedEvent(DOMStringImpl *prevValue){ if (parentNode()) parentNode()->childrenChanged(); if (!getDocument()->hasListenerType(DocumentImpl::DOMCHARACTERDATAMODIFIED_LISTENER)) return; DOMStringImpl *newValue = str->copy(); newValue->ref(); int exceptioncode = 0; dispatchEvent(new MutationEventImpl(EventImpl::DOMCHARACTERDATAMODIFIED_EVENT, true,false,0,prevValue,newValue,DOMString(),0),exceptioncode); newValue->deref(); dispatchSubtreeModifiedEvent();}void CharacterDataImpl::checkCharDataOperation( const unsigned long offset, int &exceptioncode ){ exceptioncode = 0; // INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than the number of 16-bit // units in data. if (offset > str->l) { exceptioncode = DOMException::INDEX_SIZE_ERR; return; } // NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly if (isReadOnly()) { exceptioncode = DOMException::NO_MODIFICATION_ALLOWED_ERR; return; }}long CharacterDataImpl::maxOffset() const { return (long)length();}long CharacterDataImpl::caretMinOffset() const { RenderText *r = static_cast<RenderText *>(renderer()); return r && r->isText() ? r->caretMinOffset() : 0;}long CharacterDataImpl::caretMaxOffset() const { RenderText *r = static_cast<RenderText *>(renderer()); return r && r->isText() ? r->caretMaxOffset() : (long)length();}unsigned long CharacterDataImpl::caretMaxRenderedOffset() const { RenderText *r = static_cast<RenderText *>(renderer()); return r ? r->caretMaxRenderedOffset() : length();}#ifndef NDEBUGvoid CharacterDataImpl::dump(QTextStream *stream, QString ind) const{ *stream << " str=\"" << DOMString(str).string().ascii() << "\""; NodeImpl::dump(stream,ind);}#endif// ---------------------------------------------------------------------------CommentImpl::CommentImpl(DocumentPtr *doc, const DOMString &_text) : CharacterDataImpl(doc, _text){}CommentImpl::CommentImpl(DocumentPtr *doc) : CharacterDataImpl(doc){}CommentImpl::~CommentImpl(){}DOMString CommentImpl::nodeName() const{ return "#comment";}unsigned short CommentImpl::nodeType() const{ return Node::COMMENT_NODE;}NodeImpl *CommentImpl::cloneNode(bool /*deep*/){ return getDocument()->createComment( str );}NodeImpl::Id CommentImpl::id() const{ return ID_COMMENT;}// DOM Section 1.1.1bool CommentImpl::childTypeAllowed( unsigned short /*type*/ ){ return false;}DOMString CommentImpl::toString() const{ // FIXME: substitute entity references as needed! return DOMString("<!--") + nodeValue() + "-->";}// ---------------------------------------------------------------------------// ### allow having children in text nodes for entities, comments etc.TextImpl::TextImpl(DocumentPtr *doc, const DOMString &_text) : CharacterDataImpl(doc, _text){}TextImpl::TextImpl(DocumentPtr *doc) : CharacterDataImpl(doc){}TextImpl::~TextImpl(){}TextImpl *TextImpl::splitText( const unsigned long offset, int &exceptioncode ){ exceptioncode = 0; // INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than // the number of 16-bit units in data. // ### we explicitly check for a negative long that has been cast to an unsigned long // ... this can happen if JS code passes in -1 - we need to catch this earlier! (in the // kjs bindings) if (offset > str->l || (long)offset < 0) { exceptioncode = DOMException::INDEX_SIZE_ERR; return 0; } // NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly. if (isReadOnly()) { exceptioncode = DOMException::NO_MODIFICATION_ALLOWED_ERR; return 0; } DOMStringImpl *oldStr = str; TextImpl *newText = createNew(str->substring(offset,str->l-offset)); str = str->copy(); str->ref(); str->remove(offset,str->l-offset); dispatchModifiedEvent(oldStr); oldStr->deref(); if (parentNode()) parentNode()->insertBefore(newText,nextSibling(), exceptioncode ); if ( exceptioncode ) return 0; if (m_render) (static_cast<RenderText*>(m_render))->setText(str); return newText;}DOMString TextImpl::nodeName() const{ return "#text";}unsigned short TextImpl::nodeType() const{ return Node::TEXT_NODE;}NodeImpl *TextImpl::cloneNode(bool /*deep*/){ return getDocument()->createTextNode(str);}bool TextImpl::rendererIsNeeded(RenderStyle *style){ if (!CharacterDataImpl::rendererIsNeeded(style)) { return false; } bool onlyWS = containsOnlyWhitespace(); if (!onlyWS) { return true; } RenderObject *par = parentNode()->renderer(); if (par->isTable() || par->isTableRow() || par->isTableSection()) { return false; } if (style->whiteSpace() == PRE) { return true; } if (par->isInline()) { // <span><div/> <div/></span> RenderObject *prev = previousRenderer(); if (prev && prev->isRenderBlock()) { return false; } } else { RenderObject *prev = previousRenderer(); if (par->isRenderBlock() && !par->childrenInline() && (!prev || !prev->isInline())) { return false; } RenderObject *first = par->firstChild(); RenderObject *next = nextRenderer(); if (!first || next == first) { // Whitespace at the start of a block just goes away. Don't even // make a render object for this text. return false; } } return true;}RenderObject *TextImpl::createRenderer(RenderArena *arena, RenderStyle *style){ return new (arena) RenderText(this, str);}void TextImpl::attach(){ createRendererIfNeeded(); CharacterDataImpl::attach();}NodeImpl::Id TextImpl::id() const{ return ID_TEXT;}void TextImpl::recalcStyle( StyleChange change ){// qDebug("textImpl::recalcStyle"); if (change != NoChange && parentNode()) {// qDebug("DomText::recalcStyle"); if(m_render) m_render->setStyle(parentNode()->renderer()->style()); } if ( changed() && m_render && m_render->isText() ) static_cast<RenderText*>(m_render)->setText(str); setChanged( false );}// DOM Section 1.1.1bool TextImpl::childTypeAllowed( unsigned short /*type*/ ){ return false;}TextImpl *TextImpl::createNew(DOMStringImpl *_str){ return new TextImpl(docPtr(),_str);}DOMString TextImpl::toString() const{ // FIXME: substitute entity references as needed! return nodeValue();}// ---------------------------------------------------------------------------CDATASectionImpl::CDATASectionImpl(DocumentPtr *impl, const DOMString &_text) : TextImpl(impl,_text){}CDATASectionImpl::CDATASectionImpl(DocumentPtr *impl) : TextImpl(impl){}CDATASectionImpl::~CDATASectionImpl(){}DOMString CDATASectionImpl::nodeName() const{ return "#cdata-section";}unsigned short CDATASectionImpl::nodeType() const{ return Node::CDATA_SECTION_NODE;}NodeImpl *CDATASectionImpl::cloneNode(bool /*deep*/){ return getDocument()->createCDATASection(str);}// DOM Section 1.1.1bool CDATASectionImpl::childTypeAllowed( unsigned short /*type*/ ){ return false;}TextImpl *CDATASectionImpl::createNew(DOMStringImpl *_str){ return new CDATASectionImpl(docPtr(),_str);}DOMString CDATASectionImpl::toString() const{ // FIXME: substitute entity references as needed! return DOMString("<![CDATA[") + nodeValue() + "]]>";}// ---------------------------------------------------------------------------EditingTextImpl::EditingTextImpl(DocumentPtr *impl, const DOMString &text) : TextImpl(impl, text){}EditingTextImpl::EditingTextImpl(DocumentPtr *impl) : TextImpl(impl){}EditingTextImpl::~EditingTextImpl(){}bool EditingTextImpl::rendererIsNeeded(RenderStyle *style){ return true;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -