/** * This file is part of the DOM implementation for KDE. * * (C) 1999-2003 Lars Knoll (knoll@kde.org) * Copyright (C) 2004 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. * * $Id: css_stylesheetimpl.cpp 7192 2004-08-04 22:05:48Z hyatt $ */ //#define CSS_STYLESHEET_DEBUG #include "dom/dom_string.h" #include "dom/dom_exception.h" #include "dom/css_stylesheet.h" #include "dom/css_rule.h" #include "css/css_ruleimpl.h" #include "css/css_valueimpl.h" #include "css/cssparser.h" #include "css/css_stylesheetimpl.h" #include "xml/dom_nodeimpl.h" #include "html/html_documentimpl.h" #include "misc/loader.h" #include "xml_namespace_table.h" #include using namespace DOM; using namespace khtml; // -------------------------------------------------------------------------------- StyleSheetImpl::StyleSheetImpl(StyleSheetImpl *parentSheet, DOMString href) : StyleListImpl(parentSheet) { m_disabled = false; m_media = 0; m_parentNode = 0; m_strHref = href; } StyleSheetImpl::StyleSheetImpl(DOM::NodeImpl *parentNode, DOMString href) : StyleListImpl() { m_parentNode = parentNode; m_disabled = false; m_media = 0; m_strHref = href; } StyleSheetImpl::StyleSheetImpl(StyleBaseImpl *owner, DOMString href) : StyleListImpl(owner) { m_disabled = false; m_media = 0; m_parentNode = 0; m_strHref = href; } StyleSheetImpl::~StyleSheetImpl() { if(m_media) { m_media->setParent( 0 ); m_media->deref(); } } StyleSheetImpl *StyleSheetImpl::parentStyleSheet() const { if( !m_parent ) return 0; if( m_parent->isStyleSheet() ) return static_cast(m_parent); return 0; } void StyleSheetImpl::setMedia( MediaListImpl *media ) { if( media ) media->ref(); if( m_media ) m_media->deref(); m_media = media; } // ----------------------------------------------------------------------- CSSStyleSheetImpl::CSSStyleSheetImpl(CSSStyleSheetImpl *parentSheet, DOMString href) : StyleSheetImpl(parentSheet, href) { m_lstChildren = new QPtrList; m_doc = parentSheet ? parentSheet->doc() : 0; m_implicit = false; m_namespaces = 0; } CSSStyleSheetImpl::CSSStyleSheetImpl(NodeImpl *parentNode, DOMString href, bool _implicit) : StyleSheetImpl(parentNode, href) { m_lstChildren = new QPtrList; m_doc = parentNode->getDocument(); m_implicit = _implicit; m_namespaces = 0; } CSSStyleSheetImpl::CSSStyleSheetImpl(CSSRuleImpl *ownerRule, DOMString href) : StyleSheetImpl(ownerRule, href) { m_lstChildren = new QPtrList; m_doc = 0; m_implicit = false; m_namespaces = 0; } CSSStyleSheetImpl::CSSStyleSheetImpl(DOM::NodeImpl *parentNode, CSSStyleSheetImpl *orig) : StyleSheetImpl(parentNode, orig->m_strHref) { m_lstChildren = new QPtrList; StyleBaseImpl *rule; for ( rule = orig->m_lstChildren->first(); rule != 0; rule = orig->m_lstChildren->next() ) { m_lstChildren->append(rule); rule->setParent(this); } m_doc = parentNode->getDocument(); m_implicit = false; m_namespaces = 0; } CSSStyleSheetImpl::CSSStyleSheetImpl(CSSRuleImpl *ownerRule, CSSStyleSheetImpl *orig) : StyleSheetImpl(ownerRule, orig->m_strHref) { // m_lstChildren is deleted in StyleListImpl m_lstChildren = new QPtrList; StyleBaseImpl *rule; for ( rule = orig->m_lstChildren->first(); rule != 0; rule = orig->m_lstChildren->next() ) { m_lstChildren->append(rule); rule->setParent(this); } m_doc = 0; m_implicit = false; m_namespaces = 0; } CSSRuleImpl *CSSStyleSheetImpl::ownerRule() const { if( !m_parent ) return 0; if( m_parent->isRule() ) return static_cast(m_parent); return 0; } unsigned long CSSStyleSheetImpl::insertRule( const DOMString &rule, unsigned long index, int &exceptioncode ) { exceptioncode = 0; if(index > m_lstChildren->count()) { exceptioncode = DOMException::INDEX_SIZE_ERR; return 0; } CSSParser p( strictParsing ); CSSRuleImpl *r = p.parseRule( this, rule ); if(!r) { exceptioncode = CSSException::SYNTAX_ERR + CSSException::_EXCEPTION_OFFSET; return 0; } // ### // HIERARCHY_REQUEST_ERR: Raised if the rule cannot be inserted at the specified index e.g. if an //@import rule is inserted after a standard rule set or other at-rule. m_lstChildren->insert(index, r); return index; } unsigned long CSSStyleSheetImpl::addRule( const DOMString &selector, const DOMString &style, long index, int &exceptioncode ) { if (index == -1) index = m_lstChildren->count(); return insertRule(selector + " { " + style + " }", index, exceptioncode); } CSSRuleList CSSStyleSheetImpl::cssRules() { return this; } void CSSStyleSheetImpl::deleteRule( unsigned long index, int &exceptioncode ) { exceptioncode = 0; StyleBaseImpl *b = m_lstChildren->take(index); if(!b) { exceptioncode = DOMException::INDEX_SIZE_ERR; return; } b->deref(); } void CSSStyleSheetImpl::addNamespace(CSSParser* p, const DOM::DOMString& prefix, const DOM::DOMString& uri) { if (uri.isEmpty()) return; m_namespaces = new CSSNamespace(prefix, uri, m_namespaces); if (prefix.isEmpty()) // Set the default namespace on the parser so that selectors that omit namespace info will // be able to pick it up easily. p->defaultNamespace = XmlNamespaceTable::getNamespaceID(uri, false); } void CSSStyleSheetImpl::determineNamespace(Q_UINT32& id, const DOM::DOMString& prefix) { // If the stylesheet has no namespaces we can just return. There won't be any need to ever check // namespace values in selectors. if (!m_namespaces) return; if (prefix.isEmpty()) id = makeId(noNamespace, localNamePart(id)); // No namespace. If an element/attribute has a namespace, we won't match it. else if (prefix == "*") id = makeId(anyNamespace, localNamePart(id)); // We'll match any namespace. else { CSSNamespace* ns = m_namespaces->namespaceForPrefix(prefix); if (ns) // Look up the id for this namespace URI. id = makeId(XmlNamespaceTable::getNamespaceID(ns->uri(), false), localNamePart(id)); } } bool CSSStyleSheetImpl::parseString(const DOMString &string, bool strict) { #ifdef CSS_STYLESHEET_DEBUG kdDebug( 6080 ) << "parsing sheet, len=" << string.length() << ", sheet is " << string.string() << endl; #endif strictParsing = strict; CSSParser p( strict ); p.parseSheet( this, string ); return true; } bool CSSStyleSheetImpl::isLoading() { StyleBaseImpl *rule; for ( rule = m_lstChildren->first(); rule != 0; rule = m_lstChildren->next() ) { if(rule->isImportRule()) { CSSImportRuleImpl *import = static_cast(rule); #ifdef CSS_STYLESHEET_DEBUG kdDebug( 6080 ) << "found import" << endl; #endif if(import->isLoading()) { #ifdef CSS_STYLESHEET_DEBUG kdDebug( 6080 ) << "--> not loaded" << endl; #endif return true; } } } return false; } void CSSStyleSheetImpl::checkLoaded() { if(isLoading()) return; if(m_parent) m_parent->checkLoaded(); if(m_parentNode) m_parentNode->sheetLoaded(); } khtml::DocLoader *CSSStyleSheetImpl::docLoader() { if ( !m_doc ) // doc is 0 for the user- and default-sheet! return 0; // ### remove? (clients just use sheet->doc()->docLoader()) return m_doc->docLoader(); } // --------------------------------------------------------------------------- StyleSheetListImpl::~StyleSheetListImpl() { for ( QPtrListIterator it ( styleSheets ); it.current(); ++it ) it.current()->deref(); } void StyleSheetListImpl::add( StyleSheetImpl* s ) { if ( !styleSheets.containsRef( s ) ) { s->ref(); styleSheets.append( s ); } } void StyleSheetListImpl::remove( StyleSheetImpl* s ) { if ( styleSheets.removeRef( s ) ) s->deref(); } unsigned long StyleSheetListImpl::length() const { // hack so implicit BODY stylesheets don't get counted here unsigned long l = 0; QPtrListIterator it(styleSheets); for (; it.current(); ++it) { if (!it.current()->isCSSStyleSheet() || !static_cast(it.current())->implicit()) l++; } return l; } StyleSheetImpl *StyleSheetListImpl::item ( unsigned long index ) { unsigned long l = 0; QPtrListIterator it(styleSheets); for (; it.current(); ++it) { if (!it.current()->isCSSStyleSheet() || !static_cast(it.current())->implicit()) { if (l == index) return it.current(); l++; } } return 0; } // -------------------------------------------------------------------------------------------- MediaListImpl::MediaListImpl( CSSStyleSheetImpl *parentSheet, const DOMString &media ) : StyleBaseImpl( parentSheet ) { setMediaText( media ); } MediaListImpl::MediaListImpl( CSSRuleImpl *parentRule, const DOMString &media ) : StyleBaseImpl(parentRule) { setMediaText( media ); } bool MediaListImpl::contains( const DOMString &medium ) const { return m_lstMedia.count() == 0 || m_lstMedia.contains( medium ) || m_lstMedia.contains( "all" ); } CSSStyleSheetImpl *MediaListImpl::parentStyleSheet() const { if( m_parent->isCSSStyleSheet() ) return static_cast(m_parent); return 0; } CSSRuleImpl *MediaListImpl::parentRule() const { if( m_parent->isRule() ) return static_cast(m_parent); return 0; } void MediaListImpl::deleteMedium( const DOMString &oldMedium ) { for ( QValueList::Iterator it = m_lstMedia.begin(); it != m_lstMedia.end(); ++it ) { if( (*it) == oldMedium ) { m_lstMedia.remove( it ); return; } } } DOM::DOMString MediaListImpl::mediaText() const { DOMString text; for ( QValueList::ConstIterator it = m_lstMedia.begin(); it != m_lstMedia.end(); ++it ) { text += *it; text += ", "; } return text; } void MediaListImpl::setMediaText(const DOM::DOMString &value) { m_lstMedia.clear(); QString val = value.string(); QStringList list = QStringList::split( ',', value.string() ); for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) { DOMString medium = (*it).stripWhiteSpace(); if( medium != "" ) m_lstMedia.append( medium ); } }