123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /*
- * This file is part of the XSL implementation.
- *
- * Copyright (C) 2009 Jakub Wieczorek <faw217@gmail.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., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
- #include "config.h"
- #include "XSLStyleSheet.h"
- #if ENABLE(XSLT)
- #include "DOMWindow.h"
- #include "Document.h"
- #include "Node.h"
- #include "NotImplemented.h"
- #include "XSLImportRule.h"
- #include "XSLTProcessor.h"
- namespace WebCore {
- XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded)
- : m_ownerNode(parentNode)
- , m_originalURL(originalURL)
- , m_finalURL(finalURL)
- , m_isDisabled(false)
- , m_embedded(embedded)
- {
- }
- XSLStyleSheet::~XSLStyleSheet()
- {
- for (unsigned i = 0; i < m_children.size(); ++i) {
- ASSERT(m_children.at(i)->parentStyleSheet() == this);
- m_children.at(i)->setParentStyleSheet(0);
- }
- }
- bool XSLStyleSheet::isLoading() const
- {
- notImplemented();
- return false;
- }
- void XSLStyleSheet::checkLoaded()
- {
- if (ownerNode())
- ownerNode()->sheetLoaded();
- }
- void XSLStyleSheet::clearDocuments()
- {
- notImplemented();
- }
- CachedResourceLoader* XSLStyleSheet::cachedResourceLoader()
- {
- Document* document = ownerDocument();
- if (!document)
- return 0;
- return document->cachedResourceLoader();
- }
- bool XSLStyleSheet::parseString(const String& string)
- {
- // FIXME: Fix QXmlQuery so that it allows compiling the stylesheet before setting the document
- // to be transformed. This way we could not only check if the stylesheet is correct before using it
- // but also turn XSLStyleSheet::sheetString() into XSLStyleSheet::query() that returns a QXmlQuery.
- m_sheetString = string;
- return !m_sheetString.isEmpty();
- }
- void XSLStyleSheet::loadChildSheets()
- {
- notImplemented();
- }
- void XSLStyleSheet::loadChildSheet(const String&)
- {
- notImplemented();
- }
- Document* XSLStyleSheet::ownerDocument()
- {
- Node* node = ownerNode();
- return node ? node->document() : 0;
- }
- void XSLStyleSheet::setParentStyleSheet(XSLStyleSheet*)
- {
- notImplemented();
- }
- void XSLStyleSheet::markAsProcessed()
- {
- notImplemented();
- }
- } // namespace WebCore
- #endif // ENABLE(XSLT)
|