xsl_stylesheetimpl.h   [plain text]


/*
 * This file is part of the XSL implementation.
 *
 * 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.
 *
 */
#ifndef _xsl_stylesheetimpl_h_
#define _xsl_stylesheetimpl_h_

#ifdef KHTML_XSLT

#include "css/css_stylesheetimpl.h"
#include "misc/loader.h"

#include <libxml/parser.h>
#include <libxml/parserInternals.h>

#include <libxslt/transform.h>

namespace DOM {

class XSLImportRuleImpl;
    
class XSLStyleSheetImpl : public StyleSheetImpl
{
public:
    XSLStyleSheetImpl(DOM::NodeImpl *parentNode, DOM::DOMString href = DOMString(), bool embedded = false);
    XSLStyleSheetImpl(XSLImportRuleImpl* parentImport, DOM::DOMString href = DOMString());
    ~XSLStyleSheetImpl();
    
    virtual bool isXSLStyleSheet() const { return true; }

    virtual DOM::DOMString type() const { return "text/xml"; }

    virtual bool parseString(const DOMString &string, bool strict = true);
    
    virtual bool isLoading();
    virtual void checkLoaded();

    void loadChildSheets();
    void loadChildSheet(const QString& href);

    xsltStylesheetPtr compileStyleSheet();

    khtml::DocLoader *docLoader();

    DocumentImpl* ownerDocument() { return m_ownerDocument; }
    void setOwnerDocument(DocumentImpl* doc) { m_ownerDocument = doc; }

    xmlDocPtr document() { return m_stylesheetDoc; }
    void setDocument(xmlDocPtr doc) { m_stylesheetDoc = doc; }

    void clearDocuments();

    xmlDocPtr locateStylesheetSubResource(xmlDocPtr parentDoc, const xmlChar* uri);
    
    void markAsProcessed() { m_processed = true; }
    bool processed() const { return m_processed; }

protected:
    DocumentImpl* m_ownerDocument;
    xmlDocPtr m_stylesheetDoc;
    bool m_embedded;
    bool m_processed;
};

class XSLImportRuleImpl : public khtml::CachedObjectClient, public StyleBaseImpl
{
public:
    XSLImportRuleImpl( StyleBaseImpl *parent, const DOM::DOMString &href);
    virtual ~XSLImportRuleImpl();
    
    DOM::DOMString href() const { return m_strHref; }
    XSLStyleSheetImpl* styleSheet() const { return m_styleSheet; }
    
    virtual bool isImportRule() { return true; }
    XSLStyleSheetImpl* parentStyleSheet() const;
    
    // from CachedObjectClient
    virtual void setStyleSheet(const DOM::DOMString &url, const DOM::DOMString &sheet);
    
    bool isLoading();
    void loadSheet();
    
protected:
    DOMString m_strHref;
    XSLStyleSheetImpl* m_styleSheet;
    khtml::CachedXSLStyleSheet* m_cachedSheet;
    bool m_loading;
};

}
#endif
#endif