/**************************************************************************** ** ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the QtDeclarative module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU General ** Public License version 3.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of this ** file. Please review the following information to ensure the GNU General ** Public License version 3.0 requirements will be met: ** http://www.gnu.org/copyleft/gpl.html. ** ** Other Usage ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QDECLARATIVEBUILTINFUNCTIONS_P_H #define QDECLARATIVEBUILTINFUNCTIONS_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include QT_BEGIN_NAMESPACE namespace QDeclarativeBuiltinFunctions { v8::Handle gc(const v8::Arguments &args); v8::Handle consoleError(const v8::Arguments &args); v8::Handle consoleLog(const v8::Arguments &args); v8::Handle consoleProfile(const v8::Arguments &args); v8::Handle consoleProfileEnd(const v8::Arguments &args); v8::Handle consoleTime(const v8::Arguments &args); v8::Handle consoleTimeEnd(const v8::Arguments &args); v8::Handle consoleTrace(const v8::Arguments &args); v8::Handle consoleWarn(const v8::Arguments &args); v8::Handle isQtObject(const v8::Arguments &args); v8::Handle rgba(const v8::Arguments &args); v8::Handle hsla(const v8::Arguments &args); v8::Handle rect(const v8::Arguments &args); v8::Handle point(const v8::Arguments &args); v8::Handle size(const v8::Arguments &args); v8::Handle vector3d(const v8::Arguments &args); v8::Handle vector4d(const v8::Arguments &args); v8::Handle lighter(const v8::Arguments &args); v8::Handle darker(const v8::Arguments &args); v8::Handle tint(const v8::Arguments &args); v8::Handle formatDate(const v8::Arguments &args); v8::Handle formatTime(const v8::Arguments &args); v8::Handle formatDateTime(const v8::Arguments &args); v8::Handle openUrlExternally(const v8::Arguments &args); v8::Handle fontFamilies(const v8::Arguments &args); v8::Handle md5(const v8::Arguments &args); v8::Handle btoa(const v8::Arguments &args); v8::Handle atob(const v8::Arguments &args); v8::Handle quit(const v8::Arguments &args); v8::Handle resolvedUrl(const v8::Arguments &args); v8::Handle createQmlObject(const v8::Arguments &args); v8::Handle createComponent(const v8::Arguments &args); v8::Handle qsTranslate(const v8::Arguments &args); v8::Handle qsTranslateNoOp(const v8::Arguments &args); v8::Handle qsTr(const v8::Arguments &args); v8::Handle qsTrNoOp(const v8::Arguments &args); v8::Handle qsTrId(const v8::Arguments &args); v8::Handle qsTrIdNoOp(const v8::Arguments &args); v8::Handle stringArg(const v8::Arguments &args); v8::Handle locale(const v8::Arguments &args); } QT_END_NAMESPACE #endif // QDECLARATIVEBUILTINFUNCTIONS_P_H