/**************************************************************************** ** ** Copyright (C) 2009 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$ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions ** contained in the Technology Preview License Agreement accompanying ** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, 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. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qdeclarativeitemsmodule_p.h" #include #include #include #include "qdeclarativeevents_p_p.h" #include "qdeclarativeeffects_p.h" #include "qdeclarativescalegrid_p_p.h" #include "qdeclarativeanimatedimage_p.h" #include "qdeclarativeborderimage_p.h" #include "qdeclarativepositioners_p.h" #include "qdeclarativemousearea_p.h" #include "qdeclarativeflickable_p.h" #include "qdeclarativeflickable_p_p.h" #include "qdeclarativeflipable_p.h" #include "qdeclarativefocuspanel_p.h" #include "qdeclarativefocusscope_p.h" #include "qdeclarativegraphicsobjectcontainer_p.h" #include "qdeclarativegridview_p.h" #include "qdeclarativeimage_p.h" #include "qdeclarativeitem_p.h" #include "qdeclarativelayoutitem_p.h" #include "qdeclarativelistview_p.h" #include "qdeclarativeloader_p.h" #include "qdeclarativemousearea_p.h" #include "qdeclarativepath_p.h" #include "qdeclarativepathview_p.h" #include "qdeclarativerectangle_p.h" #include "qdeclarativerepeater_p.h" #include "qdeclarativetext_p.h" #include "qdeclarativetextedit_p.h" #include "qdeclarativetextinput_p.h" #include "qdeclarativevisualitemmodel_p.h" #ifdef QT_WEBKIT_LIB #include "qdeclarativewebview_p.h" #include "qdeclarativewebview_p_p.h" #endif #include "qdeclarativeanchors_p.h" void QDeclarativeItemModule::defineModule() { qmlRegisterType("Qt",4,6,"AnimatedImage"); qmlRegisterType("Qt",4,6,"Blur"); qmlRegisterType("Qt",4,6,"BorderImage"); qmlRegisterType("Qt",4,6,"Colorize"); qmlRegisterType("Qt",4,6,"Column"); qmlRegisterType("Qt",4,6,"Drag"); qmlRegisterType("Qt",4,6,"DropShadow"); qmlRegisterType("Qt",4,6,"Flickable"); qmlRegisterType("Qt",4,6,"Flipable"); qmlRegisterType("Qt",4,6,"Flow"); qmlRegisterType("Qt",4,6,"FocusPanel"); qmlRegisterType("Qt",4,6,"FocusScope"); qmlRegisterType("Qt",4,6,"Gradient"); qmlRegisterType("Qt",4,6,"GradientStop"); qmlRegisterType("Qt",4,6,"GraphicsObjectContainer"); qmlRegisterType("Qt",4,6,"Grid"); qmlRegisterType("Qt",4,6,"GridView"); qmlRegisterType("Qt",4,6,"Image"); qmlRegisterType("Qt",4,6,"Item"); qmlRegisterType("Qt",4,6,"KeyNavigation"); qmlRegisterType("Qt",4,6,"Keys"); qmlRegisterType("Qt",4,6,"LayoutItem"); qmlRegisterType("Qt",4,6,"ListView"); qmlRegisterType("Qt",4,6,"Loader"); qmlRegisterType("Qt",4,6,"MouseArea"); qmlRegisterType("Qt",4,6,"Opacity"); qmlRegisterType("Qt",4,6,"Path"); qmlRegisterType("Qt",4,6,"PathAttribute"); qmlRegisterType("Qt",4,6,"PathCubic"); qmlRegisterType("Qt",4,6,"PathLine"); qmlRegisterType("Qt",4,6,"PathPercent"); qmlRegisterType("Qt",4,6,"PathQuad"); qmlRegisterType("Qt",4,6,"PathView"); qmlRegisterType("Qt",4,6,"Pen"); qmlRegisterType("Qt",4,6,"QIntValidator"); #if (QT_VERSION >= QT_VERSION_CHECK(4,7,0)) qmlRegisterType("Qt",4,7,"QDoubleValidator"); qmlRegisterType("Qt",4,7,"QRegExpValidator"); #endif qmlRegisterType("Qt",4,6,"Rectangle"); qmlRegisterType("Qt",4,6,"Repeater"); qmlRegisterType("Qt",4,6,"Rotation"); qmlRegisterType("Qt",4,6,"Row"); qmlRegisterType("Qt",4,6,"Scale"); qmlRegisterType("Qt",4,6,"Text"); qmlRegisterType("Qt",4,6,"TextEdit"); qmlRegisterType("Qt",4,6,"TextInput"); qmlRegisterType("Qt",4,6,"ViewSection"); qmlRegisterType("Qt",4,6,"VisibleArea"); qmlRegisterType("Qt",4,6,"VisualDataModel"); qmlRegisterType("Qt",4,6,"VisualItemModel"); qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); qmlRegisterType(); #ifdef QT_WEBKIT_LIB qmlRegisterType(); #endif }