mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-13 11:10:13 +01:00
259 lines
5.9 KiB
C++
259 lines
5.9 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is TransforMiiX XSLT processor code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Keith Visco.
|
|
* Portions created by the Initial Developer are Copyright (C) 1999
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#ifndef TRANSFRMX_XSLT_FUNCTIONS_H
|
|
#define TRANSFRMX_XSLT_FUNCTIONS_H
|
|
|
|
#include "Expr.h"
|
|
#include "XMLUtils.h"
|
|
#include "nsAutoPtr.h"
|
|
|
|
class txPattern;
|
|
class txStylesheet;
|
|
class txKeyValueHashKey;
|
|
class txExecutionState;
|
|
class txNamespaceMap;
|
|
|
|
/**
|
|
* The definition for the XSLT document() function
|
|
**/
|
|
class DocumentFunctionCall : public FunctionCall {
|
|
|
|
public:
|
|
|
|
/**
|
|
* Creates a new document() function call
|
|
**/
|
|
DocumentFunctionCall(const nsAString& aBaseURI);
|
|
|
|
TX_DECL_FUNCTION;
|
|
|
|
private:
|
|
nsString mBaseURI;
|
|
};
|
|
|
|
/*
|
|
* The definition for the XSLT key() function
|
|
*/
|
|
class txKeyFunctionCall : public FunctionCall {
|
|
|
|
public:
|
|
|
|
/*
|
|
* Creates a new key() function call
|
|
*/
|
|
txKeyFunctionCall(txNamespaceMap* aMappings);
|
|
|
|
TX_DECL_FUNCTION;
|
|
|
|
private:
|
|
nsRefPtr<txNamespaceMap> mMappings;
|
|
};
|
|
|
|
/**
|
|
* The definition for the XSLT format-number() function
|
|
**/
|
|
class txFormatNumberFunctionCall : public FunctionCall {
|
|
|
|
public:
|
|
|
|
/**
|
|
* Creates a new format-number() function call
|
|
**/
|
|
txFormatNumberFunctionCall(txStylesheet* aStylesheet, txNamespaceMap* aMappings);
|
|
|
|
TX_DECL_FUNCTION;
|
|
|
|
private:
|
|
static const PRUnichar FORMAT_QUOTE;
|
|
|
|
enum FormatParseState {
|
|
Prefix,
|
|
IntDigit,
|
|
IntZero,
|
|
FracZero,
|
|
FracDigit,
|
|
Suffix,
|
|
Finished
|
|
};
|
|
|
|
txStylesheet* mStylesheet;
|
|
nsRefPtr<txNamespaceMap> mMappings;
|
|
};
|
|
|
|
/**
|
|
* DecimalFormat
|
|
* A representation of the XSLT element <xsl:decimal-format>
|
|
*/
|
|
class txDecimalFormat : public TxObject {
|
|
|
|
public:
|
|
/*
|
|
* Creates a new decimal format and initilizes all properties with
|
|
* default values
|
|
*/
|
|
txDecimalFormat();
|
|
MBool isEqual(txDecimalFormat* other);
|
|
|
|
PRUnichar mDecimalSeparator;
|
|
PRUnichar mGroupingSeparator;
|
|
nsString mInfinity;
|
|
PRUnichar mMinusSign;
|
|
nsString mNaN;
|
|
PRUnichar mPercent;
|
|
PRUnichar mPerMille;
|
|
PRUnichar mZeroDigit;
|
|
PRUnichar mDigit;
|
|
PRUnichar mPatternSeparator;
|
|
};
|
|
|
|
/**
|
|
* The definition for the XSLT current() function
|
|
**/
|
|
class CurrentFunctionCall : public FunctionCall {
|
|
|
|
public:
|
|
|
|
/**
|
|
* Creates a new current() function call
|
|
**/
|
|
CurrentFunctionCall();
|
|
|
|
TX_DECL_FUNCTION;
|
|
};
|
|
|
|
/**
|
|
* The definition for the XSLT unparsed-entity-uri() function
|
|
**/
|
|
class UnparsedEntityUriFunctionCall : public FunctionCall {
|
|
|
|
public:
|
|
|
|
/**
|
|
* Creates a new unparsed-entity-uri() function call
|
|
**/
|
|
UnparsedEntityUriFunctionCall();
|
|
|
|
TX_DECL_FUNCTION;
|
|
|
|
private:
|
|
};
|
|
|
|
/**
|
|
* The definition for the XSLT generate-id() function
|
|
**/
|
|
class GenerateIdFunctionCall : public FunctionCall {
|
|
|
|
public:
|
|
|
|
/**
|
|
* Creates a new generate-id() function call
|
|
**/
|
|
GenerateIdFunctionCall();
|
|
|
|
TX_DECL_FUNCTION;
|
|
};
|
|
|
|
/**
|
|
* The definition for the XSLT system-property() function
|
|
**/
|
|
class SystemPropertyFunctionCall : public FunctionCall {
|
|
|
|
public:
|
|
|
|
/**
|
|
* Creates a new system-property() function call
|
|
* aNode is the Element in the stylesheet containing the
|
|
* Expr and is used for namespaceID resolution
|
|
**/
|
|
SystemPropertyFunctionCall(txNamespaceMap* aMappings);
|
|
|
|
TX_DECL_FUNCTION;
|
|
|
|
private:
|
|
/*
|
|
* resolve namespaceIDs with this node
|
|
*/
|
|
nsRefPtr<txNamespaceMap> mMappings;
|
|
};
|
|
|
|
/**
|
|
* The definition for the XSLT element-available() function
|
|
**/
|
|
class ElementAvailableFunctionCall : public FunctionCall {
|
|
|
|
public:
|
|
|
|
/**
|
|
* Creates a new element-available() function call
|
|
* aNode is the Element in the stylesheet containing the
|
|
* Expr and is used for namespaceID resolution
|
|
**/
|
|
ElementAvailableFunctionCall(txNamespaceMap* aMappings);
|
|
|
|
TX_DECL_FUNCTION;
|
|
|
|
private:
|
|
/*
|
|
* resolve namespaceIDs with this node
|
|
*/
|
|
nsRefPtr<txNamespaceMap> mMappings;
|
|
};
|
|
|
|
/**
|
|
* The definition for the XSLT function-available() function
|
|
**/
|
|
class FunctionAvailableFunctionCall : public FunctionCall {
|
|
|
|
public:
|
|
|
|
/**
|
|
* Creates a new function-available() function call
|
|
**/
|
|
FunctionAvailableFunctionCall(txNamespaceMap* aMappings);
|
|
|
|
TX_DECL_FUNCTION;
|
|
|
|
private:
|
|
/*
|
|
* resolve namespaceIDs with this node
|
|
*/
|
|
nsRefPtr<txNamespaceMap> mMappings;
|
|
};
|
|
|
|
#endif
|